/* Global CSS */
*{
    margin: 0;
    padding: 0;
}

/* Header Css */
header{
    width: 100%;
    height: 60px;
    position: sticky;
    top: 0;
    background-color: transparent;
}
.stick{
    background-color: #1A1C2D;
    transition: 0.3s ease-in-out;
    z-index: 1;
}
header .container{
    width: 90%;
    margin: 0 auto;
    height: 100px;
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}
.button a{
    background-color: #2AADE3;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.logo img{
    width: 60px;
}

/* Banner Area Css */
.banner-area{
    margin-top: -80px;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(76deg, rgb(0 0 0 / 61%), #fff0), url(../images/Header-Background.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-area .container{
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}
.banner-area h2{
    font-size: 50px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.banner-area p{
    font-size: 18px;
    line-height: 30px;
    width: 600px;
    color: #fff;
    font-family: 'poppins', sans-serif;
    margin: 20px 0px 50px 0px;
}
.banner-area a{
    padding: 15px 20px;
    width: 220px;
    border: none;
    background-color: #2AADE3;
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    font-weight: 500;
    color: white;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
}

/* Call to action css */
.call-to-action{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(76deg, rgb(0 0 0 / 61%), #fff0), url(../images/calltoaction-Background.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.call-to-action .container{
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}
.call-to-action p{
    font-size: 18px;
    line-height: 30px;
    width: 600px;
    color: #fff;
    font-family: 'poppins', sans-serif;
    margin: 20px 0px 30px 0px;
}
.call-to-action a{
    background-color: #2AADE3;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    width: 100px;
    text-decoration: none;
    text-align: center;
}

/* Card Css */
.card-area{
    background-color: #060818;
    padding: 100px 0px;
}
.card-area .container{
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}
.card-area h2{
    font-size: 30px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
}
.card-area p{
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    font-family: 'poppins', sans-serif;
    margin: 20px 0px 50px 0px;
    text-align: center;
}
.card-area .images{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.card-area .images img{
    width: 200px;
    height: auto;
    border-radius: 8px;
    margin: 3px;
}

/* Footer Widget Css */
.footer-widget{
    width: 100%;
    height: 500px;
    background-color: #060818;
    border-top: 1px solid rgba(255, 255, 255, 0.324);
}
.footer-widget .container{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-widget img{
    width: 80px;
}
.widget-1{
    padding: 0px 30px;
}
.widget-1 p{
    font-size: 13px;
    line-height: 30px;
    color: #fff;
    font-family: 'poppins', sans-serif;
    margin: 20px 0px 50px 0px;
    text-align: center;
}
.widget-2{
    padding: 0px 30px;
}
.widget-2 h3{
    font-size: 18px;
    color: #fff;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    border-bottom: 1px solid rgba(255, 255, 255, 0.274);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.widget-2 ul{
    margin: 0;
    padding: 0;
}
.widget-2 ul li{
    list-style: none;
    padding: 8px 0px;
}
.widget-2 ul li a{
    text-decoration: none;
    font-size: 13px;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    color: #fff;
    line-height: 30px;
}
.widget-2 ul li a:hover{
    border-bottom: 1px solid #fff;
}

/* Footer Css */
footer{
    width: 100%;
    height: 100px;
    background-color: #060818;
    border-top: 1px solid rgba(255, 255, 255, 0.324);
}
footer .container{
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.social-icon ul{
    margin: 0;
    padding: 0;
    display: flex;
    
}
.social-icon ul li{
    list-style: none;
    padding: 0px 10px;
}
.social-icon ul li a{
    text-decoration: none;
    font-size: 25px;
    color: #fff;
}
.app-download{
    display: flex;
    align-items: center;
}
#logo-1{
    width: 150px;
    height: 100%;
}
#logo-2{
    width: 125px;
    height: 100%;
}

/* Slider Css Code Here */
.slider-area{
    width: 100%;
    height: 100%;
}
.slider-area .container{
    background-color: #000;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0px;
}
.videos{
    width: 100%;
    height: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.videos .slider{
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
}
.dots-list{
    width: 100%;
    height: 100px;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.dots-list img{
    width: 100px;
    height: 70px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.153);
}
.dots-list .active{
    border: 2px solid #fff;
}
.nextButton{
    display: none;
}
.prevButton{
    display: none;
}
.nextButton{
    position: absolute;
    top: 40%;
    left: 2%;
    width:60px;
    height: 100px;
    border-radius: 5px          ;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    cursor: pointer;
}
.prevButton{
    position: absolute;
    top: 40%;
    right: 2%;
    width:60px;
    height: 100px;
    border-radius: 5px          ;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    cursor: pointer;
}
.largePlayBtn{
    background: #000 !important;
    color: #fff;
}

/* media Query */
@media screen and (max-width: 1200px){
    .videos{
        height: 200px;
    }
    #nextButton{
        width:40px;
        height: 40px;
        font-size: 15px;
        top: 50%;
    }
    #prevButton{
        top: 50%;
        width:40px;
        height: 40px;
        font-size: 15px;
    }
    .dots-list img{
        width: 60px;
        height: 40px;
    }
    .dots-list .active{
        border: 2px solid #fff;
    }

}
@media screen and (max-width: 850px){
    .card-area .images img{
        width: 100px;
        height: auto;
    } 
    .banner-area p{
        width: 100%;
    }
    .call-to-action p{
        width: 100%;
    }
    .dots-list{
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 500px){
    .banner-area h2{
        font-size: 30px;
    }
    .banner-area p{
        font-size: 16px;
    }
    .banner-area a{
        font-size: 15px;
    }
    .card-area .images img{
        width: 60px;
        height: auto;
    } 
    #logo-1{
        width: 100px;
        height: 40px;
    }
    #logo-2{
        width: 80px;
        height: 25px;
    }
    .social-icon ul li a{
        font-size: 15px;
    }
    .footer-widget .container{
        flex-direction: column;
    }
    .widget-1{
        width: 100%;
        padding: 0px;
    }
    .widget-1 p{
        text-align: left;
    }
    .widget-2{
        width: 100%;
        padding: 0px;
    }
    .widget-2 p{
        text-align: left;
    }
    .widget-3{
        width: 100%;
        padding: 0px;
    }
    .widget-3 p{
        text-align: left;
    }
    .footer-widget{
        height: 100%;
        padding: 50px 0px;
    }
}
@media screen and (max-width: 400px){
    #logo-1{
        width: 60px;
        height: 35px;
    }
    #logo-2{
        width: 60px;
        height: 20px;
    }
}
