/* Fonts */
: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;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #111111;
  --accent-color: #EE0000;
  --surface-color: #000000;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #000000;
  --nav-hover-color: #EE0000;
  --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;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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(--accent-font);
}

/* 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: 16px;
    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:last-child:hover>a::after {
		display: 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 {
  --background-color: #3d4d6a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
	padding: 16px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-header,
.header .btn-header:focus {
	color: var(--default-color);
	background: #ffffff79;
	border: 2px solid #b9b9b9;
	backdrop-filter: blur(50px);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -1px;
	padding: 4px 16px 4px 4px;
	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);
	border: 2px solid var(--default-color);
}

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

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
    display: grid;
    align-content: center;
	}
}

@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
------------------------------*/
.index-page .header,
.inner-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #000;
  --nav-color: #000;
}
.index-page .header {
	padding: 24px 50px;
}

/* Page Header on Scroll
------------------------------*/
.index-page.scrolled .header,
.inner-page.scrolled .header {
	background: #ffffffeb;
	backdrop-filter: blur(24px);
}
.index-page.scrolled .header {
	padding: 16px 50px;
}


@media (max-width: 768px) {
	.index-page .header,
	.inner-page .header {
		padding: 16px;
	}
	.index-page.scrolled .header, 
	.inner-page.scrolled .header {
    background: #ffffffa8;
		backdrop-filter: none;
    mix-blend-mode: normal;
		padding: 16px;
	}
}

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

.cta .section-title {
	position: sticky;
	top: 25%;
}
.cta ul {
	list-style: none;
	padding: 0;
}
.cta ul li {
	padding: 20px 0;
	font-size: 16px;
	border-bottom: 2px solid #dfdfdf;
	transition: .5s ease;
}
.cta ul li:hover {
	padding: 20px;
	background: #f4f4f4;
}
.cta .image {
	width: 50vw;
	height: calc(100vh - 80px);
	min-height: 600px;
	position: sticky;
	top: 80px;
}
.cta .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.cta {
		background: #FFE1DF;
	}
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
	overflow: hidden;
	background: #FEF2F2;
}
.footer .white-box {
	background: #fff;
	padding: 50px;
	margin: 0 -50px;
}
.footer h2 {
	font-size: 40px;
	font-weight: 300;
	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 .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;
	text-transform: uppercase;
}

.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: 100px 0;
  scroll-margin-top: 88px;
	position: relative;
  overflow-x: clip;
}

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

@media (max-width: 768px) {
	section,
	.section {
		padding: 40px 0;
	}
}
.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 h2 {
	font-size: 36px;
	font-family: var(--accent-font);
	font-weight: 400;
	margin-bottom: 20px;
	font-style: italic;
}

.section-title h2.bor-bottom::after {
	content: "";
	display: block;
	height: 3px;
	background: var(--accent-color);
	margin: 40px 0;
	width: 140px;
}

.section-title h3 {
  font-size: 26px;
	font-family: var(--accent-font);
	font-style: italic;
  font-weight: 500;
	margin-bottom: 20px;
}

.section-title p {
	color: var(--default-color);
	font-size: 20px;
	line-height: 34px;
	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;
	}
	.section-title h2 {
    font-size: 28px;
    margin-bottom: 16px;
	}
	.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;
	}
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/

.swiper.expertise-swipe,
.swiper.blogs-swipe,
.swiper.testi-swipe {
	width: 100vw;
}

@media (max-width: 640px) {
	.swiper.expertise-swipe,
	.swiper.blogs-swipe,
	.swiper.testi-swipe {
		width: 100%;
	}
}

.swiper-button-prev2,
.swiper-button-next2,
.swiper-button-prev3,
.swiper-button-next3 {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 2px solid #fff;
	color: var(--default-color);
	border-radius: 50px;
	display: grid;
	place-content: center;
	font-size: 24px;
}

.swiper-button-prev2:hover,
.swiper-button-next2:hover,
.swiper-button-prev3:hover,
.swiper-button-next3:hover {
	background: #ffffff31;
	border: 2px solid #ffffff14;
}

@media (max-width: 768px) {
	.swiper-button-prev2, 
	.swiper-button-next2, 
	.swiper-button-prev3, 
	.swiper-button-next3 {
    width: 34px;
    height: 34px;
    font-size: 18px;
	}
}

