:root {
	--first-color: #004185;
	--second-color: #436fb5;
	--third-color: #50575c;
	--fourth-color: #464b50; 
}

body {
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto; 
	font-style: normal;
}

.first-color {
	color: var(--first-color);
}

.second-color {
	color: var(--second-color);
}

.third-color {
	color: var(--third-color);
}

.fourth-color {
	color: var(--fourth-color);
}
 

.img-fluid {
	width: 100%;
}

a {
	text-decoration: none;
	color: var(--first-color);
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--first-color);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: var(--first-color);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--first-color)
}

.btn.btn1 {
	background: #fff;
	border: 1px solid #000;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 700;
	color: #000;
	transition: all ease .5s;
}

.btn.btn1:hover {
	background: #000;
	color: #fff;
}

.btn.btn2 {
	background: var(--fourth-color);
	border-radius: 30px;
	padding: 6px 18px;
	font-size: 13px;
	color: #fff;
	transition: all ease .5s;
}

.btn.btn2:hover {
	background: var(--second-color);
}

.text-first {
	color: var(--first-color) !important;
}

.bg-first {
	background: var(--first-color) !important;
}

.bg-success {
	background: #7ED321 !important;
}

.bg-white {
	background: #fff !important;
}

.label-primary {
	background: var(--first-color);
	color: #fff;
}

label.label {
	display: inline-block;
	text-align: center;
	font-size: 0.75rem;
	padding: .2rem .8rem;
}

.label-secondary {
	background: var(--second-color);
	color: #000;
}

.label-info {
	background: #50E3C2;
	color: #fff;
}

.label-success {
	background: #7ED321;
	color: #fff;
}

.label-warning {
	background: #FFAA16;
	color: #fff;
}

.label-danger {
	background: #FF1616;
	color: #fff;
}

.label-light {
	background: #dadada;
	color: #000;
}

.label-dark {
	background: #454545;
	color: #fff;
}

.btn-light {
	background-color: #dadada;
}

.btn-white {
	border-color: var(--first-color);
	color: var(--first-color);
	background-color: #fff;
}

.btn-white:hover {
	background: var(--first-color);
	color: #fff;
}

.btn-active {
	background: #38a638;
	color: #fff;
}

.btn-inactive {
	background: #778899;
	color: #fff;
}

.list-style {
	padding: 0px;
	margin: 0px;
	list-style: none;
}
/* header */
.main-header {
    position: relative;
    top: 0px;
    width: 100%;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.06);
    z-index: 999;
    background-color: #fff;
}

.navbar-right-menu {
    display: flex;
    align-items: center;
    justify-content: end;
}

.navbar-right-menu .header-menu .nav-list {
    margin-right: 34px;
}

.navbar-right-menu .header-menu .nav-list .nav-menu {
    display: flex;
    align-items: center;
}

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

