html,
body {
  margin: 0;
  overflow-x: hidden;
}

body>*:not(.thumbnail) {
  padding-inline: 15px;
  box-sizing: border-box;
}

* {
  font-family: "Nunito Sans", serif;
}

.thumbnail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-image: url(../images/thumbnail.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 550px;
}

.left-content {
  margin-top: 50px;
  margin-left: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 30px;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 30px;
}

h1,
h2 {
  font-weight: lighter;
  text-align: center;
  margin-block: 26px;
  text-transform: uppercase;
  color: #532c1a;
  line-height: 70px;
}

@media (max-width: 1024px) {
  .left-content {
    margin-inline: auto;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 30px;
  }
}

.golden-divisor {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.golden-divisor div:nth-child(1) {
  height: 4px;
  width: 30%;
  border: none;
  background: linear-gradient(to bottom, #cfc09f 27%, #ffecb3 40%, #3a2c0f 78%);
}

.golden-divisor div:nth-child(2) {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #cfc09f 27%, #ffecb3 40%, #3a2c0f 78%);
}

.golden-divisor div:nth-child(3) {
  height: 4px;
  width: 30%;
  border: none;
  background: linear-gradient(to bottom, #cfc09f 27%, #ffecb3 40%, #3a2c0f 78%);
}

.contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}

.contact__button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background-color: #5b3f3185;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 700;
}

.contact__button:hover {
  background-color: #6c422d;
}

.contact__text {
  color: #392526;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-title {
  color: #532c1a;
  text-align: center;
  font-size: 28px;
  line-height: 40px;
  font-weight: bold;
}

.section-description {
  text-align: center;
  color: #666;
  margin-top: -20px;
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
  margin-block: 70px;
  margin-inline: auto;
  gap: 100px;
}

.specialties>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 250px;
}

.specialties img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(89%) saturate(800%) hue-rotate(5deg) brightness(90%) contrast(90%);
}

.specialties__title {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  line-height: 40px;
}

.specialties__desc {
  text-align: center;
  color: #666;
}

.about-company {
  background-color: #cabdab;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-right: 0 !important;
}

.about-company>div {
  width: 50%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .about-company {
    flex-direction: column;
    padding: 0 !important;
  }

  .about-company>div {
    width: auto;
  }
}

.about-company__left {
  margin: 25px;
  align-content: center;
}

.about-company .section-title {
  text-align: left;
}

.about-company__item {
  margin-left: 15px;
  margin-block: 15px;
}

.about-company__img {
  background-image: url(../images/about-company.jpeg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 450px;
}

.mt-50 {
  margin-top: 50px;
}