*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    height: 100%;
}

@font-face {
    font-family: sanscrin;
    src: url(./font/DancingScript-VariableFont_wght.ttf);
}
.sanscrin{
    font-family: sanscrin !important;
}
.text-crim{
    color: #D4A762 !important;
}
.bg-crim{
    background-color: #D4A762 !important;
}
.bg-light-crim{
    background-color: #FFFCF8 !important;
}
.text-18{
    font-size: 18px !important;
}

.flex-1{
    flex: 1;
}
.crim-border{
    border: 1px solid #D4A762 !important;
}
.crim-btn:hover{
    color: #D4A762 !important;
    background-color: black !important;
    iconify-icon{
        color: #D4A762 !important;
    }
}




/* NAVBAR */

.nav-link{
    font-size: 17px !important;
    font-weight: 500 !important;
}.nav-link:hover{
    color: #D4A762 !important;
}

.nav-item.dropdown:hover .dropdown-menu{
    display: inline;
}
.nav-icon{
    width: 45px;
    height: 45px;
    background-color: #D4A762;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* FIRST-CENTION */
.Welcome-button{
    border-color: #D4A762 !important;
}
.firstImages{
    max-width: 500px;
    max-height: 500px;
}
.firstButton{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.firstButton a{
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 760px) {
    .firstButton a{
        width: 250 !important;
        height: 55px;
        margin-top: 8px;
    }
    .firstButton{
        display: flex;
        flex-direction: column;
        align-items: center;
        column-gap: 15px;
        justify-content: center;
    }
    .aboutbox{
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        column-gap: 15px !important;
        justify-content: center !important;
    }
}
/* ABOUT */
.video{
    width: 90px;
    height: 90px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}.video::before{
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 7px solid  #fad49bb2;
    position: absolute;
    top: 0;
    left: 0;

    animation: sayed 2s ease-out infinite;
}
@keyframes sayed{
    to{
         border: 5px solid #fad49bb2;
    }
    from{
         
        border: 15px solid #e09a32b2 !important;
        width: 92px;
        height: 92px;
    }
}

/* SERVICE */

.Services-card{
    position: relative;
    overflow: hidden;
    z-index: 1;
}.Services-card:hover{
    transform: translate3d(10%,10%,100%);
    iconify-icon{
        color: #1F1F1F !important;
    }
    .btn{
        background-color: white !important;
    }
    
}
.Services-card::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #D4A762;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    transform: translateY(-101%);
    transition: .5s all ease;
}.Services-card:hover::before{
    transform: translateY(0);
    
}

/* Book Us */
.book-us-img{
    height: 100% !important;
}