* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body {
  font-family: "Poppins", sans-serif !important;
}

a {
  text-decoration: none !important;
}

header {
  background-color: var(--bs-blue);
  padding: .25rem 0;
}

header a {
  color: var(--bs-white);
  margin: 0 .75rem;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

header a:hover {
  color: var(--bs-white);
}

/* app-navbar */
.app-navbar {
  background-color: var(--light);
}

.app-navbar .navbar .navbar-brand img {
  height: 5rem;
}

.app-navbar .navbar .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.973);
  text-transform: uppercase;
  transition: 0.3s;
}

.app-navbar .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--bs-main);
}

.app-navbar .navbar .navbar-nav .dropdown .dropdown-menu {
  border: 0;
  font-size: 13px;
  border-radius: 2px;
}

.app-navbar .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  font-weight: 600;
  color: var(--bs-dark);
  margin: .5rem 0;
}

.app-navbar .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--bs-main);
}

.app-navbar .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:active {
  background-color: var(--bs-white);
}

/* app-heading */
.app-heading h3 {
  font-size: 2rem;
  color: var(--bs-blue);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin: 1rem 0;
  position: relative;
}

.app-heading h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.app-heading h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--bs-blue);
  bottom: 0;
  left: calc(50% - 20px);
}

.app-heading p {
  color: var(--bs-secondary);
  margin: 1.5rem 0;
  text-align: center;
}

/* end */

.hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background-color: var(--bs-black);
}

.hero .hero-container ol li {
  list-style-type: none !important;
}

.hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item::before {
  content: '';
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.hero .carousel-content {
  text-align: left;
}

@media (max-width: 800px) {

  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px);
  }

  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

.hero h3 {
  color: var(--bs-white);
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 800;
}

.hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

.hero .carousel-inner .carousel-item,
.hero .carousel-inner .active.carousel-item-start,
.hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

.hero .carousel-inner .active,
.hero .carousel-inner .carousel-item-next.carousel-item-start,
.hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

.hero .carousel-inner .carousel-item-next,
.hero .carousel-inner .carousel-item-prev,
.hero .carousel-inner .active.carousel-item-start,
.hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--bs-white);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background-color: var(--bs-primary);
}

.hero .btn-get-started:hover {
  background: var(--bs-blue);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }
}

@media (max-height: 500px) {

  .hero,
  .hero .carousel-item {
    height: 120vh;
  }
}

@media (min-width: 1024px) {
  .hero p {
    width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

/* Featured Services Section
--------------------------------*/
.featured-services {
  background-color: var(--bs-black);
  padding: 3rem 0;
}

.featured-services .box {
  padding: 30px 20px;
}

.featured-services i {
  color: var(--bs-primary);
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

.featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

.featured-services h4 a {
  color: var(--bs-white);
}

.featured-services h4 a:hover {
  color: var(--bs-blue);
}

.featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: var(--bs-white);
  margin-bottom: 0;
}

/* end */

.about {
  margin: 3rem 0;
}

.about .about-col {
  background-color: var(--bs-white);
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.about .about-col .img {
  position: relative;
}

.about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

.about .about-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: var(--bs-blue);
  border-radius: 50%;
  border: 4px solid var(--bs-white);
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-col i {
  font-size: 28px;
  line-height: 0;
  color: var(--bs-white);
  transition: 0.3s;
}

.about .about-col:hover .icon {
  background-color: var(--bs-white);
}

.about .about-col:hover i {
  color: var(--bs-blue);
}

.about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

.about .about-col h2 a {
  color: #000;
}

.about .about-col h2 a:hover {
  color: var(--bs-blue);
}

.about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/
.services {
  background-color: var(--light);
  padding: 3rem 0;
}

.services .card {
  border: 0;
}

.services .card .card-body .icon {
  float: left;
}

.services .icon i {
  color: var(--bs-blue);
  font-size: 36px;
  line-height: 0;
  transition: 0.5s;
}

.services .card .card-body .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .card .card-body .title a {
  color: #111;
}

.services .card:hover .card-body .title a {
  color: var(--bs-primary);
  transition: all .6s;
}

.services .card .card-body .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--bs-secondary);
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--bs-main);
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: var(--bs-secondary);
}

#contact .contact-info h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--bs-dark);
}

#contact .contact-info a {
  color: var(--bs-secondary);
}

#contact .contact-info a:hover {
  color: var(--bs-main);
}


@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: var(--bs-white);
}

#contact .php-email-form .error-message {
  display: none;
  color: var(--bs-white);
  background: var(--bs-blue);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact form {
  padding: 40px;
  border-radius: 5px;
}


#contact form button {
  background: var(--bs-blue);
  border: 0;
  padding: 10px 30px;
  color: var(--bs-white);
  transition: 0.4s;
  border-radius: 5px;
  cursor: pointer;
}

