@import url('https://fonts.googleapis.com/css2?family=Lemon&family=Tiro+Devanagari+Hindi&family=Ubuntu:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400&family=Lemon&family=Tiro+Devanagari+Hindi&family=Ubuntu:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&family=Lemon&family=Tiro+Devanagari+Hindi&family=Ubuntu:wght@300;400;500;700&display=swap');

*{
	padding: 0px;
	margin: 0px;
}

html{
	scroll-behavior: smooth;
}
h1, h4{
	font-family: 'Lemon', cursive;
}


:root{
	--white-color:#fff;
	--skyblue-color:#3A94FE;
	--light-yellow:#F4B321;
	--dark-yellow:#FEC850;
	--black-color:#000;
	--login-color:#C8E1FE;
}

a:hover{
	text-decoration: none;
}

a, p, li, h2, h3, h5, span{
	font-family: 'Inter', sans-serif;
}
.highlight-text{
	font-family: 'Karla', sans-serif!important;
}
.highlight{
	color: var(--dark-yellow);
}
ul{
	list-style: none;
	margin-left: 0px;
	margin-bottom: 0px;
}

section{
	position: relative;
}


#webapp_cover {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 39px;
  transform: translateY(-50%) scale(2);
  margin-top: -3px;
}
.fixed-header .menu-box-mob{
	top: 131%;
}
#menu_button {
  width: 22px;
  overflow: hidden;
}

#menu_checkbox {
  display: none;
}

#menu_label {
  position: relative;
  display: block;
  height: 14px;
  cursor: pointer;
}

#menu_label:before,
#menu_label:after,
#menu_text_bar {
  position: absolute;
  left: 0;
  width: 76%;
  height: 1px;
  background-color: var(--skyblue-color);
}

#menu_label:before,
#menu_label:after {
  content: "";
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) left;
}

#menu_label:before {
  top: 8px;
}

#menu_label:after {
  top: 12px;
}

#menu_text_bar {
  top: 16px;
}

#menu_text_bar:before {
  content: "MENU";
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  color: var(--skyblue-color);
  font-size: 6px;
  font-weight: 500;
  text-align: center;
}

#menu_checkbox:checked + #menu_label:before {
  left: -39px;
}

#menu_checkbox:checked + #menu_label:after {
  left: 39px;
}

#menu_checkbox:checked + #menu_label #menu_text_bar:before {
  animation: moveUpThenDown 0.8s ease 0.2s forwards,
    shakeWhileMovingUp 0.8s ease 0.2s forwards,
    shakeWhileMovingDown 0.2s ease 0.8s forwards;
}

@keyframes moveUpThenDown {
  0% {
    top: 0;
  }
  50% {
    top: -20px;
  }
  100% {
    top: -10px;
  }
}

@keyframes shakeWhileMovingUp {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  50% {
    transform: rotateZ(0deg);
  }
  75% {
    transform: rotateZ(10deg);
  }
  100% {
    transform: rotateZ(0);
  }
}

@keyframes shakeWhileMovingDown {
  0% {
    transform: rotateZ(0);
  }
  80% {
    transform: rotateZ(3deg);
  }
  90% {
    transform: rotateZ(-3deg);
  }
  100% {
    transform: rotateZ(0);
  }
}




/*---------------start-banner-section-here-----------*/
.container{
	max-width: 1260px!important;
}
.banner-section{
	min-height: 690px;
	background-image: url(../img/banner-img-bc.jpg);
	background-size: cover;
	background-position: center center;
	padding: 30px 0px;
	overflow-x: hidden;
}
.mob-hesxa-img{
	position: absolute;
	transform: translate(-50%-50%);
	left: 0%;
    top: 20%;
    opacity: 0.2;
}
.mob-hesxa-img img{
	width: 50%;
}

.banner-section .right-img-hexa,
.banner-section .left-img-hexa{
	position: absolute;
	transform: translate(-50% , -50%);
	left: 14%;
	top: 58%;
}
.banner-section .right-img-hexa{
	left: inherit;
	right: -18.4%;
}
.banner-section .right-img-hexa img,
.banner-section .left-img-hexa img{
	width: 90%;
}
.header-section{
	border-radius: 10px;
	background-color: var(--white-color);
	align-items: center;
	padding: 0px 25px 0px 10px;
}
.header-menu-box{
	align-items: center;
	display: flex;
	height: 100%;
}

