@import url("https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,300;7..72,400;7..72,500;7..72,600;7..72,700&family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #ff2b4a;
  --color-blue: #3f69b1;
  --color-grey: #a9a9a9;
}

button {
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #353535;
}

b {
  font-weight: bold;
}

h2 {
  font-size: 40px;
  font-weight: 600;
}
h2.c-red {
  color: var(--color-primary);
}

body,
html {
  font-size: 16px;
  min-width: 320px;
  overflow-x: visible;
  min-height: 100%;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: normal;
  color: #444444;
  background-color: var(--color-white);
  line-height: 1.4;
}

a {
  text-decoration: none;
}

.navbar-brand img {
  max-width: 200px;
}

.bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  display: block;
}

.btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 15px 25px !important;
  min-width: 170px;
  justify-content: center;
  text-align: center !important;
  border-radius: 0;
  border-radius: 30px;
}
.btn:hover {
  background-color: #00367f;
  color: var(--color-white);
}
.btn--small {
  padding: 8px 25px !important;
}

.navbar {
  padding: 30px 0;
  background-color: transparent;
  transition: all 0.3s ease;
}
.navbar--scroll {
  background-color: var(--color-white);
  padding: 8px;
}
.navbar .nav-link {
  padding-left: 20px !important;
  padding-right: 20px !important;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.navbar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 30px;
}

.banner {
  padding: 250px 0 60px;
}
.banner__tag {
  background-color: var(--color-white);
  padding: 0 16px;
  padding-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  min-height: 32px;
}
.banner__tag span {
  background-color: #feaa25;
  width: 32px;
  height: 32px;
  padding: 3px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.banner h1 {
  font-size: 49px;
  color: #242f51;
  font-weight: 600;
}
.banner p {
  font-size: 22px;
  color: #353535;
  font-weight: 400;
}
.banner.inner-banner {
  padding: 150px 0 40px;
}
.banner.inner-banner .inner-banner-img {
  margin-top: -50px;
}

.about-us {
  padding: 180px 0;
  border-top: 20px solid var(--color-primary);
}

.what-do {
  padding: 90px 0;
  background-color: #4e77c3;
}
.what-do__head h2 {
  font-weight: 700;
}
.what-do__head p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.what-do__wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.what-do__wrapper .tile {
  flex: 0 1 calc(33.33% - 30px);
}

.tile {
  background-color: var(--color-white);
  border-radius: 6px;
  filter: drop-shadow(2.5px 4.33px 13.5px rgba(3, 3, 3, 0.4));
  overflow: hidden;
}
.tile__img {
  height: 250px;
}
.tile__strip {
  position: absolute;
  padding: 8px 8px;
  color: var(--color-white);
  font-size: 16px;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.768);
  width: 100%;
  text-align: center;
}
.tile p {
  font-size: 16px;
}

.strip {
  background-color: var(--color-primary);
  height: 230px;
  padding: 40px 0;
}
.strip h3 {
  font-size: 37px;
  color: #ffffff;
  font-weight: 600;
}
.strip .btn {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background-color: transparent;
}
.strip .btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.contact {
  background-color: #639cc0;
  padding: 100px 0;
}
.contact.inner-contact {
  background-color: #ffffff;
}

.form {
  background-color: #8bb5ce;
  padding: 60px 30px;
}
.form h2 {
  font-size: 26px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}
.form .input {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.6);
  height: 50px;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 16px;
  padding: 16px;
}
.form .input::placeholder {
  color: var(--color-white);
}
.form .input:focus {
  outline: none;
  box-shadow: none;
}
.form .text-area {
  height: 150px;
}
.form .btn {
  border-radius: 0;
  background-color: #ff2b4a;
  color: var(--color-white);
}

.form-right-box {
  background-color: #547e96;
  padding: 40px 25px;
  min-height: 184px;
}
.form-right-box h4 {
  font-size: 26px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.testimonials {
  padding: 100px 0;
}
.testimonials h2 {
  font-weight: 700;
}
.testimonials .carousel-item {
  color: #353535;
}
.testimonials .carousel-item p {
  color: #3b76c6;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.testimonials .carousel-item span {
  font-size: 14px;
  color: #353535;
  font-weight: 300;
  text-align: center;
}
.testimonials .carousel-item svg {
  fill: var(--color-primary);
}
.testimonials .carousel-control-next,
.testimonials .carousel-control-prev,
.testimonials .carousel-indicators {
  position: static;
}
.testimonials .carousel-indicators [data-bs-target] {
  text-indent: 0;
  width: 50px;
  height: 50px;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
}
.testimonials .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.testimonials .carousel-indicators {
  height: 70px;
}
.testimonials .carousel-indicators .active {
  width: 70px;
  height: 70px;
}

.inner-banner-img {
  margin-top: -90px;
}

.scroll {
  position: relative;
  top: -30px;
}

footer {
  background-color: var(--color-primary);
  height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-white);
}

.p-tag {
  font-size: 20px;
}

.fw-bold {
  font-weight: 600 !important;
}

.choose {
  flex: 0 1 calc(33.33% - 32px);
}
.choose img {
  width: 85px;
  height: 85px;
}
.choose p {
  font-size: 14px;
  line-height: 25px;
  max-width: 75%;
}

@media (max-width: 1024px) {
  .navbar-nav {
    background-color: var(--color-primary);
    padding: 20px;
  }
  .navbar-nav .nav-link {
    padding-left: 0 !important;
  }
  .what-do__wrapper {
    gap: 20px;
  }
  .what-do__wrapper .tile {
    flex: 0 1 calc(50% - 20px);
  }
  .strip h3 {
    font-size: 30px;
  }
  .choose {
    flex: 0 1 calc(50% - 32px);
  }
  .choose p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
  .banner {
    padding: 170px 0 60px;
  }
  .banner h1 {
    font-size: 35px;
  }
  .banner p {
    font-size: 18px;
  }
  .about-us .row {
    flex-direction: column-reverse;
  }
  .what-do__wrapper .tile {
    flex: 0 1 100%;
  }
  .strip h3 {
    font-size: 25px;
  }
  .contact {
    padding: 40px 0;
  }
  .choose {
    flex: 0 1 100%;
  }
  .choose p {
    max-width: 100%;
  }
  .inner-banner-img {
    margin-top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
