html{
    scroll-padding: 100px;
    scroll-behavior: smooth;
}
body{
    font-family: "Montserrat", serif;
}

.customHerosection {
    background-image: url("../images/mumbai-skyline-skyscrapers-construction[1].jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.479);
    background-blend-mode: darken;
}




.customNavBtn:focus{
    border: 1px solid black;
    background-color:transparent;
    box-shadow: none;
}

.customNav{
    position: relative;
}
.customNav::after {
    content: '';
    width: 0;
    position: absolute;
    height: 2px;
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    transition: all 1s ease;
}


.customNav:hover::after {
    background-color: white;
    width: 100%;
}
.customHeroForm:focus{
    border: 2px solid black;
    box-shadow: none;
    background-color: none;
}
.customCard {
    background-color: rgba(109, 109, 109, 0.454);
}
.customTermcondition{
    background-color: black;
    height: 40vh;

}
.customHeroFormBack{
    background-color: rgba(0, 0, 0, 0.516)
}
.customHeroText{
    font-size: 50px;
}
.modal-backdrop.show {
    opacity: 0;
}
.customModal{
    background-color: rgba(0, 0, 0, 0.767);
}
.modal-body{
    background: linear-gradient(to right,black,white);
}
.customModalBtn{
    background: linear-gradient(to left,grey,white);
    color: black;

}
.customModalBtn{
    animation: anime 1s infinite alternate;
}
@keyframes anime {
    100%{
        scale: 1.1;
        /* background-color: rgba(255, 0, 0, 0.079); */
        /* color: black; */
    }
    
}