.navbar-right-menu .header-menu .nav-list .nav-menu li {
    position: relative;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li a {
    padding: 26px 0;
    margin-right: 27px;
    display: block;
    color: var(--first-color);
    font-size: 14px;
    font-style: normal;
    position: relative;
    text-align: center;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.32px;
    transition: all 500ms ease;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-menu li .sub-menu {
    left: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    z-index: 10; 
    padding: 0;
    width: 243px;
    text-align: left;
    border-radius: 0 0 6px 8px;
    background-color: #fff;
    box-shadow: 0 8px 8px rgb(23 22 24 / 1%), 0 4px 4px rgb(23 22 24 / 0%), 0 2px 2px rgb(23 22 24 / 10%);
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
}

.nav-menu li .sub-menu {
    transform: translate3d(0, 2rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    pointer-events: none;
    padding: 0;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    z-index: 9999;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li {
    position: relative;
    transition: all 300ms ease;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a {
    display: block;
    width: 100%;
    padding: 10px 18px;
    text-align: left;
    border-bottom: 1px solid #e7e7e742;
    margin-right: 0px;
    font-size: 12px;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a:before {
    background: linear-gradient(45deg, var(--grad-secondary-color), var(--grad-primary-color));
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
/*
.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li:hover a {
    color: #fff;
}
*/
.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li:hover a:before {
    width: 100%;
}
.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a i {
    text-align: right;
    float: right;
    top: 1px;
}


.navbar-right-menu .header-menu .nav-list .nav-menu li a i {
    font-size: 10px;
    position: relative;
    top: -1px;
} 

.logo-div img {}

.navbar-right-menu .header-menu .nav-list .nav-menu li:hover a {
    color: var(--second-color);
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a:hover {
    background: var(--first-color);
    color: #fff;
}
 

.nav-menu li .sub-menu .sub-menu.inner-drop {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}
 

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu.inner-drop li.menu-items .sub-item {
    color: var(--second-color);
    background: #fff;
}
 

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li:hover .sub-menu.inner-drop {
    display: block;
}

.nav-menu li .sub-menu .sub-menu.inner-drop .sub-item {
    color: var(--second-color);
}
 
.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu.inner-drop li.menu-items:hover .sub-item {
    background: var(--second-color);
    color: #fff;
}

/* slick arrow */
.slick-arrow {
    position: absolute;
    border: none;
    outline: none !important;
    width: 43px;
    height: 43px;
    background: var(--fourth-color);
    text-align: center;
    border-radius: 50%;
    top: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-arrow i {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
 
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #fff;
    outline: none;
    background: var(--second-color);
}

ul.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    padding: 0;
    transform: translate(-50%, 0);
    margin: 0px;
}

ul.slick-dots li {
    margin-right: 6px;
    border-color: #909BA9;
    border: 1px solid #909BA9;
    background: #909BA9;
    border-radius: 50%;
    display: inline-block;
    width: 7px;
    height: 7px;
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li.slick-active {
    border-color: var(--first-color);
    border: 1px solid var(--first-color);
    background: var(--first-color);
}
 
.PrevArrow.slick-arrow {
    left: 18px;
}

.NextArrow.slick-arrow {
    left: unset;
    right: 21px;
}

.slick-arrow:hover {
    background: var(--second-color);
}

/* default section */ 

.default-padding {
    padding: 50px 0;
}

.sec-title {
    margin-bottom: 26px;
}

.sec-title .sec-name {
    width: max-content;
    padding: 0 20px;
    text-align: center;
    position: relative;
    font-size: 13px;
    margin-bottom: 6px!important;
    color: var(--second-color);
}

.sec-title .sec-name:before {
        position: absolute;
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 50%;
        top: 50%;
        inset-inline-start: 0;
        transform: translateY(-50%);
        background-color: var(--second-color);
}

.sec-title .sec-name:after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 50%;
    inset-inline-start: auto;
    inset-inline-end: 0;
    transform: translateY(-50%);
    background-color: var(--second-color);
}

.sec-title h3 {
    font-size: 34px;
    font-weight: 600;
    color: var(--first-color);
    text-transform: uppercase;
}

/* seervice section */

.service-box {
    border: 1px solid #ced7e0;
    padding: 35px 30px;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    overflow: hidden;
    z-index: 1;
	    border-radius: 10px;
    margin-bottom: 25px;
}

.service-box .icon-div {
    display: inline-flex;
    line-height: 1;
    margin-bottom: 25px;
}

.service-box .icon-div img {
    width: 93px;
}

.service-box .text-content {}

.service-box .text-content h4 {
    font-size: 20px;
    margin-bottom: 17px;
    color: var(--third-color);
}

.service-box .text-content p {
    line-height: 1.5;
    font-size: 14px;
    font-weight: 300;
    color: var(--fourth-color);
	    margin-bottom: 0px; 
			display:flex;
}

.service-box:before{
        content: "";
        position: absolute;
        top: 0;
        inset-inline-end: 0;
        inset-inline-start: auto;
        width: 0;
        height: 100%;
        background-color: #e6f2ff;
        border-color: #e1e8f0;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        z-index: -1;
} 

.service-box:hover::before {
    width: 100%;
    inset-inline-start: 0;
    inset-inline-end: auto;
    
}
/* slider section */

.slider-section {
    position: relative;
}
 

.slider-section:after {
    content:'';
    background-image: url(../image/curve1.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    left: 0px;
    filter: brightness(10);
    height: 40px;
    bottom: 0px;
    z-index: 1;
}
.banner-slider img {
    width: 100%;
    height: auto;
}


/* footer */ 
footer {
    background: var(--first-color);
    padding: 100px  0px 56px 0px;
    position: relative;
}

.f-logo {
    margin-bottom: 20px;
}

.f-logo img {
    width: 192px;
    background: #fff;
    padding: 8px;
    border-radius: 28px;
}
ul.footer-list {
    padding: 0;
    margin-bottom: 10px;
}

ul.footer-list li {
    list-style: none;
    margin-bottom: 9px;
}

ul.footer-list li a {
    display: flex;
    align-items: flex-start;
}

ul.footer-list li a i {
    margin-right: 6px;
    font-size: 15px;
    color: var(--second-color);
}

ul.footer-list li a span {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}
 
.footer-col h4.col-heading {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffff;
}

.footer-col ul.col-list {
    padding-left: 18px;
}

.footer-col ul.col-list li {
    list-style: none;
    margin-bottom: 7px;
    position: relative;
}

.footer-col ul.col-list li a {
    font-size: 13px;
    color: #ddd;
}

.footer-col ul.col-list li:before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--second-color);
    position: absolute;
    left: -17px;
    top: 7px;
    border-radius: 50%;
}

.footer-col ul.col-list li a:hover {
    color: #fff;
}
.col-heading span.list-arrow {
    display: none;
}

.copyright {
    background: var(--second-color);
    padding: 22px 0;
}

.copyright p {
    font-size: 14px;
    margin-bottom: 0px;
    color: #ffff;
    font-weight: 500;
}

.copyright p a {
    color: #cfe3ea;
}
.text-right {
    text-align: right !important;
}
  
footer:before {
     content: '';
    background-image: url(../image/curve2.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    left: 0px;
    filter: brightness(10);
    height: 40px;
    top: -14px;
    z-index: 1;
    
} .media-footer li {
    display: inline-block;
}
  .media-footer li a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 1px;
    font-size: 13px;
    color: #000;
    width: 35px;
    text-align: center;
    height: 35px;
    line-height: 31px;
    background: transparent;
    border-radius: 50%;
    padding: 0px;
}
 .media-footer li a.facebook {
    background: #4a639f;
    color: #fff;
}
 .media-footer li a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}
 .media-footer li a.twitter {
    background: #000;
    color: #fff;
}
  .media-footer li a.linkedin {
    color: #fff;
    background: #0072b1;
}
.download-app {
    margin-top: 20px;
}

.download-app img {
    width: 150px;
}



/* cta */
.cta1 {
    background-color: transparent;
    background-image: linear-gradient(205deg, var(--first-color) 20%, var(--second-color) 80%);
    position: relative; 
	overflow: hidden;
}

.cta1:before {
    content:'';
    /* --background-overlay: ''; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../image/shape1.png');
    background-attachment: scroll;
    position: absolute;
    left: 22%;
    width: 100%;
    top: 0%;
    height: 100%;
    opacity: 0.2;
}

.cta1 .text-div {
    position: relative;
    z-index: 11;
    text-align: center;
	    padding: 30px 0;
} 

.cta1 .text-div .sec-title h3 {
    color: #fff;
    line-height: 47px;
    margin-bottom: 0px;
}

.cta1 .text-div .sec-title .sec-name {
    color: #eee;
    margin-bottom: 15px!important;
    display: block;
}

.abt-img img {
    border-radius: 18px;
}
p.desc1 {
    font-size: 14px;
    line-height: 23px;
    color: #4c4c4c;
    text-align: justify;
}

/* feature section*/

.feature-flex {
    display: flex;
    gap: 20px;
}

.feature-flex .f-box {
    display: flex;
    border: 1px solid #c5e1ff;
    border-radius: 13px;
    padding: 22px 20px;
    text-align: left;
    flex-wrap: wrap;
	    width: 25%;
		    transition: all 0.3s ease-in-out 0s;
}

.feature-flex .f-box .up-text { 
    margin-bottom: 20px;
    position: relative;
}

.feature-flex .f-box .up-text h3 {
    width: 100%;
    display: block;
    font-size: 35px;
    color: var(--first-color);
    margin-bottom: 12px;
}

.feature-flex .f-box .up-text .line-design {
    width: 100%;
    display: block;
}

.feature-flex .f-box .up-text .line-design .inner-line {
    height: 3px;
    width: 100px;
    background: #e6f2ff;
    left: 0;
    border-radius: 2px;
    position: relative;
    margin-left: 27px;
}
   
  
.feature-flex .f-box .bottom-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--second-color);
	    line-height: 25px;
}

.feature-flex .f-box .up-text .line-design .inner-line:before {
    content:'';
    position: absolute;
    color: #0c5adb;
    left: -27px;
    top: 0;
    display: inline-block;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: #0c5adb;
    -webkit-box-shadow: 9px 0 0 0 currentColor, 18px 0 0 0 currentColor;
    box-shadow: 9px 0 0 0 currentColor, 18px 0 0 0 currentColor;
}


.feature-flex .f-box:hover {
    background-image: linear-gradient(205deg, var(--first-color) 20%, var(--second-color) 80%);
}

.feature-flex .f-box:hover h3 {
    color: #fff;
}

.feature-flex .f-box:hover h4 {
    color: #fff;
}
.f-box:hover .up-text .line-design .inner-line:before {
    color: #c5e1ff;
    background-color: #c5e1ff;
}
.feature-flex .f-box .up-text img {
    width: 63px;
    margin-bottom: 20px;
}
.feature-flex .f-box:hover p.desc1 {
    color: #fff;
}

.feature-flex .f-box p.desc1 {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    margin-top: 9px;
    margin-bottom: 0px;
}


.main-header.fixed-header {
    position: fixed;
    width: 100%;
}

/* testimonial */
.testimonial-box {
    border-radius: 10px;
    background: #fff;
    padding: 34px 30px;
    margin-bottom: 20px;
}

.testimonial-box .rating {
    margin-bottom: 10px;
}

.testimonial-box .rating i {
    font-size: 13px;
    color: #ff7e46;
}
 

.testimonial-box   .customer-details {
    display: flex;
    align-items: flex-start;
}

.testimonial-box .customer-details .customer-img {
    width: 64px;
    margin-right: 19px;
}

.testimonial-box .customer-details .customer-name {
    margin-bottom: 2px;
    font-size: 17px;
    color: var(--second-color);
}

.testimonial-box .customer-details .designation {
    margin-bottom: 0px;
    font-size: 13px;
}

.testimonial-slider {}

.testimonial-slider .slider-item {
    height: auto;
    margin: 0 11px;
}

.testimonial-box p.review {
    border-bottom: 1px dashed #c9d1d1;
    font-size: 17px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.testimonial-section {
    background: #e6f2ff;
}

.testimonial-slider .PrevArrow.slick-arrow {
    left: -54px;
}

.testimonial-slider .NextArrow.slick-arrow {
    right: -55px;
}

/* conatct section */
.contact-div {
    display: flex;
    align-items: center;
}

.contact-form {
    background-color: #F6F6F6;
    width: 60%;
    padding: 51px 85px 50px 43px;
    border-radius: 22px;
}

.contact-dt-box {
    width: 40%;
    background: #001e64;
    padding: 36px 40px;
    border-radius: 17px;
    margin-left: -50px;
}

.contact-dt-box h3 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 21px;
}

.contact-dt-box ul {
    padding: 0pc;
    margin: 0px;
    list-style: none;
}

.contact-dt-box ul li {
    display: flex;
    margin-bottom: 27px;
    align-items: flex-start;
}

.contact-dt-box ul li .icon-div {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    margin-right: 13px;
}

.contact-dt-box ul li .text-div {
    width: 80%;
}

.contact-dt-box ul li .icon-div i {}

.contact-dt-box ul li .text-div p {
    color: #eee;
    font-size: 12px;
    margin-bottom: 2px;
}

.contact-dt-box ul li .text-div h5 {
    color: #fff;
    font-size: 18px;
}

.contact-form .form-group {
    margin-bottom: 19px;
}

.contact-form .form-group .form-control {
    font-size: 15px;
    padding: 13px 14px;
    border-color: #eaeaea;
} 

.contact-dt-box ul li:last-child {
    margin-bottom: 0px;
}
.counter-box {
    text-align: center;
}

.counter-box .counter-card_number {
    font-size: 42px;
    font-weight: 500;
    color: var(--second-color);
}

.counter-box .counter-card_text {
    font-size: 16px;
}
.contact-float {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.whatsapp-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.whatsapp-ring-circle {
    width: 110px;
    height: 110px;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #00e676;
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: .5;
}

.whatsapp-ring-circle-fill,
.whatsapp-ring-img-circle {
    background: #107cb3;
    background: #107cb3;
}

.whatsapp-ring-circle-fill {
    width: 80px;
    height: 80px;
    top: 16px;
    left: 16px;
    position: absolute;
    background-color: #00e676;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.whatsapp-btn-icon {
    display: flex;
    text-decoration: none;
}

.whatsapp-ring-img-circle .whatsapp-btn-icon i {
    font-size: 21px;
    color: #fff;
}

.whatsapp-ring-img-circle {
    background-color: #00e676;
    width: 50px;
    height: 50px;
    top: 31px;
    left: 31px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }
    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6
    }
    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
}

.scroll-top {
    display: none;
    z-index:9;
    position: fixed;
    bottom: 30px;
    right: 20px;
    padding: 8px 14px;
    margin-bottom: 0px;
    border-radius: 8px;
    color: #fff;
    background: var(--first-color);
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: var(--second-color);
    color: #fff;
}

section.breadcrumb {
    text-align: left;
    padding: 13px 0 13px;
    background: #e6f2ff;
    margin: 0px;
}

.breadcrumb-content {}

.breadcrumb-content h2 {
    font-size: 20px;
    line-height: 19px;
    font-weight: 600;
        margin-bottom: 2px;
    margin-top: 5px;
    color: var(--first-color);
}
  
ul.breadcrumb-menu li {
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
    position: relative;
    color: var(--third-color);
    font-weight: 500;
    padding-right: 10px;
    margin-right: 11px;
}
 

ul.breadcrumb-menu li:last-child {
    margin: 0px;
    padding: 0px;
}

ul.breadcrumb-menu li:first-child:after {
    content: '';
    position: absolute;
    top: 3px;
    right: -4px;
    height: 12px;
    width: 2px;
    background-color: var(--third-color);
}

ul.breadcrumb-menu li a {
    color: var(--second-color);
}

.iframe-section iframe {
    width: 100%;
    height: 400px;
}

.cta-shape-div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 11;
}

.cta-shape-div:before {
        content: '';
        background-image: url(../image/curve2.png);
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        width: 100%;
        left: 0px;
        filter: brightness(10);
        height: 40px;
        top: -14px;
        z-index: 1;
}
.cta-shape-div:after {
           content: '';
    background-image: url(../image/curve1.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    left: 0px;
    filter: brightness(10);
    height: 40px;
    bottom: 0px;
    z-index: 1;
}
.policy-section {}

.policy-section h1 {
    font-size: 34px;
    font-weight: 600;
    color: var(--first-color);
    text-transform: uppercase;
}

.policy-section p {
    font-size: 14px;
    line-height: 23px;
    color: #8f8e8e;
    text-align: justify;
}

.policy-section ul {
    margin-bottom: 14px;
}

.policy-section ul li {
    font-size: 14px;
    line-height: 23px;
    color: #5e5b5b;
    margin-bottom: 2px;
}

.policy-section h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--first-color);
    text-transform: uppercase;
}
/* join modal */
.bg-dark-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
}


.join-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.join-modal .modal-inner {
    background: #fff;
    /* padding: 14px 15px; */
    position: relative;
    width: 680px;
}

.join-modal .modal-inner .title-div {
    position: relative;
    padding: 18px 15px;
    background: #e6f2ff;
}

.join-modal .modal-inner .title-div h4 {
    font-size: 21px;
    font-weight: 600;
    color: var(--first-color);
    margin-bottom: 0px;
    text-transform: uppercase;
}

.join-modal .modal-inner .title-div .close-btn {
       position: absolute;
    right: 6px;
    top: 2px;
    font-size: 25px;
    z-index: 22;
    cursor: pointer;
}

 .content-div {
    padding: 17px 15px;
}

 .content-div h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #746565; 
	
}
.join-modal .modal-inner .content-div {
    height: 60vh;
    overflow-y: auto;
}
  .content-div .form-group {
    margin-bottom: 15px;
}

 .content-div .form-group .form-control {
    font-size: 13px;
    padding: 10px 14px;
    border-color: #eaeaea;
}

