@font-face {
  font-family: "RobotoMono";
  src: url(fonts/RobotoMono-Regular.ttf);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "RobotoMono";
}

body {
  height: 100%;
  margin: 0;
}

a {
  text-decoration: none;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 60px 0;
}

main {
  padding-top: 60px;
}

.padding__main {
  padding: 150px 0 50px 0;
}

.padding__main a {
  font-size: 24px;
}



/* burger */
.burger {
  display: none;
  height: 100%;
}

.nav__burger {
  top: 0;
  right: 0;
  padding: 50px 100px;
  width: 100%;
  position: absolute;
  z-index: 99;

  display: none;
  flex-direction: column;

  background-color: #333;
}

.nav__burger .nav__list {
  margin-left: auto;
  font-size: 30px;
  color: #fff;
}

.active {
  display: flex;
}

.overflow {
  overflow: hidden;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
  right: 0;
}

.burger {
  cursor: pointer;
  display: none;
  color: #333;
  position: relative;
  border: none;
  background: transparent;
  width: 30px;
  height: 23px;
  z-index: 100;
}

.burger::before,
.burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #333;
}

.burger::before {
  top: 0px;
  box-shadow: 0 11px 0 #333;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger-checkbox:checked+.burger::before {
  top: 12px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 transparent;
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger-checkbox:checked+.burger::after {
  bottom: 9px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

/* end burger */

:root {
  --wh: #fff;
  --gray: #333;
}

.heading {
  margin: 0;
  margin-bottom: 30px;
  font-size: 30px;
}

.text {
  margin: 0;
  margin-bottom: 20px;
  font-size: 25px;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}


/* header */
header {
  width: 100%;
  position: fixed;
  padding: 10px 0;
  z-index: 99;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 45%, var(--blue) 100%);
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;


  transition: color 0.3s ease;
}

.header__logo .footer__logo {
  width: 70px;
  margin: 0;
}

.nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.nav__list {
  font-size: 22px;
  color: var(--white);
  transition: color 0.3s ease;
}

.nav__list:hover {
  color: var(--red);
}

:root {
  --green: #27ae60;
  --blue: #3498db;
  --gray: #7f8c8d;
  --black: #000000;
  --white: #ffffff;
  --red: #e74c3c;
  --teal: #1abc9c;
}

/* hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 50%, var(--blue) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero::before {
  left: -15%;
  top: -20%;
  transform: rotate(15deg);
}

.hero::after {
  right: -15%;
  bottom: -25%;
  transform: rotate(-10deg);
}

.hero__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero__logo {
  display: flex;
  flex-direction: column;

  font-size: 96px;
  line-height: 1;
}

.logo_bgb {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.logo_bgb .hero__logo--win {
  top: 60px;
  font-size: 30px;
  left: 123px;
  position: absolute;
}

.hero__logo--oz {
  color: var(--white);
  font-weight: 700;
}

.hero__logo--win {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  margin-left: 4px;
  vertical-align: top;
}

.hero__logo--num {
  color: var(--red);
  font-weight: 900;
  margin-left: 8px;
}

.hero__tagline {
  opacity: 0.8;
}

.hero__heading {
  margin-bottom: 15px;
  font-size: 25px;
}

.hero__description {
  max-width: 520px;
  font-size: 20px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero__btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 500px;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
}

.hero__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: 0.3s ease;
}

.hero__btn:hover::after {
  opacity: 1;
}

.hero__btn:hover {
  transform: translateY(-2px);
}

.hero__img {
  width: 100%;
  max-width: 520px;
  height: 100%;
  border-radius: 72px;
  object-fit: cover;
  animation: spinGlow 12s linear infinite;
}

@keyframes spinGlow {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

/* signup */
.signup {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.signup::before,
.signup::after {
  content: '';
  position: absolute;
  background: radial-gradient(circle at top left, rgba(52, 152, 219, 0.15) 0%, rgba(52, 152, 219, 0) 60%);
  width: 60%;
  height: 120%;
  border-radius: 40%;
  transform: rotate(15deg);
}

.signup::after {
  top: auto;
  bottom: -30%;
  right: -20%;
  left: auto;
  transform: rotate(-10deg);
}

.signup__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.signup__img {
  width: 100%;
  height: 100%;
  max-width: 480px;
  border-radius: 64px;
  object-fit: cover;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
  animation: bounceGlow 8s ease-in-out infinite;
}

@keyframes bounceGlow {

  0%,
  100% {
    transform: translateY(0);
    filter: hue-rotate(0deg);
  }

  50% {
    transform: translateY(-10px);
    filter: hue-rotate(20deg);
  }
}

.signup__label {
  color: var(--gray);
  margin-bottom: 8px;
}

.signup__heading {
  color: var(--black);
  font-size: 25px;
  margin-bottom: 20px;
  max-width: 560px;
}

.signup__highlight {
  color: var(--red);
}

.signup__description {
  max-width: 560px;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gray);
}

.signup__list {
  list-style: disc inside;
  margin-bottom: 28px;
  padding-left: 0;
}

.signup__item {
  font-size: 20px;
  margin-bottom: 6px;
}

.signup__btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 18px 42px;
  border-radius: 500px;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
}

