/* Global */
:root {
  --default-font: "Poppins", 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: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
	/* Global Colors */
  --background-color: #ffffff;
  --default-color: #4D4D4D;
  --contrast-color: #ffffff;
  --dark: #030409;
  --heading-color: #030409;
  --accent-color: #00AEED;
	--light-accent: #F5F3FD;
	--light-bg: #EBF9FE;
  --surface-color: #33629A;
	--base-color: #DFD8F8;
	--section-bg: #EFF3FE;
	/* Nav Menu Colors */
  --nav-color: #030409;
  --nav-hover-color: #00AEED;
  --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;
}

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

/* Custom scroll */
::-webkit-scrollbar {
	width: 8px;
	background: #111111;
}
::-webkit-scrollbar-thumb {
	background: #D116C2;
	border-radius: 50px;
}
#google_translate_element {
    position: absolute;
    z-index: 1000;
    float: right;
    right: 0;
    top: 0;
}
@media (max-width: 768px) {
	#google_translate_element {
	    top: auto;
        bottom: -24px;
	}
}
.skiptranslate iframe {
    visibility: hidden!important;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	position: relative;
  color: var(--default-color);
  background-color: #fff;
  font-family: var(--default-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(--default-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--contrast-color);
  color: var(--dark);
  padding: 16px 0;
  transition: all 0.5s;
  z-index: 997;
}
.hidden-head {
  transform: translateY(-100%);
}
.header .logo {
    display: flex;
    align-items: start;
    width: fit-content;
}
.header .logo img {
    width: 100%;
    max-height: 64px;
    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(--contrast-color);
	background: #ffffff31;
	border: 2px solid #ffffff14;
	backdrop-filter: blur(50px);
	font-size: 16px;
	padding: 10px 24px;
	height: 48px;
	margin: 0 8px 0 0;
	border-radius: 50px;
	transition: 0.3s;
}

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

.btn-menu,
.btn-menu:focus {
    position: relative;
	color: var(--dark);
	font-size: 24px;
	display: flex;
	margin-right: 5px;
	align-items: center;
	justify-content: center;
	height: 48px;
	width: 48px;
	border-radius: 10px;
	z-index: 1001;
	cursor: pointer;
	transition: 0.3s;
}
.btn-menu:last-child,
.btn-menu:focus:last-child {
	margin-right: 0px;
}
.btn-menu:hover,
.btn-menu:focus:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), transparent 45%);
}
.btn-menu span {
    position: absolute;
    right: -4px;
    top: -4px;
    background: blue;
    color: var(--contrast-color);
    width: 20px;
    height: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media (max-width: 1199px) {
    .header .logo {
        order: 1;
    }
    .header .account {
        order: 2;
        padding: 0 10px;
    }
    .header .navmenu {
        order: 3;
        display: grid;
        align-content: center;
    }
}

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

/* Page Header
------------------------------*/
.index-page .header,
.inner-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Page Header on Scroll
------------------------------*/
.index-page.scrolled .header,
.inner-page.scrolled .header {
	background: #ffffffb0;
	backdrop-filter: blur(24px) grayscale(1);
	/*mix-blend-mode: difference;*/
}


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

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

	.navmenu ul {
    margin: 0;
    padding: 0 10px;
    display: flex;
    list-style: none;
		gap: 2px;
    align-items: center;
    border-radius: 100px;
	}

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--dark);
    padding: 12px;
    font-size: 16px;
    font-family: var(--nav-font);
    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: 20px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

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

  .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: 6px 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 {
    cursor: pointer;
    color: var(--dark);
    background: #ffffff31;
    border: 2px solid #ffffff14;
    backdrop-filter: blur(50px);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    border-radius: 50px;
    z-index: 1001;
    cursor: pointer;
    transition: 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(--nav-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 Footer
--------------------------------------------------------------*/
.footer {
	padding-top: 100px;
	padding-bottom: 50px;
	position: relative;
	overflow: hidden;
	background: var(--contrast-color);
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--default-color);
	background: url(../img/background.svg) no-repeat center center;
	background-size: cover;
	opacity: 0.04;
	z-index: -1; 
}
.footer h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    text-wrap: pretty;
    margin-bottom: 24px;
    color: var(--dark);
}
.footer .btn-accent i,
.footer .btn-accent:hover i {
    transform: none;
}
.footer .btn-accent:hover {
    background: var(--accent-color);
}
.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;
  border-radius: 10px;
	background: var(--accent-color);
	font-size: 16px;
	color: #fff;
  transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--dark);
	border-color: var(--accent-color);
}
.footer .box {
    border-radius: 20px;
    padding: 30px;
    background: var(--light-bg);
}
.footer .logo {
	display: flex;
	width: 100%;
	max-width: 240px;
}
.footer .footer-links h4 {
	color: #5f5f5f;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}
.footer .footer-links p {
    color: var(--dark);
	font-weight: 300;
}
.footer .footer-links iframe {
	width: 100%;
	max-width: 280px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 2px solid #fff;
}

.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: 10px 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(--dark);
  line-height: 1;
	text-transform: uppercase;
}

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

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

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

