@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Big+Shoulders:opsz,wght@10..72,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Big+Shoulders:opsz,wght@10..72,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --green: #4f9e45;
  --red: #e92729;
  --black: #1d1e1c;
  --blue: #0f3b83;
  --gray: #3c3c3c;
  --light_grreen: #a7caa1;
  --shade: #efefef;
  --light_blue: #13284c;
  --light_green: #e6efe5;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}

.main_width {
  max-width: 1600px;
  width: 90%;
  margin: auto;
}

.heading_font {
  font-family: "Oswald", sans-serif;
}

.green_bg {
  background-color: var(--green);
}
.green {
  color: var(--green);
}
.red {
  color: var(--red);
}
.red_bg {
  background-color: var(--red);
}

.blue_color {
  color: var(--blue);
}
.light_blue {
  color: var(--light_blue);
}
.extra_light {
  background-color: var(--light_grreen);
}
.light_green {
  background-color: var(--light_green);
}

.gray_color {
  color: var(--gray);
}

/* headings  */

@media (min-width: 1500px) {
  .heading1 {
    font-size: 50px;
    font-weight: 300;
  }
  .heading2 {
    font-size: 40px;
  }
    .heading3 {
    font-size: 25px;
  }
  
  .heading4 {
    font-size: 22px;
  }
}

@media (min-width: 1280px) and (max-width: 1499px) {
  .heading1 {
    font-size: 42px;
    font-weight: 300;
  }
  .heading2 {
    font-size: 32px;
  }
      .heading3 {
    font-size: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1279px) {
  .heading1 {
    font-size: 35px;
    font-weight: 300;
  }
  .heading2 {
    font-size: 25px;
  }
        .heading3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .heading1 {
    font-size: 30px;
    font-weight: 300;
  }
  .heading2 {
    font-size: 20px;
  }
 .heading3 {
    font-size: 18px;
  }
}

/* swiper slider  */

/* Swiper Class */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 3rem;
  color: var(--second-color);
  display: none;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #4f9e45;
}

/* Small Devices */
@media screen and (min-width: 768px) {
  /* .card-content {
    margin-inline: 3rem;
  } */
  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  /* .card-content {
    margin-inline: 3rem;
  } */

  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}
/* Large Devices */
@media screen and (min-width: 1120px) {
  .card-container {
    max-width: 1120px;
  }
  .swiper-button-next {
    right: -1rem;
  }
  .swiper-button-prev {
    left: -1rem;
  }
}
