:root{
	--primary-color			: #262626;
	--secondary-color		: #F9F9F9;
	--text-color			: #838383;
	--accent-color			: #9B9A84;
	--white-color			: #FFFFFF;
	--divider-color			: #EEEDED;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Sora", sans-serif;
	--accent-font			: "Marcellus", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.1em;
	color: var(--primary-color);
}

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;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.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;
    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: 15px;
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	background: #5176BF;
	background: linear-gradient(180deg,rgba(81, 118, 191, 1) 0%, rgba(0, 51, 153, 1) 50%, rgba(0, 51, 153, 1) 100%);
	color: var(--white-color);
	border-radius: 10px;
	padding: 16px 18px;
	border: none;
	overflow: hidden;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}


.btn-default::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted{
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	padding: 15px 20px;
}

.btn-default.btn-highlighted:hover{
	color: var(--white-color);
}

.readmore-btn{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-accent.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
	color: var(--primary-color);
}

.readmore-btn:hover:before{
	filter: brightness(0) invert(0);
}


.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--primary-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: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-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);
	}
}

.section-row{
	margin-bottom: 30px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	margin-bottom: 40px;
}

.section-title-content p{
	margin: 0;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
    font-weight: 500;
	line-height: 1.1em;
	letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
	padding-left: 18px;
    margin-bottom: 15px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
	border-radius: 50%;
    width: 8px;
    height: 8px;
}

.section-title h1{
	font-size: 70px;
	font-weight: 400;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 48px;
	font-weight: 400;
	color:#003399;
	margin-bottom: 0;
	cursor: none;
}

.section-title p{
	margin-top: 30px;
	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: relative;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	border-bottom: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

header.main-header .header-sticky.active::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
}

