/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}
/* ==================== GLOBAL FIXES ==================== */

html,
body {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fontsSPCC/montserrat-variablefontSPCC.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Notable';
  src: url('/fontsSPCC/notable-regularSPCC.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  background: #090909;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.siteHeaderSPCC {
  position: relative;
  width: 100%;
  color: #f5f5f5;
}

/* TOPBAR 18+ */
.topbarSPCC {
  width: 100%;
  background: rgba(108, 108, 108, 0.4);
  backdrop-filter: blur(5px);
}

.topbar-innerSPCC {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.topbar-iconSPCC {
  width: 32px;
  height: 32px;
}

.topbar-textSPCC {
  margin: 0;
  font-family: 'Montserrat';
  font-size: 12px;
  line-height: 1.4;
  color: #f5f5f5;
}

/* MAIN HEADER */
.header-mainSPCC {
  background: transparent;
}

.header-innerSPCC {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

/* LOGO */
.logoBlockSPCC,
.mobile-logoSPCC {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-imgSPCC {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-textSPCC {
  color: #f5f5f5;
  font-family: 'Notable';
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/* DESKTOP NAV */
.mainNavSPCC {
  display: block;
}

.nav-listSPCC {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-listSPCC a {
  text-decoration: none;
  color: #f5f5f5;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/* BURGER */
.burgerSPCC {
  display: none;
  width: 32px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.burgerSPCC span {
  display: block;
  width: 100%;
  height: 3px;
  background: #f5f5f5;
  border-radius: 999px;
}

.burgerSPCC span + span {
  margin-top: 5px;
}

.mobileMenuSPCC {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  top: 11%;

  background: rgba(33, 33, 33, 0.5);
  backdrop-filter: blur(10px);

  display: none;
  z-index: 9999;
}

@media (min-width: 575px) {
  .mobileMenuSPCC {
    top: 6%;
  }
}

.mobileMenuSPCC.open {
  display: block;
}

/* PANEL */
.mobileMenu-panelSPCC {
  width: 80%;
  max-width: 420px;
  height: 100%;
  background: #212121;
  padding: 62px 10px 40px;

  position: absolute;
  right: 0;
  top: 0;

  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* CLOSE BUTTON */
.mobileMenu-closeSPCC {
  position: absolute;
  top: 20px;
  right: 24px;
  border: none;
  background: transparent;
  color: #f5f5f5;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE NAV */
.mobile-navListSPCC {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-navListSPCC a {
  text-decoration: none;
  color: #f5f5f5;
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .header-innerSPCC {
    justify-content: flex-end;
    padding-inline: 12px;
  }

  .mainNavSPCC {
    display: none;
  }

  .logoBlockSPCC {
    display: none;
  }

  .burgerSPCC {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .topbar-innerSPCC {
    padding-inline: 12px;
  }
}

.heroSPCC {
  width: 100%;
  background: url('/imagesSPCC/paris-bg-deskSPCC.webp') center/cover no-repeat;
  padding-top: 80px;
  position: relative;
  top: -80px;
  z-index: -1;
}

.hero-containerSPCC {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.hero-textSPCC h1 {
  color: #f5f5f5;
  font-family: 'Notable';
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  max-width: 720px;
}

.hero-textSPCC p {
  margin-top: 20px;
  color: #fff;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 720px;
}

.hero-textSPCC ul {
  margin-top: 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.hero-textSPCC ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid #e500ff;
  background: #212121;
  color: #fdfdfd;
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.hero-textSPCC ul li img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.hero-imageSPCC {
  display: flex;
  align-items: flex-end;
}

.hero-imageSPCC img {
  width: 511px;
  height: auto;
  object-fit: contain;
  align-self: flex-end;
}

@media (max-width: 900px) {
  .heroSPCC {
    background: url('/imagesSPCC/paris-bg-mbSPCC.webp') center/cover no-repeat;
    padding: 24px 0;
    top: -70px;
  }

  .hero-containerSPCC {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 28px;
  }

  .hero-imageSPCC {
    display: none;
  }

  .hero-textSPCC h1 {
    font-size: 24px;
    max-width: 100%;
  }

  .hero-textSPCC ul {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap-reverse;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0;
  }

  .hero-textSPCC ul li {
    width: max-content;
    justify-content: center;
    padding: 8px;
    font-size: 9px;
    border-radius: 20px;
    margin-bottom: 10px;
    margin-left: 8px;
  }

  .hero-textSPCC ul li:nth-child(2) {
    order: 3;
  }

  .hero-textSPCC ul li img {
    width: 16px;
    height: 16px;
  }
}
.cardsSPCC {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

.cardSPCC {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  width: 100%;
  width: 380px;
  height: 324px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: space-between;
  overflow: hidden;
  text-align: center;
}

.card__numSPCC {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #e500ff;
}

.card__logoSPCC {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 70px;
  flex-shrink: 0;
}

.card__logoSPCC img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card__titleSPCC {
  margin: 12px 0 8px;
  color: #fff;
  font-family: 'Montserrat';
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  max-height: 50px;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card__ratingBoxSPCC {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.card__ratingBoxSPCC img {
  width: 22px;
  height: 22px;
}

.card__usersSPCC {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  opacity: 0.9;
}

.card__usersSPCC img {
  width: 18px;
  height: 18px;
}

.card__linkSPCC {
  border-radius: 16px;
  background: linear-gradient(90deg, #e500ff 0%, #560088 100%);
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
}

.card__paySPCC {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-shrink: 0;
}

.card__paySPCC img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .cardSPCC {
    width: 328px;
    height: auto;
    min-height: 324px;
    padding: 24px;
  }

  .card__titleSPCC {
    font-size: 18px;
    max-height: none;
    -webkit-line-clamp: 3;
  }

  .card__linkSPCC {
    font-size: 18px;
    width: 85%;
  }
}

/* premiumSPCC */

.premiumSPCC {
  padding: 70px 0;
}

.premiumSPCC h2 {
  color: #fdfdfd;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
}

.premiumSPCC p {
  color: #fdfdfd;

  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .premiumSPCC {
    padding-top: 0;
  }
  .premiumSPCC h2 {
    font-size: 24px;
  }
}

.reviewsSPCC {
  background: #000;
  padding: 60px 0 80px;
  color: #fff;
}

.reviews-titleSPCC {
  text-align: center;
  font-family: 'Montserrat';
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.reviews-subSPCC {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.9;
}

.reviews-listSPCC {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-itemSPCC {
  border-radius: 16px;
  border: 1px solid #e500ff;
  background: #212121;
  backdrop-filter: blur(15px);
  padding: 28px;
}

.review-topSPCC {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatarSPCC {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
}

.star-reviewSPCC {
  display: flex;
  gap: 1.1px;
}

.review-starsSPCC {
  width: 16px;
  height: 16px;
  display: block;
  margin-bottom: 4px;
}

.review-nameSPCC {
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.review-textSPCC {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0.95;
}

.itemsSPCC {
  position: relative;
  top: -100px;
}

@media (max-width: 1015px) {
  .itemsSPCC {
    position: relative;
    top: -80px;
  }
}

@media (max-width: 900px) {
  .reviews-listSPCC {
    grid-template-columns: 1fr;
  }

  .itemsSPCC {
    position: relative;
    top: -100px;
  }
}

/*  */

.faqSPCC {
  padding: 80px 0;
  color: #fdfdfd;
}

.faq-titleSPCC {
  text-align: center;
  font-family: 'Montserrat';
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.faq-subSPCC {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.9;
}

.faq-listSPCC {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-itemSPCC {
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(229, 0, 255, 0.2) 0%,
    rgba(86, 0, 136, 0.2) 100%
  );
  padding: 0;
  overflow: hidden;
}

.faq-headerSPCC {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fdfdfd;
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: 700;
}

.faq-arrowSPCC {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.faq-itemSPCC.active .faq-arrowSPCC {
  transform: rotate(180deg);
}

.faq-contentSPCC {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.35s ease;
}

.faq-itemSPCC.active .faq-contentSPCC {
  padding-bottom: 22px;
}

.faq-contentSPCC p {
  margin-top: 12px;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 740px) {
  .faq-titleSPCC {
    font-size: 24px;
  }
}

.disclaimerSPCC {
  padding: 60px 0;
}

.disclaimer-boxSPCC {
  border-radius: 24px;
  border: 1px solid #e500ff;
  background: #212121;
  padding: 48px 40px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.disclaimer-iconSPCC {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

.disclaimer-boxSPCC p {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: #f5f5f5;
  max-width: 1100px;
  margin: 0 auto 28px;
}

.disclaimer-boxSPCC p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .disclaimer-boxSPCC {
    padding: 32px 20px;
  }

  .disclaimer-boxSPCC p {
    font-size: 15px;
  }
}

.footerSPCC {
  padding: 60px 0;
  background: #000;
  color: #fff;
  font-family: Montserrat;
}

.containerSPCC {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer18SPCC {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.footer18__iconSPCC {
  color: #fdfdfd;
  font-family: Notable;
  font-size: 24px;
  font-weight: 400;
}

.footer18__textSPCC {
  font-size: 16px;
  font-weight: 400;
}

.footer-columnsSPCC {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.footer-columnsSPCC > li:nth-child(3) {
  grid-column: 1 / 3;
}

.footer-colSPCC h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-colSPCC p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.footer-navSPCC ul {
  list-style: none;
  padding: 0;
  margin: 40px 0 30px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-navSPCC a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.footer-logosWrapSPCC {
  border: 1px solid #f1f1f1;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-logoSPCC img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.footer-copySPCC {
  text-align: center;
  font-size: 16px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer-columnsSPCC {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-columnsSPCC > li:nth-child(3) {
    grid-column: 1 / 2;
  }

  .footer-navSPCC ul {
    flex-direction: column;
    gap: 16px;
  }

  .footer-logoSPCC img {
    width: 100px;
  }
}

.aboutSPCC {
  padding: 60px 0;
  color: #fff;
}

.about-titleSPCC {
  text-align: center;
  font-family: 'Montserrat';
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.about-textSPCC {
  margin: 0 auto 50px;
  text-align: left;
}

.about-textSPCC p {
  margin-bottom: 20px;
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 1.5;
  color: #eaeaea;
}

.team-listSPCC {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.team-cardSPCC {
  width: 302px;
  text-align: center;
  color: #fff;
}

.team-imgSPCC {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-imgSPCC img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-nameSPCC {
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-roleSPCC {
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0.85;
}

.team-descSPCC {
  font-family: 'Montserrat';
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
  .team-listSPCC {
    flex-direction: column;
    align-items: center;
  }

  .team-cardSPCC {
    width: 100%;
    max-width: 340px;
  }

  .team-imgSPCC {
    height: 300px;
  }

  .about-titleSPCC {
    font-size: 24px;
  }
}

@media (max-width: 1100px) {
  .team-listSPCC {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.contactSPCC {
  padding: 60px 0;
  color: #fff;
}

.contact-titleSPCC {
  text-align: center;
  font-family: 'Montserrat';
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-descSPCC {
  margin: 0 auto 40px;
  text-align: center;
}

.contact-descSPCC p {
  margin-bottom: 18px;
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
}

.contact-formSPCC {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-labelSPCC {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-inputSPCC,
.contact-textareaSPCC {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #fdfdfd;
  background: transparent;
  padding: 14px 18px;
  color: #fff;
  font-family: 'Montserrat';
  font-size: 16px;
  outline: none;
}

.contact-textareaSPCC {
  height: 150px;
  resize: none;
}

.contact-inputSPCC::placeholder,
.contact-textareaSPCC::placeholder {
  color: #bfbfbf;
}

.contact-btnSPCC {
  margin: 10px auto 0;
  padding: 14px 26px;
  border-radius: 16px;
  background: linear-gradient(90deg, #e500ff 0%, #560088 100%);
  color: #fff;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  width: fit-content;
}

.contact-btnSPCC:hover {
  opacity: 0.9;
}

.contact-successSPCC {
  text-align: center;
  margin-top: 24px;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 600;
  color: #e500ff;
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-titleSPCC {
    font-size: 24px;
  }

  .contact-btnSPCC {
    font-size: 18px;
    width: 100%;
  }
}

.terms {
  padding: 64px 0;
}

.terms h1 {
  color: #fdfdfd;
  text-align: center;

  /* 32b */
  font-family: 'Montserrat';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.terms p {
  color: #fdfdfd;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}

.terms h2 {
  color: #fdfdfd;
  font-family: 'Montserrat';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.terms ol,
ul {
  color: #fdfdfd;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}

.terms h3 {
  color: #fdfdfd;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

@media (max-width: 740px) {
  .terms {
    padding: 30px 0;
  }

  .terms h1 {
    font-size: 20px;
  }

  .terms h2 {
    font-size: 20px;
  }
}
