/* USER VARIABLES SECTION */
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Roboto+Flex:opsz,wght@8..144,400;8..144,500;8..144,600;8..144,700&display=swap");
:root {
  --accent: #ffe7ba;
  --hover: #be9037;
  --text: #808486;
  --regular-text: 16px;
  --lineheight: 1.4;
  --userfont: "Karla", sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* FONTS LOAD SECTION */
@font-face {
  src: url("../fonts/AvenirNextCyr-Regular.woff2") format("woff2");
  font-family: "Avenir";
  font-weight: 400;
  font-style: normal;
}
@font-face {
  src: url("../fonts/AvenirNextCyr-Italic.woff2") format("woff2");
  font-family: "Avenir";
  font-weight: 400;
  font-style: italic;
}
@font-face {
  src: url("../fonts/AvenirNextCyr-Medium.woff2") format("woff2");
  font-family: "Avenir";
  font-weight: 500;
  font-style: normal;
}
@font-face {
  src: url("../fonts/AvenirNextCyr-MediumItalic.woff2") format("woff2");
  font-family: "Avenir";
  font-weight: 500;
  font-style: italic;
}
@font-face {
  src: url("../fonts/AvenirNextCyr-Bold.woff2") format("woff2");
  font-family: "Avenir";
  font-weight: 700;
  font-style: normal;
}
@font-face {
  src: url("../fonts/AvenirNextCyr-BoldItalic.woff2") format("woff2");
  font-family: "Avenir";
  font-weight: 700;
  font-style: italic;
}
/* GENERAL CSS SETTINGS */
::-moz-placeholder {
  color: #666;
}
::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: var(--accent);
}

::selection {
  background-color: var(--accent);
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content {
  position: relative;
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.btn-hover {
  position: relative;
  transition-duration: 0.15s;
}
.btn-hover::before, .btn-hover::after {
  content: "";
  position: absolute;
  width: 0;
  background-color: #000;
  transition: all 0.3s;
  z-index: 1;
  height: 1px;
  bottom: 0;
}
.btn-hover::before {
  left: 0;
}
.btn-hover::after {
  right: 0;
}
.btn-hover:hover {
  color: #000;
  background-color: var(--hover);
}
.btn-hover:hover::before, .btn-hover:hover::after {
  width: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
  padding: 0 30px;
  height: 72px;
  background-color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  text-decoration: none;
  transition-duration: 0.15s;
}
@media (max-width: 575px) {
  .btn {
    height: 54px;
    padding: 0 20px;
    gap: 0 30px;
  }
}
.btn svg {
  width: 26px;
  height: 26px;
  transition-duration: 0.15s;
}
.btn:hover svg {
  transform: rotate(45deg);
}

.btn-solid {
  background-color: transparent;
  border: 1px solid var(--accent);
}
.btn-solid:hover {
  background-color: var(--accent);
  color: var(--text);
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border: 1px solid #fff;
  display: block;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-button-lock {
  display: none !important;
}/*# sourceMappingURL=main.css.map */