/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/style.scss ***!
  \***********************************************************************************************************/
.logo {
  display: block;
  width: 97px;
  height: 55px;
  background: url(e04b83a8262683ff31e8.svg) no-repeat center;
}

.button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  background-color: rgb(255, 62, 121);
  border: 2px solid rgb(255, 62, 121);
  transition: box-shadow 0.5s ease;
  transition: opacity 0.5s ease;
}
.button:hover {
  box-shadow: 0 0 2px 1px rgb(255, 62, 121);
  opacity: 0.9;
}
.button--type--close {
  background: url(bac58fb56cb778869883.svg) no-repeat center/cover;
}
.button--type--search {
  background: url(b06f375524a90db91a99.svg) no-repeat center/cover;
}
.button--type--call {
  background: url(dbb54a24715cebd77b52.svg) no-repeat center/cover;
}
.button--type--text {
  background: url(be51ccf5af795a01b46d.svg) no-repeat center/cover;
}
.button--type--account {
  background: url(d2f3d4670a2d53aba9fe.svg) no-repeat center/cover;
}

.list {
  display: flex;
  align-items: center;
}
.list__item {
  list-style: none;
  cursor: pointer;
  position: relative;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border 0.5s ease, background-color 0.5s ease;
}
.list__a {
  text-decoration: none;
  white-space: nowrap;
  color: black;
  transition: color 0.5s ease;
}
.list__a:active {
  color: black;
}

@keyframes modal--open {
  0% {
    right: -1400px;
  }
  100% {
    right: 0px;
  }
}
@keyframes modal--close {
  0% {
    right: 0px;
    display: flex;
  }
  100% {
    right: -1400px;
  }
}
@keyframes menu--open {
  0% {
    left: -360px;
  }
  100% {
    left: 0px;
  }
}
@keyframes menu--close {
  0% {
    left: 0px;
    display: flex;
  }
  100% {
    left: -360px;
  }
}
.page {
  width: auto;
  height: auto;
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 1336px) {
  .page {
    justify-content: center;
  }
}
.page__overlay {
  display: none;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.7;
  backdrop-filter: blur(5px);
}
@media (max-width: 1335px) {
  .page__overlay--action--open {
    display: flex;
    animation-name: modal--open;
    right: 0;
    z-index: 1;
    animation-timing-function: ease;
    animation-fill-mode: backwards;
    animation-delay: 0ms;
    animation-duration: 0.3s;
    position: absolute;
    top: 0;
  }
  .page__overlay--action--close {
    animation-name: modal--close;
    right: -1400px;
    z-index: 1;
    animation-timing-function: ease;
    animation-fill-mode: backwards;
    animation-delay: 0ms;
    animation-duration: 0.3s;
    position: absolute;
    top: 0;
  }
}
.page__menu {
  display: flex;
  flex-direction: column;
  width: 320px;
}
@media (max-width: 1335px) {
  .page__menu--action--open {
    display: flex;
    animation-name: menu--open;
    left: 0;
    z-index: 2;
    box-shadow: 16px 0 52px rgba(14, 24, 80, 0.2);
    animation-timing-function: ease;
    animation-fill-mode: backwards;
    animation-delay: 0ms;
    animation-duration: 0.3s;
    position: absolute;
    top: 0;
  }
  .page__menu--action--close {
    animation-name: menu--close;
    left: -360px;
    z-index: 2;
    animation-timing-function: ease;
    animation-fill-mode: backwards;
    animation-delay: 0ms;
    animation-duration: 0.3s;
    position: absolute;
    top: 0;
  }
}

.menu {
  display: flex;
  height: 100%;
  background-color: rgb(255, 255, 255);
  padding: 24px;
  height: 100vh;
  border: 1px solid black;
}
.menu .logo {
  width: 102px;
  height: 51px;
}
.menu__header {
  display: flex;
}
.menu__navigation {
  display: flex;
}
.menu__footer {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1335px) {
  .menu__footer {
    margin-top: 32px;
  }
}
@media (min-width: 1336px) {
  .menu__footer {
    margin-top: 241px;
  }
}
.menu__list--type--header {
  width: inherit;
}
@media (max-width: 1335px) {
  .menu__list--type--header .list__item:first-child {
    margin-right: 16px;
  }
  .menu__list--type--header .list__item:last-child {
    margin-left: 70.8px;
  }
}
@media (min-width: 1336px) {
  .menu__list--type--header .list__item:first-child {
    display: none;
  }
  .menu__list--type--header .list__item:last-child {
    margin-left: 128.4px;
  }
}
.menu__list--type--navigation {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 40px;
}
.menu__list--type--navigation .list__item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  font-weight: 500;
}
.menu__list--type--navigation .list__item:before {
  content: "";
  width: 4px;
  height: 36px;
  position: absolute;
  top: -6px;
  left: -24px;
  border-radius: 6px;
  opacity: 0;
  background-color: rgb(65, 246, 215);
  transition: opacity 0.5s ease;
}
.menu__list--type--navigation .list__item:hover .list__a {
  color: rgb(126, 126, 130);
}
.menu__list--type--navigation .list__item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .menu__list--type--navigation {
    gap: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1335px) {
  .menu__list--type--navigation {
    gap: 32px;
  }
}
@media (min-width: 1336px) {
  .menu__list--type--navigation {
    gap: 30px;
  }
}
.menu__list--type--top-footer {
  gap: 16px;
}
.menu__addres {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
  gap: 12px;
}
.menu__addres .addres__a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  font-weight: 500;
  font-style: normal;
  color: rgb(27, 28, 33);
}
.menu__addres .addres__a:hover {
  color: rgb(126, 126, 130);
}
.menu__list--type--bottom--footer {
  gap: 7px;
}
.menu__list--type--bottom--footer .langue {
  background-color: inherit;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  font-weight: 500;
  transition: color 0.5s ease;
}
.menu__list--type--bottom--footer .langue:hover {
  color: rgb(126, 126, 130);
}
@media (max-width: 1335px) {
  .menu__list--type--bottom--footer {
    margin-top: 8px;
  }
}
@media (min-width: 1336px) {
  .menu__list--type--bottom--footer {
    margin-top: 40px;
  }
}

@font-face {
  font-family: "TTLakes";
  src: url(ecf08c49b0b1d4d71f5b.woff) format("woff"), url(a0bf8bd54132d614be5d.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TTLakes";
  src: url(fe25154d26f37feaf90c.woff) format("woff"), url(1db5f8df31efefe6bea1.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TTLakes";
  src: url(5fe27ad211f7b79014fc.woff) format("woff"), url(8747246cd48097156cbb.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "TTLakes";
  src: url(5fe27ad211f7b79014fc.woff) format("woff"), url(8747246cd48097156cbb.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "TTLakes", Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
}
* :focus {
  outline: none;
}
/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/_var.scss ***!
  \**********************************************************************************************************/

