/* 



*/





/* Veriables CSS */
:root {
    --primary-color: #000839;
    --primary-font: 'Poppins';
    --transition: 0.4s all ease-in-out;
}

/* Global CSS */

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--primary-font);
    color: #000000;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: #000000;
}

/* Title CSS */
.title {
    margin-bottom: 50px;
}

button.quote-button.btn.btn-block {
    line-height: 1.5;
}

/* Header CSS */

nav.navbar {
    width: 100%;
    height: 80px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    /*overflow: hidden;*/
}

.navbar-nav li {
    /*padding: 20px !important;*/
    border-right: 1px solid rgb(233, 227, 227);
    transition: var(--transition);
}
.navbar-nav li:first-child {
    border-left: 1px solid rgb(233, 227, 227);
}
.navbar-nav li:hover {
    background-color: var(--primary-color);
}
.navbar-nav li:hover a {
    color: #ffffff !important;
}

@media (max-width: 992px) {

    nav.navbar {
        height: auto !important;
    }

    nav .navbar-nav {
        background-color: var(--primary-color) !important;
        border: 1px solid #f7f7f7 !important;
    }

    .navbar-nav li {
        padding: 0px 15px !important;
        border-bottom: 1px solid #f7f7f7;
    }

    .navbar-nav li a {
        color: #ffffff !important;
    }
}

a.navbar-brand img {
  width: 75% !important;
}

.stickey {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  z-index: 9999;
}

@media (max-width: 450px) {
  nav#header-ms {
    text-align: center;
}

button.navbar-toggler {
    display: inline-block !important;
    width: 100% !important;
}
}

/* Services Part CSS */

.services-part {
    padding: 50px 0;
}

.service-box {
    padding: 20px 15px;
    border-radius: 6px;
    color: #ffffff !important;
    transition: var(--transition);
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    height: 400px;
    overflow: hidden;
}

.service-box .service-btn {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 30px;
  transition: var(--transition);
}

.wwa .service-box {
    height: auto !important;
    margin-top: 20px !important;
}

.hcwhy .service-box {
    height: 330px;
}

@media (max-width: 786px) {
    .hcwhy .service-box {
        height: auto !important;
    }
}

.service-box .sb-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    line-height: 70px;
    text-align: center;
    margin-bottom: 15px;
    -webkit-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    -moz-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    -ms-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    -o-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    background-color: var(--primary-color);
    position: relative;
}

.service-box .sb-icon i {
  font-size: 25px !important;
  line-height: 70px !important;
  margin: auto 0;
}

.service-box:hover {
    transform: translateY(-10px);
}

/* Testimonials CSS */

