/*
Theme Name: Amalia-MEW
Description:
043Author: p-i-p
Author URI: 
Version: 1
*/ 

@font-face {
  font-family: "Comic Sans MS";
	src: url("./fonts/comic.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 
  

  --font-title: "Source Serif 4", serif;
  --font-inter: "Inter", sans-serif;
   */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.fa {
  font-family: FontAwesome !important;
}

p {
  padding: 5px 0;
}

a, a:hover {
  text-decoration: none !important;
}

html {
  overflow-x: hidden;
}

body, html {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #363636;
  line-height: 1.3;
  position: relative;
}

body {
  overflow-x: hidden;
}

h2 {
  margin: 10px 0;
}

img {
  max-width: 100%;
  height: auto;
}

img.alignleft {
  margin-top: 0px !important;
  margin-right: 30px !important;
}

a {

  transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
}

.flex {
  display: flex;
  gap: 20px;
}

.half_block {
  width: 50%;
}


.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}


section {
  clear: both;
  padding: 60px 0;
}

.main-wrap {
  padding-top: 100px;
  min-height: calc(100vh + 100px);
}

/*
===============================Start HEADER========*/

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s ease;
  height: 100px;
  background: #fff;
  border-bottom: 1px solid #e7eef3;
  box-shadow: 0 4px 18px rgba(30, 61, 82, 0.05);
}

.site-header .topnav {
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  height: 100%;
  min-height: 100px;
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

.page-title {
  margin-bottom: 30px;
}

.page-title h1 {
  font-style: normal;
  font-weight: normal;
  font-size: 38px;
  color: #4e4e4e;
}

.page-title-description h2 {
  font-weight: 400;
  font-size: 20px;
  color: #797979;
}

.site-header .logo {
  flex: 0 0 auto;
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 9999;
}

.site-header .logo img {
  display: block;
  font-size: 20px;
  width: 185px;
  max-width: 260px;
  height: 100%;
  max-height: 90px;
  object-fit: contain;
}

.logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  font-weight: bold;
  color: #064fb2;
  text-decoration: none;
}

.logo a:hover {
  text-decoration: none;
}



/* =========================================
   Desktop navigation
========================================= */

.header__menu {
  min-width: 0;
  margin-left: auto;
  display: flex;
        align-items: center;
        gap:30px;
}

.main-navigation,
.main-menu {
    align-items: center;
    display: flex;
    justify-content: center;
}

.main-navigation .main_menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation .menu-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.main-navigation .menu-item > a {
  position: relative;
  display: flex;
  align-items: center; 
  padding: 15px 0;
  color: #202428;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s ease;
}

.main-navigation .menu-item > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 5px;
  background: #159fe8;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.main-navigation .menu-item:hover > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a {
  color: #159fe8;
}

.main-navigation .menu-item:hover > a::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current-menu-ancestor > a::after {
  opacity: 1;
  transform: scaleX(1);
}
 
.main-navigation .menu-item a p {
  margin: 0;
  padding: 0;
  font: inherit;
}

.main-navigation .menu-item a .mline {
  display: none;
}

/* =========================================
   Header actions
========================================= */

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px; 
}

/* =========================================
   Phones
========================================= */

.header-phones {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phones__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #159fe8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phones__primary {
  color: #4d5358;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s ease;
}

.header-phones__primary:hover {
  color: #159fe8;
}

.header-phones__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #5b6267;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.header-phones__toggle:hover,
.header-phones.is-open .header-phones__toggle {
  background: #e5f6ff;
  color: #159fe8;
}

.header-phones__toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.header-phones__dropdown {
  position: absolute;
  top: calc(100% + 17px);
  right: 0;
  z-index: 20;
  width: 200px;
  padding: 9px;
  visibility: hidden;
  border: 1px solid #e3edf2;
  border-radius: 15px;
  background: #fff;
  opacity: 0;
  box-shadow: 0 15px 35px rgba(32, 63, 82, 0.14);
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    visibility 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.header-phones__dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
  content: "";
}

