/* custom-font.css */

@font-face {
    font-family: "NunitoSans";
    font-weight: 400;
    src: url("../fonts/NunitoSans/NunitoSans_7pt-Regular.ttf")
        format("truetype");
}

@font-face {
    font-family: "NunitoSans";
    font-weight: 900;
    src: url("../fonts/NunitoSans/NunitoSans_7pt-Black.ttf") format("truetype");
}

@font-face {
    font-family: "NunitoSans";
    font-weight: 600;
    src: url("../fonts/NunitoSans/NunitoSans_7pt-SemiBold.ttf")
        format("truetype");
}

@font-face {
    font-family: "NunitoSans";
    font-weight: 200;
    src: url("../fonts/NunitoSans/NunitoSans_7pt-Light.ttf") format("truetype");
}

@font-face {
    font-family: "Raleway";
    font-weight: 600;
    src: url("../fonts/Raleway/Raleway-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-weight: 600;
    src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-weight: 400;
    src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-weight: 500;
    src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-weight: 700;
    src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
}

body {
    overflow-y: scroll !important;
    padding: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Additional styles using the custom font */
* {
    font-family: "Roboto";
}

.section-container {
    padding-left: 140px;
    padding-right: 140px;
}

.floatingButton {
    align-items: center;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 999999;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .section-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Sidenav */

/* The side navigation menu */
.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 999999;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: #111;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
    scrollbar-width: none;
    /* Hide scrollbar in Firefox 64+ */
    scrollbar-color: transparent transparent;
    /* Optional: Set scrollbar color to transparent in Firefox 64+ */
}

.sidenav::-webkit-scrollbar {
    width: 0;
    /* Set the width to 0 to hide the scrollbar */
}

/* The navigation menu links */
.sidenavText {
    text-decoration: none;
    font-size: 20px;
    color: #fff !important;
    display: block;
    transition: 0.3s;
    cursor: pointer;
}

/* When you mouse over the navigation links, change their color */
.sidenavText:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left 0.5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.custom-menu .MuiList-root,
MuiList-padding,
MuiMenu-list {
    background: #222222 !important;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.video-container {
    margin: 10px;
    display: inline-block;
    position: relative;
}

.video-feed {
    background-color: black;
}

.form_error {
    color: rgb(245, 37, 37);
    font-size: 15px;
}

.custom-swiper {
    overflow: hidden !important;
}

.blog-category::-webkit-scrollbar {
    width: 5px; /* Set the width */
    height: 5px; /* Set the height */
    background-color: #f1f1f1; /* Set the background color */
}

/* Target the thumb (the draggable part) of the scroll bar */
.blog-category::-webkit-scrollbar-thumb {
    background-color: #ececec; /* Set the color of the thumb */
    border-radius: 4px; /* Make the thumb more rounded */
}
.swiper-wrapper {
    height: auto !important;
}
