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

    ------------
    Version 0.1.23

*/

/* Header */
.header{
    padding: 80px 0 0;
}

.header__infoSection{
    padding-bottom: 80px;
}

.header__title{
    font-weight: 600;
    font-size: 50px;
    color: var(--white);
    width: 80%;
    margin-bottom: 30px;
}

.header__title span{
    color: var(--activeColor);
}

.header__description{
    font-weight: normal;
    font-size: 14px;
    color: var(--eula);
    margin-bottom: 70px;
}

.header__btnSection{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header__btn{
    text-decoration: none;
    color: var(--white);
    font-weight: normal;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 25px 50px;
    border-radius: 12px;
    background: var(--footerBtn);
    border: 1px solid rgba(112, 112, 112, 0.36);
    transition: .3s;
}

.header__btn:hover{
    transition: .3s;
    transform: rotate(-2deg);
}

.header__btn--color{
    background: var(--headerBtn);
    border: 1px solid var(--headerBtn);
    color: var(--headerBtnColor);
    font-weight: 500;
}

.header__imgSection{
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.header__img{
    width: 440px;
    margin-top: -40px;
}

.header__infoCard{
    display: flex;
    gap: 20px;
    max-width: 300px;
    position: absolute;
    justify-content: center;
    align-items: center;
    border-radius: 21px;
    background: var(--footerBtn);
    border: 1px solid #707070;
    padding: 20px 30px;
    transform: rotate(-9deg);
    color: var(--white);
    transition: .3s;
}

.header__infoCard:hover{
    transition: .3s;
    transform: scale(1.02) rotate(-9deg);;
}

.header__infoCard--first{
    right: 450px;
    top: 100px;
}

.header__infoCard--second{
    right: 430px;
    top: 210px;
    padding: 21px 27px;
}

.header__infoCard--info{
    font-weight: 500;
    font-size: 15px!important;
    margin-top: 4px;
}

.header__infoCard--second .header__infoCard--info{
    font-weight: normal;
    font-size: 13px!important;
    line-height: 15px!important;
    text-align: left;
    color: var(--infoCardColor);

}

.header__infoCard img{
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
}

.header__infoCard--info b{
    font-weight: bold;
    color: var(--activeColor);
}

/* Responsive */
@media only screen and (max-width: 1100px) {
    .header{
        padding: 50px 5% 0;
    }

    .header__infoSection{
        padding-bottom: 100px;
    }

    .header__title{
        font-size: 40px;
    }

    .header__imgSection{
        display: none;
    }

}

@media only screen and (max-width: 1200px) {
    .header__imgSection{
        display: none;
    }
}

@media only screen and (max-width: 1400px) {
    .header__infoCard{
        display: none;
    }
}

@media only screen and (max-height: 900px) {
    .header{
        padding: 20px 0 0;
    }
}

/* Administration */
.administration{
    margin-top: 60px;
    margin-bottom: 40px;
}

.administration__title{
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.administration__title::after{
    content: "";
    width: 60px;
    height: 2px;
    background-color: var(--activeColor);
}

.administration__container{
    border-radius: 41px;
    background: transparent;
    border: 1px solid var(--borderContainer);
    padding: 30px 30px 5px 30px;
}

.administration__card{
    margin-bottom: 25px;
    padding: 40px;
    background-color: var(--administrationCard);
    border-radius: 28px;
    transition: .3s;
}

.administration__card:hover{
    background-color: var(--administrationCardHover);
    transition: .3s;
    opacity: 1;
}

.administration__head{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
}

.administration__head img{
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.administration__info h5{
    margin-top: 5px;
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    color: var(--white);
}

.administration__info h6{
    font-weight: normal;
    font-size: 13px;
    color: var(--activeColor);
    margin-top: -8px;
}

.administration__href{
    margin-top: 30px;
    border-radius: 12px;
    background: #141414;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 19px 25px;
    font-weight: normal;
    font-size: 13px;
    text-align: left;
    color: var(--administrationHref);
    text-decoration: none;
    transition: .3s;
}

.administration__href:hover{
    transition: .3s;
    color: var(--white);
    background: rgba(20, 20, 20, 0.45);
}


/* Responsive */
@media only screen and (max-width: 1100px) {
    .administration__container{
        margin: 0 5%;
        padding: 20px 20px 5px;
    }

    .administration__title{
        padding-left: 5%;
    }

    .administration__card{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .administration__container{
        margin: 0;
    }
}