/* -------------------------------------------------- Mixins */
/*
<div class="progress-circle p{VALUE_OF_PROGRESS} {if VALUE_OF_PROGRESS > 50}over50{/if}">
	<span>{VALUE_OF_PROGRESS}%</span>
	<div class="left-half-clipper">
		<div class="first50-bar"></div>
		<div class="value-bar"></div>
	</div>
</div>
*/
/* -------------------------------------------------- Colors */
:root {
  --black: #000;
  --green: #26ad26;
  --grey: #d7d9d9;
  --primary: #70cbf4;
  --red: #f85555;
  --secondary: #092a5e;
  --text: #394040;
  --white: #fff;
  --primary--hover: #57B2DB;
  --secondary--hover: #234478;
  --grey--lite: #e1e1e1;
  --grey--transparent: rgba(215, 217, 217, .8);
  --white--transparent: rgba(255, 255, 255, .9);
  --grey--xlite: #f7f7f7;
}

/* -------------------------------------------------- Fonts */
:root {
  --arial: Arial, Helvetica Neue, Helvetica, sans-serif;
}

/* -------------------------------------------------- Miscellaneous */
:root {
  --box-shadow: .5rem 1rem 2rem 0 rgba(0, 0, 0, .2);
  --box-shadow--big: 0 0 1.4rem .1rem rgba(177, 177, 177, 0.5);
  --box-shadow--hotels: 0 0 2.4rem 0 #d2d2d2;
  --box-shadow--menu: 0 .2rem .4rem 0 rgba(0, 0, 0, .13);
}

/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Header */
#stickyMenu {
  background: var(--white);
  position: relative;
  width: 100%;
  z-index: 5000;
}
#stickyMenu.sticky {
  position: fixed;
  top: 0;
  transform: translateY(-100%);
}
#stickyMenu.sticky--in {
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}
#stickyMenu.sticky--out {
  transform: translateY(-100%);
  transition: transform 0.5s ease-out;
}
#stickyMenu.sticky.hasBurger {
  transform: none;
  transition: none;
}
#stickyMenu.stickyDesktop {
  box-shadow: var(--box-shadow);
  position: fixed;
  top: 0;
}

