h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
	margin: 0;
	padding: 0;
}
* {
	margin: 0;
	padding: 0;
}
a, a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Qanelas-Regular', sans-serif;
	/*font-family: 'Anton', sans-serif;*/
	overflow-x: hidden;
}
.container{
	max-width: 1600px;
}
/*************GENRAL CLASSES START*************/
@font-face {
	font-family: 'Qanelas-Regular';
	src: url(../fonts/QanelasRegular.otf);
}
@font-face {
	font-family: 'Qanelas-Medium';
	src: url(../fonts/QanelasMedium.otf);
}
@font-face {
	font-family: 'Qanelas-Bold';
	src: url(../fonts/QanelasBold.otf);
}
@font-face {
	font-family: 'Qanelas-Semi-Bold';
	src: url(../fonts/Qanelas-Semi-Bold.otf);
}
.fBold {
	font-family: 'Qanelas-Bold';
}
.fMed {
	font-family: 'Qanelas-Medium';
}
.fReg {
	font-family: 'Qanelas-Regular';
}
.fSemi {
	font-family: 'Qanelas-Semi-Bold';
}
.relClass {
	position: relative;
}
.absClass {
	position: absolute;
}
.xy-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.xy-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.boxRadius {
	border-radius: 5px;
}
.marginAuto {
	margin: 0 auto;
}
:root {
	--color-1 : #136BAA;
	--color-2 : #fff;
	--color-3 : #282828;	
	--white : #fff;	
	--black : #000;	
}
.genBtn {
	font-family: 'Qanelas-Bold';
	width: fit-content;
	height: 60px;
	border-radius: 60px;
	background: var(--color-3);
	color: var(--white);
	transition: all .2s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	border: 0;
	padding: 0px 35px;
}
.genBtn:hover {
	color: var(--white);
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: #f4f4f4;
}
::-webkit-scrollbar-thumb {
	background: var(--color-1);
	border-radius: 10px;
}
/*************GENRAL CLASSES END*************/

/*************HEADER START*************/
.header {
	max-width: 1680px;
	width: 100%;
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	overflow: hidden;
}
.headerTop {
	background: var(--color-1);
}
.headertopRow {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 65px;
}
.headerTop .leftCol {
	display: flex;
	align-items: center;
	gap: 20px;
}
.cntctLink {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: var(--white);
}
.cntctLink:hover {
	color: var(--white);
}
.cntctLink p {
	font-family: 'Qanelas-Bold';
}
.cntctIcon {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	font-size: 14px;
	color: var(--white);
	background: #5A98C4;
}
.socialListTop {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}
.socialIcon {
	width: 40px;
	height: 40px;
	font-size: 22px;
	color: var(--white);
	border-radius: 100%;
	transition: all 0.25s;
}
.socialIcon:hover {
	background: #5A98C4;
	color: var(--white);
}
.headerMain {
	padding: 15px 65px;
	background: #EBEBEB;
}
.headerMain .leftCol {
	display: flex;
	align-items: center;
	gap: 30px;
}
.logoBox {
	max-width: 200px;	
}
/*HEDAER ONSCROLL START*/
.header,
.headerTop,
.headerMain,
.logoBox,
.headerMain .leftCol .genBtn,
.searchBtn,
.searchInput {
	transition: all 0.3s;
}
.header.active {
	max-width: 100%;
	top: -57px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.header.active .headerTop {
	opacity: 0;
}
.header.active .headerMain {
    padding: 20px 120px 15px 120px;
}
.header.active .logoBox {
	max-width: 135px;
}
.header.active .headerMain .leftCol .genBtn {
	height: 55px;
	font-size: 15px;
	padding: 0px 22px;
}
.header.active .searchBtn {
	width: 55px;
	height: 55px;
}
.header.active .searchInput {
	height: 55px;
}
/*HEDAER ONSCROLL END*/
.navBar {
	max-width: 450px;
	width: 100%;
}
.navItem {
	font-size: 18px;
	color: var(----color-3);
	padding-bottom: 5px;
	position: relative;
	width: fit-content;
	transition: all 1s;
}
.navItem:hover {
	color: var(--color-1);
}
.navItem::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	border-bottom: 3px solid transparent;
	transition: all 0.5s;
}
.navItem::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	border-bottom: 3px solid transparent;
	transition: all 0.5s;
}
.navItem:hover:before {
	border-color: var(--color-1);
	width: 50%;
}
.navItem:hover:after {
	border-color: var(--color-1);
	width: 50%;
}
.searchBar {
	position: relative;
	z-index: 1;
}
.searchBtn {
	width: 60px;
	height: 60px;
	background: var(--white);
	border-radius: 100%;
	border: none;
}
.searchBtn img {
	max-width: 30px;
}
.searchBar:focus-within .searchInput {
	width: 300px;
}
.searchInput {
	font-size: 18px;
	width: 100%;
	height: 60px;
	border: none;
	padding: 20px 25px;
	outline: none;
	border-radius: 60px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	transition: 1s;
}
/*************HEADER END*************/

