@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  color: #4f535e;
  font-size: 14px;
  line-height: 24px;
}

p {
  margin: 0 0 22px 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #4f535e;
}

p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 25px 0;
  padding: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 48px;
  font-weight: 500;
}

h2, h3 {
  font-size: 30px;
}

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

ul li {
  padding: 0;
  padding-left: 20px;
  position: relative;
  list-style: none;
  margin-bottom: 15px;
}

ul li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: url(images/frontend/tickic.svg) no-repeat left 0px;
  background-size: 100% 100%;
  position: absolute;
  top: 4px;
  left: 0;
}

ul.no-bullet li {
  padding-left: 0px;
}

ul.no-bullet li::before {
  display: none;
}

h3 {}

h4 {}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #4f535e;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #4494ff;
}

img {
  max-width: 100%;
}

input[type="text"], input[type="tel"], input[type="password"], input[type="email"], select {
  background-color: #fff;
width: 100%;
-webkit-appearance: none;
appearance: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
border-radius: 0;
color: #4f535e;
border: 1px solid #e5e5e5;
height: 50px;
padding: 5px 20px;
}
.form-group {
	margin-bottom: 30px;
}
textarea {
	background-color: #fff;
	-webkit-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	border: 0px solid #b8b8b8;
	padding: 12px 0;
	width: 100%;
	border-bottom: 1px solid #6e6e6e;
}

select {
  border: 1px solid #b8b8b8;
  width: 100%;
  padding: 0 11px;
  background: url(images/arrow_bottom.svg) no-repeat calc(100% - 16px) center #fff;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #e92f11;
  color: #fff;
  height: 48px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
  cursor: pointer;
}
input[type="submit"]{
  background:#4494ff;
  transition:0.3s;
}
input[type="submit"]:hover {
  background: #045fb4;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #878787;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #878787;
}

::-moz-placeholder {
  opacity: 1;
  color: #878787;
}

:-moz-placeholder {
  opacity: 1;
  color: #878787;
}

/* images alignment for wordpress content pages */

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
}

/* custom checkbox */

.form_input_check {
  position: relative;
  margin: 0;
  padding-left: 40px;
  cursor: pointer;
}

.form_input_check span {
  margin: 0;
  padding: 0;
}

.form_input_check input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check input[type="checkbox"] + span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 22px;
	height: 22px;
	border: 1px solid #cccccc;
	background: #fff;
	border-radius: 3px;
}

.form_input_check input[type="checkbox"]+span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/checked.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
  
} */

.form_input_check input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio {
  position: relative;
  margin: 0;
  padding-left: 30px;
}

.form_input_radio span {
  margin: 0;
  padding: 0;
}

.form_input_radio input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio input[type="radio"]+span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio input[type="radio"]+span::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
  
} */

.form_input_radio input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 15px;
  padding: 38px 0;
  position: relative;
  transition: 0.3s;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: #fff;
  position: relative;
}

.navbar-nav>li>a:after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  content: "";
  height: 2px;
  background: #4494ff;
  transition: 0.3s;
}

.main-head.fixed-header .navbar-nav>li>a:after {
  background: #fff;
}

.navbar-nav>li>a:hover:after {
  width: 100%;
}

.navbar-nav>li.current-menu-item>a:after {
  width: 100%;
}

/* .navbar-nav > li.current-menu-item > a, 
.navbar-nav > li > a:hover, 
.navbar-nav > li.menu-item-has-children:hover > a{color:#00bce4;} */

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu>li>a {
  color: #425964;
  display: block;
  width: 100%;
  padding: 5px 10px;
}

.sub-menu>li {
  width: 100%;
  display: block;
}

