@import url("https://use.typekit.net/eaz2hrq.css");

/* Fonts */
/*@font-face {*/
/*    font-family: "Larken", serif;*/
/*    src: url("../fonts/LarkenDEMO-Regular.woff") format("woff"),*/
/*         url("../fonts/LarkenDEMO-Regular.woff2") format("woff2");*/
/*    font-weight: 400;*/
/*    font-style: normal;*/
/*    font-display: auto;*/
/*}*/

/*@font-face {*/
/*    font-family: "Larken", serif;*/
/*    src: url("../fonts/LarkenDEMO-MediumItalic.woff") format("woff"),*/
/*         url("../fonts/LarkenDEMO-MediumItalic.woff2") format("woff2");*/
/*    font-weight: 500;*/
/*    font-style: italic;*/
/*    font-display: auto;*/
/*}*/
/* Mobile-Specific Font */
/*@font-face {*/
/*    font-family: "Larken-Mobile";*/
/*    src: url("../fonts/LarkenMobile-Regular.woff") format("woff"),*/
/*         url("../fonts/LarkenMobile-Regular.woff") format("woff");*/
/*    font-weight: 400;*/
/*    font-style: normal;*/
/*    font-display: auto;*/
/*}*/

/*@font-face {*/
/*    font-family: "Larken-Mobile";*/
/*    src: url("../fonts/LarkenMobile-MediumItalic.woff") format("woff"),*/
/*         url("../fonts/LarkenMobile-MediumItalic.woff") format("woff");*/
/*    font-weight: 500;*/
/*    font-style: italic;*/
/*    font-display: auto;*/
/*}*/

:root {
  --default-font: "Inter", sans-serif, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --accent-font: "Inter", sans-serif;
  --heading-font: "Plus Jakarta Sans", serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #F2F2F2;
  --default-color: #2A3440;
  --heading-color: #111111;
  --accent-color: #34639B;
  --toned-color: #8FDBE4;
  --surface-color: #000000;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #000000;
  --nav-hover-color: #34639B;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #47b2e4;
}

/* Color Presets */

