
body{
	font-family: "Open Sans", sans-serif;
	color: #444444;
	overflow-x: hidden;
	position: relative;
}

p,a,ul,li,span,h1,h2,h3,h4,h5,h6{
	margin: 0;
	padding: 0;
}
li{
	list-style: none
}
a{
	text-decoration: none
}
:root{
   --bg-color: #f1f6fe;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  width: 100%;
  height: 100%;
}

#preloader:before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*top-headers*/
.top-header{
   background-color: #106eea;
   padding: 10px 0 9px;
   color: #fff;
   font-size: 14px;
}
.contact-info-item{
	text-align: center;
}
.contact-info-item > li a,
.contact-info-item > li span{
	color: #fff;
    margin-left: 5px
}
.contact-info-item > li:last-child{
	margin-left: 12px
}
.social-icons > li{
	margin-left: 20px
}
.social-icons > li a{
	color: rgb(255 255 255 / 70%);
}
/*navbar-styling*/
.my-style{
	width: 100%;
	background: #fff;
	box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
	padding: 15px 0;
	transition: .3s;
}
.efect-nav{
    padding: 8px 0;
}
.my-style .navbar-brand{
	color: #222222;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: .8px; 
}
.my-style .navbar-brand span{
	color: #106eea;
}
.my-style li{
	position: relative;
    padding: 10px 0 10px 28.5px;
}
.my-style .nav-item > .nav-link{
    color: #222222;
    font-weight: 600;
    font-size: 15px;
    padding: 0 3px;
    position: relative;
    transition: .5s;
}
.my-style .nav-item > .nav-link > i{
	font-size: 12px;
}
.my-style .nav-item > a.active,
.my-style .nav-item a:hover{
	color: #106eea;
}
.my-style .nav-item > .nav-link::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #106eea;
    transition: .5s;
}
.my-style .nav-item > .nav-link.active::after{
	width: 100%;
}
.my-style .nav-item > .nav-link:not(.active):hover::after{
    width: 100%;
}
.nav-item ul{
    position: absolute;
    top: calc(100% + 28px);
    background-color: #fff;
    padding: 10px 0;
    width: 200px;
    box-shadow: 0px 0px 20px rgb(127 137 161 / 25%);
    transition: .3s;
    z-index: 22;
    visibility: hidden;
    opacity: 0
}
.nav-item:hover > .drop,
.nav-item > .drop.show{
    top: 100%;
    visibility: visible;
    opacity: 1      
}
.nav-item > .drop li{
	padding: 10px 20px;
}
.nav-item > .drop li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-item > .drop a{
    color: #222222;
	font-size: 15px;
}
.nav-item > .drop li i{
	font-size: 11px;
}
.nav-item ul.drop-sub{
	visibility: hidden;
	opacity: 0;
	top: 0;
	right: calc(100% - 19px);
} 
.nav-item ul li:hover ul{
	visibility: visible;
	opacity: 1;
	right: 100%;
}
.navbar-toggler{
	padding: 0;
}
.navbar-toggler:focus{
	box-shadow: none;
}
.navbar-toggler > span{
    color: #222222;
    font-size:28px;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before{
    width: 30px;
    height: 3px;
}
.hamburger-box{
    width: 30px;
}
.hamburger{
    padding: 0;
}
.hamburger-inner:before {
    top: -8px;
}
.hamburger-inner:after{
    bottom: -8px;
}
/*banner-section-css-strat*/ 
.banner-content{
	text-align: center;
} 
.banner-slider .slick-prev,
.banner-slider .slick-next{
    color: #106eea;
    z-index: 500;
    font-size: 40px;
    transition: all .5s ease-in-out;
}
.banner-slider .slick-prev, .slick-next{
    width: auto;
    height: auto;
}
.banner-slider .slick-prev{
	left: 10px;
    opacity: 0;
}
.banner-slider .slick-next{
	right: 10px;
	opacity: 0;
}
.banner-slider:hover .slick-prev{
    opacity: 1;
    left: 25px;
}
.banner-slider:hover .slick-next{
    opacity: 1;
    right: 25px;
}
.banner-slider  .slick-prev:before, .banner-slider  .slick-next:before{
	display: none;
}
.banner-section{
	width: 100%;
	height: 80vh;   
    background-attachment: fixed;
	background-size: cover;
	display: flex;
	position: relative;
	align-items: center
}
.banner-section img{
    position: relative;
    z-index: 0;
}
.slick-track {
  display: flex !important;
}
.banner-section::before{
	content: "";
	background-color: #00000045;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1
}

.banner-section .banner-img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
}

.banner-section > .container{
	z-index: 1;
}
.banner-content > h1{
    font-weight: 600;
    font-size: 3rem;
    color: #ffffff;
}
.banner-content > h1 > span{
	color: #106eea;
}
.banner-content > span{
	display: inline-block;
	color: #ffffff; 
	font-size: 1.3rem;
	margin: 12px 0 24px;
}
.banner-slider-dots{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); 
}
.banner-slider-dots li{
    float: left;
    margin-right: 20px
}
.banner-slider-dots li:last-child{
    margin: 0;
}
.banner-slider-dots li button{
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: #023b6d;
    box-shadow: none;
    border: 0;
}
.banner-slider-dots li.slick-active button{
    outline: 2px solid #106eea;
    outline-offset: 5px
}