.footer .copyright ,
.footer .credits {
	color: #727272;
  font-size: 14px;
}
.footer-text p {
	text-align: center;
	color: #fff;
	font-size: 9.5vw;
	font-weight: 700;
	opacity: .1;
	overflow: hidden;
	margin-bottom: -90px;
}

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

/*--------------------------------------------------------------
# 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-image: linear-gradient(to right, #00AEED 0%, #217DC0  100%);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--default-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 {
  padding: 100px 0;
  scroll-margin-top: 88px;
	position: relative;
  overflow-x: clip;
}

.section .image {
    border-radius: 20px;
    overflow: hidden;
}

.bg-section {
    background: var(--light-bg);
}

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

@media (max-width: 768px) {
	section,
	.section {
		padding: 40px 0;
	}
	.section .sticky-top {
	    position: relative;
	    top: 0px!important;
	}
}
.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 {
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
    font-size: 40px;
    line-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.section-title h2 img {
    width: 42px;
    margin-top: -4px;
}
.section-title h3 {
  font-size: 26px;
	font-family: var(--accent-font);
	font-style: italic;
  font-weight: 500;
	margin-bottom: 20px;
}
.section-title p {
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    color: var(--dark);
}
.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: 26px;
        line-height: 28px;
	}
	.section-title p {
        font-size: 16px;
        line-height: 24px;
    }
    .section-title h2 img {
        width: 34px;
        margin-top: -4px;
    }
}

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

.swiper.class-swipe,
.swiper.testi-swipe {
	width: 100vw;
	overflow: visible;
}

@media (max-width: 640px) {
	.swiper.class-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-default {
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    color: var(--dark);
    background-image: linear-gradient(to right, #ebebeb 0%, #bababa 50%, #ebebeb 100%);
    display: inline-flex;
    align-items: center;
    background-size: 200% auto;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--accent-font);
	transition: 0.5s;
	width: fit-content;
	overflow: hidden;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
    background-position: right center; /* change the direction of the change here */
    color: var(--dark);
    text-decoration: none;
}
.btn-default i {
    font-size: 22px;
	display: grid;
	place-content: center;
	transform: rotate(45deg);
	transition: 0.3s;
}
.btn-default:hover i {
	transform: rotate(90deg);
}

.btn-accent {
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    color: var(--contrast-color);
    background-image: linear-gradient(to right, #217DC0 0%, #00AEED 50%, #217DC0  100%);
    display: inline-flex;
    align-items: center;
    background-size: 200% auto;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--accent-font);
	transition: 0.5s;
	overflow: hidden;
	width: fit-content;
}
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.btn-accent i {
    font-size: 22px;
	display: grid;
	place-content: center;
	transform: rotate(45deg);
	transition: 0.3s;
}
.btn-accent:hover i {
    color: var(--contrast-color);
	transform: rotate(90deg);
}