.header-phones__dropdown a {
  display: block;
  padding: 11px 20px 11px 10px;
  border-radius: 10px;
  color: #252a2e;
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.header-phones__dropdown a span {
  display: block;
  margin-bottom: 3px;
  color: #8a9197;
  font-size: 12px;
  font-weight: 400;
}

.header-phones__dropdown a:hover {
  background: #edf9ff;
  color: #159fe8;
}

.header-phones:hover .header-phones__dropdown,
.header-phones:focus-within .header-phones__dropdown,
.header-phones.is-open .header-phones__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-phones:hover .header-phones__toggle svg,
.header-phones:focus-within .header-phones__toggle svg,
.header-phones.is-open .header-phones__toggle svg {
  transform: rotate(180deg);
}

/* =========================================
   Blue menu button
========================================= */
.header__mobile-menu {
  display: flex;
  flex: 0 0 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #18acf6, #078ee5);
  box-shadow: 0 8px 20px rgba(13, 151, 235, 0.25);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
 
.header__mobile-menu span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.header__mobile-menu.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__mobile-menu.open span:nth-child(2) {
  opacity: 0;
}

.header__mobile-menu.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.header__mobile-menu {
  display: none !important;
}



.language-switcher {
	position: relative;
	flex: 0 0 auto;
	font-family: "Inter", sans-serif;
}

.language-switcher__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 78px;
	height: 44px;
	padding: 0 12px;
	color: #384047;
	background: #fff;
	border: 1px solid #e3edf2;
	border-radius: 22px;
	cursor: pointer;
	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		background-color 0.25s ease;
}

.language-switcher__toggle:hover,
.language-switcher.is-open .language-switcher__toggle {
	color: #159fe8;
	background: #edf9ff;
	border-color: #bfe8fb;
}

.language-switcher__toggle img,
.language-switcher__item img {
	display: block;
	width: 24px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(20, 40, 60, 0.08);
}

.language-switcher__toggle > span {
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.language-switcher__toggle > svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.25s ease;
}

.language-switcher.is-open .language-switcher__toggle > svg {
	transform: rotate(180deg);
}

.language-switcher__dropdown {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 1000;
	width: 160px;
	padding: 8px;
	visibility: hidden;
	background: #fff;
	border: 1px solid #e3edf2;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(32, 63, 82, 0.15);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition:
		visibility 0.25s ease,
		opacity 0.25s ease,
		transform 0.25s ease;
}

.language-switcher__dropdown::before {
	position: absolute;
	right: 20px;
	bottom: 100%;
	width: 12px;
	height: 12px;
	background: #fff;
	border-top: 1px solid #e3edf2;
	border-left: 1px solid #e3edf2;
	content: "";
	transform: translateY(6px) rotate(45deg);
}

.language-switcher.is-open .language-switcher__dropdown {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.language-switcher__item {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 8px 10px;
	color: #252a2e;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 9px;
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.language-switcher__item:hover {
	color: #159fe8;
	background: #edf9ff;
}

.language-switcher__item.is-active {
	color: #159fe8;
	background: #f3faff;
	cursor: default;
}

.language-switcher__check {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/**********************************************************/

.section_head {
  margin-bottom: 30px;
}

.section_head.full {
  text-align: center;
}

.section-pretitle {
  color: #159fe8;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  margin: 10px 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title {
  margin: 0 0 30px;
  color: #171717;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(36px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.2px;
}

.section-title.center {
  text-align: center;
}

/**********************************************************/
.tour-search-section {
  position: relative;
  margin-top: -80px;
  min-height: 150px;
  padding: 0;
  margin-bottom: 60px;
}

.tour-widget {
  padding: 10px 20px;
  position: relative;
  min-height: 150px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e8eaed;
  box-shadow: 0 15px 35px rgba(23, 113, 170, 0.12);
}

/* itTourWidgetWrapper */

#itTourWidgetWrapper {
  position: relative;
  z-index: 2;
  min-height: 150px;
}

/* Placeholder */

.tour-widget__placeholder {
  position: absolute;
  z-index: 5;
  inset: 0;
  padding: 10px 20px;
  background: #fff;
  border-radius: inherit;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.tour-widget.is-loaded .tour-widget__placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tour-widget__tabs {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 36px;
  margin-bottom: 10px;
}

.tour-widget__tabs span {
  display: block;
  width: 145px;
  height: 15px;
  background: #e8f2f8;
  border-radius: 8px;
  animation: tour-widget-pulse 1.4s ease-in-out infinite;
}

.tour-widget__tabs span:nth-child(2) {
  width: 180px;
}

.tour-widget__tabs span:nth-child(3) {
  width: 155px;
}

.tour-widget__tabs span:nth-child(4) {
  width: 205px;
}

.tour-widget__fields {
  display: grid;
  grid-template-columns:
    minmax(250px, 1.7fr) minmax(220px, 1fr) minmax(190px, 1fr) minmax(210px, 1fr) minmax(220px, 1fr);
  gap: 18px;
}

.tour-widget__fields span {
  display: block;
  height: 81px;

  background: linear-gradient(90deg,
      #edf5fa 0%,
      #f7fbfd 50%,
      #edf5fa 100%);
  background-size: 200% 100%;
  border: 1px solid #e4edf2;
  border-radius: 16px;
  animation: tour-widget-shimmer 1.5s linear infinite;
}

.tour-widget__fields .tour-widget__button {
  height: 55px;
  align-self: center;
  background: #d8effc;
  border: 0;
  border-radius: 40px;
}

.tour-widget__loading {
  position: absolute;
  right: 30px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #718391;
}

.tour-widget__spinner {
  width: 17px;
  height: 17px;
  border: 2px solid #d4e7f2;
  border-top-color: #129de9;
  border-radius: 50%;
  animation: tour-widget-spin 0.7s linear infinite;
}

@keyframes tour-widget-pulse {

  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

@keyframes tour-widget-shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

@keyframes tour-widget-spin {
  to {
    transform: rotate(360deg);
  }
}



.travel-benefits {
  padding: 0 20px 48px 20px;
  position: relative;
}

.travel-benefits__container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.benefit-item__icon {
  display: flex;
  flex: 0 0 94px;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #eefaff;
  color: #1097e1;
}

.benefit-item__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item__icon svg circle {
  fill: none;
}

.price-tag-icon circle {
  fill: none;
  stroke: currentColor;
}

.benefit-item__icon:first-child svg circle {
  fill: none;
  stroke: currentColor;
}

@media (max-width: 650px) {
  .benefit-item__icon svg {
    width: 32px;
    height: 32px;
  }
}

.benefit-item__content {
  min-width: 0;
}

.benefit-item__content h3 {
  margin: 0 0 12px;
  color: #151515;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.benefit-item__content p {
  margin: 0;
  color: #5e6268;

  font-size: 15px;
  line-height: 1.7;
}

/* Tablet */
@media (max-width: 1100px) {
  .travel-benefits__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 50px;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .travel-benefits {
    padding: 35px 20px;
  }

  .travel-benefits__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .benefit-item {
    align-items: flex-start;
    gap: 16px;
  }

  .benefit-item__icon {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .benefit-item__icon i {
    font-size: 29px;
  }

  .benefit-item__content h3 {
    margin-bottom: 7px;
    font-size: 17px;
  }

  .benefit-item__content p {
    font-size: 16px;
    line-height: 1.4;
  }
}

/**********************************************************/
.destinations-section {
  padding: 80px 20px;
  overflow: hidden;
  background: #fff;
}

.destinations-container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
}

.destinations-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}
h1.section-subtitle{
  font-weight: 500;
}
.section-subtitle,
.destinations-subtitle {
  display: block;
  margin-bottom: 8px;
  color: #1097e1;
  font-family: "Comic Sans MS";
  font-size: 28px;
  line-height: 1;
}

.destinations-heading h2 {
  margin: 0;
  color: #121212;

  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.destinations-view-all {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 9px;
  color: #353a40;

  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.destinations-view-all svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.destinations-view-all:hover {
  color: #159fe5;
}

.destinations-view-all:hover svg {
  transform: translateX(5px);
}

/* Slider */

.destinations-slider {
  padding-bottom: 50px;
  overflow: visible;
}

.destinations-slider .swiper-slide {
  height: auto;
}

.destinations-slider .destinations-pagination {
  margin-top: 30px;
}

.destination-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid #e8eaed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(25, 48, 70, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-card:hover {
  box-shadow: 0 15px 35px rgba(25, 48, 70, 0.12);
}

.destination-card__image {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 20px 20px 16px 16px;
  background: #eaf2f7;
}

.destination-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-card__image img {
  transform: scale(1.05);
}

.destination-card__favorite {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(30, 61, 82, 0.24);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition:
    color 0.25s ease,
    background 0.25s ease;

  display: none !important;
}

.destination-card__favorite svg {
  width: 23px;
  height: 23px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.destination-card__favorite:hover,
.destination-card__favorite.is-active {
  border-color: #fff;
  background: #fff;
  color: #ef476f;
}

.destination-card__favorite.is-active svg {
  fill: currentColor;
}

.destination-card__content {
  padding: 24px 20px 27px;
}

.destination-card__content h3 {
  margin: 0 0 10px;
  color: #181818;

  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
}

.destination-card__content p {
  margin: 0 0 12px;
  color: #787d83;

  font-size: 16px;
  line-height: 1.4;
}

.destination-card__content strong {
  color: #159fe5;

  font-size: 18px;
  font-weight: 700;
}

.destinations-pagination.swiper-pagination {
  bottom: 2px;
}

.destinations-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 7px !important;
  background: #d9dde1;
  opacity: 1;
  transition: width 0.25s ease;
}

.destinations-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 10px;
  background: #159fe5;
}

/* Tablet */

@media (max-width: 1100px) {
  .destination-card__image {
    height: 360px;
  }
}

/* Mobile */

@media (max-width: 650px) {
  .destinations-section {
    padding: 55px 16px;
  }

  .destinations-heading {
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .destinations-subtitle {
    font-size: 24px;
        text-align: center;
  }

  .destinations-heading h2 {
    font-size: 35px;
    letter-spacing: -1px;
  }
  

  .destination-card__image {
    height: 390px;
  }

  .destination-card__content {
    padding: 20px;
  }

  .destination-card__content h3 {
    font-size: 21px;
  }
}

/**********************************************************/

.summer-offer {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1450px;
  min-height: 500px;
  margin: 70px auto;
  overflow: hidden;
  border-radius: 30px;
  background: #086b83;
  padding: 0;
}

.summer-offer__background,
.summer-offer__background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.summer-offer__background img {
  display: block;
  object-fit: cover;
  object-position: center;
}


/* .summer-offer__overlay {
  position: absolute;
  inset: 0;
 
      background: linear-gradient(
        90deg, 
         rgb(0 195 255 / 54%) 0%,
         rgb(82 164 253 / 45%) 33%, 
         rgba(1, 87, 109, 0.16) 62%, 
         rgba(1, 87, 109, 0) 100%);
} */

.summer-offer__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  min-height: 500px;
  padding: 60px 70px;
  color: #fff;
}

.summer-offer__label {
  display: block;
  margin-bottom: 15px;
  font-family: "Comic Sans MS";
  font-size: 28px;
  line-height: 1;
}

.summer-offer__content h2 {
  margin: 0 0 22px;
  color: #fff;

  font-size: clamp(42px, 4vw, 61px);
  font-weight: 700;
  line-height: 1.2;
}

.summer-offer__content p {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.94);

  font-size: 18px;
  line-height: 1.65;
}

.summer-offer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 235px;
  min-height: 64px;
  padding: 15px 30px;
  border-radius: 50px;
  background: #fff;
  color: #169fe5;

  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 48, 72, 0.15);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.summer-offer__button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.summer-offer__button:hover {
  transform: translateY(-3px);
  background: #159fe5;
  color: #fff;
}

.summer-offer__button:hover svg {
  transform: translateX(5px);
}

/* Tablet */

@media (max-width: 1000px) {
  .summer-offer {
    min-height: 460px;
  }

  .summer-offer__content {
    width: 65%;
    min-height: 460px;
    padding: 50px;
  }

  .summer-offer__overlay {
    background: linear-gradient(90deg,
        rgba(1, 65, 85, 0.9) 0%,
        rgba(1, 78, 99, 0.72) 48%,
        rgba(1, 78, 99, 0.15) 100%);
  }
}

/* Mobile */

@media (max-width: 650px) {
  .summer-offer {
    width: calc(100% - 32px);
    min-height: 540px;
    margin: 45px auto;
    border-radius: 22px;
  }

  .summer-offer__background img {
    object-position: 65% center;
  }

  .summer-offer__overlay {
    background: linear-gradient(180deg,
        rgba(0, 55, 73, 0.28) 0%,
        rgba(0, 55, 73, 0.9) 70%,
        rgba(0, 55, 73, 0.96) 100%);
  }

  .summer-offer__content {
    justify-content: flex-end;
    width: 100%;
    min-height: 540px;
    padding: 35px 25px;
  }

  .summer-offer__label {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .summer-offer__content h2 {
    margin-bottom: 15px;
    font-size: 38px;
    line-height: 1.12;
  }

  .summer-offer__content p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.5;
  }

  .summer-offer__content p br {
    display: none;
  }

  .summer-offer__button {
    min-width: 195px;
    min-height: 56px;
    font-size: 18px;
  }
}

/**********************************************************/

.why-travel {
  padding: 90px 20px;
  overflow: hidden;
  background: #fff;
}

.why-travel__container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
}

/* Content */

.why-travel__content {
  position: relative;
  z-index: 2;
}

.why-travel__content h2 {
  margin: 0 0 27px;
  color: #151515;

  font-size: clamp(42px, 4.1vw, 59px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.why-travel__description {
  margin: 0 0 35px;
  color: #555b61;

  font-size: 17px;
  line-height: 1.75;
}

.why-travel__list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.why-travel__list li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #34383d;

  font-size: 18px;
  font-weight: 500;
}

.why-travel__check {
  display: flex;
  flex: 0 0 27px;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 2px solid #23a8f2;
  border-radius: 50%;
  color: #23a8f2;
}

.why-travel__check svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-travel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 310px;
  min-height: 62px;
  padding: 15px 28px;
  border-radius: 50px;
  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  color: #fff;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 157, 237, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.why-travel__button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.why-travel__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(16, 157, 237, 0.3);
  background: #1097e1;
}

.why-travel__button:hover svg {
  transform: translateX(5px);
}

/* Images */

.why-travel__gallery {
  position: relative;
  min-height: 650px;
}

.why-travel__image {
  position: absolute;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 31px;
  background: #e9f3f8;
  box-shadow: 0 12px 32px rgba(44, 72, 94, 0.1);
}

.why-travel__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-travel__image--main {
  top: 0;
  left: 65px;
  width: 53%;
  height: 620px;
  z-index: 1;
}

.why-travel__image--top {
  top: 55px;
  right: 0;
  width: 47%;
  height: 290px;
  z-index: 3;
}

.why-travel__image--bottom {
  right: 12%;
  bottom: 12px;
  width: 42%;
  height: 280px;
  z-index: 4;
}

.why-travel__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: #eefaff;
  z-index: 0;
}

/* Decorative dots */

.why-travel__dots {
  position: absolute;
  top: 65px;
  left: -20px;
  width: 90px;
  height: 130px;
  z-index: 0;
  opacity: 0.7;
  background-image: radial-gradient(circle,
      #54bafa 3px,
      transparent 4px);
  background-size: 30px 30px;
}

/* Tablet */

@media (max-width: 1100px) {
  .why-travel__container {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .why-travel__gallery {
    min-height: 570px;
  }

  .why-travel__image--main {
    left: 20px;
    width: 65%;
    height: 540px;
  }

  .why-travel__image--top {
    width: 52%;
    height: 245px;
  }

  .why-travel__image--bottom {
    right: 0;
    width: 52%;
    height: 235px;
  }

  .why-travel__dots {
    left: -25px;
  }
}

/* Mobile */

@media (max-width: 760px) {
  .why-travel {
    padding: 60px 16px;
  }

  .why-travel__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-travel__subtitle {
    font-size: 25px;
  }

  .why-travel__content h2 {
    margin-bottom: 20px;
    font-size: 39px;
    letter-spacing: -1px;
  }

  .why-travel__description {
    font-size: 15px;
    line-height: 1.65;
  }

  .why-travel__description br {
    display: none;
  }

  .why-travel__list li {
    font-size: 16px;
  }

  .why-travel__button {
    width: 100%;
    min-width: 0;
    font-size: 18px;
  }

  .why-travel__gallery {
    min-height: 490px;
  }

  .why-travel__image {
    border-width: 3px;
    border-radius: 22px;
  }

  .why-travel__image--main {
    top: 0;
    left: 0;
    width: 68%;
    height: 460px;
  }

  .why-travel__image--top {
    top: 35px;
    right: 0;
    width: 48%;
    height: 205px;
  }

  .why-travel__image--bottom {
    right: 2%;
    bottom: 10px;
    width: 49%;
    height: 205px;
  }

  .why-travel__shape {
    width: 260px;
    height: 260px;
  }

  .why-travel__dots {
    display: none;
  }
}

/* Small phones */

@media (max-width: 430px) {
  .why-travel__gallery {
    min-height: 420px;
  }

  .why-travel__image--main {
    width: 70%;
    height: 395px;
  }

  .why-travel__image--top {
    width: 51%;
    height: 175px;
  }

  .why-travel__image--bottom {
    width: 52%;
    height: 175px;
  }
}

/**********************************************************/

.travel-contact-section {
  padding: 60px 20px 80px;
  background: #fff;
}

.travel-contact-container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
}

/* Newsletter */

.travel-newsletter {
  display: grid;
  grid-template-columns: minmax(450px, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 65px;
  min-height: 210px;
  padding: 35px 48px;
  border-radius: 24px;
  background: linear-gradient(105deg,
      #edf8ff 0%,
      #f8fcff 50%,
      #edf8ff 100%);
}

.travel-newsletter__info {
  display: flex;
  align-items: center;
  gap: 28px;
}

.travel-newsletter__icon {
  display: flex;
  flex: 0 0 120px;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 4px solid #2cafd6;
  border-radius: 50%;
  /* background: linear-gradient(145deg, #7bcbff, #199df0); */
  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  color: #fff;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.35),
    0 10px 25px rgba(19, 153, 232, 0.2);
}

.travel-newsletter__icon svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.travel-newsletter__text span {
  display: block;
  margin-bottom: 10px;
  color: #4f555b;

  font-size: 16px;
}

.travel-newsletter__text h2 {
  margin: 0;
  color: #151515;

  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

/* Newsletter form */

.travel-newsletter__form {
  position: relative; 
  padding: 0px; 
}
.travel-newsletter__fields{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  width: 100%;
}
.travel-newsletter__form input,
.travel-newsletter__form input[type="email"] {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 58px;
  padding: 0 25px;
  border: 0;
  outline: 0;
  border-radius: 50px;
  background: transparent;
  color: #282d31;

  font-size: 16px;
  margin: 0;


  border: 1px solid #e4ebef;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(31, 65, 87, 0.04);
}

.travel-newsletter__form input::placeholder {
  color: #afb5bb;
}
.travel-newsletter__fields .wpcf7-spinner{
  display: none !important;
}
.travel-newsletter__fields .wpcf7-form-control-wrap{
  min-width: calc( 100% - 160px );
  position: relative;
  z-index: 1;
}
.travel-newsletter__form button,
.travel-newsletter__form input[type="submit"] {

  position: absolute;
  z-index: 2;
  right: 0;
  width: 200px;
  height: 58px;
  padding: 0 25px;
  border: 0;
  border-radius: 50px;
  /* background: linear-gradient(90deg, #1298ed, #17aaf6); */
  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  color: #fff;

  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease; 
 
}

.travel-newsletter__form button:hover,
.travel-newsletter__form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 154, 237, 0.25);
  background: #1097e1;
}

/* Contact bar */

.travel-contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  padding: 25px 45px;
  border-radius: 24px;
  background: linear-gradient(105deg,
      #edf8ff 0%,
      #f9fcff 50%,
      #edf8ff 100%);
}

.travel-contact-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 78px;
  padding: 5px 30px;
}

.travel-contact-item:not(:last-child)::after {
  position: absolute;
  top: 7px;
  right: 0;
  width: 1px;
  height: calc(100% - 14px);
  background: #dce8ee;
  content: "";
}

.travel-contact-item__icon {
  display: flex;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e1f6ff;
  color: #119ff0;
}

.travel-contact-item__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.travel-contact-item__content {
  min-width: 0;

}

.travel-contact-item__content span {
  display: block;
  margin-bottom: 7px;
  color: #4b5055;
  font-size: 15px;
}

.travel-contact-item__content a,
.travel-contact-item__content address {
  display: block;
  margin: 0;
  color: #24282c;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.travel-contact-item__content a:hover {
  color: #119ff0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Tablet */

@media (max-width: 1050px) {
  .travel-newsletter {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .travel-newsletter__form {
    max-width: 700px;
    width: 100%;
  }

  .travel-contact-bar {
    padding: 25px;
  }

  .travel-contact-item {
    justify-content: flex-start;
    padding: 5px 20px;
  }

  .travel-contact-item__icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .travel-contact-item__icon svg {
    width: 27px;
    height: 27px;
  }
}

/* Mobile */

@media (max-width: 760px) {
  .travel-contact-section {
    padding: 45px 16px 60px;
  }

  .travel-newsletter {
    display: block;
    padding: 30px 20px;
    text-align: center;
  }

  .travel-newsletter__info {
    flex-direction: column;
    gap: 20px;
  }

  .travel-newsletter__icon {
    flex-basis: 105px;
    width: 105px;
    height: 105px;
  }

  .travel-newsletter__icon svg {
    width: 47px;
    height: 47px;
  }

  .travel-newsletter__text h2 {
    font-size: 23px;
    line-height: 1.4;
  }

  .travel-newsletter__text h2 br {
    display: none;
  }

  .travel-newsletter__form {
    margin-top: 25px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .travel-newsletter__fields{
    flex-direction: column;
    gap: 10px;
  }
.travel-newsletter__fields .wpcf7-form-control-wrap {
    width: 100%;
}
.travel-newsletter__form button,
.travel-newsletter__form input[type="submit"] {

  position: relative; 
  width: 100%;
}

  .travel-newsletter__form input,
  .travel-newsletter__form button {
    flex: none;
    width: 100%;
    height: 56px; 
    margin-left: 0; 
  }

  .travel-newsletter__form input {
    border: 1px solid #e0e8ed;
    background: #fff;
  }

  .travel-contact-bar {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 35px;
    padding: 15px 22px;
  }

  .travel-contact-item {
    justify-content: flex-start;
    padding: 22px 0;
  }

  .travel-contact-item:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
}

.travel-contact-item--phones {
  z-index: 5;
}

.phone-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}

.phone-dropdown__primary {
  white-space: nowrap;
}

.phone-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #555b61;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.phone-dropdown__toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.phone-dropdown__toggle:hover {
  background: #dff4ff;
  color: #119ff0;
}

/* Dropdown */

.phone-dropdown__menu {
  position: absolute;
  top: calc(100% + 15px);
  left: -18px;
  width: 245px;
  padding: 9px;
  visibility: hidden;
  border: 1px solid #e3edf2;
  border-radius: 15px;
  background: #fff;
  opacity: 0;
  box-shadow: 0 15px 35px rgba(32, 63, 82, 0.14);
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}


.phone-dropdown__menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
  content: "";
}

.phone-dropdown__menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 10px;
  color: #24282c;

  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.phone-dropdown__menu a span {
  display: block;
  margin-bottom: 2px;
  color: #8a9298;
  font-size: 12px;
  font-weight: 400;
}

.phone-dropdown__menu a:hover {
  background: #edf9ff;
  color: #119ff0;
}


.phone-dropdown__toggle:hover+.phone-dropdown__menu,
.phone-dropdown__menu:hover,
.phone-dropdown.is-open .phone-dropdown__menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.phone-dropdown__toggle:hover svg,
.phone-dropdown.is-open .phone-dropdown__toggle svg {
  transform: rotate(180deg);
}

.phone-dropdown.is-open .phone-dropdown__toggle {
  background: #dff4ff;
  color: #119ff0;
}

/**********************************************************/
/**********************************************************/

.travel-types {
  padding: 80px 20px 100px;
  background:
    radial-gradient(circle at 50% 10%, rgba(64, 167, 235, 0.06), transparent 32%),
    #fff;
  color: #222;
}

.travel-types *,
.travel-types *::before,
.travel-types *::after {
  box-sizing: border-box;
}

.travel-types__header {
  max-width: 900px;
  margin: 30px auto;
  text-align: center;
}

.page__header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.tour--links .travel-types__header {
  max-width: 800px;
  margin: 30px auto 10px auto;
  text-align: center;
}

.section_description,
.travel-types__header p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.travel-types__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 38px;
}

