
:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

/* .btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
} */

.btn.btn-primary{
    background: #3385FF;
    border-color: #3385FF;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 44px;
    padding: 10px 0;
    color: black;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        left: 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/Rectangle\ 34.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

/* .service-item a.btn {
    color: var(--primary);
} */

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointmentt {
    background: linear-gradient(rgb(51, 133, 255), rgb(51, 133, 255));
    background-size: cover;
}
/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: none;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #0093FE;
}

.footer .copyright a:hover {
    color: #FFFFFF;
}
.display-8{
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 2rem;
    color: black;
}
.display-7{
    font-weight: 500;
    font-size: 1rem;

}
.display-6{
    font-weight: 500;
    font-size: 1.3rem;

}
.display-5{
    font-weight: 500;
    font-size: 30px;
}
.display-4{
    font-weight: 500;
    font-size: 30px;
    line-height: 42px;
}
.drive{
    border: 1px solid black;
    border-radius: 20px;
    border-color: #696E77;
}

.li_sty ul {
 list-style-type: disclosure-closed;
}
.li_sty ul li{
    margin-bottom: 15px;
    color: #222222;
   }

.li_sty ul li::marker{
   
    color: #00CC9A;
   }

   .li_stye ul {
    list-style-type: disclosure-closed;
   }
   .li_stye ul li{
       margin-bottom: 15px;
       color: #222222;
      }
   
   .li_stye ul li::marker{
      font-size: 20px;
       color: #3385FF;
      }


      .li_style ul {
        list-style-type: circle;
        
       }
       .li_style ul li{
           margin-bottom: 15px;
           color: #222222;
           position: relative;
          }
          /* .li_style ul li::after{
            position: absolute;
            content: "";
            width: 57px;
            height: 1px;
            bottom: -12px;
            left: -50px;
            background: #7E7E7E;
            transition: .5s;
            border: 1px dashed #7E7E7E;
            transform: rotate(90deg);
           } */
       .li_style ul li::marker{
      position: relative;
           color: #3385FF;
          font-size: xx-large;
        
          }
          
.drive:hover .drive_2{
    background:#3385FF;
    opacity: 1;
    
}

   .drive_2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    /* display: block; */
    align-items: center;
    justify-content: center;
    transition: .5s;
    opacity: 0;
   }

   .drive_2 p, .drive_2 a{
    position: relative;
    text-align: center;
    top: 35%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 40px;
   }
 
   .drive_2 a.dr1{
    top: 78px;
   }
   .drive_2 a.dr2{
    top: 43px;
   }

   .drive_2 a{
    color: #F6F7FC;
    padding: 0.875rem 2.95rem;
    font-size: 1.2rem;
    border-radius: 6px;
   }

   .secse{
    margin-top:18px ;
    margin-bottom: 18px;
   }

 

   .search{
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1);
      
    }

    .search input{

     height: 60px;
     text-indent: 25px;
     border: 2px solid #d6d4d4;


    }


    .search input:focus{

     box-shadow: none;
     border: 2px solid #3385FF;


    }

    .search .fa-envelope{

     position: absolute;
     top: 20px;
     left: 16px;
     color: #AFAFAF;
     font-size: 20px;
    }

    .search button{

     position: absolute;
     top: 5px;
     right: 5px;
     height: 50px;
     width: 110px;
     color: #AFAFAF;
     border-color: #3385FF;
     background: #3385FF;

    }

    @media screen and (max-width: 770px) {
        .bg-lightt{
            background-color: #F6F7FC !important;

        }
      }



      /* .advertiserr{
        background: #CBCBCB;
      } */

      .box_sha{
        box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
      }

      @media screen and (max-width: 900px) and (min-width: 600px) {
        div.example {
          font-size: 50px;
          padding: 50px;
          border: 8px solid black;
          background: yellow;
        }
      }
     
     

      .for_m{
        padding: 0.675rem 0.75rem;
        border-radius: 7px;
      }

      .for_m:focus {
        color: #696E77;
        background-color: #fff;
        border-color: #80afe4;
        outline: 0;
        box-shadow: 0 0 0 0.07rem #3385FF;
    }

    
    .txta{
        padding-left: 35px;
        padding-right: 35px;
    }
    .form-label{
        color: #222222;
    }
    .form-check-label{
        color:#222222 ;
    }
    .form-check-inlinee {
        margin-right: 3rem;
    }

    .form-check-input:checked {
        background-color: #6C57DB;
        border-color: #6C57DB;
    }

   

      @media screen and (max-width: 450px) {
        .txttt{
            font-size: 24px;
            line-height: 29px;
        }
      }
      
      .navbar-light .navbar-toggler {
        color: rgb(51, 133, 255);
        border-color: rgb(51, 133, 255);
    }

    .navbar-toggler:focus {
       
        outline: 0;
        border-width: 0px;
     
    }