#contact form .form-control {
  color: #222d39;
  border-radius: 4px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
  box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
  width: 100%;
  border: 1px solid var(--bs-white);
  padding: 15px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: var(--bs-white);
  background: var(--bs-blue);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: var(--bs-white);
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--bs-blue);
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form .form-group {
  margin-bottom: 20px;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: var(--bs-blue);
}

#contact .php-email-form button[type="submit"] {
  background: var(--bs-blue);
  border: 0;
  padding: 10px 30px;
  color: var(--bs-white);
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #13a456;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact-form {
  background-color: var(--bs-light);
}

/* footer start */
#footer {
  background: var(--bs-main);
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 32px;
  color: var(--bs-blue);
  margin: 0 0 20px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #eee;
}

#footer .footer-top .social-links {
  margin-top: 1rem;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: var(--bs-blue);
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: var(--bs-blue);
  color: var(--bs-white);
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--bs-blue);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: var(--bs-blue);
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid rgb(255, 254, 254);
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--bs-blue);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
  margin-bottom: .5rem;
}

#footer .footer-top .footer-contact p a {
  color: var(--bs-white);
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: var(--bs-blue);
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: var(--bs-white);
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: var(--bs-blue);
}

#footer .copyright {
  text-align: center;
  padding: 15px 0;
}

ul.social-icons li {
  font-size: 18px;
  font-weight: 700;
  color: #0c0c0c;
  display: inline-block;
  margin-right: 15px;
}

ul.social-icons li:last-child {
  margin-right: 0px;
}

ul.social-icons li a {
  color: var(--bs-blue);
  transition: all .3s;
}

ul.social-icons li a:hover {
  color: #0a0a0a;
}

.contact-hero {
  background-image: url(/front/img/contact-g.jpg);
  height: 300px;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero h1 {
  color: var(--bs-white);
  font-weight: 600;
}

.banner-content h2 {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--bs-white);
  letter-spacing: 1px;
}

.banner-content p {
  font-size: 1rem;
  color: #fcfbfa;
  margin: 1px 0px 30px 0px;
}

/* Why Us Section
--------------------------------*/
#why-us {
  background: mediumturquoise;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

@media (max-width: 991px) {
  #why-us .why-us-content {
    padding-top: 30px;
  }
}

#why-us .why-us-content .features {
  margin: 0 0 15px 0;
  padding: 0;
}

#why-us .why-us-content .features i {
  font-size: 36px;
  float: left;
}

#why-us .why-us-content .features h4 {
  font-size: 24px;
  font-weight: 600;
  margin-left: 56px;
  color: #413e66;
  margin-bottom: 5px;
}

#why-us .why-us-content .features p {
  font-size: 16px;
  margin-left: 56px;
  color: #555186;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #555186;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #8a87b6;
}



/*new-css */
.recharge-plateform {
  margin: 3rem 0;
}

.recharge-plateform h2 {
  text-align: center;
  font-weight: 600;
}

.recharge-plateform ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recharge-plateform ul li {
  font-weight: 500;
  margin: 1rem 0;
}

.bbps-benefit ul {
  padding: 0;
}

.bbps-benefit ul li {
  margin: 1rem 0;
  color: var(--bs-secondary);
}

.how-it-works p {
  color: var(--bs-secondary);
  line-height: 2;
}

.bbps-api h3 {
  font-weight: 600;
}

.bbps-api li {
  color: var(--bs-secondary);
  margin: 1rem 0;
}

.bbps-api p {
  color: var(--bs-secondary);
}

.our-achivement h5 {
  margin-bottom: .5rem;
}

.our-achivement h2 {
  font-weight: 600;
  color: var(--bs-dark);
}

.our-achivement .number_some h3 {
  font-weight: 600;
  color: var(--main-color);
}

.our-achivement ul.some_text {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.instant-recharge p {
  color: var(--bs-secondary);
}

.instant-support h5,
h2 {
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: .5rem;
}

.instant-support h2 span {
  color: var(--second-color);
}

.inner-container-small {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.heading-color {
  color: var(--bs-gray-900) !important;
}

.benefit-our-api h2 {
  margin-bottom: 0.5rem;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--bs-white);
}

.how-work {
  margin: 3rem 0;
  background-color: var(--bs-lgiht);
}

.benefit-our-api .card {
  border: 0;
  box-shadow: var(--bs-box-shadow-sm);
}

.benefit-our-api .card .card-body li {
  list-style: none;
}

.benefit-our-api .card .card-body li .img-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  z-index: 1;
  overflow: hidden;
  line-height: 65px;
  margin-right: 35px;
  position: relative;
  border-radius: 100%;
  background-color: #f1f2fa;
  -webkit-box-shadow: 0 13px 24px 0 rgba(43, 1, 68, .17);
  box-shadow: 0 13px 24px 0 rgba(43, 1, 68, .17);
  float: left;
}

.benefit-our-api .card .card-body .card-title {
  font-weight: 500;
  color: var(--main-color);
}