.light-background {
  --background-color: #111111;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #111111;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

/* Custom scroll */
::-webkit-scrollbar {
	width: 8px;
	background: var(--surface-color);
}
::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 50px;
}
.hidden-head {
  transform: translateY(-100%);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html, body {
    font-feature-settings: "liga", "kern";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
	position: relative;
  color: var(--default-color);
  background-color: var(--background-color);
	/* background: var(--background-color) url(../img/background.svg); */
  font-family: var(--accent-font);
	top: 0px!important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

main.main {
	position: relative;
	overflow: clip;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 20px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	}

	.navmenu ul {
    margin: 0;
    display: flex;
    list-style: none;
		gap: 20px;
    align-items: center;
	}

  .navmenu li {
    position: relative;
    transition: 0.3s ease;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 12px;
    font-size: 14px;
    font-family: var(--accent-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 20px;
    line-height: 0;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    transition: 0.3s ease;
  }
	
  .navmenu li:hover>a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 50px;
    background: var(--accent-color);
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 6px;
    transition: 0.3s ease;
	}
	.navmenu li ul li:hover>a::after {
    content: none;
	}

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--accent-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
	padding: 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .topbar {
  background-color: var(--background-color);
  padding: 10px 0;
  font-size: 14px;
  transition: all 0.5s;
	height: 70px;
}

.header .logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .nav-box {
	position: relative;
  color: var(--default-color);
  background-color: var(--contrast-color);
	padding: 4px 0;
  transition: all 0.5s;
  z-index: 997;
	height: 53px;
}

.header .btn-header,
.header .btn-header:focus {
	color: var(--default-color);
	background: #ffffff79;
	backdrop-filter: blur(50px);
	font-size: 16px;
	font-weight: 500;
	padding: 4px 16px 4px 4px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	border-radius: 50px;
	transition: 0.3s;
}
.header .btn-header i {
	width: 38px;
	height: 38px;
  color: var(--default-color);
	background: #00000014;
	display: grid;
	place-content: center;
	border-radius: 50px;
	margin: 0;
}

.header .btn-header:hover,
.header .btn-header:focus:hover {
  color: var(--contrast-color);
	background: var(--default-color);
}

.header .btn-header:hover i {
  color: var(--contrast-color);
	background: var(--accent-color);
}

@media (max-width: 768px) {
	.header .logo img {
    width: 180px;
    height: 100%;
    margin-right: 8px;
	}
	.header .btn-header,
	.header .btn-header:focus {
		margin: 0 8px;
	}
}

/* Page Header on Scroll
------------------------------*/
.scrolled .header {
	background: #ffffffeb;
	backdrop-filter: blur(24px);
}

.scrolled .header .topbar {
  height: 0;
	padding: 0;
  visibility: hidden;
  overflow: hidden;
}

@media (max-width: 768px) {
	.header {
		padding: 0;
	}
	.header .nav-box {
    padding: 10px;
    height: auto;
	}
	.scrolled .header {
    background: #ffffffa8;
		backdrop-filter: none;
    mix-blend-mode: normal;
		padding: 0;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	padding-top: 50px;
	padding-bottom: 30px;
	position: relative;
	overflow: hidden;
	background: var(--contrast-color);
}
.footer h2 {
	font-size: 40px;
	font-weight: 500;
	color: var(--default-color);
	text-wrap: pretty;
	margin-bottom: 32px;
}
.footer h2 span{
	font-weight: 600;
}
.footer ul.terms {
	list-style: none;
	display: flex;
	padding: 0;
	gap: 36px;
}
.footer ul.terms a {
	font-style: 16px;
}
.footer .social-links {
  display: flex;
  align-items: center;
	gap: 10px;
	margin-bottom: 34px;
}
.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #FEF2F2;
	font-size: 18px;
	color: var(--accent-color);
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--contrast-color);
	background: var(--default-color);
}
.footer .logo {
	display: flex;
	width: 100%;
	max-width: 290px;
}
.footer .footer-links h4 {
	color: #b8b8b8;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 8px;
}
.footer .footer-links p {
	color: var(--surface-color);
	font-weight: 400;
}
.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
	padding: 4px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
	display: inline-block;
	color: var(--default-color);
	font-weight: 500;
	line-height: 1.1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright ,
.footer .credits {
	color: #727272;
  font-size: 13px;
}
.footer-text  img {
	opacity: 0.06;
}

@media (max-width: 768px) {
	.footer {
    padding: 50px 0;
	}
	.footer h2 {
    font-size: 28px;
	}
	.footer .logo {
    display: none;
	}
	.footer .copyright, 
	.footer .credits {
    text-align: center;
	}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
	color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--default-color);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 80px 0;
  scroll-margin-top: 88px;
	position: relative;
  overflow-x: clip;
	z-index: 1;
}

.bg-section {
    background: #173336;
}

