* {
  padding: 0;
  margin: 0;
  border: 0
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

:active,
:focus {
  outline: 0
}

a:active,
a:focus {
  outline: 0
}

aside,
footer,
header,
nav {
  display: block
}

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable
}

button,
input,
textarea {
  font-family: inherit
}

input::-ms-clear {
  display: none
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit
}

input::placeholder,
textarea::placeholder {
  color: inherit
}

textarea {
  resize: none
}

button {
  cursor: pointer;
  background-color: transparent
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

a {
  display: inline-block;
  color: inherit
}

a,
a:visited {
  text-decoration: none
}

a:hover {
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top
}

svg {
  display: block;
  width: 100%;
  height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit
}

picture {
  display: block;
  width: 100%;
  height: 100%
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

address {
  font-style: normal
}

strong {
  display: block
}

@font-face {
  font-family: Geologica;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/puretide-fonts/puretide-geologica-bold.woff2) format("woff2")
}

@font-face {
  font-family: Geologica;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/puretide-fonts/puretide-geologica-medium.woff2) format("woff2")
}

@font-face {
  font-family: Geologica;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/puretide-fonts/puretide-geologica-regular.woff2) format("woff2")
}

:root {
  --font-main: "Geologica", sans-serif;
  --container-width: 1200px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: linear-gradient(180deg, #020060 0%, #03002d 100%);
  --main: #ffffff;
  --black: #000000;
  --white: #ffffff;
  --bg-btn: linear-gradient(180deg, #00c9bf 0%, #00396e 100%);
  --bg: rgba(18, 18, 18, 0.5);
  --hover: #00c9bf;
  --active: #00c9bf
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step)
}

@media (max-width:991px) {
  .container {
    padding: 0 var(--container-step-tablet)
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 var(--container-step-mobile)
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background: var(--background-page)
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0
}

a,
button {
  color: var(--main)
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .logo:hover {
    color: var(--hover)
  }
}

.logo:focus-visible {
  color: var(--hover)
}

.logo:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.logo span {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.border {
  border: 2px solid #00c9bf
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px
}

.brr-30-20 {
  border-radius: 30px
}

@media (max-width:991px) {
  .brr-30-20 {
    border-radius: 25px
  }
}

@media (max-width:600px) {
  .brr-30-20 {
    border-radius: 20px
  }
}

.mb-20-15:not(:last-child) {
  margin-bottom: 20px
}

@media (max-width:600px) {
  .mb-20-15:not(:last-child) {
    margin-bottom: 15px
  }
}

.mb-15-10:not(:last-child) {
  margin-bottom: 15px
}

@media (max-width:600px) {
  .mb-15-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.mb-20-10:not(:last-child) {
  margin-bottom: 20px
}

@media (max-width:991px) {
  .mb-20-10:not(:last-child) {
    margin-bottom: 15px
  }
}

@media (max-width:600px) {
  .mb-20-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.p-20-10 {
  padding: 20px
}

@media (max-width:991px) {
  .p-20-10 {
    padding: 15px
  }
}

@media (max-width:600px) {
  .p-20-10 {
    padding: 10px
  }
}

.mb-40-30:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:991px) {
  .mb-40-30:not(:last-child) {
    margin-bottom: 35px
  }
}

@media (max-width:600px) {
  .mb-40-30:not(:last-child) {
    margin-bottom: 30px
  }
}

.mb-20:not(:last-child) {
  margin-bottom: 20px
}

.mb-5:not(:last-child) {
  margin-bottom: 5px
}

.tx-20-16 {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%
}

@media (max-width:991px) {
  .tx-20-16 {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .tx-20-16 {
    font-size: 16px
  }
}

.mb-section:not(:last-child) {
  margin-bottom: 60px
}

@media (max-width:991px) {
  .mb-section:not(:last-child) {
    margin-bottom: 50px
  }
}

@media (max-width:600px) {
  .mb-section:not(:last-child) {
    margin-bottom: 40px
  }
}

.pt-40-20 {
  padding-top: 40px
}

@media (max-width:991px) {
  .pt-40-20 {
    padding-top: 30px
  }
}

@media (max-width:600px) {
  .pt-40-20 {
    padding-top: 20px
  }
}

.age {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.tx-16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%
}

.tx-14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%
}

.tx-14-10 {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%
}

@media (max-width:991px) {
  .tx-14-10 {
    font-size: 12px
  }
}

@media (max-width:600px) {
  .tx-14-10 {
    font-size: 10px
  }
}

.tx-38-15 {
  font-weight: 400;
  font-size: 38px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-38-15 {
    font-size: 30px
  }
}

@media (max-width:991px) {
  .tx-38-15 {
    font-size: 24px
  }
}

@media (max-width:600px) {
  .tx-38-15 {
    font-size: 15px
  }
}

.tx-18-11 {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-18-11 {
    font-size: 16px
  }
}

@media (max-width:991px) {
  .tx-18-11 {
    font-size: 14px
  }
}

@media (max-width:600px) {
  .tx-18-11 {
    font-size: 11px
  }
}

.rating {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

@media (max-width:991px) {
  .rating {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .rating {
    font-size: 16px
  }
}

.but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  background: var(--bg-btn);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  padding: 15px 10px;
  min-width: 250px;
  min-height: 57px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  text-align: center;
  text-transform: uppercase
}

@media (max-width:1220px) {
  .but {
    font-size: 16px
  }
}

@media (max-width:991px) {
  .but {
    min-height: 42px;
    font-size: 14px
  }
}

@media (max-width:600px) {
  .but {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 12px
  }
}

@media (any-hover:hover) {
  .but:hover {
    opacity: .5
  }
}

.but:focus-visible {
  opacity: .5
}

.but:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.legolas {
  border-radius: 30px;
  padding: 5px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #00396e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px
}

@media (max-width:600px) {
  .legolas {
    gap: 8px
  }
}

.legolas__num {
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: var(--white)
}

@media (max-width:991px) {
  .legolas__num {
    font-size: 10px
  }
}

@media (max-width:600px) {
  .legolas__num {
    font-size: 8px
  }
}

.legolas__text {
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: var(--white)
}

@media (max-width:991px) {
  .legolas__text {
    font-size: 10px
  }
}

@media (max-width:600px) {
  .legolas__text {
    font-size: 8px
  }
}

.text-shadow {
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.benefit {
  border-radius: 100px;
  padding: 4px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: var(--black);
  background: #00c9bf
}

@media (max-width:991px) {
  .benefit {
    font-size: 10px
  }
}

@media (max-width:600px) {
  .benefit {
    font-size: 7px
  }
}

.bg-main {
  background-color: var(--bg)
}

.tx-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3
}

@media (max-width:600px) {
  .tx-main {
    font-size: 14px
  }
}

.hover-color {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .hover-color:hover {
    color: var(--hover)
  }
}

.hover-color:focus-visible {
  color: var(--hover)
}

.hover-color:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.d-block {
  display: block
}

.w100 {
  min-width: 0;
  width: 100%
}

.relative-z2 {
  position: relative;
  z-index: 2
}

.word-break {
  word-break: break-all
}

.m-auto {
  margin-left: auto;
  margin-right: auto
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover
}

.underline {
  text-decoration: underline
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.uppercase {
  text-transform: uppercase
}

.lowercase {
  text-transform: lowercase
}

.fw-100 {
  font-weight: 100
}

.fw-200 {
  font-weight: 200
}

.fw-300 {
  font-weight: 300
}

.fw-400 {
  font-weight: 400
}

.fw-500 {
  font-weight: 500
}

.fw-600 {
  font-weight: 600
}

.fw-700 {
  font-weight: 700
}

.fw-800 {
  font-weight: 800
}

.fw-900 {
  font-weight: 900
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.rd-load img {
  opacity: 1
}

.scroll {
  padding-bottom: 10px;
  overflow: auto
}

.scroll::-webkit-scrollbar {
  height: 4px;
  background-color: var(--white)
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--brown)
}

.puretide-header {
  padding: 10px 0
}

@media (max-width:600px) {
  .puretide-header {
    display: none
  }
}

.puretide-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media (max-width:600px) {
  .puretide-hero {
    padding-top: 20px
  }
}

.puretide-hero__item {
  background-image: url(/puretide-img/puretide-hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 75px 20px
}

@media (max-width:991px) {
  .puretide-hero__item {
    padding: 40px 20px
  }
}

@media (max-width:600px) {
  .puretide-hero__item {
    padding: 0;
    background-image: url(/puretide-img/puretide-hero-mob.webp)
  }
}

.puretide-hero__descr {
  padding: 20px;
  max-width: 661px;
  width: 100%;
  margin-left: auto
}

@media (max-width:991px) {
  .puretide-hero__descr {
    padding: 15px
  }
}

@media (max-width:600px) {
  .puretide-hero__descr {
    padding: 16px 5px
  }
}

.puretide-hero__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px
}

@media (max-width:991px) {
  .puretide-hero__benefits {
    gap: 4px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

@media (max-width:600px) {
  .puretide-hero__benefits {
    gap: 4px
  }
}

.puretide-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 20px
}

@media (max-width:991px) {
  .puretide-card {
    gap: 15px
  }
}

@media (max-width:615px) {
  .puretide-card {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 15px 10px 10px 10px
  }
}

.puretide-card__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
  width: 100%
}

@media (max-width:615px) {
  .puretide-card__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }
}

.puretide-card__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
  width: 100%;
  height: 100px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (max-width:991px) {
  .puretide-card__logo {
    height: 80px
  }
}

@media (max-width:768px) {
  .puretide-card__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 150px;
    flex: 0 1 150px
  }
}

@media (max-width:615px) {
  .puretide-card__logo {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 60px
  }
}

@media (any-hover:hover) {
  .puretide-card__logo:hover {
    opacity: .5
  }
}

.puretide-card__logo:focus-visible {
  opacity: .5
}

.puretide-card__logo:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.puretide-card__wrapper-rating {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 140px;
  flex: 0 1 140px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px
}

@media (max-width:615px) {
  .puretide-card__wrapper-rating {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
  }
}

.puretide-card__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.puretide-card__stars li {
  width: 24px;
  height: 24px
}

@media (max-width:991px) {
  .puretide-card__stars li {
    width: 22px;
    height: 22px
  }
}

@media (max-width:768px) {
  .puretide-card__stars li {
    width: 20px;
    height: 20px
  }
}

.puretide-card__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 552px;
  flex: 0 1 552px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px
}

@media (max-width:615px) {
  .puretide-card__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }
}

.puretide-card__wrapper-bonus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
  width: 100%
}

@media (max-width:615px) {
  .puretide-card__wrapper-bonus {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
  }
}

.puretide-card__wrapper-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
  width: 100%
}