/*************INDEX BANNER START*************/
.index-banner {
	padding: 170px 0px 200px 0px;
	margin-top: 105px;
	position: relative;
	background: #F4F4F4;
	z-index: 1;
}
.index-banner:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(../images/banner-bg.png);
	background-position: right;
	background-repeat: no-repeat;
	z-index: -1;
	background-size: 54%;
}
.personImg {
	position: absolute;
	bottom: 0;
	right: 240px;
	max-width: 455px;
	width: 100%;
}
.index-banner .textBox {
	max-width: 590px;
	position: relative;
	top: 50px;
}
.subHeading {
	font-size: 30px;
	color: var(--color-1);
}
.bannerHeading {
	font-family: 'Anton', sans-serif;
	font-size: 120px;
	color: var(--black)
}
.bannerDesc, 
.desc {
	font-size: 16px;
	color: #000;
}
.expBtn {
	background: var(--color-1);
}
/*************INDEX BANNER END*************/

/*************INDEX SEC 2 START*************/
.index-sec-2 {
	padding: 200px 0px 150px 0px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.index-sec-2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/sec-2-bg.png);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: 42%;
	z-index: -1;
}
.personImg2 {
	max-width: 750px;
	position: absolute;
	bottom: -17%;
	left: 115px;
}
.heading {
	font-family: 'Anton', sans-serif;
	font-size: 60px;
	color: var(--black);
	text-transform: uppercase;
}
.chooseCard .title {
	font-family: 'Anton', sans-serif;
	font-size: 40px;
	color: var(--color-3);
	margin-bottom: 10px;
}
.chooseCard .desc {
	max-width: 250px;
}
.chooseCard img {
	max-width: 110px;
	margin-bottom: 20px;
}
.index-sec-2 .textBox{
	padding-left: 50px;
}
/*************INDEX SEC 2 END*************/

/*************INDEX SEC 3 START*************/
.index-sec-3 {
	padding: 120px 0px 100px 0px;
	background: #F4F4F4;
}
.genCard {
	padding: 30px;
	border-radius: 20px;
	background: var(--white);
	display: block;
	height: 560px;
	margin-bottom: 30px;
	transition: all 0.5s;
}
.genCard:hover {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.genCard .imgBox {
	overflow: hidden;
	border-radius: 20px;
	overflow: hidden;
	height: 300px;
}
.genCard .imgBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.5s;
	border-radius: 20px;
	overflow: hidden;
}
.genCard:hover .imgBox img { 
	filter: brightness(0.6);
	transform: scale(1.1);
}
.genCard .textBox {
	padding-top: 35px;
}
.genCard .title {
	font-family: 'Anton', sans-serif;
	font-size: 40px;
	color: var(--black);
}
.genCard .desc {
	font-size: 18px;
	max-width: 380px;
	margin: 0 auto;
	line-height: 1.8;
}
.plusCircle {
	width: 85px;
	height: 85px;
	border-radius: 100%;
	border: 0;
	background: var(--color-1);
	font-size: 35px;
	color: var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%) scale(0);
	transition: all 0.5s;
}
.genCard:hover .plusCircle {
	transform: translate(-50% , -50%) scale(1);
}
/*************INDEX SEC 3 END*************/