.fixed-header{
	background-color: var(--white-color);
	position: fixed;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	top: 0px;
	left: 0px;
	width: 100%;
	animation: header-fixed 1s ease;
	z-index: 999;
}

@keyframes header-fixed{
	0% {
	    transform: translateY(-100%);
	}
	100% {
	    transform: translateY(0%);
	}
}

.menu-list{
	display: flex;
	align-items: center;
	width: 77%;
	margin: 0px auto;
	justify-content: space-between;
}

.menu-list .list a{
	color: var(--black-color);
	font-size: 18px;
	display: block;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	position: relative;
	transition: 0.3s ease;
}
.menu-list .list a:after{
	content: '';
    position: absolute;
    left: 0px;
    bottom: -5px;
    width: 100%;
    height: 2px;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: right;
    background-color: var(--skyblue-color);
}
.menu-list .list a:hover::after{
    transform: scaleX(1);
	transform-origin: left;
}
.menu-list .list a:hover{
	color: var(--skyblue-color);
}
.menu-list .list .active{
	color: var(--skyblue-color);
}
.common-btn{
	background-color: var(--skyblue-color);
	color: var(--white-color);
	border-radius: 100px;
	text-align: center;
	padding: 10px 45px;
	font-size: 15px;
	transition: 0.3s ease;
	position: relative;
}
.common-btn:hover{
	background-color: var(--light-yellow);
}
.btn-box{
	text-align: end;
}
.common-btn:hover{
	color: #fff;
}
.highlight-text-box {
	padding: 45px 0px 35px 0px;
}
.banner-content-box .top-heading{
	font-size: 50px;
}
.highlight-color{
	font-weight: 400;
	color: var(--dark-yellow);
}
.highlight-text-box p{
	font-size: 26px;
	margin-bottom: 0px;
	line-height: 34px;
	font-weight: 300;
}
.app-download-box p{
	font-size: 20px;
}

/*----------menu-box-mob---------*/
.menu-box-mob{
	position: absolute;
    top: 20%;
    z-index: 99;
    width: 95%;
    margin: 0px auto;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}
.menu-box-mob .card{
	   border-radius: 13px!important;
}
.menu-box-mob .card .menu-list{
	display:block;
	width: 100%;
}
.menu-box-mob .card .menu-list .list-btn .btn-box{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}
.menu-box-mob .card .menu-list .list{
	padding: 8px 20px;
	border-bottom: 1px solid #dbeefd;
}
.menu-box-mob .card .menu-list .list a:after{
	display: none;
}
 
 
.menu-box-mob .card .menu-list .list:hover{
	background-color: var(--skyblue-color);
	color: var(--white-color);
}
.menu-box-mob .card .menu-list .list:hover a{
	color: var(--white-color);
}
/*--------------end-banner-here--------------*/

/*-----------start-white-key-feature-section-----------*/
.key-feature{
	padding: 40px 0px;
	background-color: var(--white-color);
}
.key-feature .top-shape-img{
	position: absolute;
	left: 0px;
	top: -56px;
	width: 100%;
}
.key-feature .content-box p{
	font-size: 26px;
}
.blue-key-feature{
	background-color: var(--skyblue-color);
	margin-top: 50px;
	margin-bottom: 83px;
}

.blue-key-feature .bottom-shape-img{
	position: absolute;
	left: 0px;
	bottom: -56px;
	width: 100%;
}
/*--------------End-white-key-feature-section-here-------*/


/*--------start-about-section-here-----*/
.about-section{
	padding-top: 40px;
}
.about-section .content-about h1{
	color: var(--light-yellow);
}
.about-section .about-cricle-box{
	position: absolute;
	transform: translate(-50% , -50%);
	left: 14%;
	top: 60%;
}
/*----------End-about-section-here-------*/

