:root {
    --body-color: #393937;
    --accent-color: #03e9f4;
    --white-color: #fff;
    --box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4,
        0 0 100px #03e9f4;
}

body,
html {
    height: 100%;
    margin: 0;
    color: var(--body-color);
    letter-spacing: 0.05rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.bgimg-1,
.bgimg-2,
.bgimg-3 {
    position: relative;
    opacity: 0.85;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.bgimg-1 {
    background-image: url("bg-1.png");
    min-height: 100%;
    background-position: top;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bgimg-2 {
    background-image: url("bg-2.webp");
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 80px;
    gap: 32px;
}

.bgimg-2>div,
.bgimg-3>div {
    background-color: #00000096;
    border-radius: 40px;
}

.bgimg-3 {
    background-image: url("bg-3.jpeg");
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 80px;
    gap: 32px;
}

.chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.button-animation {
    position: relative;
    display: inline-block;
    padding: 20px 30px;
    color: var(--accent-color);
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: 4px;
    transition: 0.5s;
    font-size: 2rem;
    font-weight: bold;
}

.button-animation span {
    position: absolute;
    display: block;
}

.button-animation span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
    animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.button-animation span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent-color));
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.button-animation span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--accent-color));
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

.button-animation span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--accent-color));
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

.button-animation:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.scroll-box {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.text {
    display: block;
    margin-top: 100px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}

h1 {
    color: #ebebffb0;
    letter-spacing: 0.4rem;
    font-weight: 200;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.2rem;
}

p {
    color: #888888;
}

.content-1 {
    width: 100%;
    display: flex;
    background-color: white;
    padding: 50px 80px;
    align-items: center;
}

.content-2 {
    padding: 50px 80px;
    color: #616c70;
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content-1>img,
.bgimg-2>img,
.bgimg-3>img {
    width: 20%;
}

.content-1>div,
.bgimg-2>div,
.bgimg-3>div {
    width: 80%;
    padding: 0 4rem;
}

.grid {
    display: flex;
    width: 25%;
    justify-content: space-between;
    align-items: center;
    background-color: #eeeeee75;
    margin: 2rem 0;
    border-radius: 20px;
}

.grid>div {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 10px;
}

.grid>div>h4,
h5 {
    margin: 0;
}

.grid>div>span,
.promotion>span {
    color: #ff614c;
    font-size: 1.3rem;
    font-weight: bold;
}

.border-R {
    position: relative;
}

.border-R:after {
    content: "";
    display: block;
    height: 55px;
    border-right: 1px solid rgba(62, 62, 62, .2);
    position: absolute;
    top: 30px;
    right: 0;
}

.promotion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.promotion>img {
    max-width: 60px;
}

@media screen and (max-width:767px) {

    .content-1,
    .bgimg-3 {
        flex-direction: column;
        padding: 0;
    }

    .content-1>img,
    .bgimg-2>img,
    .bgimg-3>img {
        width: 100%;
    }

    .content-1>div,
    .bgimg-2>div,
    .bgimg-3>div {
        width: 90%;
    }

    .grid {
        width: 100%;
    }

    .bgimg-2 {
        flex-direction: column-reverse;
    }

    .bgimg-2 {
        padding: unset;
    }

    .content-2 {
        justify-content: center;
        gap: 32px;
    }

}

@media screen and (min-width:768px) and (max-width:1024px) {

    .content-1,
    .bgimg-3 {
        padding: 1rem 0;
        flex-direction: column;
    }

    .content-1>img,
    .bgimg-2>img,
    .bgimg-3>img {
        width: 30%;
    }

    .grid {
        width: 100%;
    }

    .bgimg-2 {
        flex-direction: column-reverse;
        padding: 1rem 0;
    }

}

@media only screen and (max-device-width: 1024px) {

    .bgimg-1,
    .bgimg-2,
    .bgimg-3 {
        background-attachment: scroll;
    }
}