@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+20&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "SUSE";
}
header nav{
    display: flex;
    justify-content: space-between;
    padding: 50px 100px;
}
header nav img{
    width: 50px;
    cursor: pointer;
}
header nav ul{
    display: flex;
    gap: 50px;
    list-style-type: none;
}
header nav ul li a{
    text-decoration: none;
    color: black;
}
header nav ul li a::after{
    content: "";
    width: 0%;
    height: 2px;
    background-color: aqua;
    display: block;
    margin: auto;
    transition: 0.5s;
}
header nav ul li a:hover::after{
    width: 100%;
}
.icon-menu{
    width: 25px;
    display: none;
}
header section{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 80%;
    margin: 50px auto;
}
header section div{
    text-align: center;
    width: 60%;
    margin: auto;
}
header section div h1{
    font-size: 45px;
}
header section div p{
    padding: 25px;
}
header section div a{
    font-family: "Jersey 20", sans-serif;
    font-size: 20px;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 10px 50px;
    transition: 0.5s;
}
header section div a:hover{
    background-color: aqua;
    border-color: aqua;
    box-shadow: 1px 1px 3px black;
}
header section div swiper-slide{
    width: 70%;
}
header section div swiper-slide img{
    width: 100%;
}
@media (max-width: 1000px){
    header nav{
        display: flex;
        justify-content: space-between;
        padding: 10px;
    }
    header nav ul{
        display: flex;
        flex-direction: column;
        position: absolute;
        background-color: white;
        height: 70vh;
        width: 200px;
        top: 0;
        left: -200px;
        text-align: center;
        z-index: 2;
        border-radius: 0 0 5px 0;
        transition: 0.5s;
    }
    header nav ul li a::after{
        content: "";
        width: 0%;
        height: 2px;
        background-color: aqua;
        display: block;
        margin: auto;
        transition: 0.5s;
    }
    header nav ul li a:hover::after{
        width: 30%;
    }
    .icon-menu{
        display: block;
        margin: 10px;
        cursor: pointer;
    }
    #arrow{
        transform: rotate(180deg);
    }
    header section{
        flex-direction: column;
    }
    header section div h1{
        margin: 0px auto;
        font-size: 30px;
    }
    #overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
    }
}
.row{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 50px;
}
.button{
    font-family: "Jersey 20", sans-serif;
    font-size: 20px;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 10px 50px;
    transition: 0.5s;
}
.button:hover{
    background-color: aqua;
    border-color: aqua;
    box-shadow: 1px 1px 3px black;
}
main .projects{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
main .projects h1{
    font-size: 30px;
    padding-bottom: 5px;
}
main .projects .projects-col p{
    padding: 25px;
    text-align: justify;
}
main .projects .projects-col{
    flex-basis: 44%;
    margin-bottom: 5%;
    cursor: pointer;
    margin: auto;
}
main .projects .projects-col img{
    width: 70%;
}
main .testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
main .testimonials h1{
    font-size: 30px;
    padding-bottom: 5px;
}
main .testimonials .row .testimonials-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background-color: rgba(0, 255, 255, 0.2);
    padding: 25px;
    cursor: pointer;
    display: flex;
    transition: 0.5s;
}
main .testimonials .row .testimonials-col:hover{
    box-shadow: 1px 1px 3px black;
}
main .testimonials .row .testimonials-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
main .testimonials .row .testimonials-col div img{
    height: 20px;
}
main .testimonials .row .testimonials-col div p{
    padding: 0;
}
main .testimonials .row .testimonials-col div h3{
    margin: 15px 0px 15px 0px;
    font-family: "Jersey 20", sans-serif;
    text-align: left;
}
@media (max-width: 750px){
    .row{
        flex-direction: column;
        gap: 25px;
    }
    main .testimonials .row .testimonials-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}
main .about{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
main .about h1{
    font-size: 30px;
    padding-bottom: 5px;
}
main .about .about-col p{
    padding: 25px;
    text-align: justify;
}
main .about .about-col{
    flex-basis: 44%;
    margin-bottom: 5%;
    cursor: pointer;
    margin: auto;
}
main .about .about-col img{
    width: 70%;
    border-radius: 50%;
    border: 5px solid aqua;
}
footer{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
footer .icons{
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-bottom: 5px;
}
footer p{
    padding: 25px;
}
footer .icons img{
    width: 25px;
}
