@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

:root {
  --color_blue: #38bdf8;
  --color_blue2: #27a6dd;
  --color_bg_blue: #f2f8fc;
  --color_violet: #a855f7;
  --color_violet2: #8731f7;
  --color_text: #002043;
  scroll-behavior: unset;
}

html {
  /* scroll-behavior: smooth !important; */
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color_text);
  background: #fff;
}

p:not(:last-child) {
  margin-bottom: 26px;
}

ul,
ol {
  list-style-type: none;
  padding: 0;
}

a {
  transition: 0.3s;
  text-decoration: none;
}

strong,
b {
  font-weight: 700;
}

.container {
  max-width: 1250px;
  width: calc(100% - 40px);
  padding: 0 20px;
  margin: 0 auto;
}

.full-container {
  max-width: 1880px;
  width: calc(100% - 40px);
  padding: 0 20px;
  margin: 0 auto;
}

/**
  * Ripple Button
  */
.ripple-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
}

.ripple-button span {
  position: relative;
  pointer-events: none;
  z-index: 2;
  color: white;
}

.ripple-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    var(--color_blue) 0%,
    var(--color_blue2) 50%,
    var(--color_violet2) 100%
  );
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.ripple-button::after {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle closest-side,
    var(--color_violet),
    transparent
  );
  transform: translate(-50%, -50%);
  transition:
    width 0.2s ease,
    height 0.2s ease;
  z-index: 1;
  pointer-events: none;
}

.ripple-button:hover::before {
  opacity: 1;
}

.ripple-button:hover::after {
  --size: 7.3vw;
}
/**
  * End Ripple Button
  */

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  border: 1px solid var(--color_blue);
  background: var(--color_blue);
  font-size: 15.5px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  padding: 15px 24px;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.btn-blue:hover {
  background: var(--color_blue2);
  border-color: var(--color_blue2);
}

.btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  border: 1px solid var(--color_blue);
  background: #fff;
  font-size: 15.5px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color_blue);
  padding: 15px 24px;
}

.btn-white:hover {
  background: var(--color_blue2);
  border-color: var(--color_blue2);
  color: #fff;
}

.section__violet-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5em;
  color: var(--color_violet);
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
}

.section__subtitle {
  font-size: 24px;
  line-height: 1.25em;
  color: var(--color_text);
  margin-bottom: 60px;
  text-align: center;
}

.bg-blue {
  background: var(--color_bg_blue);
}

.fade-section {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 1.3s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out;
}

.fade-item[data-delay] {
  transition-delay: var(--delay);
}

