* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: #f9f9f9;
}

main {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background-color: #1c2027;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

#hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-width: 100%;
}
#hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding-left: 4rem;
  padding-top: 4rem;
  flex-shrink: 0;
}
#hero .hero-content .hero-header {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
}
#hero .hero-content .hero-header .hero-header-text {
  display: flex;
  flex-direction: column;
  padding-left: 1.5rem;
}
#hero .hero-content .hero-header .hero-header-text h1 {
  color: #f9f9f9;
  font-size: 5rem;
  font-weight: bold;
}
#hero .hero-content .hero-header .hero-header-text h1 span {
  color: #c42927;
}
#hero .hero-content .hero-header .hero-header-text h3 {
  color: #f9f9f9;
  font-weight: normal;
  font-size: 2rem;
}
#hero .hero-content .hero-header .hero-image-mobile {
  display: none;
}
#hero .hero-content .hero-header-divider {
  position: relative;
  background-color: #c42927;
  width: 90%;
  height: 0.1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  overflow: visible;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-shrink: 0;
}
#hero .hero-content .hero-header-divider .red-circle {
  background-color: #c42927;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}
#hero .hero-content .hero-slogan {
  display: flex;
  flex-direction: column;
  color: #f9f9f9;
  padding-bottom: 4rem;
}
#hero .hero-content .hero-slogan h2 {
  font-size: 5rem;
}
#hero .hero-content .hero-slogan h4 {
  font-size: 5rem;
  color: #c42927;
}
#hero .hero-content .hero-slogan p {
  padding-top: 2rem;
  font-size: 1.4rem;
  max-width: 80%;
}
#hero .hero-content .hero-contacts {
  color: #f9f9f9;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: start;
  align-items: center;
}
#hero .hero-content .hero-contacts .hero-contact {
  background-color: #c42927;
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#hero .hero-content .hero-contacts .hero-contact img {
  height: 100%;
}
#hero .hero-content .hero-contacts .hero-contact .contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
#hero .hero-content .hero-contacts .hero-contact .contact-text .top-text {
  color: #B3B3B3;
  font-weight: bold;
  font-size: 1.2rem;
}
#hero .hero-content .hero-contacts .hero-contact .contact-text .bottom-text {
  color: #f9f9f9;
  font-size: 1.4rem;
  font-weight: bold;
}
#hero .hero-image {
  max-height: 90vh;
  min-width: 1010px;
}

@media (max-width: 1650px) {
  #hero .hero-content {
    padding-top: 2rem;
    padding-left: 2rem;
  }
  #hero .hero-content .hero-header .hero-header-text h1 {
    font-size: 3rem;
  }
  #hero .hero-content .hero-header .hero-header-text h3 {
    font-size: 1.5rem;
  }
  #hero .hero-content .hero-header-divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  #hero .hero-content .hero-slogan {
    padding-bottom: 2rem;
  }
  #hero .hero-content .hero-slogan h2 {
    font-size: 3rem;
  }
  #hero .hero-content .hero-slogan h4 {
    font-size: 3rem;
  }
  #hero .hero-content .hero-slogan p {
    padding-top: 1.5rem;
    font-size: 1.2rem;
  }
  #hero .hero-content .hero-contacts .hero-contact {
    padding: 0.7rem 1.3rem 0.7rem 1.3rem;
  }
  #hero .hero-content .hero-contacts .hero-contact .contact-text .top-text {
    font-size: 0.8rem;
  }
  #hero .hero-content .hero-contacts .hero-contact .contact-text .bottom-text {
    font-size: 1rem;
  }
  #hero .hero-image {
    max-height: 70vh;
    min-width: 630px;
  }
}
@media (max-width: 1200px) {
  #hero {
    justify-content: center;
    width: 100vw;
  }
  #hero .hero-content {
    width: 100%;
    padding-top: 0px;
  }
  #hero .hero-content .hero-header {
    width: 100%;
    height: 20rem;
  }
  #hero .hero-content .hero-header .hero-logo {
    max-height: 100%;
    padding-top: 2rem;
  }
  #hero .hero-content .hero-header .hero-header-text {
    flex-grow: 1;
    padding-top: 2rem;
  }
  #hero .hero-content .hero-header .hero-image-mobile {
    flex-grow: 0;
    display: block;
    max-height: 100%;
  }
  #hero .hero-content .hero-header-divider {
    display: none;
  }
  #hero .hero-content .hero-slogan {
    padding-right: 2rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #hero .hero-content .hero-contacts {
    justify-content: center;
    align-items: center;
  }
  #hero .hero-image {
    display: none;
  }
}
@media (max-width: 900px) {
  #hero {
    justify-content: center;
  }
  #hero .hero-content .hero-header {
    height: 12rem;
  }
  #hero .hero-content .hero-header .hero-header-text h1 {
    font-size: 2.2rem;
  }
  #hero .hero-content .hero-header .hero-header-text h3 {
    font-size: 1.2rem;
  }
  #hero .hero-content .hero-slogan {
    padding-top: 2rem;
  }
  #hero .hero-content .hero-slogan h2 {
    font-size: 2.5rem;
  }
  #hero .hero-content .hero-slogan h4 {
    font-size: 2.5rem;
  }
  #hero .hero-content .hero-slogan p {
    font-size: 1.2rem;
  }
}
@media (max-width: 620px) {
  #hero .hero-content .hero-header {
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
    height: 8rem;
  }
  #hero .hero-content .hero-header .hero-header-text {
    flex-grow: 0;
  }
  #hero .hero-content .hero-header .hero-image-mobile {
    display: none;
  }
  #hero .hero-content .hero-header-divider {
    display: block;
  }
  #hero .hero-content .hero-header-divider .red-circle {
    display: none;
  }
  #hero .hero-content .hero-contacts {
    flex-direction: column;
    gap: 1rem;
    padding-right: 2rem;
  }
  #hero .hero-content .hero-contacts .hero-contact {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #hero .hero-content .hero-header {
    flex-direction: column;
    height: auto;
  }
  #hero .hero-content .hero-header .hero-logo {
    max-height: 10rem;
  }
  #hero .hero-content .hero-header .hero-header-text {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #hero .hero-content .hero-slogan {
    padding-top: 1.5rem;
  }
  #hero .hero-content .hero-slogan h2 {
    font-size: 1.8rem;
  }
  #hero .hero-content .hero-slogan h4 {
    font-size: 1.8rem;
  }
  #hero .hero-content .hero-slogan p {
    font-size: 1rem;
  }
}
#services {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
  padding-top: 4rem;
}
#services .offers-list {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 3rem;
  width: 90%;
  padding-top: 4rem;
}
#services .offers-list .offer-item {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  width: 40%;
  gap: 1.5rem;
  text-align: center;
}
#services .offers-list .offer-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f9f9f9;
}
#services .offers-list .offer-item p {
  color: #B3B3B3;
}

