.navbar-nav {
    display: flex;
    gap:10px;
    flex-flow: column;
}
.navbar-nav li a{

    font-weight: bold;

    padding: 14px 21px;
    border-radius: 0.5rem;
    text-decoration: none;
}
section{
    padding-bottom: 2rem;
}

/** colors head1  ------------------*/
#head1 .navbar-nav li a{
    color: var(--white);
}
#head1 .navbar-nav li a:hover{
    background-color: var(--gray);
}
#head1 .navbar-nav li.active a:hover{
    background-color: var(--gray);
    color: white;
}

#head1 .navbar-nav li.active a{
    color: var(--primary);
    background-color: white;
}

/** colors head2  ------------*/
#head2 .navbar-nav li a{

}
#head2 .navbar-nav li a:hover{
    background-color: #eee;
    color: #464646;
}
#head2 .navbar-nav li.active a:hover{
    background-color: var(--gray);
    color: white;
}

#head2 .navbar-nav li.active a{
    color: var(--white);
    background-color: var(--primary);
}


/* --------------------------------------*/
.container{
    width: 1440px;
}
.content-body{
    display: flex;
    flex-flow: column;

}


header#head1{
    background-image: url("../images/landing/bg.jpg");
}
header nav{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    padding:  1rem;

}
header .container{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    color:white;


}
/* ------------------------------------- */
#pricing .card{
    height: 100%;
    border-radius: 1rem;
}
#pricing .card.recommended {
background-color: #EFF6FF;
}
#pricing .card .recommended{
    border-radius: 1rem 1rem 0 0 ;
}
#pricing .head h3{
    text-align: center;
    font-size: 3rem;
    padding:4rem 0 3rem 0;
    color: var(--dark);
    font-weight: bold;
}
#pricing .head{
    margin-bottom: 2rem;
}
#pricing .badge-pill{
    padding: 5px 8px 5px 8px;
}
#pricing .prices{
    display: flex;
    gap:1rem;
    flex-flow: row;
}
#pricing .prices .card .card-body{
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
#pricing .prices .currency{
    font-size: 17px;
    top: -6px;
    position: relative;
}
#pricing .prices .duration{
    font-size: 17px;
    top: -3px;
    position: relative;
}

@media screen and (max-width:449px){
    #pricing .prices {
        flex-flow: row wrap;

    }
    #pricing .prices > div{
        width: 100% ;
    }
}
@media screen and (min-width:450px) {
    #pricing .prices {
        flex-flow: row wrap;
        justify-content: center;
    }
    #pricing .prices > div{
        width: 330px ;
    }
}
@media screen and (min-width:700px ){
    #pricing .prices {
        flex-flow: row wrap;
        justify-content: center;
    }
    #pricing .prices > div{
        width: 242px;
    }
}

@media screen and (min-width:900px ){
    #pricing .prices {
        flex-flow: row wrap;
    }
    #pricing .prices > div{
        width: 240px;
    }
}
/* ------------------------------------- */
#contact-us{
    background: rgb(47,84,233);
    background: linear-gradient(90deg, rgba(47,84,233,1) 0%, rgba(0,27,137,1) 100%);
    padding: 4rem 1rem;
    color:white;
}
#contact-us .big-font{
    font-size: 2rem;
    font-weight: bold;

}
#contact-us .container{
    display: flex;
    flex-flow: row;
    gap: 2rem;
}
#contact-us .col-email{
    display: flex;
    flex-flow: column;
    justify-content: center;
}
#contact-us .box{
    background-color: white;
    padding: 4px 6px;
    border-radius: 0.4rem
}
#contact-us .box input{
    border: none;
    outline: none;
}



/* ------------------------------------- */
footer{
    color:white;

    background-color: var(--dark);
    padding: 3rem 0px;
}
footer hr{
    color: red;
}
footer .footer-text{
    font-size: smaller;
    color: var(--secondary);
}

/*--------------------------*/
.badge-white {
    background-color: white;
    border: 1px solid #fffdfd;
    padding: 10px;
    box-shadow: -1px 9px 20px -7px rgba(0, 0, 0, 0.57);
    -webkit-box-shadow: -1px 9px 20px -7px rgba(0, 0, 0, 0.57);
    border-radius: 2rem;

}