.content-div .form-group .form-check {
    margin-right: 17px;
}

.tag-line {
    background-color: transparent;
    background-image: linear-gradient(205deg, var(--first-color) 20%, var(--second-color) 80%);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    margin-top: 14px;
}

.join-modal .modal-inner .modal-bottom {
    padding: 8px 15px;
    text-align: right;
}

.join-modal .modal-inner .modal-bottom .btn-div {}

.join-modal .modal-inner .modal-bottom .btn {
    padding: 6px 18px;
    font-size: 13px;
}

.join-modal .modal-inner   .app-download-div {
    padding: 15px 15px;
    background: #e6f2ff;
    text-align: center;
}

.join-modal .modal-inner .app-download-div .btn {
    background: var(--second-color);
    color: #fff;
    padding: 6px 24px;
    font-size: 16px;
    border-radius: 30px;
}

 .content-div .form-group label {
    display: block;
    font-size: 12px;
    color: var(--second-color);
	margin-bottom: 1px;
    font-weight: 500;
}

  .content-div .form-group .form-check label {
    border-color: #e9edf6;
    color: #8f8fb1;
    font-size: 11px;
    top: 4px;
    position: relative;
}
 .form-control:focus { 
    border-color: var(--first-color); 
    box-shadow: none;
}
.formlabel {
       padding: 6px 13px;
    background: #eee;
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    border-radius: 7px;
	width:100%;
}

