* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Jost", sans-serif;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  color: #fff;
  background: #0C0000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}
@media screen and (min-width: 1400px) {
  .btn-wrapper {
    margin-bottom: 40px;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 102px;
  height: 43px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.title {
  font-family: "Forum", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 42px;
}
@media screen and (min-width: 1400px) {
  .title {
    font-weight: 400;
    font-size: 52px;
    line-height: 60px;
  }
}

.text {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: rgba(0, 0, 0, 0.3490196078);
}
.header .logo {
  font-family: "Forum", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
.header .container {
  max-width: none;
}

.header__button-wrapper {
  margin-left: auto;
}

.header__icon-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: none;
  padding: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.header__icon {
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}

.header__icon--menu {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.header__icon--close {
  opacity: 0;
  -webkit-transform: rotate(-90deg) scale(0.6);
          transform: rotate(-90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--menu {
  opacity: 0;
  -webkit-transform: rotate(90deg) scale(0.6);
          transform: rotate(90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--close {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 16px 20px;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  padding: 120px 60px;
  background: rgba(0, 0, 0, 0.8980392157);
  backdrop-filter: blur(6px);
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  height: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
.navigation__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.navigation__link:hover::after {
  width: 100%;
}

@media screen and (min-width: 1400px) {
  .header {
    backdrop-filter: blur(3px);
  }
  .header__button-wrapper {
    display: none;
  }
  .header .container {
    max-width: 1280px;
  }
  .navigation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 auto;
    margin-left: auto;
    padding-block: 26px;
  }
  .navigation__list {
    background: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    gap: 62px;
    backdrop-filter: none;
  }
}
.hero .container {
  background: url("../../images/hero-bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 170px 20px 50px 20px;
}
@media screen and (min-width: 1400px) {
  .hero .container {
    padding-top: 234px;
    padding-bottom: 131px;
  }
}
.hero h1 {
  font-family: "Forum", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 52px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero h1::before {
  position: absolute;
  content: "";
  width: 1272px;
  height: 292px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: blur(11px);
          filter: blur(11px);
  backdrop-filter: opacity(0.5);
  z-index: -1;
}
@media screen and (min-width: 1400px) {
  .hero h1::before {
    -webkit-transform: translate(-57%, -50%);
            transform: translate(-57%, -50%);
  }
}
@media screen and (min-width: 1400px) {
  .hero h1 {
    font-weight: 400;
    font-size: 60px;
    line-height: 68px;
    text-align: start;
    max-width: 1100px;
  }
}
.hero .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1400px) {
  .hero .btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.hero .btn-wrap a {
  width: 219px;
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  color: #0c0000;
  border-radius: 22px;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.hero .btn-wrap a:hover {
  background-color: #f16000;
}
.hero .text-container {
  max-width: 1280px;
  margin: 0 auto;
}
.hero p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
@media screen and (min-width: 1400px) {
  .hero p {
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    padding-inline: 0;
    padding-top: 31px;
    padding-bottom: 72px;
    max-width: 1053px;
    margin-left: 0;
  }
}

.sec-1 {
  padding: 40px 20px;
  background-image: url("../../images/sec-1-bg.jpg");
  background-position: center right;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .sec-1 {
    padding: 60px 82px;
  }
  .sec-1 .box .box-content:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.sec-1 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1400px) {
  .sec-1 .box {
    gap: 0;
  }
}
.sec-1 .box img {
  height: 360px;
  max-width: 640px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.sec-1 .box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1400px) {
  .sec-1 .box-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.sec-2 {
  padding: 40px 0px 40px 12px;
}
@media screen and (min-width: 1400px) {
  .sec-2 {
    padding-top: 100px;
    padding-bottom: 53px;
    padding-left: 80px;
    padding-right: 0;
  }
}
.sec-2 h2 {
  text-align: center;
}
.sec-2 ul {
  margin-bottom: 33px;
}
@media screen and (min-width: 1400px) {
  .sec-2 ul {
    margin-bottom: 50px;
  }
}
.sec-2 li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 335px;
  height: 511px;
  margin: 0 6px;
}
@media screen and (min-width: 1400px) {
  .sec-2 li {
    width: 480px;
    height: 488px;
    margin: 0 16px;
  }
}
.sec-2 li img {
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.sec-2 li h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
}
.sec-2 .text-btm {
  text-align: center;
  max-width: 781px;
  margin: 0 auto;
}

.sec-3 {
  padding: 40px 20px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .sec-3 {
    padding-top: 100px;
    padding-bottom: 76px;
  }
}
.sec-3 .bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-width: 1440px;
  height: 960px;
  z-index: -1;
}
@media screen and (min-width: 1400px) {
  .sec-3 .bg-img {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sec-3 h2 {
  text-align: center;
}
.sec-3 img {
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 1400px) {
  .sec-3 img {
    width: auto;
    height: auto;
  }
}
.sec-3 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 1400px) {
  .sec-3 .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sec-3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
}
.sec-3 li {
  border-top: 1px solid #fff;
  padding-top: 22px;
  width: 100%;
}

.sec-4 {
  padding: 40px 20px;
  padding-bottom: 0;
  background-color: #AC6231;
}
@media screen and (min-width: 1400px) {
  .sec-4 {
    padding: 0px 80px;
  }
}
.sec-4 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1400px) {
  .sec-4 .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.sec-4 .box img {
  max-width: 375px;
}
@media screen and (min-width: 1400px) {
  .sec-4 .box img {
    max-width: none;
    width: auto;
  }
}

.sec-5 {
  background-color: #ac6231;
  padding: 40px 0px;
}
@media screen and (min-width: 1400px) {
  .sec-5 {
    padding-top: 70px;
    padding-bottom: 62px;
  }
}
.sec-5 h2 {
  text-align: center;
}
.sec-5 ul {
  margin-bottom: 33px;
}
@media screen and (min-width: 1400px) {
  .sec-5 ul {
    margin-bottom: 50px;
  }
}
.sec-5 li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 335px;
  height: 567px;
  margin: 0 6px;
}
@media screen and (min-width: 1400px) {
  .sec-5 li {
    width: 480px;
    margin: 0 16px;
  }
}
.sec-5 li img {
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.sec-5 li h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
}
.sec-5 .text-btm {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.sec-6 {
  background-image: url("../../images/sec-6.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .sec-6 {
    padding-block: 176px;
  }
}

.sec-7 {
  padding: 40px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-7 {
    padding: 40px 120px;
  }
}
.sec-7 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 42px;
  text-align: center;
}
.sec-7 .box img {
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 1400px) {
  .sec-7 .box img {
    height: 520px;
  }
}

.contacts {
  background-image: url("../../images/contacts-bg.jpg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  padding: 40px 20px;
}
@media screen and (min-width: 1400px) {
  .contacts {
    padding: 100px 80px;
  }
  .contacts .box-right {
    min-width: 623px;
  }
}
.contacts .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .contacts .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 60px;
  }
}
.contacts .map {
  max-width: 450px;
  width: 100%;
  height: 436px;
}
@media screen and (min-width: 1400px) {
  .contacts .map {
    min-width: 640px;
    max-width: none;
  }
}
.contacts .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}
.contacts address {
  margin-top: 12px;
}
.contacts dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin: 0;
  font-style: normal;
}
.contacts dt,
.contacts dd,
.contacts dd a {
  color: #fff;
  text-decoration: none;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}

.popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  background: rgba(90, 90, 90, 0.8980392157);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.popup .content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 500px;
  background: #AC6231;
  padding: 40px 12px;
  border-radius: 25px;
  max-width: 400px;
}
@media screen and (min-width: 1400px) {
  .popup .content {
    max-width: 902px;
    padding-inline: 80px;
  }
}
.popup h2 {
  font-family: "Forum", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 23px;
}
@media screen and (min-width: 1400px) {
  .popup h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
  }
}
.popup h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  margin-bottom: 32px;
}
.popup .button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1400px) {
  .popup .button-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 42px;
  }
}
.popup button {
  background: #fff;
  border: none;
  border-radius: 22px;
  width: 100%;
  height: 64px;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #0C0000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup button:hover {
  background: #F16000;
}
@media screen and (min-width: 1400px) {
  .popup button {
    width: 310px;
    font-size: 20px;
  }
}

.footer {
  color: #fff;
  padding: 22px 20px;
}
@media screen and (min-width: 1400px) {
  .footer {
    margin-block: 45px;
  }
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.footer .domain {
  font-family: "Forum", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 2px;
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 1400px) {
  .footer ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 160px;
  }
}
.footer li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
}
.footer .copyright {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.policies {
  color: #fff;
  padding: 100px 20px 40px 20px;
}
@media screen and (min-width: 1400px) {
  .policies {
    padding-top: 120px;
    padding-inline: 86px;
  }
}
.policies h1 {
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media screen and (min-width: 1400px) {
  .policies h1 {
    font-weight: 400;
    font-size: 52px;
    line-height: 60px;
  }
}
.policies h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.policies a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.policies ul {
  list-style: disc;
  padding-left: 20px;
}/*# sourceMappingURL=main.css.map */