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

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

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #47b2e4;
  --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: #111111;
}
::-webkit-scrollbar-thumb {
	background: #D116C2;
	border-radius: 50px;
}


* {
    box-sizing: border-box;
}

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

/* 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: 24px;
  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);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #3d4d6a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
	background: linear-gradient(#1111114f, transparent);
  padding: 16px 0;
  transition: all 0.5s;
  z-index: 997;
}
.hidden-head {
  transform: translateY(-100%);
}

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

.header .logo img {
  max-height: 54px;
  width: auto;
  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: 18px;
    padding: 10px 20px 10px 14px;
    height: 48px;
    margin: 0 8px 0 0;
    border-radius: 50px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.header .btn-header i,
.header .btn-header:focus i{
    font-size: 24px;
}
.btn-menu,
.btn-menu:focus {
	color: var(--contrast-color);
	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;
}
.btn-menu:hover,
.btn-menu:focus:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), transparent 45%);
}

@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 {
    max-height: 40px;
    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: #00000052;
	backdrop-filter: blur(24px) grayscale(1);
	/*mix-blend-mode: difference;*/
}


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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    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: 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;
    margin-right: 10px;
    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(--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;
  }
}
/*--------------------------------------------------------------
# Large Menu
--------------------------------------------------------------*/

#menu-head {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}

.full-menu {
  position: fixed;
  top:0;
	width: 100%;
	overflow: clip;
  height:0;
	z-index: 100000;
  display: flex;
	justify-content: center;
	align-items: center;
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) ;
}
.full-menu .container {
	z-index: 10;
}

.full-menu:before, .full-menu:after{
  content: '';
  height: 0;
  position: fixed;
  top:0;
	width: 100%;
	height: 0;
}
.full-menu:before{
  z-index: -2;
  background-color:#3b3b3b;
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
} 
.full-menu:after{
  z-index: -1;
  background-color:#121212;
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) ;
}

.menu--open:before, .menu--open:after{
  height: 100%;
}

