a {
    color: #000;
    text-decoration: none;
}

header {
    position: relative;
    z-index: 1;
}

header .border {
    border-radius: 0 0 45px 45px !important;
}

header .logo {
    filter: brightness(0) invert(1);
}

.searchBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

/* intro */
#intro {
    height: 120svh;
    position: relative;
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: -17svh;
}

#intro .box {
    top: 30%;
    right: 55%;
    width: 30svh;
}

#intro .box-2 {
    top: 30%;
    right: 30%;
    width: 30svh;
}

#intro .billboard {
    top: 27%;
    right: 55%;
    width: 40svh;
    z-index: 2;
    filter: grayscale(100%);
    transition:
        top 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease;
}

#intro .billboard:hover {
    top: 25%;
    filter: grayscale(0%);
    transform: scale(1.1);

}

#intro .tv {
    top: 27%;
    z-index: 1;
    right: 29.5%;
    width: 30svh;
    filter: grayscale(100%);
    transition:
        top 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease;
}

#intro .tv:hover,
#intro .box-2:hover {
    filter: grayscale(0%);
    top: 25%;
    transform: scale(1.1);
}



#intro .cloud-1 {
    position: absolute;
    top: 15%;
    z-index: 1;
    right: 20%;
    width: 40vh;
    animation: moveClouds 10s ease-in-out infinite;
}

#intro .cloud-2 {
    position: absolute;
    top: 25%;
    z-index: 1;
    right: 65%;
    width: 30vh;
    animation: moveClouds 10s ease-in-out infinite;
}

#intro .cloud-3 {
    position: absolute;
    top: 25%;
    z-index: 1;
    right: 43%;
    width: 37vh;
    animation: cloud-3 10s ease-in-out infinite;
}

#intro .cloud-4 {
    position: absolute;
    top: 55%;
    z-index: 1;
    right: 65%;
    width: 30vh;
    animation: moveClouds 10s ease-in-out infinite;
}

#intro .cloud-5 {
    position: absolute;
    top: 55%;
    z-index: 1;
    right: 25%;
    width: 35vh;
    animation: cloud-1 20s ease-in-out infinite;
}

@keyframes moveClouds {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
    }
}

@keyframes cloud-1 {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {

        transform: translateX(-30px);
    }
}

@keyframes cloud-3 {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-30px);
    }
}

#intro .link-1 {
    border: 2px solid #fff;
    top: 65%;
    z-index: 1;
    right: 30%;
    border-radius: 50px;
    padding: 15px;
    font-weight: bold;
    font-size: 25px;
}

#intro .link-1 .dot-link {
    position: absolute;
    background-color: #fff;
    padding: 5px;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid #00cada;
    left: -10px;
}

#intro .link-2 {
    border: 2px solid #fff;
    top: 65%;
    z-index: 1;
    left: 30%;
    border-radius: 50px;
    padding: 15px;
    font-weight: bold;
    font-size: 25px;
}

#intro .link-2 .dot-link {
    position: absolute;
    background-color: #fff;
    padding: 5px;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid #00b3c9;
    left: -10px;
}

#intro .link-3 {
    position: absolute;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    top: 80%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 20px;
    left: 50%;
}

#intro .bottom-slider1 {
    position: absolute;
    bottom: -0.33vh;
    right: 40%;
    transform: translateX(-50%);
    z-index: 1;
    width: 4.8%;
}

#intro .bottom-slider2 {
    position: absolute;
    bottom: -1px;
    left: 44.5%;
    transform: translateX(-50%);
    z-index: 1;
    width: 4.1%;
}

/* positions */
#positions {
    margin-top: 15svh;
}

.image-frame {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* video-wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.03);
    opacity: 0.8;
}

.video-player {
    display: none;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.pyramid {
    position: absolute;
    z-index: -1;
    top: -5svh;
    right: -15svh;
    width: 75%;
    rotate: calc(70deg);
}

footer {
    background-image: url('../images/Footer.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 8vh;
    position: relative;
}

footer .row {
    background-color: #292929;
}

footer .svg-angle-down {
    /* position: absolute; */
    top: 15%;
    right: 50%;
    transform: translate(50%, -50%) !important;
    /* width: 2px !important; */
}

footer .svg-angle-down svg {
    /* width: 2px !important;
    font-size: 15px !important; */
}