/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/


:root {
	--cnvs-themecolor: #06315c;
	--cnvs-themecolor-rgb: 6, 49, 92;
	--cnvs-dark-color: #050505;

	--cnvs-body-font: 'Exo 2', sans-serif;
	--cnvs-primary-font: 'Exo 2', sans-serif;
}

body.dark {
	--cnvs-body-bg: var(--cnvs-dark-color);
}

#header {
	z-index: 399;
}

.slider-element h2 {
	font-size: 3.2rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
	text-shadow: 1px 0 10px rgb(157, 154, 154);




}
.button.button-change.button-color {
	background-color: #FFF !important;
	text-shadow: none;
}

.button.button-change { box-shadow: 0px 28px 32px -22px rgba(0,0,0,0.75); }

.dark.button.button-change,
.dark.section { background-color: var(--cnvs-dark-color) !important; }

.gradient-border {
	--borderWidth: 3px;
	background: #1D1F20;
	position: relative;
	border-radius: 0;
}

.gradient-border::after {
	content: '';
	position: absolute;
	top: calc(-1 * var(--borderWidth));
	left: calc(-1 * var(--borderWidth));
	height: calc(100% + var(--borderWidth) * 2);
	width: calc(100% + var(--borderWidth) * 2);
	background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
	border-radius: var(--borderWidth);
	z-index: -1;
	animation: animatedgradient 3s ease alternate infinite;
	background-size: 300% 300%;
}

@keyframes animatedgradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@media (min-width: 992px) {
	#header.transparent-header {
		--cnvs-header-bg: transparent;
		--cnvs-header-border-color: transparent;
	}

	#header + .include-header {
		margin-top: calc(calc(-1 * var(--cnvs-header-height)) - 1px);
		display: inline-block;
		vertical-align: bottom;
		width: 100%;
	}

	.slider-element h2 {
		font-size: 3.5rem;
		line-height: 1.2;
		/* letter-spacing: -4px; */
	}

}

/* img-hover-wraps */
.img-hover-wrap {
	-webkit-transition: transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	-moz-transform-style: flat !important;
	-webkit-backface-visibility: hidden;
}

.img-hover-wrap:hover {
	-webkit-transform: scale(1.06);
	-ms-transform: scale(1.06);
	-o-transform: scale(1.06);
	transform: scale(1.06);
	z-index: 2;
}

.img-hover-card > a::after {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 0;
	-webkit-transition: background-color .3s ease;
	-o-transition: background-color .3s ease;
	transition: background-color .3s ease;
}

.img-hover-wrap:hover .img-hover-card > a::after { background-color: rgba(0, 0, 0, 0.6); }

.img-hover-card {
	position: relative;
	display: block;
	will-change: transform;
	transition: all .3s ease;
	box-shadow: 0 10px 40px transparent;
}

.img-hover-card a {
	width: 100%;
	max-width: 100%;
	display: block;
	z-index: 99;
}

.img-hover-card.hover-in {
	transition: -webkit-transform .2s ease-out;
	transition: transform .2s ease-out;
	transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.img-hover-card.hover-3d { z-index: 2; }

.img-hover-card.hover-out {
	transition: -webkit-transform .2s ease-in;
	transition: transform .2s ease-in;
	transition: transform .2s ease-in, -webkit-transform .2s ease-in;
}

.img-hover-wrap:hover .img-hover-card { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); }

.img-hover-wrap .img-hover-detail {
	position: absolute;
	top: auto;
	left: 40px;
	bottom: 40px;
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	-webkit-transform: scale(1) translateY(40px) translateZ(50px);
	-ms-transform: scale(1) translateY(30px) translateZ(50px);
	-o-transform: scale(1) translateY(30px) translateZ(50px);
	transform: scale(1) translateY(30px) translateZ(50px);
	-webkit-transition: transform .2s ease;
	-o-transition: transform .2s ease;
	transition: transform .2s ease;
}

.img-hover-wrap:hover .img-hover-detail {
	opacity: 1;
	-webkit-transform: scale(1.06) translateY(-5px) translateZ(50px);
	-ms-transform: scale(1.06) translateY(-5px) translateZ(50px);
	-o-transform: scale(1.06) translateY(-5px) translateZ(50px);
	transform: scale(1.06) translateY(-5px) translateZ(50px);
}

.img-hover-wrap .img-hover-title {
	margin: 0 0 6px 0;
	font-size: 17px;
	font-weight: 600;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
	z-index: 9;
}

