@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 10px;

}
.about, .contact-us, footer{
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

/* General */

.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

section{
    padding: 100px 0;
}
div {
    display: block;
}


/* title */


.title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 20px;
    font-family: ubuntu,sans-serif;
    margin-bottom: 50px;

}
.subtitle{
    position: relative;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;
    font-family: ubuntu,sans-serif;
    color: crimson;
}



/* Navbar */


.navbar{
    font-family: 'Ubuntu', sans-serif;
    position: fixed;
    width: 100%;
    padding: 20px 0;
    background-color: transparent;
    z-index: 500;
    transition: all 0.3s ease;
}

.navbar.sticky{
    background-color: #dc143c;
    padding-top: 10px;
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    font-size: 3.8rem;
    font-weight: 600;
    color: white; 
    color: crimson; 
    transition: all 0.3s ease;

}

.navbar.sticky .logo a{
    color: white; 
}

.navbar .logo a span{
    font-size: 3.8rem;
    font-weight: 600; 
    color: white; 
    transition: all 0.3s ease;

}
.navbar.sticky .logo a span{
    font-size: 3.8rem;
    font-weight: 600; 
    color: white; 
    color: #14dcb4; 
}

.navbar .max-width .menu li{
    list-style: none;
    display: inline-block;
    margin-left: 20px;
}

.navbar .max-width .menu li .menu_btn{
    display: block;
    color: white;
    margin-left: 25px;
    font-size: 20px;
    transition: all 0.3s ease;

}

.navbar .max-width .menu .menu_btn:hover{
    display: block;
    color: crimson;
    margin-left: 25px;
    font-size: 20px;
}

.navbar.sticky .max-width .menu .menu_btn:hover{
    display: block;
    color: #14dcb4;
    margin-left: 25px;
    font-size: 20px;
}


/* MENU BUTTON */


.barsmenu {
    display: none;
    cursor: pointer;
}
  
.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}
  
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
}  

.change .bar2 {
    opacity: 0;
}
 
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}


/* Home */


.home{
    display: flex;
    background: url("images/banner2.webp") no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 300px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}

.home .max-width{
    width: 100%;
    display: flex;
}

.home .max-width .home-content .text-1{
    font-size: 27px;
}

.home .max-width .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}

.home .max-width .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}

.home .max-width .home-content .text-3 span{
    font-size: 40px;
    color: crimson;
    font-weight: 500;
}