.formlabel.success {
   color: #179917;
    background: #daffda;
}
 .formlabel.danger {
    background: #ffe6e6;
    color: #ff0000;
}

.formlabel.warning {
    color: orange;
    background: #fff3de;
}

.formlabel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
 
.formlabel.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
 
.formlabel.hide {
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.formlabel.show {
  display: inline-block;
  animation: fadeIn 0.5s ease forwards;
}
 
@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

.formlabel.hide {
  animation: fadeOut 0.5s ease forwards;
}

/* login page */
.login-page {
    position: relative;
    overflow: hidden;
    background: #e6f2ff;
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
	background: #fff;
	box-shadow: 0 4px 7px rgba(0, 0, 0, 0.06);
}

.login-header .app-opts {
    display: flex;
    align-items: center;
}

.login-header .app-opts .down-div {
    display: flex;
    align-items: center;
    margin-left: 17px;
}

.login-header .app-opts .down-div p {
    margin: 0px;
    font-size: 12px;
}

.login-header .app-opts .down-div img {
    width: 101px;
    margin-left: 11px;
}

.login-header .app-opts li a {
    width: 25px;
    height: 24px;
    font-size: 10px;
}

.login-header .connect-div {
}

.login-header .connect-div ul.footer-list {
    display: flex;
    gap: 16px;
	margin-bottom:0px;
}

.login-header .connect-div ul.footer-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.login-header .connect-div ul.footer-list li a {
    align-items: center;
}

.login-header .connect-div ul.footer-list li a span {
    color: #000;
} 
.login-content-div {
	margin: 38px 0;
}
  
.login-slider .slick-arrow {
    display: none!important;
}

.login-slider  ul.slick-dots {bottom: 11px;}

.login-form {
    background: #fff;
    padding: 40px 35px;
    border-radius: 16px;
}

.login-form h4 {
    font-size: 25px;
    font-weight: 600;
    color: var(--first-color);
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 10px;
}
  

.form-group .form-control {
    font-size: 13px;
    padding: 10px 14px;
    border-color: #eaeaea;
}
.form-group label {
    font-size: 13px;
    margin-bottom: 3px;
    color: var(--first-color);
}

.login-form .forgot-password a {
    font-size: 13px;
    color: var(--second-color);
    font-weight: 500;
}

.login-form .forgot-password a:hover {
    color: var(--first-color);
}

.login-form .btn {
    width: 100%;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 13px;
}

.seprator {
    border-bottom: 1px solid #eee;
    margin: 20px 0;
}

.toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 14px;
    z-index: 1;
    margin-top: -34px;
    position: relative;
    color: var(--second-color);
}
.login-form .login-btn {
    background: var(--first-color);
    color: #fff;
}
.login-footer {
    background: #fff;
    padding: 9px 18px;
}