.travel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5ebef;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(24, 76, 111, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.travel-card:hover {
  transform: translateY(-7px);
  border-color: rgba(21, 152, 237, 0.3);
  box-shadow: 0 18px 38px rgba(23, 86, 128, 0.13);
}

.travel-card__image {
  height: 235px;
  overflow: hidden;
  background: #e8f3fa;
}

.travel-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.travel-card:hover .travel-card__image img {
  transform: scale(1.055);
}

.travel-card__icon {
  position: absolute;
  top: 195px;
  left: 20px;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(36, 83, 114, 0.15);
}

.travel-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #1598ed;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.travel-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 51px 22px 25px;
}

.travel-card__content h3 {
  margin: 0 0 15px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.25;
  color: #242424;
}

.travel-card__content p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #606870;
}

.travel-card__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  width: 100%;
  margin-top: auto;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #1598ed;
  transition: color 0.25s ease;
}

.travel-card__link span {
  display: inline-block;
  font-size: 20px;
  transition: transform 0.25s ease;
}

.travel-card__link:hover {
  color: #087cc4;
}

.travel-card__link:hover span {
  transform: translateX(5px);
}

@media (max-width: 1199px) {
  .travel-types__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .travel-card__image {
    height: 260px;
  }

  .travel-card__icon {
    top: 220px;
  }
}

@media (max-width: 767px) {
  .travel-types {
    padding: 55px 16px 70px;
  }

  .travel-types__header {
    margin-bottom: 35px;
  }

  .travel-types__header p br {
    display: none;
  }

  .travel-types__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .travel-card__image {
    height: 230px;
  }

  .travel-card__icon {
    top: 192px;
    width: 70px;
    height: 70px;
  }

  .travel-card__icon svg {
    width: 38px;
    height: 38px;
  }

  .travel-card__content {
    padding: 48px 20px 23px;
  }
}

@media (max-width: 420px) {
  .travel-card__image {
    height: 205px;
  }

  .travel-card__icon {
    top: 168px;
  }
}

/**********************************************************/

.vacation-help {
  background: #fff;
}

.vacation-help *,
.vacation-help *::before,
.vacation-help *::after {
  box-sizing: border-box;
}

.vacation-help__banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 345px;
  overflow: hidden;

  background-color: #eef8ff;
  background-image: url("images/vacation-help-light.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  border: 1px solid #e6f0f7;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(31, 114, 167, 0.08);
}

.vacation-help__banner.links_to {
  background-image: url("images/cta-help-light.webp");
}

.vacation-help__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background: linear-gradient(90deg,
      rgba(241, 249, 255, 0.98) 0%,
      rgba(238, 248, 255, 0.92) 26%,
      rgba(235, 247, 255, 0.55) 42%,
      rgba(235, 247, 255, 0) 59%);
}

.vacation-help__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 590px;
  padding: 44px 58px;
}

.vacation-help__content h2 {
  max-width: 520px;
  margin: 0 0 20px;

  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 650;
  line-height: 1.15;
  color: #102f5e;
}

.vacation-help__content p {
  margin: 0 0 30px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
  color: #168fd9;
}

.vacation-help__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-width: 320px;
  min-height: 65px;
  padding: 15px 32px;

  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  border-radius: 50px;
  box-shadow: 0 9px 22px rgba(8, 125, 204, 0.25);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.vacation-help__button span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.vacation-help__button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(8, 125, 204, 0.32);
  background: #1097e1;
}

.vacation-help__button:hover span {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .vacation-help__banner {
    background-position: 58% center;
  }

  .vacation-help__banner::before {
    background: linear-gradient(90deg,
        rgba(241, 249, 255, 0.98) 0%,
        rgba(238, 248, 255, 0.9) 48%,
        rgba(238, 248, 255, 0.15) 100%);
  }

  .vacation-help__content {
    max-width: 540px;
    padding: 40px;
  }
}

@media (max-width: 767px) {

  .vacation-help__banner {
    align-items: flex-end;
    min-height: 540px;
    background-position: 68% center;
    border-radius: 18px;
  }

  .vacation-help__banner::before {
    background: linear-gradient(0deg,
        rgba(240, 249, 255, 0.90) 0%,
        rgba(240, 249, 255, 0.76) 40%,
        rgba(240, 249, 255, 0.08) 76%);
  }

  .vacation-help__content {
    max-width: 100%;
    padding: 30px 24px;
  }

  .vacation-help__content h2 {
    font-size: 34px;
    text-align: center;Â´
  }

  .vacation-help__content p {
    font-size: 20px;
    text-align: center;
  }

  .vacation-help__button {
    width: 100%;
    min-width: 0;
    min-height: 59px;
  }
}

@media (max-width: 420px) {
  .vacation-help__content h2 {
    font-size: 30px;
  }

  .vacation-help__content p br {
    display: none;
  }
}

/**********************************************************/
.single-content strong {
  font-weight: 600;
  color: #102f5e;
}

.hot-offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 30px 0 10px;
}

.hot-offers-header__content {
  min-width: 0;
}

.hot-offers-header__eyebrow {
  margin-bottom: 12px;
  color: #ff7a1a;
  font-family: "Cormorant", serif;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

.hot-offers-header__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #181818;
  font-family: "Cormorant", serif;
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hot-offers-header__fire {
  display: inline-flex;
  align-items: center;
  font-family: sans-serif;
  font-size: 0.72em;
  line-height: 1;
  transform: translateY(2px);
}

.hot-offers-header__description {
  margin: 20px 0 0;
  color: #70757d;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.hot-offers-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 300px;
  min-height: 55px;
  padding: 16px 34px;
  color: #1097e1;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  background: #fff;
  border: 2px solid #1097e1;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  flex-shrink: 0;
}

.hot-offers-header__button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.hot-offers-header__button:hover {
  color: #fff;
  background: #1097e1;
  border-color: #1097e1;
  box-shadow: 0 14px 30px rgba(16, 157, 237, 0.3);
  transform: translateY(-2px);
}

.hot-offers-header__button:hover svg {
  transform: translateX(5px);
}

.hot-offers-header__button:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.3);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .hot-offers-header {
    align-items: flex-end;
    gap: 28px;
  }

  .hot-offers-header__button {
    min-width: auto;
    min-height: 58px;
    padding: 14px 24px;
  }
}

@media (max-width: 767px) {
  .hot-offers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 0;
  }

  .hot-offers-header__eyebrow {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .hot-offers-header__title {
    gap: 9px;
    font-size: clamp(38px, 11vw, 50px);
  }

  .hot-offers-header__description {
    margin-top: 15px;
    font-size: 16px;
  }

  .hot-offers-header__button {
    width: 100%;
    min-height: 56px;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/**********************************************************/


.popular-countries {
  padding: 80px 20px 100px;
  background:
    radial-gradient(circle at 50% 5%,
      rgba(17, 157, 237, 0.06),
      transparent 32%),
    #fff;
}

.popular-countries *,
.popular-countries *::before,
.popular-countries *::after {
  box-sizing: border-box;
}

.popular-countries .container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* Section heading */

.popular-countries__heading {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
}


.popular-countries__heading h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 550;
  line-height: 1.1;
  color: #202020;
}

.popular-countries__wave {
  display: block;
  width: 70px;
  height: 15px;
  margin: 20px auto;
}

.popular-countries__wave svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #159dea;
  stroke-width: 4;
  stroke-linecap: round;
}

.popular-countries__heading p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.7;
  color: #68717c;
}

/* Grid */

.popular-countries__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card */

.country-card {
  position: relative;
  min-width: 0;
  min-height: 375px;
  overflow: hidden;

  background: #e9f4fa;
  border: 1px solid #e2eaf0;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(31, 81, 115, 0.07);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.country-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(31, 81, 115, 0.17);
}

.country-card__image {
  position: absolute;
  inset: 0;
  display: block;
}

.country-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.12) 68%,
      rgba(255, 255, 255, 0.88) 95%,
      #fff 100%);
}

.country-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-position: center;
  transition: transform 0.6s ease;
}

.country-card:hover .country-card__image img {
  transform: scale(1.055);
}

/* Card content */

.country-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 25px 20px;
  background: rgb(255 255 255 / 77%);
}

.country-card__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;

  font-family: "Source Serif 4", Georgia, serif;
  font-size: 29px;
  font-weight: 650;
  line-height: 1.2;
  color: #222;
}

.country-card__title::before {
  content: "";
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;

  background-color: #159dea;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 21s6-5.2 6-11a6 6 0 1 0-12 0c0 5.8 6 11 6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23px;

  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(9, 111, 181, 0.25);
}

.country-card__title a {
  text-decoration: none;
  color: inherit;
}

.country-card__title a::after {
  content: "";
  position: absolute;
  inset: -270px -30px -100px;
}

.country-card__link {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 53px;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  color: #159dea;
}

.country-card__link span {
  display: inline-block;
  font-size: 21px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.country-card__link:hover span {
  transform: translateX(6px);
}

/* Empty state */

.popular-countries__empty {
  padding: 45px;
  text-align: center;
  background: #f2f9fd;
  border-radius: 15px;
}

.popular-countries__empty p {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #64717b;
}

/**********************************************************/
/**********************************************************/

.page-wrap {
  padding: 30px 0;
  width: 100%;
  overflow: hidden;
}

.breadcrumbs-cont {
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
  padding: 30px 0;
  margin-bottom: 30px;
  width: 100%;
  overflow: hidden;
}

.breadcrumbs {
  text-align: left;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs a {
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}

.breadcrumbs a:hover {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45), 1px 0px 0px rgba(0, 0, 0, 0.4);
}

.breadcrumbs__current {
  color: #fff;
}

.breadcrumbs__separator {
  color: #D3D2D2;
  margin: 0 10px;
}

.pre_title {
  text-align: center
}

.pre_title span {
  display: block;
  font-style: normal;
  font-weight: 300;
  font-size: 34px;
  line-height: 70px;
  text-align: center;
  letter-spacing: 0.03em;
}

.pre_title span.title_line1 {
  color: #323232;
}

.pre_title span.title_line2 {
  color: #61798D;
}

/*
===============================End  ========*/
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 300px;
  overflow: hidden;

  color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(90deg,
      rgba(18, 23, 14, 0.08) 0%,
      rgba(18, 23, 14, 0.16) 28%,
      rgba(18, 23, 14, 0.48) 48%,
      rgba(18, 23, 14, 0.1) 78%,
      rgba(18, 23, 14, 0.05) 100%),
    linear-gradient(0deg,
      rgba(10, 18, 10, 0.55) 0%,
      rgba(10, 18, 10, 0.05) 60%);
}

.page-hero__container {
  position: relative;
  z-index: 2;
}

.page-hero__pretitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.95);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.page-hero__pretitle::before,
.page-hero__pretitle::after {
  content: "";
  width: 28px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.65);
}

.page-hero__title {
  margin: 0 0 22px;

  color: #fff;
  font-family: "Source Serif 4", serif;
  font-size: clamp(48px, 4.2vw, 70px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 1px;

  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.45),
    1px 0px 0px rgba(0, 0, 0, 0.4);
}

.page-hero__description {
  width: min(620px, 100%);
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.94);
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.55;

  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.75);
}

