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

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

*/

body {
    background-image: url('../img/home-bg.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

@media only screen and (max-width: 1400px) {
    body{
        background-position: 10% 50%;
    }
}

/* Header */
header{
    padding: 180px 10%;
}

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

.header__img{
    width: 470px;
}

header h1{
    font-size: 60px;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
}

header p{
    line-height: 25px;
    font-weight: 400;
    color: #bdbdbd;
}

.button__row{
    flex-wrap: wrap;
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.header__button{
    background-color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 16px 50px;
    text-transform: uppercase;
    font-size: 16px;
    color: black;
    font-weight: 600;
    transform: scale(1);
    transition: .3s;
    cursor: pointer;
}

.header__button:hover{
    transform: scale(0.95);
    transition: .3s;
}

.header__button--green{
    color: white;
    border-color: rgba(13, 156, 0, 0.71);
    background: linear-gradient(90.13deg, #0d9c00 0.63%, #0d9c00 94.69%);
}

.header__button--outline{
    color: white;
    background-color: transparent;
}

.header__scroll{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    opacity: 0.5;
    transition: .3s;
}

.header__scroll:hover{
    opacity: 1;
    transition: .3s;
}

.header__scroll p{
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
}

@media only screen and (max-width: 991px) {
    header{
        padding: 170px 10%;
    }

    .header__render{
        justify-content: center;
    }

    .header__img{
        width: 230px;
    }

    header h1{
        margin-top: 30px;
        text-align: center;
        font-size: 26px;
    }

    header p{
        margin-top: -20px;
        font-size: 13px;
        text-align: center;
    }

    .button__row{
        display: flex;
        justify-content: center;
    }

    .header__button{
        background-color: white;
        border: 2px solid white;
        border-radius: 50px;
        padding: 16px 30px;
        text-transform: uppercase;
        font-size: 16px;
        color: black;
        font-weight: 600;
        transform: scale(1);
        transition: .3s;
        cursor: pointer;
    }

    .header__button--green{
        color: white;
        border-color: rgba(0, 166, 24, 0.71);
    }

    .header__scroll{
        margin-top: 90px;
    }
}

/* Administration */
.administration{
    padding: 0 10% 100px;
}

.administration__card{
    background: rgba(246, 246, 246, 0.03);
    border: 1px solid rgba(88, 88, 88, 0.38);
    border-radius: 23px;
    transition: 0.3s;
    padding: 20px 25px;
    width: 100%;
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.administration__card:hover{
    transform: scale(1.02);
    transition: .3s;
}

.administration__card img{
    height: 80px!important;
}

.administration__card h5{
    color: #7d7d7d;
    font-size: 12px;
}

.administration__card h4{
    color: #ffffff;
    font-size: 14px;
    margin-top: -6px;
}

@media only screen and (max-width: 991px) {
    .administration{
        padding: 0 8% 80px;
    }
}

/* Trailer */
.trailer{
    padding: 20px 10%;
}

.trailer__section{
    padding: 40px 0;
}

.trailer__section h1{
    font-weight: 700;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.trailer__section h1 span{
    color: #005c0e;
}

.trailer__section p{
    color: #bdbdbd;
    font-weight: 400;
    width: 90%;
}

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

.trailer__right iframe{
    width: 90%;
    height: 350px;
    border-radius: 15px;
    border: 1px solid rgba(88, 88, 88, 0.38);
}

.trailer__button{
    padding: 23px 50px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    background: linear-gradient(90.13deg, #005c0e 30.63%, #00b51c 64.69%);
}

.trailer__button--row{
    margin-top: 60px;
}

@media only screen and (max-width: 991px) {
    .trailer{
        padding: 20px 8% 0;
    }

    .trailer__button--row{
        margin-bottom: 90px;
    }

    .trailer__right iframe{
        width: 100%;
        height: 300px;
    }
}

/* Changelog */
.changelog{
    padding: 70px 10% 130px;
}

.changelog__title{
    margin-top: 80px;
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
}

.changelog__card{
    background: rgba(247, 247, 247, 0.03);
    border: 1px solid rgba(88, 88, 88, 0.38);
    border-radius: 0px 15px 15px 0px;
    border-left: 3px solid #005c0e;
    padding: 35px 55px 28px;
    margin-bottom: 20px;
}

.changelog__card h5{
    color: white;
    font-weight: 600;
}

.changelog__card p{
    color: #bbbbbb;
    font-size: 14px;
}

@media only screen and (max-width: 991px) {
    .changelog{
        padding: 70px 8% 100px;
    }
}