/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(0, 0, 0);
    border-radius: 0px;
}

* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    height: 100%;
    overflow-x: hidden;
    background-color: #000000;
    color: white;
}

/* NAVBAR */

.navbar{
    padding: 80px 100px;
}

.navbar ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.navbar li{
    margin: 0 23px;
    list-style: none;
}

.navbar a{
    color: #bebebe;
    font-weight: normal;
    font-size: 16px;
    text-decoration: none;
    transition: .3s;
}

.navbar a:hover{
    color: #ecebeb;
    transition: .3s;
}

.navbar__mobile{
    display: none;
}

/* HEADER */

.header{
    background-image: url('../img/header.svg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.header__content{
    padding: 150px 50px 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.header__content h1{
    font-weight: 600;
    font-size: 67px;
    color: #fff;
}

.header__content .second span{
    color: #A239D5;
    font-weight: 700;
}

.subtitle{
    margin-top: 30px;
}

.subtitle ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.subtitle li{
    margin: 0 20px;
    padding-left: 15px;
    color: #c1c1c1;
    font-weight: 400;
}

.subtitle li:nth-child(1){
    list-style: none;
}

.buttons__row{
    margin-top: 90px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.buttons__row a{
    padding: 20px 80px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.buttons__row a:hover{
    transition: .3s;
}

.btn__color{
    background: #a239d5;
    color: #000;
}

.btn__color:hover{
    background: #77289e;
}

.btn__outline{
    border: 2px solid #fff;
    color: #fff;
}

.btn__outline:hover{
    background-color: white;
    color: #000000;
}

/* ABOUT */

.about{
    background: #090909;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.about__content{
    padding: 90px 25% 100px;
}

.white__block{
    margin-top: -5px;
    height: 5px;
    width: 105px;
    background-color: white;
}

.about__content h2{
    font-size: xx-large;
    margin-bottom: 20px;
}

.about__content p{
    font-weight: normal;
    color: #aaa;
    margin-bottom: 70px;
}

.about__content h5{
    color: #aaa;
    opacity: 0.51;
    font-weight: normal;
    margin-bottom: 25px;
}

.social{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.social__box{
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0D0D0D;
    transition: .3s;
}

.social__box:hover{
    transition: .3s;
    background-color: #191818;
}

/* Experience */

.experience{
    background-image: url('../img/experience.svg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

    padding: 100px 10%;
}

.experience h2{
    font-size: xx-large;
    margin-bottom: 10px;
}

.experience p{
    font-weight: normal;
    color: #aaa;
    margin-bottom: 30px;
}

.experience__content{
    padding: 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.grey__block{
    width: 50px;
    height: 4px;
    background: #171717;
    margin-bottom: 50px;
}

.experience li{
    list-style: none;
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: 400;
}

.square{
    width: 13px;
    height: 13px;
    background: #a239d5;
    margin-right: 20px;
}

.experience__list{
    margin-bottom: 80px;
}

.experience h5{
    font-weight: normal;
    font-size: 16px;
    color: #dcdcdc;
}

/* Portfolio */

.portfolio{
    margin-top: 50px;
    width: 100%;
}

.slider{
    padding: 0 5%;
    position: relative;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper{
    position: relative;
}

.btn__control{
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 70px;
}

.btn__prev, .btn__next{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a239d5;
}

.portfolio__card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.portfolio__card img{
    width: 100%;
    margin-bottom: 34px;
}

.portfolio__card h3{
    font-weight: bold;
    font-size: 32px;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.portfolio__card p{
    width: 80%;
    margin-bottom: 40px;
}

.portfolio__card a{
    background: #0d0d0d;
    padding: 23px 80px;
    text-decoration: none;
    color: #a239d5;
    font-weight: 500;
    transition: .3s;
}

.portfolio__card a:hover{
    background: #a239d5;
    color: #0d0d0d;
    transition: .3s;
}

/* Footer */

.footer{
    border-top: 2px solid #151515;
    margin: 20px 10%;
    padding: 50px 50px 80px;
    text-align: center;
}

.footer h4{
    font-weight: normal;
    font-size: 14px;
    color: #aaa;
}

.footer h4 span{
    color: #A239D5;
}

.footer h5, .footer a{
    margin-top: 30px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #272727;
    text-decoration: none;
    transition: .3s;
}

.footer a:hover{
    color: white;
    transition: .3s;
}

@media only screen and (max-width: 1100px) {
    /* NAVBAR */

    .navbar{
        padding: 60px 5%;
    }

    .navbar__mobile{
        display: flex;
        justify-content: center;
    }

    .navbar__links{
        display: none;
    }

    .navbar__links--active{
        display: block;
    }

    .navbar ul{
        flex-direction: column;
        background-color: #0d0d0d;
        padding: 30px 0;
        position: absolute;
        width: 90%;
        top: 110px;
    }

    .navbar li{
        margin: 5px 0;
    }

    /* HEADER */

    .header__content{
        padding: 130px 50px 300px;
    }

    .header__content h1{
        font-weight: 600;
        font-size: 36px;
    }

    .subtitle{
        margin-top: 30px;
    }

    .buttons__row{
        flex-direction: column;
    }

    .buttons__row a{
        padding: 20px 100px;
    }

    /* ABOUT */

    .about__content{
        padding: 90px 11% 110px;
    }

    /* Experience */

    .experience{
        padding: 80px 5%;
    }

    .experience__list{
        padding: 0 8%;
    }

    .experience__content{
        padding: 0 5%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .grey__block{
        margin-bottom: 40px;
    }

    .experience li{
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .square{
        margin-right: 0;
        margin-bottom: 20px;
    }

    /* Portfolio */

    .portfolio{
        margin-top: 50px;
        width: 100%;
    }

    /* Footer */

    .footer{
        margin: 10px 4%;
    }
}