.section ul {
    list-style:none;
    padding-left: 30px;
}
.section ul li {
    margin-bottom: 10px;
    font-size: 18px;
    text-indent: -32px;
}
.section ul li .bx {
    padding: 0 5px;
    font-size: 22px;
    position: relative;
    top: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-indent: 0;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

@media (max-width: 768px) {
	section,
	.section {
		padding: 40px 0;
	}
    .section ul li {
        font-size: 16px;
    }
}
.scroll-end {
	padding-top: 150px;
	margin-top: -150px;
}
.thank-you h1 {
	font-size: 64px;
	font-family: var(--accent-font);
	font-style: italic;
}
.error h1 {
	font-size: 100px;
	font-family: var(--accent-font);
	font-style: italic;
}
.thank-you h4,
.error h4 {
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
}
.section-title .sticky-top {
    top: 100px;
}
.section-title h2 {
    font-size: 46px;
    margin-bottom: 36px;
    color: var(--default-color);
    font-family: "Larken";
}
.bg-section .section-title h2 {
    /*color: var(--contrast-color);*/
}
.bg-section .section-title h3,
.bg-section .section-title ul li {
    /*color: var(--contrast-color);*/
}
.bg-section .section-title p {
    /*color: var(--contrast-color);*/
    font-weight: 300;
}
.section-title h2 span {
	/*background: linear-gradient(90deg, #33629A 0%, #00ABD2 100%);*/
	/*background-clip: text;*/
	/*-webkit-background-clip: text;*/
	/*-webkit-text-fill-color: transparent;*/
	color: var(--accent-color);
}

.section-title h3 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: "Larken";
}
.section-vid {
    /*background: #fff;*/
    /* padding: 10px 10px 4px 9px; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.section-vid iframe {
    width: 100%;
    height: 360px;
}
.section-title p {
	color: var(--default-color);
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	margin-bottom: 20px;
}

.section-title.dark h2,
.section-title.dark h3,
.section-title.dark p {
	color: var(--default-color)!important;
}

@media (max-width: 768px) {
	.section-title {
    padding-bottom: 10px;
	}
	.section-title h3 {
    font-size: 16px;
    margin-bottom: 14px;
    font-family: "Larken"
	}
	.section-title h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-family: "Larken"
    }
	.section-title h2.bor-bottom::after {
    /*content: "";*/
    /*display: block;*/
    /*height: 3px;*/
    /*background: var(--accent-color);*/
    /*margin: 20px 0;*/
    /*width: 100px;*/
	}
	.section-title p {
    color: var(--default-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
	}
}
.sec-image {
    position: relative;
    z-index: 1;
    padding: 0;
}
.sec-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /*background: #173336;*/
    z-index: -1;
}

.swish {
	position: absolute;
	width: 100%;
	left: 0;
	z-index: 0;
	mix-blend-mode: multiply;
	opacity: .3;
}
.swish img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swish.flip {
	-webkit-transform: scaleX(-1);
	transform: scaley(-1);
}
.swish.one {
	top: 200px;
	z-index: 1;
}
.swish.two {
	top: 700px;
}
.swish.three {
	top: 1800px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-quote {
	padding: 16px;
	font-size: 18px;
	font-weight: 500;
	color: var(--contrast-color);
	background: var(--accent-color);
	backdrop-filter: blur(24px);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: .3s ease;
}
.btn-quote img {
	height: 38px;
}
.btn-quote:hover {
	color: var(--contrast-color);
	background:var(--surface-color);
	padding: 16px 24px;
}
.btn-quote:hover img {
	filter: brightness(0) invert(1);
}

.btn-default {
	padding: 10px 0px;
	font-size: 18px;
	color: #A0A0A0;
	background: transparent;
	backdrop-filter: blur(24px);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: .3s ease;
}
.btn-default img {
	height: 20px;
}
.btn-default:hover {
	color: var(--surface-color);
	background: #f1f1f1;
	padding: 10px 16px;
}
.btn-default:hover img {
	filter: brightness(0) invert(0);
}

.btn-accent {
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	color: var(--default-color);
	background: var(--toned-color);
	backdrop-filter: blur(24px);
	display: inline-flex;
	align-items: center;
	border-radius: 50px;
	gap: 10px;
	transition: .3s ease;
}
.btn-accent i {
	transform: rotate(124deg);
}
.btn-accent:hover {
	color: var(--contrast-color);
	background: var(--accent-color);
}

.btn-accent:hover img {
	filter: brightness(0) invert(0);
}

.btn-book {
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 50px;
	color: var(--surface-color);
	background: var(--contrast-color);
	backdrop-filter: blur(24px);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: .3s ease;
}
.btn-book:hover {
	color: var(--contrast-color);
	background: var(--surface-color);
}

.btn-back {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	margin: 0;
	margin-bottom: 14px;
	font-size: 12px;
	width: fit-content;
	color: #fff;
	background: #ee00003d;
	backdrop-filter: blur(10px);
	border-radius: 4px;
}

.btn-back:hover,
.btn-back:focus:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), transparent 45%);
}

