:root {
  --color_blue: #38bdf8;
  --color_blue2: #27a6dd;
  --color_bg_blue: #f2f8fc;
  --color_violet: #a855f7;
  --color_text: #002043;
  scroll-behavior: unset;
}

/* common */
.container {
  max-width: 1090px;
}

.full {
  max-width: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.inline-flex {
  display: inline-flex;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mobile {
  display: none;
}

.overflow-hidden {
  overflow: hidden !important;
  height: 100%;
  width: 100%;
}

@media (max-width: 1080px) {
  .mobile {
    display: block !important;
  }
}

[class$="__desc"],
[class$="__title"] {
  font-family: "Roboto", sans-serif;
}

.btn-blue.outside {
  background: transparent;
  border: 1px solid var(--color_blue);
  color: var(--color_blue);
  padding: 6px 23px;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
}

.btn-blue.outside:hover {
  background: var(--color_blue2);
  border-color: var(--color_blue2);
  color: #fff;
}

.btn-action {
  border: 1px solid var(--color_blue);
  background-color: var(--color_blue);
  color: #fff;
  padding: 6px 31px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.btn-action:hover {
  border-color: var(--color_blue2);
  background: var(--color_blue2);
}

.section__blue-title {
  font-family: "Roboto", sans-serif;
  color: #1a8cff;
  font-size: 28px;
  text-align: center;
  line-height: 1.5em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.content__subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25em;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .section__blue-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .content__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

/* header */

/* .affiliate-page .header__row {
    padding-top: 14px;
    padding-bottom: 14px;
} */

/* .affiliate-page .header__content {
    justify-content: center;
} */

.affiliate-page .header__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav ul {
  gap: 48px;
}

/* 
.header__nav ul a {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    color: #596C81;
}

.header__nav ul a:hover {
    color: #1A8CFF;
} */

.gradient-border-btn {
  background: white;
  color: #333;
  font-weight: bold;
  border-radius: 8px;
  position: relative;
  border: none;
  cursor: pointer;
  transition:
    color 0.3s,
    background 0.3s;
}

.gradient-border-btn span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  padding: 3px 18px;
  display: block;
  z-index: 1;
  position: relative;
  background: #fff;
  border-radius: 8px;
  transition: background 0.3s;
}

.gradient-border-btn::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(90deg, #a25bf7 0%, #45b1fe 100%);
  border-radius: 9px;
  z-index: 0;
  transition: opacity 0.3s;
}

.gradient-border-btn:hover {
  color: #fff;
  background: linear-gradient(90deg, #a25bf7 0%, #45b1fe 100%);
}

.gradient-border-btn:hover span {
  background: transparent;
}

.gradient-border-btn:hover::before {
  opacity: 0;
}

.header__mob-menu.open .header__mob-menu__open,
.header__mob-menu .header__mob-menu__close {
  display: none;
}

.header__mob-menu.open .header__mob-menu__close {
  display: block;
}

@media (max-width: 767px) {
  /* .header__nav {
        transform: translateX(calc(-100vw + -40px));
        top: 62px;
        height: calc(100vh - 130px);
        padding: 20px;
        width: calc(100% - 40px);
    }

    .header__nav.active {
        transform: translateX(0px);
    }

    .header__nav ul {
        gap: 18px;
        flex-direction: column;
    } */

  /* .affiliate-page .header__row {
        padding-top: 5px;
        padding-bottom: 5px;
    } */
}

@media (max-width: 550px) {
  /* .header__nav {
        transform: translateY(-179px);
    } */

  /* .header__nav.active {
        transform: translateY(28px);
    } */

  /* .affiliate-page .header__btns {
        gap: 10px;
    } */
}

/* Hero */
.hero {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #f2f8fc;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/affiliate-program/first-section-bg.webp) no-repeat
    right center / contain;
  z-index: 3;
  pointer-events: none;
}

@media screen and (max-width: 1280px) {
  .hero::after {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1080px) {
  .hero::after {
    background-size: cover;
    background-position: 20vw center;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero_title {
  font-family: "Roboto", sans-serif;
  color: #2f2fd8;
  font-size: 28px;
  text-align: center;
  line-height: 1.5em;
  text-transform: uppercase;
}

.hero__row {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

@media screen and (max-width: 1080px) {
  .hero__row {
    flex-direction: column-reverse;
  }
}

.hero__body {
  width: 100%;
  margin-top: 35px;
}

.hero-text {
  max-width: 445px;
}

.hero__body__title {
  margin-bottom: 20px;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 28.86px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.hero-text p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #000;
}

.hero-text a {
  text-decoration: underline;
  color: #000;
}

.hero-text a:hover {
  text-decoration: none;
}

.hero__img {
  width: 100%;
}

.hero__img img {
  max-width: 740px;
  margin-top: 48px;
}

.hero__img video {
  max-width: 640px;
  margin-top: 48px;
  position: relative;
  z-index: 3;
}

@media (max-width: 1080px) {
  .hero {
    background-size: cover;
    background-position: 140px center;
  }

  .hero::before {
    background-size: cover;
    background-position: 140px center;
  }

  .hero__row {
    flex-wrap: wrap;
  }

  .hero__body {
    text-align: center;
  }

  .hero__img {
    text-align: center;
  }

  .hero-text {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero__img img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero_title {
    font-size: 18px;
    line-height: 1.5;
  }

  .hero__body {
    margin-top: 20px;
  }

  .hero__row {
    padding: 0;
  }

  .hero__body__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__img img {
    margin-top: 0;
    max-height: 160px;
  }

  .hero__img video {
    width: 100%;
  }
}

/* 
network-map
 */
.network-map {
  padding: 90px 0 90px;
}

.network-map__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 966px;
  margin: 64px auto 0;
}

.network-map__body {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.network-map__desc {
  margin-top: 30px;
  margin-bottom: 45px;
  color: #000;
}

.network-map__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
  max-width: 495px;
}

@media (max-width: 1090px) {
  .network-map__row {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .network-map__img {
    width: 100%;
  }

  .network-map__img img {
    margin: 0 auto;
  }

  .network-map__body {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .network-map {
    padding: 30px 0;
  }
}

/* 
video 
*/
.video {
  padding-top: 90px;
  padding-bottom: 60px;
  position: relative;
}

.video::before {
  content: "";
  background-color: #f2f8fc;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
}

.video * {
  position: relative;
}

.video .section__blue-title {
  max-width: 680px;
  margin: 0 auto 28px;
}

.video-wrapper {
  position: relative;
  margin: 35px auto 0;
  border-radius: 10px;
  overflow: hidden;
}

.online-marketing__video {
  width: 100%;
  display: block;
  cursor: pointer;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.3s,
    opacity 0.3s;
  z-index: 2;
}

.video-play-btn img {
  width: 105px;
  height: auto;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .video {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .video .section__blue-title {
    margin-bottom: 20px;
  }

  .video-play-btn img {
    width: 50px;
  }
}

/*
benefits section styles
*/
.benefits-section {
  padding-top: 30px;
  padding-bottom: 90px;
}

.benefits__row {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.benefits-swiper {
  margin-top: 35px;
  padding: 5px 20px 20px;
  margin-left: -20px;
  margin-right: -20px;
}

.benefits-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.benefit-card {
  background: #f6f5ff;
  border-radius: 12px;
  padding: 32px 32px 60px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.benefit-card:hover {
  box-shadow: 0px 4px 12px 0px #00000026;
}

.benefit-card__img {
  max-height: 205px;
  height: 100%;
  margin: 0 auto 35px;
}

.benefit-card__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  color: #1a8cff;
  margin-bottom: 22px;
}

.benefit-card__desc {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  padding-left: 10px;
  padding-right: 10px;
}

.benefit__foot {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .benefits__row {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .benefits-swiper {
    margin-top: 15px;
  }

  .benefits-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .benefit-card__img {
    margin-bottom: 10px;
    height: auto;
  }

  .benefit-card__img img {
    max-height: 150px;
  }

  .benefit-card {
    padding: 16px;
  }

  .benefit-card__desc {
    font-size: 16px;
    line-height: 1.5;
  }

  .benefit-card__title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .benefit__foot {
    margin-top: 0;
  }
}

/* 
testimonials section styles
*/
.testimonials-swiper {
  padding: 90px 0 60px;
  background: #f2f8fc url(../img/affiliate-program/testimonials-section-bg.webp)
    no-repeat left center / cover;
}

.testimonials-swiper .testimonials-slider {
  padding: 20px 0 50px;
}

.testimonial-slide {
  padding-left: 20px;
  padding-right: 20px;
}

.testimonials-swiper .testimonial-block {
  padding-left: 20px;
  padding-right: 20px;
}

.testimonials-swiper .testimonial-block.banner {
  background-color: #fbfbfb;
}

.testimonials-swiper .testimonial-block.banner img {
  max-width: 620px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.testimonials-swiper .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.3s;
}

.testimonials-swiper .swiper-slide-active {
  opacity: 1;
}

.testimonials-swiper .swiper-pagination {
  bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: #596c81;
  width: 12px;
  height: 12px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #6969ff;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  color: white;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 0.3s;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.testimonials-swiper .testimonial-block {
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 4px 12px 0px #00000026;
  background: #ffffff;
  border-radius: 12px;
  max-width: 853px;
  font-family: "Roboto", sans-serif;
}

.testimonial-quote {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  padding: 55px 90px;
  text-transform: capitalize;
  padding-bottom: 36px;
  color: #000;
}

.testimonial-author {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.testimonial-author img {
  max-width: 180px;
  max-height: 50px;
}

.testimonial-author p {
  margin-bottom: 0;
}

.testimonial-author .author-name {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 2px;
}

.testimonial-author .author-company {
  color: #1a8cff;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 1080px) {
  .testimonials-swiper {
    background-size: cover;
    background-position: -260px center;
  }
}

@media (max-width: 991px) {
  .testimonials-swiper .swiper-pagination {
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .testimonials-swiper {
    background-position: -370px center;
    padding: 30px 0;
  }

  .testimonial-quote {
    padding: 20px 10px;
    font-size: 16px;
    line-height: 1.5;
  }

  .testimonial-author .author-name {
    font-size: 16px;
    line-height: 1.5;
  }

  .testimonial-author .author-company {
    font-size: 16px;
    line-height: 1.5px;
  }
}

/* industries */
.industries {
  padding-top: 90px;
  padding-bottom: 60px;
}

.industries .section__blue-title {
  margin-bottom: 30px;
}

.industries p {
  font-family: "Roboto", sans-serif;
}

.industries__row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 95px;
}

.industries__row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.industries__row__title {
  font-weight: 700;
  font-size: 28.86px;
  line-height: 100%;
  text-transform: capitalize;
  margin-bottom: 18px;
  margin-top: 36px;
  color: #000;
}

.categories-list__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 51px;
  max-width: 517px;
}

.industries__row__desc p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 28px;
  color: #000;
}

/* .industries__row__img img {
    position: absolute;
    margin-left: 45px;
    margin-top: 8px;
} */

@media (max-width: 1180px) {
  .industries__row {
    flex-direction: column;
    margin-top: 30px;
    text-align: center;
  }

  .industries__row__img {
    align-items: center;
    margin-bottom: 30px;
  }

  .industries__row__img img {
    /* position: relative; */
    max-width: 600px;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .industries {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .industries .section__blue-title {
    margin-bottom: 20px;
  }

  .industries__row__title {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.5;
  }

  .industries .section__blue-title {
    margin-bottom: 10px;
  }

  .industries__row__desc p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}

.categories-list__items {
  background: #f2f8fc;
  padding-left: 10px;
  padding-right: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(4, 80px);
  max-width: 598px;
  border-radius: 10px;
}

.categories-list__item {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: start;
  border-bottom: 1px solid #e9e9e9;
  padding-left: 22px;
  color: #000;
}

.categories-list__item:nth-last-child(-n + 3) {
  border-bottom: none;
}

@media (max-width: 1180px) {
  .categories-list {
    justify-content: center;
    display: grid;
  }

  .categories-list__title {
    max-width: inherit;
  }

  .categories-list__items {
    max-width: inherit;
  }
}

@media (max-width: 767px) {
  .categories-list__title {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .categories-list__items {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    max-width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .categories-list__item {
    font-size: 14px;
    min-height: 48px;
    border-bottom: 1px solid #e9e9e9;
  }

  .categories-list__item:last-child {
    border-bottom: none;
  }
}

/* integrations */
.integrations {
  padding-top: 60px;
  padding-bottom: 60px;
}

.integrations .section__blue-title {
  margin-bottom: 30px;
}

.integrations .content__subtitle {
  margin-bottom: 20px;
}

.integrations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: center;
  justify-content: center;
}

.integrations-list__item img {
  max-width: 190px;
}

@media (max-width: 767px) {
  .integrations {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .integrations__list {
    gap: 20px;
  }
}

/*  */
.integrations-faq {
  padding-top: 30px;
  padding-bottom: 90px;
}

.integrations-faq__title {
  background-color: #596c81;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 24.99px;
  min-height: 72px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;

  border-radius: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-list__item h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #000;
  cursor: pointer;
  background: #f2f8fc;
  padding: 16px 14px;
  display: flex;
  gap: 26px;
  align-items: center;
  border-radius: 10px;
}

.faq-list__item h4 img {
  transition: 0.4s ease-in-out;
}

.faq-list__item h4.open img {
  transform: rotate(225deg);
}

.faq__item__answer {
  display: none;
}

.faq__item__answer {
  padding: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.faq__item__answer li {
  list-style: disc;
  margin-left: 20px;
  color: #000;
  margin-bottom: 15px;
}

.faq__item__answer li:last-child {
  margin-bottom: 0;
}

.faq__item__answer ul {
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.faq__item__answer p {
  color: #000;
}

@media (max-width: 767px) {
  .integrations-faq {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .integrations-faq__title {
    font-size: 24px;
  }

  .faq-list__item h4 {
    gap: 15px;
    font-size: 16px;
    line-height: 1.5;
  }

  .integrations-faq {
    padding-bottom: 50px;
  }

  .faq__item__answer p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* footer_main */
.footer {
  background-color: #dfe4ef;
  color: #474650;
  line-height: 1.6;
  width: auto;
  padding-top: 44px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1081px) {
  .footer__main {
    grid-template-columns: 1fr 270px;
    gap: 20px;
  }
}

.footer__primary {
  display: flex;
  flex-direction: column;
}

.footer__brand {
  margin-bottom: 36px;
}

.footer__brand img {
  max-width: 160px;
}

.footer__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2c3e50;
}

.footer__subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
}

.footer__nav-columns {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1081px) {
  .footer__nav-columns {
    grid-template-columns: 242px 293px 1fr;
    margin-bottom: 37px;
  }
}

.footer__nav-column {
  margin-bottom: 16px;
}

.footer__column-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-transform: capitalize;
  position: relative;
  padding-left: 20px;
  min-height: 52px;
  margin-bottom: 5px;
  max-width: 170px;
  color: #000;
}

.footer__column-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #1a8cff;
  min-height: 50px;
}

.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 20px;
}

.footer__menu li {
  line-height: 1.23;
}

.footer__link {
  color: #474650;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
}

.footer__link:hover {
  color: #3498db;
}

/* Featured Resources Block */
.footer__featured {
}

.footer__featured-title {
  margin-bottom: 16px;
  color: #2c3e50;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  padding-left: 42px;
  color: #000;
}

.footer__featured-content img {
  margin-bottom: 27px;
}

.footer__read-more {
  margin-left: 42px;

  padding: 12px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
}

.footer__read-more:hover::after {
  margin-left: 8px;
}

.footer__divider {
  height: 1px;
  background-color: #baccd8;
}

.footer__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer__quick-link {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #474650;
}

.footer__quick-link:hover {
  color: #1a8cff;
}

.footer__copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #777;
  background: #99b9ff;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer__copyright__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__legal {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000;
}

.footer__legal a,
.footer__legal-link {
  text-decoration: none;
  transition: color 0.2s;
  color: #000;
}

.footer__legal a:hover,
.footer__legal-link:hover {
  color: #000;
  text-decoration: underline;
}

.footer__socials a {
  display: inline-flex;
}

@media (max-width: 1080px) {
  .footer__featured {
    display: none;

    margin-bottom: 30px;
  }

  .footer__featured-title {
    padding-left: 20px;
  }

  .footer__featured-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    align-items: self-start;
  }
}

@media (max-width: 767px) {
  .footer__featured-content {
    margin-bottom: 10px;
  }

  .footer__quick-links {
    gap: 20px;
  }
}

.footer__bot .container,
.footer__top .container {
  max-width: 1250px;
}

footer [class$="__title"] {
  font-family: "Lato";
}
