* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'TT Norms';
}

img {
  max-width: 100%;
}

.container {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}

.main {
  background: url("./images/main-bg.jpg") center center no-repeat;
  background-size: cover;
  padding-top: 20px;
  overflow: hidden;
  min-height: 100vh;
}

.main-content {
  max-width: 650px;
}

.main-content__title {
  font-size: 52px;
  line-height: 140%;
  color: #1F1F1F;
  font-weight: 300;
}

.main-content__title span {
  font-weight: 700;
}

.main-content__descr {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 400;
  color: #1F1F1F;
  line-height: 140%;
}

.feature {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.feature-item__icon {
  flex-shrink: 0;
}

.feature-item-text__title {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  color: #1F1F1F;
}

.feature-item-text__descr {
  font-size: 16px;
  line-height: 140%;
  color: #1F1F1F;
  font-weight: 400;
}

.main-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.main-img {
  margin-right: -125px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.logo__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  max-width: 510px;
}

.logo__text span {
  font-weight: 500;
}

.main-content {
  padding: 50px 0;
}

.header-contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-right: 48px;
}

.header-contact__phone {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.header-contact__phone a {
  font-size: 24px;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 140%;
  text-decoration: none;
}

.main__button {
  height: 80px;
  padding: 0 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  transition: all .3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 48px;
}

.main__button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(251,123,148);
  background: linear-gradient(90deg, rgba(251,123,148,1) 0%, rgba(255,220,72,1) 100%);
  z-index: -2;
  border-radius: 48px;
}

.main__button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgb(253,201,70);
  background: linear-gradient(90deg, rgba(253,201,70,1) 0%, rgba(247,163,0,1) 100%);
  transition: all .3s;
  z-index: -1;
  border-radius: 48px;
}

.main__button:hover::before {
  width: 100%;
}


@media screen and (min-width: 1179px) and (max-width: 1440px) {
  .main-content__title {
    font-size: 42px;
  }
  .main-content__descr {
    font-size: 18px;
  }

  .feature-item__icon {
    width: 48px;
    height: 48px;
  }

  .feature {
    margin-top: 30px;
    gap: 20px;
  }

  .feature-item-text__descr {
    font-size: 14px;
  }

  .feature-item-text__title {
    font-size: 18px;
  }

  .main-img {
    height: 600px;
  }
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  br {
    display: none;
  }

  .marquiz__container {
    margin-top: 10px;
  }

  .main-content__title {
    font-size: 28px;
  }
  .main-content__descr {
    /* font-size: 14px;
    margin-top: 12px; */
    display: none;
  }
  .feature-item__icon {
    width: 28px;
    height: 28px;
  }
  .feature {
    gap: 10px;
    margin-top: 10px;
  }
  .main-img {
    display: none;
  }
 
  .feature-item-text__title {
    font-size: 16px;
  }
  .feature-item-text__descr {
    font-size: 12px;
  }
  .main-content {
    padding: 5px 0;
  }
  .header-contact__phone a {
    font-size: 16px;
  }
  .header-contact__phone img {
    width: 16px;
  }
  .social {
    margin-right: 24px;
  }
  .social__item img {
    width: 32px;
  }
  .main {
    padding-top: 5px;
    min-height: 100vh;
  }
  .main__button {
    height: 60px;
    font-size: 14px;
    padding: 0 50px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .main__banner {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .main__banner {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1140px) {
  .main-content__title {
    font-size: 32px;
  }
  .main-content__descr {
    font-size: 16px;
    margin-top: 16
  }
  .feature-item__icon {
    width: 48px;
    height: 48px;
  }
  .feature {
    gap: 20px;
    margin-top: 24px;
  }
  .main-img {
    margin-right: -200px;
  }

  .feature-item-text__title {
    font-size: 18px;
  }
  .feature-item-text__descr {
    font-size: 14px;
  }
  .main-content {
    padding: 50px 0;
  }
  .header-contact__phone a {
    font-size: 16px;
  }
  .header-contact__phone img {
    width: 16px;
  }
  .social {
    margin-right: 24px;
  }
  .social__item img {
    width: 32px;
  }
  .main {
    padding-top: 5px;
    min-height: 100vh;
  }
  .main__button {
    height: 60px;
    font-size: 14px;
    padding: 0 50px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 320px) and (max-width: 1140px) {
  .logo__text {
    display: none;
  }
}