@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

.map {
    position: relative;
    padding: 80px 0;
    background: url('./img/bg.jpg') no-repeat;
    background-size: 100% 100%;
    font-family: Play, sans-serif;
    font-weight: bold;
}

.map > .container {
    position: relative;
}

.language-selector {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
}

.language-selector span {
    color: #5f9594;
}

.language-selector a {
    color: #1f5ba1;
    text-decoration: none;
    transition: .3s;
}

.language-selector a:hover {
    color: #35bde3;
}

.title {
    padding: 0 50px 50px 50px;
    text-align: center;
    font-size: 1.4vw;
    color: #1f5ba1;
}

.map-buttons {
    text-align: center;
}

.map-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4vw;
    padding: 0 1vw;
    border: solid 3px #204f9b;
    border-radius: 20px;
    background: #1f5ba1;
    color: #fff;
    font-family: Play, sans-serif;
    font-weight: bold;
    font-size: 1vw;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 20px 0 0 rgba(0, 0, 0, 0.15);
	transition: .3s
}

.map-buttons a:hover {
	background: #35bde3;
}

.map-content {
    position: relative;
    margin-top: 100px;
}

.map-content .row > div {
    margin: 15px 0;
}

.map-content-block {
    height: 100%;
    padding: 4vw 5vw;
    border: solid 4px #427e7d;
    border-radius: 20px;
    background: #8fd9ce;
    color: #5f9594;
    font-size: 1.6vw;
}

.map-content-block div {
    line-height: 1;
}

.map-content-block button {
    margin: 4vw 0;
    padding: 0 20px;
    border: solid 3px #204f9b;
    border-radius: 10px;
    background: #1f5ba1;
    color: #fff;
    font-family: Play, sans-serif;
    font-weight: bold;
    font-size: 1.5vw;
	transition: .3s
}

.map-content-block button:hover {
	background: #35bde3;
}

.map-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #e32a44, 0 0 0 12px #fff;
    transform: translateX(-50%) translateY(-50%);
}

.modal-content {
    background: #baddd8;
}

.modal-content-title {
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.modal-content img {
    max-width: 100%;
    margin-bottom: 1rem;
}

.modal-content p {
    text-indent: 2rem;
}

.modal-content ul {
    list-style: none;
}

.close {
    border: 0;
    background: transparent;
    font-size: 32px;
}

.preload {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
}

.preload img {
    position: absolute;
    top: 50vh;
    left: 50%;
    width: 0;
    transform: translateX(-50%) translateY(-50%);
}

.contacts {
    margin-top: 50px;
    text-align: center;
    color: #fff;
    font-size: 1vw;
}

.contacts a {
    color: #fff;
    text-decoration: none;
}

@media (min-width: 1590px) {
    .container {
        max-width: 1560px;
    }
}