.navbar{
	padding: 24px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-family: var(--accent-font);
	font-size: 17px;
	font-weight: 400;
	padding: 14px 14px !important;
	color: var(--white-color);
	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: 14px;
	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: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(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(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.header-btn{
	margin-left: 20px;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-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-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-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(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	margin-top: -116px;
}

.hero::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background:#FFF;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 260px 0 120px 0;
	min-height: 105vh;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(38, 38, 38, 0.3) 64.59%, #262626 101.91%), linear-gradient(270deg, rgba(38, 38, 38, 0) 44.72%, #262626 117.07%), linear-gradient(180deg, rgba(38, 38, 38, 0) 68.75%, rgba(38, 38, 38, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 80px;
	text-align: right;
	padding-right: calc(((105vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	width: 100%;
	max-width: 640px;
	z-index: 2;
}

.hero-content .section-title p,
.hero-content .section-title h1,
.hero-content .section-title h3{
	color: var(--white-color);
}

.hero-content .section-title h3::before{
	background: var(--white-color);
}

.hero-content-body{
	display: flex;
	align-items: center;
}

.hero-btn{
	margin-right: 20px;
}

.hero-client-box{
	display: flex;
	align-items: center;
}

.hero-client-box .customer-images{
	margin-right: 20px;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img{
	position: relative;
	display: inline-block;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
	width: 50px;
	height: 50px;
	z-index: 1;
}

.customer-img:first-child{
    margin: 0;
}

.customer-img figure{
    display: block;
}

.customer-img img{
    max-width: 100%;
    border-radius: 50%;
}

.customer-img.add-more{
	width: 52px;
	height: 52px;
	background-color: var(--accent-color);
	text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img.add-more p{
	font-family: var(--accent-font);
	color: var(--white-color);
	margin: 0;
}

.hero-client-content p{
	color: var(--white-color);
	margin: 0;
}

.hero-list{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 180px;
	padding: 60px 0 0;
	z-index: 1;
}

.hero-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
}

.hero-list ul li{
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	color: var(--white-color);
	padding-left: 34px;
}

.hero-list ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--white-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.introduction{
	background:#fff;
	padding: 60px 0px;
}

.introduction p {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  text-align: center;
}

.policies{
	background:#f9f9f9;
	padding: 90px 0px;
}

.policies p {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom:0px;
}

:root {
--d: 700ms;
--e: cubic-bezier(0.19, 1, 0.22, 1);
}

.page-content {
display: grid;
grid-gap: 1rem;
padding: 1rem;
max-width: 1024px;
margin: 0 auto;
font-family: var(--font-sans);
}

@media (min-width: 600px) {
.page-content {
grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 800px) {
.page-content {
grid-template-columns: repeat(4, 1fr);
}
}

.card {
position: relative;
display: flex;
align-items: flex-end;
overflow: hidden;
padding: 1rem;
width: 100%;
height:340px;
margin:10px;
text-align: center;
color: whitesmoke;
background-color: whitesmoke;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

.card:after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 250%;
pointer-events: none;
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
transform: translateY(-50%);
transition: transform calc(var(--d) * 2) var(--e);
}

.policy_pic1 { background-image:url(../images/policy-pic1.webp); background-size: cover;}
.policy_pic2 { background-image:url(../images/policy-pic2.webp); background-size: cover;}
.policy_pic3 { background-image:url(../images/policy-pic3.webp); background-size: cover;}
.policy_pic4 { background-image:url(../images/policy-pic4.webp); background-size: cover;}
.policy_pic5 { background-image:url(../images/policy-pic5.webp); background-size: cover;}
.policy_pic6 { background-image:url(../images/policy-pic6.webp); background-size: cover;}

.content {
align-items: center;
width: 100%;
transition: transform var(--d) var(--e);
z-index: 1;
}

.content>*+* {
margin-top: 1rem;
}

.title {
font-size: 17px;
font-weight: bold;
line-height: 24px;
color:#fff;
min-height:70px;
}

.copy {
font-size: 1.125rem;
font-style: italic;
line-height: 1.35;
text-align:left !important;
margin:5px 0 10px 0px;
}
.submit {
font-size: 0.9rem !important;
font-style: italic;
line-height: 1.2rem !important;
text-align:left !important;
margin:7px 0 10px 0px;
color: var(--primary-color);
}
.submit a{
color: var(--primary-color);
}

.btn {
cursor: pointer;
margin-top: 0;
padding: 0.75rem 1.5rem;
font-size: 0.75rem;
font-weight: bold;
letter-spacing: 0.025rem;
text-transform: uppercase;
color: #01438d !important;
background-color: #f9c301;
border: none;
}

.btn:hover {
background-color: #fff;
}

.btn:focus {
outline: 1px dashed yellow;
outline-offset: 3px;
}

.content {
transform: translateY(calc(100% - 3.5rem));
text-align:left;
}

.content>*:not(.title) {
opacity: 0;
transform: translateY(1rem);
transition: transform var(--d) var(--e), opacity var(--d) var(--e);
color:#FFF;
}

.card:hover,
.card:focus-within {
align-items: center;
}

.card:hover:before,
.card:focus-within:before {
transform: translateY(-4%);
}

.card:hover:after,
.card:focus-within:after {
transform: translateY(-50%);
}

.card:hover .content,
.card:focus-within .content {
transform: translateY(0);
}

.card:hover .content>*:not(.title),
.card:focus-within .content>*:not(.title) {
opacity: 1;
transform: translateY(0);
transition-delay: calc(var(--d) / 8);
}

.card:focus-within:before,
.card:focus-within:after,
.card:focus-within .content,
.card:focus-within .content>*:not(.title) {
transition-duration: 0s;
}


ul.list_icon {
    width: 100%;
    padding: 0;
    list-style-type: none;
    margin-top: 2%;
	margin-bottom:10px;
	height:120px;
	overflow:auto;
}

ul.list_icon li {
	width: 100%;
    clear: both;
    padding-left: 20px;
	font-size:15px;
	line-height:20px;
    display: block;
    background: url(../images/round-icon.png) 0 11px no-repeat;
    font-weight: 200;
    text-align: left;
}

/*MOdal Popup*/
.modal{ right:-17px;}
.modal-open{ padding-right:0 !important; overflow:auto;}
.modal.in{ padding-right:0 !important;}
.modal-content{ float:left; width:100%; margin-top:20px; border-radius:0; box-shadow:0 0 0 10px rgba(255, 255, 255, 0.2); border: none; overflow: hidden;}
.modal-content .close{ background-color:transparent; opacity:1; padding:0; line-height:normal; margin-top:0; position: absolute; right:15px; z-index:99; top:10px; border:none;}
.modal-content .close:hover, .modal-content .close:focus{ color:#fff; opacity:1;}
.modal-dialog{ max-width:600px; width:100%; margin:10px auto 0;}
.modal-body{ float:left; width:100%; height:550px; padding:20px;}
.modal-body h1{margin:0; padding:0; margin-bottom:15px; font-weight:normal; margin-top:-20px; border-bottom:solid 1px #CCCCCC;
padding-bottom:10px; font-size:30px; color:#404040;}

.what-we-do{
	background:#f2ece8;
	padding: 90px 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.what-we-do .round-shape {
    width: 549px;
    height: 545px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.intro-video-box{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;
	padding: 0px 0px 50px;
	background:#02319b !important;
}


.intro-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-button{
	position: relative;
	z-index: 1;
}

.video-play-button a{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 30px;
	color: var(--white-color);
}

.intro-video-counter{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 90px;
	margin-top: 90px;
	margin-bottom: 30px;
	z-index: 1;
}

.video-counter-item h2{
	font-size: 50px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.video-counter-item p{
	color: var(--white-color);
	text-transform: capitalize;
	opacity: 80%;
	margin: 0;
}
.video-counter-item a{
	color: var(--white-color);
}
.video-counter-item img{
	margin-bottom:10px;
}

/************************************/
/***       24. Team Page css 	  ***/
/************************************/

.page-team{
    padding: 100px 0 70px;
}

.page-team .team-member-item{
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***      25. Team Single css 	  ***/
/************************************/

.page-team-single{
    padding: 100px 0;
}

.team-single-sidebar{
    position: sticky;
    top: 30px;
}

.team-sidebar-box{
	border-radius: 20px;
	overflow: hidden;
}

.team-sidebar-image figure{
    display: block;
}

.team-sidebar-image img{
    width: 100%;
    aspect-ratio: 1 / 0.975;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.team-single-content{
    margin-left: 30px;
}

.team-single-content h2{
    font-size: 48px;
    margin-bottom: 20px;
    cursor: none;
}

.team-single-content p{
	color: var(--primary-color);
    margin-bottom: 20px;
}

.team-single-content p:last-child{
    margin-bottom: 0;
}

.team-member-info,
.team-member-experience,
.team-member-expertise{
    margin-bottom: 60px;
}

.team-member-experience{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}



/************************************/
/***     28. Image Gallery css 	  ***/
/************************************/

.page-gallery{
	padding: 90px 0;
	background:#fff;
}

.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{
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
	border-radius: 20px;
}
/************************************/
/***    	16. Footer css		  ***/
/************************************/

.footer-cta-box{
	background: #f2f0ec;
	padding: 30px 0;
}

.footer-cta-content .section-title{
	margin-bottom: 0;
}

.footer-cta-content .section-title h2{
	color: var(--primary-color);
}

.footer-cta-btn{
	text-align: right;
}

.main-footer{
	background: var(--secondary-color);
	padding: 60px 0 0;
}

.footer-contact-box{
	align-items: center;
	gap: 50px;
	text-align:center;
}

.footer-contact-item p{
	text-transform: capitalize;
	margin-bottom: 10px;
	font-size:20px;
	line-height:26px;
	color: var(--primary-color);
}

.footer-contact-item a{
	color: var(--primary-color);
}
.footer-contact-item h3{
	font-size: 20px;
}
.footer-contact-item i{
	font-size: 26px;
}
.footer-social-links h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-social-links p{
	margin-bottom: 25px;
}


.footer-copyright{
	position: relative;
	border-top: 1px solid var(--divider-color);
	padding: 20px 0;
	margin-top: 50px;
	z-index: 1;
}


/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}
}


@media only screen and (max-width: 991px){

	.navbar{
		padding: 20px 0;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h1{
		font-size: 50px;
	}

	.section-title h2{
		font-size: 38px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.hero{
		margin-top: 0px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 240px 0 0px;
		height: 0px;
	}


	.hero-content{
		max-width: 100%;
	}

	.hero-list{
		margin-top: 90px;
		padding: 50px 0 0;
		z-index: 1;
	}

	.hero-list ul{
		gap: 20px;
	}

	.hero-list ul li{
		font-size: 14px;
		padding-left: 28px;
	}

	.hero-list ul li::before{
		font-size: 18px;
	}

}

@media only screen and (max-width: 767px){

	.btn-default{
		padding: 14px 20px;
	}

	.btn-default.btn-highlighted{
		padding: 13px 20px;
	}

	.section-row{
		margin-bottom: 30px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 22px;
		position:absolute;
		bottom:10px;
	}

	.section-title h2{
		font-size: 28px;
	}

	.hero-content-body{
		display: block;
	}

	.hero-btn{
		margin-right: 0px;
		margin-bottom: 20px;
	}

	.hero-slide .hero-content .hero-btn{
		margin-bottom: 0;
	}

	.hero-list ul{
        flex-wrap: wrap;
		gap: 10px 20px;
    }

	.hero-list ul li{
		width: calc(50% - 10px);
		font-size: 12px;
		padding-left: 26px;
	}

	.hero-list ul li::before{
		top: 4px;
        font-size: 16px;
    }
}

.about-container {
    width: 100%;
}
.about-container p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
	color: var(--primary-color);
    text-align: justify;
}
.about-container img{ border-radius:20px;}

.media-awards{
	background:#f2f0ec;
	padding: 90px 0px;
}

.media_awards_list {
    background: #ffffff;
    -webkit-box-shadow: 0px 16px 29.7px 0.3px rgba(204, 204, 204, 0.78);
    box-shadow: 0px 16px 29.7px 0.3px rgba(204, 204, 204, 0.78);
	padding:20px;
	margin:auto;
	text-align:center;
}

.media_awards_list h2{
	font-size:26px;
	line-height:32px;
	margin-bottom:10px;
}
.media_awards_list h3{
	font-size:20px;
	line-height:26px;
	margin-bottom:10px;
}
.media_awards_list p{
	margin-bottom:5px;
}


.media_awards_list img{
	margin-bottom:10px;
}

.media-block {
  padding: 15px;
  margin: 0 auto auto;
}
.media-box img {
  border-radius: 20px;
}
.owl-media .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top:2%;
}
.owl-media .owl-dot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #fecc00 !important;
  background-color: #fff !important;
}
.owl-media .owl-dot.active {
  background-color: #fecc00 !important;
}

.owl-media .owl-nav .owl-next {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	position:absolute;
	font-size:40px;
	right: 50px;
	top:50%;
}

.owl-media .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	position:absolute;
	font-size:40px;
	left: 50px;
	top:50%;
}

.awards-block {
  padding: 15px;
  margin: 0 auto auto;
}
.awards-box img {
  border-radius: 20px;
}
.owl-awards .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top:2%;
}
.owl-awards .owl-dot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #fecc00 !important;
  background-color: #fff !important;
}
.owl-awards .owl-dot.active {
  background-color: #fecc00 !important;
}


.awards_list {
    background: #ffffff;
    -webkit-box-shadow: 0px 16px 29.7px 0.3px rgba(204, 204, 204, 0.78);
	padding:10px;
	margin:auto;
	text-align:center;
}

.awards_list h3{
	font-size:18px;
	line-height:24px;
	margin-bottom:0px;
}
.awards_list p{
	font-size:13px;
	color: var(--primary-color);
	margin-top:0;
	margin-bottom:0;
}
.awards_list img{
	margin-bottom:10px;
}

.resources{background: #fff;
padding: 90px 0px;}

.resources p{
font-size:16px;
line-height:24px;
color: var(--primary-color);
text-align:center;}

.resources-item{
	height: calc(100% - 30px);
	text-align:center;
}

.resources-image{
	border-radius: 30px;
	margin-bottom: 30px;
	overflow: hidden;
}

.resources-image figure{
	display: block;
	border-radius: 20px;
}

.resources-image img{
	width: 100%;
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.resources-item:hover .resources-image img{
	transform: scale(1.1);
}

.resources-content{
	margin-bottom: 10px;
}

.resources-content h3{
	font-size: 26px;
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 10px;
	color: var(--primary-color);
	margin-bottom:15px;
}

.founders-achievements{
	background:#faf6f6;
	padding: 90px 0px;
}



@media only screen and (min-width: 320px) and (max-width: 769px) {
 .navbar {
    padding: 0px 0;
  }

.introduction,.policies,.what-we-do,.resources,.media-awards,.page-gallery,.page-team-single {
padding: 50px 0 20px;
}

.resources-image {
  margin-bottom: 15px;
}
.resources-item {
  height:auto;
  margin-bottom:30px;
}
.card { width:auto;}

.item {
  width: 100% !important;
}
.media_awards_list h2 {
  font-size: 20px;
  line-height: 26px;
}
.media_awards_list h3 {
  font-size: 17px;
  line-height: 22px;
}
.owl-media .owl-nav .owl-prev{ left:20px;}
.owl-media .owl-nav .owl-next{ right:20px;}

.hero.hero-slider-layout .hero-pagination{
    bottom: 30px;
}
.title {
font-size: 15px;
font-weight: bold;
line-height: 18px;
color:#fff;
min-height:10px;
}
ul.list_icon {
  width: 100%;
  padding: 0;
  list-style-type: none;
  margin-top: 2%;
  margin-bottom: 10px;
  height: auto;
}

 .btn-default {
    padding: 14px 20px;
  }
  
.btn-default {
  position: relative;
  display: inline-block;
  font-size: 15px;
  text-align:center;
}
.submit {
  font-size: 0.8rem !important;
  font-style: italic;
  line-height: 1rem !important;
  text-align: left !important;
  margin: 7px 0 10px 0px;
  color: var(--primary-color);
}
a.to-top-button.bp-br.bm-2 {
  bottom: 60px !important;
  right: 20px;
}
.content {
  transform: translateY(calc(100% - 2.5rem));
}
ul.list_icon li {
  font-size: 13px;
  line-height: 17px;
}
.navbar-brand {
  width: 120px;
}

.hero.hero-slider-layout .hero-slide{
  padding: 240px 0 0px;
  min-height: 320px;
}

.introduction p,.policies p,.resources p,.team-single-content p {font-size: 15px; line-height: 22px;}

.intro-video-counter {
gap: 20px;
padding-top: 25px;
margin-top: 100px;
}
.intro-video-box {
background-position: right center;
padding: 100px 15px 25px;
}
.video-counter-item h2 {
font-size: 30px;
}
.video-counter-item h2 {
font-size: 30px;
}
.video-counter-item p {
font-size: 14px;
}
.owl-media .owl-nav .owl-prev {
  top: 30%;
}
.owl-media .owl-nav .owl-next {
  top: 30%;
}

.team-single-sidebar {
position: initial;
margin-bottom: 30px;
}
.team-single-content {
margin-left: 0;
}
.team-member-info, .team-member-experience, .team-member-expertise {
margin-bottom: 30px;
}
.team-single-content h2 {
font-size: 26px;
margin-bottom: 15px;
}

.footer-cta-content {
text-align: center;
margin-bottom: 20px;
}
.footer-cta-btn {
text-align: center;
}

  
}