.menu--open:before{
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1);
} 
.menu--open:after{
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.menu--open{
  height:100%;
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}

.nav__list {
	list-style: none;
  padding: 0;
  transition: all 0.4s;
}

.nav__link {
	text-decoration: none;
	color: #a8a8a8;
	font-size: 48px;
	font-weight: 200;
	letter-spacing: 1px;
}
.nav__list li:hover .nav__link{
  font-weight:600;
}
.nav__list li:hover .nav__link {
	color: #fff;
}

@media screen and (max-width:767px){
  .nav__list {
    flex-direction:column;
    text-align:center;
  }
  .nav__list li {
    padding:8px 0;
  }
}

@media screen and (max-width:480px){
  .nav__link {
    font-size:26px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.cta {
	background: #000;
}
.cta h2 {
	text-align: center;
	font-size: 42px;
	line-height: 54px;
	font-weight: 300;
	text-wrap: pretty;
	position: relative;
	z-index: 2;
	text-shadow: 10px 10px 18px black;
}
.cta h2 span {
	font-family: var(--accent-font);
	font-style: italic;
	color: #E21C25;
}
.cta .box {
	min-height: 380px;
}

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

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

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

@media (max-width: 768px) {
	.cta .box {
    min-height: 160px;
	}
	.cta h2 {
    font-size: 18px;
    line-height: 22px;
	}
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	padding-top: 150px;
	padding-bottom: 50px;
	position: relative;
	overflow: hidden;
}

.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: 34px;
	font-weight: 200;
	text-wrap: pretty;
	margin-bottom: 24px;
}
.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: 50%;
	background: #ffffff17;
	font-size: 16px;
	color: #fff;
  transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}
.footer .logo {
	display: flex;
	width: 100%;
	max-width: 290px;
}

.footer .footer-links h3 {
	color: #5f5f5f;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}
.footer .footer-links p {
	color: #fff;
	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 {
  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: 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(--contrast-color);
  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: 13px;
}
.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;
	}
}

/*--------------------------------------------------------------
# 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(--default-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 {
  color: var(--contrast-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;
	}
}
.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;
}
/*--------------------------------------------------------------
# Blob Sections
--------------------------------------------------------------*/

.blob {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}
.blob b {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(150px);
    z-index: 10;
    background: linear-gradient(-135deg, #CC281C, #CC281C, #FFB119, #2AEEFF, #fff);
    -webkit-animation: morpheus 10s linear infinite, rotate 10s linear infinite;
    animation: morpheus 10s linear infinite, rotate 10s linear infinite;
}
.blob.gray {
	filter: grayscale() blur(100px);
}
.blob.one b {
    top: -10%;
    left: -10%;
}
.blob.two b {
    bottom: 0;
    right: -20%;
}
.blob.three b {
    top: 0;
    left: 0;
}
.blob.four b {
	top: 0;
	left: 0;
}
.blob.five b {
    bottom: -50%;
    right: -20%;
}
.blob.footer b {
    top: -20%;
    left: 0;
}
.blob.footer-two b {
    bottom: 0;
    right: -20%;
}
.blob.menu,
.blob.menu2 {
	z-index: 0;
}
.blob.menu b {
    top: 0;
    left: 0;
}
.blob.menu2 b {
    right: -20%;
    bottom: -20%;
}
.blob.cm-one b {
    top: -10%;
    left: -10%;
}
.blob.cm-two b {
    bottom: 0;
    right: -20%;
}
.blob.ct-one b {
    top: -30%;
    left: -20%;
}
.blob.ct-two b {
    right: -20%;
    bottom: -20%;
}

@-webkit-keyframes morpheus {
	0% {border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;}
	20% {border-radius: 60% 40% 40% 60%/60% 25% 75% 40%;}
	40% {border-radius: 70% 30% 65% 35%/80% 45% 55% 20%;}
	60% {border-radius: 30% 70% 70% 30%/20% 30% 70% 80%;}
	80% {border-radius: 40% 60% 40% 60%/70% 55% 45% 30%;}
	100% {border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;}
}

@keyframes morpheus {
	0% {border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;}
	20% {border-radius: 60% 40% 40% 60%/60% 25% 75% 40%;}
	40% {border-radius: 70% 30% 65% 35%/80% 45% 55% 20%;}
	60% {border-radius: 30% 70% 70% 30%/20% 30% 70% 80%;}
	80% {border-radius: 40% 60% 40% 60%/70% 55% 45% 30%;}
	100% {border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;}
}

@keyframes rotate{
  0%{
    transform:rotate(0deg);
    border-color:#EC0D0D;
  }
  50%{
    border-color:#f4c01c;
  }
  100%{
    transform:rotate(360deg);
    border-color:#EC0D0D;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
	font-size: 36px;
	font-family: var(--default-font);
	font-weight: 400;
	margin-bottom: 20px;
	position: relative;
}

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

.section-title p {
  margin-bottom: 0;
}

.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: 20px;
    margin-bottom: 16px;
	}
}

/*--------------------------------------------------------------
# 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: 14px 18px;
	border: 1px solid #fff;
	color: #fff;
	background: #ffffff0a;
	backdrop-filter: blur(24px);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	gap: 16px;
}
.btn-default i {
	display: grid;
	place-content: center;
}
.btn-default:hover {
	background: var(--accent-color);
	border: 1px solid var(--accent-color);
	color: #000;
}
.btn-default:hover i {
	color: #000;
}

.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 18px;
    height: 52px;
    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;
	margin-bottom: 14px;
	border-radius: 6px;
	font-size: 12px;
	width: fit-content;
	color: #fff;
	background: #ffffff36;
	backdrop-filter: blur(10px);
}
.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,
	.btn-open {
    padding: 10px 12px;
    white-space: nowrap;
    border-radius: 4px;
    gap: 10px;
    font-size: 14px;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	height: 100vh;
	max-height: 1200px;
	position: relative;
	padding: 60px 0;
	display: grid;
	align-content: end;
}

.hero::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100vh;
	max-height: 1200px;
	background: linear-gradient(#11111100 60%, #111111);
}
.hero .swiper-container {
	width: 100%;
	height: 100vh;
	max-height: 1200px;
	position: absolute;
	z-index: -1;
	top: 0;
	margin-bottom: unset;
}
.hero .swiper-container + .swiper-container {
  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: relative;
	z-index: 2;
	margin: 0;
	text-align: left;
}

.hero .swiper-pagination-bullet {
  width: 160px;
  height: 5px;
  border-radius: 50px;
	opacity: 1;
  position: relative;
  overflow: hidden;
}
.hero .swiper-pagination-bullet::before {
  content: "";
  display: block;
  background-color: #313131;
	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 5s cubic-bezier(0.3, 0, 0.3, 1) forwards;
          animation: slide-progress 5s 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 h1 {
	margin: 0 0 26px 0;
	color: #fff;
	font-family: var(--default-font);
	font-size: 110px;
	font-weight: 500;
	line-height: 110px;
}

.hero h1 span {
  font-family: var(--accent-font);
	font-style: italic;
}

.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: 20px 0;
	}
  .hero h1 {
    font-size: 36px;
    line-height: 48px;
		margin-bottom: 20px;
  }
	.cd-headline.slide span {
    font-size: 36px;
    line-height: 30px;
    top: 10px;
	}
	.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;
	}
}

.hero .content-wrapper {
	position: relative;
	z-index: 3;
}

.cd-headline {
  display: inline-block;
  position: relative;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  vertical-align: top;
}

.cd-words-wrapper span {
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    opacity: 0;
    color: #fff;
    font-family: var(--accent-font);
    font-size: 110px;
    font-weight: 500;
    line-height: 110px;
    margin: 0 0 26px 0;
}

/* Animation */
.cd-words-wrapper span {
  animation: rotateWords 6s infinite;
}

.cd-words-wrapper span:nth-child(2) {
  animation-delay: 2s;
}

.cd-words-wrapper span:nth-child(3) {
  animation-delay: 4s;
}

@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  5% {
    opacity: 1;
    transform: translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateY(0px);
  }
  30% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
  }
}

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

