body {
  margin: 0;
  padding: 0;
}

/* .img-section img{
 
    width: 140px;
    height: 120px;
    float: left;

h1{
    float: right;
} */
.navbar-brand img {
  width: 140px;
  height: 120px;
  margin-top: -30px;
}

.section-bg {
  background-color: #E2F2F1;
  /* padding:5px; */
}

#text-color {
  color: #e74c3c;
}

#theme {
  background-color: #e74c3c;
}

.section-bg1 {
  background-color: rgb(252, 252, 252);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 600px) {
  iframe {
    width: 100%;
  }

  .navbar-nav .btn {
    color: red;
    background-color: rgb(251 251 250);
    border: none;

  }

  .navbar-nav li {
    border-bottom: 1px solid red;
    background-color: rgb(251 251 250);

  }

  .navbar-nav li:last-child {
    border: none;
  }

  .navbar-nav li:first-child {
    border-top: 1px solid red;

  }

  .gap-3 {
    gap: 0rem !important;
  }

  .box {
    flex-direction: column-reverse;
  }

  .icon {
    margin-top: -40px;
  }

  .search-box {
    top: 75% !important;
    left: 50% !important;
    width: 70% !important;
    margin-left: 50% !important;
  }
}

.search-box {
  /* position: absolute; */
  /* top:50%;
    left: 32%; */
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  height: 50px;
  border-radius: 40px;
  padding: 5px 14px;
  color: black;
  width: 50%;
  margin-left: auto;
  margin-top: 20px;
}

.search-box:hover>.icon {
  background-color: #E2F2F1;
}

.icon {
  color: #EAFAF1;
  float: right;
  width: 40px;
  font-size: 1rem;
  height: 40px;
  border-radius: 50%;
  background-color: #dc3545;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  cursor: pointer;
  text-decoration: none;
}

input {
  /* width: 0; */
  border: none;
  outline: none;
  padding: 0 10px;
  background: none;
  font-size: 1.1rem;
  transition: 0.5s ease;
  line-height: 40px;
  color: #000;
}

.navbar-brand {
  margin-right: -1rem;
}

.navbar-brand span {
  margin-left: -22px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #dc3545;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #dc3545;
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}


/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
  width: 100%;
}

.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #dc3545;
  text-decoration: none;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: #dc3545;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}