/*----------Start-get-in-touch-section-here--------*/
.get-in-touch-section{
	padding: 100px 0px;
	overflow: hidden;
	margin-top: 40px;
}

.get-in-touch-section .cricle-right{
	position: absolute;
	transform: translate(-50% , -50%);
	right: -18%;
    top: 50%;
}
.get-in-touch-section .get-in-touch-box{
	background-color: var(--skyblue-color);
	padding: 40px 20px;
	border-radius: 10px;
	position: relative;
}
.get-in-touch-section .get-in-touch-box h4{
	color: var(--dark-yellow);
	font-size: 27px;
}

.get-in-touch-section .get-in-touch-box h2{
	font-size: 40px;
	font-weight: 800;
}
.get-in-touch-section .get-in-touch-box p{
	font-size: 13px;
}
.get-in-touch-section .get-in-touch-box .form-box .common-field textarea,
.get-in-touch-section .get-in-touch-box .form-box .common-field input:focus{
	box-shadow: none;
	border: 1px solid var(--dark-yellow);
}
.get-in-touch-section .get-in-touch-box .form-box .common-field textarea,
.get-in-touch-section .get-in-touch-box .form-box .common-field input{
	background-color: transparent;
	border-radius: 100px;
	border: 1px solid #fff;
	color: #fff!important;
	height: 50px;
	padding: 0px 20px;
	margin-bottom: 30px;
}
.get-in-touch-section .get-in-touch-box .form-box .common-field textarea::placeholder,
.get-in-touch-section .get-in-touch-box .form-box .common-field input::placeholder{
	color: #fff!important;
}
.get-in-touch-section .get-in-touch-box .form-box .common-field textarea{
	border-radius: 10px;
	padding-top: 10px;
	resize: none;
	height: 165px;
}
.get-in-touch-box .Ellipse-get{
	position: absolute;
	left: 20px;
	top: 15px;
}
.form-btn .btn{
	background-color: var(--white-color);
	color: var(--skyblue-color);
	font-size: 15px;
	padding: 10px 30px;
	border-radius: 5px;
}
.form-btn .btn:hover{
	background-color: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
}
.address-box .content h3{
	font-size: 25px;
	font-weight: bold;
}
.address-box .content p{
	font-size: 15px;
}
.address-box .phone-box{
	margin: 80px 0px;
}
/*----------------End-get-in-touch-section-here--------*/


/*-------------start-footer-section-here--------*/
.footer-section{
	position: relative;
	padding: 150px 0px 10px 0px;
	background-color: var(--skyblue-color);
	clip-path: polygon(51% 16%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
}
.footer-section .footer-bc-img{
	position: absolute;
	transform: translate(-50%,-50%);
	left: 50%;
	width: 100%;
	top: 50%;
}
.footer-section .Vector-footer-mob img{
	width: 100%;
}
.footer-row{
	margin-top: 40px;
}
.footer-memu .footer-heading{
	border-left: 2px solid var(--light-yellow);
	padding-left: 5px;
	margin-bottom: 13px;
}

.footer-menu-list .items .link{
	color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
	display: block;
	padding-bottom: 7px;
	margin-bottom: 10px;
	transition: 0.3s ease;
}
.footer-menu-list .items .link:hover{
	color: var(--light-yellow);
	border-bottom: 1px solid var(--light-yellow);
}
.footer-memu .terms-and-conditions a{
	color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
}
.footer-memu .terms-and-conditions a:hover{
	color: var(--dark-yellow);
	border-bottom: 1px solid var(--dark-yellow);
}
.app-download{
	display: flex;
	margin-top: 40px;
}
.app-download a{
	margin-right: 10px;
}
.app-download img{
	width: 100%;
}
.copy-right-box{
	padding-top: 20px;
	margin-top: 40px;
	border-top: 1px solid var(--white-color);
}
.social-media-footer a i{
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	text-align: center;
	color: var(--white-color);
	border-radius: 100px;
	background-color: #79B6FE;
	transition: 0.3s ease;
	border: 1px solid transparent;
	margin-bottom: 7px;
}
.social-media-footer a i:hover{
	border: 1px solid var(--white-color);
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}
#back-to-top{
	display: none;
}
.back-to-top i:hover {
    color: #fff;
    background: #000;
}
.back-to-top i {
    background-color: var(--light-yellow);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: fixed;
    right: 18px;
    bottom: 40px;
    color: var(--white-color);
    cursor: pointer;
    border-radius: 5px;
    z-index: 9999999;
    transition: 0.4s ease;
}
/*----------End-footer-section-here-----*/
.floting-button{
	position: fixed;
	transform: translate(-50%, -50%);
	left: 50%;
	bottom: 20%;
}