@media (max-width: 768px) {
	.btn-default {
    padding: 12px 14px;
		margin-bottom: 20px;
    gap: 10px;
    font-size: 14px;
		color: var(--surface-color);
		background: #f1f1f1;
	}
	.btn-default:hover {
		color: var(--surface-color);
		background: #f1f1f1;
    padding: 12px 14px;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	height: calc(100vh - 123px);
	min-height: 700px;
	margin: 123px 0 0;
	padding: 80px 0;
	position: relative;
	display: grid;
	align-content: end;
	overflow: clip;
}
.hero::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #F2F2F200 40%, #F2F2F2 80%);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.hero .hero-banner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.hero .hero-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero .content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	margin: 0;
	color: var(--default-color);
	font-family: "Larken";
	font-size: 60px;
	line-height: 72px;
	text-wrap: pretty;
	font-weight: 400;
}
.hero h1 span {
	color: var(--accent-color);
	font-weight: 500;
	font-style: italic;
}
.hero p {
	margin: 30px 0 0;
	color: #000;
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
}

@media (max-width: 768px) {
	.hero {
        min-height: auto;
        margin: 63px 0 0;
        padding: 40px 0;
        height: 600px;
	}
	.hero h1 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
        font-family: "Larken"
	}
	.hero p {
        margin: 0;
        color: #000;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
    }
}

/*--------------------------------------------------------------
# Inner Hero
--------------------------------------------------------------*/

