@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fustat:wght@200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", serif;
}

/* Navigation  */
main{
    padding: 0px 80px;
}

.navbar{
    display: flex;
    justify-content: left;
    align-items: center;
    border-bottom: 1px solid black;
    padding: 10px 0px;
}

.navbar a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px;
}

.navbar a:hover{
    color: orangered;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}
.nav-links li {
    margin: 0 10px;

}

.nav-links span{
    color: rgb(173, 181, 189);
    cursor: pointer;
}


/* CTA section */
.cta{
    height: 100%;
    padding: 20px 0px;
}

.cta p{
    margin: 20px;
    font-size: 58px;
    font-weight: 500;
}

.cta p span{
    color: rgb(173, 181, 189);
}

/* Carousel section */

#Carousel{
    display: flex;
    column-gap: 10px;
    padding: 40px;
    border-bottom: 1px solid black;
}

#Carousel .item video{
    object-fit: fill;
    border-radius: 10px;
    width: 380px;
    height: 280px;
}

/* Bolg-section */

#blog{
padding: 0px 0px;
}

#blog h1{
    font-size: 52px;
    font-weight: 500;
}

.blog-text{
    padding: 10px 0px;

}

.blog-text .text-con{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 10px;
    padding: 20px 0px;
    color: rgb(33, 34, 39);
    border-bottom: 1px dashed black;
}

.blog-text .text-con p{
    font-size: 14px;
    font-weight: 500;
}

.blog-text .text-con a{
    font-size: 24px;
    color: rgb(33, 34, 39);
    font-weight: 500;
}

.blog-text .text-con a:hover{
    color: orangered;
}

.see{
    padding: 10px 0px 50px 0px;
    font-size: 24px;
    font-weight: 500;
    color: orangered;
    border-bottom: 1px solid black;
}

/* page-section */

#page-section h1{
    padding: 20px 0px;
    font-size: 52px;
    font-weight: 400;
}

.page-img{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    width: 100%;
}

.page-img .web-icon img{
    display: flex;
    width: 440px;
    margin: 10px 0px;
    border-radius: 10px;
}

/* Footer */

#social{
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
    transition: 0.5s;
}

#social a{
    text-decoration: none;
    color: black;
    font-size: 32px;
    font-weight: 500;
}

#social a:hover{
    color: orangered;
}

.social-link{
    display: flex;
    column-gap: 20px;
    padding: 20px 0px;
}


.social-text{
    font-size: 20px;
    align-items: center;
    color: rgb(173, 181, 189);
}

/* RESPONCIVENES */

@media only screen and (min-device-width : 360px) and (max-device-width : 480px){

    main{
        padding: 0px 20px;
    }

    .nav-links{
        display: flex;
        align-items: center;
        font-size: 9px;
    }
    .cta p{
        font-size: 32px;
    }

    .nav-links li {
        margin: 0 5px;
    }

    #Carousel .item video{
        display: flex;
        object-fit: fill;
        column-gap: 20px;
        border-radius: 10px;
        width: 380px;
        height: 270px;
    }

    .blog-section h1{
        font-size: 32px;
        padding-top: 20px;
    }

    .blog-text .text-con p{
        font-size: 9px;
    }

    .blog-text .text-con a{
        font-size: 18px;
    }

    .page-section h1{
    font-size: 32px;
    }

    .page-img .web-icon img{
        width: 380px;
        height: 620px;
    }

    .social a{
        font-size: 18px;
        font-weight: 500;
    }

    .social-text{
        font-size: 12px;
    }

}

