*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tinos", sans-serif;
    color: #fff;
    user-select: none;
}
/* font-family: 'Tinos', sans-serif;
    font-family: 'Imperial Script', sans-serif;
 */

body{
    height: 100vh;
    background: rgb(16,29,35);
    background: linear-gradient(0deg, rgba(16,29,35,1) 0%, rgba(16,31,38,1) 50%, rgba(16,29,35,1) 100%);
}

.wiz--wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.wiz--box{
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    background-color: #17262d;
    padding: 4vw;
    max-width: 1200px;
    overflow: hidden;
}

.wiz--head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.wiz--logo{
    height: 4vw;
    width: auto;
}
.wiz--name{
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(1.2rem, 1.8vw, 3rem);
    font-weight: 600;
}
.wiz--subtitle{
    color: #efefef;
    text-transform: uppercase;
    font-size: clamp(.825rem, .8vw, 1.2rem);
    font-weight: 400;
    margin-top: 20px;
}

.wiz--hr{
    width: 100%;
    height: 2px;
    background-color: #e5d5bc;
}



.wiz--body{
    padding: 30px 10%;
}
.wiz--body--text{
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    color: #e5d5bc;
    margin-bottom: 20px;
}
.second--box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    padding: 30px 15px;
    text-transform: uppercase;
}
.second--box--text{
    color: #f3f3f1;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    overflow: hidden;
    transition: .3s ease-in;
    cursor: default;
    position: relative;
    padding: 5px 0;
}
.second--box--text::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: #d18970;
    transition: .3s ease-in;
}
.second--box--text:hover::before{
    left: 0;
}
.second--box--text::after{
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 2px;
    background-color: #d18970;
    transition: .3s ease-in;
}
.second--box--text:hover::after{
    left: 0;
}
.wiz--slogan p{
    color: #f3f3f1;
    font-size: 3vw;
    font-weight: 400;
    margin: 20px 0;
    text-align: center;
    font-family: 'Imperial Script', sans-serif;
}

.wiz--footer{
    display: flex;
    padding: 20px;
    justify-content: center;
    gap: 35px;
}
.wiz--footer--text{
    color: #fefefe;
    text-decoration: none;
    background-color: #a65d4a;
    padding: 12px 22px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: .2s ease-in;
}
.wiz--footer--text:hover{
    transform: translateY(10%);
}

.wiz--tri1{
    position: absolute;
    top: calc(50% - 65px);
    left: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 100px 0 100px 100px;
    border-color: transparent transparent transparent #D18970;
    transform: rotate(0deg);
    filter: drop-shadow(8px 5px 10px #000000);
}

.wiz--tri2{
    position: absolute;
    bottom: 200px;
    right: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 80px 100px 80px 0;
    border-color: transparent #6c3c28 transparent transparent;
    transform: rotate(0deg);
    filter: drop-shadow(-2px 5px 10px #000000);
}

.wiz--tri3{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 200px 200px;
    border-color: transparent transparent #6C3C28 transparent;
    transform: rotate(0deg);
    filter: drop-shadow(-2px 5px 10px #000000);
}

.wiz--squ{
    position: absolute;
    bottom: 15%;
    right: -20%;
    height: 70px;
    width: 650px;
    background-color: #182930;
    border: 1px solid #404b4f;
    transform: rotate(135deg);
}

@media(max-width: 1000px){
    .wiz--name{
        font-size: 2rem;
    }
    .wiz--subtitle{
        font-size: 1.2rem;
    }
    .wiz--logo{
        height: 50px;
    }
    .wiz--tri1, .wiz--tri2, .wiz--tri3, .wiz--squ{
        display: none;
    }
    .wiz--slogan p{
        font-size: 3rem;
    }
}

@media(max-width: 600px){
    body{
        height: auto;
    }
    .wiz--head{
        flex-direction: column;
    }
    .whb2{
        order: 1;
    }
    .whb1{
        order: 2;
        text-align: center;
    }
    .wiz--logo{
        height: 80px;
    }
    .wiz--slogan p{
        font-size: 3rem;
    }
    .wiz--footer{
        flex-wrap: wrap;
    }
}