/* 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";
  --heading-font: "Plus Jakarta Sans", sans-serif;
	--accent-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
	/* Global Colors */
  --background-color: #ffffff;
  --default-color: #4D4D4D;
  --contrast-color: #ffffff;
  --heading-color: #2A3440;
  --primary-color: #D22B2B;
	--secondary-color: #f0f0f0;
  --surface-color:rgb(216, 141, 141);
	--base-color: #DFD8F8;
	/* Nav Menu Colors */
  --nav-color: #000000;
  --nav-hover-color: #D22B2B;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #47b2e4;
	/* Smooth scroll */
  scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

/* Custom scroll */
::-webkit-scrollbar {
	width: 8px;
	background: var(--surface-color);
}
::-webkit-scrollbar-thumb {
	background: var(--primary-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(--surface-color);
  text-decoration: none;
  transition: 0.3s;
}

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

.skeleton {
	/* opacity: .7; */
	animation: skeleton-loading 1s linear infinite alternate;
}
@keyframes skeleton-loading {
	0% {
		background: hsl(200, 20%, 70%);
	}
	100% {
		background: hsl(200, 20%, 95%);
	}
}

/* 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(--primary-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: 14px;
    align-items: center;
    background: var(--secondary-color);
    padding: 0 16px;
    border-radius: 8px;
	}

  .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 ease;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    transition: 0.3s ease;
  }
	
	.navmenu li:hover>a:not(.btn)::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 50px;
    background: var(--primary-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 li:hover>a:not(.btn)::after,
  .navmenu .dropdown .active::after,
  .navmenu .dropdown .active:focus::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 .bi {
		margin-left: 8px;
    font-size: 12px;
    line-height: 0;
    color: var(--nav-dropdown-color);
	}

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

  .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(--primary-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-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(--primary-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;
  }
}

@media (max-width: 768px) {
	.mobile-nav-toggle {
    padding: 0 10px 0 0px;
	}
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

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

.header {
  background-color: transparent;
  --heading-color: #ffffff;
  color: var(--default-color);
  padding: 16px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

  .header .navmenu {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: center;
	}
}

@media (max-width: 768px) {
	.header .logo img {
    max-height: 42px;
    height: 100%;
    margin-right: 8px;
	}
}

/* Page Header
------------------------------*/
.index-page .header {
	padding: 20px 0;
}

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


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

/*--------------------------------------------------------------
# Cta Section
--------------------------------------------------------------*/
.cta {
	color: var(--contrast-color);
	background: #0D0D0D;
	padding: 100px 0;
	border: 20px solid var(--contrast-color);
	border-radius: 50px;
	text-align: center;
	overflow: clip;
}
.cta .circles {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	text-align: center;
	justify-content: center;
	top: -50%;
}
.cta .circles img {
	width: 1500px;
	height: 1500px;
	object-fit: cover;
	opacity: .3;
	filter: saturate(0) brightness(1);
}
.cta h2 {
	font-size: 58px;
	line-height: 72px;
	font-weight: 200;
	margin-bottom: 20px;
	color: var(--contrast-color);
}
.cta h2 span {
	font-weight: 700;
}
.cta p {
	font-size: 20px;
	line-height: 30px;
	width: 70%;
	margin: 0 auto;
	color: #9f9f9f;
}

@media (max-width: 768px) {
	.cta.section {
		padding: 20px 10px;
	}
	.cta {
    border: 10px solid var(--contrast-color);
    border-radius: 20px;
	}
	.cta h2 {
    font-size: 24px;
    line-height: 30px;
	}
	.cta p {
    font-size: 16px;
    line-height: 24px;
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	padding: 100px 0 60px;
	position: relative;
	overflow: hidden;
	background: var(--primary-color);
}
.footer .circles {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	text-align: center;
	top: -85%;
	left: -21%;
}
.footer .circles img {
	width: 1500px;
	height: 1500px;
	object-fit: cover;
	opacity: .1;
	filter: saturate(0) brightness(0) invert(1);
}
.footer .logo {
	height: 64px;
	margin-bottom: 50px;
	display: flex;
	width: 100%;
	max-width: 290px;
}
.footer h3 {
	color: #b8b8b8;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 8px;
}
.footer h2 {
	font-size: 32px;
	line-height: 40px;
	font-weight: 500;
	color: var(--contrast-color);
	text-wrap: pretty;
	margin-bottom: 18px;
}
.footer h2 span{
	font-weight: 600;
}
.footer p {
	color: var(--contrast-color);
}
.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: 36px;
	height: 36px;
	border-radius: 5px;
	background: #323233;
	font-size: 18px;
	color: var(--contrast-color);
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--contrast-color);
	background: var(--surface-color);
}
.footer .footer-links h3 {
	color: #b8b8b8;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 8px;
}
.footer .footer-links p {
	color: var(--contrast-color);
	font-weight: 400;
}
.footer .footer-links p a {
	color: var(--contrast-color);
}
.footer .footer-links p a:hover {
	color: #999999;
}
.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(--primary-color);
}