.get-straetd-btn{
	background-color: #106eea;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	padding: 9px 27px;
	letter-spacing: 1px;
	align-self: center;
}
.get-straetd-btn:hover{
	color: #fff;
}
.get-straetd-btn:focus{
	box-shadow: none; 
}
.play-link{
	display: inline-flex;
	align-items: center;
	color: 0;
	margin-left: 25px
}
.play-link > span{
	font-size: 16px;
	font-weight: 600;
	color: #ffffff
}
.play-link > i{
	font-size: 32px;
	margin-right: 8px 
}
.lorem-ispun-box{
	padding: 30px;
	background: transparent;
	border-radius: 8px;
	position: relative;
	box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
	overflow: hidden;
    width: 100%
}
.lorem-ispun-box i{
	display: block;
	font-size: 48px;
	color: #106eea;
	
}
.lorem-ispun-box a{
	display: inline-block;
	color: #111;
	font-size: 18px;
	font-weight: 700;
	margin: 15px 0 12px;
	
}
.lorem-ispun-box p{
	font-size: 15px;
	line-height: 28px;
	
}
.lorem-ispun-box::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #106eea;
    z-index: -1;
    opacity: 0;
    border-radius: 8px;
    transition: .5s;
}
.lorem-ispun-box:hover::before{
	height: 100%;
    opacity: 1;
}


.lorem-ispun-box:hover,
.lorem-ispun-box:hover a,
.lorem-ispun-box:hover i{
    color: #fff;
}
.about-page-banner-item .lorem-ispun-box{
    text-align: center;
}
/*about-us-section*/
.about-us-section{
	background: #f6f9fe;
} 
.heading-part > span{
	display: inline-block;
	background: #e7f1fd;
	color: #106eea;
	padding: 6px 20px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 50px;
    text-transform: uppercase;
}
.heading-part > h2{
    color: #444444;
    font-weight: 600;
    margin: 15px 0;
    font-size: 32px;
}
.heading-part > h2 > span{
	color: #106eea;
}
.heading-part p{
    margin: 0 auto;
    font-weight: 600;
    color: #444444;
    width: 60%;
    line-height: 1.5em
}
.pepole-saying .slick-slide{
  height: inherit !important;
}
/*--progress-section--*/
.progress-box > span{
    font-size: 11.8px;
    font-weight: 600;
    display: block;
    color: #222222;
}
.progress-box{
	margin-top: 29px
}
.progress-box > .progress{
	margin-top: 5px
} 
/*count-up-section*/
.count-up-box{
	background-color: #f1f6fe;
	text-align: center;
	padding: 36px 30px 25px 30px;
	position: relative;
}
.count-up-box > h4{
    font-weight: 600;
    color: #062b5b;
    font-size: 36px;
}
.count-up-box > span{
    font-size: 14px;
}
.count-up-box > i{
	position: absolute;
	top: -28px;
	left: calc(50% - 28px);
    background-color: #106eea;
    color: #fff;
    font-size: 24px;
    display: block;
    width: 56px;
    height: 56px;
    border: 5px solid #fff; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%
}

/*testimonials-box*/
.testimonials-section{
    padding-bottom: 120px;
    background: #f6f9fe;
}
.testimonial-box{
	padding: 2rem 27px;
    border: 1px solid #deebfd;
    transition: .5s;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
    height: 100%;
}

.testimonial-box::after{
	content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-top:  1px solid #106eea;
    border-bottom:  1px solid #106eea;
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: all .5s ease-in-out;
}
.testimonial-box:hover::after{
	transform: scaleX(1);
}

.testimonial-box::before{
	content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-right:  1px solid #106eea;
    border-left:  1px solid #106eea;
    transform: scaleY(0);
    transform-origin: 50% 50%;
    transition: all .5s ease-in-out;
}
.slick-dotted.pepole-saying{
    margin: 40px 0
}
.pepole-saying .slick-slider {
    margin:0 -15px;
}
.pepole-saying .slick-slide {
    margin-right:15px;
    margin-left:15px;
}
.pepole-saying  .slick-track{
    padding-bottom: 40px 
} 
.pepole-saying .slick-slide > div,
.pepole-saying .slick-slide > div > div{
  height: 100%
}
.testimonial-box:hover::before{
	transform: scaleY(1);
}

.testimonial-box blockquote{
	position: relative;
	text-align: center;
	font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    font-style: italic;
}
.testimonial-box blockquote::after{
    position: absolute;
    content: "​‌“";
    font-family: "Playfair Display", serif;
    color: rgb(11, 12, 38);
    font-size: 138px;
    line-height: 138px;
    top: -27px;
    left: -23px;
    opacity: 0.07;
}
.testimonial-img{
	width: 70px;
	height: 70px;
	border: 1.4px solid #106eea;
	border-radius: 50%;
	transform: translate(-50%,50%);
    position: absolute;
	bottom: 0;
	left: 50%;
}
.testimonial-img img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
/*contact-page-styling*/
.contact-page-box{
	color: #444444;
    background: #fff;
    padding: 30px 30px;
    box-shadow: 0 0 30px rgb(214 215 216 / 30%);
    display: flex;
    position: relative;
    height: 100%;
}
.contact-page-box::after{
    content: "";
    width: 100%;
    height: 2px;
    background-color: #106eea;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(.5);
    transition: .5s
}
.contact-page-box:hover::after{
	transform: scale(1)
}
.contact-info-box{
    overflow-x: hidden
}