.signup__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: 0.3s ease;
}

.signup__btn:hover {
  transform: translateY(-2px);
}

.signup__btn:hover::after {
  opacity: 1;
}

.signup__counter-text {
  margin-top: 16px;
  font-size: 18px;
}

.signup__counter {
  font-weight: 700;
  color: var(--green);
}

/* cricket */
.cricket {
  background: var(--white);
}

.cricket__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cricket__intro {
  max-width: 820px;
}

.cricket__heading {
  font-size: 42px;
  color: var(--black);
}

.cricket__text {
  font-size: 18px;
  color: var(--gray);
  margin: 0;
}

.cricket__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.cricket__card {
  background: #f7f9fa;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  position: relative;
}

.cricket__card:hover {
  transform: translateY(-6px);
}

.cricket__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.cricket__card-heading {
  font-size: 22px;
  color: var(--black);
  padding: 20px 24px 0;
  min-height: 72px;
}

.cricket__card-text {
  font-size: 16px;
  color: var(--gray);
  padding: 12px 24px 0;
  padding-top: 0;
  flex-grow: 1;
}

.cricket__btn {
  margin: 24px;
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 500px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cricket__btn:hover {
  transform: translateY(-2px);
}

/* features */
.features {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 340px;
  top: -80px;
  left: -160px;
  background: radial-gradient(circle at center, rgba(52, 152, 219, 0.15) 0%, rgba(52, 152, 219, 0) 70%);
  border-radius: 50% 45% 55% 50%;
  transform: rotate(25deg);
}

.features__container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

@media (max-width: 900px) {
  .features__container {
    grid-template-columns: 1fr;
  }
}

.features__intro {
  position: relative;
  z-index: 2;
}

.features__label {
  color: var(--teal);
  font-size: 16px;
  margin-bottom: 8px;
}

.features__heading {
  font-size: 46px;
  color: var(--black);
}

.features__description {
  font-size: 18px;
  color: var(--gray);
  margin-top: 18px;
  max-width: 460px;
}

.features__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.features__card {
  display: flex;
  flex-direction: column;
  align-items: center;

  background: #f7f9fa;
  border-radius: 28px;
  overflow: hidden;
  padding-bottom: 24px;
  transition: 0.3s ease;
  perspective: 800px;
}

.features__card:hover {
  transform: translateY(-6px);
}

.features__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.features__card-heading {
  font-size: 22px;
  color: var(--black);
  padding: 20px 24px 0;
  min-height: 64px;
  margin-bottom: 15px;
}

.features__card-text {
  font-size: 16px;
  color: var(--gray);
  padding: 12px 24px 0 24px;
  padding-top: 0;
  margin-bottom: 0;
}

/* nagad */
/* nagad */
.nagad {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.nagad::before,
.nagad::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(2px);
  animation: float 8s linear infinite;
}

.nagad::before {
  top: -70px;
  left: -50px;
  background: radial-gradient(circle, #ff9800 0%, #ffc371 100%);
}

.nagad::after {
  bottom: -20px;
  right: -20px;
  background: radial-gradient(circle, #ff6ec4 0%, #7873f5 100%);
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(24px);
  }
}

.nagad__blob {
  display: none;
}

.nagad__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 60px;
  align-items: flex-start;
}

.nagad__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nagad__icon {
  width: 130px;
  height: 120px;

  background-color: var(--green);
  padding: 10px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 24px;
}

.nagad__tagline {
  color: var(--teal);
  margin-bottom: 6px;
  font-size: 17px;
}

.nagad__heading {
  font-size: 44px;
  color: var(--black);
  margin-bottom: 14px;
}

.nagad__promo {
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 18px;
}

.nagad__list,
.nagad__sublist {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nagad__list li,
.nagad__sublist li {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
  margin: 0;
}

.nagad__list li::before,
.nagad__sublist li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.nagad__list li::before {
  content: "🔸";
}

.nagad__sublist li::before {
  content: "✅";
}

.nagad__btn {
  margin-top: 30px;
  background: var(--green);
  color: var(--white);
  padding: 16px 38px;
  border-radius: 500px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nagad__btn:hover {
  transform: translateY(-2px);
}

.nagad__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nagad__subheading {
  font-size: 26px;
  color: var(--black);
  margin-bottom: 12px;
}

/* services */
.services {
  position: relative;
  background: var(--white);
}

.services__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* header block */
.services__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 720px) {
  .services__header {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.services__tagline {
  color: var(--green);
  font-size: 17px;
  margin-bottom: 0px;
}

.services__heading {
  font-size: 44px;
  margin-bottom: 15px;
  color: var(--black);
}

.services__cta {
  background: var(--green);
  color: var(--white);
  padding: 16px 38px;
  border-radius: 500px;
  font-weight: 600;
  transition: 0.3s ease;
}

.services__cta:hover {
  transform: translateY(-2px);
}

/* grid of cards */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.services__card {
  background: #f7f9fa;
  border-radius: 32px;
  padding: 38px 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.3s ease;
}

.services__card:hover {
  transform: translateY(-6px);
}

.services__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(52, 152, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--black);
}

.services__card-heading {
  font-size: 22px;
  margin: 0;
  color: var(--black);
}

.services__card-text {
  font-size: 16px;
  margin: 0;
  color: var(--gray);
  flex-grow: 1;
}

.services__link {
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.services__link::after {
  content: "→";
  font-size: 16px;
}

.services__link:hover {
  transform: translateX(2px);
}

/* benefits */
.benefits {
  background: var(--white);
}

.benefits__container {
  display: flex;
  flex-direction: column;
}

.benefits__tagline {
  color: var(--teal);
  font-size: 17px;
  text-align: center;
}

.benefits__heading {
  font-size: 46px;
  color: var(--black);
  text-align: center;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.benefits__card {
  background: #f7f9fa;
  border-radius: 32px;
  padding: 38px 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.3s ease;
}

.benefits__card:hover {
  transform: translateY(-6px);
}

.benefits__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--black);
}

.benefits__card-heading {
  font-size: 22px;
  margin: 0;
  color: var(--black);
}

.benefits__card-text {
  margin: 0;
  font-size: 16px;
  color: var(--gray);
  flex-grow: 1;
}

.benefits__btn {
  margin-top: 20px;
  align-self: center;
  background: var(--green);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 500px;
  font-weight: 600;
  transition: 0.3s ease;
}

.benefits__btn:hover {
  transform: translateY(-2px);
}

/* cta */
.cta {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

/* slanted top edge */
.cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 160px;
  background: var(--white);
  transform: skewY(-6deg);
  transform-origin: 0 0;
}

/* gradient background */
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 45%, var(--blue) 100%);
  z-index: -2;
}

/* decorative blob */
.cta__container::before {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -160px;
  width: 520px;
  height: 360px;
  border-radius: 48% 52% 40% 60%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  filter: blur(2px);
  animation: blobMove 12s ease-in-out infinite;
}

@keyframes blobMove {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.cta__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
}

@media (max-width: 720px) {
  .cta__container {
    align-items: center;
    text-align: center;
  }
}

.cta__heading {
  margin: 0;
  font-size: 48px;
  max-width: 820px;
}

.cta__text {
  font-size: 18px;
  max-width: 560px;
  opacity: 0.9;
  margin: 0;
}

.cta__btn {
  padding: 18px 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 500px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta__btn:hover {
  transform: translateY(-2px);
}

/* footer */
.footer {
  padding-top: 20px;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 45%, var(--blue) 100%);
  z-index: -1;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
}

.footer__logo {
  width: 140px;
  height: auto;
  object-fit: cover;
  margin-bottom: 24px;
}

.footer__heading {
  font-size: 26px;
  margin-bottom: 16px;
}

.footer__description {
  font-size: 16px;
  max-width: 320px;
}

.footer__nav-heading,
.footer__contact-heading {
  font-size: 20px;
  margin-bottom: 12px;
}

.footer__contact a {
  color: var(--red);
}

.footer__links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__links a {
  color: var(--white);
  font-size: 16px;
  transition: 0.3s ease;
}

.footer__links a:hover {
  color: var(--gray);
}

.footer__contact .text {
  font-size: 16px;
  margin-bottom: 6px;
}

.footer__bottom {
  text-align: center;
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.08);
  font-size: 15px;
  margin: 0;
}

