@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@font-face {
  font-family: "harmonia-regular";
  src: url(../../fonts/HarmoniaSansProCyr-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "harmonia-semi";
  src: url(../../fonts/HarmoniaSansProCyr-SemiBd.woff2) format("woff2");
  font-weight: 250;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "stagsans-medium";
  src: url(../../fonts/StagSans-Medium.woff2) format("woff2");
  font-weight: 250;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "stagsans";
  src: url(../../fonts/StagSans-SemiBold.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "stagsans-thin";
  src: url(../../fonts/StagSans-Thin.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

:active,
:hover,
:focus {
  outline: 0;
  outline-offset: 0;
}

body {
  font-family: "harmonia-regular", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: black;
  background-color: white;
  overflow: auto;
  background: white;
  background-size: 400% 400%;
  background-attachment: fixed;
  height: 100%;
}

li {
  list-style: none;
}

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

.title {
  font-family: "stagsans", sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  margin-bottom: 0.5rem;
  cursor: default;
  transition: 0.4s;
  padding: 5rem 0 0 5rem;
}

.title-blue:hover {
  color: #0C73A7;
}

.title-pink {
  color: white;
}
.title-pink:hover {
  color: #DE507C;
}

.title-orange {
  color: white;
}
.title-orange:hover {
  color: #EF9226;
}

.title-green {
  color: white;
}
.title-green:hover {
  color: #61B02E;
}

.pink {
  color: #DE507C;
}

.back-pink {
  background-color: #DE507C;
}

.orange {
  color: #EF9226;
}

.back-orange {
  background-color: #EF9226;
}

.green {
  color: #61B02E;
}

.back-green {
  background-color: #61B02E;
}

.blue {
  color: #0C73A7;
}

.font-weight {
  font-family: "harmonia-semi", sans-serif;
  font-size: 18px;
}

.font-bold {
  font-weight: 800;
}

.none {
  display: none;
}

.show {
  display: block;
}

.btn {
  align-self: flex-end;
  margin: 0.5rem 0 0 0;
  width: 9rem;
  text-transform: uppercase;
  color: white;
  font-family: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  text-transform: uppercase;
  border-radius: 60px;
  text-decoration: none;
  transition: background-color 0.3s linear;
  cursor: pointer;
  animation: animate_grow 2s infinite;
}
.btn:hover {
  opacity: 80%;
}

@keyframes animate_grow {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pink-btn {
  background-color: #F77E99;
  border: 2px solid #F77E99;
}

.orange-btn {
  background-color: #EF9226;
  border: 2px solid #EF9226;
}

.green-btn {
  background-color: #61B02E;
  border: 2px solid #61B02E;
}

.blue-btn {
  background-color: #0C73A7;
  border: 2px solid #0C73A7;
}
.blue-btn:hover {
  background-color: #085a84;
}

.buttle {
  height: 100vh;
}

#mobile {
  display: none;
}

.brand-back {
  background: no-repeat url("../../img/brand.jpg");
  background-position: 85% 100%;
  background-size: 50%;
}

@media screen and (max-width: 810px) {
  body {
    font-size: 14px;
  }
  .title {
    font-size: 32px;
    padding: 3rem 0 0 2rem;
    margin-top: 2rem;
  }
  .font-weight {
    font-size: 16px;
  }
  .brand-back {
    background-position: 50% 80%;
    background-size: 100%;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 12px;
  }
  .title {
    text-align: center;
    font-size: 24px;
    padding: 0;
    margin-top: 5rem;
  }
  .font-weight {
    font-size: 15px;
  }
  #mobile {
    display: block;
  }
}
.header {
  width: 90%;
  position: fixed;
  top: 0;
  left: 5%;
  right: 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 500;
  align-items: center;
  padding: 1rem 0;
  margin: auto;
}

.header__nav {
  position: fixed;
  right: 1%;
  top: 1%;
  width: 100%;
}

.header__item {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}
.header__item li {
  margin: 0 0.8rem;
  transition: 0.1s;
}
.header__item a {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: rgb(0, 0, 0);
}
.header__item a:hover {
  color: #0C73A7;
}

.header__logo {
  display: block;
  cursor: pointer;
}
.header__logo img {
  max-width: 7rem;
}

.header__contacts {
  display: flex;
  flex-direction: column;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  border: 1.7px solid #0C73A7;
  text-align: center;
  transition: 0.4s;
  width: 12rem;
}
.header__contacts:hover {
  background-color: rgba(12, 115, 167, 0.2549019608);
}
.header__contacts a {
  font-size: 14px;
  font-weight: 600;
  color: #0C73A7;
}
.header__contacts a:hover {
  color: #ffffff;
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}
.messageAnimation {
  display: none;
  position: fixed;
  bottom: 7rem;
  right: 5rem;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  z-index: 99;
  border: none;
  outline: none;
  background-image: url("../../img/up.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  opacity: 60%;
  background-color: #0C73A7;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
  transform: translatey(0px);
  animation: float 3s ease-in-out infinite;
}

.section-btn {
  display: block;
  position: fixed;
  background-image: url("../../img/back-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  top: 1.8rem;
  left: 5rem;
  z-index: 99;
  border: none;
  outline: none;
  opacity: 100%;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
  transform: translatey(0px);
  animation: float 3s ease-in-out infinite;
}

@media screen and (max-width: 810px) {
  .header {
    padding: 1.5rem 0 2rem 0;
    position: static;
    width: 96%;
  }
  .header__nav {
    position: static;
  }
  .section-btn {
    left: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .header {
    display: none;
  }
  .section-btn {
    background-size: 40%;
  }
  .messageAnimation {
    right: 2rem;
    bottom: 10rem;
  }
  .header__contacts {
    width: 60%;
    margin: 2rem auto;
    padding: 0.5rem;
    text-align: center;
    background-color: #0C73A7;
  }
  .header__contacts a {
    padding-top: 0.4rem;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
  }
}
.main-box {
  text-align: center;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  transition: 0.5s;
}
.main-box h1 {
  text-transform: uppercase;
  margin: 4rem auto 0 auto;
  cursor: default;
}

.page {
  position: relative;
}

.page-video {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-video .video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.content-video {
  position: relative;
  z-index: 2;
}

.main-box__title {
  font-family: "stagsans-thin", sans-serif;
  font-size: 26px;
  color: #000000;
}

.main-box__subtitle {
  font-family: "stagsans", sans-serif;
  font-size: 44px;
  color: #000000;
}

.main-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
  margin-top: 3rem;
}

/* #active-buttle {
  max-width: 15.3rem;
} */

.main-content__elem {
  cursor: pointer;
  animation: animate_grow 1.5s ease-in-out;
  max-width: 13rem;
  transition: 0.3s;
}
.main-content__elem:hover {
  transform: scale(1.05);
}

@keyframes animate_grow {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@media screen and (max-width: 810px) {
  .main-box__title {
    font-size: 36px;
  }
  .main-box__subtitle {
    font-size: 30px;
    font-weight: 500;
  }
  .main-box {
    text-align: center;
  }
  .main-box h1 {
    margin: 1.5rem auto 0 auto;
  }
  .main-content {
    gap: 0;
    margin: 7rem auto 4rem auto;
  }
  .main-content__elem {
    animation: animate_grow 2.5s infinite;
    max-width: 30%;
  }
  /* #active-buttle {
    max-width: 35.8%;
  } */
}
@media screen and (max-width: 480px) {
  .main-box__title {
    font-size: 24px;
  }
  .main-box__subtitle {
    font-size: 20px;
    font-weight: 500;
  }
  .main-box h1 {
    margin: 4rem auto 2rem auto;
  }
  .main-content {
    margin: 7rem auto;
    padding-bottom: 0;
  }
  .main-content__elem {
    max-width: 31%;
  }
  /* #active-buttle {
    max-width: 36%;
  } */
}
.brand {
  display: flex;
  font-size: 16px;
  flex-direction: column;
  border-radius: 20px;
  border: 1.7px solid rgba(12, 115, 167, 0.7725490196);
  color: rgb(0, 0, 0);
  padding: 2rem;
  width: 50%;
  transition: 0.4s;
  margin: 2rem 0 0 3rem;
  transition: 0.2s;
}
.brand:hover {
  transform: scale(1.003);
}
.brand p {
  margin-top: 1rem;
}

.brand-title {
  font-family: "stagsans", sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  margin-bottom: 0.5rem;
  cursor: default;
  transition: 0.4s;
  padding: 5rem 0 0 5rem;
}

.brand-content {
  min-height: 100vh;
}

.brand__text_bold {
  font-weight: 700;
}

.brand__btn {
  align-self: flex-end;
  margin: 2rem 0 0 0;
  width: 9rem;
  text-transform: uppercase;
  color: white;
  background-color: #0C73A7;
  font-family: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  text-transform: uppercase;
  border-radius: 60px;
  text-decoration: none;
  border: 2px solid #0C73A7;
  transition: background-color 0.3s linear;
  cursor: pointer;
  animation: animate_grow 2.5s infinite;
}
.brand__btn:hover {
  color: black;
  background-color: #8ec1db;
}

@media screen and (max-width: 810px) {
  .brand {
    width: 82%;
    padding: 1rem 2rem;
    transition: 0.4s;
    margin: 3rem auto;
  }
  .brand p {
    margin-top: 1rem;
  }
  .brand-title {
    font-size: 32px;
  }
  .brand-title {
    text-align: center;
    font-size: 24px;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .brand {
    width: 90%;
    padding: 2rem;
    margin: 1.5rem auto;
  }
  .brand-content {
    padding-bottom: 6rem;
  }
}
.pluses-box {
  margin: 1rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
  cursor: default;
  width: 85%;
}

.pluses-box__img {
  max-width: 4.5rem;
  transition: 0.2s;
  cursor: pointer;
}
.pluses-box__img:hover {
  transform: scale(1.02);
}

.pluses-box__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.8rem;
  padding: 1rem;
}

@media screen and (max-width: 810px) {
  .pluses-box__img {
    max-width: 3.5rem;
  }
  .pluses-box {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .pluses-box__img {
    max-width: 2rem;
  }
  .pluses-box {
    margin: 1rem auto;
    gap: 0;
    width: 100%;
  }
  .pluses-box__item {
    align-items: center;
    gap: 0.2rem;
    padding: 0.7rem;
  }
}
.content-margin {
  margin: 1rem 5rem;
}

.immuno {
  background: linear-gradient(170deg, #F5758F, #FFCCD4, #FFEBF0, #FFABC1, #F77E99);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  min-height: 100vh;
}

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

.immuno-text {
  width: 90%;
  cursor: default;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: baseline;
  gap: 0.4rem;
  margin: 2rem 2rem 4rem 5rem;
}

.content__elem {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-bottom: 3rem;
  align-items: center;
}
.content__elem img {
  max-width: 5.5rem;
  margin-bottom: 0.7rem;
  transition: 0.2s;
  cursor: pointer;
}
.content__elem img:hover {
  transform: scale(1.02);
}
.content__elem p {
  cursor: default;
}

.btl-show {
  display: none;
}

.content__img {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 10rem;
}
.content__img img {
  cursor: pointer;
  max-width: 100%;
  transition: 0.3s;
}
.content__img img:hover {
  transform: scale(1.04);
}

@media screen and (max-width: 810px) {
  .content-margin {
    margin: 1rem 2rem;
  }
  .content {
    font-size: 13px;
    padding: 2rem 0 0 0;
    width: 90%;
    gap: 0.5rem 1.5rem;
    margin: 3rem 0rem 5rem 2rem;
    justify-items: center;
  }
  .content__img img {
    max-width: 100%;
  }
  .content__elem {
    margin-bottom: 0;
    width: 100%;
  }
  .content__elem img {
    max-width: 4.5rem;
    align-self: center;
    margin-bottom: 0.7rem;
  }
}
@media screen and (max-width: 480px) {
  .immuno {
    display: flex;
    flex-direction: column;
  }
  .content {
    font-size: 12px;
    padding: 0;
    margin: 2rem auto 0 auto;
    justify-items: center;
    width: 95%;
  }
  .content__img {
    display: none;
  }
  .btl-show {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .btl-show img {
    max-width: 50%;
    margin-top: 3rem;
  }
  .content-margin {
    margin: 1rem auto;
    text-align: center;
  }
  .text-padding {
    padding: 0 1rem;
  }
  .mob-section-boxtitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .immuno-text {
    width: 100%;
  }
}
.active {
  background: linear-gradient(170deg, #FACB55, #FFE9AE, #FFF9EC, #FBC260, #EF9226);
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.active-content__img {
  margin-bottom: 2rem;
  text-align: center;
  margin-top: 10rem;
}
.active-content__img img {
  cursor: pointer;
  max-width: 100%;
  transition: 0.5s;
}
.active-content__img img:hover {
  transform: scale(1.02);
}

.active-text {
  width: 100%;
  cursor: default;
}

@media screen and (max-width: 810px) {
  .active-content__img img {
    max-width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .active-content__img {
    display: none;
  }
  .active {
    display: flex;
    flex-direction: column;
  }
}
.detox {
  background: linear-gradient(170deg, #85C752, #CDEAB0, #F3FBE6, #C0E667, #61B02E);
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.detox-content__img {
  margin-bottom: 2rem;
  margin-top: 10rem;
  text-align: center;
}
.detox-content__img img {
  cursor: pointer;
  max-width: 100%;
  transition: 0.5s;
}
.detox-content__img img:hover {
  transform: scale(1.02);
}

@media screen and (max-width: 810px) {
  .detox-content__img img {
    max-width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .detox {
    flex-direction: column;
  }
  .detox-content__img {
    display: none;
  }
}
.about {
  display: flex;
  flex-direction: column;
  border: 1.7px solid #0c73a7;
  color: rgb(0, 0, 0);
  border-radius: 14px;
  padding: 2rem 4rem;
  width: 80%;
  height: 100%;
  transition: 0.4s;
  margin: auto;
  text-align: left;
}
.about:hover {
  border: 1.7px solid rgba(12, 115, 167, 0.5098039216);
}
.about p {
  margin-top: 1rem;
}

.about__imgs {
  text-align: center;
  width: 50%;
}

.about__imgs_item {
  max-width: 25%;
  cursor: pointer;
  transition: 0.5s;
}
.about__imgs_item:hover {
  transform: scale(1.03);
}

.modal-title {
  font-family: "stagsans", sans-serif;
  text-transform: uppercase;
  font-size: 34px;
  text-align: left;
  padding-top: 2rem;
  padding-bottom: 1rem;
  padding-left: 5rem;
  padding-right: auto;
  cursor: default;
}

@media screen and (max-width: 810px) {
  .about {
    width: 90%;
    padding: 1rem 2rem;
  }
  .modal-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .mob-none {
    display: none;
  }
  .about {
    font-size: 14px;
    padding: 1.5rem;
  }
  .modal-title {
    padding-left: 2rem;
    font-size: 24px;
  }
}
.modal__backdrop {
  overflow: auto;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  height: 100%;
  pointer-events: none;
  background-color: rgba(12, 115, 167, 0.4235294118);
  transition: 0.3s ease-in;
  backdrop-filter: blur(4px);
}

.modal__content {
  margin: 2rem auto;
  position: relative;
  width: 70%;
  transition: opacity 0.3s ease-in;
  background-clip: padding-box;
  border-radius: 16px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
  background-color: white;
  background-color: white;
  text-align: center;
}

.modal__show .modal__backdrop,
.modal__show .modal__content {
  opacity: 1;
  z-index: 1050;
  pointer-events: auto;
  overflow-y: auto;
}

.modal__btn-close {
  margin: 0.5em 1em 0 0;
  float: right;
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #0C73A7;
  opacity: 0.5;
  text-decoration: none;
  transition: 0.3s;
}

.modal__btn-close:focus,
.modal__btn-close:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.9;
}

@media screen and (max-width: 810px) {
  .modal__content {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  .modal__content {
    width: 100%;
    margin: 3rem auto;
    border-radius: 0;
  }
}
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 2001;
}

.preloader__row {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: #0C73A7;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes preloader-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.animationMain {
  display: none;
  transform: translateX(-150%);
  animation: ani 1.5s forwards;
}

.animationButtle {
  display: none;
  transform: translateX(-150%);
  animation: ani3 1.5s forwards;
}

.animation {
  display: none;
  transform: translateX(-50%);
  animation: ani2 1.5s forwards;
}

@keyframes ani {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ani2 {
  0% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ani3 {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.logistics-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  color: white;
}

.logistics-content__item {
  background-color: #3b86ac;
  border-radius: 20px;
  padding: 3rem;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: baseline;
  margin: 3rem 0;
  gap: 1rem;
}
.footer h2 {
  font-family: "stagsans", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  cursor: default;
  transition: 0.4s;
  padding-bottom: 2.8rem;
}

.contacts {
  display: flex;
  width: 20rem;
  flex-direction: column;
  align-items: start;
  text-align: end;
}
.contacts a {
  margin-top: 0.1rem;
  font-weight: 600;
}
.contacts a:hover {
  color: #0C73A7;
}

.logos h2 {
  padding-top: 1rem;
}
.logos img {
  max-width: 8rem;
}

.logos-content {
  display: flex;
  flex-direction: row wrap;
  gap: 1rem;
  align-items: center;
}

.logos-content a {
    margin-top: 0.1rem;
    font-weight: 600;
}

@media screen and (max-width: 810px) {
  .logos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .logos-content h2 {
    padding-top: 0;
  }
  .logos-content img {
    max-width: 6rem;
  }
  .contacts {
    margin-left: 3rem;
    text-align: start;
  }
  .footer {
    justify-content: center;
  }
  .footer h2 {
    font-size: 20px;
  }
  .logos-content {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    width: 90%;
    margin: 2rem auto;
  }
  .footer h2 {
    font-size: 16px;
  }
  .logos-content {
    margin-right: 0.5rem;
  }
  .logos-content img {
    max-width: 3rem;
  }
  .contacts {
    margin-left: 0.5rem;
    text-align: start;
  }
}
.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-menu_button {
  position: fixed;
  top: 0.5rem;
  right: 1rem;
  z-index: 30;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.none {
  display: none;
}

.burger-menu_button {
  background-color: rgba(12, 115, 167, 0.1882352941);
}

.burger-menu_button:hover .burger-menu_lines {
  filter: brightness(0.7);
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  border-radius: 20px;
  position: absolute;
  width: 30px;
  height: 2.5px;
  background: #0C73A7;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -9px;
}

.burger-menu_lines::after {
  content: "";
  top: 9px;
}

.burger-menu_active .burger-menu_lines::before,
.burger-menu_active .burger-menu_lines::after,
.burger-menu_active .burger-menu_lines {
  background-color: #0C73A7;
}

.burger-menu_nav {
  position: fixed;
  padding-top: 1.5rem;
  text-align: center;
  top: 3.5rem;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100vh;
  width: 100%;
  background: linear-gradient(170deg, #0C73A7, #539ec3, #88b3c9, #095b85);
  overflow-y: auto;
  right: -100%;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_link {
  font-family: "stagsans", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  padding: 1rem;
  text-decoration: none;
  color: #ffffff;
}

.burger-menu_link:hover {
  filter: brightness(0.97);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  cursor: auto;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(255, 255, 255, 0.4549019608);
  backdrop-filter: blur(4px);
}

@media screen and (max-width: 480px) {
  .burger-menu {
    display: block;
  }
  .header__nav {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
