@font-face {
    font-family: 'Poppins-SemiBold';
    src: url("/assets/fonts/Poppins-SemiBold.ttf");
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url("/assets/fonts/Poppins-Regular.ttf");
}

* {
    font-family: 'Poppins-Regular';
}

.brand-text {
    font-family: 'Poppins-SemiBold';
}

body {
    font-family: 'Roboto', sans-serif;
}

.carousel-item video {
    width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4.3vh;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 1.6vh;
    padding: 1vh;
}

.carousel {
    margin-bottom: 4.3vh;
    position: relative;
}

.slick-carousel div {
    width: 100%;
    height: 80vh;
    position: relative;
}

.slick-carousel div video,
.slick-carousel div img {
    width: 100%;
    border-radius: 0.8vh;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    font-size: 4vh;
    padding: 1vh 1.6vh;
    z-index: 10;
    cursor: pointer;
    border-radius: 0.8vh;
    transition: background-color 0.3s ease;
}

.slider-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-nav-btn-prev {
    left: 1vh;
}

.slider-nav-btn-next {
    right: 1vh;
}

#globalMuteUnmuteBtn {
    position: absolute;
    top: 1vh;
    right: 0.5vh;
    background-color: transparent;
    color: white;
    border: none;
    font-size: 2.5vh;
    padding: 1vh 1.6vh;
    z-index: 10;
    cursor: pointer;
    border-radius: 0.8vh;
    transition: background-color 0.3s ease;
}

#globalMuteUnmuteBtn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.btn-light:hover {
    border: 0.1vh solid #fff;
    background-color: rgb(220, 53, 69);
    color: #fff;
}

.social-icons a {
    font-size: 2.5vh;
    border-radius: 2vh;
    transition: background-color 0.3s ease;
}

.social-icons i {
    width: 5vh;
    height: 5vh;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    background-color: #000;
}

.social-icons i:hover {
    color: #fff !important;
}

@media (max-width: 767px) {
    .slick-carousel div {
        height: 26vh;
    }

    .slider-nav-btn {
        font-size: 2.5vh;
    }

    #globalMuteUnmuteBtn {
        font-size: 1.5vh;
    }
}