/*--------------------------------------------------------------
# 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 16px;
	font-size: 18px;
	font-weight: 500;
	color: var(--default-color);
	background: #F2F0EA;
	backdrop-filter: blur(24px);
	display: inline-flex;
	align-items: center;
	border-radius: 0;
	gap: 10px;
	transition: .3s ease;
}
.btn-accent img {
	height: 20px;
}
.btn-accent:hover {
	color: var(--surface-color);
	background: #f1f1f1;
	padding: 10px 24px;
}
.btn-accent:hover img {
	filter: brightness(0) invert(0);
}

.btn-red {
	padding: 10px 16px;
	border-radius: 0;
	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-red img {
	height: 20px;
}
.btn-red:hover {
	color: var(--contrast-color);
	background:var(--surface-color);
	padding: 10px 24px;
}
.btn-red:hover img {
	filter: brightness(0) invert(1);
}

.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%;
	min-height: 100vh;
	position: relative;
	padding: 134px 50px 50px;
}

.hero h1 {
	margin: 0 0 26px 0;
	color: var(--surface-color);
	font-size: 60px;
	line-height: 72px;
	text-wrap: pretty;
	font-weight: 300;
}
.hero h1 i {
	color: var(--surface-color);
}
.hero h1 i span {
	font-weight: 700;
}
.hero h1 img {
	height: 76px;
}
.hero .box {
	height: 50vh;
	position:relative;
	overflow: clip;
	transition: 0.5s ease;
}
.hero .box img.banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
}
.hero .col-md-6 .box:hover img.banner-img {
	filter: blur(20px);
}
.hero .box .button-position {
	position: absolute;
	left: 34px;
	bottom: 34px;
}

.hero .certified {
	width: 156px;
	padding: 20px 14px;
	background: #00000014;
	backdrop-filter: blur(20px);
	border-radius: 16px;
}

.hero p {
	margin: 5px 0 30px 0;
	color: #c0c0c0;
	font-size: 20px;
	line-height: 34px;
	max-width: 60%;
}

.hero .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	/* border: 1px solid #ffffff3f; */
	background: #ffffff17;
	font-size: 16px;
	color: #fff;
	margin-right: 10px;
	transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 640px) {
	.hero {
    min-height: 100svh;
    padding: 70px 0 40px;
	}
	.hero h1 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
	}
	.hero h1 img {
    height: 34px;
	}
	.hero .certified {
    width: 84px;
    padding: 20px 14px;
    background: #00000014;
    backdrop-filter: blur(20px);
    border-radius: 8px;
	}
}

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

.inner-page .hero {
	min-height: 100%;
	padding: 110px 0 50px;
	overflow: clip;
	background: #FEF2F2;
}
.inner-page .hero::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #00000000, #000000);
	z-index: 0;
}
.inner-page .hero .swiper-container {
	min-height: 400px;
}
.inner-page .hero h1 {
	margin: 0;
	font-size: 46px;
	font-weight: 300;
	line-height: 56px;
}
.inner-page .hero h1 span{
	font-weight: 600;
}
.inner-page .hero h2 {
	margin: 0;
	color: #a4a4a4;
	font-size: 28px;
	font-weight: 400;
}
.inner-page .hero h1 span {
	font-family: var(--accent-font);
}
.inner-page .hero .image {
	height: 200px;
	overflow: clip;
	display: flex;
	align-items: center;
}
.inner-page .hero p {
	margin: 10px 0 0 0;
	color: #737373;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	max-width: fit-content;
}
@media (max-width: 768px) {
	.inner-page .hero {
    min-height: 476px;
    max-height: 40vh;
    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;
	}
}

.clip-box {
  position: relative;
}

.clip-path {
  position: absolute;
  right: 0;
  bottom: -80px;
  width: 100%;
  height: 0;
  padding-top: 100%;
  animation: clipPathAnimation 20s linear infinite; /* Animation for up and down */
}

.clip-path svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.clip-path .icon {
  position: absolute;
  top: 230px;
  opacity: 0.1;
}

.clip-path .icon2 {
  position: absolute;
  top: -230px;
  opacity: 0.1;
}

