@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    background-color: #00032a;
    font: 16px/28px 'Be Vietham Pro', Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .4s;
}

/* ul li {
    list-style: none;
} */
img {
    max-width: 100%;
}

button {
    display: block;
    border: none;
    background-color: transparent;
    font: inherit;
    cursor: pointer;
    transition: .4s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding-top: 20px;
    padding-bottom: 50px;
}

.hero_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.time_image {
    max-width: 500px;
    object-fit: contain;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
    position: relative;
    display: block;
    transition: 0.5s;
    cursor: pointer;
}

.navbar-links li::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 100%;
    left: 0;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: right;
    background-color: #20b4e2;
}

.navbar-links li:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 1rem;
}

.navbar-links li:hover {
    color: #fff;
}

.toggle-button {
    position: absolute;
    top: 45px;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}


@media (max-width: 1160px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}




.btn-primary {
    padding: 12px 24px;
    background-color: #20b4e2;
    font-weight: 600;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #177b99
}

.tel_number {
    font-size: 24px;
}

#banner-section {
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 475px);
}

.banner {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Делит контейнер на две колонки, первая будет в два раза шире второй */
    gap: 20px;
}

.content_baner {
    grid-column: 1;
}

.banner-video {
    grid-column: 2;

}

.banner-header {
    font-size: 45px;
    line-height: 64px;
    letter-spacing: 0.6px;
}

.banner-text {
    margin: 32px 0 30px;
    font-size: 20px;
    color: rgb(255 255 255 / 80%);
}

.banner-links {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 40px;
}

.banner-features-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-right: 20px;
}

.banner-features-text-VR {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    margin-right: 20px;
}

.banner-features-text:first-child {
    margin-right: 40px;
}

.banner-features-text-strong {
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    margin-right: 5px;
    vertical-align: sub;
}

#rend-section {
    padding: 20px 0;
    padding-bottom: 60px;
}

.title-section {
    margin-bottom: 40px;
    font-size: 52px;
    line-height: 64px;
    letter-spacing: 0.6px;
    text-align: center;
}

.rent-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.rent {
    position: relative;
    height: 524px;
    background: url(img/play-vr-img2.png) 50%/cover no-repeat;
    font-weight: 600;
}

.rent:nth-child(2) {
    background-image: url(img/sim-img.jpg);
}

.rent-name {
    position: absolute;
    top: 48px;
    left: 48px;
    font-size: 40px;
    letter-spacing: 0.6px;
}

.rent-link {
    position: absolute;
    bottom: 48px;
    right: 60px;
    padding-right: 30px;
    font-size: 24px;
    letter-spacing: 0.6px;
}

.rent-link:hover {
    color: #fff;
}

.rent-link::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0px;
    width: 8px;
    height: 16px;
    transform: translateY(-50%);
    background: url(img/arrow.svg) 50%/cover no-repeat;

}

.services {
    display: flex;
    flex-direction: column;
}

.services_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    height: 140px;
}

#services-section {
    padding-bottom: 60px;
}

.title-services {
    margin-bottom: 66px;
    text-align: center;
    font-size: 52px;
    line-height: 60px;
    font-weight: 700;
}

.services-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services-img {
    /* padding-top:100px ; */
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    /* margin-bottom: 24px; */
}

.services-title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 2px;
}

.services-text {
    color: rgb(255 255 255 / 80%);
}

.destination-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    grid-gap: 2rem;
    margin: 2rem;
    margin-bottom: 100px;
}

.destination {
    background-color: #3d3a50;
    border: 1px solid #171717;
}

.destination-img {
    height: 240px;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}

.destination-info {
    padding: 24px;
}

.destination-title {
    font-size: 24px;
    line-height: 32px;
}

.destination-text {
    margin: 10px 0 25px;
    color: rgb(255 255 255 / 80%);
}

.destination-price {
    position: relative;

    display: block;
    font-weight: 600;
    margin-bottom: 17px;
    padding-left: 42px;
}

.destination-price::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background: url(img/hryvnia_sign_icon_199061.svg) no-repeat;

}

.destination-link {
    color: #20b4e2;
}

.destination-link:hover {
    color: #177b99;
}

#locations-section {
    padding-bottom: 102px;
}

.title-section {
    margin-bottom: 66px;
    margin-top: 0px;
    text-align: center;
    font-size: 52px;
    font-weight: 700;
}

