
.navigation {
    background: #ffffff;
    z-index: 999;
    position: fixed;
    width: 100%;
    /* margin-top: 33px; */
    transition: all .4s ease-out;
  }
  
  header.header_fixed .navigation {
    margin-top: 0px;
    transition: all .4s ease-out;
    box-shadow: -1px 4px 9px rgba(221, 221, 221, 0.5);
  }
  
  .navigation-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .is-sticky .header-wrapper {
    background-color: #fff;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #dbdbdb;
  }
  
  #navigation, #navigation ul, #navigation ul li, #navigation ul li a, #navigation #menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    box-sizing: border-box;
  }
  
  #navigation:after, #navigation > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
  }
  
  #navigation #menu-button {
    display: none;
  }
  
  #navigation {
    background: transparent;
    display:flex;
    justify-content:center;
  }

  .header_fixed #navigation {
    padding-top:10px;
    padding-bottom:10px;
  }
  
  #navigation > ul > li {
    float: left;
  }
  
  #navigation.align-center > ul {
    font-size: 0;
    text-align: center;
  }
  
  #navigation.align-center > ul > li {
    display: inline-block;
    float: none;
  }
  
  #navigation.align-center ul ul {
    text-align: left;
  }
  
  #navigation.align-right > ul > li {
    float: right;
  }
  
  #navigation > ul > li > a {
    padding: 15px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #e7430e;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  #navigation > ul > li:hover > a {
    color: #d02030;
    background-color: #fff;
  }
  
  #navigation > ul > li > a.active {
    border-bottom: 2px solid #d02030;
  }
  
  #navigation > ul > li.has-sub > a {
    padding-right: 25px;
  }
  
  /*#navigation > ul > li.has-sub > a:after {position: absolute; top: 22px; right: 11px; width: 8px; height: 2px; display: block; background: #dddddd; content: '';}*/
  #navigation > ul > li.has-sub > a:before {
    position: absolute;
    right: 6px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    transition: all .25s ease;
  }
  
  /*#navigation > ul > li.has-sub:hover > a:before {top: 23px; height: 0;}*/
  #navigation ul ul {
    position: absolute;
    left: -9999px;
  }
  
  #navigation.align-right ul ul {
    text-align: right;
  }
  
  #navigation ul ul li {
    /* height: 0; */
    padding: 0;
    transition: all .25s ease;
  }
  
  #navigation li:hover > ul {
    background: #fff;
    left: auto;
    border: 1px solid rgba(255, 48, 48, 0.1);
    border-top: 0;
    border-left: 0;
    box-shadow: -1px 4px 9px rgba(221, 221, 221, 0.5);
  }
  
  #navigation.align-right li:hover > ul {
    left: auto;
    right: 0;
  }
  
  #navigation li:hover > ul > li  {
    /* height: 40px; */
    padding: 0px 0 5px;
  }
  
  #navigation li:hover > ul > li:last-child {
    /* height: 40px; */
    padding: 0 0 0;
  }
  
  #navigation ul ul ul {
    margin-left: 100%;
    top: 0;
  }
  
  #navigation.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
  }
  
  #navigation ul ul li a {
    padding: 10px 10px;
    width: 255px;
    font-size: 13px;
    text-decoration: none;
    color: #3f3f3f;
    font-weight: 700;
    background: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid #dbdbdb;
    line-height: 1.3;
  }
  
  #navigation ul ul li:last-child > a, #navigation ul ul li.last-item > a {
    border-bottom: 0;
  }
  
  #navigation ul ul li:hover > a, #navigation ul ul li a:hover {
    color: #d02030;
  }
  
  #navigation ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #5c6b88;
    content: '';
  }
  
  #navigation.align-right ul ul li.has-sub > a:after {
    right: auto;
    left: 11px;
  }
  
  #navigation ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #5c6b88;
    content: '';
    transition: all .25s ease;
  }
  
  #navigation.align-right ul ul li.has-sub > a:before {
    right: auto;
    left: 14px;
  }
  
  #navigation ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0;
  }
  
  #navigation.small-screen ul {
    width: 100%;
    display: none;
    background-color: #fff;
    position: fixed;
    /* width: 100%; */
    left: 0;
  }
  
  #navigation.small-screen.align-center > ul {
    text-align: left;
  }
  
  #navigation.small-screen ul li {
    width: 99%;
  }
  
  #navigation.small-screen ul ul li, #navigation.small-screen li:hover > ul > li {
    height: auto;
  }
  
  #navigation.small-screen ul li a, #navigation.small-screen ul ul li a {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 20px;
    border-top: 0px solid transparent;
    color: #3f3f3f;
  }
  
  #navigation.small-screen > ul > li {
    float: none;
  }
  
  #navigation.small-screen ul ul li a {
    padding-left: 25px;
  }
  
  #navigation.small-screen ul ul ul li a {
    padding-left: 35px;
  }
  
  #navigation.small-screen ul ul li a {
    color: #3f3f3f;
    background: none;
  }
  
  #navigation.small-screen ul ul li:hover > a, #navigation.small-screen ul ul li.active > a {
    color: #d02030;
  }
  
  #navigation.small-screen ul ul, #navigation.small-screen ul ul ul, #navigation.small-screen.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  
  #navigation.small-screen > ul > li.has-sub > a:after, #navigation.small-screen > ul > li.has-sub > a:before, #navigation.small-screen ul ul > li.has-sub > a:after, #navigation.small-screen ul ul > li.has-sub > a:before {
    display: none;
  }
  
  #navigation.small-screen #menu-button {
    display: block;
    padding: 17px;
    color: #3f3f3f;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  #navigation.small-screen #menu-button:after {
    position: absolute;
    top: 22px;
    right: 17px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #d02030;
    border-bottom: 2px solid #d02030;
    content: '';
  }
  
  #navigation.small-screen #menu-button:before {
    position: absolute;
    top: 16px;
    right: 17px;
    display: block;
    height: 2px;
    width: 20px;
    background: #d02030;
    content: '';
  }
  
  #navigation.small-screen #menu-button.menu-opened:after {
    top: 23px;
    border: 0;
    height: 2px;
    width: 15px;
    background: #d02030;
    transform: rotate(45deg);
  }
  
  #navigation.small-screen #menu-button.menu-opened:before {
    top: 23px;
    background: #d02030;
    width: 15px;
    transform: rotate(-45deg);
  }
  
  #navigation.small-screen .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid #eee;
    height: 52px;
    width: 50px;
    cursor: pointer;
  }
  
  #navigation.small-screen .submenu-button.submenu-opened {
    background: #706f6f;
  }
  
  #navigation.small-screen ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }
  
  #navigation.small-screen .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #dddddd;
    content: '';
  }
  
  #navigation.small-screen ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }
  
  #navigation.small-screen .submenu-button.submenu-opened:after {
    background: #ffffff;
  }
  
  #navigation.small-screen .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #dddddd;
    content: '';
  }
  
  #navigation.small-screen ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }
  
  #navigation.small-screen .submenu-button.submenu-opened:before {
    display: none;
  }
  
  #navigation.small-screen.select-list {
    padding: 5px;
  }
  
  @media only screen and (max-width: 768px) {
    .navbar-fixed-top {
      position: relative;
    }
    .header-transparent {
      background-color: #3154ac;
    }
  }
  
  #mobile-search {
    display: none;
    background: #e7430e;
  }
  
  /*=========================== RESPONSIVE NAVIGATION ===========================*/
  @media (max-width: 1199px) {
    #navigation > ul > li > a {
      padding: 10px;
      font-size: 13px;
    }
    #navigation > ul > li.has-sub > a {
      padding-right: 17px;
    }
    /* #logo a {
      background-size: 145px;
    }
  
    .pages.home #logo a {
      background-size: 165px;
    } */
  
    /* .pages.home #logo {
      height: 85px;
    } */
  
    #logo a {
      width: 215px;
      padding: 35px 0;
    }
  
  }
  
  @media (max-width: 991px) {
    #top_social.pr-0 {
      padding-right: 15px !important;
    }
    #navigation.small-screen #menu-button:before {
      background: #ffffff;
    }
    #navigation.small-screen #menu-button:after {
      border-top: 2px solid #ffffff;
      border-bottom: 2px solid #ffffff;
    }
    #navigation {
      background: transparent;
      display: flex;
      /* width: 50px;
      height: 50px; */
      padding: 1px 25px;
    }
    #navigation.small-screen .open {
      top: 117px;
    }
    header.header_fixed #navigation.small-screen .open {
      top: 64px;
    }
    #navigation.small-screen #menu-button.menu-opened:before {
      background: #ffffff;
      width: 20px;
    }
    #navigation.small-screen #menu-button.menu-opened:after {
      background: #ffffff;
      width: 20px;
    }
    .navigation-wrapper {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-direction: row-reverse;
    }
    #logo a {
      width: 190px;
      padding: 35px 0;
      border: 0px solid #fff;
      background-color: rgba(255, 255, 255, 0);
      background: url(../img/layout/logo/logo2.svg) no-repeat scroll center center transparent;
      top: 0;
      border-radius: 0;
    }
  

    /* header.header_fixed #logo{
      display:none;
    } */
    header.header_fixed #logo a {
      background-size: 140px;
      background-position: left;
      padding: 0px 0;
      transition: all .4s ease-out;
    }
    #logo {
      height: 85px;
    }
    #logo a {
      width: 170px;
    }
  
  }
  
  @media (max-width: 575px) {
    #navigation.small-screen .submenu-button {
      height: 44px;
    }
    #navigation {
      justify-content: end;
    }
    #navigation.small-screen ul li {
      width: 100%;
    }
    #navigation.small-screen ul {
      width: 100%;
    }
    #top_social {
      display: none;
    }
    #navigation.small-screen ul li a, #navigation.small-screen ul ul li a {
      padding: 15px 20px;
      font-size: 13px;
    }
  
    .navigation .col-4,
    .navigation .col-8
    {
      flex: 0 0 50% !important;
      max-width: 50% !important;
    }
    #logo {
      height: 75px;
    }
    #logo a {
      width: 165px;
      padding: 0px 0;
      border-top: 0px;
      border-bottom: 0;
    }
  
    #navigation.small-screen .open {
      top: 107px;
    }
  }
  
  @media (max-width: 420px) {
    #logo {
      height: 75px;
    }
    /* #logo a {
      background-size: 75px;
    } */
    #navigation.small-screen .open {
      top: 107px;
    }
    /* .pages.home #logo a {
      background-size: 100px;
    }
    .pages.home #logo {
      height: 60px;
    }
    #logo a {
      background-size: 100px;
    } */
  
    #logo a {
      width: 155px;
    }
  }
  
  /*=========================== END RESPONSIVE NAVIGATION ===========================*/
  /*=========================== LOGO ===========================*/
  #logo {
    display: block;
    width: 100%;
    height: auto;
    margin: 0px 0 0px 0px;
    overflow: hidden;
    justify-content: center;
    display: flex;
  }
  
  header.header_fixed #logo {
    height: 0px;
    transition: all .4s ease-out;
  }
  
  #logo a {
    /* position: absolute; */
    display: block;
    width: 235px;
    height: 112px;
    /* height: auto; */
    text-indent: -999999px !important;
    background: url(../img/layout/logo/logo_spiti.png) no-repeat scroll center center transparent;
    background-size: 72%;
    /* border: 10px solid #fff; */
    /* padding: 45px 0; */
    z-index: 99;
    background-position: center;
    background-color: #ffffff;
    top: 20px;
    border-radius: 5px;
    transition: all .3s ease-in-out;
  }
  .header-mobile #logo a{
    background: url(../img/layout/logo/logo_mobile.png) no-repeat scroll center center transparent;
    background-size:100%;
    height:80px;
  }
  
  header.header_fixed #logo a {
    width: 200px;
    background-size: 133px;
    padding: 45px 0;
    top: 0px;
    border-radius: 0 0 5px 5px;
    /* box-shadow: 0 0 5px rgba(112, 111, 111, 0.25); */
    background-position: center;
    transition: all .4s ease-out;
  }
  #logo_en {
    display: block;
    width: 100%;
    height: 95px;
    margin: 0px 0 0px 0px;
    overflow: hidden;
  }
  
  header.header_fixed #logo_en {
    height: 65px;
    transition: all .4s ease-out;
  }
  
  #logo_en a {
    position: absolute;
    display: block;
    width: 250px;
    height: 100%;
    text-indent: -999999px !important;
    background: url(../img/layout/logo/logo-en.png) no-repeat scroll center center transparent;
    background-size: 100%;
    border: 10px solid #fff;
    padding: 45px 0;
    z-index: 99;
    background-position: left;
    background-color: #ffffff;
    top: 20px;
    border-radius: 5px;
    transition: all .3s ease-in-out;
  }
  
  header.header_fixed #logo_en a {
    width: 200px;
    background-size: 165px;
    padding: 35px 0;
    top: 0px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 5px rgba(112, 111, 111, 0.25);
    background-position: center;
    transition: all .4s ease-out;
  }
  

  /* ====================== TOP BAR ======================*/