.contact-type-icone{
	display: flex;
	align-items: center;
	margin-right: 20px;
}
.contact-type-icone > i{
	color: #106eea;
    font-size: 32px;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #b3d1fa;
}
.contact-content h4{
	font-weight: 600;
    color: #444444;
    margin-bottom: 10px;
}
.contact-content a{
	color: #777777;
}
.contact-box-wraper{
    background: #fff;
    padding: 50px 60px;
    box-shadow: 0 0 30px rgb(214 215 216 / 30%);
    color: #000;
}
.contact-us-content span{
    display: inline-block;
    background: #e7f1fd;
    color: #106eea;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}
.contact-us-content h3{
	color: #444444;
    font-weight: 600;
    margin: 15px 0;
    font-size: 32px;
    line-height: 1.3em;
}
.contact-us-content p{
	font-size: 16px;
	padding: 10px 0;
	line-height: 1.6em;
	font-style: italic;
	letter-spacing: .5px;
}
.socail-links-contact{
	margin-top: 18px;
}
.socail-links-contact li{
	float: left;
    margin-right: 8px;
}
.socail-links-contact li a{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #106eea;
    background: #e7f1fd;
    color: #106eea;
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 4px;
    transition: .5s;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: .5s;
}
.socail-links-contact li a::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transform: scale(0);
	background: #106eea;
	transition: .5s;
}
.socail-links-contact li a:hover::before{
	transform: scale(2);
}
.socail-links-contact li a:hover{
	color: #fff;
}
.btn-contact-large{
	width: 100%;
}



/*-- about-us-section ---*/
.about-us-cntent-box > h3{
    color: #444444;
    font-size: 26px;
    font-weight: 600;
    margin: 7px 0;
}
.about-us-cntent-box > p{
	font-style: italic;
}
.icon-about-us{
	background: #fff;
	border-radius: 50%;
	font-size: 24px;
	color: #106eea;
	padding: 20px;
	box-shadow: 0 6px 15px 0 rgb(16 110 234 / 12%);
	margin-right: 15px;
}
.content-icon h5{
	font-size: 18px;
	margin-bottom: 8px
}
.content-icon span{
	font-size: 15px;
	line-height: 22px;
    display: block;
    color: #444444;
}
.content-icon{
	margin-top: 3rem;
}
.content-icon + .content-icon {
	margin-top: 2.2rem;
}
.content-icon + p{
	font-style: initial;
	margin-top: 3.6rem
}
/*clients-section*/
.clients-section{
	background-color: #f6f9fe; 
}
.clients-section img{
    max-width: 45%;
    display: inline-block;
    padding: 11px 0;
    transition: all .5s ease-in-out;
}
.clients-section img:hover{
    transform: scale(1.15);
}
.clients-section{
	padding: 1.2rem 0
}
/*services-section*/

.services-item{
	padding: 4.8rem 15px;
    border: 1px solid #deebfd;
    transition: .5s;
    margin-top: 25px;
    position: relative;
}


.services-item::after{
	content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-top:  1px solid #106eea;
    border-bottom:  1px solid #106eea;
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: all .5s ease-in-out;
}
.services-item:hover::after{
	transform: scaleX(1);
}

