* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body {
  font-family: "Raleway", sans-serif !important;
}

/* scroll to top button */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #22cfb8;
  color: #fff;
  height: 40px;
  width: 40px;
  cursor: pointer;
  padding: 15px;
  border-radius: 25%;
  font-size: 20px;
}

#scrollToTopBtn i {
  vertical-align: middle;
}

/* ====================================================== Navbar ===============================================*/

.nav-link {
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar-collapse {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background-color: #f8f9fa;
  transition: left 0.3s;
  z-index: 1000;
}

.navbar-collapse.show {
  left: 0; /* Move in from the left when toggled */
}

.navbar-nav {
  width: 100%;
  text-align: center;
  padding-top: 50px;
}

.navbar-nav .nav-item {
  padding: 15px;
}

.close {
  position: absolute;
  top: 7%;
  right: 10%;
  border: none;
  background-color: transparent;
  color: #22cfb8;
}

.nav-bar {
  border: none;
  background-color: transparent;
  color: #22cfb8;
}
.ds {
  display: block;
}

.mb {
  display: none;
}

@media (min-width: 768px) {
  .navbar-nav {
    justify-content: space-around;
    align-items: center;
    padding-top: 0;
  }

  .navbar-nav .nav-item {
    padding: 0;
  }

  .navbar-collapse {
    position: static;
    height: auto;
    background-color: transparent;
    transition: none;
  }

  .navbar-toggler {
    display: none;
  }
}
@media (max-width: 768px) {
  .mb {
    display: block;
  }
  .ds {
    display: none;
  }
}
.nav-link:hover {
  color: #22cfb8;
}

.search {
  margin: 20px;
  display: inline-flex;
  align-items: center;
  background-color: #22cfb8;
  color: white;
  padding: 10px;
  border-radius: 40px;
}

.search :is(input, button) {
  color: inherit;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.search__input {
  width: 0;
  transition: width 0.5s;
}

.search__button {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: color 0.25s;
}

.search__button:hover {
  color: #e3e3e3;
}

.search:focus-within input {
  width: 140px;
}

::placeholder {
  font: inherit;
  color: black;
}

/* ====================================================== Hero Section ===============================================*/

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(https://internship.codeclause.com/assets/img/hero-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  padding-top: 80px;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

@media (max-width: 992px) {
  .hero {
    height: 80vh;
  }
  .col-xl-6 {
    text-align: center;
  }
  .col-xl-6 h1 {
    font-size: 27px !important;

    margin-top: 2.5rem;
  }

  .col-xl-6 h2 {
    font-size: 18px !important;
    line-height: 24px;
    margin-top: 1.5rem;
  }
}

a {
  color: #22cfb8;
  text-decoration: none;
}

.hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #22cfb8;
  border: 2px solid #22cfb8;
}

.hero .btn-get-started:hover {
  border: 2px solid #22cfb8;
  border-radius: 4px;
  background: transparent;
  color: #22cfb8;
}

/* ====================================================== Counts Section ===============================================*/

.counts {
  padding-top: 80px;
}

@media (min-width: 992px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width: 700px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #22cfb8;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

/* ====================================================== Features Section ===============================================*/

.features {
  background-color: #1b1b1b;
  background-image: linear-gradient(
    140deg,
    #fff 0%,
    #fff 5%,

    #1b1b1b 5%,
    #1b1b1b 13%,
    #fff 13%,
    #fff 87%,
    #1b1b1b 87%,
    #1b1b1b 95%,
    #fff 95%,
    #fff 100%
  );
  height: 100% !important;
}

@media (max-width: 768px) {
  .features {
    padding-bottom: 64.5rem !important;
  }
}

.feat-box {
  cursor: pointer;
  border: 2px solid #22cfb8;

  border-radius: 6px;
  padding: 0px 10px;
}
@media (max-width: 768px) {
  .feat-box {
    margin-top: 0 !important;
  }
}
.feat-box i {
  margin-top: 30px !important;
  color: #22cfb8;
  font-size: 35px;
}
.feat-box p {
  color: #7a7a7a;
  font-weight: bold;
  font-size: 25px;
}
/* .features p{
    color: #7a7a7a;
} */
.feat-para {
  color: #7a7a7a !important;
  font-size: 15px;
  text-align: justify;
  margin-bottom: 8px;
}

.feat-box:hover {
  background-color: #22cfb8;
}

.feat-box:hover i,
.feat-para {
  color: #fff;
}

.thick-underline2 {
  position: relative;
  color: #1b1b1b;
}

.thick-underline2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 2px;
  border-radius: 20%;
  background-color: #22cfb8;
  transform: translateX(-50%);
}

/* ====================================================== Testimonial Section ===============================================*/

.testimonial-card {
  padding: 30px 30px 25px 30px;
  width: 100%;
  /* position: relative; */
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.testimonial .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  /* position: relative; */
  background: #fff;
  border-radius: 15px;
}

.testimonial-item img {
  width: 140px;
  vertical-align: middle;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}
.testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}
.testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
  font-family: "Raleway", sans-serif;
}
.testimonial-item p {
  font-style: italic;
  font-size: 20px;
  margin: 30px auto 15px auto;
  line-height: 27px;
}
.testimonial-item p i {
  color: #fceaea;
  font-size: 35px;
}

/* ====================================================== Footer Section ===============================================*/

.footer {
  background-color: #1b1b1b;
}
footer h2 {
  vertical-align: middle;
}

.footer .footer-links h4 {
  font-size: 16px;
  font-weight: bold;
  margin-left: 40px;
  position: relative;
  padding-bottom: 12px;
  color: #fff;
  font-family: "Raleway", sans-serif;
}

.footer .footer-links h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #22cfb8;
  bottom: 0;
  left: 0px;
}

.footer-links ul li {
  list-style: none;
  padding: 5px;

  color: #fff !important;
  font-size: 14px;

  cursor: pointer;
}

.link-list li a {
  color: #999;
}

.footer-links ul li a:hover {
  color: #fff;
}

/* ====================================================== Copyright Section ===============================================*/

.copyright {
  background-color: black;
}
.copyright p {
  font-size: 15px;
}

.social-icons {
  text-align: center;
  padding-bottom: 10px;
}

.social-icons i {
  cursor: pointer;
  display: inline-block;
  font-size: 35px;
  border-radius: 4px;
  color: #1b1b1b;
  background-color: white;

  margin-left: 4px !important;
  margin-right: 4px !important;
}

.social-icons i:hover {
  color: #22cfb8;
  background-color: transparent;
}