.top_bar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 5px 0;
    background: #706f6f;
    color: #fff;
    height:33px;
  }
  
  .top_bar .top_bar_left a {
    font-weight: 500;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    transition: all .4s ease-out;
  }
  
  .top_bar .top_bar_left a:hover {
    color: #d02030;
    transition: all .4s ease-out;
  }
  
  .top_bar .top_bar_left a:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-right: 5px;
  }
  
  .top_bar .top_bar_left a.top_left_online_appointment {
    border-right: 1px solid #fff;
    padding-right: 10px;
  }
  
  .top_bar .top_bar_left a.top_left_online_appointment strong {
    /* color: #d02030; */
    font-weight: 600;
  }
  
  .top_bar .top_bar_left a.top_left_online_appointment:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f534";
  }
  
  .top_bar .top_bar_left a.top_left_contact {
    padding-left: 10px;
  }
  
  .top_bar .top_bar_left a.top_left_contact:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f550";
  }
  
  .top_bar .top_bar_right {
    text-align: right;
  }
  
  .top_bar .top_bar_right a {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transition: all .4s ease-out;
  }
  
  .top_bar .top_bar_right a strong {
    font-weight: 100;
    font-size: 12px;
  }
  
  .top_bar .top_bar_right a:hover {
    color: #d02030;
    transition: all .4s ease-out;
  }
  
  .top_bar .top_bar_right a:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-right: 5px;
  }
  
  .top_bar .top_bar_right a.top_bar_right_map_pin {
    border-right: 1px solid #fff;
    padding-right: 10px;
    margin-right: 5px;
  }
  
  .top_bar .top_bar_right a.top_bar_right_map_pin:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
  }
  
  .top_bar .top_bar_right a.top_bar_right_open_hours {
    padding-left: 10px;
  }
  
  .top_bar .top_bar_right a.top_bar_right_open_hours:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
  }
  
  .social-icons-top a {
    display: inline-block;
    margin-top: -5px;
  }
  
  .social-icons-top img {
    width: 36px;
    display: inline-block;
    margin: 0 5px 0 0px;
    transition: .4s;
    transform: translate3D(0, 0, 0);
  }
  
  .social-icons-top img:hover {
    transform: translate3D(0, -5px, 0) rotate(15deg);
  }
  
  .top_message {
    text-align: center;
  }
  
  .top_message span {
    color: #fff;
    line-height: 36px;
    font-weight: bold;
  }
  
  .top_links {
    text-align: right;
    color: #434343;
  }
  
  .top_links a {
    display: inline-block;
    margin: 0 5px 0 0px;
    color: #fff;
    line-height: 36px;
    font-weight: bold;
    transition: all 0.2s ease-in;
  }
  
  .top_links a:hover {
    color: #f2f2f2;
    transition: all 0.2s ease-in;
  }
  
  /* ====================== END TOP BAR ======================*/
  /*============================== TOP BAR RESPONSIVE ======================================*/
  @media (max-width: 991px) {
    .top_bar .top_bar_right {
      text-align: center;
    }
  }
  
  @media (max-width: 767px) {
    .top_bar .top_bar_right a {
      font-size: 13px;
    }
  }
  @media (max-width: 575px) {
    .top_bar .top_bar_right a.top_bar_right_open_hours {
      display: none;
    }
    .header-mobile  #logo a {
      background-size: 80%;
      height: 80px;
    }
  }
  
  /*============================== END TOP BAR RESPONSIVE ======================================*/
  .row.flex-row{
      display:flex;
      flex-wrap:wrap;
  }


  /*============================== FOOTER ======================================*/
