@charset "utf-8";
/* Common CSS */


body {
  color: #626262;
  font-size: 14px;
  line-height: 1.42857143;
  text-rendering: auto;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
}

*, *:focus {
  outline: none;
}
a {
  color: #000;
  transition: all ease .4s;
  text-decoration: none;
}
a:focus {
  outline: none;
  outline-offset: 0;
}
a:hover, a:focus {
  color: #000;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  padding: 0;
  margin: 0;font-weight: 600;
  line-height: 1.2;
  color: #000;
}
section{padding: 100px 0;overflow: hidden;}
h2{font-size: 28px;line-height: 45px;padding-bottom: 15px;}
h3{font-size: 20px;padding-bottom: 15px;}
h4{font-size: 20px;padding-bottom: 15px;}
h6{font-size: 20px; font-weight: 500;padding-bottom: 15px;}
p {
  padding-bottom: 15px;
  margin-bottom: 0;
  color: #686868;
  font-size: 16px;
  line-height: 29px;
}
button, button:focus {
  outline: none;
  outline-offset: 0;
}
figure {
  margin: 0;
}
iframe {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  border: none;
}
video {
 display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  border: none; 
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
::selection {
  background: #EA4E25;
  color: #ffffff;
}
::-webkit-selection {
  background: #EA4E25;
  color: #ffffff;
}
::-moz-selection {
  background: #EA4E25;
  color: #ffffff;
}
::-o-selection {
  background: #EA4E25;
  color: #ffffff;
}
::-ms-selection {
  background: #EA4E25;
  color: #ffffff;
}

.form-control::-webkit-input-placeholder {
  color: #626262;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #626262;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #626262;
  opacity: 1;
}
.form-control:-moz-placeholder {
  color: #626262;
  opacity: 1;
}
.text-red{
  color: #71fead !important;
}


/*---------------------------
# Button CSS
----------------------------*/
.button {
  display: inline-block;
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #000;
  border: 1px solid transparent;
  padding: 0 15px;
  padding-top: 10px;
  padding-bottom: 11px;
  outline: none;text-transform: uppercase;
  border-radius: 4px;
  transition: all 500ms ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.button:hover{background: #fff;border-color: #000;}



/*---------------------------
# Button Varients
----------------------------*/

.button-red {
    background-color: #71fead;
    color: #fff;
    border-color: #71fead;
}

.button-bordered{
  background-color: transparent;
  border-color: #71fead;
  color: #71fead;
}

@media(hover: hover){
  .button-red:hover {
      background-color: #0B0B0B;
      color: #fff;
      border-color: #0B0B0B;
  } 

  .button-bordered:hover{
    background-color: #71fead;
    border-color: #71fead;
    color: #fff;
  } 

  .no-hover:hover{
    background-color: #71fead;
    color: #fff;
    border-color: #71fead;
  }

}


/*---------------------------
# Form CSS
----------------------------*/
.img-fluid {
  background-color: #EA4E25;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.consult_btn {
    border: 0 transparent;
    background: #EA4E25;
    color: #fff;
    padding: 12px 20px 12px 50px;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    position: relative;
    display: flex;
    align-items: center;
}

.consult_icon {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: -1pc;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
}
    
.form-group {
    margin-bottom: 25px;
}

.form-control {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 20px;
    padding: 14px 16px;
    height: 50px;
    border-radius: 4px;
    border-color: transparent;
    color: #080036;
    background-color: #FFF;
}

.form-control:focus {
    color: #100F0F;
    background-color: #fff;
    border-color: #BD3120;
    outline: 0;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly]{
  background-color: #fff;
}


.form-select{
  border-radius: 4px;
  border-color: transparent;
  height: 50px;
}

.form-select:focus {
  border-color: #71fead;
  outline: 0;
  box-shadow: none;
}
.form-label{
  font-size: 14px;
  font-weight: 600;
  color: #626262;
  margin-bottom: 15px;
  text-align: left;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

label {
  display: block;
  color: #2B2D42;;
  cursor: pointer;
}


/*---------------------------
# Radio Button CSS
----------------------------*/

.theme-radio [type="radio"]:checked,
.theme-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.theme-radio [type="radio"]:checked+label,
.theme-radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #080036;
}

.theme-radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #BDBDBD;
    border-radius: 100%;
    background: #fff;
}

.theme-radio [type="radio"]:checked+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #71fead;
    border-radius: 100%;
    background: #fff;
}

.theme-radio [type="radio"]:checked+label:after,
.theme-radio [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #71fead;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.theme-radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.theme-radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/*---------------------------
#   Checkbox CSS
----------------------------*/

.theme-checkbox {
    position: relative;
}

.theme-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    cursor: pointer;
}

.theme-checkbox input[type="checkbox"]~.label {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #B1B1B1;
    cursor: pointer;
}

.theme-checkbox input[type="checkbox"]~.label::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #373737;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 2px;
    background-color: #262626;
}