.footer .footer-links ul li {
	padding: 5px 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(--contrast-color);
	font-weight: 500;
	line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #999999;
}

.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: #e2e2e2;
	font-size: 13px;
	font-weight: 300;
}
.footer .credits a {
	color:#999999;
}
.footer-text  img {
	opacity: 0.06;
}

@media (max-width: 768px) {
	.footer {
    padding: 50px 0;
	}
	.footer h2 {
    font-size: 28px;
	}
	.footer .logo {
    height: 48px;
	}
	.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(--primary-color) transparent var(--primary-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(--primary-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;
	z-index: 1;
}

.section-red {
	background: var(--primary-color);
}
.section-bg {
	background: var(--secondary-color);
}
.section-bg-2 {
	background: #fafafa;
}

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

@media (max-width: 768px) {
	section,
	.section {
		padding: 40px 0;
	}
	.icon_arrow {
		display: none;
	}
}
.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;
	margin-bottom: 30px;
}
.section-title h2 {
	font-size: 54px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--heading-color);
}
/* .inner-page .section-title h2 {
	font-size: 36px;
	line-height: 46px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--heading-color);
} */
.section-title h2 span {
	background: linear-gradient(90deg, #01BFEA 0.69%, #33629A 92.47%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}

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

.section-title p {
	color: var(--heading-color);
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.section-title {
    padding-bottom: 10px;
	}
	.section-title h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
	}
	.section-title h2 {
    font-size: 30px;
    line-height: 38px;
	}
	.section-title p {
    color: var(--default-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
		width: 100%;
	}
}

/*--------------------------------------------------------------
# breadcrumbs
--------------------------------------------------------------*/

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

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

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

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

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

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

.swiper-button-prev2:hover,
.swiper-button-next2:hover,
.swiper-button-prev3:hover,
.swiper-button-next3:hover {
	background:#d25656;
	border: 2px solid var(--primary-color);
}

@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 {
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	border-radius: 8px;
	height: 48px;
	gap: 6px;
	transition: .3s ease;
}

.btn-phone {
	border: 1px solid var(--contrast-color);
	color: var(--default-color);
	background: var(--contrast-color);
	font-weight: 600;
	padding: 10px 20px 10px 10px;
	box-shadow: rgb(0 0 0 / 13%) 0px 10px 20px 0px;
}
.btn-phone:hover,
.btn-phone:focus:hover {
	border: 1px solid var(--primary-color);
  color: var(--contrast-color);
	background: var(--primary-color);
}

.btn-accent {
	border: 1px solid var(--primary-color);
	color: var(--contrast-color)!important;
	background: var(--primary-color);
}
.btn-accent:hover {
	border: 1px solid var(--secondary-color);
  color: var(--primary-color)!important;
	background: var(--secondary-color);
}

.btn-def {
	border: 1px solid var(--primary-color);
	color: var(--contrast-color);
	background: var(--primary-color);
}
.btn-def:hover,
.btn-def:focus:hover {
	border: 1px solid var(--primary-color);
  color: var(--accent-color);
	background: var(--primary-color);
}

.btn-link {
	color: var(--heading-color);
	background: transparent;
	border-bottom: 3px solid #000;
	border-radius: 0;
	text-decoration: none;
	padding: 0;
}
.btn-link span {
	background: var(--primary-color);
	font-size: 16px;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	display: grid!important;
	place-content: center;
	transition: .3s ease;
	margin: 0px 0px 0px 0px!important;
}
.btn-link i {
	transform: rotate(-45deg);
	font-size: 22px;
	transition: .3s ease;
	color: #fff;
}
.btn-link:hover span {
	background: var(--contrast-color);
	color: var(--primary-color);
}
.btn-link:hover i {
	transform: rotate(0);
	color: var(--primary-color);
}
.btn-link:hover,
.btn-link:focus:hover {
	border: 1px solid var(--primary-color);
  color: var(--contrast-color);
	background: var(--primary-color);
	padding: 0 10px;
	border-radius: 8px;
}

.btn-back {
	padding: 0px 10px;
	font-size: 12px;
	height: 26px;
	gap: 5px;
	color: var(--contrast-color);
	background: var(--primary-color);
}
.btn-back i {
	font-size: 16px;
	width: 20px;
	height: 20px;
	margin-left: -8px;
	margin-right: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-back:hover {
	background: var(--secondary-color);
	color: var(--primary-color);
}
.btn-round {
	min-width: 42px;	
	height: 42px;
	font-size: 18px;
}
.btn-search {
	border: 1px solid var(--secondary-color);
	color: var(--primary-color);
	background: var(--secondary-color);
	padding: 12px;
	border-radius: 5px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-search:hover {
	border: 1px solid var(--surface-color);
	background: var(--surface-color);
}
.btn-search i {
	font-size: 24px;
	background: transparent;
	color: var(--primary-color);
	margin-right: 0;
}

@media (max-width: 768px) {

}

@media only screen and (max-width: 768px) {
  .aos-animate {
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;

    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;

    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding: 134px 0 54px;
	display: flex;
	align-items: center;
}
.hero .image {
	height: 360px;
	border-radius: 10px;
	overflow: hidden;
}
.hero .circles {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	text-align: center;
	justify-content: center;
	top: -50%;
}
.hero .circles img {
	width: 1500px;
	height: 1500px;
	object-fit: cover;
	opacity: .1;
}
.hero .container {
	z-index: 1;
}
.hero .tag {
	background: var(--secondary-color);
	color: var(--default-color);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	padding: 8px 16px;
	margin-bottom: 10px;
	display: inline-flex;
}
.hero h1 {
	margin: 0 0 16px 0;
	font-size: 58px;
	text-wrap: pretty;
	font-weight: 400;
}
.hero h1 span {
	background: linear-gradient(90deg, #01BFEA 0.69%, #33629A 92.47%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}
.hero p {
	margin: 5px 0 30px 0;
	font-size: 20px;
	line-height: 30px;
}
@media (max-width: 640px) {
	.hero {
    min-height: 100svh;
    padding: 70px 0 40px;
	}
	.hero h1 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
	}
	.hero p {
    margin: 5px 0 20px 0;
    font-size: 16px;
    line-height: 24px;
	}
	.hero .image {
    height: auto;
	}
	.hero .circles {
    top: -48%;
    left: -48%;
    overflow: visible;
	}
	.hero .circles img {
    width: 800px;
    height: 800px;
    object-fit: contain;
    opacity: .5;
	}
}

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

.inner-page .hero {
	min-height: 360px;
	height: auto;
	padding: 110px 0 50px;
	overflow: clip;
	display: flex;
	align-items: end;
}
.inner-page .hero::before {
	/* content: ""; */
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #00000000, #000000);
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.inner-page .hero .circles {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	text-align: center;
	justify-content: center;
	top: -120%;
}
.inner-page .hero .container {
	z-index: 2;
}
.inner-page .hero h1 {
	margin: 0;
	font-size: 44px;
	font-weight: 400;
}
.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 p {
    margin: 10px auto 28px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    max-width: fit-content;
    text-wrap: pretty;
    text-align: center;
}
.inner-page .hero p i {
	margin-right: 10px;
	color: var(--primary-color);
}
@media (max-width: 768px) {
	.inner-page .hero {
    min-height: 300px;
    max-height: 100%;
    padding: 80px 0 30px;
	}
	.inner-page .hero p {
    font-size: 14px;
    line-height: 20px;
	}
	.inner-page .hero h1 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
	}
	.inner-page .hero h2 {
    font-size: 18px;
	}
	.inner-page .hero .image {
    margin: 20px 0;
	}
}

.page img {
	border-radius: 10px;
	margin-bottom: 16px;
}
.page h2 {}
.page h3 {}
.page h4 {}

.alpha {
	background: var(--secondary-color);
}

.alpha .image {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.alpha .image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.alpha .content {
    position: sticky;
    top: 100px;
}
.alpha h2 {
	font-size: 36px;
	line-height: 48px;
	font-weight: 600;
	margin-bottom: 20px;
}
.alpha h2 span {
	background: linear-gradient(90deg, #01BFEA 0.69%, #33629A 92.47%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}
.alpha p {
	color: var(--default-color);
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.alpha h2 {
    font-size: 24px;
    line-height: 32px;
	}
	.alpha p {
    font-size: 16px;
    line-height: 24px;
	}
}

/*--------------------------------------------------------------
# blogs Section
--------------------------------------------------------------*/
.blogs .box {
	position: relative;
	background: var(--contrast-color);
	border-radius: 10px;
	padding: 10px;
	height: 100%;
	transition: .3s ease;
}
.blogs .box:hover {
	background: var(--secondary-color);
}
.blogs .box .image {
	border-radius: 16px;
	height: 260px;
	margin-bottom: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.blogs .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blogs .box h2 {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blogs .box p {
	font-size: 16px;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*--------------------------------------------------------------
# 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 {
	background: var(--primary-color);
}
.testimonials .section-title h2,
.testimonials .section-title p {
	color: var(--contrast-color);
}
.testimonials .box {
	background: #D74545;
	border-radius: 16px;
	padding: 34px;
	display: grid;
	align-content: space-between;
	min-height: 240px;
	transition: .5s ease;
}
.testimonials .box:hover {
	background:#d25656;
}
.testimonials .box svg {
	margin-bottom: 20px;
}
.testimonials .box p {
	color: var(--contrast-color);
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}
.testimonials .box h2 {
	color: var(--contrast-color);
	font-size: 20px;
	font-weight: 500;
}
.testimonials .box h3 {
	color: var(--contrast-color);
	opacity: 0.7;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 14px;
}
.testimonials .box .star i {
	color: #FABD1B;
	font-size: 22px;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq {
	background: var(--secondary-color);
}
.faq .accordion-item {
	border: none;
	margin-bottom: 10px;
	border-radius: 10px;
}
.faq .accordion-button {
	border-radius: 10px!important;
	background: #fff !important;
	color: #000;
	border: none;
	font-size: 18px;
	font-weight: 500;
	padding: 20px;
	box-shadow: none;
}
.faq .accordion-button:focus {
	box-shadow: none;
}
.faq .accordion-button.collapsed {
	border-radius: 10px!important;
	background: var(--base-color);
	color: #000;
	border: none;
}
.faq .accordion-button span {
	color: var(--secondary-color);
	font-size: 18px;
	font-weight: 600;
	margin-right: 20px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
	background: #F0F0F0;
}
.about span {
	color: var(--primary-color);
	font-size: 16px;
	margin: 50px 0 20px;
	display: block;
}
.about .box {
	padding: 50px;
	background: var(--contrast-color);
	border-radius: 5px;
}
.about .box h2 {
	font-size: 30px;
	margin-bottom: 18px;
	font-weight: 600;
}
.about .box p {
	font-size: 18px;
	line-height: 30px;
}

@media (max-width: 768px) {
	.about span {
		margin: 0 0 20px;
	}
	.about .box {
    padding: 28px;
	}
	.about .box p {
    font-size: 16px;
    line-height: 24px;
	}
}

/*--------------------------------------------------------------
# Jobs
--------------------------------------------------------------*/
.jobs-cat .box {
	position: relative;
	border-radius: 10px;
	padding: 16px;
	background: var(--contrast-color);
	transition: .3s ease;
	display: grid;
	align-content: space-between;
	height: 100%;
}
.jobs-cat .location {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	gap: 5px;
}
.jobs-cat .location i {
	
}
.jobs-cat .box .pay {
	display: flex;
	align-items: start;
	gap: 10px;
}
.jobs-cat .box .pay .rate {
	background: var(--secondary-color);
	border-radius: 8px;
	padding: 10px;
	display: grid;
	width: 100%;
}
.jobs-cat .box .pay p {
	margin-bottom: 8px;
	font-size: 13px;
	color: #000;
	font-weight: 500;
}
.jobs-cat .box .pay span {
	
}
.jobs-cat .box .pay .link {
	background: var(--secondary-color);
	border-radius: 8px;
	padding: 10px;
	width: 71px;
	height: 71px;
	display: grid;
	place-content: center;
	font-size: 40px;
	position: relative;
	transition: .3s ease;
}
.jobs-cat .box .pay .link i {
	transform: rotate(-45deg);
	transition: .3s ease;
}
.jobs-cat .box:hover .pay .link i {
	transform: rotate(0deg);
}
.jobs-cat .box hr {
	margin: 10px 0;
}
.jobs-cat .box h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0;
}
.jobs-cat .box a.stretched-link {
	position: absolute;
	width: 100%;
	height: 100%;
}
.jobs-cat .view {
	display: grid;
	justify-items: end;
}
.jobs-cat .view .link {
	background: var(--secondary-color);
	border-radius: 8px;
	padding: 10px;
	width: 71px;
	height: 71px;
	display: grid;
	place-content: center;
	font-size: 40px;
	position: relative;
	transition: .3s ease;
}
.jobs-cat  .view .link i {
	transform: rotate(-45deg);
	transition: .3s ease;
}
.jobs-cat .view .btn-lg {
	height: 71px;
	background: var(--primary-color);
	width: 100%;
	color: var(--contrast-color);
	font-size: 18px;
	justify-content: center;
}
.jobs-cat .view .btn-lg:hover {
	background: #d22b2bd9;
}

@media (max-width: 768px) {

}

.jobs-sec .box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.jobs-sec .box ul li {
	display: flex;
	align-items: center;
	margin-bottom: 6px;
	font-size: 16px;
	font-weight: 500;
	color: var(--bs-black);
}
.jobs-sec .box ul li:last-child {
	padding: 0;
}
.jobs-sec .box ul li i {
	color: var(--primary-color);
	border-radius: 50px;
	width: 26px;
	height: 26px;
	margin-right: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.jobs .left-filter {
	position: sticky;
	top: 60px;
}
.jobs .left-filter .filter-box {
	background: var(--contrast-color);
	border-radius: 10px;
	padding: 10px;
	min-height: 130px;
	transition: 0.3s ease;
	max-height: calc(100vh - 115px);
	overflow: auto;
}
.jobs .left-filter .filter-box h5 {
	padding: 6px;
	font-size: 16px;
	background: var(--primary-color);
	color: var(--contrast-color);
	border-radius: 6px;
}
.job-detail h2 {
	font-size: 36px;
	line-height: 48px;
	font-family: var(--accent-font);
	font-weight: 500;
	margin-bottom: 20px;
}
.job-detail .box .det-box {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	border-radius: 6px;
}
.job-detail .box i {
	z-index: 1;
	color: var(--contrast-color);
	background: var(--primary-color);
	border-radius: 5px;
	height: 30px;
	width: 30px;
	min-width: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.job-detail .box span {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 600;
	text-indent: 0px;
	padding-left: 10px;
}

.job-detail .form-box {
	background: var(--surface-color);
	padding: 16px;
	border-radius: 10px;
}
.job-detail .form-box h2 {
	font-size: 24px;
	margin-bottom: 20px;
}


/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/
.services .item.title,.services .item.title:hover {
    background: var(--primary-color);
    color: #ffff;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    padding: 14px 20px;
}
.services .item {
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	border-radius: 5px;
	background: var(--secondary-color);
	margin-bottom: 20px;
	min-height: 234px;
	position: relative;
}
.services .item:hover {
	background:#f9e0d7;
}
.services .item .icon svg {
	width: 80px;
	height: 80px;
}
.services .item h2 {
	font-size: 22px;
	color: #000;
	font-weight: 500;
}
.services .item p {
	margin: 0;
}
.services .item.view {
	display: grid;
	justify-items: end;
	align-content: space-between;
}
.services .item.view .link {
	background: var(--contrast-color);
	border-radius: 8px;
	padding: 10px;
	width: 71px;
	height: 71px;
	display: grid;
	place-content: center;
	font-size: 40px;
	position: relative;
	transition: .3s ease;
}
.services .item.view .link i {
	transform: rotate(-45deg);
	transition: .3s ease;
}
.services .item.view .btn-lg {
	height: 71px;
	background: var(--primary-color);
	width: 100%;
	color: var(--contrast-color);
	font-size: 18px;
	justify-content: center;
}
.services .item.view .btn-lg:hover {
	background: #d22b2bd9;
}
.services .item .arrow {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 40px;
    right: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    display: grid;
    place-content: center;
    opacity: 0;
	transition: 0.3s ease;
}
.services .item .arrow i {
    font-size: 20px;
    rotate: 45deg;
}
.services .item:hover .arrow {
    top: 10px;
    right: 10px;
    opacity: 1;
}
.service-page .services .item {
    display: flex;
    align-items: center;
    flex-direction: initial;
    min-height: auto;
}

@media (max-width: 768px) {
	.services .box h2 {
		font-size: 20px;
	}
}

.services.main .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: auto;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# 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: 5px;
	border: 2px solid #d22b2b1c;
}
.form-floating>label {
	color: rgba(var(--bs-body-color-rgb),.65);
}

.form .contact-details {
	background: #FEF2F2;
	padding: 20px;
	border-radius: 10px;
}
.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 p a {
	color: var(--surface-color);
}
.form .contact-details p a:hover {
	color: var(--default-color);
}
.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: 20px;
	color: var(--primary-color);
	transition: 0.3s;
	border-radius: 5px;
}
.form .contact-details .social-links a:hover {
	color: var(--contrast-color);
	background: var(--default-color);
}

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

/*--------------------------------------------------------------
# Terms
--------------------------------------------------------------*/
.terms ul.table {
	background: #FEF2F2;
	padding: 20px;
	border-radius: 10px;
	list-style: none;
}
.terms ul.table li {
	margin-bottom: 8px;
}
.terms ul.table li:last-child {
	margin-bottom: 0;
}