@media (max-width:991px) {
  .puretide-card__wrapper-link {
    gap: 10px
  }
}

@media (max-width:615px) {
  .puretide-card__wrapper-link {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
  }
}

.legolas {
  position: absolute;
  z-index: 2;
  top: -10px;
  left: 0
}

.puretide-card-pays {
  max-width: 220px;
  width: 100%;
  margin: 0 auto
}

@media (max-width:600px) {
  .puretide-card-pays {
    max-width: 130px
  }
}

.puretide-card-pays__slide {
  width: 24px;
  height: 24px
}

@media (max-width:1220px) {
  .puretide-card-pays__slide {
    width: 20px;
    height: 20px
  }
}

@media (max-width:991px) {
  .puretide-card-pays__slide {
    width: 18px;
    height: 18px
  }
}

@media (max-width:600px) {
  .puretide-card-pays__slide {
    width: 16px;
    height: 16px
  }
}

.puretide-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

@media (max-width:991px) {
  .puretide-footer__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

.puretide-footer__links a {
  height: 40px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
  .puretide-footer__links a:hover {
    opacity: .5
  }
}

.puretide-footer__links a:focus-visible {
  opacity: .5
}

.puretide-footer__links a:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.puretide-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px
}

@media (max-width:991px) {
  .puretide-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.puretide-terms {
  padding-top: 60px
}

@media (max-width:600px) {
  .puretide-terms {
    padding-top: 40px
  }
}

.puretide-terms h1 {
  font-size: 42px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700
}

@media (max-width:991px) {
  .puretide-terms h1 {
    font-size: 32px
  }
}

@media (max-width:600px) {
  .puretide-terms h1 {
    font-size: 16px
  }
}

.puretide-terms h1:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .puretide-terms h1:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .puretide-terms h1:not(:last-child) {
    margin-bottom: 15px
  }
}

.puretide-terms h2 {
  font-size: 36px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700
}

@media (max-width:991px) {
  .puretide-terms h2 {
    font-size: 25px
  }
}

@media (max-width:600px) {
  .puretide-terms h2 {
    font-size: 14px
  }
}

.puretide-terms h2:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .puretide-terms h2:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .puretide-terms h2:not(:last-child) {
    margin-bottom: 15px
  }
}

.puretide-terms p {
  font-size: 20px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 400
}

@media (max-width:991px) {
  .puretide-terms p {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .puretide-terms p {
    font-size: 12px
  }
}

.puretide-terms p:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .puretide-terms p:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .puretide-terms p:not(:last-child) {
    margin-bottom: 15px
  }
}

.puretide-terms ul:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .puretide-terms ul:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .puretide-terms ul:not(:last-child) {
    margin-bottom: 15px
  }
}

.puretide-terms li {
  font-size: 18px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 400
}

@media (max-width:991px) {
  .puretide-terms li {
    font-size: 16px
  }
}

@media (max-width:600px) {
  .puretide-terms li {
    font-size: 12px
  }
}

.puretide-terms li:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .puretide-terms li:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .puretide-terms li:not(:last-child) {
    margin-bottom: 15px
  }
}