@import url(/fonts/AnisaSans.ttf);

@font-face {
    font-family: myFirstFont;
    src: url(/fonts/AnisaSans.ttf);
}

@font-face {
    font-family: mySecondFont;
    src: url(/fonts/sassoon/SassoonSansStd-Medium.otf);
}

body {
    margin: 0%;
    padding: 0%;
    font-family: myFirstFont;
    overflow-x: hidden;
}

/* .landing-page {
    position: relative;
} */

.logo {
    width: 10rem;

}

p {
    font-family: myFirstFont;
    font-weight: 700;
}

/* .hero {
    width: 100%;
    height: 100%;
    background-image: url('/Assets/hero-image-home-page-v2.jpg');
    background-size: 100% 100%;

} */

.header {
    position: relative;
    padding: 23rem 48rem;
    color: #000000;
    background-color: #ffffff;
    background-image: url(/Assets/hero-image-home-page-v2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.sub-text {
    color: white;
    font-size: 3rem;
    font-family: myFirstFont;
    position: absolute;
    top: 21rem;
}

.logo-typo {
    width: 35rem;
    height: auto;
    position: absolute;
    top: 10.5rem;
}

.scrolling {
    overflow-y: hidden;
    overflow-x: hidden;
}

.tour-button {
    position: absolute;
    top: 35rem;
    width: 16rem;
    left: 39.5rem;
}

.ct-animate-blink {
    position: absolute;
    top: 3.5rem;
    font-size: 2rem;
    left: 3rem;
    text-decoration: none;
    color: #450A0A;
    animation: blink 1.5s infinite;
    animation-fill-mode: both;
}

@keyframes blink {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.back-button {
    position: fixed;
    height: 4rem;
    cursor: pointer;
    border: 0cm;
    background-color: rgba(255, 255, 255, 0);
    margin-top: 2rem;
    margin-left: 3rem;
    border: none;
    outline: none;
    z-index: 1234567890;
}

button:focus {
    border: none;
    outline: none;
}

.audio_button {
    position: absolute;
    text-decoration: none;
    width: 4%;
    height: auto;
    top: 40rem;
    background-color: rgb(255, 255, 255);
    border: #00000000;
    border-radius: 50%;
    left: 2rem;
    padding: 0.8rem;
}


@media only screen and (max-width: 600px) {
    body {
        margin: 0%;
        padding: 0%;
        font-family: mySecondFont;
    }

    * {
        margin: 0%;
        padding: 0%;
        font-family: mySecondFont;
        overflow-x: hidden;
    }

    .header {
        position: relative;
        padding: 20rem 10rem;
        background-image: url(/Assets/mobile-heroImage.jpg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .tour-button {
        position: absolute;
        top: 33.5rem;
        width: 10rem;
        left: 6.5rem;
    }

    .ct-animate-blink {
        position: absolute;
        top: 1.8rem;
        font-size: 1.3rem;
        left: 1.6rem;
        text-decoration: none;
        color: #450A0A;
        animation: blink 1.5s infinite;
        animation-fill-mode: both;
    }

    @keyframes blink {
        0% {
            opacity: 0
        }

        50% {
            opacity: 1
        }

        100% {
            opacity: 0
        }
    }

    .back-button {
        position: absolute;
        height: 2rem;
        cursor: pointer;
        border: 0cm;
        background-color: rgba(255, 255, 255, 0);
        margin-top: 0.8rem;
        margin-left: 0.3rem;
        border: none;
        outline: none;
    }

    button:focus {
        border: none;
        outline: none;
    }

    .audio_button {
        position: absolute;
        text-decoration: none;
        width: 10%;
        height: auto;
        top: 36rem;
        background-color: rgb(255, 255, 255);
        border: #00000000;
        border-radius: 50%;
        left: 1rem;
        padding: 0.3rem;
    }

}