.services-item::before{
	content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-right:  1px solid #106eea;
    border-left:  1px solid #106eea;
    transform: scaleY(0);
    transform-origin: 50% 50%;
    transition: all .5s ease-in-out;
}
.services-item:hover::before{
	transform: scaleY(1);
}
.services-item:hover{
	border-color: #fff;
	box-shadow: 0 0 25px 0 rgb(16 110 234 / 10%);
}
.services-item:hover > h4 > a{
	color: #106eea;
}
.services-item > i{
	display: inline-flex;
	width: 64px;
	height: 64px;
	font-size: 28px;
    background-color: #f1f6fe;
    border: 1px solid #106eea;
    color: #3b8af2;
    justify-content: center;
    align-items: center;
    transition: .5s;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.services-item:hover > i{
    color: #ffffff;
}
.services-item > i::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    background: #106eea;
    transition: .5s;
}
.services-item:hover > i::after{
    transform: scale(2);
} 
.services-item > p{
	font-size: 14px;
	line-height: 24px
}
.services-item > h4 > a{
	display: inline-block;
	color: #222222;
	font-weight: 600;
	font-size: 24px;
	margin: 20px 0 15px;
	transition: .5s;
}
/*slider-section*/
.slider-section{
	background: url(../images/testimonials-bg.jpg) center center;
	background-size: cover; 
	padding: 40px 0;
	position: relative;
}
.slider-section::after{
    content: "";
    width: 100%;
    height: 100%;
    background: #000000b3;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.team-slider{
	padding: 50px 0;
	z-index: 3;
	color: #fff;
}
.team-slider div h5{
    font-size: 20px;
    font-weight: 600;
    margin: 9px 0 0;
}
.team-slider div span{
    font-size: 14px;
    color: #ddd;
}
.team-slider div p{
    width: 82%;
    color: #eee;
    margin: 10px auto;
    line-height: 26px;
    font-size: 15.6px;
    font-style: italic;
} 
.team-slider div p i{
	color: #ffffff66;
	font-size: 26px;
}
.team-slider div img{
	display: inline-block;
    width: 100px;
    height: 100px;
    border: 6px solid rgb(255 255 255 / 15%);
    border-radius: 50%
}
.testmo-slider-dots{
	margin-top: 6px;
	display: inline-block;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.testmo-slider-dots.nav_dots{
    bottom: 0;
}
.testmo-slider-dots > li{
	float: left;
	margin: 0 5px;
}
.testmo-slider-dots > li button{
    font-size: 0;
    border: 0;
    padding: 0;
    width: 10px;
    height: 10px;
    background-color: #062b5b;
    border-radius: 50%;
}
.testmo-slider-dots > li.slick-active button{
   background: #106eea;
}
/*Portfolio-section*/
.tav-isotop{
	padding: 30px 0 25px;
}
.tav-isotop ul li{
	display: inline-block;
	margin: 0 13px;
	cursor: pointer;
	color: #444444;
	font-size: 16px;
	font-weight: 600;
    line-height: 35px;
}
.tav-isotop ul li.active{
	color: #106eea;
}
.grid-item{
	margin-bottom: 25px
}
/*
.progress-bar[data-aos="fade-up"]{
	transform: scale(0);
}

*/

[data-aos="new-animation"] {
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition-property: transform, opacity;
}
.progress-bar.aos-animate {
    transform: scaleX(1);
    opacity: 1;
  
}
.Portfolio-description{
	position: absolute;
	left: 30px;
    right: 30px;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgb(255 255 255 / 90%);
	padding: 15px;
	margin: 0 auto;
	visibility: hidden;
	opacity: 0;
	transition: .5s;
    z-index: 1;
}
.services_box{
    position: relative;
}
.services_box > img{
    width: 100%;
    position: relative;
    z-index: 0;
}

.Portfolio-description > ul > li:nth-child(1){
	font-weight: 600;
}
.Portfolio-description > ul + ul li{
	float: left;
	margin-right: 8px
}
.Portfolio-description > ul + ul li a{
	color: #3c3c3c;
	font-size: 24px;
	transition: .4s
}
.Portfolio-description > ul + ul li a:hover{
	color: #106eea;
}

.services_box:hover .Portfolio-description{
    visibility: visible;
	opacity: 1;
	bottom: 20px
}
.services_box{
    margin: 10px 0;
}
/*team-section-strat*/
.team-section{
	background-color: var(--bg-color);
}
.team-persone-box{
    overflow: hidden;
    box-shadow: 0px 2px 15px rgb(16 110 234 / 15%);
	border-radius: 5px
}
.team-persone-box > .text-part{
   background-color: #fff;
   padding: 22px 15px 20px;
}
.team-persone-box > .image-part{
	position: relative;
}
.team-persone-box h5{
   color: #222222;
   font-weight: 600;
   font-size: 18px;
   margin-bottom: 3px
}
.team-persone-box span{
	font-size: 13px;
	color: #aaaaaa;
}
.team-persone-box .socal-contact{
	width: 100%;
    position: absolute;
    top: 77%;
    opacity: 0;
    transition: .4s;
    text-align: center
}
.team-persone-box:hover .socal-contact{
    top: 81%;
    opacity: 1
}
.team-persone-box .socal-contact ul{
	display: inline-block;
}
.team-persone-box .socal-contact ul li{
	float: left;
	margin: 0 5px
}
.team-persone-box a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #106eeacc;
	color: #fff;
	font-size: 18px;
	width: 36px;
	height: 36px;
	border-radius: 4px;
	transition: .5s
}
.team-persone-box a:hover{
	background: #3b8af2;
}
/*pricing-section*/
.card-pericing-box{
	box-shadow: 0px 0px 4px rgb(0 0 0 / 12%);
	overflow: hidden;
	position: relative;
	margin-top: 20px;
	border-radius: 5px;
	text-align: center
}
.card-pericing-box .title{
	background: #f8f8f8;
	color: #777777;
	padding: 20px 0
}
.card-pericing-box .title h4{
    font-size: 16px;
    font-weight: 600;

}
.price-body{
	padding: 17px 0
}
.price-body h2 > span{
	color: #bababa;
    font-size: 16px;
    font-weight: 300;
}
.price-body h2{
	font-weight: 600;
	color: #106eea;
	font-size: 36px;
	margin-bottom: 10px
}
.price-body h2 > sup{
	font-size: 20px;
}
.price-body ul{
	margin-top: 19px 
}
.price-body ul li{
	color: #444444;
	font-size: 14px;
	padding-bottom: 16px
}
.price-body ul li.no{
	color: #ccc;
	text-decoration: line-through;
}
.card-pericing-box .footer{
	background: #f8f8f8;
    padding: 19px 0
}
.buy-btn{
	background: #106eea;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 35px 9px 35px;
}
.buy-btn:hover,
.buy-btn:focus{
	background: #106eea;
	color: #fff;
	box-shadow: none;
	opacity: .9
}
.title.title-active{
	background-color: #106eea;
	color: #fff;
}
.advanced{
	width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    background-color: #106eea;
    color: #fff;
    font-size: 14px;
    padding: 1px 0 3px 0;
    transform: rotate(45deg);
}
.faq-section{
	background: var(--bg-color);
}
.accordion-button::after{
	position: absolute;
	left: 0;
	top: 16px;
	margin-left: unset;
	width: 18px;
	height: 18px;
	background-size: cover;
}
.accordion-button,
.accordion-button:focus,
.accordion-button:not(.collapsed){
	border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #000000;
    font-size: 17.8px;
    transition: .5s;
    padding-bottom: 21px;
    padding-left: 29px
}
.accordion-button:not(.collapsed),
.accordion-button:hover{
	color: #0d58ba;
}
.accordion-item{
	background: transparent;
	border: 0;
	margin-top: 5px;
	border-bottom: 1px solid #d4e5fc
}
.accordion-body{
	padding-top: 0;
	padding-left: 29px;
}
/*contact-section-start*/
.contact-box{
	color: #444444;
	background: #fff;
	padding: 20px 0 30px;
	box-shadow: 0 0 30px rgb(214 215 216 / 30%)
}
.contact-box,
.map-box{
	margin-top: 21px;
}
.contact-box > i{
	color: #106eea;
	font-size: 32px;
    border-radius: 50%;
    padding: 8px;
	border: 2px dotted #b3d1fa;
}
.contact-box > h3{
	font-size: 20px;
	font-weight: 600;
	color: #777777;
	margin: 10px 0;
}
.contact-box > span,
.contact-box > a{
	font-size: 14px;
	color: #777777;
}
.contact-input{
	padding: 10px 15px;
	font-size: 14px;
	margin-top: 20px;
	border-radius: 0
}
.contact-form.contact-box{
	padding: 18px 30px 30px;
}
textarea.contact-input{
    padding: 12px 15px;
}
.contact-input:focus{
	box-shadow: none;
	border-color: #106eea;
}
.btn-send-sms{
	margin-top: 20px;
	border-radius: 4px;
	background-color: #106eea;
	color: #fff;
	padding: 9px 30px;
	transition: .5s;
}
.btn-send-sms:hover,
.btn-send-sms:focus{
    box-shadow: none;
    color: #fff;
    opacity: .9;
}
/*join-our-newsletter*/
.join-our-newsletter{
	background: var(--bg-color)
}
.join-our-newsletter h2{
    color: #444444;
    font-size: 23px;
    font-weight: 600;
}
.join-our-newsletter span{
	font-size: 14px;
	display: inline-block;
	margin: 27px 0 26px
}
.subcrib-input{
	padding: 8px 15px;
	border: 0;
	box-shadow: 0 2px 15px rgb(0 0 0 / 6%)
}
.subcrib-input:focus{
	box-shadow: 0 2px 15px rgb(0 0 0 / 6%)
}
.submit-btn{
    font-size: 16px;
	border: 0;
	background-color: #106eea;
	color: #fff;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	padding: 0 20px;
	transition: .5s;
	box-shadow:  0px 2px 15px rgb(0 0 0 / 10%)
}
.submit-btn:hover{
	background-color: #0d58ba;
}
/*footer-part*/
.footer-box.box-1 > a > img{
    transform: scale(.8);
    transform-origin: left;
    margin-bottom: 14px
}
.footer-box.box-1 > h2 span{
	color: #106eea;
}
.footer-box > p,
.footer-box.box-1 > p,
.footer-box.box-1 > p > a{
	font-size: 14px;
	color: #777777;
	line-height: 24px
}
.footer-box.box-1 > p:nth-child(2){
    margin-bottom: 23px;
}
.footer-box > h4{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 17px
}
.footer-list > li i{
	color: #106eea;
	padding-left: 1px
}
.footer-list > li a{
	color: #777777;
	font-size: 14px;
	transition: .5s;
	padding-left: 3px;
}
.footer-list > li a:hover{
	color: #106eea;
}
.footer-list > li{
	display: flex;
	align-items: center;
	margin-bottom: 17px
}
.footer-box.box-4 > p{
	color: #444444;
}
.footer-box .socail-liks li{
     float: left;
     margin-right: 8px
}
.socail-liks li a{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #106eea;
	width: 36px;
	height: 36px;
	color: #fff;
	font-size: 18px;
    border-radius: 4px;
    transition: .5s;
}
.socail-liks{
	margin-top: 16px
}
.socail-liks li a:hover{
	opacity: .8
}
/*sub-footer*/
.sub-footer{
	padding: 13px 12px 16px;
	background: #f1f6fe;
}
.sub-footer .copy-right-text{
	font-size: 14px; 
}
.sub-footer > span{
	font-size: 13px;
}
.scrool-top{
	position: fixed;
	right: 15px;
	bottom: 15px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background-color: #106eea;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
    font-size: 28px;
    opacity: 0;
    transition: .5s;
    z-index: 100;
    cursor: pointer;
}
.scrool-top-add{
	opacity: 1;
}
/*image-popup-style*/
.mfp-title{
	color: #000;
	padding: 10px
}
.mfp-counter{
	display: none;
}
.mfp-bottom-bar{
    margin-top: -77px
}
/*---index-page-ended---*/
/*protfolio-section-strat*/
.protfolio-section{
	padding: 21px 0;
	background: #f1f6fe
}
.breadcrumb{
	font-size: 14px
}
.breadcrumb-item,
.breadcrumb-item a{
	font-size: 14px
}
.portfolio-banner-section{
	padding: 40px 0;
}
.portfolio-slider-dots{
	display: inline-block;
	padding: 4px 0;
}
.portfolio-slider-dots li{
	float: left;
	margin: 0 4px
}
.portfolio-slider-dots li button{
	padding: 0;
    font-size: 0;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 1px solid #106eea;
    border-radius: 50%
}
.portfolio-slider-dots li.slick-active button{
	background-color: #106eea;
}
.project-info-box{
	padding: 30px;
	box-shadow: 0 0 30px rgb(34 34 34 / 8%);
}
.project-info-box h4{
    font-weight: bold;
    font-size: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee
}
.info-list{
	margin-top: 21px;
}
.info-list li{
	padding-bottom: 10px;
	font-size: 15px
}
.project-info-box-2 {
	padding-top: 32px;
}
.project-info-box-2 h2{
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 15px
}
/*capture-desgin*/
.cap-text{
	margin-top: 20px;
	text-transform: uppercase;
}
.cap-input{
	margin-top: 5px;
}
.btn-cap{
	background: #106eea;
	color: #fff
}
/*testimonial-slider-section*/