#footer {
    width: 100%;
    padding: 50px 0 50px 0;
    margin: 0;
    color: #333;
    background: #706f6f;
  }
  
  .footer_box {
    margin-left: 0px;
    margin-right: 0px;
    text-align:center;
  }
  
  .footer_box img {
    width: 210px;
    margin-bottom: 5px;
  }
  
  .footer_box p {
    font-size: 13px;
    color: #fff;
    font-weight: 100;
  }
  
  .footer_box h6 {
    text-align: center;
    margin: 0px 0 20px 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    background: #27ad5a;
    border-radius: 10px;
    padding: 10px;
  }

  .footer_box h6 span {
    background: #00000002;
  }
  
  .footer_box .footer_menu.footer_hours li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    /* text-align: left; */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer_box .footer_menu.footer_hours li:last-child {
    border-bottom: 0;
  }
  
  .footer_box .footer_menu .footer_area {
    display: inline-block;
    background: #e7430e;
    border-radius: 3rem;
    padding: 0px 10px;
    margin-left: 5px;
  }
  
  .footer_box .footer_menu .footer_area:hover {
    color: #d02030;
    background: #fff;
    transition: all .4s ease-out;
  }
  .footer_box i {
    font-size: 24px;
    margin-bottom: 15px;
    color:#27ad5a;
  }
  ul.footer_menu {
    margin: 0px;
  }
  
  ul.footer_menu li {
    padding: 5px 0px;
    font-size: 15px;
    color: #404040;
    text-align: center;
  }
  
  ul.footer_menu li a {
    display: inline-block;
    color: #404040;
    text-transform: uppercase;
    transition: all .4s ease-out;
  }
  
  ul.footer_menu li a:hover {
    color:#ff9559;
    transition: all .4s ease-out;
  }
  
  .bank_icons {
    margin-top: 40px;
    text-align: center;
  }
  
  .footer_copyright {
    position: relative;
    z-index: 0;
    padding-bottom: 20px;
    padding-top: 20px;
    background: #e7430e;
    color: #fff;
    margin:0;
  }
  
  .footer_copyright p {
    line-height: 20px;
    font-size: 12px;
    margin:0px;
    color: #fff;
    font-weight: 100;
    text-transform: uppercase;
    text-align: left;
    background: #00000002;
  }
  
  .footer_copyright a {
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease 0s;
  }
  
  .footer_copyright a:hover {
    text-decoration: underline;
    transition: all 0.4s ease 0s;
  }
  
  /*============================== END FOOTER ======================================*/
  /*============================== FOOTER RESPONSIVE ==============================*/
  @media (max-width: 1199px) {
    .footer_box p {
      font-size: 12px;
    }
  }
  
  @media (max-width: 991px) {
    #footer {
      padding: 35px 20px;
    }
    .footer_box {
      text-align: center;
      margin-bottom: 20px;
    }
    .footer_box p {
      font-size: 15px;
    }
    .footer_box h6 {
      margin: 0px 0 10px 0;
      font-size: 15px;
      padding: 10px;
    }
  }
  
  /*============================== END FOOTER RESPONSIVE ==============================*/
  /*============================== WAPP ======================================*/
  #wapp {
    position: relative;
    float: right;
  }
  
  #wapp a {
    display: block;
    width: 75px;
    height: 20px;
    background: transparent url(../img/layout/wapp.png) no-repeat center;
    text-indent: -999999px !important;
    background-size: 100%;
    color: #000;
  }
  
  /*============================== WAPP END ======================================*/
  /*============================== WAPP RESPONSIVE ==============================*/
  @media (max-width: 767px) {
    .footer_copyright {
      padding-bottom: 10px;
      padding-top: 10px;
    }
    .footer_copyright p {
      font-size: 12px;
      text-align: center;
      margin-bottom: 5px;
    }
    #wapp {
      float: none;
      text-align: center;
    }
    #wapp a {
      display: inline-block;
      width: 65px;
      height: 20px;
    }
  }
  
  /*============================== END WAPP RESPONSIVE ==============================*/