@import url('https://fonts.googleapis.com/css2?family=Bentham&family=Monsieur+La+Doulaise&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('spacing.css');

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

body{
    background:url(../img/web-bg-02.webp) no-repeat center;
    background-attachment: fixed;
    background-size: cover;
    font-family: "Poppins", sans-serif;
    font-size:16px;
    color: #000 !important;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.primary-title{
    font-family: "Monsieur La Doulaise", cursive;
}
.secondary-title{
    font-family: "Bentham", serif;
    letter-spacing: 3px;
}
.primary-color{
    color: #000 !important;
}
.hc-dov-cont{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}
.hc-dove{
    /* width: 1024px;
    height: 1224px; */
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0; */
    /* transform: translate(-50%, -35%) scale(0.3); */
    position: absolute;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    z-index: 100;
    text-align: center;
    animation: doveani 15s 3s forwards;
    opacity: 0;
}
@keyframes doveani{
    0% {
        opacity: 0;
        transform: scale(1.8) translate(0%, 20%);
    }
    40% {
        opacity:.8;
        transform: scale(1.8) translate(0%, -10%);
    }
    75% {
        opacity: 0.9;
        transform: scale(0.33) translate(-2.6%, -90%);
    }
    100% {
        opacity: .5;
        transform: scale(0.35) translate(-2.6%, -82%);
    }
}

@media screen and (max-width: 900px){
    @keyframes doveani{
    0% {
        opacity: 0;
        transform: scale(1.8) translate(0%, 40%);
    }
    40% {
        opacity:.8;
        transform: scale(1.8) translate(0%, 20%);
    }
    75% {
        opacity: 0.9;
        transform: scale(0.4) translate(-2.6%, -65%);
    }
    100% {
        opacity: .5;
        transform: scale(0.35) translate(-2.6%, -70%);
    }
}
}
#main-content{
    display: none;
}

.music{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 500;
    /*border: 1px solid #505050;*/
    /*border-radius: 50%;*/
    /*width: 36px;*/
    /*height: 36px;*/
    text-align: center;
    padding-top:3px;
    font-size: 9px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.music img{
    width: 28px;
    margin: 0 auto;
}