*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
}

.skip{
    position: absolute;
    left: -100000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus{
    position: static;
    width: auto;
    height: auto;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
    -webkit-appearance: none;
    background: transparent;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


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



.about .content-about,
.skills .content-skills,
.contact .content-contact{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section{
    padding: 100px 0;
}

section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: 2F0B6Fff;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}


.button, .btn{
    display: inline-block;
    background: #2F0B6Fff;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #2F0B6Fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button:hover{
    color: #2F0B6Fff;
    background: none;
}

.btn:hover{
    background: none;
    border: 2px solid #fff;
}

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

@media (max-width: 991px) {
    .container{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .content-home .text-2{
        font-size: 70px;
    }
    .home .content-home .text-3{
        font-size: 35px;
    }
    .home .content-home a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .content-about .column{
        width: 100%;
    }
    .about .content-about .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .content-about .right{
        flex: 100%;
    }
    .skills .content-skills .column,
    .contact .content-contact .column{
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 690px) {
    .container{
        padding: 0 23px;
    }
    .home .content-home .text-2{
        font-size: 60px;
    }
    .home .content-home .text-3{
        font-size: 32px;
    }
    .home .content-home a{
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    .home .content-home .text-2{
        font-size: 50px;
    }
    .home .content-home .text-3{
        font-size: 27px;
    }
    .about .content-about .right .text,
    .skills .content-skills .left .text{
        font-size: 19px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}