:root {
  --main-font: "Unbounded", sans-serif;
  --second-font: "IBM Plex Sans", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --blue: #15abda;
  --dark: #021115;
}

.elementor-page .header-container .container {
  max-width: 1510px;
  margin: auto;
  padding: 0 25px;
}

@media screen and (max-width: 1399px) {
  .elementor-page .header-container .container {
    max-width: 1225px;
  }
}

@media screen and (max-width: 1024px) {
  .elementor-page .header-container .container {
    padding: 0 25px;
  }
}

.white-button {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #ffffff;
  padding: 10px 15px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  font-family: var(--second-font);
}

.white-button img,
.white-button svg {
  width: 25px;
}

body {
  block-size: auto !important;
}
.menu-opened {
  position: fixed;
  transform: translate(0, -130vh);
  left: 0;
  top: 0;
  background-color: var(--dark);
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-height: 600px) and (orientation: landscape) {
  .menu-opened {
    transform: translate(0, -200vh);
  }
}

.menu-opened__back {
  background-image: url("../assets/menu/back.png");
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.header__menu-circle {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__circle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 50%;
  height: 1px;
  background-color: var(--white);
}

.header__circle-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1024px),
  (max-height: 700px) and (orientation: landscape) {
  .header__menu-circle {
    width: 33px;
    height: 33px;
  }
}