.login-footer p {
    display: inline-block;
    font-size: 10px;
    margin-bottom: 0px;
}

.login-footer a { 
    font-size: 12px;
}
.login-header .logo-div {
    width: 128px;
}

/*download app*/
.mail-box {
    display: flex;
}

.mail-box .form-control {
    border-radius: 30px 0px 0px 30px;
    padding: 15px 22px;
    width: 76%;
}

.mail-box .btn {
    width: 24%;
    border-radius: 00px 30px 30px 0px;
}
.download-section {
    background: linear-gradient(to right, #e6f2ff, #a0dfe4);
    padding-top: 0;
    margin-top: 150px;
}
.download-section .img-div {
    margin-top: -150px;
}

.download-text {
    padding-top: 40px;
    padding-bottom: 40px;
}
.faq .accordion-item {
    border: 0;
    overflow: hidden;
}
.faq .accordion-item .accordion-button {
    padding: 15px;
    font-size: 15px;
}
.faq .accordion-item .accordion-button {
    font-size: 14px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-transform: capitalize;
    padding: 12px 16px;
    color: var(--second-color);
    font-weight: 600;
}.faq .accordion-item .accordion-button:not(.collapsed) {
    background-color: #e6f2ff;
    color: var(--first-color);
    padding-bottom: 4px;
}

.faq .accordion-item .accordion-collapse {
    background-color: #e6f2ff;
}
.faq  .accordion-item .accordion-button::after { 
	    background-size: 13px;
    top: 4px;
    position: relative;
}
.faq .accordion-item .accordion-collapse .accordion-body {
    font-size: 13px;
}
.accordion-button:not(.collapsed)::after {
    top: -5px !important;
}
 

.accordion {
    margin-bottom: 15px;
}


.login-header.fixed-header {
    position: fixed;
    width: 100%;
    z-index: 999;
}


/*

@media (min-width: 1366px) {
	footer:before{
		    height: 70px;
    top: -34px;
	}
	.slider-section:after{
		 height: 38px;
	}
	ul.slick-dots{
		 bottom: 38px;
	}

}
*/

@media only screen and (max-width: 767px) {
	
	    .navbar-right-menu {
        display: none;
        position: fixed;
        top: 0px;
        bottom: 0px;
        height: 100vh;
        width: 352px !important;
        left: -330px;
        background: var(--first-color);
        z-index: 99999;
        padding: 10px 15px;
        overflow-x: hidden;
        box-shadow: 5px 0px 13px -7px rgb(0 0 0 / 10%);
        overflow-y: auto;
        animation: slide-in-left 1s forwards;
    }
	    .navbar-right-menu {
        width: calc(100% - 59px) !important;
    }
	.toggle-menu {
        display: block;
        float: right;
        text-align: right;
        margin-left: auto;
    }
    .toggle-icon {
        position: relative;
        width: 31px;
        height: 20px;
    }
    .toggle-icon span {
        position: absolute;
        width: 100%;
        height: 1px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: #3f3f3f;
    }
    .toggle-icon span:first-child {
        top: 0;
    }
    .toggle-icon span:nth-child(2) {
        top: 44%;
    }
    .toggle-icon span:last-child {
        bottom: 2px;
    }
    body.mobile-menu .toggle-icon span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }
    body.mobile-menu .toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    body.mobile-menu .toggle-icon span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }
	    .main-header .logo-div img {
        width: 160px;
    }
	.main-header {
        padding: 8px 0;
    }
	.feature-flex {
    flex-wrap: wrap;
	        gap: 15px;
        justify-content: space-around;
}
.feature-flex .f-box .up-text .line-design .inner-line{
	width: 45px;
}
.testimonial-slider .slick-arrow{
	display:none!important;
}
.contact-div {
    display: block;
 }