.testi-wrap {
    position: relative;
    height: 725px;
    margin-top: -80px;
  }

  @media (max-width: 992px) {
    section#testimonial-area {
      padding-bottom: 100px !important;
    }
  }

  @media (max-width: 430px) {
    section#testimonial-area {
      padding-bottom: 300px !important;
    }
  }
  
  .client-single {
    margin-top: 20px;
    text-align: center;
    position: absolute;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  
  .client-info,
  .client-comment {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .client-single.inactive .client-comment,
  .client-single.inactive .client-info {
    display: none;
  }
  .client-single.inactive .client-comment,
  .client-single.inactive .client-info {
    opacity: 0;
    visibility: hidden;
  }
  .client-single.position-1 {
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
  }
  .client-single.position-2 {
    left: -40px;
    top: 105px;
  }
  .client-single.position-3 {
    left: -60px;
    top: 240px;
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
  }
  .client-single.position-4 {
    left: 55px;
    top: 380px;
  }
  .client-single.position-5 {
    top: 30px;
    right: 55px;
  }
  .client-single.position-6 {
    top: 225px;
    right: -40px;
  }
  .client-single.position-7 {
    top: 400px;
    right: 45px;
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
  }
  .client-single.active {
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    width: 70%;
  }
  .client-single.active .client-comment,
  .client-single.active .client-info {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  .client-single:not(.active) {
    -webkit-transform: scale(0.55);
    transform: scale(0.55);
    z-index: 99;
  }
  .client-single.active .client-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    position: relative;
    border-radius: 50%;
    background-color: var(--primary-color);
    overflow: hidden !important;
  }
  .client-single .client-img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 8px solid #d1e9ff;
    cursor: pointer;
    object-fit: cover;
  }
  .client-single.active .client-img img {
    max-width: 150px;
    max-height: 150px;
    margin: 0 auto 24px;
    border: 0;
    object-fit: cover;
  }
  
  .client-comment {
    padding: 0 30px;
  }
  .client-comment h3 {
    font-size: 22px;
    line-height: 32px;
    color: #505b6d;
  }
  .client-comment span i {
    font-size: 60px;
    color: #0084ff;
    margin: 40px 0 24px;
    display: inline-block;
  }
  
  .client-info h3 {
    color: #000;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .client-info p {
    color: #0084ff;
    text-transform: uppercase;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    #testimonial-area .section-heading h2 {
      font-size: 30px;
    }
  
    .client-comment h3 {
      font-size: 18px;
      line-height: 28px;
    }
  
    .client-single.active {
      width: 60%;
    }
  
    .client-single:not(.active) {
      -webkit-transform: scale(0.55);
      transform: scale(0.35);
    }
  
    .client-single.position-3,
    .client-single.position-7 {
      -webkit-transform: scale(0.3) !important;
      transform: scale(0.3) !important;
    }
  
    .client-single.active .client-img img {
      max-width: 100px;
    }
  
    .client-single.active .client-img::before {
      padding: 5px;
      width: 108px;
      height: 108px;
      top: -4px;
      left: 6px;
    }
  
    .client-single.active .client-img {
      width: 120px;
      height: 100px;
    }
  
    .testi-wrap {
      height: 580px;
    }
  
    #testimonial-area {
      padding: 100px 0 0;
    }
  }
  @media only screen and (min-width: 480px) and (max-width: 767px) {
    #testimonial-area .section-heading h2 {
      font-size: 30px;
    }
  
    .client-comment h3 {
      font-size: 14px;
      line-height: 26px;
    }
  
    .client-single.active {
      width: 60%;
    }
  
    .client-comment span i {
      font-size: 40px;
    }
  
    .client-single:not(.active) {
      -webkit-transform: scale(0.55);
      transform: scale(0.35);
    }
  
    .client-single.position-5,
    .client-single.position-7 {
      right: 0;
    }
  
    .client-single.position-4 {
      left: 0;
    }
  
    .client-single.position-3,
    .client-single.position-7 {
      -webkit-transform: scale(0.3) !important;
      transform: scale(0.3) !important;
    }
  
    .client-single.active .client-img img {
      max-width: 80px;
    }
  
    .client-single.active .client-img::before {
      padding: 5px;
      width: 88px;
      height: 88px;
      top: -4px;
      left: 16px;
    }
  
    .client-single.active .client-img {
      width: 120px;
      height: 100px;
    }
  
    .testi-wrap {
      height: 630px;
    }
  }
  @media only screen and (min-width: 360px) and (max-width: 479px) {
    #testimonial-area .section-heading h2 {
      font-size: 30px;
      line-height: 40px;
    }
  
    .client-comment h3 {
      font-size: 14px;
      line-height: 26px;
    }
  
    .client-single.active {
      width: 80%;
    }
  
    .client-comment span i {
      font-size: 40px;
    }
  
    .client-single:not(.active) {
      -webkit-transform: scale(0.25);
      transform: scale(0.25);
    }
  
    .client-single.position-5,
    .client-single.position-7,
    .client-single.position-6 {
      right: -70px;
    }
  
    .client-single.position-4 {
      left: -60px;
    }
  
    .client-single.position-3 {
      left: -75px;
    }
  
    .client-single.position-3,
    .client-single.position-7 {
      -webkit-transform: scale(0.25) !important;
      transform: scale(0.25) !important;
    }
  
    .client-single.active .client-img img {
      max-width: 80px;
    }
  
    .client-single.active .client-img::before {
      padding: 5px;
      width: 88px;
      height: 88px;
      top: -4px;
      left: 16px;
    }
  
    .client-single.active .client-img {
      width: 120px;
      height: 100px;
    }
  
    .testi-wrap {
      height: 600px;
    }
  }
  @media only screen and (min-width: 320px) and (max-width: 359px) {
    #testimonial-area .section-heading h2 {
      font-size: 30px;
    }
  
    .client-comment h3 {
      font-size: 14px;
      line-height: 26px;
    }
  
    .client-single.active {
      width: 80%;
    }
  
    .client-comment span i {
      font-size: 40px;
    }
  
    .client-single:not(.active) {
      -webkit-transform: scale(0.25);
      transform: scale(0.25);
    }
  
    .client-single.position-5,
    .client-single.position-7,
    .client-single.position-6 {
      right: -70px;
    }
  
    .client-single.position-4 {
      left: -60px;
    }
  
    .client-single.position-3 {
      left: -75px;
    }
  
    .client-single.position-3,
    .client-single.position-7 {
      -webkit-transform: scale(0.25) !important;
      transform: scale(0.25) !important;
    }
  
    .client-single.active .client-img img {
      max-width: 80px;
    }
  
    .client-single.active .client-img::before {
      padding: 5px;
      width: 88px;
      height: 88px;
      top: -4px;
      left: 16px;
    }
  
    .client-single.active .client-img {
      width: 120px;
      height: 100px;
    }
  
    .testi-wrap {
      height: 550px;
    }
  }
  





/* About CSS */
.ms-about {
    width: 100%;
    height: 100%;
    padding: 70px 0;
}
.ms-aboutData {
    padding: 30px 0;
    overflow: hidden;
    background: var(--primary-color);
    height: 500px;
}
.ms-aboutData p {
    color: #fff !important;
    padding: 0 15px;
}
.hujubuju {
    height: 500px;
    overflow: hidden;
}


/* Plan CSS */

.plan .plan-list ul li {
    display: block;
    width: 100%;
}
.plan {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Header Top */

.header-top-ms {
    width: 100%;
    padding: 10px 0;
    background: var(--primary-color);
    color: #ffffff;
}

.ht-left span {
    padding: 0 10px;
    border-right: 1px solid #fff;
}

.ht-left span a {
    color: #ffffff;
}

.ht-left span:nth-child(1) {
    color: #ffffff;
}

.ht-left span:last-child {
    border-right: 0;
}

.ht-left span span {
    border-right: 0;
    font-weight: 500;
    font-size: 18px;
}

.ht-right {
    text-align: right;
}

.ht-right span {
    padding: 0 20px;
    border-right: 1px solid #fff;
}

.ht-right span a {
    color: #fad301;
}

.ht-right span:last-child {
    border-right: 0;
    padding-right: 10px;
}

@media (max-width: 991px) {
    .header-top {
        text-align: center;
    }

    .ht-right {
        text-align: center;
        padding-top: 15px;
    }

}



/* Pring Heading */

.ms-heading {
  width: 100%;
  height: auto;
  padding: 60px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ms-heading::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
}