body {
  font-family: Lato, sans-serif;
  font-size: var(--font-size-base);
  color: var(--black);
  line-height: var(--line-height-base);
  overflow-x: hidden;
  background-color: var(--white);
}

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

* {
  margin: 0;
  padding: 0;
  /* font: inherit; */
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  color-scheme: dark light;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--gray);
}

/* Set scroll-bar fo WebKit-browsers */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 3px;
}

::-webkit-scrollbar-track {
  background-color: var(--gray);
}

button {
  outline: transparent;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-position: inside;
  padding-left: 0;
}

/* Make images easier to work with */
img,
picture,
svg,
video {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Typography style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--heading-color);
  line-height: var(--line-height-heading);
  margin: 0;
}

h1 {
  font-size: var(--font-size-title-headline);
  font-weight: 700;
  line-height: var(--line-height-heading);
}
h2 {
  font-size: 2em;
  font-weight: 700;
}
h3 {
  font-size: 1.75em;
  font-weight: 700;
}
h4 {
  font-size: 1.5em;
  font-weight: 700;
}
h5 {
  font-size: 1.25em;
  font-weight: 700;
}
h6 {
  font-size: 1em;
  font-weight: 700;
}

.t-b-64 {
  font-size: var(--font-size-64);
  font-weight: 700;
  line-height: var(--line-height-heading);
}

.t-r-64 {
  font-size: var(--font-size-64);
  font-weight: 400;
  line-height: var(--line-height-heading);
}

.t-b-40 {
  font-size: var(--font-size-title-headline);
  font-weight: 700;
  line-height: var(--line-height-heading);
}

.t-b-36 {
  font-size: var(--font-size-title-large);
  font-weight: 700;
  line-height: var(--line-height-heading);
}

.t-b-26 {
  font-size: var(--font-size-26);
  font-weight: 700;
  line-height: var(--line-height-base);
}

.t-r-26 {
  font-size: var(--font-size-26);
  font-weight: 400;
  line-height: var(--line-height-base);
}

.t-b-22 {
  font-size: var(--font-size-22);
  font-weight: 700;
  line-height: var(--line-height-base);
}

.t-r-22 {
  font-size: var(--font-size-22);
  font-weight: 400;
  line-height: var(--line-height-base);
}

.t-b-24 {
  font-size: var(--font-size-title-medium);
  font-weight: 700;
  line-height: var(--line-height-base);
}

.t-r-24 {
  font-size: var(--font-size-title-medium);
  font-weight: 400;
  line-height: var(--line-height-base);
}

.t-b-20 {
  font-size: var(--font-size-medium);
  font-weight: 700;
  line-height: var(--line-height-base);
}

.t-r-20 {
  font-size: var(--font-size-medium);
  font-weight: 400;
  line-height: var(--line-height-base);
}

.t-b-18 {
  font-size: var(--font-size-regular);
  font-weight: 700;
  line-height: var(--line-height-small);
}

.t-r-18 {
  font-size: var(--font-size-regular);
  font-weight: 400;
  line-height: var(--line-height-base);
}

.t-b-16 {
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: var(--line-height-small);
}

.t-r-16 {
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-base);
}

.t-r-14 {
  font-size: var(--font-size-small);
  font-weight: 400;
  line-height: var(--line-height-base);
}

@media (max-width: 700px) {
  .t-b-64,
  .t-r-64 {
    font-size: var(--font-size-title-headline);
  }

  .t-b-40 {
    font-size: var(--font-size-title-large);
    line-height: var(--line-height-medium);
  }

  .t-b-36 {
    font-size: var(--font-size-title-big);
    line-height: var(--line-height-medium);
  }

  .t-b-26,
  .t-r-26 {
    font-size: var(--font-size-title-medium);
  }

  .t-b-24 {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-heading);
  }

  .t-r-24 {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-heading);
  }

  .t-b-20 {
    font-size: var(--font-size-regular);
    line-height: var(--line-height-heading);
  }

  .t-r-20 {
    font-size: var(--font-size-regular);
    line-height: var(--line-height-heading);
  }

  .t-b-16 {
    font-size: var(--font-size-small);
    line-height: var(--line-height-heading);
  }

  .t-r-16 {
    font-size: var(--font-size-small);
    line-height: var(--line-height-heading);
  }
}