.theme-checkbox input[type="checkbox"]~.label::after {
    content: "";
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 7px;
    top: 5px;
    display: none;
}


.theme-checkbox input[type="checkbox"]:checked~.label::after {
    display: inline-block;
}



/*-----------------------------------
# Header Css Start
-----------------------------------*/

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  padding: 10px 0;
}
/* .header .container {
  display: flex;
  align-items: center;
} */
.header .top-logo {
  float: left;width: 295px;transition: all ease .4s;
}
.header .top-logo a img {
  width: 100%;
}
.join-btn{float: right;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 100px;
  background: #EA4E25;
  padding: 12px 34px;margin-top: 17px;}
 .sticky-header .top-logo {
    width: 170px;
  }
  .sticky-header .join-btn {
    margin-top: 0px;
  }
.header .main-navigation ul {
  display: inline-flex;
  vertical-align: middle;
}
.header .main-navigation ul li {
  padding-left: 35px;
}
.header .main-navigation ul li a {
  display: block;
  color: #fff;
  font-size: 18px;
  transition: all ease 0.4s;
  font-weight: 400;
  position: relative;
}
.header .main-navigation ul li a:hover {
  color: #71fead;
}
.header .main-navigation ul li a.active {
  color: #71fead;
}

.header .main-navigation .close-btn {
  display: none;
  line-height: 32px;
}
.header .main-navigation .close-btn img {
  width: 20px;
}
.header-right .user-control .dropdown {
  border: 1px solid #ddd;
  padding: 2px 5px;
  border-radius: 4px;
}
.header-right .btn.dropdown-toggle {
  box-shadow: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}
.header-right .dropdown-menu.show {
  transform: translate(-1px, 31px) !important;
}
.header-right .dropdown-menu {
  background-color: #fff;
  padding: 0;
  min-width: 96px;
}
.header-right .dropdown-menu li {
  padding: 6px 10px;
  border-bottom: 1px solid #ddd;
}
.header-right .dropdown-menu li:last-child {
  border-bottom: none;
}
.header-right .dropdown-menu li a{
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.header-right .bars-icons {
  display: none;
}
.header-right .navbar-toggler {
  padding: 0 !important;
  box-shadow: none;
  margin-left: 15px;
}
.header-right .navbar-toggler img {
  width: 24px;
  margin-top: -6px;
}
.header-right .user-control {
  display: inline-flex;
  align-items: center;
  margin: 0 -10px;
}
.header::after {
  content: "";
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
  transition: all 0.5s ease-in-out;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
}
body.mobile-navbar-open .header::after {
  display: block;
}
.header.header-varient-dark.sticky-header {background:#171448;
}
.bannar-design {
  background: #171448 url(../image/banner-bg.png) no-repeat bottom center;
  padding-bottom: 0;
}

.bannar-info {
  padding: 100px 0 0;
}

.bannar-info h1 {
  color: #EA4E25;
  font-size: 70px;
  font-weight: bold;
}

.bannar-info h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 500;
  padding: 20px 0;
}

.bannar-info p {
  color: #fff;
  font-size: 23px;
  font-weight: 500;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 35px;
}

.title-sec h6 {
  font-size: 20px;
  color: #EA4E25;
  text-transform: uppercase;
  font-weight: 600;
}

.title-sec h2 {
  font-size: 40px;
}

.title-sec p {
  font-size: 20px;
  color: #858585;
}

.title-sec {
  padding-bottom: 30px;
}

.services-sec {
  background: url(../image/service-pattern.png) no-repeat left center, url(../image/service-pattern1.png) no-repeat right center;
  padding: 200px 0;
}

.service-box {
  border: 1px solid #E1DEFF;
  border-radius: 15px;
  margin: 10px 0;
  height: 90%;
  background: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
  padding: 50px 15px;
}

.service-box h4 {
  font-size: 20px;
  color: #EA4E25;
  text-transform: uppercase;
  padding: 20px 0;
}

.service-box h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  padding: 0;
}

.parent-sec {
  background: url(../image/parent-bg.png) no-repeat center;
}

.parent-sec .title-sec h2 {
  color: #fff;
  line-height: 60px;
}

.signup-form {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
}

.signup-form h5 {
  font-size: 20px;
  color: #EA4E25;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.signup-form .form-control {
  border-color: #E7E7E7;
}

.signup-form .form-control:focus:required:invalid {
  border-color: #EA4E25;
}

.signup-form .btn {
  background: #EA4E25;
  color: #fff;
  border-radius: 3px;
  padding: 10px 30px;
  float: right;
  box-shadow: 0 0 20px 0 rgba(234, 78, 37, 0.6);
}

.sitter-sec {
  background: #F3F8FC;
}

.sitter-sec .title-sec h2 {
  line-height: 60px;
}