.btn-accent i.bxs-home-smile {
    transform: none;
}
.btn-accent:hover i.bxs-home-smile {
    transform: none;
}
.btn-submit {
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    color: var(--contrast-color);
    background-image: linear-gradient(to right, #217DC0 0%, #00AEED 50%, #217DC0  100%);
    display: inline-flex;
    align-items: center;
    background-size: 200% auto;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--accent-font);
	transition: 0.5s;
	overflow: hidden;
}
.btn-submit:hover,
.btn-submit:focus,
.btn-submit:active {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.btn-submit i {
    font-size: 22px;
	display: grid;
	place-content: center;
	transform: rotate(45deg);
	transition: 0.3s;
}
.btn-submit:hover i {
    color: var(--contrast-color);
	transform: rotate(90deg);
}

.btn-search {
    font-size: 28px;
    color: var(--contrast-color);
    background-image: linear-gradient(to right, #00AEED, #217DC0);
    border-radius: 10px;
    width: 58px;
    height: 58px;
	transition: 0.3s;
}
.btn-search:hover {
    color: var(--contrast-color);
    background-image: linear-gradient(to right, #217DC0, #00AEED);
}

.btn-open, .btn-open:focus {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--contrast-color);
	background: #ffffff31;
	border: 2px solid #ffffff14;
	backdrop-filter: blur(50px);
	font-size: 16px;
	padding: 10px 24px;
	height: 48px;
	margin: 0 8px 0 0;
	border-radius: 50px;
	transition: 0.3s;
}
.btn-open:hover,
.btn-open:focus:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), transparent 45%);
}
.btn-open i {
	font-size: 22px;
	transition: .5s ease;
}
.btn-open:hover i {
	transform: rotate(-45deg);
}
.btn-back {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	margin: 0;
	border-radius: 50px;
	font-size: 12px;
	width: fit-content;
	color: #fff;
	background: var(--accent-color);
	backdrop-filter: blur(10px);
}
.btn-back:hover,
.btn-back:focus:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), transparent 45%);
}
.btn-default.no-rotate i,
.btn-default.no-rotate:hover i {
	transform: rotate(0deg);
}

@media (max-width: 768px) {
	.btn-default,
	.btn-open {
        gap: 10px;
        font-size: 14px;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding: 130px 0 0;
	align-content: end;
	direction: ltr;
}

.hero::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    min-height: 60vh;
    background: linear-gradient(transparent 10%, #111111a6 80%);
}
.hero .swiper-banner {
    width: 100%;
    height: 600px;
    min-height: 60vh;
    padding: 60px 0;
    margin-bottom: unset;
    position: relative;
    display: grid;
    align-content: end;
}
.hero .swiper-wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    height: 100%;
}
.hero .swiper-banner + .swiper-banner {
  margin-top: 30px;
}