/* slots */
.slots {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.slots::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 45%, var(--blue) 100%);
  z-index: -2;
}

.slots__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.slots__logo {
  width: 150px;
  height: auto;
  object-fit: cover;
}

.slots__title {
  font-size: 48px;
  margin: 0;
}

.slots__subtitle {
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

.slots__links {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
  text-align: left;
}

.slots__links a {
  color: var(--white);
  text-decoration: underline;
  transition: 0.3s ease;
}

.slots__links a:hover {
  color: var(--gray);
}

/* superace */

.superace__tagline {
  text-align: center;
  color: var(--teal);
  font-size: 17px;
  margin-bottom: 10px;
}

.superace__title {
  text-align: center;
  font-size: 48px;
  color: var(--black);
  margin-bottom: 30px;
}

.superace__wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .superace__wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.superace__visual {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.superace__thumb {
  width: 100%;
  border-radius: 35px;
  border: 2px solid var(--green);
  object-fit: cover;
}

.superace__btn {
  padding: 18px 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 500px;
  font-weight: 600;
  animation: pulse 2.4s ease-in-out infinite;
  transition: 0.3s ease;
}

.superace__btn:hover {
  transform: translateY(-3px);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.55);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(231, 76, 60, 0);
  }
}

.superace__badges {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  color: var(--gray);
}

.superace__info {
  display: flex;
  flex-direction: column;
}

.superace__subheading {
  font-size: 26px;
  color: var(--black);
  margin-bottom: 14px;
}

.superace__block p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.6;
}

/* providers */
.providers {
  position: relative;
}

.providers__container {
  display: flex;
  flex-direction: column;
}

.providers__tagline {
  text-align: center;
  color: var(--teal);
  font-size: 17px;
}

.providers__title {
  text-align: center;
  font-size: 46px;
  color: var(--black);
}

.providers__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
}

.providers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.providers__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.providers__img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.providers__card-heading {
  font-size: 22px;
  margin: 0;
  color: var(--black);
}

.providers__card-text {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
  flex-grow: 1;
}

.providers__link {
  font-weight: 600;
  color: var(--green);
  transition: 0.3s ease;
}

.providers__link:hover {
  transform: translateX(2px);
}