.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--bglight);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}

a {
  text-decoration: none;
  color: #121212;
  transition: all 0.3s ease-in;
}
a:hover {
  color: #F6C4DF;
}

input,
textarea {
  padding: 17px 20px;
  font-family: "Avenir Next Cyr";
  font-size: clamp(14px, 0 * 100vw + 14px, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
  border-radius: 100px;
  background-color: var(--bglight);
  border: 0;
  outline: 0;
  transition: 0.5s ease;
  border: 1px solid transparent;
  resize: none;
  width: 100%;
  height: 100%;
}
input.error,
textarea.error {
  border: 1px solid red;
}

textarea {
  border-radius: 25px;
}

ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}
ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

p {
  margin-bottom: 15px;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #20395E;
  margin-bottom: 50px;
}

*::-webkit-scrollbar {
  width: 3px;
}

*::-webkit-scrollbar-track {
  background: var(--primary);
  border: 1px solid transparent;
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 3px solid var(--primary);
  border-radius: 1px;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0 * 100vw + 16px, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--head);
}
.breadcrumbs span {
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0 * 100vw + 16px, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--head);
}
.breadcrumbs span.current-item {
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0 * 100vw + 16px, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--accent2);
}
.breadcrumbs a.current-item span {
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0 * 100vw + 16px, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--accent2);
}

.container {
  max-width: 1550px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container-wide {
  max-width: 1880px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  all: unset;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  color: #fff;
  background-color: var(--primary);
  transition: 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 40px;
  border-radius: 100px;
  cursor: pointer;
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0 * 100vw + 16px, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  flex-wrap: nowrap;
  white-space: wrap;
  
}
.btn:hover {
  background-color: var(--maintext);
  color: #fff;
}
.btn.white {
  background-color: #fff;
  color: var(--primary);
}
.btn.white:hover {
  background-color: var(--maintext);
  color: #fff;
}

#main,
#primary {
  min-height: 78vh;
}

.block__title {
  font-family: "Optima Cyr";
  font-size: clamp(24px, 0.015 * 100vw + 19.2px, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--head);
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
.block__title span {
  font-family: "Optima Cyr";
  font-size: clamp(24px, 0.015 * 100vw + 19.2px, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--accent2);
  position: relative;
}
.block__title span::before {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .block__title {
    margin-bottom: 20px;
  }
}
/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  text-align: center;
}
.navigation.pagination .page-numbers {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C0130;
  margin: 0 10px;
}
.navigation.pagination .page-numbers.current {
  font-weight: 750;
}
.navigation.pagination a.prev {
  margin-right: 100px;
  margin-left: -100px;
}
.navigation.pagination a.next {
  margin-right: -100px;
  margin-left: 100px;
}

/*============ GO TO TOP=================*/
.go-to-top-btn {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}
.go-to-top-btn svg {
  position: relative;
  z-index: 999;
}
.go-to-top-btn:hover::before {
  opacity: 0;
}
.go-to-top-btn:hover::after {
  opacity: 1;
}
.go-to-top-btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--Accent-3, linear-gradient(282deg, #FFD8A6 0%, #EEB267 100%));
  opacity: 1;
  transition: 0.5s ease;
}
.go-to-top-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent2);
  opacity: 0;
  transition: 0.5s ease;
}

#btn-top-destination {
  position: absolute;
  top: 0;
  right: 0;
}

/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0%;
  z-index: 999;
}
#header .header__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#header .header__bg {
  background-color: #fff;
  border-radius: 0px 0px 20px 20px;
}
#header .header__content {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#header .header__content ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 50px;
}
#header .header__content ul li {
  margin: 0;
  padding: 0;
}
#header .header__content ul li a {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
  transition: 0.3s ease;
}
#header .header__content ul li a:hover {
  color: var(--primary);
}
#header .header__logo {
  max-width: 160px;
  max-height: 100px;
}
#header .header__logo.title {
  font-size: 32px;
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 28px, 28px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
#header .header__logo img {
  width: 100%;
  height: 100%;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .header__contacts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#header .header__phone {
  font-family: "Optima Cyr";
  font-size: clamp(18px, 0.00375 * 100vw + 16.8px, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--maintext);
  transition: 0.3s ease;
}
#header .header__phone:hover {
  color: var(--primary);
}
#header .header__btn {
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0 * 100vw + 16px, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--primary);
  cursor: pointer;
  transition: 0.3s ease;
}
#header .header__btn:hover {
  color: var(--maintext);
}

@media only screen and (max-width: 1500px) {
  #header .header__content ul {
    gap: 20px;
  }
}
@media only screen and (max-width: 1300px) {
  #header .header__content ul {
    display: none;
  }
  #header .header__content .burger.open_menu {
    display: flex !important;
  }
}
@media only screen and (max-width: 480px) {
  #header {
    background-color: #fff;
    border-radius: 0px 0px 20px 20px;
  }
  #header .header__content {
    min-height: unset;
    gap: 10px;
  }
  #header .container {
    padding: unset;
  }
  #header .header__contacts {
    padding: 10px 0;
    width: 100%;
  }
}