.sub-menu>li>a:hover, .sub-menu>li.menu-item-has-children:hover>a {
  background: #00bce4;
  color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */

.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

.sec-gap {
  padding: 100px 0;
}

/* back-to-top */

.back-to-top-area {
  width: 50px;
  height: 50px;
  background: #4494ff;
  position: fixed;
  bottom: 5%;
  right: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
}

.back-to-top-area img {
  width: 23px;
  height: 26px;
}

.back-to-top-area.active-backTop {
  opacity: .7;
  visibility: visible;
  right: 20px;
}

.back-to-top-area:hover {
  opacity: 1;
}

/*-------------------------
header-area
-----------------------------------------*/

.main-head {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 999;
}

.main-head.fixed-header {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  background: #4494ff;
}

.main-head.fixed-header .navbar-nav>li {
  padding: 30px 0;
}

.header-outline-btn {
  border: 1px solid rgba(255,255,255,.3);
  padding: 12px 14px;
  text-transform: uppercase;
  font-size: 13px;
  color:#fff !important;
}
.main-head.fixed-header .header-outline-btn {
  color:#fff !important;
}
.main-head.fixed-header .header-outline-btn:hover{
  color:#4494ff !important;
}
.header-filled-btn {
  border: 1px solid #4494ff;
  padding: 12px 14px;
  text-transform: uppercase;
  font-size: 13px;
  transition: 0.3s;
  background: #4494ff;
  color: #fff;
  cursor: pointer;
}

.header-filled-btn:hover {
  background: #fff;
  color: #4494ff;
}

.header-outline-btn:hover {
  background: #fff;
  color: #4494ff !important;
}

.main-head.fixed-header .header-filled-btn {
  border: 1px solid rgba(255,255,255,0.3);
}

.navbar-nav li:nth-child(6) a:after, .navbar-nav li:nth-child(7) a:after {
  display: none;
}

.navbar-nav li:nth-child(6) {
  margin-left: 135px;
}

/*-------------------------
banner-area
-----------------------------------------*/
.banner-area img {
	width: 100%;
}
.banner-area {
  position: relative;
}

.banner-area:before {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  right: 0;
}
.pricingban.banner-area:before{
  background: rgba(0, 0, 0, 0.2);
}

.banner-area .container {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.banner-cont {
  max-width: 514px;
  width: 100%;
  padding-top: 85px;
}

.banner-cont h1 {
  color: #fff;
  margin-bottom: 12px;
}

.banner-cont p {
  font-size: 18px;
  color: #fff;
}

/*---------------------------------
about-area-start
---------------------------------------*/

.about-img, .about-img-outer {
  position: relative;
  margin-bottom: 0;
}
.about-img img{
  width: 100%;
}
.about-img::before{
  position: absolute;
  top: -15px;
  left: -15px;
  content: "";
  width: 121px;
  height: 111px;
  background: #4494ff;
  z-index: -1;
}

.about-img-outer::after {
  position: absolute;
  bottom: -15px;
  right: -15px;
  content: "";
  width: 121px;
  height: 111px;
  background: #4494ff;
  z-index: -1;
}

.title-area h2 {
  font-weight: 400;
  margin-bottom: 0;
}

.title-area h2 span {
  color: #4494ff;
  font-weight: 500;
}

.about-area .title-area h2 span {
  display: block;
}

.title-area {
  margin: 0 auto 45px auto;
  max-width: 600px;
}

.about-area .title-area {
  margin-bottom: 10px;
}

.about-cont {
  padding-left: 60px;
}

.title-area p {
  margin: 15px 0 0 0;
}

/*----------------------------------
service-area-start-here
---------------------------------------------*/

.serv-area {
  padding-top: 0;
  padding-bottom: 60px;
}

.single-serv figure {
  width: 175px;
  height: 175px;
  text-align: center;
  margin: 0 auto 25px auto;
  line-height: 175px;
  border-radius: 50%;
  box-shadow: 0px 5px 20.88px 3.12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.single-serv img {
  transition: 0.3s;
}

.single-serv:hover img {
  transform: scale(0.9);
}

.single-serv:hover figure {
  border-radius: 49% 48px 50% 40px
}

.single-serv {
  text-align: center;
}

.single-serv h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: #4f535e;
}

.single-serv {
  margin-bottom: 40px;
}

/*----------------------------------
testimonial-area-start-here
---------------------------------------------*/

.testimonial-area {
  background: #f6f6f6;
}
.testimonial-area .title-area{margin-bottom: 20px;}
.single-testimonial {
  box-shadow: 0px 20px 48.06px 0px #ebebeb;
  background: #fff;
  padding: 26px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  min-height: 280px;
  height: 100%;
}
.testimonial-area .slick-dots{position: static;}
.single-testimonial .title-area {
  margin-bottom: 5px;
}
.testimonial-area .slick-dots li button{padding: 0;width: 10px;height: 10px;display: inline-block;background: #848887;border-radius: 50%;}
.testimonial-area .slick-dots li.slick-active button{background: #4494fe;}

.testimonial-area .slick-dots li button:before{display: none;}
.testimonial-area .slick-dots li{margin: 0 3px;width: auto;height: auto;}
.client-info {
  margin-bottom: 15px;
}
.testimonial-area  .client-carousel{margin-bottom: 0;}

.client-info img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info figure {
  margin-bottom: 0;
}

.client-info-cont {
  width: calc(100% - 68px);
  padding-left: 20px;
}

.client-info-cont span {
  font-size: 18px;
  color: #4494ff;
  font-weight: 500;
}

.star {
  position: relative;
  margin-bottom: 15px;
}

.star .fill-star {
  position: absolute;
  width: 74px;
  overflow: hidden;
}

.fill-star img {
  max-width: 108px;
}

.readmore {
  font-size: 18px;
  color: #4494ff;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.readmore img {
  margin-left: 10px;
  transition: 0.3s;
  margin-top: 3px;
}

.readmore:hover img {
  margin-left: 5px;
}

.client-carousel .slick-slide {
  /*margin: 0 15px;*/
  padding: 15px;
}

/*------------------------------------------
apprentcies-area-start
----------------------------------------------------------*/

.apprentcies-area {
  background-size: cover !important;
  background-attachment: fixed !important;
}

.black-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.apprent-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.apprent-info h2 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}

.apprent-info p {
  font-size: 25px;
  color: #fff;
  margin-bottom: 30px;
}

.cmn-btn {
  background: #4494ff;
  color: #fff;
  padding: 12px 16px;
  display: inline-block;
  border-radius: 2px;
  border: 1px solid #4494ff;
  transition: 0.3s;
}

.cmn-btn:hover {
  background: transparent;
}

/*----------------------------
footera-area
----------------------------------------------*/

.footer-area {
  background: #222222;
  padding:25px 0;
}

.footer-left p, .footer-left p a {
  color: #fff;
  font-size: 15px;
}

.footer-left p a:hover, .footer-nav li a:hover {
  color: #4494ff;
}

.footer-nav {
  text-align: right;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-nav li {
  display: inline-block;
  padding-left: 6px !important;
  margin-left: 5px;
  border-left: 1px solid #fff;
  margin-bottom: 0;
   font-size: 15px;
  line-height: 14px;
}

.footer-nav li a {
 
  color: #fff;
}

.footer-nav li:first-child {
  padding-left: 0 !important;
  margin-left: 0;
  border-left: 0;
}

/*---------------------------------
about-page-start
-----------------------------------------------*/

.inner-banner-area .banner-cont {
  margin: 0 auto;
  max-width: 100%;
}

.about-area.about-info-area .row {
  margin-bottom: 53px;
}

.about-area.about-info-area .row:last-child {
  margin-bottom: 0px;
}

.about-area.about-info-area .row:first-child .col-lg-6:first-child {
  order: 2;
}

.about-area.about-info-area .row:first-child .col-lg-6:nth-child(2) {
  order: 1;
}

.about-area.about-info-area .about-cont {
  padding-left: 15px;
}

.about-area.about-info-area .about-img::before, .about-img::after {
  display: none;
}

.about-btm-content-area {
  padding-top: 0 !important;
}

.about-btm-content-area ul {
 /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -25px;*/
}

.about-btm-content-area ul li {
  /*width: 48%;*/
  margin-bottom: 25px;
}
.about-btm-content-area ul li:last-child{margin-bottom: 0}
.ethicsec{
  margin-top: 35px;
}
/*---------------------------------
contact-page-start
-----------------------------------------------*/

.policy-content-area .row {
  border-radius: 6px;
}

.contact-right, .contact-left {
  padding: 40px 90px 40px 40px;
  box-shadow: 0px 23px 46.98px 7.02px rgba(165, 162, 163, 0.21);
}

.contact-left {
	padding: 35px 30px 35px 40px;
	background: #4494ff;
	min-height: 602px;
	height: 100%;
}
.contact-right{
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.contact-left{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.contact-right h3, .contact-left h3 {
	font-weight: 400;
	margin-bottom: 10px;
	text-transform: capitalize;
}
.contact-left h3, .contact-left p{
  color:#fff;
}
.contact-icon {
	width: 90px;
	display: inline-block;
	height: 90px;
	border-radius: 50%;
	line-height: 106px;
	background: #fff;
	text-align: center;
}
.contact-icon i {
	color: #000;
	font-size: 32px;
}
.contact-cont li{
  margin-bottom: 35px;
}
.contact-cont li:last-child{
  margin-bottom: 0;
}
.contact-cont li a, .contact-cont li p {
	font-size: 18px;
  color: #fff;
  width: calc(100% - 90px);
  padding-left: 20px;

}
.contact-cont li a:hover{
  color: #0146a1;
}
.contact-cont li {
	display: flex;
	align-items: center;
}
.contact-cont li:hover i{
  color:#4494ff;
}
.contact-form input {
	border: 0px;
	border-bottom: 1px solid #6e6e6e;
	padding: 10px 0;
}
input[type="submit"] {
	padding-left: 30px !important;
  padding-right: 30px !important;
  border-bottom: 1px solid #4494ff;
}
/*--------------------------------------
faq-page-start-hera
--------------------------------------------------*/
.faq-content-area h2{margin-bottom: 28px;}
.referencenote{max-width: 745px;
    margin: 0 auto;
    width: 100%;
    margin-top: 25px;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
  }
.faq-content-area .card.single-accordian .card-header .btn {
	width: 100%;
	text-decoration: none;
	text-align: left;
	font-size: 22px;
	color: #fff;
	background: #fff;
	border-radius: 0;
	padding: 10px 10px 10px 40px;
	position: relative;
	border-radius: 5px;
  white-space: normal;
  font-size: 16px;
  color: #4f535e;
  font-weight: 500;
    padding-right: 0;
}
.faq-content-area .card.single-accordian .card-header .btn:focus{
  box-shadow: none;
}
.faq-content-area .card.single-accordian .card-header {
	padding: 0;
	border: 0;
}
.faq-content-area .card {
  border: 0;
	border-top: 1px solid #dcdddf;
	border-radius: 0;
}
.faq-content-area .card:last-child {
	border-bottom: 1px solid #dcdddf;
}
.btn.btn-link .icon img.plus {
	display: none;
}
.btn.btn-link.collapsed .icon img.plus {
	display: block;
}
.btn.btn-link.collapsed .icon img.minus {
	display: none;
}
.icon {
	position: absolute;
	left: 20px;
  top: 16px;
  line-height: 1;
}
/*--------------------------------------
pricing-start-hera
--------------------------------------------------*/

.pricing-area {
	background: #f5f5f5;
}
.single-price-table {
	border: 1px solid #cccccc;
	padding: 28px 6px;
  padding-bottom: 20px;
	text-align: center;
}
.single-price-table p{
  font-size: 16px;
  line-height: 24px;
  color: #4f535e;
}
.single-price-table h4 {
	font-size: 26px;
	font-weight: 300;
  color: #4f535e;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.price {
	font-size: 72px;
  line-height: 1;
	color: #4494ff;
	display: flex;
  justify-content: center;
	position: relative;	
	font-weight: 300;
	margin-bottom: 20px;
}
.price small {
	font-size: 36px;
  line-height: 1;
  font-weight: 300;
	color: #9094a0;
  align-self: flex-end;
}
.price sup {
	color: #9094a0;
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  top: -10px;
}
.product-des{min-height: 120px;}
.pricingbtn{
  margin: 29px 0;
}
.price-btn {
	border: 1px solid #ababab;
	padding: 17px 25px;
	display: inline-block;
	text-transform: uppercase;
	color: #4494ff;
	font-weight: 500;
}
.price-btn:hover{
  background: #4494ff;
  color:#fff;
  border: 1px solid #4494ff;
}
.price-list-cont{padding: 0 20px;}
.price-list-cont ul{
	padding-top: 18px;
	border-top: 1px solid #dcdcdc;
}
.price-list-cont li {
	text-align: left;
	padding-left: 35px;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}
.price-list-cont li:last-child{margin-bottom: 0;}
.price-list-cont li::before {
	background: url('images/frontend/check.png') no-repeat;
	width: 20px;
	height: 14px;
	top: 6px;
}
.price-table-area {
  max-width: 752px;
  margin-right: auto;
  margin-left: auto;
}
.price-table-area .row{
  margin: 0 -25px;
}
.price-table-area .row > div{
  padding: 0 25px;
}
.switch-toogle-area .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 20px;
}

.switch-toogle-area .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-toogle-area .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f5f5f5;
	-webkit-transition: .4s;
	transition: .4s;
	border: 1px solid #c4c4c4;
}

.switch-toogle-area .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 3px;
  background-color: #4494ff;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-toogle-area input:checked + .slider {
  background-color: #4f535e;
}

.switch-toogle-area input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.switch-toogle-area input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.switch-toogle-area {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 44px;
}
.switch-toogle-area span {
	color: #9094a0;
}
.switch-toogle-area span.active{
  color:#4f535e;
}
.slick-dots li::before {
	display: none;
}
/*-------------------------------
register-area
--------------------------------------------*/
.register-left::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	content: "";
}
.register-top-area {
	width: 100%;
	display: flex;
}
.register-cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.register-cont h1, .register-cont p {
	color: #fff;
}
.register-cont p {
	max-width: 545px;
}
.register-left {
	padding: 0;
}
.register-left img{
  min-height:1080px;
  object-fit: cover;
  width: 100%;
}
.register-right {
	padding-top: 180px;
	padding-left: 90px;
	padding-bottom: 165px;
}
.remember-me-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.forgot-pass {
	color: #9094a0;
}
.register-right .cmn-btn, .register-popup-area .cmn-btn{
	width: 100%;
	text-align: center;
	margin: 35px 0 25px 0;
	cursor: pointer;
	box-shadow: 0px 15px 25px 0px rgba(27, 97, 239, 0.25);
	text-transform: uppercase;
}
.register-right .cmn-btn:hover{
  color:#4494ff;
}
.form_input_check span a {
	border-bottom: 1px solid #333;
}
.registerbtm-link a {
	color: #4494ff;
}
.register-area {
	position: relative;
}
.container.register-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.cms-ontent-area p a{
  color:#4494ff;
}
.copy-right {
	color: #fff;
	position: absolute;
  bottom: 48px;
  top: auto;
  left: 15px;
}
.copy-right a{
  color: #fff;
}
.copy-right a:hover{
  color:#4494ff;
}

.banner-area.inner-banner-area .banner-cont {
	padding-top: 0px;
}
.faq-content-area .card-body a {
	color: #4494ff !important;
}
.faq-content-area .card-body a:hover {
	color: #1260c5 !important;
}
.faq-content-area #accordion {
	max-width: 745px;
  margin: 0 auto;
  width: 100%;
}
.regis-password {
	position: relative;
}
.show-pass {
	position: absolute;
	top: 42px;
	right: 40px;
	cursor: pointer;
}
.cms-ontent-area h3 {
	font-size: 25px;
  font-weight: 400;
  margin-bottom: 16px;
}
.icon .minus{
  margin-top: -7px;
}
.faq-content-area .card-body {
  padding-left: 41px;
  padding-top: 0;
}
.register-popup-area {
	position: fixed;
	top: 0;
	left: auto;
	z-index: 9;
	background: #fff;
	max-width: 577px;
	right: 0;
	bottom: 0;
	padding: 120px 117px 0px 91px;
	height: 100vh;
  overflow: auto;
  transition: 0.3s;
  transform:translateX(100%)
}
.registerbtm-link {
	margin-bottom: 100px;
	display: inline-block;
}
.register-popup-area.pop-up-open{
  transform:translateX(0);
}
body.fix{
  overflow: hidden;
}
.register-popup-area h2 {
	font-size: 21px;
}
.faq-top-cont-area {
	max-width: 745px;
	margin: 0 auto 30px auto;
}
.register-popup-close{
  display: none;
}


.about-area .row{align-items: center;}

.about-cont-right{padding-left: 50px;}
.about-btm-content-area h3{margin-bottom: 12px}

.contact-form input[type=submit]{height: 35px;padding: 2px 33px !important;border-radius: 4px;}

input:focus,textarea:focus{outline: 0;}
.cms-ontent-area ul li:before{
  background: #4f535e;
  width: 4px;
  height: 4px;
  border-radius: 50%;  
  top: 10px;

}
.cms-ontent-area ul{margin-bottom: 23px;}
.cms-ontent-area ul li{padding-left: 10px;margin-bottom: 12px;}
.cms-ontent-area ul li:last-child{margin-bottom: 0;}
.privacynoticespara{margin-bottom: 12px;}
.cms-ontent-area p{margin-bottom: 12px;}
.cms-ontent-area p:last-child{margin-bottom: 0;}
.cms-ontent-area .termslistingtop li{
  margin-bottom: 32px;
}
.cms-ontent-area .termslistingtop li:last-child{
  margin-bottom: 0;
}
.cms-ontent-area ul:last-child{margin-bottom: 0;}
/* responisive-css-start */

@media(min-width:1025px) {
  .clickD {
    display: none;
  }
  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

@media (max-width: 1199px) {
  .navbar-nav li:nth-child(6) {
    margin-left: 30px;
  }
  .navbar-nav .clickD{
    display: none !important;
  }
  .about-cont {
    padding-left: 15px;
  }
  .register-right {
    padding-top: 180px;
    padding-left: 40px;
  }
}

@media(max-width:1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    cursor: pointer;
    display: block;
    background-size: 10px;
  }
  .navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
  }
  .sub-menu.show {
    display: block;
  }
}