.benefit-our-api .card .card-body .card-text {
  color: var(--bs-secondary);
}

.hero-section {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #000000e0;
}

.hero-section .container {
  position: relative;
  z-index: 1000;
}

.up-down-move {
  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  /* transform-origin: bottom; */
  animation-name: up-down-move;
  animation-timing-function: linear;
}

.down-down-move {
  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: down-down-move;
  animation-timing-function: linear;
}

@keyframes up-down-move {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes down-down-move {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }

  100% {
    transform: translateY(0)
  }
}

.about-recharge {
  margin: 3rem;
}

.about-recharge h2 {
  color: var(--bs-main-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.fn-bg-shape {
  bottom: 0;
  left: 0;
  opacity: 0.4;
}

.about-recharge .card {
  border: 0;
  box-shadow: var(--bs-box-shadow-sm);
}

.about-recharge .card .card-body p {
  color: var(--bs-secondary);
}

.our-achivment {
  padding: 3rem 0;
}

.our-achivment h2 {
  margin: 1rem 0;
  font-weight: 600;
}

.recharge-status {
  margin: 3rem 0;
}

.recharge-status ul {
  list-style: none;
  display: flex;
  gap: 0 20px;
  padding: 0;
  margin: 0;
}

.recharge-status ul li img {
  height: 3rem;
}

.recharge-status ul li h3 {
  margin: 0;
  font-weight: 600;
}

.recharge-status ul li p {
  color: var(--bs-secondary);
  margin: 0;
  font-size: 14px;
}

.dmt {
  margin: 3rem 0;
}

.dmt h3 {
  font-weight: 600;
}

.dmt p {
  margin: 1rem 0;
  line-height: 2;
  color: var(--bs-secondary);
}

.dmt-benefits {
  background-color: var(--bs-light);
  padding: 3rem 0;
}

.dmt-benefits h3 {
  font-weight: 600;
}

.dmt-benefits li {
  color: var(--bs-secondary);
  margin: 1rem 0;
}

.how-it-works h3 {
  font-weight: 600;
}

.about-api {
  background-color: var(--bs-light);
  padding: 3rem 0;
}

.about-api p {
  color: var(--bs-secondary);
  line-height: 1.5;
}

.about-api ul li {
  color: var(--bs-secondary);
  margin: 1rem;
}

.recharge-hero {
  padding: 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 600px;
}

.recharge-hero .home {
  z-index: 100;
  position: relative;
}

.recharge-hero:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #000000e0;
}

.recharge-hero h1 {
  color: var(--bs-white);
  font-weight: 600;
  line-height: 1.5;
}

.recharge-hero p {
  color: var(--bs-white);
}

.recharge-hero .move-img {
  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}

.recharge-hero .btn {
  background-color: var(--bs-white);
  color: var(--bs-main-color);
  font-weight: 600;
  padding: 10px 30px;
}

.recharge-hero .btn:hover {
  background-color: var(--bs-white);
}

.ready-to-grow {
  padding: 3rem 0;
  background: url(/front/img/recharge-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.ready-to-grow h2 {
  font-weight: 700;
  font-size: 3rem;
  color: var(--bs-white);
}

.ready-to-grow p {
  color: var(--bs-white);
}

.ready-to-grow .btn {
  background-color: var(--bs-white);
  color: var(--bs-primary);
  padding: 10px 30px;
}

.ready-to-grow .btn:hover {
  background-color: var(--bs-white);
}

.ready-to-grow img {
  height: 25rem;
  position: absolute;
  top: -95px;
}


.about-us {
  background-image: url(/front/img/about-bg.avif);
  padding: 9rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.about-us h1 {
  color: var(--bs-white);
  font-weight: 700;
}

.who-we-are {
  background-color: #c7edff;
  padding: 3rem 0;
}

.who-we-are h5 {
  font-weight: 600;
  color: var(--bs-blue);
}

.who-we-are h1 {
  font-weight: 600;
}

.who-we-are p {
  color: var(--bs-secondary);
  position: relative;
  z-index: 99;

}
.who-we-are a{
  padding: 10px 30px;
  background-color: var(--bs-blue);
  margin: 1rem 0;
  color: var(--bs-white);
  cursor: pointer;
  border-radius: 2px;
}

.image_boxes.style_two {
  position: relative;
  min-height: 560px;
  display: inline-block;
}

.image_boxes.style_two .background_image {
  position: absolute;
  min-width: 740px;
  left: -165px;
  height: 596px;
  top: -33px;
}

.image_boxes.style_two .image {
  position: relative;
  width: 270px;
  height: 370px;
  border-radius: 10px;
  overflow: hidden;
}

.image_boxes.style_two .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;

}

.image_boxes.style_two .image.two {
  position: absolute;
  right: -300px;
  margin-top: 100px;
}

.image_boxes.style_two .image.one {
  float: left;
}
