:root {
    --bg-before-item: #475E66;
    --bg-after-item: #475E66;
}

.s61-header {
    opacity: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
}

.s61-header .container .menu .container .itens {
    color: #475E66;
}

.s61-header .container .menu .container .toggle span {
    background-color: #475E66;
}

.s61-header svg {
    fill: #475E66;
}

.s61-banner {
    width: 100%;
    height: 100vh;
    font-family: "HalyardDisplay", Sans-serif;
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.s61-banner .container .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    box-sizing: border-box;
}

.s61-banner .container .logo {
    max-width: 438px;
    z-index: 2;
}

.s61-banner .container .scrollpage {
    position: absolute;
    bottom: 0;
    z-index: 2;
    color: #fff;
    font-weight: 14px;
    letter-spacing: 2.8px;
}

.s61-banner .container .scrollpage:after {
    content: "";
    display: block;
    margin-top: 1vh;
    margin-left: auto;
    margin-right: auto;
    width: 1px;
    height: 6vh;
    background: #fff;
    animation: scrolldown 2s cubic-bezier(.87, 0, .13, 1) infinite both;
}

@keyframes scrolldown {
    0% {
        transform: scaleY(0);
        transform-origin: center top
    }

    49% {
        transform-origin: center top
    }

    50% {
        transform: scaleY(1)
    }

    51% {
        transform-origin: center bottom
    }

    to {
        transform: scaleY(0);
        transform-origin: center bottom
    }
}

@media only screen and (max-width: 768px) {
    .s61-banner .container {
        padding: 8%;
    }
}

.numbers-anim .col-1 {
    width: 53%;
}

.numbers-anim .col-2 {
    width: 47%;
}

.txt-btn-box .col {
    width: 53%;
}

@media only screen and (min-width: 1500px) {
    .numbers-anim .col-1 {
        width: 60%;
    }

    .numbers-anim .col-2 {
        width: 40%;
    }

    .txt-btn-box .col {
        width: 53%;
    }
}

@media only screen and (max-width: 1024px) {
    .numbers-anim .col-1 {
        width: 100%;
    }

    .numbers-anim .col-2 {
        display: none;
    }

    .txt-btn-box .col {
        width: 100%;
    }
}

.s61-simple-slide .container .swiper .swiper-wrapper .swiper-slide .image img {
    width: 100%;
    display: block;
}

.s61-simple-slide .container .swiper .pagination {
    display: flex;
    justify-content: end;
    gap: 13px;
    margin-right: 15px;
    margin-top: 25px;
}

.s61-simple-slide .container .swiper .pagination .button-prev,
.s61-simple-slide .container .swiper .pagination .button-next {
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .s61-simple-slide .container .swiper .pagination {
        margin-right: 0;
        justify-content: center;
    }
}