.nav {
  box-shadow: var(--box-shadow);
}
.nav__wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1920px;
  padding: 15px;
  width: 100%;
}
@media (min-width: 1200px) {
  .nav__wrapper {
    padding: 15px 30px 0 30px;
  }
}
@media (min-width: 1366px) {
  .nav__wrapper {
    padding: 15px 60px 0 60px;
  }
}
.nav__logo {
  flex-shrink: 0;
  height: 60px;
  width: 240px;
}
@media (min-width: 576px) {
  .nav__logo {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .nav__logo {
    margin-bottom: 15px;
  }
}
.nav__logo a {
  height: 100%;
  width: 100%;
}
.nav__logo a picture {
  height: 100%;
  width: 100%;
}
.nav__logo a picture img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.nav__burger {
  cursor: pointer;
  display: flex;
  overflow: visible;
  right: 20px;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  transition-timing-function: linear;
}
@media (min-width: 1200px) {
  .nav__burger {
    display: none;
  }
}
.nav__burger.active {
  position: fixed;
  right: 20px;
  top: 30px;
  z-index: 5;
}
.nav__burger.active .nav__burger__content {
  background-color: var(--white);
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 75ms;
}
.nav__burger.active .nav__burger__content:before, .nav__burger.active .nav__burger__content:after {
  background-color: var(--white);
}
.nav__burger.active .nav__burger__content:before {
  opacity: 0;
  transition-delay: 0s;
}
.nav__burger.active .nav__burger__content:after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 75ms;
}
.nav__burger__wrapper {
  display: inline-block;
  height: 25px;
  position: relative;
  width: 35px;
}
.nav__burger__content {
  background-color: var(--primary);
  display: block;
  height: 4px;
  margin-top: -2px;
  position: absolute;
  top: 2px;
  transition-duration: 0.275s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  width: 35px;
}
.nav__burger__content:before, .nav__burger__content:after {
  background-color: var(--primary);
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: ease;
  width: 35px;
}
.nav__burger__content:before {
  top: 10px;
  transition: opacity 0.125s ease 0.275s;
}
.nav__burger__content:after {
  bottom: -10px;
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav__burger span {
  display: block;
  font-size: 12px;
  margin-top: -3px;
}
@media (min-width: 1200px) {
  .nav__burger.showBurger {
    display: block;
  }
}
.nav__menu {
  display: none;
  z-index: 5010;
}
@media (min-width: 1200px) {
  .nav__menu {
    align-items: end;
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    height: 100%;
  }
}
.nav__menu.active {
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
}
@media (min-width: 1200px) {
  .nav__menu.active {
    left: auto;
    right: 0;
    width: 400px;
  }
}
.nav__menu.active .nav__menu__overlay {
  display: block;
}
.nav__menu__content {
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  background: var(--primary);
  height: 100%;
  max-width: 300px;
  padding: 50px 20px 20px 20px;
  position: absolute;
  right: 80px;
  width: calc(100% - 80px);
  z-index: 1;
}
@media (min-width: 1200px) {
  .nav__menu__content {
    align-items: center;
    animation: none;
    background: transparent;
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 0 20px;
    height: 100%;
    justify-content: flex-end;
    margin: 0;
    max-width: none;
    padding: 0;
    position: relative;
    right: auto;
    top: 0;
    width: 100%;
  }
}
@media (min-width: 1566px) {
  .nav__menu__content {
    justify-content: center;
  }
}
.nav__menu__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 1200px) {
  .nav__menu__buttons {
    justify-content: flex-end;
    margin-bottom: 0;
  }
}
.nav__menu__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .nav__menu__container {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1366px) {
  .nav__menu__container {
    margin-left: -300px;
  }
}
.nav__menu__item {
  align-items: center;
  border-bottom: 0.1rem solid var(--secondary);
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 1200px) {
  .nav__menu__item {
    border-bottom: 0;
    color: var(--text);
    height: 40px;
    justify-content: center;
    min-width: 80px;
    position: relative;
    width: auto;
  }
}
.nav__menu__item:after {
  background: var(--text);
  content: "";
  display: none;
  height: 20px;
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
}
.nav__menu__item:nth-last-child(3):after {
  display: none;
}
@media (min-width: 1200px) {
  .nav__menu__item:hover .nav__menu__sublist, .nav__menu__item:focus .nav__menu__sublist, .nav__menu__item:active .nav__menu__sublist {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.nav__menu__item a,
.nav__menu__item button {
  align-items: center;
  background: transparent;
  color: var(--secondary);
  display: flex;
  flex-grow: 1;
  font-size: 16px;
  height: 100%;
  padding: 10px 5px;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .nav__menu__item a,
  .nav__menu__item button {
    color: var(--text);
    justify-content: center;
    padding: 0;
  }
}
.nav__menu__item a:hover, .nav__menu__item a:focus, .nav__menu__item a:active,
.nav__menu__item button:hover,
.nav__menu__item button:focus,
.nav__menu__item button:active {
  color: var(--secondary);
}
@media (min-width: 1200px) {
  .nav__menu__item a:hover, .nav__menu__item a:focus, .nav__menu__item a:active,
  .nav__menu__item button:hover,
  .nav__menu__item button:focus,
  .nav__menu__item button:active {
    color: var(--text);
    text-decoration: underline;
  }
}
.nav__menu__item a:hover + .nav__menu__sublist, .nav__menu__item a:focus + .nav__menu__sublist, .nav__menu__item a:active + .nav__menu__sublist,
.nav__menu__item button:hover + .nav__menu__sublist,
.nav__menu__item button:focus + .nav__menu__sublist,
.nav__menu__item button:active + .nav__menu__sublist {
  display: block;
}
.nav__menu__item a .nav__menu__item,
.nav__menu__item button .nav__menu__item {
  border: 0;
}
.nav__menu__item i {
  font-size: 8px;
  font-weight: bold;
  margin-left: 10px;
}
.nav__menu__item .aboutus,
.nav__menu__item .agencysearch {
  color: #092a5e;
}
.nav__menu__item .aboutus:hover,
.nav__menu__item .agencysearch:hover {
  color: #092a5e;
}
.nav__menu__item .aboutus i {
  font-size: inherit;
  font-weight: normal;
  margin-left: 0;
}
.nav__menu__item.submenu-active .nav__menu__sublist {
  display: block;
}
.nav__menu__overlay {
  background: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  left: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
@media (min-width: 1200px) {
  .nav__menu__overlay {
    animation: none;
    display: none;
  }
}
.nav__menu__wrapper {
  display: flex;
  overflow-y: auto;
}
@media (min-width: 1200px) {
  .nav__menu__wrapper {
    animation: none;
    background: transparent;
    max-width: none;
    padding: 0;
    position: relative;
    right: auto;
    width: 100%;
  }
}
.nav__menu__sublist {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  width: 100%;
}
@media (min-width: 1200px) {
  .nav__menu__sublist {
    background: white;
    box-shadow: var(--box-shadow--menu);
    display: none;
    max-height: none;
    min-width: 200px;
    padding: 15px 20px;
    position: absolute;
    right: 0;
    top: 38px;
    width: auto;
    z-index: 1;
  }
}
.nav__menu__sublist.active {
  max-height: none;
  padding: 0 0 10px 20px;
}
.nav__menu__sublist.is-visible {
  display: block;
}
.nav__menu__sublist > .nav__menu__item {
  height: auto;
}
@media (min-width: 1200px) {
  .nav__menu__sublist > .nav__menu__item {
    height: 30px;
  }
}
@media (min-width: 1200px) {
  .nav__menu__sublist > .nav__menu__item:after {
    display: none;
  }
}
.nav__menu__sublist > .nav__menu__item:last-of-type {
  border: 0;
}
.nav__menu__sublist > .nav__menu__item a {
  justify-content: center;
}
.nav__menu__sublist > .nav__menu__item a > .nav__menu__item {
  justify-content: flex-start;
  white-space: nowrap;
  width: 100%;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

#headerImage {
  aspect-ratio: 192/40;
  width: 100%;
}
#headerImage img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.header {
  height: 400px;
}
.header__container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}
.header__content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .header__content {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px;
  }
}
@media (min-width: 1200px) {
  .header__content {
    max-width: 1120px;
    padding: 0;
  }
}
@media (min-width: 1366px) {
  .header__content {
    max-width: 1330px;
  }
}
@media (min-width: 1400px) {
  .header__content {
    max-width: 1366px;
  }
}
.header__box {
  background: var(--white--transparent);
  border-radius: 5px;
  color: var(--text);
  padding: 20px 15px;
  position: absolute;
  z-index: 1;
}
@media (min-width: 768px) {
  .header__box {
    top: 30px;
  }
}
.header__box h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.header__box p {
  margin: 0 0 20px 0;
}
.header__box .button {
  background: var(--primary);
}
.header__box .button:hover, .header__box .button:focus, .header__box .button:active {
  background: var(--primary);
}
.header__image {
  align-items: center;
  display: flex;
  height: 400px;
  overflow: hidden;
}
.header__image picture {
  height: 100%;
  width: 100%;
}
.header__image picture img {
  height: 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.headerSlider .swiper-pagination-bullet {
  background: var(--grey);
}
.headerSlider .swiper-pagination-bullet-active {
  background: var(--primary);
  height: 10px;
  width: 10px;
}
.headerSlider .swiper-button-prev, .headerSlider .swiper-button-next {
  cursor: pointer;
  height: 100%;
  margin: 0;
  max-height: 600px;
  top: 0;
  width: 7%;
  z-index: 2;
}
.headerSlider .swiper-button-prev:before, .headerSlider .swiper-button-next:before {
  background: var(--grey--lite);
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  width: 22px;
}
@media (min-width: 768px) {
  .headerSlider .swiper-button-prev:before, .headerSlider .swiper-button-next:before {
    height: 50px;
    width: 38px;
  }
}
.headerSlider .swiper-button-prev:after, .headerSlider .swiper-button-next:after {
  color: var(--secondary);
  font-family: "easyWeb-Standard";
  font-size: 12px;
  font-weight: bold;
  position: absolute;
}
@media (min-width: 768px) {
  .headerSlider .swiper-button-prev:after, .headerSlider .swiper-button-next:after {
    font-size: 25px;
  }
}
.headerSlider .swiper-button-prev {
  left: 0;
}
.headerSlider .swiper-button-prev:before {
  border-bottom-right-radius: 22px;
  border-top-right-radius: 22px;
  left: 0;
}
.headerSlider .swiper-button-prev:after {
  content: "\e94f";
  left: 4px;
}
@media (min-width: 768px) {
  .headerSlider .swiper-button-prev:after {
    left: 6px;
  }
}
.headerSlider .swiper-button-next {
  right: 0;
}
.headerSlider .swiper-button-next:before {
  border-bottom-left-radius: 22px;
  border-top-left-radius: 22px;
  right: 0;
}
.headerSlider .swiper-button-next:after {
  content: "\e951";
  right: 4px;
}
@media (min-width: 768px) {
  .headerSlider .swiper-button-next:after {
    right: 6px;
  }
}

.agency__name {
  background: var(--secondary);
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  width: 100%;
}
/*# sourceMappingURL=header.css.map */