.comingsoon-sec form {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
  border-radius: 100px;
  max-width: 656px;
  margin: 0 auto;
  padding: 5px;
  overflow: hidden;
}

.comingsoon-sec .form-control {
  float: left;
  border: none;
  width: 65%;
  height: 67px;
  margin-left: 20px;
}

.comingsoon-sec .btn {
  float: right;
  background: #EA4E25;
  color: #fff;
  border: none;
  padding: 21px 50px;
  border-radius: 100px;
}

  
 *animation element*/
.animation-element {
  opacity: 0;
}

/*animation element sliding left*/
.animation-element.slide-left {
  opacity: 0;
  transition: all 500ms linear;
  transform: translate3d(-100px, 0px, 0px);
}

.animation-element.slide-left.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-right {
  opacity: 0;
  transition: all 500ms linear;
  transform: translate3d(100px, 0, 0);
}

.animation-element.slide-right.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-up {
  opacity: 0;
  transition: all 500ms linear;
  transform: translate3d(0, 100px, 0);
}

.animation-element.slide-up.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}
footer {
  background: #171448;
  color: #fff;
  padding: 20px 0;
}
footer a {
  color: #fff;
  font-size: 16px;
}
footer a:hover {
  color: #EA4E25;}
footer img {
  margin-right: 10px;
}
.privacy-btn, .terms-btn {
  float: right;
}
.terms-btn{border-left: 1px solid #fff;
  padding-left: 25px;
  margin-left: 30px;}
  .testiomnal-sec .title-sec {
    padding-bottom: 60px;
  }
  .clint-pic {
    width: auto !important;
  }
  .star-img {
    width: auto !important;
    position: absolute;
    right: 0;
    top: 0;
  }
  .clients-img {
    width: auto !important;
    float: right;
  }
  .testi-details p {
    font-size: 20px;
    color: #000;
  }
  .testi-details abbr {
    font-size: 20px;
    font-weight: normal;
    padding-bottom: 20px;
    display: table;
  }
  .col-lg-8.testi-details {
    padding-top: 50px;
  }
  .testiomnal-sec .owl-nav{width: 165px;
    position: absolute;
    bottom: 30px;
    left: 34%;}
  .testiomnal-sec .owl-nav button{background:#fff url(../image/back.png) no-repeat center !important;
    width: 55px;
    height: 55px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
    border-radius: 100px;}
  .testiomnal-sec .owl-nav button span{display: none;}
  .testiomnal-sec .owl-nav button.owl-next{margin-left: 20px;rotate: 180deg;}
  .testiomnal-sec .owl-nav button:hover{background:#594FD1 url(../image/back1.png) no-repeat center !important;}

/*---------------------------
#policy page CSS
----------------------------*/
.policyHeaderText{
  color:  #000000;
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
}
.privacyHeadingText{
  color:  #000000;
  font-size: 20px;
  line-height: 12px;
  font-weight: 600;
  padding-top: 3pc;
}

.privacyValueText{
  color:  #747474;
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
}
.policyPageBackgroundShadow{
  box-shadow: 0px 0px 10px 5px #0000000A;
}
.policyPageBackground{
  background-color: #F3F8FC;
}
.termsConditionHeadingText{
    color: #E94E25;
    font-weight: normal;
    font-size: 25px;
    border-top: 2px solid black;
    padding-top: 2pc;
}
#l3 > li > *:first-child:before {
  content: "● ";
  color: #333;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  font-size: 11pt;
}
.mx-8{
  margin-left: 7rem;
  margin-right: 7rem;
}
.text-justify{
  text-align: justify;
}

/*---------------------------
#policy page CSS end
----------------------------*/

@media screen and (max-width: 767px){
  .header .top-logo {
    width:170px;}
    .join-btn {
      margin-top: 0px;padding: 10px 20px;
    }
    .bannar-design {
      padding-top: 100px;
    }
    .bannar-info {
      padding: 0;
    }
    .bannar-info h1 {
      font-size: 35px;}
      .bannar-info h3 {
        font-size: 25px;}
        .bannar-info p {font-size: 16px;
          line-height: 25px;
        }
        .services-sec {
          padding: 50px 0;
        }
        .title-sec h2 {
          font-size: 30px;
        }
        .title-sec p {
          font-size: 16px;line-height: 25px;
        }
        .parent-sec .title-sec h2, .sitter-sec .title-sec h2 {
          line-height: 40px;
        }
        section {
          padding: 50px 0;}
          .comingsoon-sec .btn {padding: 15px 20px;}
          .comingsoon-sec .form-control {width: 63%;
            height: 52px;
            margin-left: 0px;
          }
          .mail-btn {
            float: none;
            display: table;
            margin: 0 auto 15px auto;
          }
          .star-img {
            position: inherit;
            margin-bottom: 10px;
          }
          .clint-pic {
            margin: 0 auto;
          }
          .testiomnal-sec .owl-nav {
            bottom: 0px;
            left: 0;
          }
}