* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'TT Norms';
}

img {
  max-width: 100%;
}

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

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

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

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

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

.main {
  padding: 20px 0 156px 0;
  background: url("./images/bg.jpg") center center no-repeat;
  background-size: cover;
}

.content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 80px;
  gap: 70px;
}

.contact {
  gap: 52px;
}

.sidebar {
  padding: 40px 23px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sidebar-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sidebar-item__descr {
  max-width: 213px;
  text-align: center;
}

.sidebar-item:first-child {
  margin-bottom: 40px;
}

.sidebar-item__img {
  margin-bottom: 20px;
}

.sidebar-item__descr {
  font-size: 20px;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 120%;
}

.content-text__title {
  font-size: 72px;
  font-weight: 300;
  color: #ffffff;
  line-height: 100%;
}

.content-text {
  max-width: 575px;
}

.content-text__title span {
  
  font-weight: 700;
  color: #D6403D;
}

.content-text__descr {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 32px;
  max-width: 530px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  gap: 10px;
  padding: 16px 60px;
  border-radius: 12px;
  color: #ffffff;
  margin-top: 48px;
  background: linear-gradient(180deg, #F6514E 0%, #D03C3A 50%, #AD2927 99.99%, rgba(247, 81, 78, 0.00) 100%);
  box-shadow: 0px 2px 4px 0px rgba(255, 255, 255, 0.25) inset;
}

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

.contact__phone a {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

.footer {
  background: #1f1f1f;
  padding: 30px 0;
}

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

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

.footer-contact__phone a {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

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

.footer-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}

.section {
  padding: 80px 0;
}

@media screen and (min-width: 320px) and (max-width: 991px) {
  .content {
    flex-direction: column;
  }
  .content-text {
    order: 1;
  }
  .sidebar {
    order: 2;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }
  .sidebar-item:first-child {
    margin-bottom: 0;
  }
  .main {
    background: url("./images/bg.jpg") right -560px center no-repeat;
    background-size: cover;
  }
}

@media screen and (min-width: 320px) and (max-width: 550px) {
  .content-text__title {
    font-size: 35px;
  }
  .content-text__descr {
    font-size: 16px;
    max-width: 280px;
    margin-top: 20px;
  }
  .content {
    gap: 40px;
  }
  .sidebar-item__img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }
  .button {
    margin-top: 30px;
  }
  .sidebar-item__descr {
    font-size: 16px;
  }
  .sidebar {
    padding: 30px 23px;
    gap: 20px;
  }
  .contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 8px;
  }
  .logo {
    width: 150px;
  }
  .contact__social {
    order: 2;
  }
  .contact__phone {
    order: 1;
  }
  .contact__phone a {
    font-size: 16px;
  }
  .header {
    align-items: flex-start;
  }
  .main {
    padding-bottom: 70px;
    background: url("./images/bg.jpg") right -535px top -160px no-repeat;
  }
  .button {
    padding-left: 35px;
    padding-right: 35px;
    font-size: 14px;
  }
  .button img {
    width: 24px;
  }
  .footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .footer-logo img {
    max-width: 160px;
  }
  .footer-contact {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .footer-contact__phone a {
    font-size: 16px;
  }
}

@media screen and (min-width: 551px) and (max-width: 990px) {

}