.t-center {
  text-align: center;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  /* Main color variables */
  --blue: #3dabf7;
  --deep-blue: #159eff;
  --black-blue: #0e1d27;
  --green: #02cc9b;
  --deep-green: #00bb8c;
  --white: #fff;
  --black: #212121;
  --gray: #ecf1f4;
  --deep-gray: #8494a1;
  --purple: #c3a3e9;

  /* Box shadow */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);

  /* Typography variables  */
  --font-size-46: 2.875rem; /* 46px */
  --font-size-title-headline: 2.5rem; /* 40px */
  --font-size-title-large: 2.25rem; /* 36px */
  --font-size-title-big: 1.875rem; /* 30px */
  --font-size-26: 1.625rem; /* 26px */
  --font-size-title-medium: 1.5rem; /* 24px */
  --font-size-22: 1.375rem; /* 22px */
  --font-size-medium: 1.25rem; /* 20px */
  --font-size-regular: 1.125rem; /* 18px */
  --font-size-base: 1rem; /* 16px */
  --font-size-small: 0.875rem; /* 14px */

  --line-height-base: 1.4;
  --line-height-small: 1;
  --line-height-heading: 1.2;
  --line-height-medium: 1.1;

  /* Width container */
  --container: 1200px;
  --base-padding: 30px;
  --mobile-padding: 10px;

  /* z-index */
  --z-index-1: 1;
  --z-index-2: 2;
  --z-index-3: 3;
  --z-index-4: 4;
  --z-index-5: 5;
  --z-index-11: 11;
}

/* Adaptive width
use
1200px
1000px
700px
500px
400px
340px
*/

/* Main layout */
.main-layout {
  position: relative;
  width: 100%;
  max-width: var(--container);
  min-height: 60vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  padding: 40px 0 100px 0;
}

#page {
  background-color: var(--deep-gray);
}

@media (max-width: 1200px) {
  .main-layout {
    padding: 60px var(--base-padding);
  }
}

@media (max-width: 1000px) {
  .main-layout {
    row-gap: 60px;
  }
}

@media (max-width: 500px) {
  .main-layout {
    padding: 60px var(--mobile-padding);
  }
}

/* Container */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1170px;
}

/* Loader */
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.loader {
  width: 50px;
  height: 50px;
  animation: rotate 1s linear infinite;
}

.loader-path {
  stroke: var(--blue);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -125;
  }
}

/* Header */
.header {
  width: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0px;
  background-color: var(--white);
  border-bottom: 2px solid var(--gray);
  z-index: var(--z-index-11);
  transition: all 0.3s ease-in;
}

.header.visible {
  opacity: 1;
}

.header__container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 90px;
}

.logo {
  font-size: 24px;
}

.nav {
  display: flex;
}

.nav__list {
  display: flex;
  gap: 60px;
  list-style: none;
  align-items: center;
}

.nav__list .link-button {
    color: var(--white) !important;
    padding: 8px 18px;
}

.nav__link {
  color: var(--blue) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav__link:hover {
  color: var(--black) !important;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: var(--z-index-3);
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: var(--blue);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  opacity: 0;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  margin-top: 80px;
}

.nav__mobile.open {
  opacity: 1;
  left: 0;
}

.nav__mobile__wrapper {
  width: 300px;
  height: 100%;
  margin-left: auto;
  background-color: var(--black-blue);
  padding: 20px;
}

.nav__mobile__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav__mobile__item a{
  color: var(--white) !important;
}

@media (max-width: 1200px) {
  .header {
    padding: 17px var(--base-padding);
  }
  .header__container {
    padding: 0;
  }
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav__mobile {
    display: block;
  }
}

/* Button */
.link-button {
  background: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black-blue) !important;
  font-weight: 400;
  font-size: var(--font-size-base);
  border-radius: 10px;
  width: max-content;
  padding: 12px 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: fit-content;
}