@media (max-width: 420px) {
  #header .header__logo.title {
    font-size: 20px;
    max-width: 100px;
  }
  #header .header__right {
    gap: 5px;
  }
  #header .header__phone {
    font-size: 16px;
  }
  #header .header__btn {
    font-size: 14px;
  }
  #header .header__logo {
    max-width: 100px;
  }
}
/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
#header .burger.open_menu span {
  background-color: var(--accent2);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  pointer-events: none;
}
#header .burger.open_menu.clicked {
  background-color: var(--accent2);
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--accent1);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--accent2);
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu a:hover {
  color: var(--accent2);
}
#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}
#header #mobile-mnu .menuTop li a:hover {
  color: var(--accent2);
}
#header #mobile-mnu .menuTop li.active a {
  color: var(--accent2);
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
#header #mobile-mnu .adresses__holder p {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--accent2);
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--accent2);
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}
#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease-in;
  cursor: pointer;
}
#header #mobile-mnu .soc__holder .soc__item svg path {
  fill: var(--head);
  transition: 0.3s ease;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: var(--head);
}
#header #mobile-mnu .soc__holder .soc__item:hover svg path {
  fill: #fff;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  margin-top: 40px;
}
#footer .footer__bg {
  background-color: #fff;
  border-radius: 20px 20px 0px 0px;
}
#footer .footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}
#footer .footer__policy {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
  transition: 0.3s ease;
}
#footer .footer__policy:hover {
  color: var(--primary);
}
#footer .footer__grampus {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Avenir Next Cyr";
  font-size: clamp(14px, 0 * 100vw + 14px, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
  transition: 0.3s ease;
}
#footer .footer__grampus svg {
  width: 111px;
}
#footer .footer__grampus svg path {
  transition: 0.3s ease;
  fill: var(--head);
}
#footer .footer__grampus:hover {
  color: var(--primary);
}
#footer .footer__grampus:hover svg path {
  fill: var(--primary);
}
.example-holder a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
}
.example-holder a:hover {
  color: var(--primary);
}
.glogo {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--bglight);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}
.glogo:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform .7s ease-in;
  background: linear-gradient(90deg, #fe6604 10%, #ee0a76 30%, #ee0a76 60%, #fe6604 101%) repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
.glogo:hover:before {
	animation-name: unset;
	transform: translateX(0);
}

#footer .rights {
  font-family: "Avenir Next Cyr";
  font-size: clamp(14px, 0 * 100vw + 14px, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}

@keyframes slideUp {
	0% {
		transform: translateX(-100%);		
	}
	50% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);		
	}
}

@media only screen and (max-width: 1000px) {
  #footer .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media only screen and (max-width: 480px) {
  #footer .footer__policy,
  #footer .footer__copyright {
    font-size: 16px;
  }
}
/*============ 404 ===============*/
.error .error__bg {
  min-height: 780px;
  background-color: #fff;
  border-radius: 20px;
  padding: 90px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: 1920px 100%;
  background-position: center bottom;
}
.error .error__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}
.error .error__num {
  font-size: clamp(120px, 0.14375 * 100vw + 74px, 350px);
  font-style: normal;
  font-weight: 700;
  font-family: "Optima Cyr";
  font-size: 350px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--primary);
}
.error .error__num span.half {
  font-size: clamp(120px, 0.14375 * 100vw + 74px, 350px);
  font-style: normal;
  font-weight: 700;
  font-family: "Optima Cyr";
  font-size: 350px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
.error .error__num span.full {
  font-size: clamp(120px, 0.14375 * 100vw + 74px, 350px);
  font-style: normal;
  font-weight: 700;
  font-family: "Optima Cyr";
  font-size: 350px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}
.error .error__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error .error__title {
  font-family: "Optima Cyr";
  font-size: clamp(28px, 0.01625 * 100vw + 22.8px, 54px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--head);
}
.error .error__desc {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
  margin-top: 10px;
  width: 60%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .error .error__num {
    font-size: 150px;
    height: auto;
  }
  .error .error__bg {
    padding: 20px 0px;
    min-height: unset;
  }
  .error .error__desc {
    width: 100%;
  }
}
/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal .close-modal {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

#modal-callback {
  max-width: 730px;
  width: 100%;
  padding: 50px;
  border-radius: 10px;
  background-color: #fff;
}
#modal-callback .form__title {
  font-family: "Optima Cyr";
  font-size: clamp(24px, 0.015 * 100vw + 19.2px, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--head);
  margin-bottom: 15px;
}
#modal-callback .form__desc {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
}
#modal-callback .form__inputs-all {
  display: grid;
  grid-template-columns: 39% 59%;
  gap: 20px;
  margin-top: 30px;
}
#modal-callback .form__inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#modal-callback .form__textarea {
  width: 100%;
  height: 100%;
}
#modal-callback .form__bottom {
  display: grid;
  grid-template-columns: 55% 43%;
  gap: 20px;
  margin-top: 45px;
  align-items: center;
}
#modal-callback .form__bottom .btn {
  width: auto;
}
#modal-callback .form__policy {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
}
#modal-callback .form__policy a {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--primary);
}

@media only screen and (max-width: 767px) {
  #modal-callback .form__bottom {
    grid-template-columns: repeat(1, 1fr);
  }
  #modal-callback .form__inputs-all {
    grid-template-columns: repeat(1, 1fr);
  }
  #modal-callback {
    padding: 25px;
  }
}
#modal-success,
#modal-error {
  max-width: 700px;
  width: 100%;
  padding: 70px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
#modal-success .title,
#modal-error .title {
  font-family: "Optima Cyr";
  font-size: clamp(20px, 0.0075 * 100vw + 17.6px, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--head);
}
#modal-success .subtitle,
#modal-error .subtitle {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
  margin-top: 15px;
  margin-bottom: 30px;
}

/* ============= PRIVACY =========== */
.privacy-policy h1.page-title {
  font-family: "Optima Cyr";
  font-size: clamp(20px, 0.0075 * 100vw + 17.6px, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--head);
}
.privacy-policy p {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4,
.privacy-policy h5,
.privacy-policy h6 {
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--head);
}

/* ============= ANIMS =========== */
@keyframes rotating {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}/*# sourceMappingURL=main.css.map */