/* Laptop */
@media (max-width: 1200px) {
  .page-hero__content {
    margin-left: 18%;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .page-hero {
    min-height: 570px;
    background-position: 62% center;
  }

  .page-hero__overlay {
    background: rgba(10, 20, 12, 0.42);
  }

  .page-hero__content {
    width: min(650px, 100%);
    margin: 0 auto;
  }

  .page-hero__title {
    font-size: clamp(44px, 8vw, 64px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .page-hero {
    min-height: 220px;
    padding: 70px 0;
    background-position: 68% center;
  }


  .page-hero__content {
    margin-top: auto;
  }

  .page-hero__pretitle {
    margin-bottom: 17px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .page-hero__title {
    margin-bottom: 18px;
    font-size: 43px;
    line-height: 1.05;
  }

  .page-hero__title br {
    display: none;
  }

  .page-hero__description {
    font-size: 16px;
    line-height: 1.55;
  }
}

/************************************************************************/
.about-agency {
  /* padding: 100px 20px; */
  overflow: hidden;
  background: #fff;
}

.about-agency__container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(540px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 7vw, 120px);
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* Content */

/* .about-agency__label {
  display: block;
  margin-bottom: 25px;
  color: #159fe8;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-agency__content h2 {
  margin: 0 0 23px;
  color: #171717;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
}
 */
.about-agency__content h3 {
  margin: 0 0 28px;
  color: #159fe8;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 600;
  line-height: 1.4;
}

.about-agency__text {
  max-width: 760px;
  color: #4f555a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.about-agency__text p {
  margin: 0 0 20px;
}

/* Features */

.about-agency__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 45px;
}

.about-feature {
  min-width: 0;
}

.about-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 17px;
  border: 1px solid #e3f1f8;
  border-radius: 50%;
  background: #f1faff;
  color: #149fe8;
  box-shadow: 0 8px 20px rgba(20, 159, 232, 0.12);
}

.about-feature__icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature strong {
  color: #30353a;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

/* Gallery */

.about-agency__gallery {
  position: relative;
  min-height: 750px;
}

.about-agency__image {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 28px;
  background: #e8f4f8;
  box-shadow: 0 14px 35px rgba(31, 67, 88, 0.12);
}

.about-agency__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-agency__image--main {
  top: 0;
  left: 12%;
  width: 78%;
  height: 510px;
}

.about-agency__image--couple {
  bottom: 5px;
  left: 2%;
  z-index: 3;
  width: 51%;
  height: 340px;
}

.about-agency__image--sign {
  right: 0;
  bottom: 5px;
  z-index: 4;
  width: 43%;
  height: 360px;
}

.about-agency__circle {
  position: absolute;
  right: -5%;
  bottom: -20px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: #eaf8ff;
}

.about-agency__dots {
  position: absolute;
  top: 160px;
  right: -38px;
  width: 100px;
  height: 230px;
  background-image: radial-gradient(circle,
      #159fe8 3px,
      transparent 4px);
  background-size: 36px 36px;
}

/* Tablet */

@media (max-width: 1200px) {
  .about-agency__container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .about-agency__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-agency__gallery {
    min-height: 650px;
  }

  .about-agency__image--main {
    left: 7%;
    width: 85%;
    height: 450px;
  }

  .about-agency__image--couple {
    width: 55%;
    height: 290px;
  }

  .about-agency__image--sign {
    width: 47%;
    height: 305px;
  }
}

/* Mobile */

@media (max-width: 800px) {
  .about-agency {
    padding: 65px 16px;
  }

  .about-agency__container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-agency__content h2 {
    font-size: 38px;
  }

  .about-agency__content h2 br {
    display: none;
  }

  .about-agency__content h3 {
    font-size: 22px;
  }

  .about-agency__text { 
    line-height: 1.55;
  }

  .about-agency__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .about-feature {
    text-align: center;
  }

  .about-feature__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
  }

  .about-feature__icon svg {
    width: 33px;
    height: 33px;
  }

  .about-agency__gallery {
    min-height: 540px;
  }

  .about-agency__image {
    border-width: 3px;
    border-radius: 21px;
  }

  .about-agency__image--main {
    top: 0;
    left: 7%;
    width: 86%;
    height: 370px;
  }

  .about-agency__image--couple {
    bottom: 0;
    left: 0;
    width: 56%;
    height: 235px;
  }

  .about-agency__image--sign {
    right: 0;
    bottom: 0;
    width: 46%;
    height: 250px;
  }

  .about-agency__circle {
    width: 280px;
    height: 280px;
  }

  .about-agency__dots {
    display: none;
  }
}

@media (max-width: 450px) {
  .about-agency__content h2 {
    font-size: 34px;
  }

  .about-agency__gallery {
    min-height: 460px;
  }

  .about-agency__image--main {
    height: 320px;
  }

  .about-agency__image--couple {
    height: 195px;
  }

  .about-agency__image--sign {
    height: 210px;
  }
}

/***********************************************************************/
.about-benefits {
  padding: 100px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(208, 237, 255, 0.6), transparent 35%),
    linear-gradient(110deg, #fff 0%, #f5fbff 55%, #edf8ff 100%);
}

.about-benefits__container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.about-benefits__top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(650px, 1.1fr);
  align-items: center;
  gap: 70px;
}

/* Content */

.about-benefits__label {
  display: block;
  margin-bottom: 25px;
  color: #159fe8;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* .about-benefits__content h2 {
  margin: 0 0 30px;
  color: #171717;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(42px, 3.6vw, 59px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -1.2px;
} */

.about-benefits__content h2 span {
  display: block;
  color: #1594dc;
}

.about-benefits__description {
  max-width: 680px;
  color: #4f565c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.about-benefits__description p {
  margin: 0 0 24px;
}

/* Right photo */

.about-benefits__visual {
  position: relative;
  min-height: 690px;
  margin-right: calc((1500px - 100vw) / 2);
}

.about-benefits__photo {
  position: absolute;
  top: 75px;
  right: 0;
  width: 72%;
  height: 615px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* Offers card */

.about-offers {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 440px;
  padding: 48px 48px 35px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(40, 75, 95, 0.12);
  backdrop-filter: blur(8px);
}

.about-offers h3 {
  margin: 0 0 25px;
  color: #24282d;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.about-offers ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-offers li {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 66px;
  border-bottom: 1px solid #e0e9ee;
  color: #262b30;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.about-offers li:last-child {
  border-bottom: 0;
}

.about-offers__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #159fe8;
}

.about-offers__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bottom location card */

.about-location {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 330px;
  align-items: center;
  gap: 45px;
  min-height: 245px;
  margin-top: 40px;
  padding: 35px 55px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(38, 75, 98, 0.08);
}

.about-location__image {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 50%;
}

.about-location__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-location__content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  z-index: 2;
}

.about-location__content p {
  max-width: 760px;
  margin: 0;
  color: #4f565c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.about-location__content strong {
  color: #252a2e;
}

.about-location__pin {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  fill: none;
  stroke: #159fe8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-location__plane {
  width: 100%;
  height: auto;
  overflow: visible;
}

.plane-route {
  fill: none;
  stroke: #159fe8;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
}

.plane-body {
  fill: #159fe8;
  opacity: 0.9;
}

/* Tablet */

@media (max-width: 1200px) {
  .about-benefits__top {
    grid-template-columns: 1fr;
  }

  .about-benefits__description {
    max-width: none;
  }

  .about-benefits__visual {
    min-height: 650px;
    margin-right: 0;
  }

  .about-benefits__photo {
    width: 70%;
    height: 580px;
  }

  .about-location {
    grid-template-columns: 170px 1fr;
  }

  .about-location__image {
    width: 150px;
    height: 150px;
  }

  .about-location__plane {
    display: none;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .about-benefits {
    padding: 65px 16px;
  }

  .about-benefits__top {
    gap: 45px;
  }

  .about-benefits__content h2 {
    font-size: 38px;
  }

  .about-benefits__content h2 br {
    display: none;
  }
 

  .about-benefits__visual {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .about-benefits__photo {
    position: relative;
    order: 1;
    top: auto;
    right: auto;
    width: 100%;
    height: 480px;
    border-radius: 24px 24px 0 0;
  }

  .about-offers {
    position: relative;
    order: 2;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: -30px;
    padding: 30px 24px 22px;
    border-radius: 24px;
  }

  .about-offers h3 {
    font-size: 20px;
  }

  .about-offers li {
    font-size: 18px;
  }

  .about-location {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
    padding: 30px 24px;
    text-align: center;
  }

  .about-location__image {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }

  .about-location__content {
    display: block;
  }

  .about-location__pin {
    margin: 0 auto 15px;
  }

  .about-location__content p {
    font-size: 18px;
    line-height: 1.55;
  }
}

/***********************************************************************/

.contact-details {
  padding: 65px 20px;
  background: #fff;
}

.contact-details__container {
  display: grid;
  grid-template-columns:
    minmax(230px, 0.9fr) minmax(300px, 1.1fr) minmax(280px, 1fr) minmax(250px, 0.9fr);
  gap: clamp(30px, 4vw, 75px);
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  min-width: 0;
}

.contact-detail__icon {
  display: flex;
  flex: 0 0 65px;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;

  /* background: #0a91fc; */
  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 141, 216, 0.22);
}

.contact-detail__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__content {
  min-width: 0;
  padding-top: 5px;
  font-family: "Inter", sans-serif;
}

.contact-detail__content h3 {
  margin: 0 0 13px;
  color: #292e33;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-detail__links,
.contact-detail__schedule {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-detail__links a,
.contact-detail__content address,
.contact-detail__schedule {
  color: #525960;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
}

.contact-detail__links a {
  transition: color 0.2s ease;
}

.contact-detail__links a:hover {
  color: #159fe8;
}

/* Tablet */

@media (max-width: 1200px) {
  .contact-details__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 60px;
  }
}

/* Mobile */

@media (max-width: 650px) {
  .contact-details {
    padding: 45px 16px;
  }

  .contact-details__container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-detail {
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid #e5edf2;
  }

  .contact-detail:first-child {
    padding-top: 0;
  }

  .contact-detail:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .contact-detail__icon {
    flex-basis: 65px;
    width: 65px;
    height: 65px;
  }

  .contact-detail__icon svg {
    width: 29px;
    height: 29px;
  }

  .contact-detail__content {
    padding-top: 1px;
  }

  .contact-detail__content h3 {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .contact-detail__links a,
  .contact-detail__content address,
  .contact-detail__schedule {
    font-size: 18px;
  }
}

/***********************************************************************/

.tours-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;

  margin: 55px 0 25px;
}

.tours-section .tours-section-head {
  margin: 0px 0 10px;
}

.tours-section-head .section-label {
  display: block;
  margin-bottom: 8px;

  color: #159fe5;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tours-section-head p {
  margin: 0;
}

.all-tours {
  flex-shrink: 0;
  padding-bottom: 5px;

  color: #159fe5;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.all-tours span {
  display: inline-block;
  margin-left: 7px;
  transition: transform .25s ease;
}

.all-tours:hover span {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .tours-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 35px;
    gap: 15px;
  }

  .tours-section-head h2 {
    font-size: 28px;
  }
}

.itt_hs_main_wrap.itt_border_color {
  height: 750px !important;
}

/***********************************************************************/

.country-single {
  background: #fff;
}

.country-single *,
.country-single *::before,
.country-single *::after {
  box-sizing: border-box;
}

.country-single__grid {
  display: grid;
  grid-template-columns: minmax(350px, 490px) minmax(0, 1fr);
  gap: clamp(55px, 7vw, 105px);
  align-items: start;
}

/* Ð›Ñ–Ð²Ð° ÐºÐ°Ñ€Ñ‚ÐºÐ° */

.country-card_info {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2eaf0;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(31, 86, 123, 0.13);
}

.country-card_info_image {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #e9f4fa;
}

.country-card_info_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card__region {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #148fdc;

  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 6px 18px rgba(23, 75, 110, 0.14);
}

.country-card__region svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.country-card__body {
  padding: 32px 38px 38px;
}

.country-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 20px;
}

