@font-face {
  font-family: CormorantUpright;
  font-display: swap;
  src: url("../fonts/CormorantUpright-Bold.woff2") format("woff2"), url("../fonts/CormorantUpright-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: CormorantUpright;
  font-display: swap;
  src: url("../fonts/CormorantUpright-Regular.woff2") format("woff2"), url("../fonts/CormorantUpright-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: CormorantUpright;
  font-display: swap;
  src: url("../fonts/CormorantUpright-SemiBold.woff2") format("woff2"), url("../fonts/CormorantUpright-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: TTTrailers;
  font-display: swap;
  src: url("../fonts/TTTrailers-Regular.woff2") format("woff2"), url("../fonts/TTTrailers-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

body {
  font: 14px/24px "Roboto", Arial, Helvetica, sans-serif;
}

.s1 {
  padding: 75px 0 0 0;
}

.s3 {
  padding: 64px 0;
}

@media (max-width: 650px) {
  .s1 {
    padding: 69px 0 0 0;
  }
  .s3 {
    padding: 48px 0 0 0;
  }
}
@media (max-width: 450px) {
  .s1 {
    padding: 61px 0 0 0;
  }
}
.header {
  padding: 7px 0 0 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 500;
  transition: 0.3s;
  color: black;
  background-color: #415d87;
}
.header__body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0px 7px 0px;
  color: white;
}
.header__container {
  padding: 15px 32px;
}
.header__logo {
  position: relative;
  z-index: 3;
}
.header__logo_link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 24px;
}

.menu__list {
  display: flex;
  position: relative;
  z-index: 3;
  gap: 50px;
  font-size: 16px;
  text-transform: uppercase;
}
.menu__item {
  cursor: pointer;
}

@media (max-width: 856px) {
  .header__logo p {
    font-size: 21px;
  }
  .menu__list {
    font-size: 14px;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .header__logo p {
    font-size: 18px;
  }
  .menu__list {
    font-size: 12px;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .header__container {
    padding: 12px 28px;
  }
  .header__logo {
    display: flex;
    gap: 10px;
  }
  .header__logo p {
    font-size: 18px;
  }
  .header__burger {
    display: flex;
    position: relative;
    width: 25px;
    z-index: 2;
  }
  .header__burger span {
    position: absolute;
    background-color: white;
    width: 100%;
    height: 2.5px;
    top: 9px;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before {
    content: "";
    background-color: white;
    position: absolute;
    width: 100%;
    height: 2px;
    top: 4px;
    transition: all 0.3s ease 0s;
  }
  .header__burger:after {
    content: "";
    background-color: white;
    position: absolute;
    width: 100%;
    height: 2px;
    top: 15px;
    transition: all 0.3s ease 0s;
  }
  .header__burger.active:before {
    transform: rotate(142deg);
    top: 9px;
  }
  .header__burger.active:after {
    transform: rotate(45deg);
    top: 9px;
  }
  .header__burger.active span {
    transform: scale(0);
  }
  .menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    animation-duration: inherit;
    background-color: white;
    padding: 40px 10px 20px 10px;
    transition: all 0.4s ease 0s;
    z-index: 1;
  }
  .menu__list {
    display: block;
  }
  .menu__item {
    margin: 0px 0px 20px 0px;
    color: black;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
  }
  .menu.active {
    top: 11%;
  }
}
@media (max-width: 450px) {
  .header__container {
    padding: 8px 25px;
  }
  .header__logo p {
    font-size: 16px;
  }
  .header__burger {
    width: 21px;
  }
  .menu.active {
    top: 10%;
  }
}
.slider {
  position: relative;
}
.slider__container {
  position: relative;
  height: 90vh;
}
.slider__content {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider__content--descr {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  z-index: 2;
  min-width: 320px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 0 40px;
  color: #fff;
}
.slider__content--descr h1 {
  font-size: 72px;
  line-height: 74px;
  font-weight: 700;
  margin-bottom: 20px;
}
.slider__content--descr h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.slider__content--descr p {
  font-size: 36px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 20px;
}
.slider__content--descr h3 {
  font-size: 21px;
}
.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(60%);
}

@media (max-width: 1024px) {
  .slider__container {
    height: 80vh;
  }
  .slider__content--descr {
    gap: 10px;
  }
  .slider h1 {
    font-size: 42px;
  }
  .slider h2 {
    font-size: 28px;
  }
  .slider p {
    font-size: 28px;
  }
  .slider h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .slider__container {
    height: 70vh;
  }
  .slider__content--descr {
    gap: 10px;
  }
  .slider h1 {
    font-size: 34px;
    margin-bottom: 5px;
  }
  .slider h2 {
    font-size: 21px;
    margin-bottom: 5px;
  }
  .slider p {
    font-size: 21px;
  }
  .slider h3 {
    font-size: 14px;
  }
}
@media (max-width: 584px) {
  .slider__content--descr {
    gap: 5px;
  }
  .slider h1 {
    font-size: 30px;
  }
  .slider h2 {
    font-size: 19px;
  }
  .slider p {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .slider h3 {
    font-size: 14px;
  }
}
@media (max-width: 498px) {
  .slider__container {
    height: 65vh;
  }
  .slider__content--descr {
    gap: 0px;
  }
  .slider h1 {
    font-size: 21px;
    line-height: 54px;
  }
  .slider h2 {
    font-size: 18px;
  }
  .slider p {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .slider h3 {
    font-size: 14px;
  }
}
.advertisement {
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 84px;
}
.advertisement__title {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 34px;
  text-align: center;
  color: #415d87;
}
.advertisement__block {
  display: flex;
  flex-direction: column;
}
.advertisement__block h1 {
  font-size: 26px;
}
.advertisement__img {
  display: flex;
  justify-content: flex-start;
  color: #999;
  align-items: center;
  margin: 18px 0;
  gap: 5px;
}
.advertisement__img img {
  position: relative;
  width: 12px;
  height: 15px;
}

@media (max-width: 768px) {
  .advertisement__title {
    font-size: 28px;
  }
  .advertisement h1 {
    font-size: 21px;
  }
}
@media (max-width: 485px) {
  .advertisement__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .advertisement h1 {
    font-size: 18px;
  }
}
.footer {
  background-color: #415d87;
}
.footer__block {
  padding: 20px 0;
  width: 85%;
  margin: 0 auto;
  color: white;
}

.contact {
  position: relative;
}
.contact__container {
  position: relative;
  height: 90vh;
}
.contact__content {
  position: relative;
  width: 100%;
  height: 100%;
}
.contact__content--descr {
  position: relative;
  display: flex;
  align-items: left;
  gap: 18px;
  flex-direction: column;
  justify-content: center;
  height: 85%;
  z-index: 2;
  min-width: 320px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 0 124px;
  color: #fff;
}
.contact__content--descr h1 {
  font-size: 36px;
  margin-bottom: 26px;
}
.contact__content--descr ul {
  font-size: 21px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-weight: 600;
}
.contact img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(60%);
}

@media (max-width: 768px) {
  .contact__container {
    height: 90vh;
  }
  .contact__content--descr {
    padding: 0 20px 0 54px;
  }
  .contact h1 {
    font-size: 28px;
  }
  .contact ul {
    font-size: 18px;
  }
}
@media (max-width: 475px) {
  .contact__container {
    height: 80vh;
  }
  .contact__content--descr {
    padding: 0 20px 0 24px;
  }
  .contact h1 {
    font-size: 24px;
  }
  .contact ul {
    font-size: 16px;
  }
}