@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato';
}
:root{
    --color_1: #121212;
    --text_color: #db8e50;
    --accent_color: #2e4e9b;
}
body{
    font-family: 'Poppins', sans-serif;
    background: rgb(35, 35, 35);
    padding: 0 35px;
}
nav
{
    height: 60px;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display:flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0px;
}
.links_container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.e2e_logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 90%;
    width: 6%;
    size-adjust:inherit;
}
nav a{
    height: 100%;
    padding: 0 20px;
    display:flex;
    align-items: center;
    text-decoration: none;
    color: rgb(255, 255, 255);  
    font-weight: 700;
    font-size: 18px;
}
nav a:hover{
    transition: 0.3s ease-out;
}
nav svg{
    fill: var(--text_color);
}
#sidebar-active{
    display: none;
}
.open_sidebar_button, .close_sidebar_button{
    display: none;

}
.contact_us_logo{
    margin-right: auto;
}
.contact_us_logo img{
    width: 100%;
    height: 100%;
}
.contact_us_logo:hover{
    background-color: transparent;
    transition: 0.3s ease-out;
}

@media(max-width: 750px) {
    .links_container{
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 200px;
        background-color: var(--color_1);
        box-shadow: -5px 0 5px rgba(0,0,0,0.3);

        transition: .7s ease-out;
    }
    .contact_us_logo{
        display: none;
    }
    nav a{
        box-sizing: border-box;
        height: auto;
        width: 100%;
        color: #fff;
        padding: 30px 30px;
        justify-content: flex-start;

    }
    .open_sidebar_button, .close_sidebar_button{
        display: block;
        padding: 20px;
        cursor:grab;
    }
    #sidebar-active:checked ~ .links_container{
        right: 0;
    }
    #sidebar-active:checked ~ #overlay
    {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }
}
.outer_bg{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.video_bg{
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}
.wrapper{
    max-width: 1200px;
    position: relative;
}
.wrapper i{
    top: 50%;
    height: 46px;
    width: 46px;
    position: absolute;
    font-size: 1.2rem;
    text-align: center;
    line-height: 46px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: translateY(-50%);
}
.wrapper i:first-child{
    left: -23px;
    display: none;
}
.wrapper i:last-child{
    right: -23px;
}
.wrapper .carousel{
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}
.carousel.dragging{
    cursor: grab;
    scroll-behavior: auto;
}
.carousel.grabbing img{
    pointer-events: none;
}
.carousel img{
    height: 500px;
    object-fit:cover;
    margin-left: 14px;
    width: calc(100% / 3);
}
.carousel img:first-child{
    margin-left: 0px;
}
@media screen and (max-width: 900px){
    .carousel img{
        width: calc(100% / 2);
    }
    .outer_bg{
        min-height: 80vh;
    }
}
@media screen and (max-width: 550px){
    .carousel img{
        width: 100%;
    }
    .outer_bg{
        min-height: 90vh;
    }
}

.media-player-container {
    max-width: 640px;
    width: 100%;
    text-align: center;
}
  
.video-player {
    background-color: #222;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(203, 203, 203, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
  
.video-player video {
    width: 100%;
    max-height: 360px;
    background: black;
    outline: none;
    user-select: none;
}
  
.controls {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #181818;
    padding: 12px 8px;
    gap: 8px;
    flex-wrap: wrap;
}
  
.controls button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.25s, color 0.25s;
}
  
.controls button:hover,
.controls button:focus {
    background-color: #ffffff;
    color: #121212;
    outline: none;
}
  
#volumeSlider {
    width: 120px;
    cursor: pointer;
    background: #444;
    height: 6px;
    border-radius: 4px;
    transition: background-color 0.3s;
}
  
#volumeSlider:hover,
#volumeSlider:focus {
    background: #ffffff;
    outline: none;
}
  
#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
    transition: background-color 0.3s;
}
#volumeSlider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
  
  /* Mobile responsiveness */
@media (max-width: 600px) {
    .video-player video {
      max-height: 220px;
    }
  
    .controls {
      gap: 2px;
    }
  
    #volumeSlider {
      width: 60px;
      height: 5px;
    }
  
    #volumeSlider::-webkit-slider-thumb,
    #volumeSlider::-moz-range-thumb {
      width: 12px;
      height: 12px;
      margin-top: -5px;
    }
  
    .controls button {
      font-size: 1.3rem;
      padding: 5px 8px;
    }
}


  