.country-fact {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.country-fact__icon {
  display: block;
  width: 36px;
  height: 36px;
  background-color: #168fdb;

  -webkit-mask-image: var(--country-icon);
  mask-image: var(--country-icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 30px;
  mask-size: 30px;
}

.country-fact__label {
  display: block;
  margin-bottom: 3px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 650;
  color: #73b8e4;
}

.country-fact__value {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  color: #243243;
}

.country-fact__icon--capital {
  --country-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 3 7v2h18V7l-9-5ZM5 11v7H3v3h18v-3h-2v-7h-2v7h-3v-7h-2v7H9v-7H7v7H5v-7Z'/%3E%3C/svg%3E");
}

.country-fact__icon--area {
  --country-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 4h18v16H3V4Zm2 2v12h14V6H5Zm2 2h4v3H7V8Zm6 0h4v8h-4V8Zm-6 5h4v3H7v-3Z'/%3E%3C/svg%3E");
}

.country-fact__icon--language {
  --country-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm6.9 6h-3a16 16 0 0 0-1.4-3.2A8 8 0 0 1 18.9 8ZM12 4c.8 1 1.5 2.4 1.8 4h-3.6c.3-1.6 1-3 1.8-4ZM9.5 4.8A16 16 0 0 0 8.1 8h-3a8 8 0 0 1 4.4-3.2ZM4.3 10h3.5a16 16 0 0 0 0 4H4.3a8 8 0 0 1 0-4Zm.8 6h3a16 16 0 0 0 1.4 3.2A8 8 0 0 1 5.1 16Zm6.9 4c-.8-1-1.5-2.4-1.8-4h3.6c-.3 1.6-1 3-1.8 4Zm2.1-6H9.9a14 14 0 0 1 0-4h4.2a14 14 0 0 1 0 4Zm.4 5.2a16 16 0 0 0 1.4-3.2h3a8 8 0 0 1-4.4 3.2Zm1.7-5.2a16 16 0 0 0 0-4h3.5a8 8 0 0 1 0 4h-3.5Z'/%3E%3C/svg%3E");
}

.country-fact__icon--population {
  --country-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm6-1a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM9 13c-5 0-7 2.5-7 6v2h14v-2c0-3.5-2-6-7-6Zm6-.5c-.7 0-1.3.1-1.9.2 3.2 1.3 4.9 3.5 4.9 6.3v2h4v-2c0-4-2.4-6.5-7-6.5Z'/%3E%3C/svg%3E");
}

.country-fact__icon--currency {
  --country-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 4v1.1c1.7.2 3 1.2 3.4 2.8l-2.3.7c-.2-.8-.8-1.3-1.8-1.3-.9 0-1.5.4-1.5 1 0 .7.6.9 2.2 1.3 2.3.6 3.6 1.5 3.6 3.5 0 1.8-1.3 3-3.6 3.3V20h-2v-1.6c-2-.3-3.4-1.4-3.7-3.2l2.4-.6c.2 1 .9 1.6 2.2 1.6 1.1 0 1.7-.4 1.7-1.1 0-.7-.6-1-2.2-1.4-2.4-.6-3.6-1.5-3.6-3.4 0-1.7 1.2-2.8 3.2-3.1V6h2Z'/%3E%3C/svg%3E");
}

.country-fact__icon--timezone {
  --country-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 5v4.6l3.2 2-1.1 1.7-4.1-2.6V7h2Z'/%3E%3C/svg%3E");
}

.country-card__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  margin-top: 36px;
  padding: 14px 25px;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(12, 126, 207, 0.25);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.country-card__button span {
  font-size: 24px;
  transition: transform 0.25s ease;
}

.country-card__button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(12, 126, 207, 0.32);

  cursor: pointer;
  background: #1097e1;
}

.country-card__button:hover span {
  transform: translateX(5px);
}

/* Ð’ÐºÐ»Ð°Ð´ÐºÐ¸ */

.country-tabs>input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.country-tabs__navigation {
  display: flex;
  gap: 75px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #dfe6eb;
}

.country-tabs__navigation label {
  position: relative;
  display: block;
  padding: 17px 15px;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #222;

  cursor: pointer;
  transition: color 0.25s ease;
}

.country-tabs__navigation label::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: #1599e6;
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.country-tabs>input:nth-of-type(1):checked~.country-tabs__navigation li:nth-child(1) label,
.country-tabs>input:nth-of-type(2):checked~.country-tabs__navigation li:nth-child(2) label {
  color: #1599e6;
}

.country-tabs>input:nth-of-type(1):checked~.country-tabs__navigation li:nth-child(1) label::after,
.country-tabs>input:nth-of-type(2):checked~.country-tabs__navigation li:nth-child(2) label::after {
  transform: scaleX(1);
}

.country-tabs__item {
  display: none;
}

.country-tabs>input:nth-of-type(1):checked~.country-tabs__content .country-tabs__item:nth-child(1),
.country-tabs>input:nth-of-type(2):checked~.country-tabs__content .country-tabs__item:nth-child(2) {
  display: block;
  animation: country-tab-show 0.35s ease;
}

@keyframes country-tab-show {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.country-tabs__item h1,
.country-tabs__item h2 {
  margin: 0 0 28px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(42px, 4vw, 61px);
  font-weight: 600;
  line-height: 1.1;
  color: #181818;
}

.country-tabs__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #626a72;
}

/* 
.country-tabs__text p {
	margin: 0 0 25px;
} */

.country-tabs__text h2,
.country-tabs__text h3 {
  margin: 32px 0 9px;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 750;
  color: #20252a;
}

/* Ð’Ñ–Ð´ÑÑ‚ÑƒÐ¿ Ð´Ð»Ñ Ñ–ÐºÐ¾Ð½Ð¾Ðº Ñƒ WYSIWYG Ð¼Ð¾Ð¶Ð½Ð° Ð´Ð¾Ð´Ð°Ñ‚Ð¸ Ð¾ÐºÑ€ÐµÐ¼Ð¾ */
.country-tabs__text ul {
  display: grid;
  gap: 24px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.country-tabs__text li {
  position: relative;
  padding-left: 52px;
}

.country-tabs__text li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: #1599e6;
  border-radius: 50%;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 2 3 6 7 .9-5 4.8 1.3 6.8L12 17l-6.3 3.5L7 13.7 2 8.9 9 8l3-6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 2 3 6 7 .9-5 4.8 1.3 6.8L12 17l-6.3 3.5L7 13.7 2 8.9 9 8l3-6Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 26px;
  mask-size: 26px;
}

/*****************************************************************************************/


.service-notes {
  width: 100%;
  max-width: 610px;
}

.service-note {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}

.service-note+.service-note {
  margin-top: 20px;
}

.service-note__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #168ee8;
  flex-shrink: 0;
}

.service-note__icon svg {
  display: block;
  width: 40px;
  height: 40px;
  fill: none;
  color: inherit;
}

.service-note__icon svg path,
.service-note__icon svg circle,
.service-note__icon svg rect,
.service-note__icon svg line,
.service-note__icon svg polyline {
  stroke: currentColor;
}

.service-note__title {
  margin: 0 0 9px;
  color: #171717;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.service-note__description {
  color: #69707c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.service-note__description p {
  margin: 0;
}

@media (max-width: 767px) {
  .service-notes {
    max-width: 100%;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .service-note {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .service-note+.service-note {
    margin-top: 28px;
  }

  .service-note__icon {
    width: 44px;
    height: 44px;
  }

  .service-note__icon svg {
    width: 38px;
    height: 38px;
  }

  .service-note__title {
    font-size: 18px;
  }

  .service-note__description {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  .service-notes {
    padding: 26px 20px;
  }

  .service-note {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .service-note__icon,
  .service-note__icon svg {
    width: 36px;
    height: 36px;
  }
}


/*
======== =================================================   ========*/
.tour-search--section {
  position: relative;
  padding: 60px 0 60px;
  min-height: 780px;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, .70),
      rgba(255, 255, 255, .55)),
    url("images/tour-search-bg.webp") center / cover no-repeat;
}

.tour-search--section .tours-section-head p {
  margin: 0;
}

.tour-search--section h3 {
  margin: 0;
  color: #000;
  font-size: 30px;
}

#lowest-prices,
#hot-deals,
#lowest-prices section {
  padding: 0;
  position: relative;
}

#itTourPriceWidgetWrapper, #showcase_hotprice_v3_showcase_module {
  position: relative !important;
}

.hot-offers-header {
  border-top: 1px solid #eaf5fd;
}

#hot-deals {
  margin-bottom: 30px;
  /* border-top: 1px solid #eaf5fd; */
}

html {
  scroll-behavior: smooth;
}

.tour-quick-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.tour-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 180px;
  padding: 13px 22px;

  border-radius: 30px;

  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;

  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-quick-link span {
  font-size: 17px;
  transition: transform .25s ease;
}

.tour-quick-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(16, 157, 237, 0.3);
  background: #1097e1;
}


@media (max-width: 575px) {
  .tour-quick-links {
    flex-direction: column;
    align-items: center;
  }

  .tour-quick-link {
    width: 100%;
    max-width: 280px;
  }
}

/*
==============================================================   ========*/

.tour-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 40%,
      rgba(255, 255, 255, 0.16) 0 3px,
      transparent 4px),
    linear-gradient(110deg, #168de0 0%, #0797ed 55%, #078bdc 100%);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(8, 128, 211, 0.18);
  isolation: isolate;
}

.tour-cta::before,
.tour-cta::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

/* Ð’ÐµÐ»Ð¸ÐºÑ– Ð½Ð°Ð¿Ñ–Ð²Ð¿Ñ€Ð¾Ð·Ð¾Ñ€Ñ– ÐºÐ¾Ð»Ð° ÑÐ¿Ñ€Ð°Ð²Ð° */
.tour-cta::before {
  top: -95px;
  right: 190px;
  width: 310px;
  height: 310px;
  border: 2px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.025),
    0 0 0 96px rgba(255, 255, 255, 0.018);
}

/* Ð”ÐµÐºÐ¾Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ñ– Ñ‚Ð¾Ñ‡ÐºÐ¸ */
.tour-cta::after {
  top: 15px;
  right: 430px;
  width: 150px;
  height: 100px;
  opacity: 0.25;
  background-image: radial-gradient(circle,
      rgba(255, 255, 255, 0.65) 2px,
      transparent 3px);
  background-size: 18px 18px;
  transform: rotate(-10deg);
}

.tour-cta__inner {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 170px;
  padding: 25px 70px;
}

.tour-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  color: #168ee8;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(9, 93, 158, 0.18);
}

.tour-cta__icon svg {
  display: block;
  width: 58px;
  height: 58px;
}

.tour-cta__title {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Cormorant", serif;
  font-size: clamp(32px, 2.7vw, 46px);
  font-weight: 600;
  line-height: 1.1;
}

.tour-cta__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.tour-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-width: 275px;
  min-height: 60px;
  padding: 18px 34px;
  color: #168ee8;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(7, 91, 153, 0.15);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tour-cta__button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.tour-cta__button:hover {
  color: #fff;
  background: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.tour-cta__button:hover svg {
  transform: translateX(5px);
}

.tour-cta__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

/* Tablet */
@media (max-width: 991px) {
  .tour-cta__inner {
    grid-template-columns: 84px minmax(0, 1fr) auto;
    gap: 22px;
    padding: 28px 35px;
  }

  .tour-cta__icon {
    width: 78px;
    height: 78px;
  }

  .tour-cta__icon svg {
    width: 47px;
    height: 47px;
  }

  .tour-cta__button {
    min-height: 60px;
    padding: 15px 24px;
    font-size: 16px;
  }

  .popular-countries__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tour-cta {
    border-radius: 18px;
  }

  .tour-cta::before {
    right: -140px;
  }

  .tour-cta::after {
    right: 10px;
  }

  .tour-cta__inner {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    padding: 28px 24px;
  }

  .tour-cta__icon {
    width: 66px;
    height: 66px;
  }

  .tour-cta__icon svg {
    width: 40px;
    height: 40px;
  }

  .tour-cta__title {
    margin-bottom: 8px;
    font-size: 29px;
  }

  .tour-cta__description {
    font-size: 14px;
    line-height: 1.5;
  }

  .tour-cta__button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 56px;
    margin-top: 5px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .tour-cta__inner {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    text-align: center;
  }

  .tour-cta__icon {
    margin: 0 auto;
  }

  .tour-cta__title {
    font-size: 27px;
  }
}

/*
==============================================================   ========*/

.contact-section {
  background:
    radial-gradient(circle at 72% 40%,
      rgba(35, 158, 232, 0.05),
      transparent 35%),
    #fff;
}

.contact-section *,
.contact-section *::before,
.contact-section *::after {
  box-sizing: border-box;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(600px, 1.25fr);
  gap: clamp(60px, 8vw, 135px);
  align-items: center;
}

.section-label {
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #138fdd;
}

/* Contact information */

.contact-info__title,
.contact-form-card__title {
  margin: 0;
}


.contact-info__description {
  margin: 37px 0 55px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.55;
  color: #626c78;
}

.contact-info__list {
  display: grid;
  gap: 28px;
}

.contact-info__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.contact-info__icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  background: linear-gradient(145deg, #eef9ff, #e2f3ff);
  border: 1px solid rgba(22, 147, 221, 0.1);
  border-radius: 50%;
  box-shadow:
    0 8px 18px rgba(16, 119, 184, 0.14),
    inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.contact-info__icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #0d8de0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__content h3 {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 750;
  color: #152a4b;
}

.contact-info__content a,
.contact-info__content p,
.contact-info__content address {
  display: block;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
  color: #364d70;
}

.contact-info__content a {
  width: fit-content;
  transition: color 0.2s ease;
}

.contact-info__content a:hover {
  color: #128fdd;
}

/* Form card */

.contact-form-card {
  padding: clamp(42px, 5vw, 70px);
  background:
    linear-gradient(135deg,
      rgba(239, 248, 255, 0.96),
      rgba(230, 244, 255, 0.82));
  border: 1px solid rgba(30, 148, 220, 0.06);
  border-radius: 26px;
}

.contact-form-card__title {
  max-width: 760px;
  font-size: clamp(41px, 3.6vw, 58px);
  line-height: 1.07;
}

.contact-form-card__wave {
  display: block;
  width: 70px;
  height: 14px;
  margin: 24px 0 51px;
  fill: none;
  stroke: #0d8de0;
  stroke-width: 4.5;
  stroke-linecap: round;
}

.contact-info__item--locations {
  align-items: flex-start;
}

.contact-info__item--locations .contact-info__icon {
  margin-top: 4px;
}

.contact-locations {
  display: grid;
  gap: 17px;
  margin-top: 5px;
  counter-reset: location;
}

.contact-location {
  position: relative;
  min-height: 44px;
  margin: 0;
  padding-left: 54px;
  counter-increment: location;
}