/* car_insurance_page_start */
.page_header_nav_section{
    padding: 5rem 0;
    background: linear-gradient(to left, #000000f7 50%,  #ffffff00), url(../images/new_car.jpg) no-repeat;
    background-position: 0 -15px;
}
.page_header_nav_section.lice_section{
    background: linear-gradient(to left, #000000f7 50%,  #ffffff00), url(../images/lic-2.jpg) no-repeat;
}
.page_header_nav_section.pan_card_scetion{
    background: linear-gradient(to left, #000000f7 50%,  #ffffff00), url(../images/pan_card.jpg) no-repeat;
}
.page_title_header{
    text-align: center;
    color: #ffffff
}
.nav_top_page{
   display: inline-block;
}
.page_title_header h2{
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 10px;
}
.nav_top_page li{
    float: left;
    margin-right: 7px;
}
.nav_top_page li a{
    color: #106eea;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600
}
.nav_top_page li i{
    font-size: 11px
}
.insurance_describ_content{
    background-color: #f6f9fe;
    padding: 30px;
    font-size: 15px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    text-align: justify;
    height: 100%
}
.insurance_describ_content p{
   margin-bottom: 20px;
}
.insurance_describ_content span{
    font-weight: 600
}
.insurance_describe_list li{
    display: flex;
    margin-top: 15px
}
.insurance_describe_list li i{
    font-size: 12px;
    color: #106eea;
    margin: 10px 10px 0 0
}
.insurance_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.motor_insurance_describe_section{
    margin: 60px 0
}
/* car_insurance_page_end */
/* why_choose_section_start */
.info_box{
    text-align: center;
    margin-top: 40px;
}
.info_box > i,
.info_box > span{
  display: block;
}
.info_box > i{
    font-size: 30px;
    color: #3b8af2
}
.info_box span{
    font-weight: 600;
    margin-top: 10px
}
.choose_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.info_part{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}
.why_choose_title{
    font-weight: 600;
    font-size: 25px
}
.why_choose_section{
    padding: 5rem 0;
    background-color: #f6f9fe;
    position: relative;
    z-index: 0;
}
.why_choose_section::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-color: #d7d7d7;
    z-index: -1;
}
/* why_choose_section_end */

/* type_insurance_section_start */
.type_insurance_section{
    margin: 5rem 0
}
.types_insurance_box{
    border-radius: 10px;
    overflow: hidden;
}
.types_insurance_content{
    padding: 24px 28px;
    background-color: #f6f9fe; 
    box-shadow: 0 0 25px 0 rgb(16 110 234 / 10%);
    overflow: hidden;
}
.types_insurance_content p{
    text-align: center;
    font-size: 15px;
}
.types_insurance_content h5{
    color: #000;
    font-weight: 600;
    font-size: 18px;
    margin: 26px 0 18px;
}
.types_insurance_content .benefits_list{
    width: 50%;
    float: left;
}
.benefits_list li i{
    font-size: 12px;
    color: #106eea;
    margin-right: 5px;
}
.benefits_list li{
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
}
.types_insurance_img{
    position: relative;
}
.types_insurance_img img{
    position: relative;
    z-index: 0;
}
.title_insurance{
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background:#106eea;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
    z-index: 2;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.title_insurance:hover{
    color: #ffffff
}
.types_insurance_box{
    margin-top: 20px;
}
/* type_insurance_section_end */
.pan_card_dtl ul.insurance_describe_list{
    margin-left: 30px
}
.driving_licence_img_box{
    height: 100%;
    display:flex;
    align-items: center;
}
.driving_licence_img{
 max-width: 100%;
 object-fit: initial;
 height: auto
}
.driving_licence_content{
    background: #fff;
}
.insurance_describ_content.driving_licence_list .insurance_describe_list{
    margin-left: 20px
}
/* captcha_code */

.CaptchaWrap { position: relative; }
#CaptchaImageCode{
   margin-top: 20px;
   width: 100%;
   height: 65px;
   overflow: hidden;
}
.capcode { 
  font-size: 46px; 
  display: block; 
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none; 
  cursor: default;
  letter-spacing: 1px;
  color: #ccc;
  font-family: 'Roboto Slab', serif;
  font-weight: 100;
  font-style: italic;
  width: 100%;
}

.ReloadBtn { 
  background:url('https://cdn3.iconfinder.com/data/icons/basic-interface/100/update-64.png') left top no-repeat;   
  background-size : 100%;
  width: 32px; 
  height: 32px;
  border: 0px; outline: none;
  position: absolute; 
  bottom: 30px;
  left : 310px;
  outline: none;
  cursor: pointer; /**/
}
.btnSubmit {
  margin-top: 15px;
  border: 0px;
  padding: 10px 20px; 
  border-radius: 5px;
  font-size: 18px;
  background-color: #1285c4;
  color: #fff;
  cursor: pointer;
}

.error { 
  color: red; 
  font-size: 12px; 
  display: none; 
}
.success {
  color: green;
  font-size: 18px;
  margin-bottom: 15px;
  display: none;
}


/*---responsive---*/
/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {

	/*contact-page-styling*/
	.contact-content h4{
		font-size: 20px
	}
	.contact-content a,
	.contact-content span{
		font-size: 16px
	}
	.contact-page-box{
		padding: 30px 20px
	}

}
/* Medium devices (tablets, less than 992px)*/
@media(max-width:991.98px){
	.navbar-collapse{
		width: 100%;
		position: absolute;
		top: calc(100% + 15px);
        left: 0;
		background: #fff;
		box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    }
    .navbar-collapse.scroll-space{
        top: calc(100% + 8px);
    }
	.my-style .nav-item > .nav-link::after{
		display: none;
	}
	.nav-item ul{
		position: relative;
		display: none;
	}
	.nav-item > .drop.show{
		display: block;
	}
    .nav-item ul.drop-sub.sub-show{
       visibility: visible;
       opacity: 1;
       top: 0;
       left: 0;
       display: block;
    }

    .nav-item > .drop li{
        padding: 10px 0;
    }
    .nav-item ul{
        background: none;
        box-shadow: none;
    }
    /*banner-styling*/
     .banner-content > h1{
        font-size: 2.5em;
    }
	.count-up-box{
		margin-top: 2.8rem
	}
	.team-persone-box{
		margin-top: 16px
	}
	.team-slider div p{
		width: 100%;
	}
	.slider-section{
		padding: 30px 0
	}
   /* hediang-section*/
   .heading-part > h2{
      font-size: 30px;
    }
    .heading-part p{
        font-size: 15px;
        width: 75%;
    }
    /*services-item-box*/
    .services-item > h4 > a{
        font-size: 22px
    }
   .footer-box{
		margin-top: 20px
	}
	.project-info-box{
		margin-top: 25px
	}
	/*testimonial-start*/
	.testimonial-box blockquote{
		font-size: 16px
	}
	.testimonial-box{
        padding: 1.8rem 30px
    }

    .accordion-button, .accordion-button:focus, .accordion-button:not(.collapsed){
        font-size: 16px;
    }
    .accordion-body{
        font-size: 15px
    }
   /*contact-page-styling*/
    .contact-page-box{
		padding: 40px 30px;
		margin: 20px 0;
        height: auto
	}
	.contact-us-content h3{
		font-size: 28px
	}
    /*---insurance_describ_section_start---*/
    .insurance_describ_content{
        border-bottom-left-radius: 0;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    .insurance_img{
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0;
    }
    /*---insurance_describ_section_end---*/
    /* why_choose_section_start */
    .choose_content_box{
        margin-bottom: 25px
    }
    .why_choose_section::before{
        top: auto;
        height: 40%;
        width: 100%;
        bottom: 0;
    }
    .why_choose_section{
        padding: 4rem 0
    }
    /* why_choose_section_end */
    /* types_of_insurance_section_start */
    .type_insurance_section{
        margin: 4rem 0
    }
    .title_insurance{
        width: 70%;
        font-size: 18px
    }
    /* types_of_insurance_section_end */
    #CaptchaImageCode{
        width: 80%;
        height: 74px;
        float: left;
    }
    .ReloadBtn{
        position:static;
        float: left;
        margin: 36px 0 0 10px
    }

}

/*Small devices (landscape phones, less than 768px)*/

@media(max-width: 767.98px){
    .banner-content > h1{
    	font-size: 30px;
    }
    .banner-content > span{
    	font-size: 17px;
        line-height: 1.4em
    }
    .slider-section{
		padding: 20px 0;
	}

	.copy-right-text{
		margin-bottom: 3px
	}
	/*banner-slider*/
    .banner-slider .slick-prev,
    .banner-slider .slick-next{
       display: none;
   }
	.banner-section{
		min-height: 55vh;
	}
    .banner-slider-dots{
        bottom: 20px
    }
    .banner-slider-dots li button{
        width: 7px;
        height: 7px;
    }
    .banner-slider-dots li.slick-active button{
        outline-offset: 4px
    }
    /* about-us-content */
    .about-us-cntent-box > h3{
        font-size: 23px
    }
    .about-us-cntent-box > p{
        font-size: 15px;
    }
    .heading-part p{
        font-size: 15px;
        width: 100%;
    }

	/*testimonial-start*/
	.testimonial-box blockquote{
		font-size: 15px;
	}
	 /*contact-page-styling*/
	 .contact-content h4{
	 	margin-bottom: 4px;
	 }
     .contact-box-wraper{
        padding: 50px 40px;
    }
    /* page_header_start */
    .page_title_header h2{
        font-size: 25px
    }
    .nav_top_page li a{
        font-size: 13px;
    }
    /* page_header_end */

}


/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {  
    br{
		display: none;
	}
    /*banner-slider*/
    .banner-section{
        height: 45vh;
    }
    .banner-content > span{
        font-size: 16px;
    }
    /* hediang-section*/
   .heading-part > h2{
      font-size: 27px;
    }
    .heading-part p{
        font-size: 14px;
        line-height: 1.6em
    }
    .heading-part > span{
        font-size: 11px
    }
    .lorem-ispun-box a{
        font-size: 17px;
    }
    .lorem-ispun-box p {
        font-size: 14px;
        line-height: 25px;
    }

    /* about-us-content */
    .about-us-cntent-box > h3{
        font-size: 20px
    }
    .about-us-cntent-box > p{
        font-size: 14px
    }
    .content-icon h5 {
       font-size: 17px
    }
    .content-icon span{
        font-size: 14.5px;
    }
    /*services-item-box*/
    .services-item{
        padding: 4.3rem 15px;
    }
    .services-item > h4 > a {
        font-size: 21px;
    }
    .services-item > i{
        font-size: 25px;
        width: 60px;
        height: 60px;
    }
    .count-up-box > h4{
        font-size: 32px;
    }
    /* team-slider */
    .team-slider{
        padding: 20px 0;
    }
    .accordion-button, .accordion-button:focus, .accordion-button:not(.collapsed){
        font-size: 15px;
    }
    .accordion-body p{
        font-size: 14px
    }
   .join-our-newsletter h2{
        font-size: 20px;
    }
    .join-our-newsletter span{
        margin: 15px 0 26px; 
    }
    .submit-btn{
        font-size: 14px
    }

	/*contact-page-styling*/
    .contact-content h4{
    	font-size: 17px;
    	margin-bottom: 2px;
    }
    .contact-content a, .contact-content span{
    	font-size: 15px;
    }
    .contact-type-icone > i{
    	font-size: 28px;
    }
    .contact-box-wraper{
        padding: 50px 20px;
    }
    .contact-us-content h3 {
       font-size: 26px;
       line-height: 1.3em
    }
    .contact-us-content p{
        font-size: 15px;
        padding-top: 0
    }
    .contact-form.contact-box {
        padding: 18px 22px 30px
    }
    .contact-input{
        padding: 7px 15px;
        font-size: 13.5px
    }
    .contact-box, .map-box{
        margin-top: 40px
    }
    .btn-contact-large{
        font-size: 15px
    }
    .map-section iframe{
        height: 300px
    }
    .contact-page-box {
        padding: 30px 25px;
    }
    /* motor_insurance_describe_section_start */
    .page_header_nav_section{
        padding: 3rem 0
    }
    .page_title_header h2{
        font-size: 23px
    }
    /* motor_insurance_describe_section_end */
    /* why_choose_section_start */
    .why_choose_section{
        padding: 3rem 0
    }
    .why_choose_title{
      font-size: 22px
    }
    .insurance_describe_list li{
        font-size: 14px
    }
    .info_box{
        margin-top: 30px
    }
    /* why_choose_section_end */
      /* types_of_insurance_section_start */
      .type_insurance_section{
        margin: 4rem 0
    }
    .title_insurance{
        width: 90%;
        font-size: 17px
    }
    .types_insurance_content h5{
        font-size: 17px
    }
    .types_insurance_content .benefits_list{
        width: 100%
    }
    /* types_of_insurance_section_end */
    /* pan_card_start */
    .insurance_describ_content.pan_card_dtl ul{
        margin: 0 0 10px 20px; 
    }
    .insurance_describ_content.pan_card_dtl{
        padding: 20px
    }
    /* pan_card_end */
    .insurance_describ_content.driving_licence_list .insurance_describe_list{
        margin: 0 0 20px 10px 
    }
    #CaptchaImageCode{
        width: 80%;
        height: 74px;
        float: left;
    }
    .ReloadBtn{
        position:static;
        float: left;
        margin: 36px 0 0 10px
    }

}