@keyframes clipPathAnimation {
  0% {
    bottom: -80px; /* Starting position */
  }
  50% {
    bottom: 0; /* Move up */
  }
  100% {
    bottom: -80px; /* Return to starting position */
  }
}


/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# expertise Section
--------------------------------------------------------------*/
.expertise .box {
	position: relative;
	display: grid;
	align-content: flex-end;
	transition: .5s ease;
}
.expertise .col-lg-4:nth-child(1) {
	margin-top: 80px;
}
.expertise .col-lg-4:nth-child(3) {
	margin-top: 120px;
}
.expertise .box .image {
	position: relative;
	min-height: 360px;
	overflow: clip;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	transition: .5s ease;
}
.expertise .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}
.expertise .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s ease;
}
.expertise .box .content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	margin: 0;
	z-index: 2;
}
.expertise .box h2 {
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 16px 0;
	letter-spacing: -1px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: clip;
}
.expertise .box p {
	font-size: 16px;
	color: #727272;
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: clip;
}
.expertise .box h2 img {
	height: 20px;
	float: right;
}
.expertise .box:hover h2 img {
	filter: brightness(0) invert(0);
}

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

/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/

.services ul {
	list-style: none;
	padding: 0;
}
.services ul li {
	padding: 20px 0;
	font-size: 18px;
	font-weight: 500;
	border-bottom: 2px solid #dfdfdf;
	transition: .5s ease;
}
.services ul li:hover {
	padding: 20px;
	background: #f4f4f4;
}
.services .image {
	width: 50vw;
	height: calc(100vh - 80px);
	min-height: 600px;
	position: sticky;
	top: 80px;
}
.services .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 768px) {
	.services .image {
    width: 100%;
    height: 384px;
    position: relative;
    top: auto;
	}
}
/*--------------------------------------------------------------
# service-page Section
--------------------------------------------------------------*/
.service-page .box {
	padding: 24px;
	background: #fef2f2;
	margin-bottom: 24px;
}

/*--------------------------------------------------------------
# Why Section
--------------------------------------------------------------*/
.why .box {
	position: relative;
	display: grid;
	align-content: flex-end;
	transition: .5s ease;
}
.why .box.short {
	position: relative;
	display: flex;
	gap: 20px;
	transition: .5s ease;
}
.why .box .image {
	position: relative;
	height: 180px;
	margin-bottom: 20px;
	overflow: clip;
	display: flex;
	align-items: center;
	transition: .5s ease;
}
.why .box.short .image {
	min-width: 64%;
	margin-bottom: 0;
}
.why .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.why .box .content {
}
.why .box h2 {
	font-size: 24px;
}
.why .box p {
	font-size: 16px;
	color: #585858;
	margin: 0;
	width: 100%;
}
.why .col-md-6:first-child p {
	width: 70%;
}
@media (max-width: 768px) {
	.why .col-md-6:first-child p {
    width: 100%;
	}
	.why .box.short {
    display: block;
	}
	.why .box.short .image {
    margin-bottom: 20px;
	}
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery-sec .lsaGallery a .box {
	overflow: hidden;
	transition: .5s ease;
}
.gallery-sec .lsaGallery a .box img {
	height: 272px;
	width: 100%;
	overflow: hidden;
	object-fit: cover;
	transition: .5s ease;
}
.gallery-sec .lsaGallery a .box:hover img{
	transform: scale(1.05);
	transition: .5s ease;
	filter: grayscale(1);
}

/*--------------------------------------------------------------
# blogs Section
--------------------------------------------------------------*/
.blogs .box {
	position: relative;
	display: grid;
	align-content: flex-end;
	transition: .5s ease;
}
.blogs .col-lg-4:nth-child(1) {
	margin-top: 80px;
}
.blogs .col-lg-4:nth-child(3) {
	margin-top: 120px;
}
.blogs .box .image {
	position: relative;
	min-height: 260px;
	overflow: clip;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	transition: .5s ease;
}
.blogs .box .image::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #ffffff00 70%, #ffffff);
	position: absolute;
	z-index: 1;
}
.blogs .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}
.blogs .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s ease;
}
.blogs .box .content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	margin: 0;
	z-index: 2;
}
.blogs .box h2 {
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 16px 0;
	letter-spacing: -1px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: clip;
}
.blogs .box p {
	font-size: 16px;
	color: #727272;
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: clip;
}
.blogs .box h2 img {
	height: 20px;
	float: right;
}
.blogs .box:hover h2 img {
	filter: brightness(0) invert(0);
}

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .box h2 {
	font-size: 62px;
	font-weight: 400;
	color: #E90126;
}
.stats .box h3 {
	font-size: 26px;
	font-weight: 400;
}
.stats .box p {
	font-size: 16px;
	font-weight: 500;
	color: #8b8b8b;
	width: 34vh;
}
.stats .box hr.line {
	border-top: 2px solid #636363;
	width: 80%;
	opacity: 1;
	margin: 50px 0;
}