.contact-location::before {
  content: counter(location);
  position: absolute;
  top: 1px;
  left: 0;

  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
  color: #fff;

  background: linear-gradient(135deg, #087ee2, #159ee9);
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(10, 130, 211, 0.22);
}

.contact-location a {
  display: block;
  width: fit-content;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
  color: #364d70;

  transition: color 0.2s ease;
}

.contact-location a span {
  display: block;
}

.contact-location a:hover {
  color: #128fdd;
}

/* CF7 form */

.cf7-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.cf7-contact-form__field {
  position: relative;
}

.cf7-contact-form p {
  margin: 0;
}

.cf7-contact-form .wpcf7-form-control-wrap {
  display: block;
}

.cf7-contact-form input:not([type="submit"]),
.cf7-contact-form select,
.cf7-contact-form textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 25px;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: #26384e;

  background: rgba(235, 247, 255, 0.86);
  border: 1px solid rgba(24, 136, 207, 0.08);
  border-radius: 9px;
  outline: none;
  box-shadow:
    0 4px 7px rgba(42, 106, 146, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.cf7-contact-form input:not([type="submit"]),
.cf7-contact-form select {
  height: 50px;
}

.cf7-contact-form textarea {
  height: 225px;
  min-height: 170px;
  padding-top: 24px;
  resize: vertical;
}

.cf7-contact-form input::placeholder,
.cf7-contact-form textarea::placeholder {
  color: #7b8793;
  opacity: 1;
}

.cf7-contact-form input:focus,
.cf7-contact-form select:focus,
.cf7-contact-form textarea:focus {
  background: #fff;
  border-color: #159be8;
  box-shadow: 0 0 0 4px rgba(21, 155, 232, 0.12);
}

.cf7-contact-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 55px;
}

.cf7-contact-form__select::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  pointer-events: none;
  border-right: 3px solid #188fd8;
  border-bottom: 3px solid #188fd8;
  transform: translateY(-70%) rotate(45deg);
}

.cf7-contact-form__submit {
  position: relative;
  margin-top: 25px;
}

.cf7-contact-form input[type="submit"] {
  display: inline-flex;
  width: auto;
  min-width: 260px;
  min-height: 65px;
  align-items: center;
  justify-content: center;
  padding: 17px 35px;

  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;

  cursor: pointer;
  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  border: 0;
  border-radius: 50px;
  box-shadow: 0 10px 22px rgba(0, 112, 202, 0.24);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cf7-contact-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 112, 202, 0.3);
  background: #1097e1;
}

.cf7-contact-form input[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.cf7-contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 10px;
}

.cf7-contact-form__privacy svg {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #138fdd;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cf7-contact-form__privacy p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #52677f;
}

/* CF7 validation */

.cf7-contact-form .wpcf7-not-valid {
  border-color: #d94c4c !important;
}

.cf7-contact-form .wpcf7-not-valid-tip {
  margin: 7px 4px 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #c53939;
}

.contact-form-card .wpcf7-response-output {
  margin: 25px 0 0 !important;
  padding: 13px 17px !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 7px;
}

.contact-form-card form.sent .wpcf7-response-output {
  color: #196b40;
  background: #eaf9f1;
  border-color: #48a878;
}

.contact-form-card form.invalid .wpcf7-response-output,
.contact-form-card form.failed .wpcf7-response-output {
  color: #8b3333;
  background: #fff0f0;
  border-color: #d76d6d;
}

.contact-form-card .wpcf7-spinner {
  position: absolute;
  top: 22px;
  margin-left: 15px;
}

.wpcf7-response-output {
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.wpcf7-response-output.is-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Accessibility */

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/*
==============================================================   ========*/

.office-locations {
  padding: 75px 20px 95px;
  background: #fff;
}

.office-locations .container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.office-locations__heading {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 35px;
}

.office-locations__heading-icon {
  display: grid;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  place-items: center;

  background: linear-gradient(145deg, #f0f9ff, #e5f4ff);
  border: 1px solid rgba(19, 143, 221, 0.08);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(16, 119, 184, 0.15);
}

.office-locations__heading-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #0d8de0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.office-locations__label {
  display: block;
  margin-bottom: 5px;

}

.office-locations__heading h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 38px;
  font-weight: 650;
  line-height: 1.1;
  color: #172a4a;
}

.office-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.office-location {
  min-width: 0;
}

.office-location__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 0 14px;
}

.office-location__number {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  color: #fff;

  background: linear-gradient(135deg, #087ee2, #159ee9);
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(10, 130, 211, 0.24);
}

.office-location address {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
  color: #374d6c;
}

.office-location address strong,
.office-location address span {
  display: block;
}

.office-location address strong {
  font-weight: 700;
  color: #172a4a;
}

.office-location__map {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #e8f2f7;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(35, 87, 121, 0.1);
}

.office-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8) contrast(0.92);
}

.office-location__card {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;

  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 15px;
  width: min(80%, 390px);
  padding: 15px;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 131, 207, 0.08);
  border-radius: 13px;
  box-shadow: 0 13px 30px rgba(38, 78, 105, 0.17);
  backdrop-filter: blur(6px);

  transform: translateX(-50%);
}

.office-location__card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(-50%) rotate(45deg);
}

.office-location__card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #118fdc;
}

.office-location__card a span {
  font-size: 19px;
  transition: transform 0.25s ease;
}

.office-location__card a:hover span {
  transform: translateX(5px);
}



@media (max-width: 991px) {

  .contact-section__grid,
  .office-locations__grid {
    grid-template-columns: 1fr;
  }

  .cf7-contact-form__row {
    grid-template-columns: 1fr;

  }
}

/*
==============================================================   ========*/
.wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0 !Important;
  padding: 13px 16px;
  border-width: 1px;
  border-radius: 7px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2c7655;
  color: #205c41;
  background-color: #edf7f1;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #c84135;
  color: #9d2d24;
  background-color: #fff1ef;
}

/*
==============================================================   ========*/

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 44, 68, 0.43);

  backdrop-filter: blur(4px);
  cursor: pointer;
}

.popup_inner {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  max-height: calc(100vh - 50px);
  padding: 50px;
  overflow-y: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(25px) scale(0.97);
  transition: transform 0.3s ease;
}

.contact-popup.active .popup_inner {
  transform: translateY(0) scale(1);
}

.close_pop {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.close_pop:hover {
  background: rgba(5, 74, 54, 0.1);
}

.close_pop img {
  display: block;
  width: 25px;
  height: 25px;
}

.popup_heading {
  margin-bottom: 30px;
  padding-right: 35px;
}

.popup_heading h2 {
  margin: 0 0 10px;
  color: #1097e1;
  font-family: "Source Serif 4", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
}

.popup_heading p {
  margin: 0;
  color: #686a64;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.popup-open {
  overflow: hidden;
}

/* Contact Form 7 */

.form_pop .wpcf7-form {
  display: grid;
  gap: 17px;
}

.form_pop .wpcf7-form p {
  margin: 0;
}

.form_pop input:not([type="submit"]),
.form_pop select,
.form_pop textarea {
  width: 100%;
  padding: 5px 17px;
  border: none;
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: #30352f;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form_pop textarea {
  height: 130px;
  min-height: 130px;
  resize: vertical;
}

.form_pop input:focus,
.form_pop select:focus,
.form_pop textarea:focus {
  border-color: #087052;
  box-shadow: 0 0 0 3px rgba(8, 112, 82, 0.12);
}



@media (max-width: 600px) {
  .contact-popup {
    padding: 12px;
  }

  .popup_inner {
    max-height: calc(100vh - 24px);
    padding: 45px 22px 25px;
    border-radius: 12px;
  }

  .popup_heading h2 {
    font-size: 36px;
  }

  .close_pop {
    top: 12px;
    right: 12px;
  }
}

/*
===============================Start CONTAINER========*/
/* .header_image_top {
  color: #fff;
  min-height: 20vw;
  padding: 26px 0;
  position: relative;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header_image_top:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 66%);
  z-index: 1;
}

.header_image_top .container {
  z-index: 2;
}

.header_image_top .page-title h1 {
  color: #fff;
  text-transform: uppercase;

} */


#home .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#home {
  padding: 0;
  width: 100%;
  height: calc(100vh - 200px);
  max-height: 860px;
  padding-top: 0px;
  position: relative;
  margin-top: -40px;
}

.blog-item {
  padding: 15px 5px;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
}

.read_more {
  cursor: pointer;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: rgb(255, 255, 255);
  width: 145px;
  height: 38px;
  margin-top: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  text-transform: uppercase;
  background: rgb(0 96 32);
  border-radius: 8px;
  transition: 0.3s linear;
  float: right;
  opacity: 0;
  will-change: transform;
  transform: translateY(60px);
  transition: transform 0.5s, opacity 0.5s, color 0.3s ease-out, border 0.3s ease-out, background 0.3s ease-out, box-shadow 0.3s ease-out !important;
}

/**************/
.single-cont {
  overflow: hidden;
}

.post-footer-info {
  width: 100%;
}

.post-footer-info, .post-top-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 30px;
}

.post-the_category .post-categories {
  list-style: none;
}

.post-the_category .post-categories li a {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #0a91fc;
}

.post-the_category .post-categories li a:hover {
  color: #323232;
}

.post-the_category .post-categories li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  float: left;
}

.post-the_category .post-categories li:before {
  position: relative;
  content: "\25A0";
  display: inline-block;
  color: #0a91fc;
  margin: 0 5px;
  height: 100%;
  font-size: 6px;

}

.post-the_category .post-categories li:first-child:before {
  display: none;
}

.post-date {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #9C9C9C;
}


.blogs-img img {
  transition: all 800ms ease-in-out 0s;
  -webkit-transition: all 800ms ease-in-out 0s;
  transform: scale(1) rotate(0deg);
  -webkit-transform: scale(1) rotate(0deg);
}

.blogs-item:hover .blogs-img img {
  opacity: .85;
  transform: scale(1.05) rotate(-1deg);
  -webkit-transform: scale(1.05) rotate(-1deg);
}


.form-row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.form-row p {
  width: 100%;
}

.form-row .half {
  width: calc(50% - 5px);
}

.full {
  width: 100%;
  padding: 10px 0;
}


/*============================*/
section.featured .container {
  border-top: 1px solid #ECECEC;
  padding-top: 30px;
}

/*============================*/

/*============================*/
.contact-us {
  padding: 10px 0;
}

.contacts-header {
  text-align: center;
  padding-bottom: 60px;
}

.contact-us .contacty,
.contact-us .contacty a {
  color: #fff;
  display: block;
}

.flex-contacts {
  padding: 30px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/***FOOTER************************************/
.foot_logo img {
  font-size: 20px;
  max-width: 260px;
  height: 100%;
  max-height: 90px;
}


.footer-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 30px 0;
  border-top: 1px solid #eaf5fd;
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: calc(100% - 40px);
  max-width: 1450px;
  min-height: 80px;
  margin: 0 auto;
  color: #646a70;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  border-top: 1px solid #eaf5fd;
}

.footer-bottom p {
  margin: 0;
}

.footer-copyright {
  white-space: nowrap;
}

.footer-designed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer-designed svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #159fe8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    fill 0.25s ease,
    transform 0.25s ease;
}

.footer-designed:hover svg {
  fill: #159fe8;
  transform: scale(1.12);
}

@media (max-width: 650px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 110px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
  }

  .footer-copyright,
  .footer-designed {
    white-space: normal;
  }
}



.foot_cont {
  color: #5e6268;
}

.footer a {
  font-weight: 400;
  font-size: 16px;
  color: #5e6268;
  padding: 8px 0;
  display: inline-block;
}

.footermenu .get_in_touch {
  padding-top: 8px;
}

.footer a:hover {
  color: #0a91fc;
}

.get_in_touch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 30px;

  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 6px 16px rgba(7, 55, 99, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.get_in_touch a:hover {
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 55, 99, 0.3);
  filter: brightness(1.08);
  transform: translateY(-1px);
  background: #1097e1;
}

.social_btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.social_btns a {
  margin: 10px;
  color: #4e4e4e;
  font-size: 14px;
  width: 35px;
  height: 35px;
  padding: 0;

  transition: transform 0.25s ease;
}

.social_btns a.soc_item span {
  width: 35px;
  height: 35px;
  display: block;
  transition: transform 0.25s ease;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: linear-gradient(90deg, #1097e1 0%, #3bdbe0 100%);
  background-size: contain;
}

.social_btns .soc_item_youtube span {
  -webkit-mask: url(images/social/icon-youtube.svg) no-repeat 100% 100%;
  mask: url(images/social/icon-youtube.svg) no-repeat 100% 100%;
}

.social_btns .soc_item_whatsapp span {
  -webkit-mask: url(images/social/icon-whatsapp.svg) no-repeat 100% 100%;
  mask: url(images/social/icon-whatsapp.svg) no-repeat 100% 100%;
}

.social_btns .soc_item_viber span {
  -webkit-mask: url(images/social/icon-viber.svg) no-repeat 100% 100%;
  mask: url(images/social/icon-viber.svg) no-repeat 100% 100%;
}

.social_btns .soc_item_twitter span {
  -webkit-mask: url(images/social/twitter.svg) no-repeat 100% 100%;
  mask: url(images/social/twitter.svg) no-repeat 100% 100%;
}

.social_btns .soc_item_facebook span {
  -webkit-mask: url(images/social/facebook.svg) no-repeat 100% 100%;
  mask: url(images/social/facebook.svg) no-repeat 100% 100%;
}

.social_btns .soc_item_instagram span {
  -webkit-mask: url(images/social/instagram.svg) no-repeat 100% 100%;
  mask: url(images/social/instagram.svg) no-repeat 100% 100%;
}

.social_btns .soc_item:hover span {
  background: #37aaf2;
}

.header-social.social_btns a {
  margin: 7px;
}

/* 
.footer-block-left{
	width: 33%;
	max-width:220px;
}
.footer-block-right{
    width: 67%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;	
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
 */

.footer-block {
  text-align: center;
  width: 25%;
}

.footer-block-right .footer-block {
  padding-bottom: 55px;
}

.footer-block ul {
  list-style: none;
}

.foot_title {
  padding: 30px 0 8px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #159bef;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.footer-block.fb-1,
.footer-block.fb-2,
.footer-block.fb-3 {
  padding-bottom: 55px;

}


/* + HOME PAGE: HERO ================================ */

.home-hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(4, 47, 82, 0.72) 0%,
      rgba(4, 47, 82, 0.52) 32%,
      rgba(4, 47, 82, 0.15) 62%,
      transparent 82%);
}

