
/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #FFFFFF;
	--secondary-color			: #FFFFFF0A;
	--bg-color					: #080808;
	--text-color				: #FFFFFFCC;
	--accent-color				: rgb(188 112 93);
	--white-color				: #FFFFFF;
	--divider-color				: #FFFFFF1A;
	--dark-divider-color		: #FFFFFF00;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Mona Sans", sans-serif;
	--accent-font				: "Playfair Display", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body{
	width: 100%;
	overflow-x: clip;
}

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background-color: var(--bg-color);
}

::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--black-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
	text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 0;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;  
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 8px;
	padding: 17px 59px 17px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 7px;
	width: 25px;
	height: 25px;
	transform: translateY(-50%);
	background-color: var(--white-color);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 5px;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--accent-color);
}

.btn-default::after{ 
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #8f522eb8;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after{
	right: auto;
	left: 0;
    width: 100%;
}

.readmore-btn{
	position: relative;
	display: inline-block;
	line-height: normal;
	text-transform: capitalize;
	font-weight: 600;
	color: var(--white-color);
	padding: 2px 36px 2px 0;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 26px;
    height: 26px;
	background-color: var(--accent-color);
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
	border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--bg-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 2px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

.light-section{
	background-color: var(--secondary-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.section-row{
	margin-bottom: 80px;
}

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

.section-row .section-title.section-title-center{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	margin-top: 30px;
	text-align: left;
}

.section-title-content p{
	margin-bottom: 20px;
}

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

.section-title{
	margin-bottom: 40px;
}

.section-sub-heading .section-sub-title,
.section-title .section-sub-title{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1em;
    color: var(--primary-color);
	background-color: var(--secondary-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	padding: 10px 16px 10px 30px;
    margin-bottom: 15px;
}

.section-sub-heading .section-sub-title::before,
.section-title .section-sub-title::before{
	content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
	border-radius: 50%;
    width: 5px;
    height: 5px;
}

.section-sub-heading .section-sub-title,
.section-title.section-sub-heading,
.section-title.section-sub-heading .section-sub-title{
	margin-bottom: 0;
}

.light-section .section-sub-heading .section-sub-title,
.light-section .section-title .section-sub-title{
	backdrop-filter: blur(0);
	-webkit-backdrop-filter: blur(0);
}

.section-title h1{
	font-size: 58px;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	font-family: var(--accent-font);
	font-weight: 400;
	font-style: italic;
}

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

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	    03. Header css		 ****/
/************************************/

header.main-header{
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

.header-top-bar{
	background: var(--accent-color);
	padding: 10px 0;
}

.header-top-contact{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px 28px;
}

.header-top-contact a{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--white-color);
	transition: opacity 0.3s ease;
}

.header-top-contact a i{
	font-size: 13px;
}

.header-top-contact a:hover,
.header-top-contact a:focus{
	color: var(--white-color);
	opacity: 0.85;
}

header.main-header .header-sticky{
	position: relative;
	max-width: none;
	top: 0;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	background: #f4f6fb;
	backdrop-filter: none;
    -webkit-backdrop-filter: none;
	border-radius: 0;
	margin: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active{
	position: relative;
	top: 0;
	left: 0;
	right: 0;
    transform: translateY(0);
}

.navbar{
	padding: 12px 0px;
	align-items: center;
}

.header-btn .btn-default{
	border-radius: 50px;
	padding: 14px 56px 14px 22px;
	background: #111111;
}

.header-btn .btn-default::after{
	background: var(--accent-color);
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.navbar-brand img{
	max-height: 64px;
	width: auto;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: #000;
	background: transparent;
	border-radius: 0px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 16px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 14px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--bg-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.header-btn{
	line-height: 0;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	position: relative;
	top: 0;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--bg-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 6px 20px;
	color: var(--bg-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--white-color);
}

.slicknav_menu ul ul li a{
    padding: 6px 20px 6px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	color: var(--bg-color);
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--white-color);
}

/************************************/
/*** 	     04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background-image: url('../images/hero-bg-image.jpg');
	background-position: center center;
	background-size: cover;
	height: 90vh;
    min-height: 850px;
    align-content: end;
    padding: 150px 0 140px;
    overflow: hidden;
}

.hero::before,
.hero.hero-slider-layout .hero-image-slider .hero-slider-img figure::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.42) 0%, rgba(8, 8, 8, 0.12) 38%, transparent 58%), linear-gradient(180deg, rgba(8, 8, 8, 0.40) 0%, transparent 16%), linear-gradient(180deg, transparent 58%, rgba(8, 8, 8, 0.48) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout::before{
	display: none;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
}

.hero.hero-slider-layout .hero-image-slider{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-slider-layout .hero-image-slider .swiper,
.hero.hero-slider-layout .hero-image-slider .hero-slider-img,
.hero.hero-slider-layout .hero-image-slider .hero-slider-img figure{
	position: relative;
	height: 100%;
}

.hero.hero-slider-layout .hero-image-slider .hero-slider-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

.hero .container{
	position: relative;
	z-index: 2;
}

.hero-content{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.hero-content .section-title{
	width: min(58%, 720px);
	max-width: 720px;
	margin-top: 8px;
	margin-bottom: 0;
	text-align: left;
}

.hero-content .section-title h2{
	max-width: 18ch;
	line-height: 1.18;
}

.book-your-date-circle{
	width: calc(22% - 15px);
	text-align: end;
}

.book-your-date-circle a{
	display: inline-block;
    border-radius: 50%;
}

.book-your-date-circle a img{
	width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
    }
    to{
		transform: rotate(360deg);
    }
}

.book-your-date-circle a:hover img{
	animation-play-state: paused;
}

.hero-content-list{
	border-top: 1px solid var(--divider-color);
	padding-top: 50px;
	margin-top: 50px;
}

.hero-content-list ul{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 60px;
	list-style: none;
    padding: 0;
    margin: 0;
}

.hero-content-list ul li{
	position: relative;
    width: calc(25% - 45px);
    line-height: 1.5em;
    color: var(--white-color);
    padding-left: 25px;
}

.hero-content-list ul li:before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.hero-content-list ul li::after{
	content: ' ';
	position: absolute;
	top: 0;
	right: -30px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.hero-content-list ul li:last-child:after{
	display: none;
}

/************************************/
/***       05. About us css       ***/
/************************************/

.about-us{
	padding: 120px 0;
}

.about-us-image-box{
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.about-us-image-box-1{
	position: relative;
	width: 68%;
	padding: 0 0 40px 55px;
	margin-bottom: 60px;
	z-index: 1;
}

.about-us-image-box-1 .about-us-image figure{
	display: block;
	border-radius: 120px;
}

.about-us-image-box-1 .about-us-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.335;
	object-fit: cover;
	border-radius: 120px;
}

.about-image-title-box{
	position: absolute;
	bottom: -10px;
	left: -10px;
	z-index: 0;
}

.about-image-title-box svg{
  width:100%;
  height:100%;
  transform:rotate(-90deg);
}

.about-image-title-box text{
    font-size: 20px;
    font-weight: 600;
	text-transform: uppercase;
    fill: var(--primary-color);
}

.about-us-image-box-2{
	width: 32%;
}

.about-us-image-box-2 .about-us-image{
	position: relative;
	margin-left: -135px;
}

.about-us-image-box-2 .about-us-image::before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-35%, -90%);
	background: url('../images/about-image-box-bg-image.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 125px;
	height: 150px;
}

.about-us-image-box-2 .about-us-image figure{
	position: relative;
	display: block;
	border: 10px solid var(--bg-color);
	border-radius: 170px;
	z-index: 1;
}

.about-us-image-box-2 .about-us-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.435;
	object-fit: cover;
	border-radius: 160px;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-us-body-content{
	width: calc(50% - 15px);
}

.about-us-body-list ul{
	list-style: none;
    margin: 0;
    padding: 0;
}

.about-us-body-list ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us-body-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-body-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.about-body-btn{
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.about-us-counter-box{
	background: url('../images/about-us-counter-box-bg-image.png') var(--secondary-color) no-repeat;
	background-position: bottom -10px left -10px;
	background-size: 95px auto;
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 14px;
    padding: 30px;
    overflow: hidden;
}

.about-us-counter-box{
	width: calc(50% - 15px);
}

.about-us-counter-content h2{
	font-size: 40px;
}

.about-us-counter-content p{
	margin: 5px 0 0;
}

.about-us-counter-image figure{
	display: block;
	max-width: 190px;
    border-radius: 14px;
    margin: -10px -60px -60px auto;
}

.about-us-counter-image figure img{
	width: 100%;
    aspect-ratio: 1 / 1.17;
    object-fit: cover;
    border-radius: 14px;
}

.photography-stats{
	padding: 70px 0;
	background: var(--secondary-color);
}

.photography-stats-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
}

.photography-stat{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 28px 30px;
	text-align: center;
	border-right: 1px solid var(--divider-color);
}

.photography-stat:last-child{
	border-right: 0;
}

.photography-stat h2{
	font-size: 46px;
	line-height: 1;
}

.photography-stat h2 small{
	font-size: 20px;
	font-weight: 500;
}

.photography-stat p{
	margin: 12px 0 0;
	color: var(--text-color);
	text-align: center;
	width: fit-content;
	max-width: 100%;
}

/************************************/
/*** 	  06. Our Services css	  ***/
/************************************/

.our-services{
	padding: 60px 0;
}

.service-item{
	background-color: var(--secondary-color);
    border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    padding: 10px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover{
	transform: translateY(-5px);
}

.service-item-header{
	padding: 30px;
	margin-bottom: 10px;
}

.service-item-header .icon-box{
	margin-bottom: 30px;
}

.service-item-header .icon-box img{
	width: 100%;
	max-width: 50px;
}

.service-item-content h2{
	font-size: 20px;
}

.service-item-content h2 a{
	color: inherit;
}

.service-item-content p{
	margin: 10px 0 0;
}

.service-item-image{
	position: relative;
}

.service-item-image a{
	display: block;
    cursor: none;
	border-radius: 10px;
	overflow: hidden;
}

.service-item-image figure{
	display: block;
}

.service-item-image figure img{
	width: 100%;
    aspect-ratio: 1 / 0.522;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.service-item:hover .service-item-image figure img{
	transform: scale(1.04);
}

.services-slider{
	position: relative;
	padding: 0 70px;
}

.services-slider .swiper{
	overflow: hidden;
	padding: 10px 0 20px;
}

.services-slider .swiper-slide{
	height: auto;
}

.services-slider .service-item{
	height: 100%;
	margin-bottom: 0;
}

.services-slider-btn{
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	background-color: var(--secondary-color);
	cursor: pointer;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.services-slider-btn img{
	width: 18px;
	height: 18px;
	transition: all 0.4s ease-in-out;
}

.services-slider-btn-prev{
	left: 0;
}

.services-slider-btn-prev img{
	transform: rotate(180deg);
}

.services-slider-btn-next{
	right: 0;
}

.services-slider-btn:hover{
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.services-slider-btn:hover img{
	filter: brightness(0);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	color: var(--primary-color);
	margin: 0 0 15px;
}

.section-footer-text p span{
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	background: var(--accent-color);
	color: var(--bg-color);
	line-height: 1em;
	padding: 4px 10px;
	border-radius: 14px;
	margin-right: 10px;
}

.section-footer-text p a{
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

.section-footer-text ul{
	width: 100%;
	padding: 0;
	margin: 0 0 15px;
	list-style: none;
}

.section-footer-text p:last-child,
.section-footer-text ul:last-child{
    margin: 0;
}

.section-footer-text ul li{
	display: inline-block;
	font-weight: 600;
	line-height: normal;
	color: var(--primary-color);
	margin-right: 10px;
}

.section-footer-text ul li:last-child{
	margin: 0;
}

.section-footer-text ul.section-footer-border-list li{
	border-right: 1px solid var(--divider-color);
	padding-right: 15px;
}

.section-footer-text ul.section-footer-border-list li:last-child{
	padding-right: 0;
	border-right: none;
}

.section-footer-text ul li i{
	color: var(--accent-color);
}

.section-footer-text ul.section-footer-border-list li b{
	font-weight: 600;
	margin-left: 5px;
}

.section-footer-text.section-footer-contact p{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.section-footer-text.section-footer-contact p span{
	width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
	align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact p span img{
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img{
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more{
	width: 32px;
	height: 32px;
    margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img{
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img p{
	margin: 0;
}

.satisfy-client-images{
	display: flex;
	align-items: center;
}

.satisfy-client-image{
	position: relative;
    display: inline-block;
    margin-left: -10px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.satisfy-client-image:first-child{
	margin-left: 0;
}

.satisfy-client-image figure{
	display: block;
}

.satisfy-client-image figure img{
	width: 100%;
	max-width: 44px;
	border-radius: 50%;
}

.satisfy-client-image.add-more{
	width: 46px;
	height: 46px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.satisfy-client-image.add-more i{
	font-size: 20px;
	color: var(--white-color);
}

.satisfy-client-image.add-more h3{
	font-size: 16px;
	line-height: 1em;
	color: var(--white-color);
}

/************************************/
/*** 	  07. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	padding: 60px 0;
}

.why-choose-us-box{
	background-color: var(--secondary-color);
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
	overflow: hidden;
}

.why-choose-us-box.box-1{
	text-align: center;
}

.why-choose-us-box-content{
	padding: 30px 30px 0;
}

.why-choose-us-box-content .section-sub-title{
	backdrop-filter: blur(0);
	-webkit-backdrop-filter: blur(0);
	margin-bottom: 15px;
}

.why-choose-us-box-content h3{
	font-size: 20px;
}

.why-choose-us-box-content p{
	margin: 10px 0 0;
}

.why-choose-item-image figure{ 
	display: block;
	margin: 0 0 -40px 0;
	border-radius: 10px 10px 0 0;
}

.why-choose-item-image figure img{
	width: 100%;
	aspect-ratio: 0.7 / 0.692;
    object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.why-choose-image-box{
	position: relative;
	align-content: end;
    border-radius: 14px;
    padding: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.why-choose-us-image{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.why-choose-us-image figure{
	position: relative;
    display: block;
    height: 100%;
}

.why-choose-us-image figure img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-image-body{
	background: var(--secondary-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.why-choose-body-title{
	display: flex;
	align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.why-choose-body-title hr{
	min-width: 30px;
	border-style: dashed;
	height: 1px;
	color: var(--divider-color);
	flex-grow: 1;
	margin: 0;
	opacity: 1;
}

.why-choose-body-title h3{
	font-size: 20px;
}

.why-choose-body-content p{
	color: var(--white-color);
}

.why-choose-body-content p:last-child{
	margin: 0;
}

.why-choose-highlighted-content{
	background: var(--secondary-color) url('../images/icon-blockquote-transperant.svg') no-repeat;
	background-size: 60px auto;
	background-position: top 15px left 20px;
	padding: 30px;
	border-radius: 10px;
}

.why-choose-highlighted-content p{
	font-weight: 600;
	color: var(--white-color);
}

.why-choose-highlighted-content p:last-child{
	margin: 0;
}

.why-choose-schedule-body{
	padding: 10px 20px 20px;
}

.why-choose-schedule-info-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.why-choose-schedule-info-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.why-choose-schedule-info-image figure{
	display: block;
    max-width: 60px;
    border-radius: 50%;
}

.why-choose-schedule-info-image figure img{
	width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.why-choose-schedule-info-content{
	width: calc(100% - 75px);
}

.why-choose-schedule-info-content h3{
	font-size: 20px;
}

.why-choose-schedule-info-content p{
	margin: 5px 0 0;
}

.why-choose-schedule-btn{
	margin-top: 40px;
}

/************************************/
/*** 	  08. Intro Video css 	  ***/
/************************************/

.intro-video .container-fluid{
    padding: 0;
}

.intro-video-content-box{
	position: relative;
}

.intro-video-bg-video{
    height: 800px;
}

.intro-video-bg-video::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bg-color);
	opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-video-bg-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-play-button a{
	width: 100px;
	height: 100px;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white-color);
	background-color: var(--divider-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
	cursor: none;
}

.video-play-button a:hover{
	background: var(--white-color);
	color: var(--bg-color);
}

/************************************/
/*** 	09. Our Portfolio css     ***/
/************************************/

.our-portfolio{
	padding: 60px 0;
}

.adk-gallery{
	padding: 80px 0 70px;
	overflow: hidden;
}

.adk-gallery-head{
	text-align: center;
	max-width: 640px;
	margin: 0 auto 28px;
}

.adk-gallery-head span{
	display: block;
	margin-bottom: 10px;
	color: rgba(255,255,255,0.55);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.adk-gallery-head h2{
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(32px, 4.4vw, 52px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.adk-gallery-head p{
	margin: 0;
	color: rgba(255,255,255,0.55);
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
}

.adk-gallery-pills{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto 18px;
}

.adk-gallery-pills button,
.adk-gallery-more{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	background: transparent;
	color: rgba(255,255,255,0.82);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.adk-gallery-pills button.is-active,
.adk-gallery-pills button:hover,
.adk-gallery-more:hover{
	background: #fff;
	border-color: #fff;
	color: #111;
}

.adk-gallery-stage{
	position: relative;
	overflow: hidden;
	padding: 36px 0 10px;
}

.adk-gallery-stage .swiper{
	overflow: visible;
	padding: 24px 0;
}

.adk-gallery-stage .swiper-slide{
	width: min(72vw, 390px);
	height: auto;
}

.adk-gallery-card{
	position: relative;
	overflow: hidden;
	border-radius: 26px;
	transform: scale(0.84);
	transform-origin: center center;
	box-shadow: 0 18px 40px rgba(0,0,0,0.28);
	transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.75s ease;
}

.adk-gallery-stage .swiper-slide-prev .adk-gallery-card,
.adk-gallery-stage .swiper-slide-next .adk-gallery-card{
	transform: scale(0.9);
}

.adk-gallery-stage .swiper-slide-active .adk-gallery-card{
	transform: scale(1);
	box-shadow: 0 28px 56px rgba(0,0,0,0.42);
	z-index: 2;
}

.adk-gallery-card img{
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 26px;
}

.adk-gallery-nav{
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 22px;
}

.adk-gallery-prev,
.adk-gallery-next{
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255,255,255,0.22);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.adk-gallery-prev:hover,
.adk-gallery-next:hover{
	background: #fff;
	border-color: #fff;
	color: #111;
}

@media (max-width: 767px){
	.adk-gallery-stage .swiper-slide{
		width: min(78vw, 300px);
	}

	.adk-gallery-pills{
		gap: 8px;
	}

	.adk-gallery-pills button,
	.adk-gallery-more{
		padding: 8px 14px;
		font-size: 13px;
	}
}

.portfolio-slider{
	position: relative;
	overflow: hidden;
	margin: 10px 0 20px;
}

.portfolio-slider .swiper{
	overflow: visible;
	padding: 0 24px;
}

.portfolio-slider .swiper-wrapper{
	transition-timing-function: linear !important;
}

.portfolio-slider .swiper-slide{
	width: 380px;
	height: auto;
}

.portfolio-slider .portfolio-item{
	height: 100%;
	margin-bottom: 0;
}

@media (max-width: 767px){
	.portfolio-slider .swiper-slide{
		width: 280px;
	}
}

.portfolio-item{
	position: relative;
	border-radius: 14px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
	overflow: hidden;
}

.portfolio-item-image a,
.portfolio-item-image figure{
	position: relative;
	display: block;
	border-radius: 14px;
	cursor: none;
}

.portfolio-item-image figure:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 8, 0.56) 71.49%, rgba(8, 8, 8, 0.80) 100%);
	border-radius: 14px;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.portfolio-item-image figure img{
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 14px;
	transition: all 0.6s ease-in-out;
}

.portfolio-item:hover .portfolio-item-image figure img{
	transform: scale(1.06);
}

.portfolio-item-content{
	position: absolute;
    right: 40px;
    bottom: 40px;
    left: 40px;
	z-index: 1;
}

.portfolio-item-content ul{
	display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.portfolio-item-content ul li a{
	position: relative;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	padding: 8px 16px 8px 30px;
	transition: all 0.4s ease-in-out;
}

.portfolio-item-content ul li a::before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 16px;
	height: 5px;
	width: 5px;
	background-color: var(--accent-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.portfolio-item-content ul li a:hover{
	background-color: var(--accent-color);
	color: var(--bg-color);
}

.portfolio-item-content ul li a:hover::before{
	background-color: var(--bg-color);
}
    
.portfolio-item-content h2{
	font-size: 20px;
}

.portfolio-item-content h2 a{
	color: inherit;
}

/************************************/
/*** 	 10. Our Package css 	  ***/
/************************************/

.our-packages{
	padding: 60px 0;
}

.our-package-content{
	height: 100%;
	align-content: center;
}

.our-package-content .section-title{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.our-package-item{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.our-package-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.our-package-item-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.our-package-item-title h3{
	font-size: 20px;
	width: 100%;
	max-width: fit-content;
}

.our-package-item-title hr{
	height: 1px;
	min-width: 100px;
	color: var(--divider-color);
	border-style: dashed;
	flex-grow: 1;
	margin: 0;
	opacity: 1;
}

.our-package-item-title span{
	font-size: 20px;
	color: var(--white-color);
	font-weight: 600;
	line-height: normal;
}

.our-package-item-content p{
	margin-bottom: 15px;
}

.our-package-item-content p:last-child{
	margin-bottom: 0;
}

.package-video-content-box{
	position: relative;
	height: 100%;
	min-height: 650px;
	border-radius: 14px;
	overflow: hidden;
	margin: 0 0 0 15px;
}

.package-video-content-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.00) 66.85%, var(--bg-color) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.package-video-box{
	position: relative;
	height: 100%;
}

.package-video-box video{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-video-rating-box{
	position: absolute;
	left: 40px;
	right: 40px;
    bottom: 40px;
	text-align: center;
	z-index: 1;
}

.package-video-rating i{
	font-size: 20px;
	color: var(--accent-color);
}

.package-video-rating-box p{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	margin: 15px 0 0;
}

/************************************/
/***    11. Wedding Gallery css   ***/
/************************************/

.our-wedding-gallery{
	padding: 120px 0;
}

.our-wedding-gallery-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-wedding-gallery-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;
	margin: 0;
}

.our-wedding-gallery-nav ul li{
	position: relative;
	color: inherit;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
}

.our-wedding-gallery-nav ul li::before{
	content: '';
    position: absolute;
    top: 50%;
    right: -34px;
	transform: translateY(-50%);
	background-color: var(--divider-color);
	border-radius: 50%;
	height: 8px;
	width: 8px;
}

.our-wedding-gallery-nav ul li:last-child::before{
	display: none;
}

.our-wedding-gallery-nav ul li a.active-btn,
.our-wedding-gallery-nav ul li:hover a{
	color: var(--accent-color);
}

.our-wedding-gallery-nav ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.gallery-item{
	position: relative;
	border-radius: 1000px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.gallery-item-image figure{
	position: relative;
	display: block;
	border-radius: 1000px;
}

.gallery-item-image figure::before{
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
    opacity: 0;
    border-radius: 1000px;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.gallery-item:hover .gallery-item-image figure::before{
	opacity: 40%;
}

.gallery-item-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.356;
	object-fit: cover;
	border-radius: 1000px;
}

.gallery-item-content{
	position: absolute;
    top: 60px;
	left: 15px;
    right: 15px;
	bottom: 60px;
	text-align: center;
	align-content: center;
	margin: 0 auto;
	opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.gallery-item:hover .gallery-item-content{
	opacity: 1;
}

.gallery-item-content ul{
	display: flex;
    flex-direction: column;
    align-items: center;
	gap: 10px;
	list-style: none;
    margin: 0;
    padding: 0;
}

.gallery-item-content ul li{
	position: relative;
    display: inline-block;
    font-size: 14px;
	font-weight: 500;
    line-height: 1.5em;
    color: var(--primary-color);
    padding-left: 16px;
}

.gallery-item-content ul li::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 5px;
    height: 5px;
}

.gallery-item-content h3{
	font-size: 18px;
	margin-top: 15px;
}

/************************************/
/***        12. Our FAQs css      ***/
/************************************/

.our-faqs{
	padding: 60px 0;
}

.faq-cta-box{
	position: sticky;
	top: 30px;
	padding: 80px;
	min-height: 710px;
	/* background: var(--secondary-color) url('../images/faq-bg-image.png') no-repeat; */
	background-size: auto;
	background-position: bottom 80px center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	gap: 30px;
	border-radius: 14px;	
	margin-right: 15px;
}

.faq-cta-image-box{
	height: 200px;
	width: 200px;
	background-color: var(--bg-color);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.faq-cta-image figure{
	position: relative;
	display: block;
    max-width: 105px;
    border-radius: 14px 14px 0 0;
	overflow: hidden;
}

.faq-cta-image figure:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.00) 61.11%, var(--bg-color) 100%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.faq-cta-image figure img{
	width: 100%;
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.faq-cta-image-content h2{
	font-size: 20px;
	text-transform: uppercase;
}

.faq-cta-image-content p{
	line-height: normal;
	margin: 5px 0 0;
}

.faq-cta-body-content h3{
	font-size: 24px;
}

.faq-cta-body{
	position: relative;
	background: linear-gradient(rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.42)), url('../images/adk/blog-1.png') center / cover no-repeat;
	padding: 35px 30px;
	border-radius: 14px;
	color: var(--white-color);
}

.faq-cta-body-content p{
	margin: 10px 0 0;
}

.faq-social-links{
	margin-top: 40px;
}

.faq-social-links ul{
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-social-links ul li a{
	width: 40px;
	height: 40px;
	background-color: var(--secondary-color);
	color: var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.faq-social-links ul li:hover a{
	background: var(--accent-color);
	color: var(--bg-color);
}

.faq-social-links ul li i{
	font-size: 18px;
	color: inherit;
}

.our-faq-btn{
	margin-top: 40px;
}

.faq-content{
	height: 100%;
	align-content: center;
}

.faq-accordion .accordion-item{
    position: relative;
	border: 1px solid var(--divider-color);
    border-radius: 14px;
    margin-bottom: 25px;
    overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
    font-weight: 500;
    line-height: 1.333em;
    background: transparent;
    color: var(--primary-color);
    padding: 22px 55px 22px 30px;
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)){
	background-color: var(--secondary-color);
	border-color: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\2b';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 20px;
	font-weight: 600;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f068';
}

.faq-accordion .accordion-item .accordion-body{  
	background: transparent;
	border-top: 1px solid var(--divider-color);
    padding: 22px 30px;
}

.faq-accordion .accordion-item .accordion-body p:last-child{
    margin: 0;
}

/************************************/
/***   13. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	padding: 60px 0;
}

.testimonial-slider .swiper .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	position: relative;
	background-color: var(--secondary-color);
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
	border-radius: 14px 14px 1000px 1000px;
	text-align: center;
	padding: 70px 50px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.testimonial-item-author{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.testimonial-item-author-image{
	margin-bottom: 20px;
}

.testimonial-item-author-image figure{
	display: inline-block;
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.testimonial-item-author-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-item-author-content h2{
	font-size: 20px;
}

.testimonial-item-author-content p{
	margin: 5px 0 0;
}

.testimonial-item-content{
	margin-bottom: 25px;
}

.testimonial-item-content p:last-child{
	margin: 0;
}

.testimonial-item-rating i{
	font-size: 16px;
	color: var(--accent-color);
}

.testimonial-item-quote{
	position: absolute;
	top: -20px;
	right: -20px;
	height: 120px;
	width: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-item:hover .testimonial-item-quote{
	background: var(--accent-color);
}

.testimonial-item-quote img{
	width: 100%;
	max-width: 42px;
	margin: 15px 10px 0 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-item:hover .testimonial-item-quote img{
	filter: brightness(0) invert(0);
}

.our-testimonials .section-footer-text{
	margin-top: 60px;
}

/************************************/
/*** 	   14. CTA Box css        ***/
/************************************/

.cta-box{
	position: relative;
	background-image: url('../images/adk/adk-banner-2.png');
	background-position: top center;
	min-height: 0;
	align-content: center;
	padding: 70px 0;
}

.cta-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--bg-color);
	opacity: 70%;
    z-index: 1;
}

.cta-box .container{
	position: relative;
	z-index: 1;
}

.cta-box-content{
	max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.cta-box-content .section-title{
	margin-bottom: 20px;
}

.cta-contact-list ul{
	list-style: none;
    margin: 0;
    padding: 0;
}

.cta-contact-list ul li{
	font-size: 24px;
	font-weight: 600;
	color: var(--white-color);
	line-height: 1.4em;
	margin-bottom: 10px;
}

.cta-contact-list ul li:last-child{
	margin-bottom: 0;
}

.cta-contact-list ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.cta-contact-list ul li a:hover{
	color: var(--accent-color);
}

.cta-content-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px 40px;
	border-top: 1px solid var(--divider-color);
	padding-top: 28px;
	margin-top: 28px;
}

.cta-client-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.cta-client-content{
	max-width: 210px;
	text-align: left;
}

.cta-client-content p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/*** 	     15. Blog css 	      ***/
/************************************/

.our-blog{
	padding: 120px 0 90px;
}

.our-blog .section-title p{
	text-align: left;
	max-width: 720px;
}

.post-item{
	background: var(--secondary-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 14px;
	height: calc(100% - 30px);
    margin-bottom: 30px;
	padding: 10px;
}

.post-featured-image{
	position: relative;
	margin-bottom: 10px;
}

.post-featured-image a{
	display: block;
	border-radius: 14px;
    cursor: none;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.731;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.06);
}

.post-item-body{
	padding: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.3em;
}

.post-item-content h2 a{
    color: inherit;
}

.post-item .post-item-btn{
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

/************************************/
/*** 	    16. Footer css        ***/
/************************************/

.main-footer{
	padding: 100px 0 0;
}

.footer-header{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    gap: 20px 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.footer-logo{
	max-width: 240px;
	margin-bottom: 20px;
}

.footer-logo img{
	width: 100%;
	max-width: 220px;
	height: auto;
	display: block;
}

.footer-newsletter-form{
	max-width: calc(70% - 15px);
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    gap: 15px 40px;
}

.footer-newsletter-form h2{
	font-size: 20px;
	align-content: center;
}

.footer-newsletter-form form{
	width: 420px;
}

.footer-newsletter-form .form-group{
	display: flex;
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control{
	width: calc(100% - 40px);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3em;
	color: var(--white-color);
	background: transparent;
	background-image: url('../images/icon-mail-transperant.svg');
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 20px auto;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 20px 6px 54px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
	opacity: 20%;
}

.footer-newsletter-form .form-group .newsletter-btn{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn i{
    font-size: 18px;
	color: var(--bg-color);
	transition: all 0.4s ease-in-out;
}

.about-footer-content h2{
	font-size: 20px;
	margin-bottom: 30px;
}

.about-footer-content p{
	margin: 0 0 15px;
}

.about-footer-content p:last-child{
	margin-bottom: 0;
}

.footer-social-links{
	margin-top: 60px;
}

.footer-social-links ul{
	display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-social-links ul li a{
	width: 40px;
	height: 40px;
    color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

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

.footer-social-links ul li a i{
	font-size: 18px;
	color: inherit;
}

.footer-links-box{
	display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-left: 40px;
}

.footer-links{
	max-width: 28%;
}

.footer-links h2{
	font-size: 20px;
	margin-bottom: 30px;
}

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

.footer-links ul li{
	line-height: 1.4em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

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

.footer-working-hour-box{
	min-width: 290px;
}

.footer-contact-list{
	border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

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

.footer-contact-list ul li{
	display: flex;
	gap: 10px;
}

.footer-contact-list ul li img{
	width: 100%;
	max-width: 24px;
}

.footer-copyright{
	border-top: 1px solid var(--divider-color);
    text-align: center;
    padding: 30px 0 20px;
    margin-top: 40px;
}

.footer-copyright-text{
	text-align: center;
}

.footer-copyright-text p{
	margin: 0;
	text-align: center;
}

/************************************/
/***     17. About Us Page css    ***/
/************************************/

.page-header{
	position: relative;
	background-image: url('../images/adk/adk-banner-2.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: scroll !important;
	width: 100%;
	min-height: clamp(320px, 42vw, 550px);
	padding: 90px 0 90px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.page-header.page-header-nail-art{
	background-image: url('../images/adk/nail-art-banner.png');
}

.page-header.page-header-makeup-artist{
	background-image: url('../images/adk/makeup-artist-banner.png');
}

.page-header.page-header-about{
	background-image: url('../images/adk/about-us-banner.png');
}

.page-header:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--bg-color);
	opacity: 0.35;
	z-index: 1;
}

.page-header-box{
	position: relative;
	z-index: 2;
}

.page-header-box h1,
.page-header-box .section-title-text{
	display: inline-block;
	font-size: 76px;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1 span,
.page-header-box .section-title-text span{
	font-family: var(--accent-font);
    font-weight: 400;
    font-style: italic;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 18px;
	line-height: normal;
    text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a,
.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-approach{
	padding: 120px 0;
}

.approach-item-image-box{
	position: relative;
	height: 100%;
	border-radius: 14px;
	align-content: end;
	padding: 30px;
	overflow: hidden;
}

.approach-item-image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.approach-item-image:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.00) 55%, rgba(8, 8, 8, 0.56) 71.49%, rgba(8, 8, 8, 0.80) 100%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.approach-item-image figure{
	display: block;
	height: 100%;
}

.approach-item-image figure img{
	width: 100%;
	height: 100%;
    object-fit: cover;
}

.approach-item-image-content{
	position: relative;
	z-index: 1;
}

.approach-item-image-content h3{
	font-size: 20px;
}

.approach-item-image-content p{
	margin: 15px 0 0;
}

.approach-item-list-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.approach-item{
	width: 100%;
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
}

.approach-item .icon-box{
	margin-bottom: 30px;
}

.approach-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.approach-item-content h3{
	font-size: 20px;
}

.approach-item-content p{
	margin: 10px 0 0;
}

.what-we-do{
	padding: 120px 0;
}

.what-we-do-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-we-do-item{
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
	padding: 30px;
	border-radius: 15px;
}

.what-we-do-item .icon-box{
	margin-bottom: 40px;
}

.what-we-do-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.what-we-do-item-content h3{
	font-size: 20px;
}

.what-we-do-item-content p{
	margin: 10px 0 0;
}

.what-we-do-image-box{
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-left: 15px;
}

.what-we-do-image.image-1{
	position: relative;
	width: 48%;
	z-index: 2;
}

.what-we-do-image.image-1 figure{
	border: 10px solid var(--bg-color);
	border-radius: 22px;
}

.what-we-do-image.image-1 figure img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 14px;
}

.what-we-do-image.image-2{
	position: relative;
	width: 52%;
	padding-bottom: 50px;
	z-index: 1;
}

.what-we-do-image.image-2 figure{
	margin-left: -210px;
	display: block;
	border-radius: 1000px 1000px 14px 14px;
}

.what-we-do-image.image-2 figure img{
	width: 100%;
	aspect-ratio: 1 / 1.221;
	object-fit: cover;
	border-radius: 1000px 1000px 14px 14px;
}

.our-team{
	padding: 120px 0;
}

.team-item{
	position: relative;
	height: calc(100% - 30px);
	border-radius: 14px;
	margin-bottom: 30px;
	overflow: hidden;
}

.team-item-image a,
.team-item-image figure{
	position: relative;
	display: block;
	cursor: none;
}

.team-item-image figure::before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.00) 55%, rgba(8, 8, 8, 0.56) 71.49%, rgba(8, 8, 8, 0.80) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.team-item-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image figure img{
	transform: scale(1.06);
}

.team-item-body{
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	transform: translateY(77px);
	transition: all 0.5s ease-in-out;
	z-index: 2;
}

.team-item:hover .team-item-body{
	transform: translateY(0);
}

.team-item-content h2{
	font-size: 20px;
}

.team-item-content h2 a{
	color: inherit;
}

.team-item-content p{
	margin: 10px 0 0;
}

.team-item-social-list{
	opacity: 0;
	visibility: hidden;
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-item-social-list{
	opacity: 1;
	visibility: visible;
}

.team-item-social-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-item-social-list ul li a{
	width: 36px;
	height: 36px;
	color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.team-item-social-list ul li a:hover{
	background: var(--accent-color);
	color: var(--bg-color);
}

.team-item-social-list ul li a i{
	font-size: 18px;
	color: inherit;
}

/************************************/
/***    18. Services Page css     ***/
/************************************/

.page-services{
	padding: 120px 0 90px;
}

/************************************/
/***    19. Service Single css    ***/
/************************************/

.page-service-single{
	padding: 60px 0;
}

.page-single-sidebar{
	position: sticky;
    top: 30px;
    margin-right: 15px;
}

.page-category-list{
	background: var(--secondary-color);
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 14px;
    margin-bottom: 40px;
    overflow: hidden;
}

.page-category-list .page-category-list-title{
	font-size: 20px;
	color: var(--bg-color);
	background: var(--accent-color);
	padding: 20px 30px;
}

.page-category-list ul{
	list-style: none;
    margin: 0;
	padding: 30px;
}

.page-category-list ul li{
	line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child{
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
	color: inherit;
    padding-right: 25px;
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover{
    color: var(--accent-color);
}

.page-category-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	background: url('../images/arrow-white.svg') no-repeat;
	background-position: center center;
    width: 20px;
    height: 20px;
	transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-box{
	position: relative;
    border-radius: 14px;
    min-height: 460px;
    align-content: end;
    padding: 10px;
    overflow: hidden;
}

.sidebar-cta-box-image{
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.sidebar-cta-box-image figure{
	position: relative;
	display: block;
    height: 100%;
}

.sidebar-cta-box-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:  linear-gradient(180deg, rgba(8, 8, 8, 0.00) 55%, rgba(8, 8, 8, 0.56) 71.49%, rgba(8, 8, 8, 0.80) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sidebar-cta-box-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidebar-cta-item-box{
	position: relative;
    background: var(--divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    z-index: 2;
}

.sidebar-cta-item-logo img{
	width: 100%;
	max-width: 209px;
}

/* .sidebar-cta-contact-list{
	border-top: 1px solid var(--divider-color);
	padding-top: 25px;
	margin-top: 25px;
} */

.sidebar-cta-contact-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-cta-contact-list ul li{
	font-weight: 600;
	color: var(--white-color);
    line-height: 1.5em;
    margin-bottom: 15px;
}

.sidebar-cta-contact-list ul li:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact-list ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-list ul li a:hover{
	color: var(--accent-color);
}

.sidebar-cta-contact-list ul li img{
	width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.page-single-image{
    margin-bottom: 40px;
}

.page-single-image figure{
	display: block;
    border-radius: 14px;
}

.page-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 14px;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry h2{
	font-size: 46px;
    margin-bottom: 20px;
}

.service-entry h2 span{
	font-family: var(--accent-font);
    font-weight: 400;
    font-style: italic;
}

.service-entry h3{
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.service-entry p:last-child,
.service-entry h3:last-child{
	margin: 0;
}

.service-entry ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	padding: 0;
	margin: 0;
}

.service-entry ul li{
	width: calc(33.33% - 20px);
	position: relative;
	color: var(--primary-color);
	line-height: 1.5em;
	padding-left: 25px;
}

.service-entry ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.service-offer-box,
.service-why-choose-box{
	margin-top: 60px;
}

.service-offer-box-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-offer-box-item{
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 30px;
}

.service-offer-box-item-title{
	width: calc(100% - 65px);
}

.service-why-choose-list{
	margin-top: 40px;
}

.service-why-choose-images{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
}

.service-why-choose-image{
	width: calc(50% - 15px);
}

.service-why-choose-image figure{
    display: block;
    border-radius: 14px;
}

.service-why-choose-image figure img{
	width: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
    border-radius: 14px;
}

/************************************/
/***     20. Blog Archilve css    ***/
/************************************/

.page-blog{
    padding: 120px 0;
}
	
.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
	font-size: 20px;
    font-weight: 500;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
	color: var(--bg-color);
    background: var(--accent-color);
}

/************************************/
/***     21. Blog Single css      ***/
/************************************/

.page-single-post{
	padding: 120px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
	border-radius: 14px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 14px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
    font-weight: 600;
	line-height: 1.2em;
	margin: 0 0 0.389em;
}

.post-entry h1{
	font-size: 76px;
	letter-spacing: -0.02em;
}

.post-entry h2{
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol:last-child,
.post-entry ul:last-child{
    margin-bottom: 0;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: var(--accent-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 14px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--bg-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    line-height: 1em;
	letter-spacing: 0;
	background: var(--accent-color);
    color: var(--bg-color);
	border-radius: 8px;
    padding: 12px 24px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--white-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	border: 1px solid var(--divider-color);
	color: var(--white-color);
	border-radius: 8px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--accent-color);
	color: var(--bg-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***    22. Portfolio Page css    ***/
/************************************/

.page-portfolio{
	padding: 120px 0 90px;
}

/************************************/
/***   23. Portfolio Single css   ***/
/************************************/

.page-portfolio-single{
	padding: 120px 0;
}

.portfolio-category-item-list{
    padding: 30px;
}

.portfolio-category-item{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.portfolio-category-item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.portfolio-category-item .icon-box img{
    width: 100%;
    max-width: 24px;
}

.portfolio-category-item-content{
    width: calc(100% - 34px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.portfolio-category-item-content h3,
.portfolio-category-social-links h3{
    font-size: 16px;
    line-height: normal;
}

.portfolio-category-item-content p{
    margin-bottom: 0;
}

.portfolio-category-social-links{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
	width: 100%;
}

.page-category-list .portfolio-category-social-links ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
}

.page-category-list .portfolio-category-social-links ul li{
	margin: 0;
	padding: 0;
	border: none;
}

.page-category-list .portfolio-category-social-links ul li a{
	width: 30px;
	height: 30px;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.page-category-list .portfolio-category-social-links ul li a:hover{
	background: var(--accent-color);
	color: var(--bg-color);
}

.page-category-list .portfolio-category-social-links ul li a::before{
	display: none;
}

.page-category-list .portfolio-category-social-links ul li a i{
	font-size: 14px;
}

.portfolio-entry{
    margin-bottom: 60px;
}

.portfolio-entry p{
    margin-bottom: 20px;
}

.portfolio-entry h2{
	font-size: 46px;
    margin-bottom: 20px;
}

.portfolio-entry h2 span{
	font-family: var(--accent-font);
    font-weight: 400;
    font-style: italic;
}

.portfolio-entry h3{
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.portfolio-entry p:last-child,
.portfolio-entry h3:last-child{
	margin: 0;
}

.portfolio-entry ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.portfolio-entry ul li{
	position: relative;
	color: var(--primary-color);
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 20px;
}

.portfolio-entry ul li:last-child{
	margin-bottom: 0;
}

.portfolio-entry ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.portfolio-entry-info,
.portfolio-creative-box,
.portfolio-image-gallary-box{
	margin-top: 60px;
}

.portfolio-creative-image-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.portfolio-creative-image,
.portfolio-creative-list{
	width: calc(50% - 15px);
}

.portfolio-creative-image figure{
	display: block;
	height: 100%;
	border-radius: 14px;
}

.portfolio-creative-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.775;
	object-fit: cover;
	border-radius: 14px;
}

.portfolio-creative-list{
	align-content: center;
}

.portfolio-image-gallary-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.portfolio-image-gallary-item{
	width: calc(50% - 15px);
}

.portfolio-image-gallary-item figure{
	display: block;
	border-radius: 14px;
}

.portfolio-image-gallary-item img{
	width: 100%;
	aspect-ratio: 1 / 0.745;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team{
	padding: 120px 0 90px;
}

/************************************/
/***     25. Team Single css      ***/
/************************************/

.page-team-single{
	padding: 120px 0;
}

.team-member-about{
	display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
	margin-bottom: 60px;
}

.team-member-image-box{
	width: calc(50% - 30px);
	display: flex;
	flex-direction: column;
}

.team-single-image{
	height: 100%;
}

.team-single-image figure{
	display: block;
	height: 100%;
    border-radius: 14px;
}

.team-single-image figure img{
	width: 100%;
	height: 100%;
    aspect-ratio: 1 / 0.762;
    object-fit: cover;
    border-radius: 14px;
}

.team-member-social-list{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.team-member-social-list h2{
	font-size: 20px;
}

.team-member-social-list ul{
	display: flex;
    align-items: center;
    gap: 10px;
	list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-social-list ul li a{
    width: 36px;
    height: 36px;
	color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-member-social-list ul li:hover a{
	background: var(--accent-color);
	color: var(--bg-color);
}

.team-member-social-list ul li a i{
	font-size: 16px;
    color: inherit;
}

.team-about-content{
	width: calc(50% - 30px);
	align-content: center;
}

.team-about-contact-list ul{
	list-style: none;
    padding: 0;
    margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.team-about-contact-list ul li{
	min-width: 48%;
	flex-grow: 1;
	font-weight: 600;
	background: var(--secondary-color);
	border-radius: 14px;
	padding: 20px 25px;
	display: flex;
	gap: 15px;
}

.team-about-contact-list ul li img{
	width: 100%;
	max-width: 20px;
}

.team-experience-info{
	margin-bottom: 60px;
}

.team-experience-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-experience-list-item{
	width: calc(25% - 22.5px);
	background: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
}

.team-experience-list-item .icon-box{
	margin-bottom: 40px;
}

.team-experience-list-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.team-experience-list-content h3{
	font-size: 20px;
}

.team-experience-list-content p{
	margin: 10px 0 0;
}

.team-experience-info-content{
	margin-top: 40px;
}

.team-experience-info-content p:last-child{
	margin-bottom: 0;
}

.team-skill-box{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background-color: var(--secondary-color);
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
	border-radius: 14px;
	overflow: hidden;
}

.team-skill-image-box{
	position: relative;
	width: calc(50% - 5px);
	border-radius: 14px;
	overflow: hidden;
}

.team-skill-image{
	height: 100%;
}

.team-skill-image figure{
	height: 100%;
	position: relative;
	display: block;
	border-radius: 14px;
}

.team-skill-image figure:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.00) 25.77%, rgba(8, 8, 8, 0.56) 52.97%, rgba(8, 8, 8, 0.80) 100%);
    z-index: 1;
}

.team-skill-image figure img{
	width: 100%;
	height: 100%;
    aspect-ratio: 1 / 0.927;
    object-fit: cover;
    border-radius: 14px;
}

.team-skill-content{
	position: absolute;
	bottom: 30px;
	right: 30px;
	left: 30px;
	z-index: 2;
}

.team-skill-content .section-title{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
    display: flex;
	align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no{
	font-size: 16px;
	font-weight: 400;
    line-height: normal;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--divider-color);
    border-radius: 10px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 120px 0 90px;
}

.page-testimonials .testimonial-item{
	border-radius: 14px;
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***    27. Image Gallery css     ***/
/************************************/

.page-gallery{
	padding: 120px 0 90px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 14px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/***    28. Video Gallery css     ***/
/************************************/

.page-video-gallery{
	padding: 120px 0 90px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-color);
	border-radius: 14px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/***     29. FAQ's Page css       ***/
/************************************/

.page-faqs{
    padding: 120px 0;
}

.page-faqs .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child{
    margin-bottom: 0px;
}

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

.page-contact-us{
	padding: 120px 0 60px;
}

.contact-form-box{
	background-color: var(--secondary-color);
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.contact-form-image-box{
	width: calc(50% - 5px);
	position: relative;
    border-radius: 10px;
    min-height: 565px;
    padding: 50px;
    overflow: hidden;
    z-index: 1;
}

.contact-form-image{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-form-image figure{
	position: relative;
    display: block;
    height: 100%;
}

.contact-form-image figure:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
	opacity: 70%;
    z-index: 1;
}

.contact-form-image figure img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-content-box{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	z-index: 1;
}

.contact-info-list{
	max-width: 335px;
}

.contact-info-list ul{
	list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list ul li{
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.5em;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.contact-info-list ul li:last-child{
	margin-bottom: 0;
}

.contact-info-list ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-info-list ul li a:hover{
	color: var(--accent-color);
}

.contact-info-list ul li img{
	width: 100%;
	max-width: 20px;
}

.contact-us-form{
	width: calc(50% - 5px);
	padding: 50px;
}

.contact-form label{
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	background-color: var(--secondary-color);
	border: none;
	border-radius: 2px;
	padding: 13px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--white-color);
	opacity: 50%;
}

.contact-form select.form-control{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #171a1f;
	color: var(--white-color);
	background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%), linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% - 4px), calc(100% - 15px) calc(50% - 4px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 40px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	color-scheme: dark;
}

.contact-form select.form-control option{
	background-color: #171a1f !important;
	color: var(--white-color) !important;
}

.contact-form select.form-control option:checked,
.contact-form select.form-control option:hover,
.contact-form select.form-control option:focus{
	background: linear-gradient(0deg, var(--primary-color), var(--primary-color)) !important;
	color: var(--white-color) !important;
}

.google-map{
    padding: 60px 0 120px;
}

.google-map-iframe{
	width: 100%;
	height: 600px;
}

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
	border-radius: 14px;
	overflow: hidden;
}

/************************************/
/***    31. 404 Error Page css    ***/
/************************************/

.error-page{
	padding: 120px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 720px;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      32. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1440px){

	.intro-video-bg-video{
		height: 680px;
	}
}

@media only screen and (max-width: 1024px){

	.main-menu ul li{
		margin: 0;
	}

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title-content{
        margin-top: 10px;
    }

	.section-btn{
        text-align: left;
        margin-top: 15px;
	}

	.section-sub-heading .section-sub-title,
	.section-title .section-sub-title{
		margin-bottom: 10px;
	}

	.hero{
		height: auto;
	}

	.hero-content-list{
		padding-top: 30px;
		margin-top: 30px;
	}

	.hero-content-list ul{
		gap: 15px 20px;
	}
	
	.hero-content-list ul li{
		width: calc(50% - 10px);
	}

	.hero-content-list ul li:nth-child(2n + 2):after{
		display: none;
	}

	.about-us-image-box{
		max-width: 740px;
		margin: 0 auto 30px;
	}

	.portfolio-item-image figure img{
		aspect-ratio: 3 / 4;
	}

	.our-package-content{
		height: auto;
		margin-bottom: 30px;
	}

	.our-package-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.package-video-content-box{
		margin: 0;
		min-height: auto;
		height: 530px;
	}
	
	.faq-cta-box{
		background: url('../images/adk/blog-1.png') center / cover no-repeat;
		position: initial;
		min-height: auto;
		padding: 30px;
		margin: 0 0 30px;
	}

	.footer-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-newsletter-form{
		gap: 15px 20px;
	}

	.about-footer{
		margin-bottom: 30px;
	}

	.about-footer-content h2{
		margin-bottom: 20px;
	}

	.footer-social-links{
		margin-top: 20px;
	}

	.footer-links-box{
		margin-left: 0;
	}

	.footer-links h2{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-contact-list{
		padding-top: 20px;
		margin-top: 20px;
	}

	.footer-copyright{
		padding: 30px 0;
		margin-top: 30px;
	}

	.what-we-do-content-box{
		margin-bottom: 30px;
	}

	.what-we-do-image-box{
		max-width: 740px;
		margin: 0 auto;
	}

	.what-we-do-image.image-2 figure img{
		aspect-ratio: 1 / 1.1;
	}

	.page-single-sidebar{
		margin-right: 0;
	}

	.page-category-list .page-category-list-title{
		padding: 15px 20px;
	}

	.page-category-list ul{
		padding: 20px;
	}

	.page-category-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.page-category-list ul li a::before{
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-box{
		min-height: 400px;
	}

	.sidebar-cta-item-box{
		padding: 15px;
	}

	.sidebar-cta-contact-list{
		padding-top: 20px;
		margin-top: 20px;
	}

	.service-entry{
    	margin-bottom: 40px;
	}
	
	.page-single-image{
		margin-bottom: 30px;
	}

	.service-entry ul{
		gap: 15px;
	}

	.service-entry ul li{
		width: calc(50% - 7.5px);
	}

	.service-offer-box, 
	.service-why-choose-box{
		margin-top: 40px;
	}

	.service-offer-box-list{
		gap: 20px;
		margin-top: 30px;
	}

	.service-offer-box-item{
		width: calc(50% - 10px);
		padding: 20px;
	}

	.service-offer-box-item h3{
		font-size: 18px;
	}

	.portfolio-category-item-list{
		padding: 20px;
	}

	.portfolio-category-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.portfolio-category-item .icon-box img{
		max-width: 20px;
	}

	.portfolio-category-item-content{
		width: calc(100% - 30px);
	}

	.portfolio-entry{
		margin-bottom: 40px;
	}

	.portfolio-entry-info,
	.portfolio-creative-box,
	.portfolio-image-gallary-box{
		margin-top: 40px;
	}

	.portfolio-creative-image-list{
		margin: 30px 0;
		gap: 20px;
	}

	.portfolio-creative-image{
		width: calc(45% - 10px);
	}

	.portfolio-creative-list{
		width: calc(55% - 10px);
	}

	.team-member-about{
		gap: 30px;
	}

	.team-member-image-box,
	.team-about-content{
		width: calc(50% - 15px);
	}

	.team-about-contact-list ul li{
		padding: 15px 20px;
	}

	.team-member-about,
	.team-experience-info{
		margin-bottom: 40px;
	}

	.team-experience-list-item{
		width: calc(50% - 15px);
	}

	.team-experience-info-content{
		margin-top: 30px;
	}

	.contact-form-image-box,
	.contact-us-form{
		padding: 30px;
	}
}

@media only screen and (max-width: 991px){
	
	.btn-default{
		padding: 15px 48px 15px 18px;
	}

	.photography-stats-grid{
		grid-template-columns: repeat(2, 1fr);
	}

	.photography-stat:nth-child(2){
		border-right: 0;
	}

	.photography-stat:nth-child(-n + 2){
		border-bottom: 1px solid var(--divider-color);
	}

	.btn-default::before{
		width: 36px;
		height: 36px;
		background-size: 18px auto;
	}

	.readmore-btn{
		padding: 0px 30px 0px 0;
	}

	.readmore-btn::before{
		width: 22px;
		height: 22px;
		background-size: 12px auto;
	}

	header.main-header{
		top: 0px;
		right: 0px;
		left: 0px;
	}

	.header-top-contact{
		justify-content: center;
		gap: 8px 16px;
	}

	.header-top-contact a{
		font-size: 12px;
	}

	header.main-header .header-sticky{
		width: 100%;
		border-top: none;
		border-right: none;
		border-left: none;
		border-radius: 0;
	}
	
	header.main-header .header-sticky.active{
        width: 100%;
		border-radius: 0;
        top: 0;
		left: 0;
		right: 0;
	}

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}

	.section-sub-heading .section-sub-title,
	.section-title .section-sub-title{
		padding: 8px 12px 8px 26px;
	}

	.section-sub-heading .section-sub-title::before,
	.section-title .section-sub-title::before{
		left: 12px;
	}

	.section-title h1{
		font-size: 52px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.hero{
		height: auto;
		min-height: 0;
		padding: 48px 0 40px;
	}

	.hero.hero-slider-layout .hero-image-slider .hero-slider-img img{
		object-position: 72% center;
	}

	.hero-content .section-title{
		width: 100%;
		max-width: 100%;
	}

	.hero-content .section-title h2{
		max-width: none;
	}

	.navbar-brand img{
		max-height: 46px;
	}

	.navbar{
		padding: 8px 0;
	}

	.navbar-toggle{
		margin-left: auto;
	}

	.book-your-date-circle a img{
		max-width: 130px;
	}

	.hero-content-list ul li:before{
		font-size: 16px;
	}
	
	.about-us{
		padding: 60px 0;
	}

	.about-us-body-list ul li::before{
		font-size: 16px;
	}

	.about-us-counter-content h2{
		font-size: 34px;
	}

	.our-services{
		padding: 60px 0;
	}

	.services-slider{
		padding: 0 50px;
	}

	.services-slider-btn{
		width: 42px;
		height: 42px;
	}

	.service-item-header{
		padding: 20px;
	}

	.service-item-header .icon-box{
		margin-bottom: 20px;
	}

	.service-item-image figure img{
		aspect-ratio: 1 / 0.65;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text p,
	.section-footer-text ul{
		margin-bottom: 10px;
	}

	.section-footer-text ul li{
		margin-right: 5px;
	}

	.section-footer-text ul.section-footer-border-list li{
		padding-right: 10px;
	}

	.why-choose-us{
		padding: 60px 0;
	}

	.why-choose-us-box-content{
		padding: 15px 15px 0;
	}

	.why-choose-image-body{
		padding: 15px;
	}

	.why-choose-highlighted-content{
		padding: 20px;
		background-size: 50px;
	}

	.why-choose-schedule-info-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-schedule-btn{
		margin-top: 30px;
	}

	.intro-video-bg-video{
        height: 520px;
    }

	.video-play-button a{
		width: 80px;
		height: 80px;
		font-size: 16px;
	}

	.our-portfolio{
		padding: 60px 0;
	}

	.portfolio-item-content{
		right: 30px;
		bottom: 30px;
		left: 30px;
	}

	.portfolio-item-content ul{
		margin: 0 0 15px;
	}

	.portfolio-item-content ul li a{
		padding: 7px 12px 7px 26px
	}

	.portfolio-item-content ul li a::before{
		left: 12px;
	}

	.our-packages{
		padding: 60px 0;
	}

	.our-package-content .section-title{
		padding-bottom: 30px;
	}

	.our-package-item-title span{
		font-size: 18px;
	}

	.package-video-rating-box{
		left: 30px;
    	right: 30px;
    	bottom: 30px;
	}

	.package-video-rating i,
	.package-video-rating-box p{
		font-size: 18px;
	}

	.our-wedding-gallery{
		padding: 60px 0;
	}

	.our-wedding-gallery-nav{
		margin-bottom: 40px;
	}

	.our-wedding-gallery-nav ul{
		gap: 10px 40px;
	}

	.our-wedding-gallery-nav ul li::before{
		right: -24px;
	}

	.gallery-item,
	.gallery-item-image figure,
	.gallery-item-image figure img,
	.gallery-item-image figure::before{
		border-radius: 14px;
	}

	.gallery-item-image figure img{
		aspect-ratio: 1 / 0.95;
	}

	.gallery-item-content{
		top: 15px;
		bottom: 15px;
	}

	.our-faqs{
		padding: 60px 0;
	}

	.faq-cta-body-content h3{
		font-size: 22px;
	}

	.faq-social-links,
	.our-faq-btn{
		margin-top: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 15px 45px 15px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 20px;
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px 20px;
	}

	.our-testimonials{
		padding: 60px 0;
	}

	.testimonial-item{
		padding: 40px;
	}

	.testimonial-item-author{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.testimonial-item-author-image{
		margin-bottom: 15px;
	}

	.testimonial-item-content{
		margin-bottom: 20px;
	}

	.testimonial-item-quote{
		height: 90px;
		width: 90px;
		top: -15px;
		right: -15px;
	}

	.testimonial-item-quote img{
		max-width: 32px;
		margin: 8px 8px 0 0;
	}

	.our-testimonials .section-footer-text{
		margin-top: 40px;
	}

	.cta-box{
		min-height: 0;
		padding: 50px 0;
	}

	.cta-contact-list ul li{
		font-size: 22px;
	}

	.cta-content-footer{
		gap: 20px 30px;
		padding-top: 30px;
		margin-top: 30px;
	}

	.our-blog{
		padding: 60px 0 30px;
	}

	.post-item-body{
		padding: 10px;
	}

	.post-item .post-item-btn{
		margin-top: 15px;
		padding-top: 15px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.footer-logo,
	.footer-newsletter-form{
		max-width: 100%;
	}

	.page-header{
		min-height: clamp(240px, 48vw, 420px);
		padding: 70px 0 60px;
	}

	.page-header-box h1{
		font-size: 48px;
		margin-bottom: 10px;
	}

	.our-approach{
		padding: 60px 0;
	}

	.approach-item-image-box{
		min-height: 380px;
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.approach-item-image:before{
		background: var(--bg-color);
		opacity: 30%;
	}

	.approach-item{
		width: calc(50% - 15px);
	}

	.what-we-do{
		padding: 60px 0;
	}

	.what-we-do-item .icon-box{
		margin-bottom: 30px;
	}

	.our-team{
		padding: 60px 0;
	}

	.team-item-body{
		left: 30px;
		right: 30px;
		bottom: 30px;
	}

	.page-services{
		padding: 60px 0 30px;
	}

	.page-service-single{
		padding: 60px 0;
	}

	.page-single-sidebar{
		position: initial;
        margin-bottom: 30px;
	}

	.page-category-list{
		margin-bottom: 30px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-why-choose-list{
		margin-top: 30px;
	}

	.service-entry ul li::before{
		font-size: 16px;
	}

	.service-why-choose-images{
		margin-top: 30px;
	}

	.page-blog{
		padding: 60px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 60px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
		font-size: 16px;
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-portfolio{
		padding: 60px 0 30px;
	}

	.page-portfolio-single{
		padding: 60px 0;
	}

	.portfolio-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.portfolio-entry p{
		margin-bottom: 15px;
	}

	.portfolio-entry ul li{
		margin-bottom: 10px;
	}

	.portfolio-entry ul li::before{
		font-size: 16px;
	}



	.page-team{
		padding: 60px 0 30px;
	}

	.page-team-single{
		padding: 60px 0;
	}

	.team-single-image,
	.team-single-image figure,
	.team-single-image figure img{
		height: auto;
	}

	.team-member-image-box,
	.team-about-content{
		width: 100%;
	}

	.team-member-social-list{
		margin-top: 20px;
	}

	.team-experience-list-item .icon-box{
		margin-bottom: 30px;
	}

	.team-skill-image-box{
		width: 100%;
	}

	.team-skill-image,
	.team-skill-image figure,
	.team-skill-image figure img{
		height: auto;
	}

	.team-skill-image figure img{
		aspect-ratio: 1 / 0.7;
	}

	.team-skill-content .section-title{
		padding-bottom: 30px;
	}

	.page-testimonials{
		padding: 60px 0 30px;
	}

	.page-gallery{
		padding: 60px 0 30px;
	}

	.page-video-gallery{
		padding: 60px 0 30px;
	}

	.page-faqs{
        padding: 60px 0;
    }

	.page-faqs .page-faq-accordion{
        margin-bottom: 40px;
    }

	.page-contact-us{
		padding: 60px 0 30px;
	}

	.contact-form-image-box{
		width: 100%;
		min-height: 400px;
	}

	.contact-us-form{
		width: 100%;
	}

	.contact-info-list ul li{
        margin-bottom: 15px;
    }

	.contact-form label{
		margin-bottom: 15px;
	}

	.contact-form .form-control{
		padding: 11px 15px;
	}

	.google-map{
        padding: 30px 0 60px;
    }

    .google-map-iframe,
	.google-map-iframe iframe{
        height: 450px;
    }

	.error-page{
		padding: 60px 0px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px){
	
	.section-row{
		margin-bottom: 30px;
	}
	.section-title-text{
		font-size: 20px !important;
	}

	.photography-stats{
		padding: 50px 0;
	}

	.photography-stats-grid{
		grid-template-columns: 1fr;
	}

	.photography-stat,
	.photography-stat:nth-child(2){
		border-right: 0;
		border-bottom: 1px solid var(--divider-color);
	}

	.photography-stat:last-child{
		border-bottom: 0;
	}

	.section-title h1{
		font-size: 28px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero-content .section-title,
	.book-your-date-circle{
		width: 100%;
	}

	.hero-content .section-sub-title{
		max-width: 100%;
		white-space: normal;
		line-height: 1.4em;
		text-align: left;
	}

	.hero-content .section-sub-title .hero-sub-line{
		display: block;
	}

	.hero-content .section-sub-title::before{
		top: 14px;
		transform: none;
	}

	.hero{
		min-height: 70vh;
		padding: 36px 0 32px;
	}

	.hero-content{
		gap: 20px;
	}

	.hero-content-list{
		padding-top: 20px;
		margin-top: 20px;
	}

	.book-your-date-circle{
		display: none;
	}

	.hero-content-list ul{
		gap: 10px;
	}

	.hero-content-list ul li{
		width: 100%;
	}

	.hero-content-list ul li::after{
		display: none;
	}

	.about-us-image-box-1{
		width: 68%;
		padding: 0 0 25px 25px;
		margin-bottom: 50px;
	}

	.about-us-image-box-1 .about-us-image figure,
	.about-us-image-box-1 .about-us-image figure img{
		border-radius: 60px;
	}
	
	.about-us-image-box-2 .about-us-image{
		margin-left: -75px;
	}

	.about-us-image-box-2 .about-us-image::before{
		width: 85px;
		height: 95px;
	}

	.about-us-image-box-2 .about-us-image figure{
		border-width: 5px;
	}

	.about-image-title-box{
		bottom: -8px;
		left: -8px;
		max-width: 160px;
	}

	.about-us-body-content{
		width: 100%;
	}

	.about-us-body-list ul li{
		margin-bottom: 10px;
	}

	.about-body-btn{
		padding-top: 20px;
		margin-top: 20px;
	}

	.about-us-counter-box{
		width: 100%;
		padding: 20px;
	}

	.about-us-counter-content h2{
		font-size: 28px;
	}

	.about-us-counter-image figure{
		margin: -10px -35px -40px auto;
	}

	.services-slider{
		padding: 0 42px;
	}

	.service-item-header{
		padding: 10px;
	}

	.service-item-content h2{
		font-size: 18px;
	}

	.section-footer-text p span{
		padding: 3px 8px;		
	}
	
	.section-footer-text ul li{
		font-size: 14px;
	}

	.why-choose-us-box-content{
        padding: 10px 10px 0;
    }

	.why-choose-us-box-content h3{
		font-size: 18px;
	}

	.why-choose-image-box{
        min-height: 330px;
    }

	.why-choose-body-title h3{
		font-size: 18px;
	}

	.why-choose-schedule-body{
		padding: 0 10px 10px 10px;
	}

	.why-choose-schedule-info-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.why-choose-schedule-info-content h3{
		font-size: 18px;
	}

	.intro-video-bg-video{
		height: 320px;
	}

	.portfolio-item-content{
		right: 20px;
        bottom: 20px;
        left: 20px;
	}

	.portfolio-item-content h2{
		font-size: 18px;
	}

	.our-package-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.our-package-item-title{
		margin-bottom: 10px;
	}

	.our-package-item-title h3{
		font-size: 16px;
	}

	.our-package-item-title span{
		font-size: 16px;
	}

	.our-package-item-title hr{
		min-width: 40px;
	}

	.package-video-content-box{
		height: 360px;
	}

	.package-video-rating-box{
		left: 20px;
    	right: 20px;
    	bottom: 20px;
	}

	.package-video-rating-box p{
		font-size: 16px;
	}

	.our-wedding-gallery-nav{
		margin-bottom: 25px;
	}

	.our-wedding-gallery-nav ul{
		gap: 10px 30px;
	}

	.our-wedding-gallery-nav ul li::before{
		right: -18px;
		width: 6px;
		height: 6px;
	}

	.gallery-item-image figure img{
        aspect-ratio: 1 / 0.81;
    }

	.gallery-item-content h3{
		margin-top: 10px;
	}

	.faq-cta-box{
		background-size: 95% auto;
		gap: 20px;
		padding: 20px;
	}

	.faq-cta-image figure{
		max-width: 90px;
	}

	.faq-cta-image-content h2{
		font-size: 18px;
	}

	.faq-cta-body-content h3{
		font-size: 20px;
	}

	.faq-social-links{
		margin-top: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
        padding: 12px 36px 12px 15px;
    }

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body{
        padding: 12px 15px;
    }

	.testimonial-item-author-content h2{
		font-size: 18px;
	}

	.cta-contact-list ul li{
		font-size: 18px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-newsletter-form h2{
		font-size: 18px;
	}

	.about-footer{
        margin-bottom: 30px;
    }

	.about-footer-content h2{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links{
		max-width: 100%;
	}

	.footer-links h2{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-copyright{
		padding: 15px 0;
		margin-top: 20px;
	}

	.page-header-box h1{
		font-size: 28px;
	}

	.approach-item-image-box{
		padding: 20px;
	}

	.approach-item-image-content h3{
		font-size: 18px;
	}

	.approach-item{
		width: 100%;
		padding: 20px;
	}

	.approach-item .icon-box{
		margin-bottom: 20px;
	}

	.approach-item-content h3{
		font-size: 18px;
	}

	.what-we-do-item{
		width: 100%;
		padding: 20px;
	}

	.what-we-do-item .icon-box{
		margin-bottom: 20px;
	}

	.what-we-do-item-content h3{
		font-size: 18px;
	}

	.what-we-do-image.image-1 figure{
		border-width: 5px;
		border-radius: 14px;
	}

	.what-we-do-image.image-2{
		margin-bottom: 40px;
	}
	
	.what-we-do-image.image-2 figure{
		margin-left: -90px;
	}

	.team-item-body{
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.team-item-content h2{
		font-size: 18px;
	}

	.page-category-list .page-category-list-title{
		padding: 12px 20px;
		font-size: 18px;
	}

	.page-single-image{
		margin-bottom: 20px;
	}

	.service-entry h2{
		font-size: 26px;
	}

	.service-entry h3{
		font-size: 18px;
	}

	.service-entry ul{
		gap: 10px;
	}

	.service-entry ul li{
		width: 100%;
	}

	.service-offer-box-item{
		width: 100%;
	}

	.service-why-choose-images{
		gap: 20px;
	}

	.service-why-choose-image{
		width: 100%;
	}

	.page-pagination ul li a,
	.page-pagination ul li span{
		font-size: 18px;
		width: 40px;
		height: 40px;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}

	.post-image img{
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote{
		background-size: 30px;
		padding: 60px 20px 20px 20px;
	}

	.post-entry blockquote p{
		font-size: 16px;
	}

	.post-entry h2{
		font-size: 26px;
	}
	
	.tag-links{
		font-size: 18px;
	}
	
	.portfolio-entry h2{
		font-size: 26px;
	}

	.portfolio-creative-image,
	.portfolio-creative-list{
		width: 100%;
	}

	.portfolio-image-gallary-box{
		gap: 15px;
	}

	.portfolio-image-gallary-item{
		width: calc(50% - 7.5px);
	}
	
	.team-member-social-list h2{
		font-size: 18px;
	}

	.team-about-contact-list ul{
		gap: 10px;		
	}

	.team-about-contact-list ul li{
        padding: 12px 15px;
		gap: 10px;
    }

	.team-about-contact-list ul li img{
		max-width: 18px;
	}
	
	.team-experience-list-item{
		width: 100%;
		padding: 20px;
	}

	.team-experience-list-item .icon-box{
		margin-bottom: 20px;
	}

	.team-experience-list-content h3{
		font-size: 18px;
	}

	.team-skill-content{
		bottom: 20px;
    	right: 20px;
    	left: 20px;
	}

	.team-skill-image figure img{
        aspect-ratio: 1 / 0.998;
    }

	.team-skill-content .section-title{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skillbar .skill-progress{
		height: 8px;
	}

	.team-skill-box .contact-us-form{
		padding: 20px;
	}
	
	.contact-form-image-box,
	.contact-us-form{
		padding: 15px;
    }

	.contact-form-image-box{
		min-height: auto;
	}

	.contact-info-list ul li{
		gap: 10px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }
	
}



.service-why-choose-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-why-choose-list ul li {
    position: relative;
    padding-left: 30px;
}

.service-why-choose-list ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
}



.service-why-choose-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-why-choose-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 15px;
}

.service-why-choose-list ul li i {
    flex-shrink: 0;
    font-size: 16px;
}

.service-why-choose-list ul li span {
    display: block;
}

/************************************/
/***  Beautician Course Page CSS  ***/
/************************************/

.adk-beautician-page .service-entry h1,
.adk-beautician-page h1{
	font-size: 38px;
	margin-bottom: 24px;
}

.adk-beautician-page .service-entry h2{
	font-size: 32px;
}

.adk-beautician-page .service-entry h3{
	color: var(--primary-color);
	margin-top: 8px;
}

.adk-beautician-page .service-why-choose-list ul li{
	width: 100%;
	padding-left: 0;
}

.adk-beautician-page .service-why-choose-list ul li::before{
	display: none;
}

.adk-beautician-page .service-why-choose-list ul li i{
	color: var(--accent-color);
}

.adk-action-bar{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 10px 0 30px;
}

.adk-action-btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 8px;
	padding: 12px 18px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.35s ease;
}

.adk-action-btn:hover{
	color: var(--white-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(188, 112, 93, 0.35);
}

.adk-action-btn-outline{
	background: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
}

.adk-action-btn-outline:hover{
	background: var(--accent-color);
	color: var(--white-color);
}

.adk-snapshot-grid,
.adk-expect-grid,
.adk-curriculum-grid,
.adk-skill-grid,
.adk-suit-grid,
.adk-path-grid,
.adk-why-grid,
.adk-ask-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin: 28px 0 20px;
}

.adk-snapshot-card,
.adk-expect-card,
.adk-curriculum-card,
.adk-skill-card,
.adk-suit-card,
.adk-myth-card,
.adk-look-item,
.adk-path-card,
.adk-why-card,
.adk-ask-card,
.adk-week-item{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	padding: 24px;
	transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.adk-snapshot-card:hover,
.adk-expect-card:hover,
.adk-curriculum-card:hover,
.adk-skill-card:hover,
.adk-suit-card:hover,
.adk-myth-card:hover,
.adk-look-item:hover,
.adk-path-card:hover,
.adk-why-card:hover,
.adk-ask-card:hover,
.adk-week-item:hover,
.adk-enroll-card:hover{
	transform: translateY(-6px);
	border-color: rgba(188, 112, 93, 0.55);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.adk-snapshot-label{
	display: block;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 8px;
}

.adk-snapshot-card strong{
	font-size: 20px;
	color: var(--white-color);
}

.adk-expect-icon{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(188, 112, 93, 0.15);
	color: var(--accent-color);
	margin-bottom: 16px;
}

.adk-curriculum-card{
	position: relative;
	overflow: hidden;
}

.adk-card-index{
	display: block;
	font-family: var(--accent-font);
	font-size: 28px;
	color: var(--accent-color);
	margin-bottom: 8px;
}

.adk-week-flow{
	display: grid;
	gap: 16px;
	margin: 28px 0 20px;
}

.adk-week-item h3,
.adk-expect-card h3,
.adk-curriculum-card h3,
.adk-skill-card h3,
.adk-suit-card h3,
.adk-myth-card h3,
.adk-look-item h3,
.adk-path-card h3,
.adk-why-card h3,
.adk-ask-card h3,
.adk-enroll-card h3{
	font-size: 18px;
	margin-bottom: 10px;
}

.adk-week-item p,
.adk-expect-card p,
.adk-curriculum-card p,
.adk-skill-card p,
.adk-suit-card p,
.adk-myth-card p,
.adk-look-item p,
.adk-path-card p,
.adk-why-card p,
.adk-ask-card p,
.adk-enroll-card p,
.adk-location-box p,
.adk-cta-panel p,
.adk-conclusion p{
	margin-bottom: 0;
}

.adk-myth-list,
.adk-look-list{
	display: grid;
	gap: 16px;
	margin: 28px 0 20px;
}

.adk-myth-badge{
	display: inline-block;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 30px;
	padding: 6px 12px;
	margin-bottom: 12px;
}

.adk-info-table{
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	overflow: hidden;
	margin: 20px 0 28px;
}

.adk-info-row{
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--divider-color);
}

.adk-info-row:nth-child(odd){
	background: var(--secondary-color);
}

.adk-info-row:last-child{
	border-bottom: none;
}

.adk-info-row span{
	color: var(--text-color);
}

.adk-info-row strong{
	color: var(--white-color);
}

.adk-location-box{
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	padding: 24px;
	margin: 20px 0 24px;
}

.adk-location-box i{
	color: var(--accent-color);
	font-size: 22px;
	margin-top: 4px;
}

.adk-enroll-section{
	overflow: hidden;
}

.adk-enroll-journey{
	position: relative;
	margin: 40px 0 10px;
	padding-left: 28px;
}

.adk-enroll-track{
	position: absolute;
	top: 18px;
	bottom: 18px;
	left: 27px;
	width: 2px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.adk-enroll-fill{
	display: block;
	width: 100%;
	height: 0;
	background: linear-gradient(180deg, var(--accent-color) 0%, #e8b09d 100%);
	box-shadow: 0 0 14px rgba(188, 112, 93, 0.8);
	transition: height 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.adk-enroll-journey.is-active .adk-enroll-fill{
	height: 100%;
}

.adk-enroll-step{
	position: relative;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	align-items: start;
	margin-bottom: 28px;
	opacity: 0;
	transform: translateX(40px);
}

.adk-enroll-step:nth-child(odd){
	transform: translateX(-40px);
}

.adk-enroll-journey.is-active .adk-enroll-step{
	animation: adkStepReveal 0.8s ease forwards;
}

.adk-enroll-journey.is-active .adk-enroll-step:nth-child(2){ animation-delay: 0.15s; }
.adk-enroll-journey.is-active .adk-enroll-step:nth-child(3){ animation-delay: 0.35s; }
.adk-enroll-journey.is-active .adk-enroll-step:nth-child(4){ animation-delay: 0.55s; }
.adk-enroll-journey.is-active .adk-enroll-step:nth-child(5){ animation-delay: 0.75s; }
.adk-enroll-journey.is-active .adk-enroll-step:nth-child(6){ animation-delay: 0.95s; }

.adk-enroll-node{
	position: relative;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.adk-enroll-ring{
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px dashed var(--accent-color);
	animation: adkRingSpin 8s linear infinite;
	opacity: 0.55;
}

.adk-enroll-num{
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-color);
	border: 2px solid var(--accent-color);
	color: var(--white-color);
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 0 0 0 rgba(188, 112, 93, 0.45);
}

.adk-enroll-journey.is-active .adk-enroll-num{
	animation: adkPulse 2.4s ease-in-out infinite;
}

.adk-enroll-card{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	padding: 22px 24px;
	position: relative;
	overflow: hidden;
}

.adk-enroll-card::after{
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 70%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(188, 112, 93, 0.18), transparent);
}

.adk-enroll-journey.is-active .adk-enroll-card::after{
	animation: adkShine 1.4s ease forwards;
}

@keyframes adkStepReveal{
	from{
		opacity: 0;
		transform: translateX(40px) scale(0.96);
	}
	to{
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes adkRingSpin{
	from{ transform: rotate(0deg); }
	to{ transform: rotate(360deg); }
}

@keyframes adkPulse{
	0%{ box-shadow: 0 0 0 0 rgba(188, 112, 93, 0.5); }
	70%{ box-shadow: 0 0 0 12px rgba(188, 112, 93, 0); }
	100%{ box-shadow: 0 0 0 0 rgba(188, 112, 93, 0); }
}

@keyframes adkShine{
	0%{ left: -120%; }
	100%{ left: 140%; }
}

.adk-cta-panel,
.adk-conclusion{
	background: #151515;
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	padding: 32px;
	margin-top: 40px;
}

.adk-cta-panel h2,
.adk-conclusion h2{
	font-size: 28px;
	margin-bottom: 16px;
}

.adk-cta-panel h3{
	font-size: 20px;
	margin: 18px 0 12px;
}

.adk-cta-meta{
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 10px 18px !important;
	list-style: none;
	padding: 0;
	margin: 20px 0 8px !important;
}

.adk-beautician-page .adk-cta-meta li{
	width: 100%;
	padding-left: 0;
	color: var(--text-color);
}

.adk-beautician-page .adk-cta-meta li::before{
	display: none;
}

.adk-cta-note{
	margin-top: 16px !important;
	opacity: 0.85;
}

.adk-beautician-page .faq-accordion a{
	color: var(--accent-color);
}

@media (max-width: 991px){
	.adk-beautician-page .service-entry h1,
	.adk-beautician-page h1{
		font-size: 30px;
	}

	.adk-beautician-page .service-entry h2{
		font-size: 26px;
	}
}

@media (max-width: 767px){
	.adk-snapshot-grid,
	.adk-expect-grid,
	.adk-curriculum-grid,
	.adk-skill-grid,
	.adk-suit-grid,
	.adk-path-grid,
	.adk-why-grid,
	.adk-ask-grid,
	.adk-cta-meta{
		grid-template-columns: 1fr;
	}

	.adk-enroll-journey{
		padding-left: 8px;
	}

	.adk-enroll-step{
		grid-template-columns: 44px 1fr;
		gap: 12px;
	}

	.adk-action-bar{
		flex-direction: column;
		width: 250px;
        margin-left: 30px;
	}

	.adk-action-btn{
		justify-content: center;
		width: 250px;
        margin-left: -40px;
	}

	.adk-info-row{
		flex-direction: column;
	}
}

/* Course Detail Table */
.course-detail-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    overflow: hidden;
    border-radius: 10px;
    font-size: 16px;
}

.course-detail-table th,
.course-detail-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Header */
.course-detail-table thead th {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
}

/* Table Body */
.course-detail-table tbody td {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* First Column */
.course-detail-table tbody td:first-child {
    font-weight: 600;
    color: var(--accent-color);
}

/* Remove last border */
.course-detail-table tbody tr:last-child td {
    border-bottom: none;
}

/* Hover */
.course-detail-table tbody tr:hover td {
    background-color: #ffffff42;
    color: var(--text-color);
}

.course-detail-table tbody tr:hover td:first-child {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 767px) {
    .course-detail-table {
        font-size: 14px;
    }

    .course-detail-table th,
    .course-detail-table td {
        padding: 12px 10px;
    }
}



.section-title-text{
	font-size: 76px !important;
}

.section-title-banner{
    font-size: 72px !important;
}

@media (max-width: 991px){
	.section-title-banner{
		font-size: 36px !important;
	}

	.section-title-text{
		font-size: 32px !important;
	}

	.header-top-bar{
		padding: 8px 0;
	}
}

@media (max-width: 767px){
	.section-title-banner{
		font-size: 28px !important;
	}

	.section-title-text{
		font-size: 24px !important;
	}

	.page-header{
		min-height: 220px;
		padding: 40px 0;
	}

	.header-top-contact{
		justify-content: center;
		gap: 6px 10px;
	}

	.header-top-contact a{
		font-size: 11px;
		gap: 5px;
	}
}

@media (max-width: 480px){
	.section-title-banner{
		font-size: 24px !important;
	}

	.header-top-contact a{
		font-size: 10px;
	}

	.navbar-brand img{
		max-height: 40px;
	}
}

.adk-instagram-reels{
	padding: 80px 0 90px;
	background: #10120f;
}

.adk-reels-grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 330px));
	justify-content: center;
	gap: 28px;
}

.adk-reel-card{
	position: relative;
	width: 100%;
	max-width: 330px;
	margin: 0 auto;
	background: #141414;
	border: 1px solid var(--divider-color);
	border-radius: 18px;
	overflow: hidden;
}

.adk-reel-crop{
	position: relative;
	width: 100%;
	height: 560px;
	overflow: hidden;
	background: #141414;
}

.adk-reel-video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #141414;
	cursor: pointer;
}

.adk-reel-open{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 12px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: #111;
}

.adk-reel-open:hover,
.adk-reel-open:focus{
	color: #fff;
	background: #111;
}

@media (max-width: 991px){
	.adk-reels-grid{
		grid-template-columns: minmax(0, 330px);
		max-width: 330px;
		margin: 0 auto;
	}

	.adk-reel-crop{
		height: 520px;
	}

	.adk-instagram-reels{
		padding: 60px 0;
	}
}

/************************************/
/***     ADK Home page layout     ***/
/************************************/

body.adk-home-page{
	background: #0b0b0b;
}

body.adk-home-page header.main-header .header-sticky{
	background: #0b0b0b;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

body.adk-home-page .main-menu ul li a{
	color: #fff;
}

body.adk-home-page .main-menu ul li a:hover,
body.adk-home-page .main-menu ul li a:focus{
	color: #fff;
}

body.adk-home-page .navbar-brand img{
	filter: brightness(0) invert(1);
}

body.adk-home-page .main-menu ul ul li a{
	color: var(--bg-color);
}

.adk-home .adk-hero{
	height: auto;
	min-height: 0;
	align-content: unset;
	padding: 12px 16px 8px;
	background: #0b0b0b;
	overflow: hidden;
}

.adk-home .adk-hero::before{
	display: none;
}

.adk-hero-stage{
	position: relative;
	height: calc(100vh - 108px);
	min-height: 640px;
	border-radius: 28px;
	overflow: hidden;
	background: #111;
}

.adk-hero-slider,
.adk-hero-slider .swiper{
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
}

.adk-hero-slider .swiper-slide,
.adk-hero-slide-img{
	height: 100%;
	width: 100%;
}

.adk-hero-slide-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transform: scale(1.06);
	animation: adkKenBurns 10s ease-in-out infinite alternate;
}

@keyframes adkKenBurns{
	from{ transform: scale(1.06) translateX(0); }
	to{ transform: scale(1.16) translateX(-2%); }
}

.adk-hero-gridlines{
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 1px, transparent 1px, transparent calc(100% / 6));
}

.adk-hero-vignette{
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.08) 28%, rgba(0,0,0,0.12) 62%, rgba(0,0,0,0.55) 100%);
}

.adk-hero-overlay{
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px 72px 32px 36px;
	pointer-events: none;
}

.adk-hero-topbar a,
.adk-hero-pills a,
.adk-hero-trust{
	pointer-events: auto;
}

.adk-hero-btn{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 70px;
	z-index: 4;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.adk-hero-btn-prev{ left: 0; }
.adk-hero-btn-next{ right: 0; }

.adk-hero-topbar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.adk-hero-coord,
.adk-hero-mail{
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.adk-hero-coord i{
	margin-right: 8px;
	font-size: 11px;
}

.adk-hero-mail:hover{
	color: #fff;
}

.adk-hero-title{
	max-width: 11ch;
	margin: 0;
	color: #fff;
	font-size: clamp(42px, 5.6vw, 84px);
	line-height: 0.95;
	letter-spacing: -0.03em;
	text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.adk-hero-title span{
	font-family: var(--accent-font);
	font-weight: 400;
	font-style: italic;
}

.adk-hero-bottom{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.adk-hero-pills{
	display: flex;
	flex-wrap: wrap;
	max-width: 620px;
	gap: 10px;
}

.adk-hero-pills a{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.28);
	background: rgba(20,20,20,0.42);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.3s ease, transform 0.3s ease;
}

.adk-hero-pills a i{
	font-size: 11px;
	opacity: 0.8;
}

.adk-hero-pills a:hover{
	background: rgba(255,255,255,0.16);
	color: #fff;
	transform: translateY(-2px);
}

.adk-hero-trust{
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 280px;
	color: #fff;
}

.adk-hero-avatars{
	display: flex;
}

.adk-hero-avatars img{
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
	margin-left: -10px;
}

.adk-hero-avatars img:first-child{
	margin-left: 0;
}

.adk-hero-trust p{
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	text-align: left;
}

.adk-hero-side{
	position: absolute;
	top: 50%;
	right: 18px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	transform: translateY(-50%);
}

.adk-hero-pagination{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.adk-hero-pagination .swiper-pagination-bullet{
	width: 7px;
	height: 7px;
	margin: 0 !important;
	background: #fff;
	opacity: 0.35;
}

.adk-hero-pagination .swiper-pagination-bullet-active{
	opacity: 1;
	height: 22px;
	border-radius: 8px;
	background: #fff;
}

.adk-hero-scroll{
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.adk-hero-scroll:hover{
	color: #fff;
}

.adk-hero-marquee{
	position: relative;
	overflow: hidden;
	padding: 22px 0 10px;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.adk-hero-marquee-track{
	display: flex;
	align-items: center;
	width: max-content;
	gap: 0;
	animation: adk-hero-marquee 32s linear infinite;
}

.adk-hero-marquee-track:hover{
	animation-play-state: paused;
}

.adk-hero-marquee span{
	display: inline-flex;
	align-items: center;
	padding: 0 28px;
	color: #fff;
	font-family: var(--accent-font);
	font-size: clamp(26px, 3.4vw, 48px);
	font-weight: 400;
	font-style: italic;
	line-height: 1;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.adk-hero-marquee span::after{
	content: "✦";
	margin-left: 28px;
	font-size: 0.38em;
	font-style: normal;
	color: var(--accent-color);
}

@keyframes adk-hero-marquee{
	from{ transform: translate3d(0, 0, 0); }
	to{ transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce){
	.adk-hero-marquee-track{
		animation: none;
	}
}

.adk-home .adk-section-heading{
	font-size: clamp(28px, 3.4vw, 46px);
	letter-spacing: -0.02em;
	margin-bottom: 0;
}

.adk-home .adk-section-heading span{
	font-family: var(--accent-font);
	font-weight: 400;
	font-style: italic;
}

.adk-home .adk-about,
.adk-home .adk-courses-section,
.adk-home .adk-why-section,
.adk-home .adk-instagram-reels,
.adk-home .adk-gallery,
.adk-home .our-packages,
.adk-home .our-faqs,
.adk-home .our-testimonials,
.adk-home .cta-box,
.adk-home .our-blog{
	padding-top: 90px;
	padding-bottom: 90px;
}

.adk-home .adk-courses-section{
	padding-bottom: 40px;
}

.adk-home .adk-instagram-reels{
	background: #10120f;
}

.adk-home .our-faqs{
	background: #000;
}

.adk-home .section-row{
	margin-bottom: 0;
}

.adk-home .adk-sec-head{
	position: relative;
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.adk-home .adk-sec-head.is-left{
	margin-left: 0;
	margin-right: auto;
	max-width: 640px;
	text-align: left;
}

.adk-home .adk-sec-kicker{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: rgba(255,255,255,0.55);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.3s ease, opacity 0.7s ease, transform 0.7s ease;
}

.adk-home .adk-sec-kicker:hover{
	color: #fff;
}

.adk-home .adk-sec-head h1,
.adk-home .adk-sec-head h2{
	margin: 0 0 14px;
	color: #fff;
	font-size: clamp(32px, 4.4vw, 52px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.12;
}

.adk-home .adk-sec-head h1:last-child,
.adk-home .adk-sec-head h2:last-child{
	margin-bottom: 0;
}

.adk-home .adk-sec-head p{
	margin: 0 auto;
	max-width: 620px;
	color: rgba(255,255,255,0.55);
	font-size: 16px;
	line-height: 1.7;
}

.adk-home .adk-sec-head.is-left p{
	margin-left: 0;
	margin-right: 0;
}

.adk-home .our-package-content .adk-sec-head{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
	max-width: none;
}

.adk-word{
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	padding-bottom: 0.12em;
	margin-bottom: -0.12em;
}

.adk-word-inner{
	display: block;
	transform: translate3d(0, 0, 0);
	will-change: transform;
	transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: calc(var(--i, 0) * 55ms);
}

html.adk-reveal-on .adk-reveal-text:not(.is-inview) .adk-word-inner{
	transform: translate3d(0, 108%, 0);
}

html.adk-reveal-on .adk-sec-head:not(.is-inview) .adk-sec-kicker,
html.adk-reveal-on .adk-sec-head:not(.is-inview) > p{
	opacity: 0;
	transform: translate3d(0, 18px, 0);
}

.adk-home .adk-sec-head > p{
	transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
				transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.adk-home .adk-about{
	position: relative;
	background: #0b0b0b;
	scroll-margin-top: 90px;
	overflow: visible;
}

.adk-home .adk-about .container{
	position: relative;
	z-index: 2;
	max-width: 1360px;
}

.adk-about-orb{
	position: absolute;
	left: 6%;
	bottom: 70px;
	width: 90px;
	height: 90px;
	z-index: 1;
	pointer-events: none;
	perspective: 700px;
}

.adk-about-cube{
	position: relative;
	width: 86px;
	height: 86px;
	transform-style: preserve-3d;
	animation: adk-cube-spin 14s linear infinite;
}

.adk-about-cube span{
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.03);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.adk-about-cube span:nth-child(1){ transform: rotateY(0deg) translateZ(43px); }
.adk-about-cube span:nth-child(2){ transform: rotateY(90deg) translateZ(43px); }
.adk-about-cube span:nth-child(3){ transform: rotateY(180deg) translateZ(43px); }
.adk-about-cube span:nth-child(4){ transform: rotateY(-90deg) translateZ(43px); }
.adk-about-cube span:nth-child(5){ transform: rotateX(90deg) translateZ(43px); }
.adk-about-cube span:nth-child(6){ transform: rotateX(-90deg) translateZ(43px); }

@keyframes adk-cube-spin{
	from{ transform: rotateX(-22deg) rotateY(28deg); }
	to{ transform: rotateX(338deg) rotateY(388deg); }
}

@keyframes adk-about-rise{
	from{ opacity: 0; transform: translate3d(0, 64px, 0); }
	to{ opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes adk-about-left{
	from{ opacity: 0; transform: translate3d(-72px, 24px, 0); }
	to{ opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes adk-about-right{
	from{ opacity: 0; transform: translate3d(72px, 24px, 0); }
	to{ opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes adk-about-clip{
	from{ clip-path: inset(20% 12% 20% 12% round 22px); }
	to{ clip-path: inset(0% 0% 0% 0% round 22px); }
}

@keyframes adk-about-zoom{
	from{ transform: scale(1.22) translate3d(0, 8%, 0); }
	to{ transform: scale(1) translate3d(0, 0, 0); }
}

.adk-about-stage{
	min-height: 0;
}

.adk-about-grid{
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.85fr 1.15fr 0.95fr;
	gap: 36px;
	align-items: start;
}

.adk-about-col{
	position: relative;
}

.adk-about-kicker{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.adk-about-kicker i{
	font-size: 11px;
}

.adk-about-kicker:hover{
	color: #fff;
}

.adk-about-lead{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 18px 20px;
	margin: 0 0 64px;
}

.adk-about-lead h1{
	flex: 1 1 68%;
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 5.2vw, 72px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.035em;
}

.adk-about-lead h1 span{
	font-family: var(--accent-font);
	font-weight: 500;
	font-style: italic;
}

.adk-about-cta{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: 0;
	padding: 12px 22px;
	border: 1px solid rgba(255,255,255,0.28);
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	vertical-align: middle;
	white-space: nowrap;
}

.adk-about-cta:hover{
	color: #111;
	background: #fff;
}

.adk-about-intro{
	max-width: 280px;
	padding-top: 0;
}

.adk-about-mark{
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	border-radius: 10px;
	background: var(--accent-color);
}

.adk-about-mark img{
	width: 26px;
	filter: brightness(0) invert(1);
}

.adk-about-intro p{
	color: #d7d7d7;
	font-size: 16px;
	line-height: 1.55;
	margin-bottom: 28px;
	text-align: left;
}

.adk-about-people{
	display: flex;
	align-items: center;
	gap: 12px;
}

.adk-about-avatars{
	display: flex;
}

.adk-about-avatars img{
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #0b0b0b;
	margin-left: -10px;
}

.adk-about-avatars img:first-child{
	margin-left: 0;
}

.adk-about-people span{
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.adk-about-list{
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.adk-about-list li{
	position: relative;
	padding: 12px 0 12px 22px;
	border-top: 1px solid rgba(255,255,255,0.12);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
}

.adk-about-list li:last-child{
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.adk-about-list li::before{
	content: '';
	position: absolute;
	left: 0;
	top: 19px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent-color);
}

.adk-about-main-copy{
	margin-top: 28px;
}

.adk-about-main-copy h2{
	margin-bottom: 10px;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.adk-about-main-copy p{
	color: #cfcfcf;
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	text-align: left;
}

.adk-about-main-photo{
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	height: 430px;
	min-height: 430px;
}

.adk-about-photo-move{
	width: 100%;
	height: 132%;
	will-change: transform;
}

.adk-about-main-photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
	display: block;
	will-change: transform;
}

.adk-about-side h2{
	margin-bottom: 16px;
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.adk-about-side p{
	color: #cfcfcf;
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 28px;
	text-align: left;
}

.adk-about-side-photo{
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	height: 350px;
	will-change: clip-path;
}

.adk-about-side-photo .adk-about-photo-move{
	height: 136%;
}

.adk-about-side-photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	will-change: transform;
}

.adk-about-branches{
	margin-top: 56px;
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,0.12);
}

.adk-about-branches-kicker{
	display: inline-block;
	margin-bottom: 22px;
	color: rgba(255,255,255,0.55);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.adk-about-branch-grid{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.adk-about-branch{
	padding: 22px 20px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 18px;
	background: rgba(255,255,255,0.04);
}

.adk-about-branch i{
	display: block;
	margin-bottom: 14px;
	color: var(--accent-color);
	font-size: 16px;
}

.adk-about-branch h3{
	margin: 0 0 8px;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.adk-about-branch p{
	margin: 0;
	color: rgba(255,255,255,0.62);
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
}

.adk-about-scroll-image{
	transform-origin: center center;
	backface-visibility: hidden;
}

.adk-about-armed .adk-about-kicker:not(.adk-anim-in),
.adk-about-armed .adk-about-lead:not(.adk-anim-in),
.adk-about-armed .adk-about-mark:not(.adk-anim-in),
.adk-about-armed .adk-about-intro > p:not(.adk-anim-in),
.adk-about-armed .adk-about-people:not(.adk-anim-in),
.adk-about-armed .adk-about-list li:not(.adk-anim-in),
.adk-about-armed .adk-about-main-copy:not(.adk-anim-in),
.adk-about-armed .adk-about-side > h2:not(.adk-anim-in),
.adk-about-armed .adk-about-side > p:not(.adk-anim-in),
.adk-about-armed .adk-about-branches-kicker:not(.adk-anim-in),
.adk-about-armed .adk-about-branch:not(.adk-anim-in){
	opacity: 0;
}

.adk-about-armed .adk-about-main-photo:not(.adk-anim-in),
.adk-about-armed .adk-about-side-photo:not(.adk-anim-in){
	clip-path: inset(20% 12% 20% 12% round 22px);
}

.adk-about-kicker.adk-anim-in{
	animation: adk-about-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.adk-about-lead.adk-anim-in{
	animation: adk-about-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}

.adk-about-mark.adk-anim-in,
.adk-about-intro > p.adk-anim-in,
.adk-about-people.adk-anim-in{
	animation: adk-about-left 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.adk-about-intro > p.adk-anim-in{ animation-delay: 0.1s; }
.adk-about-people.adk-anim-in{ animation-delay: 0.18s; }

.adk-about-list li.adk-anim-in{
	animation: adk-about-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.adk-about-list li:nth-child(1).adk-anim-in{ animation-delay: 0.22s; }
.adk-about-list li:nth-child(2).adk-anim-in{ animation-delay: 0.32s; }
.adk-about-list li:nth-child(3).adk-anim-in{ animation-delay: 0.42s; }

.adk-about-branches-kicker.adk-anim-in,
.adk-about-branch.adk-anim-in{
	animation: adk-about-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.adk-about-branch:nth-child(1).adk-anim-in{ animation-delay: 0.08s; }
.adk-about-branch:nth-child(2).adk-anim-in{ animation-delay: 0.16s; }
.adk-about-branch:nth-child(3).adk-anim-in{ animation-delay: 0.24s; }
.adk-about-branch:nth-child(4).adk-anim-in{ animation-delay: 0.32s; }

.adk-about-main-copy.adk-anim-in{
	animation: adk-about-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.adk-about-side > h2.adk-anim-in,
.adk-about-side > p.adk-anim-in{
	animation: adk-about-right 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.adk-about-side > p.adk-anim-in{ animation-delay: 0.12s; }

.adk-about-main-photo.adk-anim-in,
.adk-about-side-photo.adk-anim-in{
	animation: adk-about-clip 1.2s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.adk-about-main-photo.adk-anim-in .adk-about-scroll-image,
.adk-about-side-photo.adk-anim-in .adk-about-scroll-image{
	animation: adk-about-zoom 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce){
	.adk-about-cube{
		animation: none;
	}

	.adk-about-armed .adk-about-kicker:not(.adk-anim-in),
	.adk-about-armed .adk-about-lead:not(.adk-anim-in),
	.adk-about-armed .adk-about-mark:not(.adk-anim-in),
	.adk-about-armed .adk-about-intro > p:not(.adk-anim-in),
	.adk-about-armed .adk-about-people:not(.adk-anim-in),
	.adk-about-armed .adk-about-list li:not(.adk-anim-in),
	.adk-about-armed .adk-about-main-copy:not(.adk-anim-in),
	.adk-about-armed .adk-about-side > h2:not(.adk-anim-in),
	.adk-about-armed .adk-about-side > p:not(.adk-anim-in),
	.adk-about-armed .adk-about-branches-kicker:not(.adk-anim-in),
	.adk-about-armed .adk-about-branch:not(.adk-anim-in),
	.adk-about-kicker.adk-anim-in,
	.adk-about-lead.adk-anim-in,
	.adk-about-mark.adk-anim-in,
	.adk-about-intro > p.adk-anim-in,
	.adk-about-people.adk-anim-in,
	.adk-about-list li.adk-anim-in,
	.adk-about-main-copy.adk-anim-in,
	.adk-about-side > h2.adk-anim-in,
	.adk-about-side > p.adk-anim-in,
	.adk-about-main-photo.adk-anim-in,
	.adk-about-side-photo.adk-anim-in,
	.adk-about-main-photo.adk-anim-in .adk-about-scroll-image,
	.adk-about-side-photo.adk-anim-in .adk-about-scroll-image{
		opacity: 1;
		transform: none;
		clip-path: none;
		animation: none;
	}

	.adk-about-main-photo,
	.adk-about-side-photo{
		clip-path: none;
	}

	.adk-about-scroll-image{
		transform: none;
		opacity: 1;
	}

	.adk-about-photo-move{
		transform: none;
		height: 100%;
	}
}

.adk-about-up{
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #1a1a1a;
	color: #fff;
	font-size: 16px;
}

.adk-about-up:hover{
	background: #fff;
	color: #111;
}

.adk-about-photos{
	margin-right: 0;
}

.adk-stats{
	padding: 0 0 80px;
}

.adk-stats-track{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.adk-stat-card{
	border: 1px solid var(--divider-color);
	border-radius: 18px;
	padding: 28px 22px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
}

.adk-stat-card h3{
	font-size: 36px;
	margin-bottom: 8px;
	color: var(--accent-color);
}

.adk-stat-card p{
	margin: 0;
}

.adk-courses .services-slider{
	padding: 20px 48px 10px;
}

.adk-home .adk-reels-slider .swiper-slide{
	height: auto;
}

.adk-home .adk-reels-slider .adk-reel-card{
	max-width: none;
}

.adk-home .our-package-item{
	transition: transform 0.45s ease, border-color 0.45s ease;
}

.adk-home .our-package-item:hover{
	transform: translateX(10px);
}

.adk-home .cta-box{
	position: relative;
	overflow: hidden;
}

.adk-home .cta-box-content{
	animation: adkSlideUp 0.9s ease both;
	text-align: center;
	max-width: 860px;
	margin: 0 auto;
}

.adk-home .cta-box .adk-sec-head{
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 28px;
	max-width: 820px;
	text-align: center;
}

.adk-home .cta-box .adk-sec-head p{
	margin-left: auto;
	margin-right: auto;
}

.adk-home .cta-box .cta-contact-list,
.adk-home .cta-box .cta-content-footer,
.adk-home .cta-box .cta-content-btn{
	text-align: center;
	justify-content: center;
}

@keyframes adkSlideUp{
	from{ opacity: 0; transform: translateY(30px); }
	to{ opacity: 1; transform: translateY(0); }
}

@media (max-width: 1199px){
	.adk-hero-stage{
		height: calc(100vh - 96px);
		min-height: 560px;
	}

	.adk-hero-overlay{
		padding: 22px 56px 24px 22px;
	}

	.adk-hero-title{
		max-width: 12ch;
		font-size: clamp(32px, 6vw, 56px);
	}

	.adk-hero-bottom{
		flex-direction: column;
		align-items: flex-start;
	}

	.adk-about-stage{
		min-height: 0;
	}

	.adk-about-col{
		position: static;
		top: auto;
	}

	.adk-about-orb{
		display: block;
	}

	.adk-about-grid{
		grid-template-columns: 1fr 1fr;
		min-height: 0;
	}

	.adk-about-intro{
		max-width: none;
		grid-column: 1 / -1;
	}

	.adk-about-branch-grid{
		grid-template-columns: 1fr 1fr;
	}

	.adk-stats-track{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px){
	.adk-home .adk-hero{
		padding: 8px 10px 18px;
	}

	.adk-hero-stage{
		height: auto;
		min-height: 78vh;
		border-radius: 20px;
	}

	.adk-hero-overlay{
		padding: 16px 18px 18px;
	}

	.adk-hero-topbar{
		flex-direction: column;
		align-items: flex-start;
	}

	.adk-hero-mail{
		font-size: 11px;
	}

	.adk-hero-side{
		display: none;
	}

	.adk-hero-btn{
		width: 48px;
	}

	.adk-about-stage{
		min-height: 0;
	}

	.adk-about-col{
		position: static;
	}

	.adk-about-grid{
		grid-template-columns: 1fr;
		gap: 28px;
		min-height: 0;
	}

	.adk-about-lead{
		margin-bottom: 36px;
	}

	.adk-about-main-photo{
		min-height: 280px;
		height: 280px;
	}

	.adk-about-main-photo img{
		min-height: 0;
		height: 100%;
	}

	.adk-about-branch-grid{
		grid-template-columns: 1fr;
	}

	.adk-courses .services-slider{
		padding: 10px 0;
	}

	.adk-stats-track{
		grid-template-columns: 1fr 1fr;
	}
}




/* why choose us */

/* =========================================================
   RESET FOR THIS SECTION
========================================================= */

.adk-why-section,
.adk-why-section * {
    box-sizing: border-box;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.adk-why-section {
    position: relative;
    width: 100%;
    min-height: 0;
    background: #080908;
    color: #ffffff;
    padding: 100px 0 120px;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.adk-why-container {

    width: min(1450px, 92%);

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   HEADER
========================================================= */

.adk-why-header {
    position: relative;
    max-width: 850px;
    margin-bottom: 60px;
    opacity: 1;
    transform: none;
    animation: none;
}


@keyframes adk-header-show {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* LABEL */

.adk-why-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 27px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.7px;
}


.adk-why-label b {

    font-size: 18px;

    font-weight: 400;

    line-height: 1;
}


/* HEADING */

.adk-why-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
}


/* DESCRIPTION */

.adk-why-header p {

    max-width: 620px;

    margin: 32px 0 0;

    color: rgba(255,255,255,0.55);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   ORISA-STYLE STAGGERED CARDS
========================================================= */

.adk-why-bento{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	align-items: start;
}

.adk-why-tile{
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 540px;
	background: #111111;
	border-radius: 28px;
	overflow: hidden;
	color: #fff;
}

.adk-why-tile:nth-child(2){
	margin-top: 92px;
}

.adk-why-tile:nth-child(4){
	margin-top: 48px;
}

.adk-why-tile-photo{
	justify-content: flex-end;
}

.adk-why-tile-photo > img{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--adk-why-img-x, 50%) var(--adk-why-img-y, 50%);
	transform: scale(var(--adk-why-img-zoom, 1.04));
	transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.adk-why-tile-photo::after{
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.08) 28%, rgba(0,0,0,0.78) 100%);
	pointer-events: none;
}

.adk-why-tile-body,
.adk-why-tile-foot{
	text-align: center;
	padding: 28px 22px 24px;
}

.adk-why-tile-photo .adk-why-tile-body{
	position: relative;
	z-index: 1;
	padding: 28px 24px 32px;
}

.adk-why-tile-foot{
	padding-top: 22px;
	padding-bottom: 28px;
}

.adk-why-tile-foot h3{
	font-size: 22px;
	margin-bottom: 8px;
}

.adk-why-icon{
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	margin: 0 auto 18px;
	color: #fff;
	font-size: 22px;
}

.adk-why-tile h3{
	margin: 0 0 12px;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	text-align: center;
}

.adk-why-tile p{
	margin: 0 auto;
	max-width: 280px;
	color: rgba(255,255,255,0.72);
	font-size: 15px;
	line-height: 1.55;
	text-align: center;
}

.adk-why-tile-media{
	height: var(--adk-why-media-h, 230px);
	margin-top: auto;
	overflow: hidden;
}

.adk-why-tile-top .adk-why-tile-media{
	height: var(--adk-why-media-h, 220px);
	margin-top: 0;
}

.adk-why-tile-top .adk-why-tile-body{
	padding-top: 26px;
}

.adk-why-tile-media img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--adk-why-img-x, 50%) var(--adk-why-img-y, 50%);
	transform: scale(var(--adk-why-img-zoom, 1));
	transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.adk-why-tile:hover .adk-why-tile-photo > img,
.adk-why-tile:hover .adk-why-tile-media img{
	transform: scale(calc(var(--adk-why-img-zoom, 1) * 1.08));
}

.adk-why-tile.is-inview{
	animation: none;
}

.adk-why-tile:nth-child(1){ transition-delay: 0.15s; }
.adk-why-tile:nth-child(2){ transition-delay: 0.42s; }
.adk-why-tile:nth-child(3){ transition-delay: 0.7s; }
.adk-why-tile:nth-child(4){ transition-delay: 0.98s; }

@keyframes adk-why-tile-in{
	from{
		opacity: 0;
		transform: translate3d(0, 28px, 0);
	}
	to{
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.adk-why-header.is-inview{
	animation: none;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.adk-why-layout {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 0.9fr;
    gap: 36px;
    align-items: start;
}


/* =========================================================
   LEFT FEATURES
========================================================= */

.adk-why-feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 1;
    transform: none;
}


.adk-why-feature.active {

    opacity: 1;

	transform: translateY(0) scale(1);
}


/* =========================================================
   FEATURE 01
========================================================= */

.feature-one {
    left: auto;
    top: auto;
    width: auto;
}


/* =========================================================
   FEATURE 02
========================================================= */

.feature-two {
    left: auto;
    top: auto;
    width: auto;
    margin-top: 110px;
}


/* =========================================================
   PILL IMAGE
========================================================= */

.adk-pill-image {

    position: relative;

    flex: 0 0 110px;

    width: 110px;

    height: 285px;

    overflow: hidden;

    border-radius: 60px;

    background: #171917;

	transform: none;
}


.adk-why-feature.active .adk-pill-image {

	transform: scale(1) rotate(0deg);
}


/* =========================================================
   IMAGE
========================================================= */

.adk-pill-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

	transform: none;
}


.adk-why-feature.active
.adk-pill-image img {

    transform: scale(1);
}


/* =========================================================
   NUMBER
========================================================= */

.adk-pill-number {

    position: absolute;

    top: 18px;

    left: 50%;

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #070807;

    color: #ffffff;

    font-size: 17px;

    font-weight: 500;

    transform: translateX(-50%);
}


.adk-why-feature.active
.adk-pill-number {

    transform:
        translateX(-50%)
        scale(1);
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.adk-feature-content {
    width: auto;
    flex: 1;
    margin-left: 0;
    margin-top: 24px;
    opacity: 1;
    transform: none;
}


.adk-why-feature.active
.adk-feature-content {

    opacity: 1;

    transform: translateX(0);
}


/* TITLE */

.adk-feature-content h3 {

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 600;

    letter-spacing: -0.5px;
}


/* TEXT */

.adk-feature-content p {

    margin: 0;

    color: rgba(255,255,255,0.55);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   DIVIDER
========================================================= */

.adk-divider {

    display: block;

    width: 100%;

    max-width: 190px;

    height: 1px;

    margin-top: 24px;

    background: rgba(255,255,255,0.55);

    transform: scaleX(1);
}


.adk-why-feature.active
.adk-divider {

    transform: scaleX(1);
}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.adk-why-right {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* =========================================================
   RIGHT ITEMS
========================================================= */

.adk-right-item {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    opacity: 1;
    transform: none;
    padding-bottom: 18px;
}


.adk-right-item.active {

    opacity: 1;

	transform: translateY(0) scale(1);
}


/* =========================================================
   RIGHT ITEM POSITIONS
========================================================= */

.right-one,
.right-two,
.right-three {
    top: auto;
}

.adk-why-btn {
    margin-top: 6px;
    align-self: flex-start;
}


/* =========================================================
   RIGHT HEADINGS
========================================================= */

.adk-right-item h3 {

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 600;

    letter-spacing: -0.5px;
}


/* =========================================================
   RIGHT PARAGRAPHS
========================================================= */

.adk-right-item p {

    max-width: 380px;

    margin: 0;

    color: rgba(255,255,255,0.55);

    font-size: 15px;

    line-height: 1.65;
    text-align: left;
}


/* =========================================================
   RIGHT SIDE ENDING LINES
========================================================= */

.adk-right-item .adk-divider {

    width: 255px;

    max-width: 255px;

    height: 1px;

    margin-top: 25px;

    background: rgba(255,255,255,0.55);

    transform: scaleX(1);
}


.adk-right-item.active .adk-divider {

    transform: scaleX(1);
}


/* =========================================================
   RIGHT ANIMATION DELAY
========================================================= */

.right-one {

    transition-delay: 0s;
}


.right-two {

    transition-delay: 0.08s;
}


.right-three {

    transition-delay: 0.16s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {
    .adk-why-bento {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .adk-why-tile,
    .adk-why-tile:nth-child(2),
    .adk-why-tile:nth-child(4) {
        margin-top: 0;
        min-height: 480px;
    }

    .adk-why-tile:nth-child(2),
    .adk-why-tile:nth-child(4) {
        margin-top: 36px;
    }

    .adk-why-layout {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .feature-one,
    .feature-two {
        left: auto;
        margin-top: 0;
    }

    .adk-why-right {
        grid-column: 1 / -1;
        width: auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .adk-why-section {

        padding: 90px 0 120px;

    }


    .adk-why-header {

        margin-bottom: 75px;

    }


    .adk-why-header h2 {
        font-size: 36px;
    }

    .adk-why-bento {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .adk-why-tile,
    .adk-why-tile:nth-child(2),
    .adk-why-tile:nth-child(4) {
        margin-top: 0;
        min-height: 460px;
    }

    .adk-why-layout,
    .adk-why-right {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 36px;
    }

    .feature-two {
        margin-top: 0;
    }

    .adk-why-feature {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
    }

    .adk-why-right {
        position: relative;
        right: auto;
        width: auto;
    }

        gap: 80px 30px;

    }


    .adk-why-feature {

        position: relative;

        left: auto;

        top: auto;

        width: 100%;

    }


    .adk-why-right {

        position: relative;

        right: auto;

        top: auto;

        width: 100%;

        height: auto;

        display: flex;

        flex-direction: column;

        gap: 70px;

    }


    .adk-right-item {

        position: relative;

        top: auto !important;

        right: auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .adk-why-section {

        padding: 75px 0 10px;

    }


    .adk-why-container {

        width: 88%;

    }


    .adk-why-header {

        margin-bottom: 65px;

    }


    .adk-why-label {

        font-size: 12px;

    }


    .adk-why-header h2 {

        font-size: 40px;

        line-height: 1;

        letter-spacing: -1.5px;

    }


    .adk-why-header p {

        margin-top: 25px;

        font-size: 14px;

    }


    .adk-why-layout {

        display: block;

    }


    .adk-why-feature {

        position: relative;

        left: auto;

        top: auto;

        width: 100%;

        margin-bottom: 80px;

    }


    .adk-pill-image {

        flex: 0 0 90px;

        width: 90px;

        height: 230px;

    }


    .adk-pill-number {

        width: 46px;

        height: 46px;

        font-size: 14px;

    }


    .adk-feature-content {

        width: auto;

        flex: 1;

        margin-left: 22px;

        margin-top: 30px;

    }


    .adk-feature-content h3 {

        font-size: 20px;

    }


    .adk-feature-content p {

        font-size: 13px;

    }


    .adk-why-right {

        position: relative;

        top: auto;

        right: auto;

        width: 100%;

        height: auto;

        display: block;

    }


    .adk-right-item {

        position: relative;

        top: auto !important;

        right: auto;

        width: 100%;

        margin-bottom: 70px;

    }


    .adk-right-item h3 {

        font-size: 21px;

    }


    .adk-right-item p {

        font-size: 14px;

    }


    .adk-right-item .adk-divider {

        width: 220px;

    }

}


/* cources */



/* =========================================================
   ADK COURSES
   ========================================================= */

.adk-courses-section {

    position: relative;

    width: 100%;

    margin: 0;

    padding: 50px 0 10px;

    background: #10120f;

}


/* =========================================================
   CONTAINER
   ========================================================= */

.adk-courses-container {

    width: min(1380px, 90%);

    margin: 0 auto;

}


/* =========================================================
   COURSE CARD
   ========================================================= */

.adk-course-card {

    /*
     * THIS IS THE IMPORTANT PART.
     *
     * Every card sticks to the same position.
     *
     * When the next card reaches this position,
     * it covers the previous card.
     */

    position: sticky;

    top: 90px;

    width: 100%;

    height: 500px;

    margin-bottom: 120px;

    padding: 0;

    background: #080908;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 28px;

    overflow: hidden;

}


/* =========================================================
   CARD INNER
   ========================================================= */

.adk-course-card-inner {

    position: relative;

    width: 100%;

    height: 100%;

    display: grid;

    grid-template-columns: 38% 62%;

    align-items: center;

    padding: 34px;

}


/* =========================================================
   IMAGE
   ========================================================= */

.adk-course-card-image {

    position: relative;

    width: 100%;

    height: 100%;

    min-height: 430px;

    overflow: hidden;

    border-radius: 20px;

}


.adk-course-card-image a {

    display: block;

    width: 100%;

    height: 100%;

}


.adk-course-card-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.65,.2,1);

}


.adk-course-card:hover
.adk-course-card-image img {

    transform: scale(1.04);

}


/* =========================================================
   CONTENT
   ========================================================= */

.adk-course-card-content {

    padding: 0 70px;

}


/* =========================================================
   META
   ========================================================= */

.adk-course-meta {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 22px;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 2px;

    color: rgba(255,255,255,.45);

}


.adk-course-meta span:first-child {

    color: #ffffff;

}


.adk-course-meta i {

    display: block;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: rgba(255,255,255,.4);

}


/* =========================================================
   HEADING
   ========================================================= */

.adk-course-card-content h2 {

    margin: 0 0 28px;

    padding: 0;

    font-size: clamp(48px, 5vw, 82px);

    line-height: .95;

    font-weight: 500;

    letter-spacing: -4px;

}


.adk-course-card-content h2 a {

    color: #ffffff;

    text-decoration: none;

}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.adk-course-card-content p {

    max-width: 700px;

    margin: 0 0 32px;

    color: rgba(255,255,255,.58);

    font-size: 17px;

    line-height: 1.65;

}


/* =========================================================
   EXPLORE
   ========================================================= */

.adk-course-explore {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 9px;

    color: #ffffff;

    font-size: 14px;

    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,.45);

}


.adk-course-explore span {

    font-size: 19px;

    line-height: 1;

}


/* =========================================================
   CARD LAYERS
   ========================================================= */

.adk-course-card:nth-of-type(1) {

    z-index: 1;

}


.adk-course-card:nth-of-type(2) {

    z-index: 2;

}


.adk-course-card:nth-of-type(3) {

    z-index: 3;

}


.adk-course-card:nth-of-type(4) {

    z-index: 4;

}


.adk-course-card:nth-of-type(5) {

    z-index: 5;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .adk-courses-section {

        padding-top: 70px;

    }


    .adk-course-card {

        top: 70px;

        height: 560px;

        margin-bottom: 90px;

        border-radius: 24px;

    }


    .adk-course-card-inner {

        grid-template-columns: 42% 58%;

        padding: 25px;

    }


    .adk-course-card-content {

        padding: 0 35px;

    }


    .adk-course-card-content h2 {

        font-size: clamp(42px, 6vw, 65px);

        letter-spacing: -3px;

    }


    .adk-course-card-content p {

        font-size: 15px;

    }


    .adk-course-card-image {

        min-height: 500px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .adk-courses-section {

        padding: 50px 0 100px;

    }


    .adk-courses-container {

        width: 94%;

    }


    .adk-course-card {

        top: 50px;

        height: auto;

        min-height: 650px;

        margin-bottom: 70px;

        border-radius: 22px;

    }


    .adk-course-card-inner {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 28px;

        padding: 20px;

    }


    .adk-course-card-image {

        width: 100%;

        height: 310px;

        min-height: 310px;

        flex-shrink: 0;

        border-radius: 17px;

    }


    .adk-course-card-content {

        padding: 5px 10px 25px;

    }


    .adk-course-meta {

        margin-bottom: 16px;

    }


    .adk-course-card-content h2 {

        margin-bottom: 20px;

        font-size: 45px;

        line-height: .95;

        letter-spacing: -3px;

    }


    .adk-course-card-content p {

        margin-bottom: 25px;

        font-size: 15px;

        line-height: 1.6;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .adk-course-card {

        min-height: 620px;

    }


    .adk-course-card-image {

        height: 280px;

        min-height: 280px;

    }


    .adk-course-card-content h2 {

        font-size: 40px;

    }

}

/* Scroll reveal — Why Choose cards */
html.adk-reveal-on .adk-why-tile:not(.is-inview),
html.adk-reveal-on .adk-gallery:not(.is-inview) .adk-gallery-pills {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}

.adk-why-tile,
.adk-gallery-pills {
    opacity: 1;
    transition: opacity 2s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.adk-why-tile.is-inview,
.adk-gallery.is-inview .adk-gallery-pills {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html.adk-reveal-on .adk-why-tile:not(.is-inview),
    html.adk-reveal-on .adk-reveal-text:not(.is-inview) .adk-word-inner,
    html.adk-reveal-on .adk-sec-head:not(.is-inview) .adk-sec-kicker,
    html.adk-reveal-on .adk-sec-head:not(.is-inview) > p,
    .adk-why-tile,
    .adk-word-inner,
    .adk-home .adk-sec-kicker,
    .adk-home .adk-sec-head > p {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

.floating-tab{
	position: fixed;
	right: 18px;
	bottom: 22px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.floating-button{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 8px 22px rgba(0,0,0,0.22);
	text-decoration: none;
	transition: transform 0.25s ease;
}

.floating-button:hover{
	transform: scale(1.08);
}

.floating-button img{
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.floating-button.pulse{
	animation: adk-float-pulse 2s infinite;
}

@keyframes adk-float-pulse{
	0%{ box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
	70%{ box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
	100%{ box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 767px){
	.floating-tab{
		right: 12px;
		bottom: 16px;
		gap: 10px;
	}

	.floating-button{
		width: 50px;
		height: 50px;
	}

	.floating-button img{
		width: 28px;
		height: 28px;
	}
}