.menu-opened__large {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  height: auto;
  display: flex;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.menu-opened__large ul {
  width: 100%;
  padding-left: 0;
}

.menu-opened__large-li {
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-opened__large-li a {
  font-family: var(--main-font);
  font-size: 80px;
  font-weight: 250;
  line-height: 135px;
  text-align: left;
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.25s ease-in-out all;
  display: block;
}

.menu-opened__large-li a:hover {
  color: var(--blue);
}

.menu-opened__large-top a {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.menu-opened__large-top a:hover span {
  color: var(--blue);
}

.menu-opened__large-top span:first-child {
  font-family: var(--main-font);
  font-size: 80px;
  font-weight: 700;
  line-height: 135px;
  text-align: left;
  color: var(--white);
  text-transform: uppercase;
  transition: 0.25s ease-in-out all;
}

.menu-opened__large-top span:last-child {
  font-family: var(--main-font);
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  text-align: left;
  max-width: 520px;
  color: var(--white);
  display: block;
  text-transform: uppercase;
  transition: 0.25s ease-in-out all;
}

.menu-opened__large-li:last-child {
  border: none;
}

.menu-opened__footer {
  position: relative;
  z-index: 1;
  width: 100%;
  height: fit-content;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.menu-opened__footer-container {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 35px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 35px;
}

.menu-opened__button {
  color: var(--black) !important;
  font-weight: 500;
  background-color: var(--white);
  transition: 0.25s ease-in-out all;
  font-family: var(--main-font);
}

.menu-opened__button svg path {
  stroke: var(--black);
  transition: 0.25s ease-in-out all;
}

.menu-opened__button:hover svg path {
  stroke: var(--white);
}

.menu-opened__footer-li {
  text-align: left;
  max-width: 220px;
}

.menu-opened__footer-ul {
  display: flex;
  gap: 75px;
  padding-left: 0;
}

.menu-opened__footer-li a {
  font-family: var(--main-font);
  font-size: 35px;
  font-weight: 400;
  line-height: 55px;
  color: var(--white);
  transition: 0.25s ease-in-out all;
}

.menu-opened__footer-li a:hover {
  color: var(--blue);
}

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

@media screen and (max-height: 630px) {
  .menu-opened__footer-li {
    max-width: 150px;
  }
  .menu-opened__footer-li a {
    font-size: 20px !important;
    line-height: 25px !important;
  }

  .menu-opened__large-li a {
    font-size: 30px !important;
    line-height: 65px !important;
  }

  .menu-opened__large-top span:first-child {
    font-size: 30px !important;
    line-height: 65px !important;
  }

  .menu-opened__large-top span:last-child {
    font-size: 16px !important;
    line-height: 18px !important;
    max-width: 320px;
    display: block;
  }
}

@media screen and (max-height: 700px) {
  .menu-opened__footer-li {
    max-width: 150px;
  }
  .menu-opened__footer-li a {
    font-size: 25px;
    line-height: 35px;
  }

  .menu-opened__large-li a {
    font-size: 40px;
    line-height: 85px;
  }

  .menu-opened__large-top span:first-child {
    font-size: 40px;
    line-height: 85px;
  }

  .menu-opened__large-top span:last-child {
    font-size: 20px;
    line-height: 25px;
    max-width: 320px;
    display: block;
  }
}

@media screen and (max-height: 800px) {
  .menu-opened__footer-li {
    max-width: 150px;
  }
  .menu-opened__footer-li a {
    font-size: 25px;
    line-height: 35px;
  }

  .menu-opened__large-li a {
    font-size: 50px;
    line-height: 105px;
  }

  .menu-opened__large-top span:first-child {
    font-size: 50px;
    line-height: 105px;
  }

  .menu-opened__large-top span:last-child {
    font-size: 25px;
    line-height: 35px;
    max-width: 420px;
    display: block;
  }
}

@media screen and (max-width: 1470px) {
  .menu-opened__footer-li {
    max-width: 150px;
  }
  .menu-opened__footer-li a {
    font-size: 25px;
    line-height: 35px;
  }

  .menu-opened__large-li a {
    font-size: 50px;
    line-height: 105px;
  }

  .menu-opened__large-top span:first-child {
    font-size: 50px;
    line-height: 105px;
  }

  .menu-opened__large-top span:last-child {
    font-size: 25px;
    line-height: 35px;
    max-width: 420px;
    display: block;
  }
}

@media screen and (max-width: 1024px),
  (max-height: 700px) and (orientation: landscape) {
  .menu-opened__footer-li {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .menu-opened__footer-li a {
    font-size: 20px;
    line-height: 35px;
  }

  .menu-opened__footer-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .menu-opened__footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .menu-opened__large-li a {
    font-size: 30px;
    line-height: 45px;
    padding: 10px 0;
  }

  .menu-opened__large-top span:first-child {
    font-size: 30px;
    line-height: 45px;
  }

  .menu-opened__large-top span:last-child {
    font-size: 16px;
    line-height: 20px;
    max-width: 420px;
    display: block;
  }

  .menu-opened__large-ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  @media screen and (max-height: 700px) {
    .menu-opened__footer-li {
      max-width: 150px;
    }
    .menu-opened__footer-li a {
      font-size: 20px;
      line-height: 25px;
    }

    .menu-opened__large-li a {
      font-size: 20px;
      line-height: 25px;
    }

    .menu-opened__large-top span:first-child {
      font-size: 20px;
      line-height: 25px;
    }

    .menu-opened__large-top span:last-child {
      font-size: 14px;
      line-height: 16px;
      max-width: 320px;
      display: block;
    }
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  top: 0;
  height: fit-content;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: var(--main-font);
  padding-top: 25px !important;
  padding-bottom: 0 !important;

  line-height: 1 !important;
  font-size: 14px !important;
}

@media (max-height: 600px) and (orientation: landscape) {
  .header {
    padding-top: 10px !important;
  }
}

.menu-opened__header {
  position: relative;
  left: 0;
  transform: translate(0, 0);
}

.home .header {
  top: -100%;
}

.header__menu-text {
  font-size: 23px;
  font-weight: 400;
  line-height: 33px;
  text-align: right;
  text-transform: uppercase;
}

.header__menu-text-1 {
  font-size: 23px;
  font-weight: 400;
  line-height: 33px;
  text-align: right;
  text-transform: uppercase;
  color: var(--white) !important;
}

.header__logo-name-1 {
  color: var(--white) !important;
}

.header__menu-img {
  width: 53px;
  height: 53px;
  padding: 20px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 7px;
  padding-right: 15px;
}

.header__line {
  width: 16px;
  min-height: 1px;
  background-color: var(--white);
}

.header__line:first-child {
  width: 23px;
}

.header__line:last-child {
  width: 9px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  color: var(--white);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__logo span {
  text-transform: uppercase;
  color: var(--white);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
}

@media screen and (max-width: 1024px),
  (max-height: 700px) and (orientation: landscape) {
  .header__menu-text {
    font-size: 19px;
  }

  .header__menu-text-1 {
    font-size: 14px;
  }
  .header__menu-img {
    min-width: 33px;
    min-height: 33px;
    width: 33px;
    height: 33px;
    padding: 5px 10px;
    gap: 4px;
  }

  .header__line {
    width: 10px;
  }

  .header__line:first-child {
    width: 12px;
  }

  .header__line:last-child {
    width: 5px;
  }
}

@media screen and (max-width: 1024px),
  (max-height: 700px) and (orientation: landscape) {
  .header__opened {
    position: absolute;
    top: 0%;
    right: 0;
    width: 100vw;
    height: 100vh;
    padding: 40px 25px;
    background-color: rgba(0, 0, 0, 0.7);
  }
}

@media screen and (max-width: 1024px),
  (max-height: 700px) and (orientation: landscape) {
  .header__logo span {
    font-size: 16px;
  }
  .header__logo img {
    width: 30px;
  }

  .header__logo {
    gap: 12px;
  }
}

.footer__main-location--back {
  cursor: pointer;
}

.footer__main-location,
.footer__main-direction {
  font-size: 20px;
  font-weight: 400;
  line-height: 100px;
  text-align: left;
  color: #ffffff;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px),
  (max-height: 700px) and (orientation: landscape) {
  .footer__main-location,
  .footer__main-direction {
    /* font-size: 0.9em;
	  line-height: 1em; */
    font-size: 12px;
    line-height: 15px;
  }
}

@media (max-width: 400px) and (orientation: portrait),
  (max-height: 400px) and (orientation: landscape) {
  .footer__main-location,
  .footer__main-direction {
    /* font-size: 0.9em;
		 line-height: 1em; */
    font-size: 10px;
    line-height: 13px;
  }
}

.footer {
  position: fixed;
  width: 100%;
  height: fit-content;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  bottom: -100%;
  left: 50%;
  transform: translate(-50%, 0);
  padding-top: 0 !important;
  font-family: var(--main-font);
  padding-bottom: 30px;
}

.footer__main-direction {
  display: flex;
  align-items: center;
  gap: 30px;
}

.home .footer .footer__main-location:nth-child(2) {
  display: none;
}

.support .footer .footer__main-location:nth-child(1) {
  display: none;
}

@media screen and (max-width: 1024px),
  (max-height: 700px) and (orientation: landscape) {
  .footer__main-direction {
    gap: 10px;
  }

  .footer__main-direction-text {
    text-align: right;
  }

  .footer {
    padding-bottom: 1em !important;
  }
}

.footer__img {
  width: 87px;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.footer__img svg {
  width: 50px;
}

@media screen and (max-width: 1024px),
  (max-height: 700px) and (orientation: landscape) {
  .footer__img {
    width: 3em;
    height: 3em;
    min-height: 3em;
    min-width: 3em;
  }
  .footer__img svg {
    width: 1.5em;
  }
}

.footer__main-direction-text {
  position: relative;
}

.footer__main-direction-text span:nth-child(2),
.footer__main-direction-text span:nth-child(3) {
  opacity: 0;
  position: absolute;
  right: 0;
}

body:not(.home) .footer {
  bottom: 0 !important;
}

body:not(.home) .footer__main-location--coordinates {
  display: none;
}

.footer__main-location--back {
  display: none;
}

body:not(.home) .footer__main-location--back {
  display: block;
}

.cookies {
  background-color: #01b0f1;
  padding: 20px 5px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  color: #fff;
  max-width: 400px;
  width: 100%;
  transition: opacity 0.5s, transform 0.5s;
}

.cookies--hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%) translateX(-50%);
}

.cookies__text {
  margin-bottom: 30px;
  line-height: 1.4;
}

.cookies__btns {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #fff;
  position: relative;
  width: fit-content;
  padding-bottom: 2px;
}

.cookies__btns::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-right: 1px solid #fff;
  height: 100%;
  width: 1px;
}

.cookies__btn {
  margin-bottom: 0;
  cursor: pointer;
}

.cookies__btn:hover {
  color: #000000;
}

@media (max-height: 600px) and (orientation: landscape) {
  .menu-opened__large-li a {
    font-size: 16px !important;
    line-height: 18px !important;
  }

  .menu-opened__large-top span:first-child {
    font-size: 18px !important;
    line-height: 22px !important;
  }

  .menu-opened__large-top span:last-child {
    font-size: 14px !important;
    line-height: 16px !important;
  }

  .menu-opened__large {
    padding-top: 5px !important;
  }

  .menu-opened__footer-container {
    padding-top: 10px !important;
  }

  .menu-opened__footer-container {
    flex-direction: row;
  }

  .menu-opened__footer-li a {
    font-size: 16px !important;
    line-height: 19px !important;
  }

  .menu-opened__footer-ul {
    flex-direction: row;
  }

  .menu-opened__button {
    font-size: 16px;
    line-height: 19px;
    padding: 5px 10px;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .menu-opened__button {
    font-size: 18px;
    line-height: 18px;
    padding: 5px 10px;
    gap: 10px;
  }

  .menu-opened__button svg {
    width: 20px;
  }
}

@media (max-height: 600px) and (max-width: 350px) and (orientation: portrait) {
  .menu-opened {
    transform: translate(0, -175vh);
  }
}

@media (max-width: 400px) and (orientation: portrait),
  (max-height: 400px) and (orientation: landscape) {
  .header__menu {
    gap: 10px;
  }

  .header__menu-text {
    font-size: 16px;
  }

  .menu-opened__large {
    padding: 0 15px;
  }

  .menu-opened {
    display: block;
  }

  .menu-opened__header {
    margin-bottom: 20px;
  }

  .menu-opened__large-top a {
    gap: 15px;
  }

  .menu-opened__large-ul {
    gap: 10px;
  }

  .menu-opened__large-top span:last-child {
    font-size: 14px;
    line-height: 18px;
  }

  .menu-opened__large-li a {
    font-size: 24px !important;
    line-height: 33px !important;
    padding: 10px 0 !important;
  }

  .menu-opened__footer-ul {
    gap: 10px;
  }

  .menu-opened__footer-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.elementor-editor-active .menu-opened {
  display: none;
}