.contact-form{
	width: 100%;
	padding: 35px 35px 78px 35px;
}
.contact-dt-box {
    margin-left: auto;
    width: 86%; 
    padding: 25px 32px; 
    margin-right: auto;
	        margin-top: -48px;
}
.contact-dt-box h3 { 
    font-size: 27px;
    margin-bottom: 15px;
}
.contact-dt-box ul li .icon-div {
    width: 34px;
    height: 34px;
	    margin-right: 10px;
}
.contact-dt-box ul li .icon-div i {
    font-size: 14px;
}
.contact-dt-box ul li .text-div p { 
    font-size: 10px;
}
.contact-dt-box ul li .text-div h5 { 
    font-size: 14px;
}
.slider-section:after{
	display:none;
}
.slick-arrow{
	    width: 31px;
    height: 31px;
	top: 38%;
}
.slick-arrow i {
    font-size: 14px;
}
ul.slick-dots{
	bottom: 0px;
}
.banner-slider .slick-arrow{
	display:none!important;
}
.default-padding {
    padding: 40px 0;
}
.sec-title h3 {
    font-size: 26px;
}
.sec-title .sec-name{
	    font-size: 12px;
}
.service-box{
	    padding: 25px 25px;
		margin-bottom: 15px;
}
.service-box .icon-div img {
    width: 80px;
}
.service-box .text-content h4 {
    font-size: 20px;
    margin-bottom: 14px;
 }
 .service-box .text-content p {
    margin-bottom: 0px; 
    font-size: 13px;   
	height: auto;
 }
 .abt-img img {
    margin-bottom: 15px;
 }
 .feature-flex .f-box{
	     width: 45%;
		     border-radius: 9px;
    padding: 14px 12px;

 }
 .counter-box .counter-card_number {
    font-size: 35px;
 }
 footer:before{
	     top: -34px;
 }
 .copyright p {
    text-align: center;
 }
 .footer-col {
    margin-bottom: 28px;
}
footer { 
    padding: 78px 15px 35px 15px;
}
    body.mobile-menu .navbar-right-menu {
        left: 0px;
        display: block;
    }
	    .navbar-right-menu .header-menu .nav-list .nav-menu {
        display: block;
        text-align: left;
    }
	.navbar-right-menu .header-menu .nav-list .nav-menu li a {
        line-height: 26px;
        padding: 9px 0;
        text-align: left;
        margin-right: 0px;
        width: 100%;
    }
	    .navbar-right-menu .header-menu .nav-list .nav-menu li a {
        color: #fff;
    }
	    .nav-menu li .sub-menu {
        position: relative;
        width: 100%;
        opacity: 0;
        height: 0;
    }
	    .navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a {
        color: var(--secondary-color);
    }
	.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a {
        font-size: 12px;
        line-height: 30px;
        padding: 5px 19px;
    }
	    .btn.btn1 {
       padding: 6px 18px;
    font-size: 13px;
    }
	    .navbar-right-menu .header-menu .nav-list .nav-menu li:hover .sub-menu {
        height: auto;
    }
	.navbar-right-menu .header-menu .nav-list .nav-menu li:hover a {
    color: #fff;
}
.navbar-right-menu .header-menu .nav-list .nav-menu li a i {
    text-align: right;
    margin-left: auto;
    float: right;
}

