.first {
    padding: 80px;
    margin-top: 0;
    background-image: url(accessrioes/Artboard\ 2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    background-position: center;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    border: 2px solid var(--design);

}

.first div:nth-child(1) {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    font-size: 50px;
    margin-top: 30px;
    color: var(--ok);
    text-shadow: 5px 3px 8px var(--design);
    padding: 0 10px;
    border-radius: 20px;
    transition: transform (10px);
    opacity: 0;
    transform: translateX(-100px);
    animation: fadeSlideUp 1.5s ease-out forwards;

}




.first div:nth-child(2) {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: xx-large;
    text-align: left;
    margin-top: 30px;
    color: var(--ok);
    text-shadow: 5px 3px 8px var(--design);
    margin-right: 340px;
    opacity: 0;
    transform: translateX(100px);
    animation: fadeSlideUp 1.5s ease-out forwards;
    animation-delay: 0.5s;

}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.first div:nth-child(3) {
    margin-top: 80px;
    margin-right: 1050px;
    opacity: 0;
    transform: translateY(100px);
    animation: fadeSlideUps 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeSlideUps {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.copy {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 35px;
    padding: 10px;
    background-color: var(--ok);

}

.copy-1 {
    width: 310px;
    height: auto;
    background-color: var(--design);
    margin: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;


}

.copy-1_2 h3 {
    color: var(--ok);
    text-transform: uppercase;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 20px 0 10px;
}

.copy-1_2 a {
    text-decoration: none;
    color: var(--common);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    transition: all 0.2s ease;
}

.copy-1_2 a:hover {
    transform: scale3d(1.05, 1.05, 1.05);
    border-bottom: 1px solid var(--common);
}

.copy-2 {
    width: 310px;
    height: auto;
    background-color: var(--design);
    margin: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;


}

.copy-3 {
    width: 310px;
    height: auto;
    background-color: var(--design);
    margin: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;


}

.copy-1 img {
    width: 100px;
    height: auto;
    margin-right: 20px;

}

.copy-2 img {
    width: 100px;
    height: auto;
    border-radius: 15px;
    margin-right: 20px;

}

.copy-3 img {
    width: 100px;
    height: auto;
    margin-right: 20px;

}

.paste {
    background-color: var(--ok);
}

.m-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.subject {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.subject h2 {
    color: var(--design);
    font-size: 28px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 20px;
    margin-top: 15px;
    animation: image-appears both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}


@keyframes image-appears {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

.s-card {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 330px;
    height: 550px;
    margin: 15px;
    margin-bottom: 50px;
    position: relative;
    animation: fadeSlideUpw both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;

}

@keyframes fadeSlideUpw {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.s-card:hover {
    transform: scale3d(1.1, 1.1, 1.1);
    box-shadow: 0px 0px 10px var(--design);
}

.s-card img {
    width: 320px;
    height: 220px;
    margin: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 50px;
}

.s-card h3 {
    font-size: 26px;
    text-align: left;
    color: var(--design);
    padding: 5px;
    font-weight: bolder;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.s-card h4 {
    font-size: 20px;
    color: var(--design);
    text-align: left;
    font-weight: 500;
    padding: 5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.s-card p {
    font-size: 16px;
    color: var(--design);
    text-align: left;
    padding: 5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.s-card div {
    position: absolute;
    bottom: 5px;
    margin-left: 10px;
}

.s-card div button a {
    text-shadow: 0px 0px 1px var(--design);
}


.second {
    display: flex;
    flex-direction: column;
    padding: 20px 120px;

}


.second h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 26px;
    color: var(--design);
    border-left: 2px solid var(--design);
    border-radius: 5px;
    padding: 5px 20px;
    margin-top: 10px;
    margin-bottom: 10px;


}


.second h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 19px;
    color: var(--design);
    padding: 0 20px;
    margin-top: 10px;
    margin-bottom: 10px;


}

.second p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    color: var(--design);
    margin-bottom: 5px;
    padding: 0 20px;


}



.second .five button {
    border: 1px solid var(--design);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: transparent;
    cursor: pointer;
    border-radius: 200px;
    width: 250px;
    height: auto;
    padding: 0px;
    transition: all 0.1s ease;

}

.second .five button a {
    text-decoration: none;
    color: var(--design);
    font-size: 12px;
    padding: 10px 15px;
}

.second .five button:hover {
    transform: scale(1.1);
    background-color: var(--ok);

}

.second dfn {
    animation: second both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;

}

@keyframes second {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }


}

.second-okay {
    display: flex;
    flex-direction: column;
    padding: 20px 120px;
    background-color: var(--ok);

}



.second-okay h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 26px;
    width: auto;
    color: var(--design);
    padding: 5px 20px;
    margin-top: 10px;
    border-radius: 5px;
    border-left: 2px solid var(--design);
    margin-bottom: 30px;


}


.second-okay h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 19px;
    color: var(--design);
    padding: 0 20px;
    margin-top: 10px;
    margin-bottom: 10px;


}

.second-okay p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    color: gray;
    margin-bottom: 5px;
    padding: 0 20px;


}



.second-okay .five button {
    border: 1px solid var(--design);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: transparent;
    cursor: pointer;
    border-radius: 200px;
    width: 250px;
    height: auto;
    padding: 0px;
    transition: all 0.1s ease;

}

.second-okay .five {
    justify-content: flex-start;
}

.second-okay .five button a {
    text-decoration: none;
    color: var(--design);
    font-size: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 10px 15px;

}

.second-okay .five button:hover {
    transform: scale(1.1);
    background-color: var(--ok);

}

.second-okay dfn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 40px;
    animation: second both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;

}

@keyframes second {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }


}

