:root {
    --main-color: #E9262A;
    --second-color: #181A20;
    --third-color: #F8F8F8;
    --title-color: #181A20;
    --text-color: #181A20;
    --link-color: #181A20;
}
html{
    margin: 0 !important;
}
body {
    color: var(--text-color);
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    background: #fff;
    padding: 0 !important;
}
a{
    text-decoration: none;
    color: var(--link-color);
}
a:hover{
    color: var(--main-color);
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6{
    color: var(--title-color);
}
*{
    transition: all 0.3s ease-out;
}

.placehold{
    padding: 500px 0;
}
.logo img{
    height: 29px;
}
header{
    padding: 30px 0 30px 0;
    background: #fff;
}
header .header-top{
    background: #f9f9f9;
    border-bottom: #f0f0f0;
    padding: 10px 0;
    margin-bottom: 30px;
}
header .header-top p{
    font-size: 13px;
    padding: 0;
    margin: 0;
}
header ul.menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header ul.menu li{
    padding: 5px 15px;
    position: relative;
}
header ul.menu li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}
header ul.menu li ul{
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    z-index: 2;
    box-shadow: 0px 0px 50px 0px #B7B7B740;
    border-radius: 10px;
    padding: 5px 0;
}
header ul.menu li:hover ul{
    display: block;
}
header ul.menu li ul li ul{
    display: none !important;
}
header ul.menu li ul li{
    min-width: 210px;
    position: relative;
}
header ul.menu li ul.social li{
    min-width: auto;
}
header ul.menu li ul li:hover ul{
    display: block !important;
    right: 100%;
    top: 0;
    width: 100%;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.home-slider img{
    width: 100%;
    height: auto;
}
section{
    padding: 100px 0;
}
section.about video,
section.about img{
    display: block;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 0px 50px 0px #B7B7B740;
}
section.about{
    font-size: 14px;
    line-height: 26px;
}
h2.title{
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
}
section.about h2{
    margin-bottom: 20px;
}
section.about h4{
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: var(--main-color);
    margin: 20px 0;
}
section.about ul{
    list-style: disc;
    padding-left: 1.5rem;
}
section.videos{
    background: var(--third-color);
}
h6.title{
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #717171;
}
.video-slider{
    margin-top: 50px;
}
.video-slider .slick-slide{
    padding: 0 15px;
}
.video-slider a{
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.video-slider a:before{
    background: linear-gradient(180deg, #1A1C21 0%, rgba(0, 0, 0, 0) 100%);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.5;
}
.video-slider a img{
    width: 100%;
    /*aspect-ratio: 1;*/
    object-fit: cover;
}
.video-slider a span{
    position: absolute;
    left: 30px;
    top: 30px;
    right: 30px;
    color: #fff;
}
/*
.video-slider a:hover span{
    color: var(--main-color);
}
*/
.slick-prev,
.slick-next{
    background: #fff;
    border-radius: 100%;
    padding: 20px;
    color: var(--text-color);
    z-index: 2;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 35px 0px #0510361A;
}
.slick-prev:before,
.slick-next:before{
    content: unset;
}
.slick-prev{
    left: 0;
}
.slick-next{
    right: 0;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: var(--main-color);
    background: #fff;
}

footer{
    background: var(--second-color);
    padding: 50px 0;
    color: #fff;
}
footer hr{
    border-bottom: 1px solid #292D37;
    opacity: .3;
    margin: 30px 0;
}
footer p{
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}
footer h2, footer h3, footer h4, footer h5, footer a{
    color: #fff;
}
ul.social{
    display: flex;
    align-items: center;
    gap: 30px;
}
ul.social a{
    font-size: 20px;
    color: #BEBDBD;
}
ul.social a:hover{
    color: var(--main-color);
}
footer h4{
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
}
footer ul.menu a{
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
}
.menu-toggle{
    display: none;
}
header{
    position: relative;
}
header ul.menu li.alt{
    display: none;
}
@media(min-width:769px){
    .only-m{
        display: none !important;
    }
}

.video-slider a i{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 56px;
    color: #fff;
}
.video-slider a:hover i{
    color: var(--main-color);
}
header li.info{

}
header li.info p{
    margin: 0;
    font-size: 11px;
}
div.info h6{
    font-size: 12px;
    z-index: 1;
    position: relative;
}
div.info p{
    margin: 0;
    font-size: 11px;
    z-index: 1;
    position: relative;
}
header{
    position: relative;
    background: linear-gradient(90deg, #fff 0%, #fff 75%, #f2f2f2 75%, #f2f2f2 100%);
}
div.info{
    position: relative;
    padding-left: 1rem;
}
div.info:before{
    background: #f2f2f2;
    transform: skew(-15deg);
    position: absolute;
    left: -20px;
    right: -20px;
    top: -30px;
    bottom: -30px;
    content: "";
}

@media(max-width:768px){
    header{
        background: #fff;
    }
    div.info{
        display: none;
    }
    header ul.menu{
        display: none;
    }
    .menu-toggle{
        display: block;
        text-align: right;
        width: max-content;
        margin-left: auto;
        font-size: 24px;
    }
    header ul.menu.show{
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 100%;
        width: 100%;
        height: calc(100vh - 96px);
        background: #fff;
        z-index: 2;
        overflow: scroll;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
    header ul.menu li a{
        font-size: 30px;
        line-height: 30px;
        font-weight: 600;
    }
    header ul.menu li{
        padding: 20px;
    }
    header ul.menu li i{
        font-size: 16px;
    }
    header ul.menu li:hover ul{
        position: static;
        box-shadow: none;
    }
    header ul.menu li ul{
        padding-top: 30px;
    }
    header ul.menu li ul li{
        padding: 0;
    }
    header ul.menu li ul li a{
        font-size: 14px;
        font-weight: 400;
        line-height: 26px;
    }
    header ul.menu li ul li:hover ul{
        position: static;
    }
    header ul.menu li ul li ul{
        padding-top: 0;
        padding-left: 5px;
    }
    header ul.menu li.alt{
        display: block;
        margin-top: 50px;
    }
    header ul.social{
        display: flex !important;
        align-items: center;
        gap: 30px;
        position: static !important;
        box-shadow: none !important;
    }
    header ul.social li a{
        color: var(--link-color);
    }
    header ul.social li a i{
        font-size: 24px;
    }
    .home-slider img{
        object-fit: cover;
        aspect-ratio: 1;
    }
    section{
        padding: 50px 0;
    }
    section.about video,
    section.about img{
        margin-bottom: 30px;
    }
    .video-slider .slick-prev{
        left: 37%;
        top: 98%;
    }
    .video-slider .slick-next{
        right: 37%;
        top: 98%;
    }
    .only-d{
        display: none !important;
    }

}