.img-hover-wrap .img-link {
	opacity: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #FFF;
	border-radius: 50%;
	text-align: center;
	line-height: 18px;
	font-size: 11px;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

.img-hover-wrap:hover .img-link { opacity: 1; }

.img-hover-detail a { color: #FFF; }

.testimonials-carousel .owl-item {
	transform: translateX(-40px);
	opacity: 0;
	transition: transform .4s, opacity .3s;
}

.testimonials-carousel .owl-item.active {
	transform: translateX(0);
	opacity: 1;
}

@media (max-width: 991.98px) {
	#header.dark.transparent-header, #header.dark.semi-transparent { background-color: var(--cnvs-dark-color); }

	.primary-menu ul > li > a, .primary-menu.style-2 > div > ul > li > a {
		padding: 10px !important;
		border-radius: 0 !important;
		margin-right: inherit !important;
	}
}

.css3-spinner > div {
	margin-top: -36px;
	margin-left: -32px;
	width: 62px;
	height: 72px;
	background-color: transparent !important;
	-webkit-animation: none;
	animation: none;
}

#gotoTop { border-radius: 50% }

.dark-mode {
	position: fixed;
	top: auto;
	right: 11px;
	bottom: 80px;
	text-align: center;
	margin: 0 auto;
	z-index: 299;
}

.dark-mode i {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	color: #FFF !important;
	background-color: #111;
	border-radius: 50%;
	margin: 0 auto;
}

.dark-mode span {
	display: block;
	opacity: 0;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin: 0;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	-o-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: transform .3s, opacity .3s;
	-o-transition: transform .3s, opacity .3s;
	transition: transform .3s, opacity .3s;
	-webkit-backface-visibility: hidden;
}

.dark-mode:hover span {
	opacity: 1;
	margin-bottom: 7px;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.dark .dark-mode i {
	color: #111 !important;
	background-color: #FFF;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dark .dark-mode span { color: #FFF; }
footer-big-contacts {
	color: #333;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}

.footer-big-contacts span {
	display: block;
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	color: #888;
	letter-spacing: 2px;
}

#content .content-wrap{
	background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(4,71,125,1) 35%, rgba(15,162,214,1) 100%);
}

.lead-sub::first-letter {
	float: left;
	font-size: 3em;
	line-height:.8;
	margin: .125em .25em;
  }

  .device-up-xs #header-wrap #logo img{
	height: var(--cnvs-header-height-sm);
  }

   .az-scroll-indicator {
      position: absolute;
      bottom: 38px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.55);
      font-family: var(--font-body);
      font-size: 0.625rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .az-scroll-indicator .scroll-mouse {
      width: 22px;
      height: 36px;
      border: 2px solid rgba(255, 255, 255, 0.38);
      border-radius: 11px;
      position: relative;
    }

    .az-scroll-indicator .scroll-mouse::after {
      content: '';
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 6px;
      background: var(--az-gold);
      border-radius: 2px;
      animation: az-scroll-pulse 1.9s ease infinite;
    }

    @keyframes az-scroll-pulse {
      0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
      100% { opacity: 0; transform: translateX(-50%) translateY(13px); }
    }

	 /* ─── Cards ─── */
  .cl-card {
    background: var(--cnvs-themecolor);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 32px;
    transition: box-shadow 0.25s, transform 0.25s;
    border: 1px solid var(--color-border);
    height: 100%;
  }
  .cl-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
  }

  /* ─── Icon Circle ─── */
  .cl-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  .cl-icon-circle i {
    font-size: 24px;
    color: var(--cnvs-themecolor);
  }

  #gotoTop {
	--cnvs-gotoTop-stroke-color: var(--cnvs-themecolor);
	--cnvs-gotoTop-stroke-size: 32px;
	--cnvs-gotoTop-stroke-width: 6px;
	--cnvs-scroll-progress-range: calc((var(--cnvs-body-height) - var(--cnvs-viewport-height)) / var(--cnvs-body-height));
	--cnvs-gotoTop-scroll: calc(260 - (260 * (var(--cnvs-scroll-end) / var(--cnvs-scroll-progress-range))));
	background-color: transparent !important;
}

#gotoTop::before {
	content: "\f148";
	font-family: 'bootstrap-icons';
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: 2px;
	width: calc(var(--cnvs-gotoTop-stroke-size) + calc(var(--cnvs-gotoTop-stroke-width) * .5));
	height: calc(var(--cnvs-gotoTop-stroke-size) + calc(var(--cnvs-gotoTop-stroke-width) * .5));
	line-height: calc(var(--cnvs-gotoTop-stroke-size) - 1px);
	font-size: 1rem;
	font-weight: bold;
	color: #fff;
	transform: translate(-50%, -50%);
	border: 2px solid rgba(0,0,0,0.1);
	border-radius: 50%;
	z-index: -1;
}