.link-button:hover {
  background-color: var(--deep-green);
  color: var(--white) !important;
}

.link-button.blue {
  background: var(--blue);
  color: var(--white) !important;
}

.link-button.blue:hover {
  background: var(--deep-blue);
}

.link-button.outline {
  color: var(--white) !important;
  background: var(--main);
  border: 1px solid var(--white);
  transition: all 0.2s ease;
}

.link-button.outline:hover {
  color: var(--main) !important;
  background: var(--white);
  transition: all 0.2s ease;
}

.link {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  color: var(--blue) !important;
}

.button-icon {
  display: flex;
  gap: 8px;
  padding: 8px 20px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  font-weight: 700;
  border-radius: 50px;
  width: fit-content;
  cursor: pointer;
}

.button-icon.green {
  color: var(--main-2);
  border: 1px solid var(--primary);
}

.button {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--main-2);
  font-size: var(--font-size-base);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.w-100 {
  width: 100%;
}

.button.active {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.section-title {
  display: flex;
}

.section-title::after {
  content: "";
  border-bottom: 2px solid var(--secondary-3);
  margin-left: 20px;
  display: block;
  width: 100%;
}

.section-title .t-b-36 {
  flex-shrink: 0;
}

@media (max-width: 400px) {
  .section-title::after {
    display: none;
  }

  .section-title .t-b-36 {
    width: 100%;
    text-align: center;
    flex-shrink: inherit;
  }
}

.main-block {
  width: 100%;
  height: 660px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.main-block::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(https://disk.yarar.ru/international.goodsurfing.org/assets/img/images/main-block-image.jpeg) center center;
  background-size: cover;
  z-index: -1;
  filter: blur(var(--blur, 0px));
  transition: filter 0.5s ease-out;
}

.main-block::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

.main-block h1 {
  font-weight: 700;
  font-size: var(--font-size-46);
}

.main-block p {
  font-weight: 500;
  font-size: var(--font-size-title-medium);
}

.main-block h1,
.main-block p {
  text-shadow: 0 4px 20px rgb(0 0 0 / 30%);
  text-align: center;
  color: var(--white);
}

.main-block .button-link,
.main-block__date {
  box-shadow: var(--shadow);
}

.main-block__btns {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-block__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--z-index-1);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.main-block__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.main-block__date {
  background-color: var(--purple);
  padding: 10px 24px;
  border-radius: 70px;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .main-block {
    height: 760px;
  }
  .main-block h1 {
    font-size: var(--font-size-title-headline);
  }
  .main-block p {
    font-size: var(--font-size-22);
  }
  .main-block__btns {
    flex-direction: column;
  }
}

.popup {
  border: none;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  margin: auto;
  outline: none;
}

.popup::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.popup.gallery {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  max-width: none;
  width: auto;
}

.popup.gallery .popup-content {
  width: fit-content;
  margin: 0 auto;
}

.popup.gallery img {
  width: 100%;
  height: 100%;
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

.popup .popup-content {
  padding: 0;
}

.popup-content {
  padding: 20px;
}

.popup-content p {
  font-weight: 400;
  padding-top: 10px;
}

.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
}

.popup-content input {
  padding: 12px 8px;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: var(--font-size-regular);
  outline: none;
  transition: all 0.3 ease;
}

.popup-content input:focus {
  border: 2px solid var(--blue);
}

.popup-content button {
  background-color: var(--blue);
  border-radius: 8px;
  color: var(--white);
  font-size: var(--font-size-regular);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-content button:hover {
  background-color: var(--deep-blue);
}

.popup-content-success.hidden {
  display: none;
}

/* .footer {
  width: 100%;
  background-color: var(--black-blue);
}

.footer__wrapper {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-policy {
  font-size: 12px;
  font-weight: 500;
  color: var(--deep-gray);
  margin-top: auto;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer p {
  color: var(--white);
  font-size: 11px;
}

.footer-left {
  max-width: 380px;
}

@media (max-width: 1200px) {
  .footer__wrapper {
    padding-left: var(--base-padding);
    padding-right: var(--base-padding);
  }
}

@media (max-width: 400px) {
  .footer__wrapper {
    flex-direction: column;
  }
  .footer-social {
    justify-content: flex-start;
    padding-bottom: 10px;
  }
} */


.footer {
  padding-top: 40px;
  padding-bottom: 24px;

  padding-left: 300px;
  padding-right: 300px;

  background-color: #0E1D27;
}

.footer__container {
  display: flex;
  justify-content: space-between;
}

.footer__info {
  display: flex;
  flex-direction: column;

  margin-right: 215px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.footer__logo .change__language {
  color: var(--color-white);
  margin-left: 40px;
}

.social {
  display: flex;
  align-items: center;
}

.social__item {
  margin-right: 18px;
  margin-bottom: 16px;
}

.social__item img {
  width: 24px;
  height: 24px;
  max-width: max-content;
}

.social__item:last-child {
  margin-right: 0;
}

.write-us {
  color: var(--deep-gray);
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 171%;
}

.footer__menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu__item {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-weight: 500;
  color: var(--white);
  font-size: 1.125rem;
  line-height: 122%;

  margin-bottom: 26px;
}

.footer__links {
  display: flex;
  flex-direction: column;
}

.footer__link {
  color: var(--deep-gray) !important;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 167%;
  text-decoration-line: underline;
}

@media (max-width: 1200px) {
  .footer {
    padding-left: 120px;
    padding-right: 120px;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
  }

  .footer__info {
    margin: 40px 0;
  }

  .footer__menu {
    flex-wrap: wrap;
  }

  .menu__item {
    margin-bottom: 30px;
  }
}

@media (max-width:700px) {
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer__logo {
    flex-direction: column;
  }

  .footer__info {
    align-items: center;
  }

  .footer__logo .change__language {
    margin: 10px 0;
  }

  .footer__menu {
    flex-direction: column;
    align-items: center;
  }

  .menu__item {
    text-align: center;
  }
}

.copyright {
  background-color: #0E1D27;
  color: var(--deep-gray);

  display: flex;
  justify-content: center;

  padding-top: 15px;
  padding-bottom: 40px;

  border-top: 0.5px solid #8494A1;
}





.description-block {
  display: flex;
  gap: 30px;
}

.description-block__logo {
  height: fit-content;
  width: 200px;
}

.description-block__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 700px) {
  .description-block {
    flex-direction: column;
  }
}

.achievements-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.achievements-block__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achievements-block__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.achievements-block__item h3 {
  font-size: 48px;
  color: var(--blue);
}

.achievements-block__item p {
  font-size: 20px;
}

.achievements-block__bot {
  width: 100%;
  border: 2px solid var(--blue) !important;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: var(--blue) !important;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.achievements-block__bot:hover {
  color: var(--white) !important;
  background-color: var(--blue);
}

@media (max-width: 700px) {
  .achievements-block__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .achievements-block__list {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.how-block__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0;
}

.how-block__item {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-block__item:nth-child(even) {
  flex-direction: column-reverse;
}

.how-block__item::before {
  position: absolute;
  content: "";
  bottom: 28px;
  right: -90px;
  width: 150px;
  height: 52px;
  background-image: url("https://disk.yarar.ru/international.goodsurfing.org/assets/img/icons/dash-arrow.svg");
  background-repeat: round;
}

.how-block__item:nth-child(even)::before {
  top: 50px;
  background-image: url("https://disk.yarar.ru/international.goodsurfing.org/assets/img/icons/dashed-arrow-even.svg");
}

.how-block__item:last-child::before {
  display: none;
}

.how-block__text {
  text-align: center;
}

.how-block__title {
  line-height: 150%;
  font-size: 1rem;
  font-family: var(--ff-r);
  font-weight: 400;
  color: #0e1d27;
}

.how-block__subtitle {
  font-size: var(--font-size-base);
  line-height: 120%;
  color: #212121;
  mix-blend-mode: normal;
  margin-top: 6px;
}

.how-block__image {
  margin: 10px 0;
}

@media (max-width: 1000px) {
  .how-block__item::before,
  .how-block__item:nth-child(even)::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .how-block__wrapper {
    flex-direction: column;
  }
  .how-block__item:nth-child(even) {
    flex-direction: column;
  }
}

.offers-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.offers-block__slider {
  position: relative;
  padding: 0 75px;
}

.offers-block__slider .swiper-container {
  overflow-x: hidden;
  padding: 20px 0;
}

.offers-block__slider .swiper-wrapper, .articles-block__slider .swiper-wrapper {
  align-items: stretch;
}

.offers-block__slider .swiper-slide, .articles-block__slider .swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--blue) !important;
}

.offer {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: var(--color-white);
  border: 1px solid #dfe6eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.offer__image {
  width: 100%;
  height: 226px;
  object-fit: cover;
}

.offer__text {
  margin: 22px 0;
}

.offer__title {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--black) !important;
  line-height: 122%;

  margin: 12px 0;

  transition: all 0.2s ease-in-out;
}

.offer__title:hover {
  text-decoration: underline;
}

.offer__text p {
  font-size: 0.875rem;
  color: #212121;

  mix-blend-mode: normal;
  opacity: 0.5;
}

.offer__location {
  margin-top: 12px;
}

.offer__type {
  margin-top: 8px;
}

.offer__info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.offer__info div {
  display: flex;
  align-items: center;
}

.offer__rating img {
  margin-right: 6px;
}

.offer__review p:first-child {
  margin-right: 4px;
}

.offer__sending p:first-child {
  margin-right: 4px;
}

@media (max-width: 500px) {
  .offers-block__slider {
    padding: 0;
  }
}

.what-get-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.what-get-block__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.what-get-block__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}

.what-get-block__item-title,
.what-get-block__item-text {
  text-align: center;
}

.what-get-block__item-title {
  font-weight: 500;
  font-size: var(--font-size-regular);
  line-height: 120%;
}

.what-get-block__item-text {
  font-weight: 400;
  font-size: var(--font-size-base);
  line-height: 130%;
}

@media (max-width: 700px) {
  .what-get-block__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .what-get-block__list {
    grid-template-columns: 1fr;
  }
}

.articles-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.articles-block__slider {
  position: relative;
  padding: 0 75px;
}

.articles-block__slider .swiper-container {
  overflow-x: hidden;
}

.article__image {
  object-fit: cover;
  width: 100%;
  height: 241px;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.article__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article__title {
  font-weight: 500;
  font-size: var(--font-size-regular);
  line-height: 130%;
  color: var(--black) !important;
}

.article__description {
  font-weight: 500;
  font-size: var(--font-size-small);
  line-height: 130%;
  color: var(--deep-gray);
}

.article__button {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--blue);
  border-radius: 10px;
  text-align: center;
  color: var(--blue) !important;
  font-weight: 400;
  font-size: var(--font-size-base);
  background-color: var(--white);
  transition: all 0.3s ease;
  margin-top: auto;
}

.article__button:hover {
  background-color: var(--blue);
  color: var(--white) !important;
}

@media (max-width: 500px) {
  .articles-block__slider {
    padding: 0;
  }
}

.faq-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-block__accordion {
  width: 100%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-radius: 10px;
  background-color: var(--gray);
  padding: 21px 36px;
}

.faq-item__title {
  background: var(--gray);
  font-size: 18px;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__icon {
  transition: transform 0.3s ease;
}

.faq-item__content {
  padding-top: 18px;
  font-size: 16px;
  color: var(--black);
  background: var(--gray);
  transition: height 0.3s ease-out, padding 0.3s ease-out;
}
