*{
    margin: 0;
    padding: 0;
}
h3{
    color: #000;
    text-align: center;
    font-family: "Source Sans 3";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
h4{
    color: #000;
    font-family: "Source Sans 3";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
a{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

body{
    background: #BED8A6;
    height: 100dvh;

}
.logo{
    position: absolute;
    left:50%;
    top: 16.06rem;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}
.logo img{
    width: 187px;
    height: 289px;
}
/* .location{
    width: 283px;
    height: 111px;
} */
.social_networks{
    position: absolute;
    bottom: 5.06rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - (2* 121px));
    display: flex;
   justify-content: space-between;
   align-items: center;
}
.instagram{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.facebook{
    display: flex;
    flex-direction: row;
    gap: 5px;
}

@media (max-width: 1399px) {

    html,
    body {
        font-size: 15px;
    }

}

@media (max-width: 1199px) {
    html,
    body {
        font-size: 14px;
    }

}

@media (max-width: 991px) {
    html,
    body {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    html,
    body {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    html,
    body {
        font-size: 10px;
    }
    h3, h4{
        font-size: 16px;
    }
    .logo{
        top: 87px;
        gap: 30px;
    }
    .location{
        bottom: 141px;
    }
    .social_networks{
        bottom: 53px;
        width: calc(100% - (2* 43px));;
    }
    .social_networks img{
        width: 21.5px;
        height: 22px;
    }
}
@media (max-height: 800px) {
    .logo{
        top: 7.7rem;
    }
    .social_networks{
        bottom: 3.3rem;
    }
}


