body {
    font-family: 'Roboto', sans-serif;
    background-color: black;
    font-weight: 600;
}

.container {
    width: 1200px;
    height: 100vh;
    
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

.logo {
    width: 270px;
    height: 150px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.logo img {
    width: 100%;
    height: auto;
}

.map {
    width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
}

#canvas {
    width: 560px;
    height: 300px;
    position: absolute;
    top: 80px;
    left: 280px;
}

.map img {
    width: 100%;
    height: auto;
}

.map .map__location {
    width: 75px;
    height: 100px;
    position: absolute;
    top: 144px;
    left: 258px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.map .map__location .map__city {
    color: white;
    font-size: 30px;
    text-align: center;
    position: relative;
}



.map .map__location img {
    width: 25px;
    height: 35px;
}

.map .map__location-bukhara {
    top: 247px;
    left: 467px;
}

.map .map__location-samarkand {
    top: 295px;
    left: 573px;
}

.map .map__location-tashkent {
    top: 137px;
    left: 711px;
}

.map .map__location-fergana {
    top: 183px;
    left: 798px;
}

.isActive span {
    color: #ff0008;
}



.airplane {
    position: absolute;
    width: 50px !important;
    height: 50px !important;
    animation: moving 30s infinite;
    animation-delay: 3s;
    transform-origin: -5px 1200px;
}

.airplane-second {
    position: absolute;
    width: 50px !important;
    height: 50px !important;
    animation: moving-second  25s infinite;
    animation-delay: 2s;
    transform-origin: -0 -600px;
}


.airplane-third {
    position: absolute;
    width: 50px !important;
    height: 50px !important;
    animation: moving-third  25s infinite;
    animation-delay: 3s;
    transform-origin: -0 500px;
}

.airplane-forth {
    position: absolute;
    width: 50px !important;
    height: 50px !important;
    animation: moving-forth 20s infinite;
    animation-delay: 2s;
    transform-origin: -0 800px;
}

@keyframes moving {
    100% {transform: rotate(360deg);}
}


@keyframes moving-second {
    100% {transform: rotate(360deg);}
}

@keyframes moving-third {
    100% {transform: rotate(360deg);}
}

@keyframes moving-forth {
    100% {transform: rotate(-360deg);}
}

.mobile-section {
    display: none;
}




.mobile__map-city {
    color: azure;
    font-size: 30px;
}



@media (max-width: 768px) {
    .container {
        display: none;
    }

    .mobile-section {
        display: block;
        width: 100%;
        min-height: 1275px;
        overflow: hidden;
    }

    .mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile__location {
        width: 300px;
        height: 300px;
        border: 2px solid red;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .mobile__location img {
        width: 80%;
        margin-top: 35px;
    }

    .mobile__map-city {
        font-size: 50px;
    }

}

@media (max-width: 412px) {

    .mobile-section {
        width: 100%;
        min-height: 935px;
        overflow: hidden;
        padding-bottom: 20px;
    }

    .mobile__location {
        width: 180px;
        height: 180px;
        border: 2px solid red;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .mobile__location img {
        width: 80%;
        margin-top: 25px;
    }

    .mobile__map-city {
        font-size: 30px;
    }

}

.description{
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    width: 100%;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
}
.description-mobile {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}