@media (max-width: 991px) {
  .main-head {
    padding: 10px 0;
  }
  .banner-cont {
    max-width: 100%;
    padding-top: 80px;
  }
  .about-area .title-area {
    margin-bottom: 25px;
    margin: 40px 0 25px 0;
  }
  .navbar-light .navbar-toggler {
    color: #fff;
    border-color: #fff;
    background: #fff;
    padding:0 6px;
  }
  .footer-area .col-lg-3 {
    order: 2;
  }
  .footer-area .col-lg-9 {
    order: 1;
  }
  .footer-left {
    margin-top: 20px;
    text-align: center;
  }
  h1 {
    font-size: 40px;
  }
  .apprent-info h2 {
    font-size: 40px;
  }
  .footer-nav {
    text-align: center;
  }
  .footer-nav li:first-child {
    padding-left: 0 !important;
  }
  .navbar-collapse {
    background: #4494ff;
    margin-top: 15px;
    padding: 0 30px;
  }
  .navbar-nav > li {
    margin: 0 0;
    padding: 12px 0;
  }
  .navbar-nav li:nth-child(6) {
    margin-left: 0;
  }
  .header-outline-btn {
    color: #fff !important;
  }
  .header-outline-btn:hover {
    color: #4494ff !important;
  }
  .header-filled-btn {
    border: 1px solid rgba(255,255,255,0.3);
  }
  .main-head.fixed-header .navbar-nav > li {
    padding: 12px 0;
  }
  .navbar-nav {
    padding: 20px 0;
  }
  .navbar-nav > li > a::after {
    background: #fff;
  }
  .about-btm-content-area ul li {
    width: 100%;
  }
  .about-btm-content-area {
    padding-top: 0;
  }
  .contact-left {
    min-height: auto;
  }
  .contact-right, .contact-left {
    padding: 40px;
  }
  .price small {
    font-size: 20px;
  }
  .price {
    font-size: 35px;
  }
  .price p {
    top: -11px;
    left: -20px;
    font-size: 30px;
  }
  .container.register-content {
    position: relative;
  }
  .register-left img {
    min-height: auto;
    object-fit: cover;
    width: 100%;
    max-height: 300px;
  }
  .register-cont h1, .register-cont p {
    color: #000;
  }
  .register-right {
    padding-top: 40px;
    padding-left: 15px;
    padding-bottom: 40px;
  }
  .register-cont {
    padding-top: 40px;
  }
  .copy-right {
    color: #000;
    position: relative;
    bottom: 0;
    left: 0px;
    margin-bottom: 20px;
    display: block;
  }
  .copy-right a {
    color: #000;
  }
  .about-area.about-info-area .row:first-child .col-lg-6:first-child {
    order: 1;
  }
  .about-area.about-info-area .row:first-child .col-lg-6:nth-child(2) {
    order: 2;
  }
  .register-popup-close {
    width: 50px;
    display: inline-block;
    height: 50px;
    border-radius: 50%;
    background: #4494ff;
    text-align: center;
    line-height: 57px;
    color: #fff;
    margin-bottom: 20px;
    display: block;
    cursor: pointer;
  }
  .register-popup-close i {
    font-size: 26px;
  }
  .register-popup-area {
    padding: 50px;
    z-index: 999;
  }
  .header-outline-btn,.header-filled-btn{width: 200px;
    text-align: center;
    display: inline-block;}
    .about-cont-right{padding-left: 15px;}
    .price sup{font-size: 20px;}
    .single-price-table p {
    font-size: 14px;
    line-height: 24px;
  }
  .contact-left{border-radius:0;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;}
  .contact-right{border-radius:0;border-top-left-radius: 10px;border-top-right-radius: 10px;}
}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright, .alignleft, .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 0 0 22px 0;
    max-width: 100%;
  }
  /* navbar*/
  .navbar-nav .clickD {
    top: 6px;
    right: 10px;
  }
  .sub-menu, .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
  }
  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }
  /* .navbar-nav>li {
    margin: 0;
    padding: 0;
  } */
  /* .navbar-nav>li>a {
    padding: 6px 10px;
    display: inline-block;
    width: 100%;
  } */
  .sub-menu>li>a {
    padding-left: 20px;
  }
  .sub-menu .sub-menu>li>a {
    padding-left: 40px;
  }
  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }
  .banner-area .container {
    position: relative;
    top: 0;
    transform: translateY(0);
  }
  .banner-area::before {
    display: none;
  }
  .banner-cont {
    max-width: 100%;
    padding-top: 40px;
  }
  .banner-cont h1, .banner-cont p {
    color: #000;
  }
  .main-head {
    background: #4494ff;
    position: relative !important;
  }
  .sec-gap {
    padding: 50px 0;
  }
  .serv-area {
    padding-top: 0;
  }
  .apprent-info p {
    font-size: 18px;
  }
  .banner-area.inner-banner-area .banner-cont {
    padding-top: 40px;
  }
  .pricing-area {
    margin-top: 40px;
  }
  .price-table-area .col-md-6:first-child {
    margin-bottom: 40px;
  }
  .cms-ontent-area h3 {
    font-size: 18px;
  }
  .register-left::before{
    background:transparent;
  }
  .register-popup-area {
    padding: 50px 25px;
    max-width: 300px;
  }
  .about-area .title-area {
    margin: 25px 0 15px 0;
}
.about-area.about-info-area .row {
    margin-bottom: 25px;
}
.price-table-area .row {
    margin: 0 -15px;
}
.price-table-area .row > div {
    padding: 0 15px;
}
.product-des {
    min-height: inherit;
}
}

@media (max-width: 575px) {
  .navbar-brand img {
    width: 92px;
  }
  h1 {
    font-size: 30px;
  }
  h2, h3 {
    font-size: 20px;
  }
  .title-area {
    margin: 0 auto 30px auto;
  }
  .apprent-info h2 {
    font-size: 30px;
  }
  .contact-right, .contact-left {
    padding: 40px 15px;
  }
  .contact-cont li a, .contact-cont li p {
    font-size: 14px;
    width: calc(100% - 50px);
    padding-left: 10px;
    line-height: 20px;
  }
  .contact-icon {
    width: 50px;
    height: 50px;
    line-height: 56px;
  }
  .contact-cont li {
    margin-bottom: 15px;
  }
  .contact-icon i {
    font-size: 18px;
  }
  .single-price-table h4 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .price-btn {
    padding: 17px 18px;
  }
}

@media(max-width: 479px){
  h1 {
    font-size: 25px;
}
.apprent-info h2 {
    font-size: 25px;
}
.apprent-info p {
    font-size: 15px;
    margin-bottom: 20px;
}
.single-price-table h4 {
    font-size: 21px;
    margin-bottom: 24px;
}
}