@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: 103px 0px 52px 0px;
}

.s2 {
  padding: 0 0 74px 0;
}

.s3 {
  padding: 32px 0;
  background-color: #f4f3f3;
}

@media (max-width: 1024px) {
  .s1 {
    padding: 96px 0px 52px 0px;
  }
}
@media (max-width: 824px) {
  .s1 {
    padding: 84px 0px 52px 0px;
  }
}
@media (max-width: 425px) {
  .s1 {
    padding: 81px 0px 52px 0px;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  padding: 7px 0 0 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 500;
  transition: 0.3s;
  color: black;
  background-color: white;
  border-bottom: 2px solid #e5e5e5;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}
.header__burger {
  display: none;
}
.header__container {
  width: 100%;
  padding: 14px 134px 18px 134px;
}
.header__body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 112px;
  align-items: center;
  padding: 7px 0px 7px 0px;
}
.header__logo {
  position: relative;
  z-index: 3;
}
.header__logo_link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.header__logo img {
  width: 50px;
}
.header__logo p {
  font-size: 24px;
  color: rgb(88, 188, 25);
}

.menu__list {
  display: flex;
  position: relative;
  z-index: 3;
  gap: 50px;
  font-size: 16px;
  text-transform: uppercase;
}
.menu__item {
  cursor: pointer;
}
.menu__item:hover {
  color: rgb(88, 188, 25);
}
.menu__link {
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .header__container {
    padding: 14px 104px 14px 104px;
  }
  .header__body {
    gap: 80px;
  }
  .header p {
    font-size: 21px;
  }
  .header img {
    width: 45px;
  }
  .menu__list {
    gap: 25px;
    font-size: 14px;
  }
}
@media (max-width: 824px) {
  .header__container {
    padding: 14px 80px 14px 80px;
  }
  .header__body {
    gap: 40px;
  }
  .header p {
    font-size: 18px;
  }
  .header img {
    width: 35px;
  }
  .menu__list {
    gap: 18px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    width: 35px;
  }
  .header__logo p {
    font-size: 23px;
  }
  .header__burger {
    display: flex;
    position: relative;
    width: 30px;
    height: 23px;
    z-index: 2;
  }
  .header__burger span {
    position: absolute;
    background-color: rgb(88, 188, 25);
    width: 100%;
    height: 2.5px;
    top: 10px;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before {
    content: "";
    background-color: rgb(88, 188, 25);
    position: absolute;
    width: 100%;
    height: 2.5px;
    top: 2px;
    transition: all 0.3s ease 0s;
  }
  .header__burger:after {
    content: "";
    background-color: rgb(88, 188, 25);
    position: absolute;
    width: 100%;
    height: 2px;
    top: 19px;
    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;
    background-color: #fff;
    padding: 70px 10px 20px 10px;
    transition: all 0.4s ease 0s;
  }
  .menu__list {
    display: block;
  }
  .menu__item {
    margin: 0px 0px 20px 0px;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
  }
  .menu__item:hover {
    color: rgb(88, 188, 25);
  }
  .menu.active {
    top: 8%;
  }
}
@media (max-width: 640px) {
  .header__container {
    padding: 14px 44px 14px 44px;
  }
}
@media (max-width: 480px) {
  .header__logo img {
    width: 35px;
  }
  .header__logo p {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .header__container {
    padding: 14px 24px 14px 24px;
  }
  .header__logo img {
    width: 30px;
  }
  .header__logo p {
    font-size: 16px;
  }
}
.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 {
  max-width: 70%;
  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;
  max-width: 50%;
  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__content--descr {
    gap: 10px;
  }
  .slider h1 {
    font-size: 64px;
  }
  .slider h2 {
    font-size: 28px;
  }
  .slider p {
    font-size: 28px;
  }
  .slider h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .slider__content--descr {
    gap: 10px;
  }
  .slider h1 {
    font-size: 48px;
    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: 40px;
  }
  .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: 32px;
    line-height: 54px;
  }
  .slider h2 {
    font-size: 18px;
  }
  .slider p {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .slider h3 {
    font-size: 14px;
  }
}
@media (max-width: 416px) {
  .slider h1 {
    font-size: 24px;
  }
}
@media (min-height: 1024px) {
  .slider__container {
    position: relative;
    height: 40vh;
  }
  .slider img {
    height: 100%;
  }
}
.info {
  text-align: center;
  width: 66%;
  margin-left: 16%;
  margin-bottom: 48px;
}
.info__title {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.info__description {
  color: #999999;
  font-size: 20px;
  line-height: 28px;
}

.advantages {
  display: flex;
  justify-content: center;
  gap: 65px;
  margin: 0 auto;
  align-items: center;
  max-width: 85%;
}
.advantages__block {
  display: flex;
  flex: 0 1 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.advantages__block img {
  width: 75px;
}
.advantages__block h2 {
  font-size: 18px;
}
.advantages__block p {
  color: #999999;
}

@media (max-width: 1024px) {
  .advantages {
    flex-wrap: wrap;
  }
}
@media (max-width: 498px) {
  .info__title {
    font-size: 28px;
  }
  .info__description {
    font-size: 16px;
  }
}
.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;
}
.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: 480px) {
  .advertisement__title {
    font-size: 28px;
  }
  .advertisement h1 {
    font-size: 21px;
  }
}
.contact {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 68px 0;
}
.contact__block {
  display: flex;
  flex: 0 1 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.contact__block:first-child {
  padding-top: 10px;
}
.contact__block img {
  width: 70px;
  height: 70px;
}
.contact__block p {
  color: #999;
}

@media (max-width: 620px) {
  .contact {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
  }
}
.footer {
  border-top: 1px solid #e5e5e5;
  background-color: #f4f3f3;
}
.footer__block {
  padding: 20px 0;
  width: 85%;
  margin: 0 auto;
  color: #999999;
}