/*************INDEX SEC 4 START*************/
.index-sec-4 {
	padding: 120px 0px 100px 0px;
}
.videoBox {
	padding: 10px 10px;
	border-radius: 20px;
	border: 2px solid var(--color-1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.vidImgMain {
	filter: brightness(0.6);
}
.absItems img {
	z-index: -1;
}
.videoAbs1 {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.videoAbs2 {
	bottom: -3px;
	right: 0;
}
.videoAbs3 {
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.vidBtnWrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}
.play-btn{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-1);
	width: 120px;
	height: 120px;
	background: #fff;
	border-radius: 100%;
	text-decoration: none;
	font-size: 35px;
	border: 0;
	cursor: pointer;
}
.play-btn::after {
	opacity: 0;
	position: absolute;
	top: -16px;
	left: -16px;
	right: 0;
	bottom: 0;
	content: "";
	height: calc(100% + 32px);
	width: calc(100% + 32px);
	border: 8px solid rgba(255, 255, 255, 0.25);
	border-radius: 100%;
	animation: ripple 3s infinite;
	animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
	z-index: -1;
}
.play-btn::before {
	opacity: 0;
	position: absolute;
	top: -8px;
	left: -8px;
	content: "";
	height: calc(100% + 16px);
	width: calc(100% + 16px);
	border: 8px solid #fff;
	border-radius: 100%;
	animation: ripple 3s infinite;
	animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
	z-index: -1;
}
@keyframes ripple {
	from {
		opacity: 1;
		transform: scale3d(0.75, 0.75, 1);
	}
	to {
		opacity: 0;
		transform: scale3d(1.5, 1.5, 1);
	}
}
/*************INDEX SEC 4 END*************/

/*************INDEX SEC 5 START*************/
.index-sec-5 {
	padding: 150px 0px;
	background: #F4F4F4;
}
.infoBanner {
	max-width: 1300px;
	margin: 0 auto;
}
/*************INDEX SEC 5 END*************/

/*************INDEX SEC 6 START*************/
.index-sec-6 {
	padding: 150px 0px;
}
.reviewCard {
	gap: 95px;	
}
.slideImg {
	max-width: 520px;
	width: 100%;
	padding: 20px;
	border-radius: 20px;
	border: 2px solid var(--color-1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	z-index: 1;
	height: 680px;
}
.slideImg .personImg1 {
	width: 100%;
	height: 630px;
	object-fit: cover;
	object-position: center;
	border-radius: 20px;
	overflow: hidden;
}
.slideAbs1 {
	top: 20px;
	left: 0;
}
.slideAbs2 {
	bottom: 0;
	right: 0;
}
.reviewCard .textBox {
	width: calc(100% - 520px);
}
.reviewCard .desc {
	font-size: 22px;
	color: #666666;
	line-height: 1.7;
	position: relative;
	padding-bottom: 60px;
	margin-bottom: 60px;
}
.reviewCard .desc:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 165px;
	height: 5px;
	background: var(--color-1);
}
.reviewCard .desc:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 25px;
	width: 25px;
	height: 5px;
	background: var(--white);
	z-index: 1;
}
.rName, .rTitle, 
.socialHeading {
	font-family: 'Anton', sans-serif;
	font-size: 30px;
	color: var(--black);
	text-transform: uppercase;
}
.rTitle {
	font-size: 20px;
	color: var(--color-1);
}
.sliderMover {
	max-width: 150px;
	width: 100%;
	position: absolute;
	bottom: 30px;
	right: 0;
	z-index: 1;
}
.arrows {
	border: 0;
	background: none; 
}
.arrows img {
}
.arrows:hover img {
	filter: brightness(9) invert(1);
}
/*************INDEX SEC 6 END*************/


/*************FOOTER START*************/
.footer {
	background: #F4F4F4;
	padding-top: 100px;
}
.footerRow {
	display: flex;
	justify-content: space-between;
	padding-bottom: 60px;
}
.footerCol.type1 {
	max-width: 285px;
	width: 100%;
}

.footerCol.type2 {
	max-width: 150px;
	width: 100%;
}

.footerCol.type3 {
	max-width: 340px;
	width: 100%;
}
.footerCol.type4 {
	max-width: 375px;
	width: 100%;
}
.footerCol .heading {
	font-size: 30px;
	padding-bottom: 25px;
}
.fLogo {
	max-width: 230px;
	margin-bottom: 50px;
}
.socialHeading {
	font-size: 25px;
}
.sclBtn {
	width: 45px;
	height: 45px;
	border-radius: 100%;
	overflow: hidden;
	font-size: 18px;
	color: var(--black);
	border: 0;
	background: #DDE3EA;
	transition: all 0.25s;
	margin-right: 10px;
}
.sclBtn:hover {
	background: var(--color-1);
	transform: scale(1.1);
	color: var(--white);
}
.photoGallery img {
	width: 115px;
	height: 100px;
	object-fit: cover;
	object-position: center;
	margin-bottom: 24px;
	border-radius: 5px;
	overflow: hidden;
}
.footerLinks {
	font-size: 18px;
	color: var(--black);
	display: block;
	width: fit-content;
	position: relative;
	padding-bottom: 3px;
	margin-bottom: 15px;
	line-height: 1.3;
	transition: all 0.25s;
}
.footerLinks i {
	color: #4864E1;
}
.fNav:hover {
	color: var(--color-1);
}
.fNav::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	border-bottom: 3px solid transparent;
	transition: all 0.5s;
}
.fNav::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	border-bottom: 3px solid transparent;
	transition: all 0.5s;
}
.fNav:hover:before {
	border-color: var(--color-1);
	width: 50%;
}
.fNav:hover:after {
	border-color: var(--color-1);
	width: 50%;
}
.copyrightRow {
	padding: 20px 0px;
	background: var(--color-1);
}
.copyrightRow .desc {
	font-size: 18px;
	color: var(--white);
}
.copyrightRow .desc a {
	color: var(--white);
	font-weight: 700;
}
/*************FOOTER END*************/

/*************EXTRAS START*************/
.button-2,
.button-3 {
	position: relative;	
	overflow: hidden;
	z-index: 1;
}
.button-2:before,
.button-3:before {
	content: '';
	position: absolute;
	top: 0;
	left: -225px;
	width: 60px;
	height: 60px;
	background: var(--color-1);
	border-radius: 60px;
	z-index: -1;
	transition: all 0.5s;
}

.button-2:hover:before,
.button-3:hover:before {
	width: 100%;
	left: 0;
}

.button-3:before {
	background: var(--color-3);
}
.videoBox video {
    width: 100%;
    border-radius: 10px;
}
/*************EXTRAS END*************/