.floting-button .button .btn{
	color: var(--white-color);
	padding: 7px 20px 7px 20px;
	font-size: 13px;
	border-radius: 100px;
	background-color: var(--light-yellow);
	font-weight: 600;
	overflow: hidden;
	z-index: 999;
	position: relative;
	transition: 0.3s ease;
	text-align: center;
  display: flex;
  gap: 11px;
}

.floting-button .button .btn span img{
	width: 55px;
	display: none;
}

.floting-button .button .btn:hover{
	background-color: var(--skyblue-color);
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}


/*----------Start-login-page-here--------*/
.login-page{
	background-color: var(--login-color);
}
.login-page-section{
	background-color: var(--login-color);
	padding: 10px;
	padding-bottom: 30px;
	position: relative;
}

.main-white-box{
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 30px 20px;
	box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
	margin: 0px auto;
	width: 30%;
}
.left-btn .icon-left i{
	font-size: 17px;
	margin-left: 10px;
	margin-top: 20px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	transition: 0.3s ease;
	justify-content: center;
	border-radius: 100px;
	background-color: var(--light-yellow);
	color: var(--white-color);
}
.left-btn .icon-left i:hover{
	background-color: var(--black-color);
	box-shadow: 0px 0px rgb(0 0 0 / 10%);
}
.login-text h5{
	font-size: 23px;
	font-weight: 800;
}
.login-text p{
	color: var(--skyblue-color);
}

.login-text p a{
	color: var(--black-color);
}
.login-button{
	padding: 10px 30px 10px 30px;
}
.button-box{
	background-color: #1773EA;
	position: relative;
	border-radius: 100px;
	padding: 10px 10px 10px 54px;
	margin-bottom: 10px;
}
.google-btn .button-box{
 	background-color: #E54335;
}
.mobile-btn .button-box{
	background-color: var(--skyblue-color);
}
.img-iocn-box{
	width: 35px;
	height: 35px;
	border-radius: 100px;
	background-color: var(--white-color);
	position: absolute;
	padding: 3px;
	left: 5px;
	top: 4px;
}
.img-iocn-box img{
	width: 100%;
	height: 100%;
}
.button-box span {
	color: var(--white-color);
}
.btn,
.form-control{
	box-shadow: none!important;
}
.text-or-box p,
.input-phone{
	position: relative;
}
.text-or-box p{
	font-weight: 500;
}
.text-or-box p:after,
.text-or-box p:before{
	content: '';
	position: absolute;
	left: 0px;
	top: 11px;
	width: 43%;
	height: 1px;
	background-color: var(--black-color);
}
.text-or-box p:after{
	left: inherit;
	right: 0px;
}
.input-phone label{
	background-color: var(--white-color);
    position: absolute;
    left: 11px;
    font-size: 8px;
    top: -6px;
    font-weight: 500;
}
.input-phone .form-control{
	border: 1px solid var(--skyblue-color);
}

.otp-box{
	padding: 20px 40px;
}
.otp-box .otp-list .items input{
	width: 50px;
	height: 50px;
	text-align: center;
	background-color: #F1F1F1;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 10%)!important;
}

.otp-box .otp-list .items input:focus{
	border: 1px solid var(--skyblue-color);
}


.otp-box .otp-list{
	display: flex;
	justify-content: space-between;
}
.Verify-bottom-text p{
	color: #969696;
}
.Verify-bottom-text p span{
	color: var(--skyblue-color);
}
/*-------------ENnd-login-page-here----------*/