.hero .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .swiper-pagination {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    height: 5px;
}
.hero .swiper-pagination-bullet {
    width: 100%;
    height: 5px;
    border-radius: 0;
    opacity: 1;
    margin: 0!important;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.hero .swiper-pagination-bullet::before {
  content: "";
  display: block;
    background: transparent;
	opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero .swiper-pagination-bullet-active {
  background-color: #313131;
}
.hero .swiper-pagination-bullet-active::before {
  background-color: white;
  border-radius: 50px;
  -webkit-animation: slide-progress 4s cubic-bezier(0.3, 0, 0.3, 1) forwards;
          animation: slide-progress 4s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}
.hero .swiper-paused .swiper-pagination-bullet-active::before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.hero .content-wrapper {
	position: relative;
	z-index: 3;
}
.hero h1 {
    margin: 0 0 10px 0;
    color: var(--dark);
    font-family: var(--default-font);
    letter-spacing: -1px;
    font-size: 54px;
    font-weight: 500;
    line-height: 68px;
}
.hero h1 span {
  font-family: var(--accent-font);
  font-style: italic;
}
.hero h2 {
    color: #777777;
    font-family: var(--accent-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 44px;
    letter-spacing: 0px;
}

.hero p {
	margin: 5px 0 30px 0;
	color: #c0c0c0;
	font-size: 20px;
	line-height: 34px;
	max-width: 60%;
}
.hero .form-group {
    border-radius: 10px;
    padding: 10px;
    background: #ffffff29;
    backdrop-filter: blur(10px);
    gap: 10px;
}
.hero .form-group h3 {
    color: #fff;
    letter-spacing: -1px;
    font-size: 24px;
    margin-bottom: 14px;
}
/*.hero .form-group input {*/
/*    padding-left: 20px;*/
/*    background: #e2e2e2;*/
/*    color: var(--dark);*/
/*    border-radius: 5px!important;*/
/*    border: none;*/
/*    max-width: 500px;*/
/*}*/
/*.hero .form-group input::placeholder {*/
/*    color: #7a7a7a;*/
/*    opacity: 1;*/
/* }*/
.hero .form-group button {
    border-radius: 5px!important;
    border: none;
}

.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: auto;
        padding: 100px 0 0;
    }
    .hero h1 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 16px;
    }
	.hero h2 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
        letter-spacing: 0;
    }
	.cd-headline.slide p {
	    font-size: 36px;
	    line-height: 30px;
	}
	.hero p {
	    font-size: 16px;
	    line-height: 20px;
	    margin-bottom: 16px;
	    max-width: 100%;
	}
	.hero .swiper-pagination-bullet {
	    width: 25%;
	    height: 5px;
	    margin: 0!important;
	    padding: 0;
	}
	.hero .swiper-pagination {
	    display: flex;
	    gap: 4px;
	    margin-bottom: 20px;
	}
	.hero .swiper-wrapper {
        position: relative;
        z-index: 1;
        top: auto;
        height: 100%;
    }
	.hero .swiper-banner {
        height: auto;
        min-height: 25vh;
        padding: 30px 0 16px;
        display: block;
    }
    .hero .swiper-pagination {
        display: none;
    }
    .hero .input-group input {
        padding-left: 14px;
        font-size: 14px;
    }
    .hero .input-group button {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Inner Hero
--------------------------------------------------------------*/
.inner-page .header {
    background-color: transparent;
}
.inner-page .hero {
    height: auto;
    min-height: auto;
    max-height: 400px;
    padding: 150px 0 50px;
    overflow: clip;
    /*background: url('../img/inner-banner-main.jpg') center center;*/
    background-size: cover;
}
.inner-page .hero::before {
	content: none;
}
.inner-page .hero .container {
    z-index: 1;
}
.inner-page .hero .swiper-banner {
	min-height: 400px;
	max-height: 40vh;
}
.inner-page .hero .star {
    width: 44px;
    margin-right: 10px;
    margin-top: -14px;
}
.inner-page .hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: 46px;
    font-weight: 500;
    line-height: 58px;
    letter-spacing: -1px;
}
.inner-page .hero h2 {
    margin: 10px 0;
	color: var(--dark);
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
}
.inner-page .hero h1 span {
	font-family: var(--accent-font);
}
.inner-page .hero p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    max-width: fit-content;
}
.inner-page .section-title {
    padding-bottom: 0;
}
/*.inner-page .blog-hero .breadcrumbs ol,*/
/*.inner-page .course-hero .breadcrumbs ol {*/
/*    background: #ffffff78;*/
/*    padding: 4px 10px;*/
/*}*/
.inner-page .blog-hero,
.inner-page .course-hero {
    height: auto;
    min-height: 510px;
    padding: 150px 0 50px;
}
.inner-page .blog-hero h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    text-wrap-style: pretty;
}
.inner-page .blog-hero h2,
.inner-page .course-hero h2 {
    font-size: 18px;
    opacity: .7;
    position: relative;
    z-index: 2;
}
.inner-page .course-hero h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    position: relative;
    z-index: 2;
    text-wrap-style: pretty;
}
.inner-page .blog-hero::before {
    backdrop-filter: blur(40px);
}
@media (max-width: 768px) {
    .inner-page .hero {
        min-height: auto;
        height: auto;
        max-height: none;
        padding: 140px 0 30px;
    }
    .inner-page .hero p {
        font-size: 14px;
        line-height: 20px;
    }
    .inner-page .hero .star {
        width: 34px;
        margin-right: 6px;
        margin-top: -10px;
    }
	.inner-page .hero h1 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 14px;
	}
	.inner-page .hero h2 {
	    font-size: 16px;
	    line-height: 24px;
	}
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.content .title h3 {
    font-size: 22px;
    line-height: 34px;
}
.content .title p {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -1px;
    color: var(--contrast-color);
}
.content img {
    border-radius: 20px;
}
.content h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 10px;
    font-family: var(--accent-font);
    color: var(--contrast-color);
}
.content p,
.content ul li {
    color: #d6d6d6;
}
.content p {
    text-align: justify;
}
.content .image {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .content h2 {
        font-size: 24px;
        line-height: 34px;
        margin-top: 24px;
    }
    .content .title p {
        font-size: 16px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Viewport page, Logn, Register, Thankyou
--------------------------------------------------------------*/

.viewport-page .hero {
    min-height: 100vh;
    padding: 110px 0;
    display: grid;
    align-content: center;
}
.viewport-page .hero::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 110vh;
    min-height: 60vh;
    background: linear-gradient(transparent 10%, #111111a6 80%);
}
.viewport-page .hero .container {
    z-index: 3;
}
.viewport-page .hero h1 {
    font-size: 40px;
    line-height: normal;
    color: var(--contrast-color);
}
.viewport-page .hero p {
    margin: 10px 0;
    color: #adadad;
    font-size: 18px;
    line-height: normal;
    max-width: 100%;
    font-style: italic;
}

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

.breadcrumbs {
	display: flex;
	gap: 5px;
	margin-top: 10px;
    position: relative;
    z-index: 2;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    border-radius: 50px;
    font-size: 12px;
    width: fit-content;
    background: #7e7e7e50;
    padding: 4px 10px;
}

.breadcrumbs ol li {
	/*color: var(--contrast-color);*/
}

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

.breadcrumbs ol li a {
  color: var(--contrast-color);
}

.breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 5px;
  color: #8d8d8d;
}

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

.gallery .gry_card {
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    height: 100%;
}
.gallery .gry_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery .gry_card img {
        height: 100px;
    }
}
/*--------------------------------------------------------------
# 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: var(--dark);
  background-color: var(--accent-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;
  }
}

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

.about h2 {
    font-size: 30px;
    font-weight: 400;
    color: #858585;
}
.about h3 {
    font-size: 22px;
    line-height: 34px;
}
.about p {
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -1px;
    font-weight: 500;
    color: var(--dark);
}
.about img.stroke {
    position: absolute;
    width: 350px;
    top: 0%;
    left: 8%;
    z-index: -1;
}
.inner-page .about p {
    font-size: 18px;
    color: var(--dark);
}

@media (max-width: 768px) {
    .about h3 {
        font-size: 18px;
        line-height: 28px;
    }
    .about h2 {
        font-size: 22px;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }
    .about p {
        font-size: 24px;
        line-height: 36px;
    }
    .about img.stroke {
        opacity: .5;
    }
}

/*--------------------------------------------------------------
# Course
--------------------------------------------------------------*/