@media (max-width: 1200px) {
  #services .offers-list .offer-item {
    width: 70%;
  }
}
@media (max-width: 900px) {
  #services .offers-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 500px) {
  #services .offers-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #services .offers-list .offer-item {
    width: 90%;
  }
}
#cooperation {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
  padding-top: 4rem;
}
#cooperation .coop-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  text-align: center;
  width: 90%;
  gap: 1rem;
}
#cooperation .coop-steps .step {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9f9f9;
  width: 100%;
  gap: 2.5rem;
}
#cooperation .coop-steps .step .step-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
}
#cooperation .coop-steps .step .step-text h5 {
  color: #c42927;
  font-weight: bold;
  font-size: 1.6rem;
}
#cooperation .coop-steps .step .step-img {
  height: 10rem;
  width: 10rem;
}
#cooperation .coop-steps .arrow {
  height: 3rem;
  width: 3rem;
}

@media (max-width: 500px) {
  #cooperation .coop-steps .step {
    gap: 10%;
  }
  #cooperation .coop-steps .step .step-text {
    width: 40%;
  }
  #cooperation .coop-steps .step .step-text h5 {
    font-size: 1.4rem;
  }
  #cooperation .coop-steps .step .step-text p {
    font-size: 0.8rem;
  }
  #cooperation .coop-steps .step .step-img {
    width: 30%;
    height: auto;
  }
}
#contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 4rem;
}
#contacts .contacts-wrapper {
  width: 90%;
  background-color: #B3B3B3;
  padding: 1rem 2rem 1rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 1.5rem;
  border-radius: 1rem;
  margin-top: 4rem;
}
#contacts .contacts-wrapper .contact-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #c42927;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-radius: 1rem;
  gap: 1.5rem;
}
#contacts .contacts-wrapper .contact-item .contact-icon {
  max-height: 2.5rem;
  width: auto;
}
#contacts .contacts-wrapper .contact-item .contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
#contacts .contacts-wrapper .contact-item .contact-text .top-text {
  color: #B3B3B3;
  font-size: 1.4rem;
  font-weight: bold;
}
#contacts .contacts-wrapper .contact-item .contact-text .bottom-text {
  color: #f9f9f9;
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 1650px) {
  #contacts .contacts-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    width: 70%;
  }
}
@media (max-width: 900px) {
  #contacts .contacts-wrapper {
    width: 90%;
  }
}
@media (max-width: 900px) {
  #contacts .contacts-wrapper .contact-item {
    flex-direction: column;
    padding: 1.5 0.5 1.5 0.5;
    text-align: center;
  }
  #contacts .contacts-wrapper .contact-item .contact-text {
    align-items: center;
    gap: 0.5rem;
  }
  #contacts .contacts-wrapper .contact-item .contact-text .top-text {
    font-size: 1.2rem;
  }
  #contacts .contacts-wrapper .contact-item .contact-text .bottom-text {
    font-size: 1.4rem;
  }
}
#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #f9f9f9;
  padding: 1.5rem;
  margin-top: 2rem;
  background-color: #333;
}

.divider {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.divider .divider-line {
  height: 0.15rem;
  background-color: #c42927;
  flex-shrink: 1;
  flex-grow: 1;
}
.divider h2 {
  color: #f9f9f9;
  flex-shrink: 0;
  font-size: 2rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 1rem;
  padding-right: 1.5rem;
}

@media (max-width: 900px) {
  .divider h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  .divider {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .divider h2 {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .divider .divider-line {
    width: 100%;
  }
}

/*# sourceMappingURL=index.css.map */
