.btns {
   padding: 10px 20px;
   border-radius: 6px;
   font-size: 14px;
   font-weight: 400;
   display: flex;
   align-items: center;
   justify-content: center;
   height: fit-content;
}

.btns>img {
   margin-left: 10px;
   width: 18px;
   height: 18px;
}

.main {
   background-image: url('/assets/img/contacts-bg.png');
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
   width: 100%;
   min-height: 700px;
   position: relative;
}

.main .welcome {
   width: calc(100% - 20px);
   max-width: 600px;
   position: absolute;
   left: 10%;
   top: 40%;
}

.main .welcome .welcome-title {
   padding: 10px 15px;
   color: #FFFFFF;
   font-weight: bold;
   font-size: 48px;
   line-height: 1.1;
}

.main .welcome .welcome-text {
   padding: 10px 15px;
   color: #FFFFFF;
   font-size: 12px;
   max-width: 70%;
   text-align: justify-all;
}

.main .welcome .welcome-buttons {
   padding: 10px 15px;
   display: flex;
}

.main .welcome .welcome-buttons>* {
   margin-right: 15px;
}

.btns-light {
   background: #F1EEE6;
   color: #A68F7D;
}

.btns-tran {
   background: transparent;
   color: #FFFFFF;
   border: 1px solid #FFFFFF;
}

.btns-white {
   background: #FFFFFF;
   color: #A68F7D;
   border: 1px solid #A68F7D;
}

.btns-white img {
  filter: brightness(0) saturate(100%);
  mix-blend-mode: multiply;
  background-color: #A68F7D;
}


@media (max-width: 768px) {
  .main {
    min-height: 500px;
    padding: 40px 20px;
    background-position: center top;
  }

  .main .welcome {
    left: 5%;
    top: 30%;
    max-width: 90%;
    width: 90%;
  }

  .main .welcome .welcome-title {
    font-size: 28px;
    text-align: center;
  }

  .main .welcome .welcome-text {
    font-size: 13px;
    max-width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .main .welcome .welcome-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-top: 20px;
  }

  .main .welcome .welcome-buttons > * {
    margin: 0;
  }

  .btns {
    width: 100%;
    max-width: 280px;
  }
}


section {
  padding: 60px 20px;
  background: #fff;
}

.breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;


}

.breadcrumb a {
    color: #888;
    text-decoration: none;
  }

.breadcrumb span {
    font-weight: 500;
  }  

.document {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  padding-top: 20px;

  h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  p {
    margin-bottom: 15px;
  }

  ul {
    margin-bottom: 20px;
    padding-left: 20px;

    li {
      list-style: disc;
      margin-bottom: 8px;
    }
  }

  a {
    color: #7d5a4f;
    text-decoration: underline;

    &:hover {
      text-decoration: none;
    }
  }
}