.home .max-width .home-content a{
    display: inline-block;
    background-color: crimson;
    color: white;
    font-size: 30px;
    font-weight: 400;
    margin-top: 20px;
    border-radius: 15px;
    padding: 10px 35px;
    border: 2px solid crimson;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.home .max-width .home-content a:hover{
    margin-top: 20px;
    background-color: transparent;
    color: white;
    border:2px solid crimson;
}


/* About Me */


.about .max-width .about-content{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;

}

.about .max-width .about-content .left{
    width: 45%;
    object-fit: cover;
    position: relative;
}

.about .max-width .about-content .left img{
    width: 400px;
    height: 400px;
    border-radius: 10px;
}
.about .max-width .about-content .left .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.about .max-width .about-content .left:hover .after {
    display: block;
    background: rgba(0, 0, 0,);
}


.about .max-width .about-content .right{
    width: 55%;
}

.about .max-width .about-content .right .introduction{
    font-size: 25px;
    margin: 0 0 10px;
    font-weight: 600;
    color: black;    
}

.about .max-width .about-content .right h1 span{
    font-size: 25px;
    margin: 0 0 10px;
    font-weight: 600;
    color: crimson;    
}


.about .max-width .about-content .right p{
    font-size: 20px;
    text-align: justify;
    font-weight: 200;
    
}


/* SECTION 3 */


.black{
    height: 600px;
    background-color: black;
}


/* Contact Us */

.contact-us .max-width .contact-content{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;

}

.contact-us .max-width .contact-content .left{
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 0 30px;
}

.contact-us .max-width .contact-content .left p{
    font-size: 18px;
    text-align: justify;
    font-weight: 200;
    margin-bottom: 5px;
    
}

.contact-us .max-width .contact-content .left p a{
    font-size: 18px;
    text-align: justify;
    font-weight: 200;
    color: #dc143c;
    text-decoration: underline;
    
}

.cryptedmail:after {
    content: attr(data-name) "@" attr(data-domain) "." attr(data-tld); 

}

.contact-us .max-width .contact-content .left .row {
    display: flex;
    padding: 10px;
    width: fit-content;
    color: black;
    transition: all 0.3s ease;

}
.contact-us .max-width .contact-content .left .row:hover{
    text-decoration: underline;
}

.contact-us .max-width .contact-content .left .row img{
    height: 25px;
    margin-right: 10px;
    
}

.contact-us .max-width .contact-content .left .row a{
    font-size: 18px;
    text-align: justify;
    font-weight: 200;
    color: black;

}

.contact-us .max-width .contact-content .right{
    width: 50%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.contact-us .max-width .contact-content .introduction{
    font-size: 25px;
    margin: 0 0 10px;
    font-weight: 600;
    color: black;    
}

.contact-us .max-width .contact-content .right form{
    display: flex;
    flex-direction: column;
}

.contact-us .max-width .contact-content .right form input{
    height: 50px;
    margin: 10px;
    padding: 0 15px;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    
}

.contact-us .max-width .contact-content .right form textarea{
    height: 50px;
    margin: 10px;
    padding: 0 15px;
    font-size: 17px;
    padding-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    resize: none;
}

.contact-us .max-width .contact-content .right form #message{
    height: 100px;
    text-align: left;
}


.contact-us .max-width .contact-content .right form button{
    background-color: crimson;
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    border-radius: 15px;
    padding: 10px 35px;
    border: 2px solid crimson;
    margin-top: 20px;
    transition: all 0.3s ease;
    margin: 10px;
}

.contact-us .max-width .contact-content .right form button:hover{
    background-color: transparent;
    color: black;
    border:2px solid crimson;
    margin: 10px;
    
}




/* Footer */

footer{
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

footer span {
    padding: 15px 2px;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

footer span a{
    color: #14dcb4;
    text-decoration: none;
    font-size: 18px;
}
footer span a:hover{
    text-decoration: underline;
    font-size: 18px;
}

/* Media */

@media (max-width:1125px){
    .about .max-width .about-content .left img{
        height: 350px;
        width: 350px;
    }
}

@media(max-width: 950px){
    .max-width{
        padding: 0 50px;
        width: 100%;
    }

    .barsmenu {
        display: block;
        z-index: 999;
        cursor: pointer;
    }


    .navbar .menu{
        position: fixed;
        background: #111;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;

    }

    .navbar .menu.active{
        left: 0;
    }

    .navbar .max-width .menu li{
        margin-top: 30px;
    }
    .navbar .max-width .menu li .menu_btn{
        margin: 20px;
        font-size: 30px;
    }
    
    .navbar .max-width .menu li .menu_btn:hover{
        margin: 20px;
        font-size: 30px;
        color: crimson;
    }
    .navbar.sticky .max-width .menu .menu_btn:hover{
        margin: 20px;
        font-size: 30px;
        color: crimson;
    }

    /* HOME */
    .home .max-width .home-content .text-1{
        font-size: 24px;
    }
    
    .home .max-width .home-content .text-2{
        font-size: 70px;
    }
    
    .home .max-width .home-content .text-3{
        font-size: 35px;
    }
    
    .home .max-width .home-content .text-3 span{
        font-size: 35px;
    }

    .home .max-width .home-content a{
        font-size: 27px;
    }

    /* About */

    .about .max-width .about-content{
        flex-direction: column;
        justify-content: center;
        margin: 0 auto 60px;
        justify-content: center;
    }

    .about .max-width .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .max-width .about-content .right{
        width: 100%;
    }

        
    .contact-us .max-width .contact-content{
        flex-direction: column;
    }

    .contact-us .max-width .contact-content .left{
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-us .max-width .contact-content .right{
        width: 100%;
    }


}

@media (max-width: 672px) {
    .max-width{
        padding: 0 30px;
    }

    .home .max-width .home-content .text-1{
        font-size: 20px;
    }
    
    .home .max-width .home-content .text-2{
        font-size: 60px;
    }
    
    .home .max-width .home-content .text-3{
        font-size: 30px;
    }
    
    .home .max-width .home-content .text-3 span{
        font-size: 30px;
    }

    .home .max-width .home-content a{
        font-size: 24px;
    }
    .about .max-width .about-content .right .introduction{
        font-size: 24px;
    }
    .about .max-width .about-content .right h1 span{
        font-size: 24px;
    }
    .about .max-width .about-content .right p{
        font-size: 20px;
    }

}

@media (max-width: 500px) {

    .home .max-width .home-content .text-2{
        font-size: 55px;
    }
    
    .home .max-width .home-content .text-3{
        font-size: 25px;
    }
    
    .home .max-width .home-content .text-3 span{
        font-size: 25px;
    }

    .home .max-width .home-content a{
        font-size: 21px;
    }

    .about .max-width .about-content .left img{
        height: 300px;
        width: 300px;
    }

    .about .max-width .about-content .right .introduction{
        font-size: 19px;
    }
    .about .max-width .about-content .right h1 span{
        font-size: 19px;
    }
    .about .max-width .about-content .right p{
        font-size: 16px;
    }

    


}