@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

body.lock {
    overflow: hidden;
}

.zaq-play {
    text-align: center;
    color: #fff;
    margin-bottom: 5%;
    font-size: 32px;
}

.mt {
    margin-top: 7%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background: #0c0b54;
    background: -moz-linear-gradient(-45deg, #0c0b54 0%, #000000 100%);
    background: -webkit-linear-gradient(-45deg, #0c0b54 0%, #000000 100%);
    background: linear-gradient(135deg, #0c0b54 0%, #000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c0b54', endColorstr='#000000', GradientType=1);
    background-repeat: no-repeat;
}

.img-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.img-container .img {
    width: 400px;
    height: 250px;
    box-shadow: 1px 1px 25px 10px #3e5bad;
    overflow: hidden;
    margin-bottom: 5%;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: .5s;
}

.img-container .img:hover img {
    transform: scale(1.1);
}

.model_windows {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, .8);
}

.model_windows img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 1px 1px 25px 10px #3066FF;
    width: 1000px;
}

.model_windows span {
    position: fixed;
    top: 10%;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
}

span.next {
    margin-top: 20%;
}

span.prev {
    left: 10px;
    margin-top: 20%;
}

@media screen and (max-width: 1024px) {
    .zaq-play {
        font-size: 24px;
    }

    .mt {
        margin-top: 15%;
    }

    .model_windows span {
        top: 13%;
    }

    .model_windows img {
        width: 80%;
    }
}

@media screen and (max-device-width: 768px) {
    .img-container .img {
        width: 300px;
        height: 200px;
    }

    span.next {
        margin-top: 40%;
    }

    span.prev {
        margin-top: 40%;
    }
}

@media screen and (max-width: 540px) {

    .mt {
        margin-top: 20%;
    }

    .img-container .img {
        width: 40%;
        height: 100px;
    }


    span.next {
        margin-top: 70%;
    }

    span.prev {
        margin-top: 70%;
    }
}