#footer-section {
    padding-top: 40px;
    background: rgb(0, 10, 47);
    background: linear-gradient(180deg, rgba(0, 10, 47, 1) 50%, rgba(20, 0, 129, 1) 100%);
}

.title {
    margin-top: 30px;
    line-height: 1.75;
    font-size: 18px;
}

.map {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.column {
    flex-basis: 48%;
    padding: 10px;
    /* border: 1px solid #ccc;
    border-radius: 5px; */
}

.col-lg-7 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;


}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 64px;
    font-weight: 600px;
}

.footer-about__text {
    max-width: 235px;
    font-size: 18px;
    line-height: 32px;
}

.footer-nav-wrap {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    margin: 40px 100px 0 auto;
}

.footer-nav__header {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 20px;
}

.footer-nav__item {
    margin-bottom: 28px;
    line-height: 20px;
}

.footer-nav__link {
    color: rgb(255 255 255 / 80%);
}

.footer-nav__link:hover {
    color: #20b4e2;
}

.footer-social__link {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    background: url(img/facebook.svg) 50%/cover no-repeat;
}

.footer-social {
    margin-top: 32px;
}

.footer-social__link:nth-child(2) {
    background-image: url(img/instagram.svg);
}

.footer-social__link:nth-child(3) {
    background-image: url(img/youtube.svg);
    margin-bottom: 0;
}

.footer-copyright {
    padding: 20px 0;
    background-color: #EE8313;
}

.footer-copyright__text {
    text-align: center;
}

.top_footer {
    margin-bottom: 4rem;
}


/* Position the image container (needed to position the left and right arrows) */
.container {
    position: relative;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: 60px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Container for image text */
.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.column1 {
    float: left;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

/* УГОДА */
.po__title {
    font-size: 38px;
    line-height: 1.7;
    letter-spacing: 3px;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
    font-family: Montserrat;
}

.po__text {
    margin-bottom: 60px;
    margin-top: 30px;
}

.po__text .po__title-name {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-family: Montserrat;
    padding-top: 25px;
    line-height: 1.1;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.po__text .po__text-desc p {
    margin-bottom: 15px;
}

.po__text a,
.po__text a:hover {
    color: #20b4e2;
}

@media (max-width: 800px) {
    .po__title {
        font-size: 32px;
        line-height: 1.2;
        /* text-align: center; */
    }

    .po__text .po__title-name {
        font-size: 30px;
    }
}

@media (max-width: 420px) {
    .po__title {
        font-size: 24px;
        line-height: 1.6;
    }

    .po__text .po__title-name {
        font-size: 26px;
    }
}

/* КІНЕЦЬ УГОДИ */

/* adaptive */

@media only screen and (max-width: 1024px) {
    .banner {
        display: block;
        text-align: center;
    }

    .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }

}

@media only screen and (max-width: 992px) {
    .banner {
        display: block;
        text-align: center;
    }

    .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }

    .title-section {
        margin-bottom: 66px;
        margin-top: 0px;
        text-align: center;
        font-size: 52px;
        font-weight: 700;
    }

}

@media only screen and (max-width: 900px) {
    .title-section {
        font-size: 30px;
        justify-content: center;
    }

    .map {
        display: block;
    }

    .column {
        text-align: center;
    }

    .services-wrap {
        grid-template-columns: 1fr 1fr
    }
}

@media only screen and (max-width: 785px) {
    .title-section {
        font-size: 25px;
        justify-content: center;
    }

    .map {
        display: block;
    }

    .rent-wrap {
        display: block
    }

    .rent {
        margin-bottom: 20px;
    }

    .title-services {
        font-size: 30px;
    }

    video {
        width: 100%;
        height: auto;
        max-height: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .embed-responsive-item {
        width: 100%;
        max-height: 100%;
    }
}

@media only screen and (max-width: 576px) {}

@media only screen and (max-width: 320px) {}








/*  Comment */
.destination-info {
    height: calc(100% - 240px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
} */



.packet_price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.packet_price_title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 100%;
}

.packet_price_description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 100%;
}

.packet_price_items {
    display: flex;
    gap: 2rem;
}

.packet_price_items>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.packet_price_items>div span:nth-child(1) {
    font-weight: bold;
}

.packet_price_items>div span:nth-child(2) {
    font-style: italic;
    font-weight: bold;
}