.second_second {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 150px;
    background-color: #010101;

}


.second_second h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 26px;
    color: var(--common);
    text-shadow: 0px 0px 0.3px var(--design);
    padding: 0 20px;
    margin-top: 10px;
    margin-bottom: 10px;


}

.secon_div {
    display: flex;
    align-items: center;
    justify-content: center;

}

.inner_second_div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secondfghgjf {
    display: flex;
    align-items: center;
    justify-content: center;
}

.innersecond_inner_second_div h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 19px;
    color: var(--ok);
    padding: 0 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.innersecond_inner_second_div h3 span {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 19px;
    color: var(--common);
    text-decoration: 0px 0px 0.2px var(--design);
}


.second_second p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    color: var(--ok);
    margin-bottom: 50px;
    padding: 0 20px;


}



.second_second .five button {
    border: 1px solid var(--design);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--common);
    cursor: pointer;
    border-radius: 200px;
    width: 250px;
    height: auto;
    padding: 0px;
    transition: all 0.1s ease;

}

.second_second .five button a {
    text-decoration: none;
    color: var(--design);
    font-size: 12px;
    padding: 10px 15px;
}

.second_second .five button:hover {
    transform: scale(1.1);
    background-color: var(--ok);

}

.second_second>span {
    animation: second both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

@keyframes second {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }


}

.innersecond_second_div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.inner_inner_second_div img {
    width: 120px;
    margin-bottom: 35px;
}

.innersecond_second_div img {
    height: 420px;
    width: 310px;
    border-radius: 50px;
}


.third {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ok);


}

.third>div {
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

}

.top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 30vw;
}

.middle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 15vw;
}

.inter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 150px
}

.topimg {
    width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 19px 1px var(--design);
    animation: image-appears both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}



