* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #007fa4;
  --secondary-color: #253150;
}

.font-weight-light {
  font-weight: 100;
}

.section-logo {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  padding: 170px 40px;
  position: relative;
}

.section-logo:before,
.section-logo:after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.section-logo:before {
  background-image: url(../img/topo.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20vw;
}

.section-logo:after {
  background-image: url(../img/bottom.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
}

@media screen and (max-width: 600px) {
  .section-logo {
    padding: 120px 40px;
  }
}

.filter-white {
  filter: brightness(0) invert(1);
}

.section-logo img {
  max-width: 800px;
  width: 100%;
}

.section-contacts {
  background-color: var(--primary-color);
}

.section-contacts-items {
  align-items: center;
  display: flex;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 40px 20px;
}

@media screen and (max-width: 959.9px) {
  .section-contacts-items {
    flex-direction: column;
    gap: 12px;
  }
}

.section-contacts-items .item {
  color: white;
  display: flex;
  flex-direction: column;
}

.section-contacts-items .item .title {
  font-size: 35px;
  line-height: 1;
}

.section-contacts-items .item .btn {
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  font-size: 22px;
  height: 36px;
  justify-content: center;
  margin-right: 5px;
  text-decoration: none;
  width: 36px;
}

.section-contacts-items .item .arroba {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.whatsapp {
  align-items: center;
  display: flex;
  text-decoration: none;
}

.fa-whatsapp {
  font-size: 44px;
}

.tel-name {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  margin-left: 5px;
  text-transform: uppercase;
}

.tel-text {
  font-weight: 700;
  font-size: 20px;
}

.section-footer {
  align-items: center;
  background-color: var(--secondary-color);
  bottom: 0;
  display: flex;
  height: 90px;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 100%;
}

.section-footer .item {
  color: #777f92;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.6px;
}