.earth_img_pub{
    width: 276px;
    height: 201px;
}
@media screen and (max-width: 780px) {
    .txta{
        padding-left: 15px;
        padding-right: 15px;
    }

   
  }

  .drive_11{
    border: 1px solid black;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-color: #696E77;
  }

  .pub_dia{
    border-top-style: solid;

  border-image: repeating-linear-gradient(90deg, #0093FE 0%, #A290FF 100%) 10;
  border-width: 15px;
  }

  .li_stylearrpw ul{
    list-style: none;
  }
  .li_stylearrpw ul li{
    position: relative;
	margin-bottom: 30px;

 }
  .li_stylearrpw ul li::before{
    content: '\2192';
    position: absolute;
    font-size: xx-large;
    top: -16px;
    left: -38px;
    color: #0093FE;
  }

  .form-check-input-radio[type="checkbox"] {
    border-radius: 50%;
}


.pub_te{
    font-weight: bold;
    color: black;
    background-color: #F2F2F2;
}


.footer .btn.btn-linkk {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer .btn.btn-linkk:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.whwedo{
    font-size: 3.5rem; line-height: 47px;
}

.whwehoor{
    height: 17px;
    margin-right: auto;
    width: 15%;
    margin-left: auto;
    text-align: center;
    color: #6C57DB;
    background-color:#6C57DB ;
    opacity: 1;
}
hr:not([size]) {
    height: 3px;
}


  .accordion .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion .card {
    margin-bottom: 1.4rem;
    box-shadow: 0px 1px 15px 1px rgba(230, 234, 236, 0.35);
    border-radius: .25rem;
    border: none;
}

.accordion .card .card-header {
    background-color: transparent;
    border: 2px solid;
    border-radius: 10px;
    border-color: #C5C5C5;
    padding: 1rem;
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.accordion .card .card-header * {
    font-weight: 400;
    font-size: 1rem;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.accordion .card .card-header a {
    display: block;
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    position: relative;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
    padding-right: 1.5rem;
}

.accordion .card .card-header * {
    font-weight: 400;
    font-size: 1rem;
}

.accordion .card .card-header a[aria-expanded="false"]:before {
    content: "\002B";
    font-size: 23px;
    margin-top: -3px;

}

.accordion .card .card-header a[aria-expanded="true"]:before {
    content: "\2212";
    font-size: 23px;
    margin-top: -3px;

}

.accordion .card .card-header a:before {
    
    position: absolute; 
    right: 7px;
    top: 0;
    font-size: 18px;
    display: block;
    font-family: FontAwesome;
      
     display: inline-block;
     padding-right: 3px;
     vertical-align: middle;
     font-size: .756em;
     color: #405189
}

.plusCard{
  
    border: 2px solid;
    border-top: 0px ;
    border-radius: 10px;
    border-color: #C5C5C5;
}

.whwedoo{
    font-size: 2.2rem; 
    line-height: 47px;

}

.whwehoorr{
    height: 17px;
    margin-right: auto;
    width: 17%;
    margin-left: auto;
    text-align: center;
    color: #00CC9A;
    background-color:#00CC9A ;
    opacity: 1;
}
.whwehoorrOther{
    height: 17px;
    margin-right: auto;
    width: 8%;
    margin-left: auto;
    text-align: center;
    color: #00CC9A;
    background-color:#00CC9A ;
    opacity: 1;
}

@media screen and (max-width:450px) {
    .whwedo{
        font-size: 2.9rem;
        line-height: 47px;
    }
    .whwehoor{
        
        width: 40%;
        
    }
    .whwehoorr{
        width: 40%;
    }
    .whwehoorrOther{
        width: 40%;
    }
   
  }


  .trans_ind_li{
    color: #222222;
    font-family: "poppins";
    
  }

  .trans_ind_li ul{
    list-style: none;
  }
  .trans_ind_li ul li{
    margin-bottom: 15px;
  }

  .trans_ind_li ul li::before {
    content: '\2713';
    position: relative;
    font-size: large;
    top: 0px;
    left: -10px;
    color: #00CC9A;
}
.drive_11tr{
    border: 1px solid black;
    border-radius: 20px;
    border-color: #696E77;
}

.ter_ser p{
 color: #4F4F4F;
 font-family: Poppins;
 font-weight: 400;
}
.ter_ser h5{
    color: black;
}