* {
    --colormain: #342a37;
    --colordark: #2c1c31;
    --colorlight: #9c83a3;
    --colorwhite: #fff;
    --colortthird: #ff8f27;
    --lightmain: #2a1a2f;
    padding: 0;
    margin: 0;
    outline: none;
    text-decoration: none;
    list-style: none;
    color: inherit;
    font-family: "Poppins";
    box-sizing: border-box;
}
body {
    position: relative;
    background-color: #332238;
}
.container{
    max-width: 1200px;
    margin: 300px auto;
}
.container h1{
    color: #fff;
}
.tab{
    margin-bottom: 10px;
}
.header{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.header img{
    max-width: 300px;
}
.title-header{
}
.title-header span{
    color: #fff;
    text-align: center;
    width: 100%;
    letter-spacing: 10px;
    text-transform: uppercase;
}
.header-tab{
    background-color: #671480;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 3px;
    text-transform: uppercase;
    border-left: 5px solid #fff;
}
.header-tab span{
    color: #fff;
}
.header-tab span::after{
    content: '\f059';
    float: right;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 20px;
    font-size: 21px;
}
.content-tab{
    display: none;
    opacity: 0;
    padding-left: 15px;
    transition: all 0.5s ease-in-out;
}
.content-tab p{
    color: #fff;
}
.change{
    background-color: #705578;
}

.active-tab{
    display: block;
}
.active-tab-time{
    opacity: 1;
}
.last-text{
    color: #fff;
    margin-top: 50px;
}
.last-text a {
    color: #b16ac6;
}

@media (max-width:900px){
    .container{
        margin: 50px 20px;
    }
    .header img{
        max-width: 200px;
    }
}
@media (max-width:500px){
    .container{
        margin: 50px 20px;
    }
    .header{
        flex-direction: column;
    }
    .header img{
        max-width: 200px;
    }
    .title-header{
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
    .title-header span{
        text-align: center;
    }
 
    .header-tab span::after{
        content: '';
    }
}