.inner-page .hero {
	min-height: 400px;
	height: 600px;
	padding: 50px 0 50px;
	overflow: clip;
}
.inner-page .hero .swiper-container {
	min-height: 400px;
}
.inner-page .hero h1 {
	margin: 0;
	font-size: 46px;
	line-height: 56px;
}
.inner-page .hero h2 {
	margin: 0;
	color: #a4a4a4;
	font-size: 28px;
	font-weight: 400;
}
.inner-page .hero .image {
	height: 200px;
	overflow: clip;
	display: flex;
	align-items: center;
}
.inner-page .hero p {
	margin: 10px 0 0 0;
	max-width: fit-content;
}
@media (max-width: 768px) {
	.inner-page .hero {
        height: 420px;
        padding: 30px 0;
	}
	.inner-page .hero p {
        font-size: 14px;
        line-height: 20px;
	}
	.inner-page .hero h1 {
        font-size: 26px;
        line-height: 34px;
	}
	.inner-page .hero h2 {
        font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Iframe Page
--------------------------------------------------------------*/

.iframe-page {
	overflow: clip;
}
.iframe-page iframe {
	width: 100%;
	height: 100vh;
}
.iframe-page #preloader {
	display: none;
}
header.iframe-header {
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	height: 44px;
	width: 100%;
	padding: 0 10px;
}
header.iframe-header .logo {
	width: 200px;
	display: flex;
	align-items: center;
	border-right: 1px solid #c6bfb7;
}
header.iframe-header .velux {
	width: 90px;
	display: flex;
	align-items: center;
	border-right: 1px solid #c6bfb7;
	margin-right: 10px;
	padding-right: 8px;
}
header.iframe-header h2 {
	font-size: 16px;
	color: #78716b;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	white-space: nowrap;
	overflow: hidden;
	font-family: VELUX Transform,arial,sans-serif;
	text-overflow: ellipsis;
	font-variation-settings: "wdth" 30;
	margin: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.breadcrumbs {
	display: flex;
	gap: 5px;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 4px 10px;
	margin: 0;
	margin-bottom: 14px;
	font-size: 12px;
	width: fit-content;
	background: #ee00000f;
	backdrop-filter: blur(10px);
	border-radius: 4px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  content: "•";
  display: inline-block;
  padding-right: 10px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Cta Section
--------------------------------------------------------------*/

.cta {
    background: #173336;
}
.cta h2 {
	text-align: center;
	font-size: 42px;
	line-height: 54px;
	font-weight: 300;
	text-wrap: pretty;
	position: relative;
	z-index: 2;
	/*text-shadow: 10px 10px 40px #00000099;*/
	color: var(--contrast-color);
}
.cta h2 span {
	font-family: "Larken";
	font-weight: 400;
	font-style: italic;
}
.cta .box {
	min-height: 330px;
}

.cta .box .btn-round {
	display: grid;
	place-content: center;
	text-align: center;
	font-weight: 400;
	color: #fff;
	border-radius: 100px;
	border: 0;
	background-image: linear-gradient(60deg, #3498db, #7c4891);
	height: 150px;
	width: 150px;
	margin: 0 auto;
	margin-top: -44px;
	position: relative;
	z-index: 1;
	transition: 0.5s ease;
	animation: moveDown 0.5s forwards;
}

.cta .box:hover .btn-round {
	background-image: linear-gradient(60deg, #3498db, #7c4891);
	box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	z-index: 3;
	animation: moveUp 0.5s forwards;
	transition: 0.5s ease;
}
.cta .box .btn-round:hover {
	background-image: linear-gradient(280deg, #7c4891, #3498db);
	transition: 0.5s ease;
}

@keyframes moveUp {
	0% {margin-top: -44px;}
	50% {margin-top: 0;	}
	100% {margin-top: -54px;}
}
@keyframes moveDown {
	0% {margin-top: -54px;}
	50% {margin-top: 0;	}
	100% {margin-top: -44px;}
}

@media (max-width: 768px) {
	.cta .box {
        min-height: auto;
	}
	.cta h2 {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .cta h2 span {
        font-family: "Larken"
    }
    .cta .box .btn-round {
        margin-top: 0;
        width: 126px;
        height: 126px;
    	animation: none;
    }
    .cta .box:hover .btn-round {
    	animation: none;
    }
}

/*--------------------------------------------------------------
# Accredits
--------------------------------------------------------------*/
.accredits {
	padding: 60px 0;
}
.accredits .list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	grid-gap: 50px;
	background: #F0F8FF;
	padding: 20px;
	border-radius: 16px;
}
.accredits .image {
  display: flex;
  justify-content: center;
	filter: brightness(0) saturate(100%) invert(19%) sepia(15%) saturate(865%) hue-rotate(173deg) brightness(92%) contrast(93%);
}
.accredits img {
	height: 74px;
	object-fit: contain;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/
.services .box {
	position: relative;
	display: grid;
	align-content: flex-end;
	transition: all .5s ease;
	padding: 20px;
	border-radius: 16px;
	border: 1px solid #34639b38;
	background: #ffffff24;
	backdrop-filter: blur(8px);
}
.services .box .image {
	position: relative;
	min-height: 50px;
	overflow: clip;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	transition: .5s ease;
}
.services .box .image img {
	width: auto;
	height: 105px;
	object-fit: cover;
	transition: .5s ease;
}
.services .box h2 {
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 16px 0;
	letter-spacing: -1px;
}
.services .box p {
    font-size: 16px;
    color: #727272;
    position: relative;
    height: 166px;
    overflow: hidden;
    interpolate-size: allow-keywords;
    margin: 0;
    transition: height 0.5s ease;
}
.index-page .services .box p {
    height: 122px;
}
.services .box:hover p {
    height: auto;
    height: calc-size(auto);
}
.services .box:hover {
	border: 1px solid var(--toned-color);
	background: var(--toned-color);
}
.services .box:hover h2 ,
.services .box:hover p {
	/* color: var(--contrast-color); */
}

@media (max-width: 768px) {
	.services .box,
	.services .col-lg-4:nth-child(1) ,
	.services .col-lg-4:nth-child(3) {
		margin-top: 0;
	}
	.services .box .image {
    max-height: 400px;
	}
	.services .box .content {
    padding: 16px;
	}
	.services .box h2 {
    font-size: 20px;
	}
	.services .box p {
    font-size: 16px;
	}
}

/*--------------------------------------------------------------
# service-page Section
--------------------------------------------------------------*/
.service-page .box {
	padding: 24px;
	background: #fef2f2;
	margin-bottom: 24px;
}

/*--------------------------------------------------------------
# Team page
--------------------------------------------------------------*/

.team .box {
	position: relative;
	display: grid;
	justify-items: center;
	transition: .5s ease;
	padding: 20px;
	border-radius: 16px;
	background: #ffffff24;
	backdrop-filter: blur(8px);
}
.team .box .image {
	position: relative;
	height: 200px;
	width: 200px;
	border-radius: 100%;
	overflow: clip;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	margin-bottom: 34px;
	transition: .5s ease;
}
.team .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team .box h2 {
	font-size: 22px;
	font-weight: 500;
	margin: 0px 0 8px 0;
	letter-spacing: -1px;
}
.team .box h3 {
	font-size: 16px;
	color: #727272;
	margin: 0;
}
.team .box h4 {
	font-size: 16px;
	color: #727272;
	overflow: clip;
	margin: 8px 0 ;
}
.team .box p {
	margin: 16px 0 0 0;
}
.team .box:hover {
	background: var(--toned-color);
}

/*--------------------------------------------------------------
# price
--------------------------------------------------------------*/
.price .box {
	position: relative;
	display: grid;
	align-content: flex-end;
	transition: .5s ease;
	padding: 20px;
	border-radius: 16px;
	border: 1px solid #34639b38;
	background: #ffffff24;
	backdrop-filter: blur(8px);
}
.price .box table {
	width: 100%;
}
.price .box table tr {
	position: relative;
	height: 45px;
	border-bottom: 1px solid #d6d6d6;
}
.price .box table tr td.price {
	font-size: 20px;
	font-weight: 500;
}

@media (max-width: 768px) {
    .price .box table tr td.price {
        font-size: 18px;
        font-weight: 600;
        white-space: nowrap;
    }
}


/*--------------------------------------------------------------
# About 
--------------------------------------------------------------*/

.about .image {
    border-radius: 16px;
    overflow: hidden;
}
.about .content h3 {
    font-size: 26px;
    line-height: 38px;
    font-weight: 500;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.about .content p {
    font-size: 18px;
    transition: height 0.5s ease;
}

@media (max-width: 768px) {
    .about .content h3 {
        font-size: 20px;
    line-height: 28px;
    }
    .about .content p {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/

.form .content h1 {
	font-family: var(--accent-font);
	font-style: italic;
	font-size: 48px;
	margin: 34px 0px 20px 0;
}
.form .content p {
	font-size: 20px;
	font-weight: 400;
	position: relative;
}
.form-control, .form-select {
	color: #000;
	border-radius: 0px;
	border-bottom: 1px solid var(--default-color);
}
.form-floating>label {
	color: rgba(var(--bs-body-color-rgb),.65);
}

@media (max-width: 768px) {
	.form .content h1 {
    font-size: 28px;
    margin: 20px 0;
	}
	.form .content p {
    font-size: 14px;
	}
	.form-box {
    padding: 16px;
	}
}

.form .contact-details {
	border: 1px solid #34639b38;
	background: #ffffff24;
	backdrop-filter: blur(8px);
	border-radius: 16px;
	padding: 20px;
}
.form .contact-details h4 {
	color: #b8b8b8;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 8px;
}
.form .contact-details p {
	color: var(--surface-color);
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
}
.form .contact-details .social-links {
  display: flex;
  align-items: center;
	gap: 10px;
}
.form .contact-details .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--contrast-color);
	font-size: 18px;
	color: var(--accent-color);
	transition: 0.3s;
}
.form .contact-details .social-links a:hover {
	color: var(--contrast-color);
	background: var(--default-color);
}