@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
    font-family: "Poppins";
    box-sizing: border-box;
}
html,
body {
    padding: 0;
    margin: 0;
    background: #f7f8f9;
     color: #4A4A4A;
}

.text {
    color: #4A4A4A;
    padding:0 15px;
}
.text--large {
    font-size: 30px;
}
.text--center {
    text-align: center;
}

.text--uppercase {
    text-transform: uppercase;
}

.text--medium {
    font-weight: 500;
}

.header {
    background: #b46768;
}

.header__container {
    padding: 12px 15px;
    max-width: 1170px;
    width: 100%;
    margin: auto;
    position: relative;
}

.header__row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.header__text {
    font-weight: 700;
    color: #ffffff;
}

.header__text a {
    color: inherit;
    text-decoration: none;
}

.header__text a:hover {
    text-decoration: underline;
}

.logo {
    position: absolute;
    left: 0;
    top: 0;
}

.ue {
    position: absolute;
    right: 0;
    top: 0;
}

.content {
    padding-top: 80px;
}

.content__container {
    padding: 0px 15px;
    max-width: 1170px;
    width: 100%;
    margin: auto;
}

.content__text {
    font-size: 18px;

    line-height: 150%;
  
    margin:10px auto;
    
}

.content__text a{
    color:#b46768;
    text-decoration: none;
}

.content__text  a:hover{
    text-decoration: underline;
}

.buttons {
    margin: 40px 0 60px 0;
}

.buttons__row {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.buttons__item {
    background: #b46768;
    width: 100%;
    max-width: 260px;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    transition:background 0.3s;
}

.buttons__item:hover{
    background:#804041;
}

.map {
    width: 100%;
    height: 380px;
    border: 0;
}

.centered{
    margin:auto;
    display:block;
}

.centerText{
    text-align: center;
    max-width: 900px;
    margin: auto;
}

i{
    font-size:30px;
}

.margin{
    margin-top:40px;
}

@media (max-width:992px){
      .header{
        text-align: center;
    }

    .header__row{
        margin-top:10px;
    }
    .logo{
        position:static;
      
    }

    .text{
        font-size:22px;
    }
   

    .content{
        padding-top:40px;
    }
    .content__text{
        font-size:16px;
    }

  
}

@media (max-width:767px){
    .header__row{
        flex-direction: column;
        gap:10px;
    }

     .ue{
        position:static;
    }

    .buttons__row{
        flex-direction: column;
        gap:20px;
    }

    
}

img{
    max-width: 100%;
}