.inner-page .hero {
	min-height: 400px;
	max-height: 40vh;
	padding: 100px 0 50px;
	overflow: clip;
}
.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;
	max-height: 40vh;
}
.inner-page .hero h1 {
	margin: 0 0 16px 0;
	color: #fff;
	font-size: 50px;
	font-weight: 500;
	line-height: 58px;
}
.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 p {
    margin: 0;
    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;
	}
}

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

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

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

.breadcrumbs ol li+li::before {
  content: "•";
  display: inline-block;
  padding-right: 10px;
  color: var(--contrast-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);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .box {
	position: relative;
	display: grid;
	align-content: flex-end;
	transition: .5s ease;
}
.services .col-lg-4:nth-child(1) {
	margin-top: 80px;
}
.services .col-lg-4:nth-child(3) {
	margin-top: 120px;
}
.services .box .image {
	position: relative;
	max-height: 500px;
	border-radius: 16px;
	overflow: clip;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	transition: .5s ease;
}
.services .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}
.services .box .image img {
	object-fit: contain;
	transition: .5s ease;
}
.services .box .image::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #00000000 80%, #000000b0);
	position: absolute;
	z-index: 1;
}
.services .box .anchor i {
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 20px;
	margin: 0;
	height: 54px;
	width: 54px;
	font-size: 28px;
	background: #ffffff29;
	backdrop-filter: blur(20px);
	border-radius: 100px;
	display: grid;
	place-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .5s ease;
}
.services .box:hover .anchor i {
	opacity: 1;
	visibility: visible;
	transform: rotate(45deg);
}
.services .box .content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	margin: 0;
	z-index: 2;
}
.services .box h2 {
	font-size: 52px;
}
.services .box p {
	font-size: 20px;
	color: #fff;
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .box {
	position: relative;
	display: grid;
	align-content: flex-end;
	transition: .5s ease;
}
.team .box .image {
	position: relative;
	max-height: 400px;
	border-radius: 16px;
	overflow: clip;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	transition: .5s ease;
}
.team .box .image::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #00000000 40%, #000000b0);
	position: absolute;
	z-index: 1;
}
.team .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}
.team .box .image img {
	object-fit: contain;
	transition: .5s ease;
}
.team .box .anchor i {
	position: absolute;
	z-index: 2;
	bottom: 16px;
	right: 16px;
	margin: 0;
	height: 48px;
	width: 48px;
	font-size: 24px;
	background: #ffffff29;
	backdrop-filter: blur(20px);
	border-radius: 100px;
	display: grid;
	place-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .5s ease;
}
.team .box:hover .anchor i {
	opacity: 1;
	visibility: visible;
	transform: rotate(45deg);
}
.team .box .content {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	padding: 16px;
	margin: 0;
}
.team .box h2 {
	font-size: 24px;
}
.team .box p {
	font-size: 18px;
	color: #a4a4a4;
	margin: 0;
}
/*--------------------------------------------------------------
# classes Section
--------------------------------------------------------------*/
.classes .box {
	position: relative;
	display: grid;
	align-content: flex-end;
}
.classes .box .image {
	position: relative;
	max-height: 460px;
	border-radius: 16px;
	overflow: clip;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	transition: .5s ease;
}
.classes .box .image img {
	object-fit: contain;
	transition: .5s ease;
}
.classes .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}
.classes .box .image::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #00000000 40%, #000000b0);
	position: absolute;
	z-index: 1;
}
.classes .box .anchor i {
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 20px;
	margin: 0;
	height: 48px;
	width: 48px;
	font-size: 24px;
	background: #ffffff29;
	backdrop-filter: blur(20px);
	border-radius: 100px;
	display: grid;
	place-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .5s ease;
}
.classes .box:hover .anchor i {
	opacity: 1;
	visibility: visible;
	transform: rotate(45deg);
}
.classes .box .content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	margin: 0;
	z-index: 2;
}
.classes .box .content h2 {
	font-size: 28px;
}
.classes .box .content h3 {
	font-size: 18px;
	font-weight: 400;
	margin: 0;
}
.classes .box p {
	font-size: 18px;
	color: #727272;
}