.course .box {
    position: relative;
    transition: .5s ease;
    background: #d3f0fa;
    padding: 10px;
    /*margin-bottom: 40px;*/
    border-radius: 10px;
    height: 100%;
}
/*.course .box.last {*/
/*    padding: 24px;*/
/*    padding-right: 140px;*/
/*    height: 254px;*/
/*    border-radius: 20px;*/
/*    display: grid;*/
/*    align-content: end;*/
/*    overflow: hidden;*/
/*    width: 100%;*/
/*    margin-bottom: 20px;*/
/*    position: relative;*/
/*    transition: .5s ease;*/
/*    background-image: linear-gradient(to right, #00AEED, #217DC0);*/
/*}*/
.course .box.last {
    padding: 10px;
    border-radius: 10px;
    display: grid;
    align-content: end;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    transition: .5s ease;
    background-image: linear-gradient(to right, #00AEED, #217DC0);
}
.course .box.last p {
    color: var(--contrast-color);
}
.course .box .image {
    padding: 24px;
    height: 254px;
    border-radius: 20px;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    transition: .5s ease;
}
.course .box .image:after {
    content: "";
    background: linear-gradient(transparent 20%, #1a5c8d 80%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.course .box .price,
.course .box .date,
.course .box .location {
    /*opacity: 0;*/
	transition: .5s ease;
}
.course .box:hover .image:after,
.course .box:hover .price,
.course .box:hover .date,
.course .box:hover .location {
    opacity: 1;
}
.course .box .price {
    position: relative;
    font-size: 26px;
    font-weight: 600;
    color: var(--contrast-color);
    z-index: 1;
	transition: .5s ease;
}
/*.course .box .title {*/
/*    font-size: 24px;*/
/*    line-height: 30px;*/
/*    letter-spacing: -1px;*/
/*    transition: .5s ease;*/
/*}*/
.course .box .title {
    font-size: 20px;
    line-height: 26px;
    transition: .5s ease;
    margin-bottom: 16px;
}
.course .box .period {
    display: flex;
    color: #717171;
}
.course .box .period i {
    margin-right: 10px;
    font-size: 18px;
}
.course .box .date,
.course .box .location {
    font-size: 14px;
    /*color: var(--contrast-color);*/
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
	transition: .5s ease;
}
.course .tag {
    width: 68px;
    height: 68px;
    transition: .5s ease;
}
.course .box .course-id {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 4px 8px;
    margin-bottom: 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.course h4 {
    color: var(--contrast-color);
}
.course .frame {
    padding: 16px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
}
.course .frame .list-group-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--accent-color);
    color: var(--contrast-color);
}
.course .frame .list-group-item:last-child {
    padding-bottom: 0;
}
.course img {
    border-radius: 20px;
}
.course .desc ,
.course .tab-content p {
    font-size: 18px;
    color: #888888;
}
.course .nav-pills {
    gap: 10px;
}
.course .nav-pills .nav-link {
    border-radius: 0;
    color: var(--heading-color);
    border-bottom: 2px solid var(--accent-color);
    padding: 8px 0;
    font-size: 18px;
    text-align: left;
    min-width: 180px;
    transition: .5s ease;
}
.course .nav-pills .nav-link:hover ,
.course .nav-pills .nav-link.active {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-bottom: 2px solid var(--accent-color);
    padding: 8px 12px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .course .box.last {
        padding: 24px;
        padding-right: 24px;
    }
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

.quantity_btn {
    border-radius: 50px;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 9px 10px;
    background-color: #4e57b2;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
}
.btn-cart,
.btn-download,
.btn-technical {
    padding: 12px 16px;
    width: 100%;
    text-align: unset;
    border-radius: 10px;
    color: var(--contrast-color);
    background: #80B635;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--accent-font);
    letter-spacing: -1px;
    transition: 0.3s;
}
.btn-download {
    background: #808080;
}
.btn-technical {
    background: #008bbf;
}
.btn-cart i,
.btn-download i,
.btn-technical i {
    font-size: 22px;
}
.btn-cart:hover,
.btn-download:hover,
.btn-technical:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
}

/*--------------------------------------------------------------
# Accreditation
--------------------------------------------------------------*/
.accreditation .row.sec-box {
    color: var(--default-color);
    background: linear-gradient(270deg, #217dc0b8 0%, #00AEED 100%), url(../img/about/about2.jpg) lightgray 50% / cover no-repeat;
    padding: 80px;
    border-radius: 24px;
}
.accreditation .box {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.accreditation .box p {
    font-size: 18px;
    line-height: 28px;
    color: var(--dark);
}
.accreditation .section-title h2,
.accreditation .section-title p {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog .box {
    position: relative;
	transition: .5s ease;
}
.blog .box .image {
    padding: 10px;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative;
    transition: .5s ease;
}

.blog .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: .5s ease;
}
.blog .box:hover .image {
    background-size: 110%!important;
}
.blog .box:hover .image:after,
.blog .box:hover .date {
    opacity: 1;
}
.blog .box .title {
    font-size: 22px;
    line-height: 28px;
    transition: .5s ease;
    margin-bottom: 20px;
}
.index-page .blog .box .title {
    font-size: 20px;
	transition: .5s ease;
}
.blog .box .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 4.5em;
}
.blog .box .date {
    font-size: 14px;
    color: var(--contrast-color);
    background: var(--dark);
    padding: 4px 12px;
    border-radius: 10px;
    z-index: 2;
    display: grid;
    justify-content: center;
    text-align: center;
    gap: 0px;
    transition: .5s ease;
}
.blog .box .date {
    font-size: 14px;
    line-height: 24px;
    color: var(--contrast-color);
    background-image: linear-gradient(to right, #00AEED 0%, #217DC0  100%);
    padding: 10px;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0px;
    transition: .5s ease;
}
.blog .box .date span {
    font-size: 22px;
    font-weight: 600;
}
.blog .arrow {
    font-size: 26px;
    color: var(--contrast-color);
    background-image: linear-gradient(to right, #00AEED 0%, #217DC0  100%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    transition: .5s ease;
    transform: rotate(45deg);
    opacity: 0;
}
.blog .box:hover .arrow {
    transform: rotate(45deg);
    opacity: 1;
}
.blog .active>.page-link, 
.blog .page-link.active {
    z-index: 3;
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.blog .page-link:hover {
    background: var(--heading-color);
    color: var(--contrast-color);
}
.blog .popular-box {
    padding: 20px;
    border-radius: 20px;
    background: var(--contrast-color);
}
.blog .popular-box li {
    display: flex;
    gap: 10px;
    padding: 10px;
}
.blog .popular-box li:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}
.blog .popular-box li img {
    width: 90px;
    height: 100%;
    object-fit: cover;
}
.blog.content h2 {
    color: #000;
}
.blog.content p {
    color: #4f4f4f;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .box {
    position: relative;
    margin-bottom: 40px;
	transition: .5s ease;
}
.team .box .image {
    padding: 24px;
    height: 340px;
    display: grid;
    align-content: end;
    justify-content: end;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    background-size: 100%!important;
    overflow: hidden;
    transition: .5s ease;
}
.team .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: .5s ease;
}
.team .box:hover .image:after {
    opacity: 1;
}
.team .box:hover .image {
    background-size: 106%!important;
}
.team .box:hover .image img {
    transform: scale(1.1);
}
.team .box .title {
    font-size: 24px;
	transition: .5s ease;
}
.team .box .sub-title {
    font-size: 16px;
    width: calc(100% - 20px);
    color: #9c9c9c;
    margin: 0;
    transition: .5s ease;
}
.team .arrow {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    background: var(--contrast-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 10px 10px 14px;
    border-radius: 100px;
    transition: .5s ease;
}
.team .arrow:hover {
    color: #000;
    background: #f4f4f4;
}
.team .box .arrow i {
    font-size: 18px;
    transform: rotate(45deg);
    transition: .5s ease;
}
.team .box:hover .arrow i {
    transform: rotate(90deg);
}
.team .profile-image {
    margin-top: -220px;
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 3;
}
.team .content p {
    font-size: 18px;
    color: #4f4f4f;
}

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

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

.clients .logos img {
    padding: 20px;
    background: #f4f4f4;
    border-radius: 20px;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
form.form-box {
    /*background: #ffffff08;*/
    /*backdrop-filter: blur(40px);*/
}

.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: 10px;
}
.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: var(--accent-color);
	padding: 20px;
	margin-top: -220px;
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 3;
}
.form .contact-details h4 {
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 12px;
    border-bottom: 1px solid;
    display: inline-flex;
}
.form .contact-details p {
	color: var(--contrast-color);
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
}
.form .contact-details p a {
	color: #3e4a84;
}
.form .contact-details p a:hover {
	color: var(--contrast-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;
    border-radius: 50px;
	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);
}

span.bil-total {
    font-size: 18px;
    font-weight: 600;
}
span.main-ttl-rate {
    font-size: 26px;
    font-weight: 600;
}
.cms p a {
    margin: 0px 4px;
}
.cms p strong,
.cms p em,
.cms p b,
.cms p i,
.cms p span {
    margin: auto 6px;
}