.infomations-and-map .container{
    border-bottom: 1px solid rgb(153, 153, 153);
    padding-bottom: 50px;
    max-width: 857px;
}

.infomations-and-map .title{
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: none;
}

.infomations-and-map .items .name{
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    margin-top: 20px;
    text-shadow: none;
}

.infomations-and-map.hide-border .container{
    border: none;
}
.infomations-and-map{
    background-color: rgb(93, 102, 87);
    padding-bottom: 50px;
}
.infomations-and-map .items{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 643px;
    margin: 0 auto;
}

.infomations-and-map .item{
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc((100% - 15px * 2) / 3);
    padding: 25px;
    box-sizing: border-box;
    position: relative;
}

.infomations-and-map .item::after{
    content: "";
    width: 16px;
    height: 24px;
    object-fit: contain;
    background-image: url(./images/swe_vimpel.svg);
    position: absolute;
    bottom: -24px;
    right: 30px;
}

.infomations-and-map .item .image{
    border-radius: 50%;
    width: 100%;
    max-width: 149px;
}

.infomations-and-map .item .image img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.infomations-and-map .item .link{
    color: #333333;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.infomations-and-map .item .link:hover{
    text-decoration: underline;
}

.infomations-and-map .item .name{
    color: #333333;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
}

.infomations-and-map .description{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin:  30px 0;
    margin-top: 50px;
}

.infomations-and-map .description .sub-title{
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    text-shadow: none;
}

.infomations-and-map .description a, .infomations-and-map .description p{
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    text-decoration: none;
    margin: 0;
}

.infomations-and-map .description a:hover{
    text-decoration: underline;
}

.infomations-and-map .description a p{
    margin: 0;
}

.infomations-and-map .map-iframe{
    border: 3px solid rgb(203, 203, 203);
    max-width: 417px;
    height: 320px;
    margin: 0 auto;
}

.infomations-and-map .map-iframe p{
    margin: 0;
}

.infomations-and-map .map-iframe iframe{
    width: calc(100% - (10px * 2));
    height: calc(100% - (10px * 2));
    margin: 10px;
}

@media(max-width: 767.98px){
    
    .infomations-and-map .item{
        width: calc((100% - 15px) / 2);
        padding: 19px;
    }

    .infomations-and-map .items{
        max-width: 341px;
        row-gap: 40px;
    }

    .infomations-and-map .item .image{
        max-width: 119px;
    }

    .infomations-and-map .description{
        margin: 40px 0;
    }
}