/* NavBar */
nav.navbar{
    height: 8vh;
    box-shadow: 0px 0px 5px black;
}
.nav-link{
    color: white!important;
}
.nav-link:hover{
    color: orangered!important;
}
.navbar-brand{
    font-weight: 700;
}
nav .navbar-nav{
    justify-content: center;
}
@media(max-width:991px){
    nav .navbar-nav{
        justify-content: start;
    }
    nav .offcanvas-body{
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        justify-content: center;
    }
}
/* Hero Section */
.hero-section{
    height: 90vh;
    /* width: 100vw; */
    /* background-color: rgb(240, 199, 205); */
    /* background-color: whitesmoke; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero-section>img{
    height: 50%;
    width: 40%;
    border-radius: 15px;
}
@media(max-width:991px){
    .hero-section>img{
        width: 90%;
        border-radius: 15px;
    }
}
@media(max-width:425px){
    .hero-section>img{
        height: auto;
    }
}

/* Features Section */
#features-section{
    padding-top: 20px;
    padding-bottom: 30px;
    /* background-color: ivory; */
}
#features-section h2{
    transition: 0.2s ease-in-out;
}
#features-section h2:hover::after{
    content:" 🚀";
}
.card{
    box-shadow: 0px 0px 5px white;
    border-radius:0px!important;
}
.card-header{
    border-top: 5px solid orange;
    border-radius: 0px!important;
}

/* Security Section */
#security-section .security-img{
    width: 100%;
    position: relative;
}
#security-section h2{
    transition: 0.2s ease-in-out;
}
#security-section h2:hover::after{
    content:" 🔐";
}
.security-img img{
    object-fit: contain;
    width: 100%;
    opacity: 0.8;
    transition: 0.2s ease-in-out;
}
.security-img img:hover{
    transform: scale(1.02);
}
.security-img p{
    position: absolute;
    top: 0;
    margin: 0;
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
}


/* How it Works Section */
#working-section h2{
    transition: 0.2s ease-in-out;
}
#working-section h2:hover::after{
    content:" ⚙️";
}
.steps-container{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    /* flex-wrap: wrap; */
    column-gap: 25px;
    row-gap: 25px;
}
.steps{
    background-color: darkslateblue;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
}
.steps .steping{
    font-size: 18px;
}
.steps .content{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.steps .content i{
    font-size: 25px;
}

/* Reviews Section */
#reviews-section h2{
    transition: 0.2s ease-in-out;
}
#reviews-section h2:hover::after{
    content:" ⚖️";
}


/* Footer Section */
footer ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.links-foot li a{
    text-decoration: none;
    color: whitesmoke;
    transition: 0.2s ease-in-out;
}
ul.links-foot li:hover{
    text-decoration: underline;
}
ul.social{
    display: inline-flex;
    column-gap: 15px;
}
ul.social li{
    font-size: 30px;
}
ul.social li a{
    text-decoration: none;
    color: white;
    transition: 0.2s ease-in-out;
}
li.twitter a:hover{
    color:black;
}
li.telegram a:hover{
    color: #32aadf;
}
li.reddit a:hover{
    color:#ff3f18;
}
li.github a:hover{
    color:black;
}
@media(max-width:771px){
    footer{
        text-align: center;
    }
    .link-contain, .social-contain{
        border-bottom: 1px solid whitesmoke;
        padding-bottom: 15px;
    }
}

/* All Pages */
.title-banner {
    background-color: orange;
    padding: 15px;
}