:root {
    --white: #FFFFFF;
    --black: #000;
    --blackNav: #424242;
    --blueNav: #133A67;
    --yellowBanner: #FFC99D;
    --whiteBanner: #DADADA;
    --blueItem: #00ADB6;
    --blackItem: #3C4852;
    --infoGray: #808080;
    --redBanner: #BE6A67;
    --reviewsGray: #F1F1F1;
    --whiteFooter: #EEEEEE;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'cairo';
}

header {
    width: 100%;
    height: auto;
    
    background-color:var(--blueNav);

}

header nav {
    width: 88%;
    margin: auto;
    display: flex;
}



header nav .navbar-nav {
    padding: 0px;
    margin: 0px;
}

header nav .navbar-nav .nav-item .nav-link {
    color: var(--white);
}


header nav .navbar-nav .nav-item .nav-link.active::before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    bottom: 35px;
}


header nav .navbar-nav .nav-item .nav-link::before {
    content: "";
    width: 0px;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    bottom: 35px;
}

header nav .navbar-nav .nav-item .nav-link:hover::before {
    width: 30px;
    transition: all 1s ease;
}

nav .btn-Nav1 {
    border: 1px solid var(--white);
    padding: 16px 52px;
    background-color: transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
/* sign */
.sign{
background-color: #FFFFFF;
display: flex;
justify-content: space-between;
width: 85%;
border-radius: 15px;
margin: auto;
padding: 70px;
}

.eye{
    cursor: pointer;
}
.sign .sign__pic {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.sign .sign__pic h2 {
    color: #0A033C;
    line-height: 1.5;
    margin-top: 20px;
    font-size: 35px;
    font-weight: bold;
}

.sign .sign__pic span{
    font-weight: bolder;
    color: #5D5A6F;

}

.sign .sign__pic span a{
    text-decoration: none;
    color: #5D5A6F;
}

.sign__content{
width: 40%;

}

.sign__content button{
    border: 1px solid #DEDDE4;
    padding: 5px;
    font-weight: bolder;
    width: 80%;
    margin: auto;
}

.sign__content button:hover{
    border: 1px solid #DEDDE4;
}

.sign__content p{
    font-weight: bolder;
    text-align: center;
    margin-top: 20px;

}

.sign__content .inp-con{
    border: 1px solid #DEDDE4;
    border-radius: 10px;
    padding: 16px 18px;
}

.sign__content .inp-con input{
width: 100%;
padding-right: 5px;
font-weight: bold;

}

.sign__content .inp-con input:focus{
    border: none;
    outline: none;
}



@media (min-width: 576px){

    .modal-dialog {
    max-width: 85% !important;
    }

    .modal::-webkit-scrollbar {
        display: none;
    }
    
}

footer {
    background-color: var(--blueNav);
    background-image: url("../../assets/images/footer__bg.png");
    height: 500px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
    position: relative;


}


footer .foot__pic {
    position: absolute;
    bottom: 0;
    left: 0;
}

footer .footer__content {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin: auto;
    margin-bottom: 100px;
    margin-top: 50px;
}

footer .footer__content h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

footer .footer__content ul li {
    padding: 4px 0px;
}

footer .footer__content ul li a {
    text-decoration: none;
    color: var(--whiteFooter);
}

footer .footer__content ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

footer .footer__content .subscribe form img {
    margin-bottom: 8px;
}

footer .footer__content .subscribe form h5 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
}

footer .footer__content .subscribe form p {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 8px;
    padding: 10px 0px;
}

footer .footer__content .subscribe form div {
    background-color: var(--white);
}

footer .footer__content .subscribe form div .btn-footer {
    padding: 17px 40px;
    background-color: var(--redBanner);
    color: var(--white);
    border: none;
}