* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: STIXTwoText_Medium;
    src: url('../font/STIXTwoText_Medium.ttf');
}


@font-face {
    font-family: STIXTwoText-Italic_Bold;
    src: url('../font/STIXTwoText-Italic_Bold.ttf');
}

@font-face {
    font-family: STIXTwoText_Bold;
    src: url('../font/STIXTwoText-Bold.ttf');
}

@keyframes animationScale {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    90% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);

    }
}


body {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#Vilaa {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: url("../img/icon-18.png") no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 100px;
    box-sizing: border-box;
}

.header {
    width: 1920px;
    height: 199px;
    display: flex;
    justify-content: space-between;
    padding: 0 80px 0 140px;
    align-items: center;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -200px);
    z-index: 4;
    overflow: hidden;
    opacity: 0;
}

.header_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
}

.header_logo span {
    font-family: STIXTwoText_Bold;
    font-size: 48px;
    color: #F3CB47;
    line-height: 60px;
    font-style: normal;
    margin: 0 50px;
}

.header_logo img {
    width: 116px;
    height: 116px;
    object-fit: contain;
    margin: 0 20px;
}

.header_nav {
    display: grid;
    align-items: center;
    justify-content: center;
    column-gap: 48px;
    grid-template-columns: repeat(3, 162px);
    position: relative;
    z-index: 4;
}



.header_nav span {
    font-family: STIXTwoText_Medium;
    font-size: 24px;
    color: #fff;
    line-height: 30px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-style: normal;
    cursor: pointer;
}

.header_nav span a {
    text-decoration: none;
    color: inherit;
}

.header_nav span:nth-of-type(2) {
    background: linear-gradient(90deg,
            #f0cf61,
            #fae38e 20%,
            #f5be54 40%,
            #f5be4a);
    border-radius: 90px;
    color: #000;
}


.container {
    width: 1920px;
    min-height: 100vh;
    position: relative;
    opacity: 0;
    transform: translateY(100px);
}


.container_title {
    width: 1800px;
    height: 50px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 240px;
    left: 5%;
} 

.container_title span {
    font-weight: bold;
    font-size: 42px;
    color: #FFF;
    line-height: 115px;
    text-align: center;
}

.container_text {
    position: absolute;
    top: 300px;
    left: 5%;
    width: 1800px;
}

.container_text span {
     font-weight: bold;
    font-size: 32px;
    color: #FFF;
    line-height: 1.2;
    text-align: center;
}