@media (max-width: 768px) {
	.classes .box .content h2 {
    font-size: 22px;
	}
	.classes .box .content h3 {
    font-size: 16px;
	}
	.classes .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;
	}
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.awards {
	position: relative;
	background-color: var(--contrast-color);
	background: var(--contrast-color) url(../img/background.svg);
	background-repeat: no-repeat;
	background-size: cover;
}
.awards .item {
	width: 100%;
}
.awards .item img {
	padding: 20px;
	width: 100%;
	height: 140px;
}

/*--------------------------------------------------------------
# solutions Section
--------------------------------------------------------------*/
.solutions .box {
	position: relative;
	display: flex;
	align-items: center;
	gap: 54px;
}
.solutions .box .image {
	width: 25%;
	border-radius: 5px;
	overflow: clip;
	transition: .5s ease;
}
.solutions .box .content {
	width: 50%;
}
.solutions .box .image img {
	object-fit: contain;
	transition: .5s ease;
}
.solutions .box:hover .image img {
transform: scale(1.08) rotate(-2deg);
}
.solutions .box h2 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 14px;
}
.solutions .box p{
	font-size: 16px;
	font-weight: 500;
	color: #8b8b8b;
	margin: 0;
}
.solutions hr.line {
	border-top: 2px solid #636363;
	margin: 50px 0;
}

@media (max-width: 768px) {
	.solutions .box {
    display: grid;
    gap: 16px;
	}
	.solutions .box .image {
    width: 100%;
	}
	.solutions .box .content {
    width: 100%;
	}
}

/*--------------------------------------------------------------
# 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 Section
--------------------------------------------------------------*/

.gallery-sec .lsaGallery a .box {
	border-radius: 16px;
	overflow: hidden;
	transition: .5s ease;
}
.gallery-sec .lsaGallery a .box img {
	height: 400px;
	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);
}
.gallery-sec .lsaGallery a:nth-child(1) .box img,
.gallery-sec .lsaGallery a:nth-child(3) .box img,
.gallery-sec .lsaGallery a:nth-child(5) .box img,
.gallery-sec .lsaGallery a:nth-child(6) .box img,
.gallery-sec .lsaGallery a:nth-child(8) .box img,
.gallery-sec .lsaGallery a:nth-child(9) .box img {
	height: 192px;
}

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

.gallery  {
	min-height: 400px;
}
.gallery .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;
}
.gallery .lsaGallery a .box {
	border-radius: 16px;
	overflow: hidden;
	transition: .5s ease;
}
.gallery .lsaGallery a .box img {
	width: 100%;
	overflow: hidden;
	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;
	height: 400px;
	border-radius: 16px;
	overflow: clip;
	display: flex;
	align-items: center;
}
.class-list .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.class-list .box .image::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #00000000 40%, #000000b0);
	position: absolute;
}
.class-list .box .anchor i {
	position: absolute;
	z-index: 2;
	bottom: 16px;
	right: 16px;
	margin: 0;
	height: 48px;
	width: 48px;
	font-size: 24px;
	background: #ffffff29;
	backdrop-filter: blur(20px);
	border-radius: 100px;
	display: grid;
	place-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .5s ease;
}
.class-list .box:hover .anchor i {
	opacity: 1;
	visibility: visible;
	transform: rotate(45deg);
}
.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{
	border-radius: 20px;
}