@media (max-width: 768px) {
	.stats .box hr.line {
    width: 100%;
    margin: 30px 0;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .box {
	background: #161616;
	border: 1px solid #262626;
	border-radius: 16px;
	padding: 34px;
	display: grid;
	align-content: space-between;
	min-height: 370px;
	transition: .5s ease;
}
.testimonials .box:hover {
	background: #232323;
}
.testimonials .box img {
	width: 58px;
	margin-bottom: 20px;
}
.testimonials .box p {
	font-size: 16px;
	font-weight: 400;
}
.testimonials .box h2 {
	font-size: 18px;
	font-weight: 500;
}
.testimonials .box h3 {
	font-size: 14px;
	font-weight: 400;
	color: #a2a2a2;
	margin: 0;
}


/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/

.gallery  {
	min-height: 400px;
}
.gallery .filter-box {
	position: sticky;
	top: 100px;
	z-index: 10;
	background: #e4e4e480;
	backdrop-filter: blur(20px);
	padding: 10px;
	margin: 0 auto 20px auto;
}
.gallery .lsaGallery a .box {
	transition: .5s ease;
	height: 200px;
	overflow: clip;
}
.gallery .lsaGallery a .box img {
	width: 100%;
	height: 100%;
	overflow: clip;
	object-fit: cover;
	transition: .5s ease;
}
.gallery .lsaGallery a .box:hover img{
	transform: scale(1.05);
	transition: .5s ease;
	filter: grayscale(1);
}
img.lg-object {
	object-fit: cover;
}
.gallery .video-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	margin: 0;
	font-size: 7cap;
	color: #F40000;
	display: grid;
	place-content: center;
	transition: .5s ease;
}
.gallery .video-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background: #fff;
	z-index: -1;
}

/*--------------------------------------------------------------
# Class-list Section
--------------------------------------------------------------*/
.class-list .box {
	position: relative;
	display: grid;
	align-content: flex-end;
}
.class-list .box .image {
	position: relative;
	max-height: 400px;
	border-radius: 16px;
	overflow: clip;
	display: flex;
	align-items: center;
}
.class-list .box .image img {
	object-fit: contain;
}
.class-list .box .image::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #00000000 40%, #000000b0);
	position: absolute;
}
.class-list .box h2 {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px 70px 20px 20px;
	margin: 0;
	font-size: 24px;
}
.class-list .box p {
	font-size: 20px;
	color: #727272;
}

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

.about .content h2 {
	margin-bottom: 24px;
}
.about .content h3 {
	margin-bottom: 24px;
}
.about .content p {
	
}
.about .image img{
	
}

/*--------------------------------------------------------------
# Section Filter tabs
--------------------------------------------------------------*/
.section-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.section-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.section-filters li:hover,
.section-filters li.filter-active {
  color: #000;
  background-color: var(--contrast-color);
}

.section-filters li:first-child {
  margin-left: 0;
}

.section-filters li:last-child {
  margin-right: 0;
}

.box-item {
  position: relative;
  overflow: hidden;
}

.box-item .box-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.box-item .box-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.box-item .box-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.box-item .box-info .preview-link,
.box-item .box-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.box-item .box-info .preview-link:hover,
.box-item .box-info .details-link:hover {
  color: var(--accent-color);
}

.box-item .box-info .details-link {
  right: 14px;
  font-size: 28px;
}