@keyframes image-appears {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


.middleimg {
    width: 170px;
    height: 85px;
    border-radius: 10px;
    box-shadow: 5px 5px 19px 1px var(--design);
    animation: er both;
    animation-timeline: view();
    animation-range: enter 20% cover 100vh;

}

@keyframes er {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

.innnerimg {
    width: 163px;
    height: 96px;
    border-radius: 10px;
    box-shadow: 5px 5px 19px 1px var(--design);
    animation: er both;
    animation-timeline: view();
    animation-range: enter 20% cover 100vh;
}

@keyframes er {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


.top h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 35px;
    margin-bottom: 12px;
    text-align: center;
    color: var(--design);
    text-shadow: 5px 3px 8px var(--ok);
    font-style: oblique;
}

.middle button {
    margin: 16px;
    border: 1px solid var(--design);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    background-color: transparent;
    cursor: pointer;
    border-radius: 200px;
    padding: 2px 15px;
    transition: all 0.1s ease;
}

.middle button:hover {
    transform: scale(1.1);
    background-color: var(--ko);
}

.middle button a {
    text-decoration: none;
    color: var(--design);

}




.top p {
    font-family: sans-serif;
    color: gray;
    font-size: 15px;
    font-weight: bolder;
    margin-bottom: 12px;
    text-align: center;
    padding-bottom: 15px;
}

.middle h4 {
    font-family: sans-serif;
    color: gray;
    font-size: 12px;
    font-weight: bolder;
    margin-bottom: 12px;
    text-align: center;
    padding: 4px;
}

.forth {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5px;
}

.forth h2 {
    font-size: 60px;
    color: var(--design);
    padding: 10px;
}


.box {
    width: 90vw;
    height: 10vh;
    background-color: var(--design);
    color: var(--ok);
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border-radius: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;

}

.box:hover {
    transform: scale3d(1.02, 1.02, 1.02);

}

.box h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 20px;
    color: var(--ok);
}

.box2 {
    width: 90vw;
    height: 15vh;
    background-color: var(--design);
    color: var(--ok);
    margin: 0px;
    display: none;
    align-items: center;
    border: 1px solid var(--ok);
    padding: 0 10px;
    border-radius: 15px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 18px;

}


@media screen and (min-width: 1300px) {
    .second div button {
        font-size: 21px;
        width: 160px;

    }
}

@media screen and (max-width:1300px) {

    .first {
        padding: 50px 15px;
        background-position: center center;
        background-image: url(accessrioes/cover.jpg);
    }

    .first div:nth-child(1) {
        font-weight: 700;
        text-align: center;
        font-size: 24px;
    }

    .first div:nth-child(2) {
        font-weight: 500;
        text-align: center;
        padding: 0 10px;
        margin-top: 50px;
        font-size: 21px;
        margin-right: 0;
    }

    .first div:nth-child(3) {
        margin-top: 70px;
        margin-right: 0;
        margin-bottom: 50px;
    }

    .copy {
        flex-direction: column;

    }

    .m-card {
        flex-direction: column;
    }

    .m-card .five button {
        width: 24em;
        height: 2.5em;
    }

    .s-card {
        width: 300px;
        height: 600px;
        border-bottom-right-radius: 0px;
    }

    .subject h2 {
        font-size: 19px;
        margin: 15px;
        margin-top: 20px;
        margin-bottom: 10px;
        text-align: center;
    }

    .s-card img {
        width: 290px;
        height: 210px;
    }

    .s-card h3 {
        font-size: 24px;
    }

    .s-card p {
        padding: 8px;
    }

    .s-card h4 {
        font-size: 18px;
    }

    .subject h2 span {
        font-size: 22px;
    }

    .s-card div {
        bottom: 0px;
        margin-left: 0px;
    }

    .secon_div {
        flex-direction: column;
    }

    .second_second {
        padding: 20px 15px;
    }

    .second_second h2 {
        font-size: 18px;
        padding: 0 5px;
    }

    .second_second p {
        font-size: 15px;
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .innersecond_inner_second_div h3 {
        font-size: 15px;
        padding: 0px;
        margin-top: 10px;
    }

    .innersecond_inner_second_div p {
        font-size: 14px;
    }

    .innersecond_inner_second_div h3 span {
        font-size: 16px;
    }

    .innersecond_second_div img {
        border-radius: 5px;
    }

    .innersecond_second_div {
        flex-direction: column-reverse;
    }

    .inner_inner_second_div img {
        width: 80px;
        margin-bottom: 130px;
    }

    .second {
        padding: 20px 10px;
    }

    .second h2 {
        font-size: 20px;
        padding: 5px;
        margin-bottom: 5px;
    }

    .second p {
        font-size: 14px;
        padding: 0 5px;
    }

    .second h3 {
        font-size: 15px;
        padding: 0 5px;
        margin-bottom: 5px;
    }

    .second-okay {
        padding: 20px 10px;
    }

    .second-okay h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .second-okay dfn {
        grid-template-columns: 1fr;
        column-gap: 20px;
        row-gap: 20px;
    }

    .second-okay dfn h3 {
        font-size: 20px;
    }

    .second-okay dfn .five button {
        width: 15em;
        height: 2.5em;
    }

    .top {
        width: 80vw;
    }

    .third>div {
        margin: 10px;
        flex-direction: column;
        align-items: center;
    }

    .top img {
        width: 300px;
        margin: 10px;
    }

    .top h2 {
        font-size: 24px;
    }

    .top p {
        font-size: 18px;
    }

    .inter {
        padding-left: 0px;
    }

    .forth h2 {
        font-size: 35px;
    }

    .middle {
        width: 60vw;
    }

    .box {
        width: 80vw;
        height: 7vh;
    }

    .box2 {
        width: 80vw;
        height: auto;
        font-size: 15px;
        padding: 18px;
    }

    .box h2 {
        font-size: 14px;
    }

    .copy-1 {
        width: 290px;
    }

    .copy-2 {
        width: 290px;
    }

    .copy-3 {
        width: 290px;
    }
}