#gotoTop circle {
	stroke: var(--cnvs-contrast-900);
	stroke-width: var(--cnvs-gotoTop-stroke-width);
	transform: rotate(-90deg);
	transform-origin: center;
	stroke-dashoffset: var(--cnvs-gotoTop-scroll);
	stroke-dasharray: 255 255;
	z-index: 1;
}
.noice-effect::before {
	content: "";
	position: absolute;
	top: -100%;
	left: -100%;
	width: 300%;
	height: 300%;
	opacity: 0.6;
	background-image: url(../images/noise-pattern.png);
	background-repeat: repeat;
	background-size: auto;
	animation: noiceAnim 8s steps(10) infinite;
}

@keyframes noiceAnim {

	0%,
	to {
		transform: translate(0);
	}

	10% {
		transform: translate(-5%, -10%);
	}

	20% {
		transform: translate(-15%, 5%);
	}

	30% {
		transform: translate(7%, -25%);
	}

	40% {
		transform: translate(-5%, 25%);
	}

	50% {
		transform: translate(-15%, 10%);
	}

	60% {
		transform: translate(15%);
	}

	70% {
		transform: translateY(15%);
	}

	80% {
		transform: translate(3%, 35%);
	}

	90% {
		transform: translate(-10%, 10%);
	}
}
.cl-card {
background-color: #01315F;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23013D77' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23014383'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
}
.svgFooter{
background-color: #0D508C;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cg %3E%3Crect fill='%230D508C' width='11' height='11'/%3E%3Crect fill='%230a518c' x='10' width='11' height='11'/%3E%3Crect fill='%2307518c' y='10' width='11' height='11'/%3E%3Crect fill='%2303528d' x='20' width='11' height='11'/%3E%3Crect fill='%2300538d' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%2300538d' y='20' width='11' height='11'/%3E%3Crect fill='%2300548d' x='30' width='11' height='11'/%3E%3Crect fill='%2300558d' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%2300558d' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%2300568d' y='30' width='11' height='11'/%3E%3Crect fill='%2300578d' x='40' width='11' height='11'/%3E%3Crect fill='%2300578d' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%2300588d' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%2300588d' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%2300598d' y='40' width='11' height='11'/%3E%3Crect fill='%23005a8d' x='50' width='11' height='11'/%3E%3Crect fill='%23005a8d' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23005b8d' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23005b8d' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23005c8d' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23005d8d' y='50' width='11' height='11'/%3E%3Crect fill='%23005d8d' x='60' width='11' height='11'/%3E%3Crect fill='%23005e8d' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23005e8d' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23005f8d' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%2300608d' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%2300608d' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%2300618d' x='70' width='11' height='11'/%3E%3Crect fill='%2300618d' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%2300628d' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%2300628d' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%2300638c' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%2300638c' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%2300648c' x='80' width='11' height='11'/%3E%3Crect fill='%2300658c' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%2300658c' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%2300668c' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%2300668c' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%2300678b' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%2300678b' x='90' width='11' height='11'/%3E%3Crect fill='%2300688b' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%2300688b' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%2300698b' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%2300698a' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23006a8a' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%23006a8a' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%23006b8a' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23006b8a' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23006c89' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23006c89' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23006d89' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23006d89' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%23016e89' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%23046e88' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%23076f88' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%230a6f88' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%230d7088' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23107087' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23137187' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23157187' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

/* ── Destination Cards ── */
.az-destination-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
}
.az-destination-card img.dest-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  z-index: 0;
}
.az-destination-card:hover img.dest-bg {
  transform: scale(1.04);
}
.az-destination-card .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,29,53,0.92) 0%, rgba(8,29,53,0.55) 50%, rgba(8,29,53,0.20) 100%);
  transition: background 0.35s ease;
  z-index: 1;
}
.az-destination-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(8,29,53,0.78) 0%, rgba(8,29,53,0.38) 55%, rgba(8,29,53,0.05) 100%);
}
.az-destination-card .dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}
.az-dest-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.az-dest-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 8px;
}
.az-dest-ports {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.az-dest-explore {
  display: inline-block;
  color: #C9A84C;
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.az-destination-card:hover .az-dest-explore {
  opacity: 1;
  transform: translateY(0);
}