.box-item:hover .box-info {
  opacity: 1;
  bottom: 0;
}
@media (max-width: 768px) {
	.gallery .filter-box {
    top: 80px;
    border-radius: 10px;
    padding: 6px;
	}
	.section-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
	}
  .section-filters li {
    font-size: 14px;
		padding: 8px 12px;
  }
}
/*--------------------------------------------------------------
# Tutor Page
--------------------------------------------------------------*/
.tutors .filter-box {
	position: sticky;
	top: 100px;
	z-index: 10;
	background: #11111180;
	backdrop-filter: blur(20px);
	border-radius: 50px;
	padding: 10px;
	margin: 0 auto 20px auto;
}
.tutors .box {
	position: relative;
	display: grid;
	align-content: flex-end;
}
.tutors .box .image {
	position: relative;
	max-height: 400px;
	border-radius: 16px;
	overflow: clip;
	display: flex;
	align-items: center;
}
.tutors .box .image::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #00000000 40%, #000000b0);
	position: absolute;
}
.tutors .box .image img {
	object-fit: contain;
}
.tutors .box h2 {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px 70px 20px 20px;
	margin: 0;
	font-size: 24px;
	width: 100%;
}
.tutors .box p {
	font-size: 20px;
	color: #727272;
}

@media (max-width: 768px) {
	.tutors .filter-box {
    top: 80px;
    border-radius: 10px;
    padding: 6px;
	}
	.tutors .box .image {
    max-height: 300px;
    border-radius: 10px;
	}
}

/*--------------------------------------------------------------
# Timetable Page
--------------------------------------------------------------*/
.timetable {
	position: relative;
}
.timetable ul.section-filters {
	position: sticky;
	top: 100px;
	z-index: 10;
	background: #11111180;
	backdrop-filter: blur(20px);
	border-radius: 50px;
	padding: 10px;
	margin: 0 auto 20px auto;
}
.timetable .box {
	position: relative;
	display: grid;
	align-content: flex-start;
	gap: 10px;
	background: #161616;
	border: 1px solid #262626;
	border-radius: 16px;
	padding: 20px 20px 0 20px;
	transition: .5s ease;
	min-height: 318px;
}
.timetable .box:hover {
	background: #232323;
}
.timetable .box .title {
	padding: 14px;
	background: #0d0d0d;
	border-radius: 8px;
}
.timetable .box h2 {
	font-size: 18px;
	list-style: none;
	margin: 0;
}
.timetable .box p {
	font-size: 14px;
	color: #727272;
	margin: 10px 0 0 0;
}
.timetable .box h3 {
	font-size: 16px;
	font-weight: 300;
	color: #a4a4a4;
}
.timetable .box h3 span {
	font-size: 42px;
	font-weight: 600;
	color: #fff;
}
.timetable .box ul {
	list-style: none;
	padding: 10px;
	background: #0d0d0d;
	border-radius: 8px;
	font-size: 14px;
}
.timetable .box ul li p {
	font-size: 16px;
	color: #727272;
	border-bottom: 1px solid #292929;
	margin: 0;
	margin-bottom: 14px;
	padding-bottom: 10px;
}
.timetable .box ul li span {
	float: right;
}

/*--------------------------------------------------------------
# Detail Page
--------------------------------------------------------------*/
.details .content h2 {
	font-size: 24px;
	margin-bottom: 34px;
	border-bottom: 1px solid #dedede;
	padding-bottom: 22px;
	border-top: 20px solid #ffffff;
}
.details .content h3 {
	font-size: 22px;
	margin-top: 25px;
	margin-bottom: 10px;
}
.details .content h4 {
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.details .content p {
	font-size: 16px;
	margin: 10px 0;
}
.details .content ul {
	list-style-type: disc;
	margin: 10px 0 10px 20px;
	padding: 0;
}
.details .content li {
	margin-bottom: 8px;
}
.details .title {
	font-size: 20px;
	margin-bottom: 30px;
	background: #ffffff1a;
	border-radius: 5px;
	padding: 10px;
}
.details ul.table {
	list-style: none;
	padding: 0;
}
.details ul.table li {
	padding: 6px 0;
}

/*--------------------------------------------------------------
# Profile Page
--------------------------------------------------------------*/
.profile-image {
	margin-top: -180px;
	position: sticky;
	top: 100px;
	z-index: 3;
}
.profile-image img {
	border-radius: 20px;
}

@media (max-width: 768px) {
	.profile-image {
    margin-top: 0;
	}
}


/*--------------------------------------------------------------
# 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 {
	background: #FEF2F2;
	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);
}