/*--------------------------------------------------------------
# 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(--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;
  }
}
/*--------------------------------------------------------------
# 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;
	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 {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tutors .box .anchor i {
	position: absolute;
	z-index: 2;
	bottom: 16px;
	right: 16px;
	margin: 0;
	height: 48px;
	width: 48px;
	font-size: 24px;
	background: #ffffff29;
	backdrop-filter: blur(20px);
	border-radius: 100px;
	display: grid;
	place-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .5s ease;
}
.tutors .box:hover .anchor i {
	opacity: 1;
	visibility: visible;
	transform: rotate(45deg);
}
.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;
	transition: .5s ease;
	min-height: 318px;
	overflow: auto;
}
.timetable .box:hover {
	background: #232323;
}
.timetable .box .title {
    padding: 14px;
    font-size: 24px;
    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;
}

.timetable {
    width: 100%;
    border-collapse: collapse;
}
.timetable th, .timetable td {
    border: 1px solid #333;
    padding: 10px;
    text-align: left;
}
.timetable th {
    background-color: #2c2c2c;
    color: #00bfff;
    font-weight: bold;
    min-width: 180px;
    width: 20%;
}
.timetable td {
    min-width: 180px;
    width: 20%;
}
.timetable tr:nth-child(even) {
    background-color: #262626;
}
.timetable tr:hover {
    background-color: #333;
    transition: background-color 0.3s ease;
}
.timetable .break {
    text-align: center;
    background: #03bfff26;
    padding: 2px 10px;
    font-size: 14px;
}
/*--------------------------------------------------------------
# Detail Page
--------------------------------------------------------------*/
.details .content h2 {
	font-size: 24px;
	margin-top: 30px;
	margin-bottom: 16px;
	border-bottom: 1px solid #323232;
	padding-bottom: 8px;
}
.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 h1 {
	font-size: 40px;
	margin-bottom: 20px;
}
.details .content p {
	font-size: 16px;
	margin: 10px 0;
}
.details .content ul {
    list-style: disc;
    margin: 10px 0 10px 20px;
    padding: 0;
}
.details .content ul li {
    background: transparent;
    border: none;
    color: var(--contrast-color);
    margin-bottom: 8px;
    display: list-item;
}
.details .content li::marker {
  color: var(--contrast-color);
}
.details .title {
	font-size: 20px;
	margin-bottom: 30px;
	background: #ffffff1a;
	border-radius: 5px;
	padding: 10px;
}
.tutor-list .box {
	position: relative;
	display: grid;
	justify-items: center;
}
.tutor-list .box .image {
	border-radius: 100%;
	width: 160px;
	height: 160px;
	overflow: clip;
	margin-bottom: 10px;
}
.tutor-list .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tutor-list .box h2 {
	font-size: 18px;
	text-align: center;
}
.tutor-list .box .anchor i {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	margin: 0;
	height: 48px;
	width: 48px;
	font-size: 24px;
	background: #ffffff29;
	backdrop-filter: blur(20px);
	border-radius: 100px;
	display: grid;
	place-content: center;
	transition: .5s ease;
	opacity: 0;
	visibility: hidden;
	transition: .5s ease;
}
.tutor-list .box:hover .anchor i {
	opacity: 1;
	visibility: visible;
	transform: rotate(45deg);
}

/*--------------------------------------------------------------
# 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-box {
	background: #16161665;
	backdrop-filter: blur(20px);
	border: 1px solid #262626;
	border-radius: 16px;
	padding: 34px;
	display: grid;
	align-content: space-between;
	min-height: 370px;
	transition: .5s ease;
}
.form-control,
.form-select {
	color: #000;
}
.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;
	}
}

.contact .form-box {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 16px;
    padding: 0;
    display: grid;
    align-content: space-between;
    min-height: 370px;
    transition: .5s ease;
}
.contact .ct-box {
    background: #16161665;
    backdrop-filter: blur(20px);
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 24px;
    transition: .5s ease;
    margin-top: -180px;
    position: sticky;
    top: 100px;
    z-index: 3;
}
@media (max-width: 768px) {
    .contact .ct-box {
        padding: 16px;
        margin-top: 50px;
        position: relative;
        top: 0;
    }
}
.contact .ct-box h4 {
	color: #5f5f5f;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}
.contact .ct-box p {
    color: #fff;
    font-weight: 300;
}
.contact .ct-box iframe {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #fff;
}