header{
    background-color: var(--white-color);
    position: sticky;
    top: 0;
    z-index:  3;
}
header .main-header{
    background-color: white;
}
header .main-header .content{
    display: flex;
    align-content: center;
    justify-content: space-between;
    gap: 30px;
}
header .main-header .content .logo{
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}
header .main-header .content .logo img{
    width: 100%;
    max-width: 230px;
}
header .main-header .content .help-btn{
    height: auto;
    display: flex;
    align-items: center;
    margin: 17px 0;
    background-color: var(--main-color);
    font-family: 'Roboto-b';
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
    &:hover{
        background-color: var(--blue-color);
        color: var(--main-color);
    }
    @media(max-width: 576px){
        margin: 5px 0;
        font-size: 16px;
    }
}
header .dark-header{
    background-color: var(--main-color);
}
header .dark-header .fixed-header{
    display: none;
    @media(max-width: 767px){
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 350px;
        background-color: var(--main-color);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateX(-100%);
        &.open{
            transform: translateX(0);
            transition: all ease-in-out 0.7s;
        }
    }
}
header .dark-header .fixed-header .head{
    display: flex;
    align-content: center;
    justify-content: space-between;

}
header .dark-header .fixed-header .head button{
   background-color: white;
    font-family: 'Roboto-b';
    font-size: 18px;
    color: var(--main-color);
    letter-spacing: 1px;
}
header .dark-header .fixed-header .head .close{
   display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
header .dark-header .fixed-header ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    padding-top: 30px;
}
header .dark-header .fixed-header ul li a{
    color: white;
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Roboto-m';
}
header .hamburger{
    display: none;
    @media(max-width: 767px){
        display: flex;
    }
}
header .hamburger svg{
    fill: white;
    stroke: white;
}
header .dark-header .pages{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 30px 0;
    list-style: none;
    margin: 0;
    flex: 1;
    @media(max-width: 767px){
        display: none;
    }

}
header .dark-header .pages li a{
    display: block;
    color: white;
    font-family: 'Roboto-b';
    text-transform: capitalize;
    text-decoration: none;
    font-size: 18px;
    &:hover{
        color: #004b73;
        transition:all ease-in-out 0.5s;
    }
}
#exampleModal .modal-body .section{
    margin-bottom: 15px;
}
#exampleModal .modal-body .section .more{
    display: none;
}
#exampleModal .modal-body .section .more form{
    margin-top: 10px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}
#exampleModal .modal-body .section .more form label{
    margin-bottom: 5px;
    font-size: 13px;
    color: #343131;
    font-family: 'Roboto-r';
    width: 100%;
}
#exampleModal .modal-body .section .more form input{
    border: 1px solid #ccc;
    padding:7px;
    border-radius: 10px 0 0 10px;
    flex: 1;
    font-family: 'Roboto-r';
    font-size: 15px;
    width: 90%;
}
#exampleModal .modal-body .section .more form .submit{
    border: 1px solid var(--main-color);
    padding:7px;
    border-radius: 0 10px 10px 0;
    font-family: 'Roboto-r';
    font-size: 15px;
    width: 20%;
    background-color: var(--main-color);
    color: var(--white-color);
}
#exampleModal .modal-body .section .trigg{
    padding: 10px 30px;
    border-radius: 10px;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size:15px;
    font-family: 'Roboto-b';
    border: none;
    width: 100%;
    &:hover{
        background-color: var(--blue-color);
    }
}
#exampleModal .modal-body .section .more .descr{
    margin-bottom: 5px;
    font-size: 13px;
    color: #343131;
    font-family: 'Roboto-r';
    width: 100%;
}
#exampleModal .modal-body .section .more h3{
   font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
   color: var(--dark-color);
    font-family: 'Roboto-b';
}
#exampleModal .modal-body .section .more .find{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    font-family: 'Roboto-b';
    text-decoration: none;
    &:hover{
        color: var(--dark-color);
    }
}
#exampleModal .modal-body .section .more ul{
    display: flex;
    align-content: center;
    gap: 23px;
    list-style: none;
    padding: 15px 0 0;
    justify-content: center;
 }
#exampleModal .modal-body .section .more ul li a{
    display: flex;
    align-content: center;
    justify-content: center;

}
#exampleModal .modal-body .section .more ul li a img{
    width: 34px;
    height: 34px;
    border-radius: 100%;
    &:hover{
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}
#exampleModal .modal-title{
    font-family: 'Roboto-b';
}