.hero-slider .slide-inner .container {
  z-index: 99;
}

.head_subtitle {
  position: relative;
  color: #fff;
  font-family: "Comic Sans MS";
  font-size: 44px;
  line-height: 1;
  text-shadow: 3px 0px 3px rgba(0, 0, 0, 0.4);
  -webkit-text-stroke: 0.3px black;
}

.head_primary {
  position: relative;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  padding: 15px 0;
  line-height: 1.2;
  text-shadow: 3px 0px 3px rgba(0, 0, 0, 0.4);
}

.head_description {
  font-size: 24px;
  font-weight: 500;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
  padding: 15px 0;
  text-shadow: 3px 0px 3px rgba(0, 0, 0, 0.4);
}

.hero-slider-controls .swiper-button-prev,
.hero-slider-controls .swiper-button-next {
  position: relative;
  width: 35px;
  height: 30px;
  margin-top: 0;
}

.hero-slider-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}

.slide-m-next,
.slide-m-prev {
  padding: 8px 5px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}


.slide-m-next span {
  -webkit-mask: url(images/arrow_right.svg) no-repeat 100% 100%;
  mask: url(images/arrow_right.svg) no-repeat 100% 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #666;
  background-size: contain;
  width: 20px;
  height: 10px;
  display: block;

}

.slide-m-prev span {
  -webkit-mask: url(images/arrow_left.svg) no-repeat 100% 100%;
  mask: url(images/arrow_left.svg) no-repeat 100% 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #666;
  background-size: contain;
  Width: 20px;
  height: 10px;
  display: block;
}

.slide-m-next:hover,
.slide-m-prev:hover {
  background: #0a91fc;
  cursor: pointer;
}

.slide-m-next:hover span,
.slide-m-prev:hover span {
  background-color: #fff;
}


/*=============================*/


/* 
.prevs {
  padding: 15px;
  background: url(images/back.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0px;
  width: 40px;
  top: 45%;
  cursor: pointer;
  opacity: 0;
  transition: left 300ms, right 300ms, opacity 300ms;
}

.nexts {
  padding: 15px;
  background: url(images/next.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 0px;
  width: 40px;
  top: 45%;
  cursor: pointer;
  opacity: 0;
  transition: left 300ms, right 300ms, opacity 300ms;
}

.article-slide:hover .nexts,
.blog-items:hover .nexts {
  right: -35px;
  opacity: 1;
  transition: left 300ms, right 300ms, opacity 300ms;
}

.article-slide:hover .prevs,
.blog-items:hover .prevs {
  left: -35px;
  opacity: 1;
  transition: left 300ms, right 300ms, opacity 300ms;
} */

/*=============================*/

#pagenavi {
  overflow: hidden;
  clear: both;
  text-align: center;
  margin: 30px 0;
}

.pagination {
  padding-top: 30px; 
  text-align: center;
}

.pagination a.page-numbers,
.pagination .page-numbers {

  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: #C4C4C4;
  padding: 8px;
  background: none;
}

.pagination a.page-numbers:hover,
.pagination .page-numbers.current {
  text-decoration-line: underline;
  color: #0a91fc;
}


.pagination a.prev.page-numbers {
  -webkit-mask: url(images/arrow_left.svg) no-repeat center center;
  mask: url(images/arrow_left.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #C4C4C4;
  background-size: contain;
  width: 20px;
  margin: 0 8px;
  padding: 6px;
}

.pagination a.next.page-numbers {
  -webkit-mask: url(images/arrow_right.svg) no-repeat center center;
  mask: url(images/arrow_right.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #C4C4C4;
  background-size: contain;
  width: 20px;
  margin: 0 8px;
  padding: 6px;
}

.pagination a.next.page-numbers:hover,
.pagination a.prev.page-numbers:hover {
  background-color: #0a91fc;
}

/**************************************************************/
.slider-navigation {
  margin: 0 auto;
  position: relative;
  bottom: 10%;
  width: 100%;
  z-index: 3;
  margin-top: 15px;
}

/*************************************************************/
/* Required */
.notvisible {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animated.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    transform: translateX(-60px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}

.animated.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}



/******testimonials**********************************************************/
.testimonials {
  padding: 60px 0;
  width: 100%;
}

.section-title {
  margin-bottom: 30px;
}

.testimonials_slider .name {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 20px;
}

.leave_a_review {
  margin: 30px auto 0;

  text-align: center;
}

.leave_a_review a {
  margin: 0 auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px 30px 20px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(26, 55, 40, 0.06);
}

.review-stars {
  margin-bottom: 14px;
  color: #efa800;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2px;
}

.review-text {
  flex-grow: 1;
  font-family: "Inter", sans-serif;
  color: #4f565c;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
}

.review-text.is-clamped:not(.is-expanded) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.review-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0px 0 0;
  padding: 0;
  float: right;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #128fdd;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: color 0.2s ease;
}

.review-read-more::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s ease;
}

.review-read-more:hover {
  color: #0875bb;
}

.review-read-more[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}

.review-text p {
  margin: 0;
  padding: 0;
}

.review-text p::before {
  content: "â€œ";
}

.review-text p::after {
  content: "â€";
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.review-author {
  margin: 0;
  color: #555;
  font-size: 16px;
  font-weight: 600;
}

.google-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: conic-gradient(from -45deg,
      #4285f4 0deg 90deg,
      #34a853 90deg 180deg,
      #fbbc05 180deg 270deg,
      #ea4335 270deg 360deg);

  font-size: 20px;
  font-weight: 800;
}

.google-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #4285f4;
  background: #fff;
}

/******location**********************************************************/

.location-section {
  display: grid;
  grid-template-columns: minmax(400px, 44%) minmax(0, 56%);
  min-height: 360px;
  overflow: hidden;
  background-color: #f7f3ea;
  padding: 0;
}

.location-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 55px clamp(35px, 5vw, 90px);
  background:
    radial-gradient(circle at 20% 50%,
      rgba(241, 178, 41, 0.07),
      transparent 50%),
    #f8f5ee;
}

.location-content__inner {
  width: min(520px, 100%);
}

.location-pretitle {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 15px;
}

.location-pretitle svg {
  flex: 0 0 auto;
}

.location-title {
  margin: 0 0 14px;
  color: #26372d;
  text-align: left;
}

