/* html {
  overflow-x: hidden;
} */

html,
body {
  font-family: 'Montserrat', sans-serif;
  color: #3A3A3A;
  font-size: 16px;
  /* height: 100%; */
  /* display: flex;
  flex-direction: column; */
  background-color: #000000;
  background-color: #1f1f1f;
  background-color: #131313;
  color: white;
  overflow-x: hidden;
}

html._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  /* display: flex;
  flex-direction: column; */
}

.main {
  flex: 1 1 auto;
}

._container {
  max-width: 1180px;
  padding: 0 15px;
  margin: 0 auto;
}

body {
  --blue-color: #ededed;
  --gold-color: #e6b453;
  --btn-color: rgb(149 0 0);

}

.title {
  font-size: 26px;
  letter-spacing: 1.3px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ===============decor========================================= */
.decor__wrapper {
  position: absolute;
  /* top: -13px; */
  top: 0;
  right: -13px;
  height: 100%;
}

.decor {
  position: relative;
  display: inline-block;
  /* height: 70px; */
  height: 100%;
  width: 130px;
}

.horisontal-top-line {
  position: absolute;
  background-color: var(--gold-color);
  height: 3px;
  width: 130px;
  top: 0;
  right: 0;
}

.vertical-line {
  position: absolute;
  background-color: var(--gold-color);
  height: 100%;
  width: 3px;
  top: 0%;
  right: 0%;
}

.horisontal-bottom-line {
  position: absolute;
  background-color: var(--gold-color);
  height: 3px;
  width: 130px;
  bottom: 0;
  right: 0;
}

@media (max-width: 350px) {
  body {
    font-size: 14px;
  }

  /* =======decor====================== */
  /* .decor {
    height: 50px;
  }

  .vertical-line {
    height: 50px;
  } */

  .horisontal-top-line,
  .horisontal-bottom-line {
    width: 90px;
  }
 /* =======title====================== */
  .title {
    font-size: 18px;
    text-align: center;
  }

  .add-line {
    border-bottom: 1px solid var(--gold-color);
    padding-bottom: 4px;
    width: auto;
  }

   

}

/* =====================FONT-FAMILY============================================================================== */

@font-face {
  font-family: 'Circe-Light';
  src: url(../fonts/Circe/-Light.woff) format('woff'),
    url(../fonts/Circe/-Light.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;

}

@font-face {
  font-family: 'Circe-Bold';
  src: url(../fonts/Circe/-Bold.woff) format('woff'),
    url(../fonts/Circe/-Bold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circe-ExtraBold';
  src: url(../fonts/Circe/-ExtraBold.woff) format('woff'),
    url(../fonts/Circe/-ExtraBold.woff2) format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* =====================TITLE============================================================================== */
h1 {
  /* font-size: 40px; */
  font-weight: 600;
  font-size: calc(24px + 16 * (100vw / 1180));
}

/* h2 {
  font-size: 36px;
  font-weight: 700;
  font-size: calc(20px + 16 * (100vw / 1180));
}

@media (max-width: 767.98px) {
  h1 {
    font-size: calc(24px + (16 + 16 * 0.7) * ((100vw - 320px) / 1180));
  }

  h2 {
    font-size: calc(20px + (16 + 16 * 0.7) * ((100vw - 320px) / 1180));
  }
} */


/* =====================POPUP============================================================================== */

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.733);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease 0s;
}

.popup.open {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.popup.open .popup__content {
  opacity: 1;
  transform: translate(0px, 0px);
}

.popup__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  padding: 30px 50px;
  width: 620px;
  background-color: #fff;
  position: relative;
  transition: all 0.6s ease 0s;
  opacity: 0;
  transform: perspective(600px) translate(0px, -100%) rotateX(5deg);
  /* transform: translate3d(0px, 0px, 0px) scale(1); */
}

.close-popup {
  position: absolute;
  top: 2%;
  right: 2%;
  color: #000;
  font-size: 22px;
}

.popup__title {
  color: #272828;
  margin-bottom: 30px;
}

.popup__name,
.popup__number,
.popup__email,
.popup__languages,
.popup__time {
  background-color: #E9EFF7;
  border: none;
  margin: 10px 0;
  padding: 10px 10px;
  width: 100%;
  font-size: 18px;
  border: 1px solid #E9EFF7;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  color: #3A3A3A;
  font-family: 'Montserrat', sans-serif;
  height: 50px;
}

.popup__name::placeholder,
.popup__number::placeholder,
.popup__email::placeholder {
  color: #3A3A3A;
}

.popup__languages {
  padding: 10px 10px;
}

.popup__hours,
.popup__mins {
  background: unset;
  border: 1px solid #272828;
  padding: 5px 10px;
}

.time__dots {
  color: black;
  margin: 0 5px;
}

.time {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.time__text {
  color: #3A3A3A;
  margin-right: 10px;
  font-size: 18px;
  font-weight: 500;
}

.popup__languages {
  border-radius: 0;
  -webkit-border-radius: 0;
  border: none;

  /* -webkit-appearance: none; */
}

.popup__hours:optional,
.popup__mins:optional {
  color: #3A3A3A;
}

.popup__button {
  color: #E9EFF7;
  background-color: var(--gold-color);
  border: none;
  margin: 10px 0;
  padding: 10px 10px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  cursor: pointer;
  font-size: 18px;
}

@media(max-width: 800px) {
  .popup__content {
    width: 420px;
    padding: 30px 20px;
  }
}

@media(max-width: 479px) {
  .popup__content {
    width: 340px;
    padding: 30px 20px;
  }
}

@media(max-width: 340px) {
  .popup__content {
    width: 250px;
    padding: 20px 15px;
  }
}

/* =================BURGER==================================================================================================================== */
.icon-menu {
  display: none;
}

@media (max-width: 1150px) {
  .nav__item:not(:last-child) {
    background: none;
  }

  .icon-menu {
    position: relative;
    display: block;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
    margin-left: 32px;
    background: none;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    transition: all 0.3s ease 0s;
    left: 0;
    position: absolute;
    width: 100%;
    height: 10%;
    background-color: white;
  }

  .icon-menu::before,
  .icon-menu::after {
    content: "";
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }

  .icon-menu._active span {
    transform: scale(0) translate(0px, -50%);
  }

  .icon-menu._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }

  .icon-menu._active::after {
    top: 50%;
    transform: rotate(45deg) translate(0px, -50%);
  }

  .header__nav {
    transform: translate(-100%, -50%);
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    padding: 100px 0px 30px 0px;
    transition: all 0.3s ease 0s;
    overflow: auto;
    margin-top: 0px;
  }

  .header__nav._active {
    transform: translateX(0px);
  }

  .header__list {
    flex-direction: column;
  }

  .header__item {
    background: none;
    margin: 0 0 20px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--blue-color);
  }

  .nav__item:last-child {
    margin-top: 20px;
  }

  .header__link {
    color: black;
    letter-spacing: 2px;
    font-size: 18px;
    width: 100%;
    padding: 0px;
    height: 30px;
  }

  .header__feedback {
    letter-spacing: 2px;
    border: 1px solid rgb(0, 0, 0);
    padding: 10px 25px;
    color: rgb(0, 0, 0);
  }
}

@media (max-width: 767.98px) {
  .header__nav {
    width: 70%;
  }
}

@media (max-width: 479.98px) {
  .header__nav {
    width: 100%;
  }

  .icon-menu._active::before {
    background-color: rgb(0, 0, 0);
  }

  .icon-menu._active::after {
    background-color: rgb(0, 0, 0);
  }
}

@media (max-width: 400.98px) {
  .icon-menu {
    margin-left: 5px;
  }
}