.navbar-right-menu .header-menu .nav-list {
    margin-right: 0px;
}
.right-options {
    margin-top: 15px;
}
.cta-shape-div:before{
	    top: -32px;
}
.join-modal .modal-inner {
    width: 100%;
}

.join-modal {
    top: 5%;
    left: 0px;
    transform: none;
    width: 100%;
}
.join-modal .modal-inner .title-div h4 {
    font-size: 17px;
    padding-right: 45px;
}.tag-line {
    padding: 10px 15px; 
    font-size: 12px;
}
.login-header .connect-div {
    display: none;
}
.login-header .app-opts .media-footer {
    display: none;
}
.login-header .app-opts .down-div p { 
    font-size: 10px;
}

.login-header .app-opts .down-div img {
    width: 90px;
}

.login-content-div {
    margin: 15px 0;
}
.login-slider {
    margin-bottom: 10px;
}
.login-footer p {
    text-align: center;
    display: block;
}

/* download app */
.download-section .img-div {
    margin-top: 0px;
}
.download-section{
	    margin-top: 0px;
} 

.download-text {
	text-align: center;
    padding-top: 0px;
    padding-bottom: 37px;
    padding-left: 10px;
    padding-right: 10px;
}
.download-text .sec-title h3 {
        font-size: 24px;
    }
	.download-text .sec-title {
    margin-bottom: 17px;
}
.nav-menu li .sub-menu .sub-menu.inner-drop {
    background: transparent;
    border: none;
    position: relative;
    display: none;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li:hover .sub-menu.inner-drop {
    left: 0px;
    right: unset;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu.inner-drop li.menu-items .sub-item {
    padding: 3px 33px;
}
.mail-box .btn {
    width: 28%;
}
.faq .accordion-item .accordion-collapse .accordion-body {
    font-size: 11px;
}

.login-form.content-div {
    padding: 22px 23px;
}
.content-div h5 {
    line-height: 20px;
}



	
}



@keyframes slide-in-left {
	0% {
		left: -100%;
	}

	100% {
		left: 0px;
	}
}