.location-description {
  margin: 0 0 28px;
  color: #4d544f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 14px 28px;
  border: 2px solid #efa800;
  border-radius: 10px;
  color: #fff;
  background-color: #efa800;
  box-shadow: 0 5px 16px rgba(239, 168, 0, 0.2);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.location-button:hover {
  color: #efa800;
  background-color: transparent;
  transform: translateY(-2px);
}

.location-map {
  position: relative;
  min-height: 360px;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* Tablet */
@media (max-width: 900px) {
  .location-section {
    grid-template-columns: 1fr;
  }

  .location-content {
    justify-content: center;
    padding: 55px 30px;
    text-align: center;
  }

  .location-pretitle {
    justify-content: center;
  }

  .location-map {
    min-height: 400px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .location-content {
    padding: 45px 20px;
  }

  .location-title {
    font-size: 34px;
  }

  .location-description br {
    display: none;
  }

  .location-button {
    width: 100%;
  }

  .location-map {
    min-height: 340px;
  }
}

/***********************************************************************/

.scrollTop {
  position: fixed;
  background-size: contain;
  width: 30px;
  height: 50px;
  bottom: 90px;
  right: 42px;
  opacity: 0.9;
  -webkit-animation-name: pulse; 
  -webkit-animation-duration: 2s; 
  -webkit-animation-iteration-count: infinite; 
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.scrollTop:hover {
  opacity: 1;
}

/*=============================*/
.scrollTop span {
  position: absolute;
  top: 0;
  left: 7px;
  width: 20px;
  height: 20px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

.scrollTop span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.scrollTop span:nth-of-type(2) {
  top: 14px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

.scrollTop span:nth-of-type(3) {
  top: 28px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@-webkit-keyframes sdb07 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb07 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/**************************************************/

/*****404************/
.page-error-404 {
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
}

.page-error-404 .page-description {
  font-size: 18px;
}

.head_description_404 {

  font-size: 38px;
  color: rgb(255 255 255 / 75%);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.head_description_404_text {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 0;
}

.error-404 .btn_more {
  display: inline-block;
  float: left;
}

.error-404 .float_left_btn {
  margin-left: 60px;
}

@media screen and (max-width: 768px) {

  .page-error-404 {
    background-image: none !important;
    background-color: #e9f3ff;
    text-align: center;
  }

  .error-404 .float_left_btn {
    margin-left: auto;
  }

  .error-404 .btn_more {
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .error-404 .btn_more a {
    margin: 0 auto;
  }

  .head_description_404 {
    font-size: 30px;
  }

  .head_description_404_text {
    font-size: 26px;
  }
}

@media screen and (max-width: 480px) {

  .head_description_404 {
    font-size: 28px;
  }

  .head_description_404_text {
    font-size: 22px;
  }

  .page-error-404 .page-description {
    font-size: 16px;
  }
}

/******************************/
/* #overlay {
  z-index: 999;
  position: fixed;
  background-color: #000;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
} */

/*******Pop-UP*************************/

.product_block .form-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  margin-top: 15px;
  margin-bottom: 5px;
  padding-bottom: 15px;
  color: #09398c;
}

.product_block .form-title::before {
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #09398c;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}

.popupp {
  display: none;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
}

.close_pop {
  position: absolute;
  right: 10px;
  top: 10px;

}


textarea {
  min-height: 100px;
}

.form_pop .title-form {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.form_pop form input[type="text"],
.form_pop form input[type="tel"],
.form_pop form input[type="email"],
.form_pop form textarea,
select {
  /* height: auto; */
  height: 50px;
  width: 100%;
  padding: 0 17px;
  border: none;
  border-bottom: 1px solid #333;

  /*   margin-top: 10px; */
  font-size: 14px;
  background: transparent;
}

.form_pop input[type="submit"] {
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: block;
  margin: 0 auto 0;
  padding: 0 30px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 2;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #0691fc;
  line-height: 50px;
  border: 2px solid #0691fc;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.form_pop input[type="submit"]:hover {
  color: #0691fc;
  background-color: #fff;

}

.text_name input {
  text-align: center;
  font-weight: bold;
  color: #353535;
  text-transform: uppercase;
}

.form_pop form input[type="text"]:focus,
.form_pop form input[type="tel"]:focus,
.form_pop form textarea:focus {
  background-color: #fff;
  color: #000;
}

.form_pop form textarea {
  height: 100px;
  background: #f0f0f0;
  padding: 10px 17px;
}

.form_pop div.wpcf7-validation-errors,
.form_pop div.wpcf7-acceptance-missing {
  border: 2px solid #ff0000;
}


/**************************************************************/

.hero-slider {
  width: 100%;
  height: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 540px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;

  }

  .country-single__grid {

    grid-template-columns: 1fr;
    gap: 55px;
  }


}

@media (max-width: 767px) {
  .hero-slider {
    height: 540px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.swiper-pagination {
  position: relative !important;
}

@media (max-width: 767px) {

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev.slide-m-prev:after,
.swiper-button-next.slide-m-next:after,
.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after {
  content: "";
}


.slider-controls .swiper-pagination-bullet,
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background: #0a91fc;
  transition: all .2s ease;
  margin: 0 4px;
}

.slider-controls .swiper-pagination-bullet-active,
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {
  .swiper-pagination {
    text-align: center;
    position: relative !important;
    margin: 0 10px;
  }

  .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    display: table;
    margin: 0 auto;
    left: 50%;
    top: 90%;
    transform: translateX(-50%);
  }
}

@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px;

  }
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
  transition: all .4s ease;
}


.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 690px;
}

.hero-style .slide-title h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 40px;
  text-transform: capitalize;
  transition: all .4s ease;
}

@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 35px;
    margin: 0 0 30px;
  }
}

.hero-style .slide-text p {
  opacity: 0.8; 
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 40px;
  transition: all .4s ease;
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 30px;
  }
}

.hero-style .slide-btns>a:first-child {
  margin-right: 10px;
}



/* =========================================
   Tablet
========================================= */

@media (max-width: 1200px) {
  .site-header .topnav {
    min-height: 90px;
  }

  .site-header .logo img { 
    max-height: 80px;
  }

  .header__menu {
    display: none;
  } 
}
@media screen and (max-width: 900px) {
    .site-header {
        height: 90px;
    }
   .site-header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #home {
        min-height: 655px;
    }

    .hero-slider .slide-inner {
        padding: 20px;
    }

    .header__mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001;
    }

    .header__menu {
        position: fixed;
        inset: 0;
        z-index: 999;
        height: 100vh;
        background: #ffffff;

        backdrop-filter: blur(25px);

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .4s ease;
    }

    .header__menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main_menu {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .menu-item a p {
        font-size: 22px;
    }


    .main_menu li {
        list-style: none;
        opacity: 0;
        transform: translateY(20px);
        transition: .4s ease;
    }

    .header__menu.active .demo-request,
    .header__menu.active .main_menu li {
        opacity: 1;
        transform: translateY(0);
    }

    .header__menu.active .main_menu li:nth-child(1) {
        transition-delay: .05s;
    }

    .header__menu.active .main_menu li:nth-child(2) {
        transition-delay: .1s;
    }

    .header__menu.active .main_menu li:nth-child(3) {
        transition-delay: .15s;
    }

    .header__menu.active .main_menu li:nth-child(4) {
        transition-delay: .2s;
    }

    .header__menu.active .main_menu li:nth-child(5) {
        transition-delay: .25s;
    }

    .header__menu.active .main_menu li:nth-child(6) {
        transition-delay: .3s;
    }

    .header__menu.active .main_menu li:nth-child(7) {
        transition-delay: .35s;
    }

    .header__menu.active .main_menu li:nth-child(8) {
        transition-delay: .4s;
    }


    .header__menu.active .demo-request {
        transition-delay: .35s;
    }


    body.menu-open {
        overflow: hidden;
    }


    header {
        height: auto;
    }


    .main_nav ul.main_menu {
        width: 100%;
        /*     height: 100%; */
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-flex-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
.main-navigation .main_menu{
    gap: 10px;
}
    .main-navigation .menu-item > a{
        font-size: 22px;
    }

    .section-subtitle, .destinations-subtitle { 
    text-align: center;
}
.about-benefits__description,
    .about-agency__text,
    .travel-card__content p,
    .office-location__card a{
        font-size: 18px; 
    }
    .country-tabs__text { 
    font-size: 18px;
    line-height: 1.5;
    }
    .vacation-help__button{
        font-size: 20px;
    }
    .country-card__content{background: #fff;}

    .contact-info__description,
    .section-title{
        text-align: center;
    }
}

@media screen and (max-width: 768px) {  

    .section-hero-slider .hero-slider .hero-slider-image {
        min-height: auto;
    }

    .section-title {
        text-align: center;
    }

    /****************/
    .address, .email, .phone, .phone a {
        font-size: 20px;
        line-height: 20px;
        letter-spacing: normal;
    }

    /***************/

    .page-top .post-title h1 {
        font-size: 24px;
    }

    .single-cont .post-title {
        padding: 10px 0 10px 0;
        margin-top: 0;
    }

    .post-title h1 {
        font-size: 22px;
        line-height: 26px;
    }

    /************************/
    .singl_postimg {
        max-width: 100%;
        float: none;
        margin: 0px 0 30px 0;
    }

    /**FOOTER******************/
    .footer-container {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-block {
        width: 100%;
    }

    /*************************/

    .page-title h1 {
        font-size: 28px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 900px) { 
   .header__mobile-menu {
    display: flex !important;
  }
}
@media (max-width: 650px) { 
  .site-header .topnav { 
    gap: 12px;
  }
 
  .site-header__actions {
    margin-left: auto;
    gap: 12px;
  }
  
  .header__mobile-menu{
    flex-basis: 49px;
    width: 49px;
    height: 49px;
  } 
	.header-phones__primary,
	.header-phones__toggle {
		display: none;
	}

	.header-phones {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid #e3edf2;
		border-radius: 50%;
		background: #fff;
		cursor: pointer;
		transition:
			background-color 0.25s ease,
			border-color 0.25s ease,
			box-shadow 0.25s ease;
	}

	.header-phones:hover,
	.header-phones:focus-visible,
	.header-phones.is-open {
		border-color: #bfe8fb;
		background: #edf9ff;
		box-shadow: 0 7px 18px rgba(21, 159, 232, 0.15);
		outline: none;
	}

	.header-phones__icon {
		flex: none;
		width: 23px;
		height: 23px;
	}

	.header-phones__dropdown {
		position: absolute;
		top: calc(100% + 14px);
		right: 0;
		z-index: 1000;
		display: block;
		width: 235px;
		padding: 9px;
		visibility: hidden;
		border: 1px solid #e3edf2;
		border-radius: 15px;
		background: #fff;
		opacity: 0;
		box-shadow: 0 15px 35px rgba(32, 63, 82, 0.16);
		pointer-events: none;
		transform: translateY(-10px);
		transition:
			visibility 0.25s ease,
			opacity 0.25s ease,
			transform 0.25s ease;
	}

	.header-phones__dropdown::after {
		position: absolute;
		right: 15px;
		bottom: 100%;
		width: 12px;
		height: 12px;
		border-top: 1px solid #e3edf2;
		border-left: 1px solid #e3edf2;
		background: #fff;
		content: "";
		transform: translateY(6px) rotate(45deg);
	}

	.header-phones.is-open .header-phones__dropdown {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.header-phones__dropdown a {
		position: relative;
		z-index: 1;
		padding: 11px 13px;
		text-align: left;
	}

	.header-phones:not(.is-open):hover .header-phones__dropdown {
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
	} 
	.language-switcher__toggle {
		min-width: 44px;
		width: 44px;
		height: 44px;
		padding: 0;
	}

	.language-switcher__toggle > svg {
		display: none;
	}

	.language-switcher__dropdown {
		right: -54px;
	}

	.language-switcher__dropdown::before {
		right: 72px;
	}
}

@media screen and (max-width: 640px) {

    .section-hero-slider .hero-slider .hero {
        height: 360px;
    }
    .head_subtitle,
    .head_primary {
        font-size: 36px;
    } 
    .head_description {
        font-size: 24px;
    }

    .hero .btn_more a {
        margin: 0 auto;
    }

    .footer-block-left {
        width: 100%;
        margin: 0 auto;
    }

    .footer-block-right {
        display: none;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .soc_item span {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 540px) {
    .section-hero-slider .hero-slider .hero-slider-image {
        display: none;
        background-image: none !important;
    }

    .section-hero-slider .hero-slider .hero-slider-image-mobile {
        display: block;
    }

    .section-hero-slider .hero-slider .hero {
        height: 600px;
    }

}

@media screen and (max-width: 480px) {
    .section-hero-slider .hero-slider .hero {
        height: 530px;
    }

    .logo a img {
        max-width: 190px;
    }
}

@media screen and (max-width: 420px) {
    .section-hero-slider .hero-slider .hero {
        height: 460px;
    }
}

@media screen and (max-width: 380px) {
    .section-hero-slider .hero-slider .hero {
        height: 420px;
    }

    .topmenu-login {
        display: none
    }

    .authors-item {
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
    .section-hero-slider .hero-slider .hero {
        height: 360px;
    }
}



 
/* ==================================
   Welcome popup
================================== */

.amalia-welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(18, 64, 86, 0.52);
    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.amalia-welcome-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.amalia-welcome-popup {
    position: relative;

    display: grid;
    grid-template-columns: 58% 42%;

    width: min(900px, 100%);

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 30px 90px rgba(7, 62, 91, .25);

    transform: translateY(25px) scale(.97);

    transition: transform .35s ease;
}

.amalia-welcome-overlay.is-active .amalia-welcome-popup {
    transform: translateY(0) scale(1);
}


/* close */

.amalia-welcome-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.9);

    color: #173f58;

    font-size: 30px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease;
}

.amalia-welcome-close:hover {
    transform: rotate(90deg);

    background: #fff;
}


/* ==================================
   content
================================== */

.amalia-welcome-popup__content {
    position: relative;

    z-index: 2;

    padding: 30px;

    background: #fff;
}


.amalia-welcome-popup__logo {
    margin-bottom: 20px;
}

.amalia-welcome-popup__logo img {
    width: auto;
    max-width: 155px;
    max-height: 90px;
}


.amalia-welcome-popup__subtitle {
    display: block;

    margin-bottom: 10px;

    color: #079ee9;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
}


.amalia-welcome-popup h2 {
    margin: 0 0 18px;

    color: #090909;

    font-size: clamp(36px, 3.2vw, 50px);
    font-weight: 700;
    line-height: .95;

    letter-spacing: -.035em;
}

.amalia-welcome-popup h2 span {
    display: block;

    color: #129bea;
}


.amalia-welcome-popup p {
    max-width: 560px;

    margin: 0 0 25px;

    color: #4d6376;

    font-size: 16px;
    line-height: 1.55;
}

/* ==================================
   form
================================== */

.amalia-popup-form {
    display: flex;
    flex-direction: column;
    gap: 11px;
}


.amalia-popup-field {
    min-height: 50px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 0 18px;

    border: 1px solid #d6e1e9;
    border-radius: 30px;

    background: #fff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.amalia-popup-field:focus-within {
    border-color: #13a7e9;

    box-shadow:
        0 0 0 4px rgba(19,167,233,.08);
}


.amalia-popup-field__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #31506c;
}


.amalia-popup-field input {
    width: 100%;

    padding: 0;

    border: 0;
    outline: none;

    background: transparent;

    color: #20384b;

    font: inherit;
    font-size: 15px;
}


.amalia-popup-field input::placeholder {
    color: #8496a8;

    opacity: 1;
}


.amalia-popup-submit {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    padding: 0 28px;

    border: 0;
    border-radius: 30px;

    background:
        linear-gradient(
            110deg,
            #079ced 0%,
            #00b9df 55%,
            #25d8cd 100%
        );

    color: #fff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(3, 170, 221, .18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.amalia-popup-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 11px 30px rgba(3, 170, 221, .28);
}


/* ==================================
   benefits
================================== */

.amalia-welcome-popup__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 22px;
}


.amalia-popup-feature {
    min-height: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 4px 18px;

    color: #223b51;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;

    border-right: 1px solid #e3ebf0;
}


.amalia-popup-feature:first-child {
    padding-left: 0;
}

.amalia-popup-feature:last-child {
    border-right: 0;
}


.amalia-popup-feature__icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 9px;

    border-radius: 50%;

    background: #eaf8ff;

    color: #0b9fec;
}


.amalia-popup-feature__percent {
    font-size: 28px;
    font-weight: 400;
}


.amalia-welcome-popup__privacy {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 15px;

    color: #8192a0;

    font-size: 12px;
}


/* ==================================
   image
================================== */

.amalia-welcome-popup__image {
    position: relative;

    min-height: 680px;

    overflow: hidden;
}


.amalia-welcome-popup__image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: left;

    display: block;
}


/* ==================================
   Floating CTA
================================== */

.amalia-floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9990;

    display: flex;
    align-items: center;

    width: 64px;
    height: 64px;

    padding: 6px;

    overflow: hidden;

    border: 0;
    border-radius: 50px;

    background: #fff;

    box-shadow:
        0 8px 30px rgba(0, 74, 106, .18);

    cursor: pointer;

    transition:
        width .35s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* expand on hover */

.amalia-floating-cta:hover {
    width: 295px;

    box-shadow:
        0 12px 40px rgba(0, 105, 145, .26);

    transform: translateY(-2px);
}


/* circle icon */

.amalia-floating-cta__icon {
    position: relative;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #079deb,
            #2bd8cf
        );
}


/* pulse */

.amalia-floating-cta__icon::before,
.amalia-floating-cta__icon::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 50%;

    background: rgba(22, 184, 220, .25);

    z-index: -1;

    animation: amaliaPulse 2.4s infinite;
}

.amalia-floating-cta__icon::after {
    animation-delay: 1.2s;
}


@keyframes amaliaPulse {

    0% {
        transform: scale(1);
        opacity: .65;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }

}


/* text */

.amalia-floating-cta__text {
    min-width: 210px;

    margin-left: 14px;

    text-align: left;

    opacity: 0;

    transform: translateX(-8px);

    visibility: hidden;

    transition:
        opacity .2s ease .08s,
        transform .25s ease .08s,
        visibility .2s ease;
}


.amalia-floating-cta:hover .amalia-floating-cta__text {
    opacity: 1;

    transform: translateX(0);

    visibility: visible;
}


.amalia-floating-cta__text strong {
    display: block;

    color: #173c51;

    font-size: 15px;
    line-height: 1.25;
}


.amalia-floating-cta__text small {
    display: block;

    margin-top: 3px;

    color: #0b9ee7;

    font-size: 13px;
    line-height: 1.25;
}

/* ==================================
   Mobile
================================== */

@media (max-width: 767px) {

    .amalia-welcome-overlay {
        padding: 14px;
    }


    .amalia-welcome-popup {
        display: block;

        max-height: 92vh;

        overflow-y: auto;

        border-radius: 20px;
    }


    .amalia-welcome-popup__content {
        padding: 30px 21px 25px;
    }


    .amalia-welcome-popup__image {
        display: none;
    }


    .amalia-welcome-popup__logo {
        margin-bottom: 23px;
    }


    .amalia-welcome-popup__logo img {
        max-width: 130px;
    }


    .amalia-welcome-popup h2 {
        font-size: 39px;
    }


    .amalia-welcome-popup p {
        font-size: 14px;
    }


    .amalia-popup-field,
    .amalia-popup-submit {
        min-height: 53px;
    }


    .amalia-welcome-popup__features {
        gap: 0;
    }


    .amalia-popup-feature {
        min-height: 90px;

        padding: 4px 10px;

        font-size: 11px;

        text-align: center;
        align-items: center;
    }


    .amalia-popup-feature__icon {
        width: 42px;
        height: 42px;
    }


    .amalia-welcome-popup__privacy {
        font-size: 10px;
    }


    .amalia-floating-cta {
        right: 14px;
        bottom: 14px;

        padding: 5px;

        border-radius: 50%;
    }


    .amalia-floating-cta__icon {
        width: 54px;
        height: 54px;
    }


    .amalia-floating-cta__text {
        display: none;
    }

}

@media (max-width: 767px) {

    .amalia-floating-cta {
        right: 14px;
        bottom: 14px;

        width: 60px;
        height: 60px;

        padding: 4px;
    }

    .amalia-floating-cta:hover {
        width: 60px;
        transform: none;
    }

    .amalia-floating-cta__icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .amalia-floating-cta__text {
        display: none;
    }
}