.header {
    width: 90%;
}

@media only screen and (max-width:768px) {
    .block-d h1 {
        font-size: 6vw;
        margin: 0;
        background-image: linear-gradient(to right, #ff5e00, #ff5e00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 2vh;
    }

    .block-div {
        flex-direction: column;
    }

    .block-div div {
        width: 100%;
    }

    .block-div div h2 {
        font-size: 8vw;
    }

    .block-t h1 {
        font-size: 6vw;
        margin: 0;
        background-image: linear-gradient(to right, #ff5e00, #ff5e00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 2vh;
    }

    .block-d {
        display: none;
    }

    .block-t {
        display: flex;
    }
}

@media only screen and (min-width:768px) {
    .block-d h1 {
        font-size: 6vw;
        margin: 0;
        background-image: linear-gradient(to right, #ff5e00, #ff5e00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 2vh;
    }

    .block-div {
        flex-direction: row;
    }

    .block-div div {
        width: 50%;
    }

    .block-div div h2 {
        font-size: 4vw;
    }

    .block-t h1 {
        font-size: 6vw;
        margin: 0;
        background-image: linear-gradient(to right, #ff5e00, #ff5e00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 2vh;
    }

    .block-d {
        display: none;
    }

    .block-t {
        display: flex;
    }
}

@media only screen and (min-width:992px) {
    .block-d h1 {
        font-size: 3vw;
        margin: 0;
        background-image: linear-gradient(to right, #ff5e00, #ff5e00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 2vh;
    }

    .block-div div {
        border-radius: 3rem;
    }

    .block-div div img {
        border-radius: 2.5rem;
    }

    .block-div div h2 {
        font-size: 2.5vw;
    }

    .block-t h1 {
        font-size: 3vw;
        margin: 0;
        background-image: linear-gradient(to right, #ff5e00, #ff5e00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 2vh;
    }

    .block-t {
        display: none;
    }

    .block-d {
        display: flex;
    }
}

.op0 {
    opacity: 0;
}

.block-d {
    position: relative;
    width: 80%;
    flex-direction: column;
    justify-content: center;
    margin-top: 15vh;
    gap: 2vh;
}

.block-t {
    position: relative;
    width: 80%;
    flex-direction: column;
    justify-content: center;
    margin-top: 0vh;
    gap: 2vh;
}

.block-div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.block-div div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #161616;
    border-radius: 1.406vw;
    border: solid 0.5px #303033;
    transition: all 500ms;
}

.block-div div img {
    margin-top: 1.4vh;
    width: 95%;
    border-radius: 1.406vw;
}

.block-div div h2 {
    margin: 2vh auto;
    color: #e9e9f1;
}

.block-div-a {
    display: flex;
    flex-direction: column;
}

.block-div div a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block-div div:hover {
    transform: scale3d(1.03, 1.03, 1.03);
    transition: all 500ms;
}

.block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-title a:hover {
    transform: scale3d(1.02, 1.02, 1.02);
    transition: all 500ms;
}

.header {
    width: 80%;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 4.687vw;
}