/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Scrollbar */
::-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: #019418;
    border-radius: 22px;
}

/* Root */
:root {
    /* Homepage */
    --rootAtribute: #019418;
}

/* Website style */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    height: 100%;
    overflow-x: hidden;
    background-color: #019418;
}

a{
    text-decoration: none;
}

.row-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header text */
.header__text--right{
    display: flex;
    justify-content: flex-end;
}

.header__text--left{
    display: flex;
    justify-content: flex-start;
}

.header__text{
    display: flex;
    align-items: center;
    color: white;
    gap: 20px;
    margin-bottom: 40px;
}

.header__text h4{
    font-size: 32px;
    font-weight: 600;
}

.header__text--hr{
    margin-top: -8px;
    width: 80px;
    height: 3px;
    background-color: white;
}

@media only screen and (max-width: 1400px) {
    .header__text h4{
        font-size: 22px;
    }
}

/* Navbar */
nav{
    position: fixed;
    width: 100%;
    z-index: 2;
}

.navbar{
    display: flex;
    justify-content: space-between;

    padding: 50px 10%;
}

.navbar ul{
    display: flex;
    gap: 70px;
}

.navbar li{
    list-style: none;
}

.navbar li a{
    color: #019418;
    transition: .3s;
}

.navbar .active, .navbar li a:hover{
    color: white;
    transition: .3s;
}

.navbar__brand a{
    font-size: 18px;
    color: white;
}

.navbar__toggle{
    display: none;
}

@media only screen and (max-width: 1400px) {
    .navbar{
        flex-direction: column;

        padding: 50px 0;
    }

    .navbar__toggle{
        display: block;
        color: #b2b2b2;
    }

    .navbar__brand{
        padding: 0 10%;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .navbar__nav{
        display: none;
    }

    .navbar ul{
        margin-top: 50px;
        width: 100%;
        padding: 50px 10% 60px;
        background-color: black;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .navbar__nav--active{
        display: flex;
        width: 100%;
    }
}

/* Footer */
footer{
    background-color: black;
    padding: 60px 10% 70px;
}

footer img{
    width: 80px;
}

footer ul{
    display: flex;
    gap: 40px;
    justify-content: center;
}

footer li{
    list-style: none;
}

footer li a{
    color: #c6c6c6;
    transition: .3s;
}

footer li a:hover{
    color: white;
    transition: .3s;
}

.footer-end{
    display: flex;
    justify-content: flex-end;
}

.social{
    display: flex;
    gap: 20px;
}

.social__box{
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    opacity: 1;
}

.social__box:hover{
    transition: .3s;
    opacity: 0.7;
}

.footer-copy{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
    color: #5a5a5a;
}

.footer-copy p{
    width: 600px;
    margin-bottom: 50px;
    font-size: 15px;
}

.footer-copy h5{
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.footer-copy h6{
    font-size: 14px;
}

.footer-copy a{
    color: #db00ff;
}

.footer-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1491px) {

    .footer-row{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    footer img{
        width: 70px;
    }

    footer ul{
        flex-direction: column;
        gap: 20px;
        margin-top: 50px;
    }

    footer li{
        margin-left: -31px;
    }

    .footer-end{
        display: flex;
        justify-content: flex-start;
    }

    .social{
        margin-top: 50px;
    }

    .footer-copy{
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-copy p{
        width: 300px;
    }

}

@media only screen and (min-width: 2001px) {
    body {
        padding: 0 400px;
    }

    nav{
        margin-left: -400px;
    }

    footer {
        padding: 60px 400px;
        margin-left: -400px;
        margin-right: -400px;
    }
}

@media only screen and (min-width: 3501px) {
    body {
        padding: 0 800px;
    }

    nav{
        margin-left: -800px;
    }

    footer {
        padding: 0 800px;
        margin-left: -800px;
        margin-right: -800px;
    }
}