/* #Hero{
    background-image: url('/images/hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#Hero .text-container{
    max-width: 800px;
    text-shadow: 5px 5px 10px white;
} */
body{
    background-color: black;
}
#Hero{
    background-image: url(./images/background/hero.png);
    background-size: cover;
    background-repeat: no-repeat;
}
#About{
    /* background-image: url(./images/background/about.svg); */
    background-size: 100%;
    background-repeat: no-repeat;
}
#OurMission{
    background-image: url(./images/background/our-mission.png);
    /* background-image: url(./images/background/hero.png); */
    background-size: cover;
    background-repeat: no-repeat;
}
#ContactUs{
    /* background-image: url(./images/background/contact-us.png); */
    /* background-image: url(./images/background/about.svg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.custom-card{
    /* background-color: black; */
    border: 1px solid #64C2C533;
    border-radius: 18px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    min-width: 360px;
    max-width: 495px;
    /* align-self: center; */
}
.custom-card.bg{
    background-color: black;
    border: 0.4000000059604645px solid #64C2C533;
    border-radius: 18px;
    opacity: 1;
    background-image: url(./images/background/contact-us-card.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.text-gradient{
    background: transparent linear-gradient(262deg, #65C4C7 0%, #336264 100%) 0% 0% no-repeat padding-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3 !important;
}
.custom-btn{
    font-size: 14px;
    padding: 12.5px 20px;
    line-height: 1.5;
    display: inline-flex;
    background-color: black;
    color: white;
    border: 1px solid #64C2C533;
    border-radius: 12px;
    transition: .4s smooth ease-in-out !important;
    position: relative;
    flex-basis: 1;
    max-width: none;
}
.custom-btn:hover{
    background-color: #458588;
    transition: all .4s ease-in-out !important;
}
/* .hover-btn:hover div:not(.hover-btn:hover div.custom-btn){
    border-color: #458588;
    transform: scale(1.1);
}
.hover-btn div:not(.hover-btn .custom-btn){
    position: relative;
}
.hover-btn div:before:not(.hover-btn .custom-btn:before){
    position: absolute;
    content: '';
    width: 100%;
    height:100%;
    border-radius: 12px;
    border-color: transparent;
} */

@media(max-width:500px){
    .nav-item{
        display: none;
    }
}
@media(max-width:430px){
    .custom-card{
        min-width: 300px;
    }
}