.fade-section.visible .fade-item {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .section__violet-title {
    font-size: 22px;
  }
  .section__subtitle {
    font-size: 22px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  p:not(:last-child) {
    margin-bottom: 18px;
  }
}

@media (max-width: 550px) {
  .section__violet-title {
    font-size: 20px;
  }
  .section__subtitle {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 420px) {
  .section__violet-title {
    font-size: 18px;
  }
  .section__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .btn-blue {
    font-size: 14px;
    padding: 15px 18px;
  }
  .btn-white {
    font-size: 14px;
    padding: 15px 18px;
  }
  p:not(:last-child) {
    margin-bottom: 14px;
  }
}

/*****************************************************************************************
*** header
*****************************************************************************************/

header {
  background: #fff;
  box-shadow: 0px 0px 2px 2px #0000001a;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header__logo span {
  width: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 10px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color_text);
}

.header__logo span small {
  padding-left: 10px;
}

.header__logo span strong {
  font-weight: 900;
  font-size: 30px;
  line-height: 0.8;
  letter-spacing: 0;
}

.header__logo img {
  display: block;
  width: 220px;
  height: auto;
}

.header__content {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
}

.header__nav ul a {
  display: inline-block;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: var(--color_text);
}

.header__nav ul a:hover {
  color: var(--color_blue);
}

.header__get-started {
  max-width: 163px;
  width: 100%;
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px 10px;
  background: var(--color_blue);
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: #fff;
}

.header__get-started span {
  position: relative;
  z-index: 2;
}
/* .header__get-started:hover {
  background: #fff;
} */

.header__login {
  border: 1px solid var(--color_text);
  border-radius: 4px;
  padding: 7px 17px;
  text-align: center;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: var(--color_text);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header__login::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18l6-6-6-6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s ease;
}

.header__login:hover {
  background: var(--color_text);
  color: #fff;
  padding-left: 12px;
  padding-right: 22px;
}

.header__login:hover::after {
  right: 5px;
  opacity: 1;
}

.header__mob-menu {
  cursor: pointer;
  display: none;
}

.header__mob-menu svg {
  width: 46px;
  height: 46px;
  display: block;
}

.header__mob-menu svg path {
  transition: 0.3s;
}

.header__mob-menu:hover svg path {
  stroke: var(--color_blue);
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .header__mob-menu {
    display: block;
  }
  .header__logo span {
    width: 91px;
    font-size: 16px;
  }
  .header__logo img {
    width: 160px;
  }
  .header__logo span strong {
    font-size: 24px;
    line-height: 1.1;
  }
  .header__content {
    width: calc(100% - 140px);
  }
  .header__nav {
    width: 100vw;
    left: 0;
    padding: 20px;
    position: fixed;
    background: #fff;
    top: 73px;
    box-shadow: 0px 2px 2px 0px #0000001a;
    border-top: 1px solid #0000001a;
    transform: translateY(-160px);
    transition: 0.3s;
    z-index: -1;
  }
  .header__nav.active {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .header__get-started {
    max-width: 114px;
    min-height: 50px;
  }
  .header__nav {
    top: 62px;
  }
}

@media (max-width: 550px) {
  .header__get-started {
    display: none;
  }
  .header__content {
    min-height: 62px;
  }
  .header__nav ul {
    gap: 18px;
  }
  .header__nav ul a {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
}

/*****************************************************************************************
*** first section
*****************************************************************************************/

.first-section::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;
  }
}

.first-section__row {
  padding: 90px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.first-section__body {
  max-width: 487px;
  width: 100%;
}

.first-section__suptitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color_violet);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.first-section__title {
  font-size: 60px;
  line-height: 1.2;
}

.first-section__row-btns {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.first-section__img {
  width: 100%;
}

.first-section__img img {
  width: 100%;
  height: auto;
  display: block;
}

.first-section__video video {
  max-width: 700px;
  width: 100%;
  margin-top: 48px;
  position: relative;
  z-index: 3;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .first-section__suptitle {
    font-size: 20px;
  }
  .first-section__title {
    font-size: 44px;
  }
  .first-section__row {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .first-section__row {
    flex-direction: column;
    padding: 20px 0;
  }
  .first-section__body {
    max-width: none;
  }
}

@media (max-width: 550px) {
  .first-section__title {
    font-size: 36px;
  }
  .first-section__row-btns {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .first-section__suptitle {
    font-size: 18px;
  }
  .first-section__title {
    font-size: 32px;
  }
}

/*****************************************************************************************
*** section about
*****************************************************************************************/

.sec-about__row {
  padding: 90px 0 60px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.sec-about__img {
  max-width: 584px;
  width: 100%;
}

.sec-about__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.sec-about__desc {
  width: 100%;
  font-size: 18px;
  line-height: 1.5em;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .sec-about__desc {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .sec-about__row {
    padding: 40px 0;
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .sec-about__desc {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .sec-about__desc {
    font-size: 16px;
  }
}

/*****************************************************************************************
*** online marketing
*****************************************************************************************/

.online-marketing {
  padding: 90px 0;
}

.online-marketing__video {
  width: 100%;
  aspect-ratio: 1.769;
  display: block;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
  .online-marketing {
    padding: 65px 0;
  }
}

@media (max-width: 550px) {
  .online-marketing {
    padding: 50px 0;
  }
}

@media (max-width: 420px) {
}

/*****************************************************************************************
*** marketplace works
*****************************************************************************************/

.marketplace-works {
  padding: 90px 0 60px;
}

.marketplace-works .section__violet-title {
  margin-bottom: 90px;
}

.marketplace-works__list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.marketplace-works__row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.marketplace-works__row:nth-child(2n) {
  flex-direction: row-reverse;
}

.marketplace-works__row__imgs {
  max-width: 603px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marketplace-works__row__imgs img {
  width: 100%;
  height: auto;
  display: block;
}

.marketplace-works__row__body {
  max-width: 603px;
  width: 100%;
}

.marketplace-works__row__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.marketplace-works__row__step {
  background-size: cover;
  line-height: 1;
  color: #c9c9c9;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
  color: #002043;
  font-size: 130px;
}

.marketplace-works__row__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.25em;
  color: var(--color_blue);
}

.marketplace-works__row__desc_1 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 24px;
}

.marketplace-works__row__desc_2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5em;
}

.marketplace-works__row__quote {
  margin-top: 90px;
  max-width: 330px;
  width: 100%;
  font-weight: 400;
  font-size: 17.1px;
  line-height: 1.4;
  color: var(--color_blue);
  text-align: right;
  margin-left: auto;
}

.marketplace-works__row__author {
  margin-top: 20px;
  max-width: 330px;
  width: 100%;
  font-weight: 400;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.2;
  color: #58728e;
  text-align: right;
  margin-left: auto;
}

.marketplace-works__foot {
  margin-top: 48px;
  display: none;
}

.marketplace-works__footer .marketplace-works__foot {
  display: inline-block;
  margin-top: 24px;
}

.marketplace-works__slide-number {
  color: #002043;
  font-size: 24px;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .marketplace-works__row__step {
    font-size: 72px;
  }
  .marketplace-works__footer {
    display: none;
  }

  .marketplace-works__foot {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .marketplace-works__row {
    gap: 30px;
  }
  .marketplace-works__row__title {
    font-size: 25px;
  }
  .marketplace-works__row__desc_1 {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .marketplace-works__row__desc_2 {
    font-size: 16px;
  }
  .marketplace-works__row__quote {
    font-size: 16px;
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .marketplace-works {
    padding: 70px 0 60px;
  }
  .marketplace-works .section__violet-title {
    margin-bottom: 60px;
  }
  .marketplace-works__row {
    flex-direction: column;
    align-items: center;
  }
  .marketplace-works__row:nth-child(2n) {
    flex-direction: column;
  }
  .marketplace-works__row__body {
    max-width: none;
  }
  .marketplace-works__row__quote {
    margin-top: 40px;
  }
  .marketplace-works__list {
    gap: 40px;
  }
  .marketplace-works__foot {
    margin-top: 70px;
  }
}

@media (max-width: 550px) {
  .marketplace-works {
    padding: 50px 0;
  }
  .marketplace-works__row__step {
    font-size: 48px;
  }
  .marketplace-works .section__violet-title {
    margin-bottom: 40px;
  }
  .marketplace-works__foot {
    margin-top: 40px;
  }
  .marketplace-works__row__title {
    font-size: 22px;
  }
  .marketplace-works__row__desc_1 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .marketplace-works__row__desc_2 {
    font-size: 14px;
  }
  .marketplace-works__row__quote {
    font-size: 14px;
    margin-top: 30px;
  }
}

@media (max-width: 420px) {
}

/*****************************************************************************************
*** clients saying
*****************************************************************************************/

.clients-saying {
  padding: 90px 0;
}

.clients-saying__row {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 90px;
}

.clients-saying__item {
  max-width: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.clients-saying__item__title {
  font-weight: 300;
  font-size: 86px;
  line-height: 1;
  color: var(--color_blue);
}

.clients-saying__item__name {
  font-size: 18px;
  line-height: 1.5em;
}

.clients-saying__slider {
  margin: 90px auto 0;
  position: relative;
  max-width: 600px;
  width: 90%;
}

.clients-saying__swiper {
  width: 100%;
  overflow: hidden;
}

.clients-saying__swiper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients-saying__swiper__item__text {
  font-size: 18px;
  line-height: 1.5em;
  text-align: center;
}

.clients-saying__swiper__item__text p:not(:last-child) {
  margin-bottom: 10px;
}

.clients-saying__swiper__item__name {
  font-size: 18px;
  line-height: 1.5em;
  text-align: center;
  margin-top: 3px;
}

.clients-saying__swiper__item__stars {
  max-width: 200px;
  width: 100%;
}

.clients-saying__swiper__item__stars img {
  width: 100%;
  display: block;
  height: auto;
  margin-top: 23px;
}

.clients-saying__swiper__nav {
  width: calc(100% + 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 40px;
  left: -50px;
  z-index: 1;
  pointer-events: none;
}

.clients-saying__swiper__prev,
.clients-saying__swiper__next {
  width: 39px;
  height: 39px;
  background: url('data:image/svg+xml,<svg width="39" height="40" viewBox="0 0 39 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1" y="1.62988" width="36.75" height="36.75" rx="18.375" stroke="%2300346B" stroke-width="2"/><path d="M18.1399 20.2716L25.4902 12.8931L23.0695 10.5146L13.3266 20.2434L22.4564 29.3767L24.8525 26.9595L18.1399 20.2716Z" fill="%2300346B"/></svg>')
    no-repeat;
  background-size: cover;
  pointer-events: initial;
  transition: 0.3s;
  cursor: pointer;
}

.clients-saying__swiper__next {
  transform: rotate(180deg);
}

.clients-saying__swiper__prev:hover,
.clients-saying__swiper__next:hover {
  opacity: 0.7;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .clients-saying__item__title {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .clients-saying {
    padding: 65px 0;
  }
  .clients-saying__swiper__nav {
    width: calc(100% + 40px);
    left: -20px;
  }
  .clients-saying__row {
    gap: 30px 25px;
  }
  .clients-saying__item__title {
    font-size: 56px;
  }
  .clients-saying__item__name {
    font-size: 16px;
  }
  .clients-saying__row,
  .clients-saying__slider {
    margin-top: 60px;
  }
}

@media (max-width: 550px) {
  .clients-saying {
    padding: 50px 0;
  }
  .clients-saying__row {
    flex-wrap: wrap;
  }
  .clients-saying__item {
    max-width: 176px;
  }
  .clients-saying__swiper__item__text {
    font-size: 18px;
  }
  .clients-saying__row,
  .clients-saying__slider {
    margin-top: 40px;
  }
}

@media (max-width: 420px) {
  .clients-saying__swiper__item__text {
    font-size: 16px;
  }
  .clients-saying__item {
    max-width: 154px;
  }
  .clients-saying__item__title {
    font-size: 50px;
  }
}

/*****************************************************************************************
*** customer spotlight
*****************************************************************************************/

.customer-spotlight {
  padding: 90px 0;
}

.customer-spotlight__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.customer-spotlight__body {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.customer-spotlight__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color_violet);
  text-transform: uppercase;
  margin-bottom: 35px;
}

.customer-spotlight__desc {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5em;
}

.customer-spotlight__img {
  margin-top: 30px;
}

.customer-spotlight__img img {
  width: 100%;
  height: auto;
  display: block;
}

.customer-spotlight__video {
  max-width: 580px;
  width: 100%;
  display: block;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .customer-spotlight__row {
    flex-direction: column;
  }
  .customer-spotlight__body {
    max-width: none;
  }
  .customer-spotlight__video {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .customer-spotlight {
    padding: 65px 0;
  }
  .customer-spotlight__desc {
    font-size: 20px;
  }
  .customer-spotlight__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 550px) {
  .customer-spotlight {
    padding: 50px 0;
  }
  .customer-spotlight__desc {
    font-size: 16px;
  }
  .customer-spotlight__title {
    font-size: 18px;
  }
  .customer-spotlight__row {
    gap: 20px;
  }
}

@media (max-width: 420px) {
}

/*****************************************************************************************
*** how many calls
*****************************************************************************************/

.how-many-calls {
  padding: 90px 0 60px;
}

.how-many-calls__row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 95px;
}

.how-many-calls__body {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-many-calls__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5em;
  margin-bottom: 24px;
}

p.how-many-calls__desc {
  font-size: 18px;
  line-height: 1.25em;
  margin-bottom: 48px;
}

.how-many-calls__btn {
  font-size: 18px;
}

.how-many-calls__img {
  max-width: 566px;
  width: 100%;
}

.how-many-calls__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .how-many-calls__title {
    font-size: 24px;
  }
  p.how-many-calls__desc {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .how-many-calls__btn {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .how-many-calls {
    padding: 65px 0 60px;
  }
  .how-many-calls__row {
    margin-top: 65px;
    flex-direction: column;
  }
  .how-many-calls__body {
    max-width: none;
  }
  .how-many-calls__img {
    max-width: none;
  }
}

@media (max-width: 550px) {
  .how-many-calls {
    padding: 50px 0;
  }
  .how-many-calls__row {
    margin-top: 40px;
  }
  .how-many-calls__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  p.how-many-calls__desc {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .how-many-calls__btn {
    font-size: 16px;
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
}

/*****************************************************************************************
*** growing business
*****************************************************************************************/

.growing-business {
  padding: 90px 0;
}

.growing-business__row {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.growing-business__item {
  max-width: 367px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.growing-business__item__img {
  max-width: 140px;
  width: 100%;
  margin: 0 auto;
}

.growing-business__item__img img {
  display: block;
  width: 100%;
  height: auto;
}

.growing-business__item__title {
  margin: 34px 0 25px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
}

.growing-business__item__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.growing-business__foot {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .growing-business__row {
    flex-wrap: wrap;
  }
  .growing-business__item {
    max-width: none;
    width: calc(50% - 15px);
    flex-grow: 1;
  }
}

@media (max-width: 767px) {
  .growing-business {
    padding: 65px 0;
  }
  .growing-business__row {
    margin-top: 60px;
  }
  .growing-business__item__title {
    font-size: 22px;
  }
  .growing-business__item__desc {
    font-size: 18px;
  }
}

@media (max-width: 550px) {
  .growing-business {
    padding: 50px 0;
  }
  .growing-business__row {
    margin-top: 40px;
  }
  .growing-business__item__title {
    font-size: 18px;
    margin: 25px 0 15px;
  }
  .growing-business__item__desc {
    font-size: 16px;
  }
  .growing-business__item__img {
    max-width: 120px;
  }
  .growing-business__foot {
    margin-top: 40px;
  }
}

@media (max-width: 420px) {
  .growing-business__item {
    width: 100%;
  }
}

/*****************************************************************************************
*** results our clients
*****************************************************************************************/

.results-our-clients {
  padding: 90px 0;
}

.results-our-clients__row {
  margin: 90px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.results-our-clients__row__item {
  max-width: 333px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.results-our-clients__row__item__title {
  font-weight: 300;
  font-size: 86px;
  line-height: 1;
  color: var(--color_blue);
}

.results-our-clients__row__item__name {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5em;
}

.results-our-clients__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 48px;
  flex-wrap: wrap;
}

.results-our-clients__list__item img {
  max-width: 200px;
  width: auto;
  max-height: 140px;
  height: auto;
  display: block;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .results-our-clients__row__item__title {
    font-size: 54px;
  }
  .results-our-clients__row__item__name {
    font-size: 18px;
  }
  .results-our-clients__row__item__name br {
    display: none;
  }
}

@media (max-width: 767px) {
  .results-our-clients {
    padding: 65px 0;
  }
  .results-our-clients__row {
    margin: 60px 0 0;
    flex-wrap: wrap;
  }
  .results-our-clients__row__item {
    max-width: none;
    width: calc(50% - 15px);
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .results-our-clients {
    padding: 50px 0;
  }
  .results-our-clients__row {
    margin: 40px 0 0;
  }
  .results-our-clients__row__item__title {
    font-size: 44px;
  }
}

@media (max-width: 420px) {
  .results-our-clients__row__item__title {
    font-size: 38px;
  }
  .results-our-clients__row__item__name {
    font-size: 16px;
  }
}

/*****************************************************************************************
*** about our services
*****************************************************************************************/

.about-our-services {
  padding: 90px 0;
}

.about-our-services__row {
  margin: 90px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.about-our-services__row__item {
  max-width: 372px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-our-services__row__item-name {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}

.about-our-services__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.about-our-services__foot p {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  color: #00346b;
}

.about-our-services__btn {
  font-size: 18px;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .about-our-services__row {
    flex-wrap: wrap;
  }
  .about-our-services__row__item {
    max-width: none;
    width: calc(50% - 15px);
    flex-grow: 1;
  }
}

@media (max-width: 767px) {
  .about-our-services {
    padding: 65px 0;
  }
  .about-our-services__row {
    margin: 60px 0;
  }
}

@media (max-width: 550px) {
  .about-our-services {
    padding: 50px 0;
  }
  .about-our-services__row {
    margin: 40px 0;
  }
  .about-our-services__row__item {
    width: 100%;
  }
}

@media (max-width: 420px) {
}

/*****************************************************************************************
*** how pay calls
*****************************************************************************************/

.how-pay-calls {
  padding: 90px 0;
}

.how-pay-calls__row {
  margin: 90px 0 70px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.how-pay-calls__row__item {
  max-width: 374px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-pay-calls__row__item__img {
  max-width: 140px;
  width: 100%;
  aspect-ratio: 1;
}

.how-pay-calls__row__item__img img {
  display: block;
  width: 100%;
  height: auto;
}

.how-pay-calls__row__item__title {
  margin: 34px 0 25px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25em;
  text-align: center;
}

.how-pay-calls__row__item__desc {
  font-size: 18px;
  line-height: 1.5em;
  text-align: center;
}

.how-pay-calls__foot {
  display: flex;
  justify-content: center;
}

.how-pay-calls__btn {
  font-size: 18px;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .how-pay-calls__row__item__desc {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .how-pay-calls {
    padding: 65px 0;
  }
  .how-pay-calls__row {
    margin: 60px 0 55px;
    flex-wrap: wrap;
  }
  .how-pay-calls__row__item {
    max-width: calc(50% - 15px);
  }
  .how-pay-calls__row__item:last-child {
    max-width: none;
  }
  .how-pay-calls__row__item__title {
    margin: 30px 0 15px;
  }
  .how-pay-calls__btn {
    font-size: 19px;
  }
}

@media (max-width: 550px) {
  .how-pay-calls {
    padding: 50px 0;
  }
  .how-pay-calls__row {
    margin: 40px 0;
  }
  .how-pay-calls__row__item__title {
    font-size: 22px;
  }
  .how-pay-calls__row__item__desc {
    font-size: 16px;
  }
  .how-pay-calls__btn {
    font-size: 18px;
    line-height: 1.3;
  }
}

@media (max-width: 420px) {
  .how-pay-calls__row__item {
    max-width: none;
  }
}

/*****************************************************************************************
*** how many leads
*****************************************************************************************/

.how-many-leads {
  background: var(--color_blue);
  padding: 60px 0;
}

.how-many-leads__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.how-many-leads__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}

.how-many-leads__btn {
  background: var(--color_violet);
  font-size: 18px;
  border-color: var(--color_violet);
}

.how-many-leads__btn:hover {
  background: var(--color_violet2);
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
  .how-many-leads__title {
    font-size: 26px;
  }
}

@media (max-width: 550px) {
  .how-many-leads {
    padding: 50px 0;
  }
  .how-many-leads__btn {
    font-size: 17px;
  }
  .how-many-leads__title {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .how-many-leads__title {
    font-size: 24px;
  }
  .how-many-leads__btn {
    font-size: 16px;
  }
}

/*****************************************************************************************
*** local service companies
*****************************************************************************************/

.local-service-companies {
  padding: 90px 0;
}

.local-service-companies__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 90px;
}

.local-service-companies__col {
  max-width: 372px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.local-service-companies__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.local-service-companies__list-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
}

.local-service-companies__list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.local-service-companies__list ul li {
  font-size: 18px;
  line-height: 1.25;
  color: #00346b;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
  .local-service-companies__row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }
  .local-service-companies__col:first-child {
    grid-row: span 2;
  }
  .local-service-companies {
    padding: 65px 0;
  }
}

@media (max-width: 550px) {
  .local-service-companies {
    padding: 50px 0;
  }
  .local-service-companies__row {
    margin-top: 40px;
  }
  .local-service-companies__list-title {
    font-size: 20px;
  }
  .local-service-companies__list ul li {
    font-size: 16px;
  }
  .local-service-companies__list ul {
    gap: 7;
  }
  .local-service-companies__list {
    gap: 20px;
  }
  .local-service-companies__col {
    gap: 30px;
  }
}

@media (max-width: 420px) {
  .local-service-companies__row {
    gap: 20px;
  }
  .local-service-companies__list-title {
    font-size: 18px;
  }
  .local-service-companies__list ul li {
    font-size: 15px;
  }
}

/*****************************************************************************************
*** integrations FAQ
*****************************************************************************************/

.integrations-faq {
  padding-top: 90px;
  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;
    text-transform: inherit;
  }

  .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;
  }
}

@media screen and (max-width: 550px) {
  .integrations-faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/*****************************************************************************************
*** call to action
*****************************************************************************************/

.sec-call-action {
  background: #f2f8fc;
  padding: 40px 0;
}

.sec-call-action__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.sec-call-action__text {
  font-size: 24px;
  line-height: 1.25;
  color: var(--color_text);
  margin-bottom: 0;
}

.sec-call-action__btn {
  font-size: 17.1px;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .sec-call-action__text {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
}

@media (max-width: 550px) {
  .sec-call-action__content {
    flex-direction: column;
  }
  .sec-call-action__text {
    font-size: 20px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .sec-call-action__text {
    font-size: 18px;
  }
}

/*****************************************************************************************
*** footer
*****************************************************************************************/

footer {
  width: 100%;
}

.footer__top {
  width: 100%;
  background: #007bb2;
  padding: 40px 0;
}

.footer__bot {
  width: 100%;
  background: #044082;
  padding: 22px 0;
}

.footer__bot__info {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}

.footer__bot__info a {
  font-weight: 400;
  color: #fff;
}

.footer__bot__info a:hover {
  color: var(--color_blue);
}

.footer__top__row {
  display: flex;
  justify-content: space-between;
  gap: 40px 20px;
}

.footer__top__col {
  max-width: 278px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__top__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.footer__top__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__top__menu li a {
  font-weight: 300;
  font-size: 14.3px;
  line-height: 1.2;
  color: #fff;
  display: block;
}

.footer__top__menu li a:hover {
  color: var(--color_text);
}

.footer__top__menu:not(:last-child) {
  margin-bottom: 40px;
}

.footer__top__img {
  padding: 5px;
  border: 1px solid #fff;
  margin-bottom: 14px;
}

.footer__top__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.footer__top__info {
  font-weight: 400;
  font-size: 14.3px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 13px !important;
  display: block;
}

.footer__top__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 20px;
  border: 1px solid #fff;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1;
  color: #fff;
  margin-bottom: 40px;
}

.footer__top__btn:hover {
  background: #fff;
  color: var(--color_text);
}

.footer__top__soc {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer__top__soc a:hover {
  transform: scale(1.1);
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .footer__top__row {
    flex-wrap: wrap;
  }
  .footer__top__col {
    max-width: 47%;
  }
}

@media (max-width: 767px) {
}

@media (max-width: 550px) {
  .footer__top__col:nth-last-child(2) {
    max-width: 100%;
  }
  .footer__top__col:last-child {
    max-width: 100%;
  }
  .footer__top__title {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .footer__top__title {
    font-size: 16px;
  }
}

/*****************************************************************************************
*** 
*** ABOUT US PAGE
*** 
*****************************************************************************************/

/*****************************************************************************************
*** about us
*****************************************************************************************/

.about-us {
  margin: 90px 0;
}

.about-us .section__violet-title {
  text-align: left;
}

.about-us__row {
  display: flex;
  gap: 44px;
  margin-top: 84px;
}

.about-us__content {
  max-width: 747px;
  width: 100%;
  font-size: 18px;
  line-height: 1.5;
}

.about-us__content p {
  font-size: 18px;
  line-height: 1.5;
}

.about-us__content img {
  display: block;
  width: 100%;
  height: auto;
}

.about-us__content img:not(:last-child) {
  margin-bottom: 26px;
}

.about-us__content h2 {
  font-size: 38px;
  line-height: 1.3;
  color: var(--color_blue);
  margin-bottom: 24px;
}

.about-us__calculations {
  max-width: 460px;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 33px;
}

.about-us__calculations__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-us__calculations__item__title {
  font-size: 59px;
  line-height: 1.1;
  color: var(--color_blue);
}

.about-us__calculations__item__name {
  font-size: 17.1px;
  line-height: 1.5em;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
  .about-us {
    margin: 70px 0;
  }
  .about-us__content h2 {
    font-size: 34px;
  }
  .about-us__row {
    margin-top: 60px;
  }
  .about-us__calculations__item__title {
    font-size: 54px;
  }
}

@media (max-width: 991px) {
  .about-us__row {
    flex-direction: column;
  }
  .about-us__content {
    max-width: none;
  }
  .about-us__calculations {
    max-width: none;
    width: 100%;
  }
  .about-us__calculations__item {
    text-align: center;
  }
  .about-us__content h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .about-us {
    margin: 50px 0;
  }
  .about-us__row {
    margin-top: 40px;
  }
  .about-us__content h2 {
    font-size: 26px;
  }
  .about-us__content img:not(:last-child) {
    margin-bottom: 18px;
  }
}

@media (max-width: 550px) {
  .about-us__content h2 {
    font-size: 24px;
  }
  .about-us__content,
  .about-us__content p {
    font-size: 16px;
  }
  .about-us__calculations__item__title {
    font-size: 48px;
  }
}

@media (max-width: 420px) {
  .about-us__content h2 {
    font-size: 22px;
  }
}

/*****************************************************************************************
*** service team
*****************************************************************************************/

.service-team {
  margin-bottom: 100px;
}

.service-team .section__violet-title {
  text-align: left;
}

.service-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 45px 50px;
  margin-top: 80px;
}

.service-team__grid__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-team__grid__item-img {
  width: 100%;
  padding: 14px;
  box-shadow: 0px 0px 2px 2px #0000000d;
  border-radius: 100%;
  box-sizing: border-box;
}

.service-team__grid__item-img img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border-radius: 100%;
  box-shadow: 0px 0px 2px 2px #0000000d;
  object-fit: cover;
  object-position: 50% 50%;
}

.service-team__grid__item-name {
  margin: 20px 0 5px;
  font-size: 18px;
  line-height: 1.3;
}

.service-team__grid__item-status {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
}

@media (max-width: 1440px) {
}

@media (max-width: 1100px) {
  .service-team {
    margin-bottom: 70px;
  }
  .service-team__grid {
    margin-top: 60px;
  }
}

@media (max-width: 991px) {
  .service-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .service-team {
    margin-bottom: 50px;
  }
  .service-team__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .service-team__grid__item-name,
  .service-team__grid__item-status {
    font-size: 18px;
  }
}

@media (max-width: 550px) {
  .service-team__grid {
    grid-gap: 30px;
  }
  .service-team__grid__item-name {
    margin: 15px 0 5px;
  }
  .service-team__grid__item-name,
  .service-team__grid__item-status {
    font-size: 16px;
  }
  .service-team__grid__item-img {
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .service-team__grid__item-img {
    padding: 6px;
  }
}

/*****************************************************************************************
*** Simple page
*****************************************************************************************/

.content {
  margin: 100px 0 90px;

  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  box-sizing: border-box;
}

.content h1 {
  font-family: "Roboto", Sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #183a7b;
  margin-bottom: 20px;
}

.content h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

.content h3 {
  font-family: "Roboto", Sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #183a7b;
  margin-bottom: 20px;
}

.content p {
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.content p:not(:last-child) {
  margin-bottom: 14px;
}

.content ul {
  padding-left: 26px;
  list-style-type: initial;
}

.content ul:not(:last-child),
.content ol:not(:last-child) {
  margin-bottom: 14px;
}

.content ol {
  padding-left: 26px;
}

.content ol li::before {
  content: counters(list-item, ".") ".";
}

.content ul li:not(:last-child),
.content ol li:not(:last-child) {
  margin-bottom: 10px;
}

.content a {
  color: var(--color_blue);
}

.content h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

.content table:not(:last-child) {
  margin-bottom: 14px;
}

.content table {
  border-collapse: separate;
  border-spacing: 10px 14px;
}
