* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* header */
header {
    width: 100%;
    position: fixed;
    background-color: rgb(10, 52, 99);
    justify-content: center;
    display: flex;
    z-index: 1;
}

.nave-bar {
    margin-left: auto;
    width: 100%;
    margin-right: auto;
    display: flex;
    gap: 31px;
    justify-content: center;
}

/* logo column */
.logo {
    order: 1;
    transition: all .3s ease-in-out 0s;
    width: 76px;
    margin-bottom: 7px;
}

.image1 {
    width: 100%;
}

/* links column */
.menue {
    display: flex;
    transition: all .5s ease-in-out;
    order: 2;
}

.menue-bar {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
}

.menue-links {
    list-style: none;
    font-size: .8125rem;
    padding: 0 5px;
    padding-top: 18px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    text-align: center;
    align-items: center;
    white-space: nowrap;
    transition: all .3s ease-in-out 0s;
}

.menue-links:hover {
    color: #03a3e4;
    text-decoration: none;
}

/* hover effect */
.active {
    width: 10px;
    height: 10px;
    -webkit-transition: all .3s ease-in-out .2s;
    transition: all .3s ease-in-out .2s;
    color: #03a3e4;
    margin-left: 17px;
    margin-top: 6px;
    opacity: 0;
}

.active i{
    -webkit-transition: all .3s ease-in-out .2s;
    transition: all .3s ease-in-out .2s;
}
.active1 {
    width: 10px;
    height: 10px;
    margin-left: 29px;
    margin-top: 6px;
    -webkit-transition: all .3s ease-in-out .2s;
    transition: all .3s ease-in-out .2s;
    color: #03a3e4;
    opacity: 0;
}

.material-icons {
    cursor: pointer;
    display: none;
}

.drop-down {
    background-color: rgb(10, 52, 99);
    width: 1475px;
    position: absolute;
    left: 46%;
    right: 0%;
    top: 101%;
    padding: 20px 0;
    -webkit-transition: all .3s ease-in-out .2s;
    transition: all .3s ease-in-out .2s;
    text-align: left;
    display: flex;
    transform: translateY(-1px) translateX(-50%);
    display: none;
}

.drop-down-text {
    border-bottom: 1px solid white;
    color: white;
    font-size: 1.0625rem;
    padding: 10px;
    transition: all .3s ease-in-out 0s;
    text-decoration: none;
    display: flex;
}

.drop-down-text:hover {
    color: #03a3e4;
    text-decoration: none;
    border-bottom: 1px solid #03a3e4;
}

.care {
    padding-right: 35px;
}

/* burger */
.burger {
    margin: 20px 0;
    padding-left: 22px;
    padding-right: 49px;
    transition: all .5s ease-in-out;
}

.burger i {
    font-size: 30px;
    cursor: pointer;
    transition: all .3s ease-in-out 0s;
}

#show{
    color: white;
}
#show:hover{
    color: #03a3e4;
}
#none {
    transition: all .3s ease-in-out 0s;
    display: none;
    color: white;
}
#none:hover{
    color: #03a3e4;
}

.none-section {
    padding: 20px;
    background-color: rgb(10, 52, 99);
    position: absolute;
    top: 100%;
    right: 0%;
    width: 100%;
    display: none;
}

.none-section ul {
    margin: 0;
    padding: 0%;
}

.none-dropdown1 {
    list-style: none;
}

.none-dropdown {
    padding: 15px 12px;
    font-size: 1.125rem;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    color: white;
    width: 100%;
    display: flex;
}

.none-dropdown:hover {
    color: #03a3e4;
    text-decoration: none;
}

.pluse1 {
    margin-left: auto;
    font-size: 15px;
    margin-top: 4px;
}

.minuse {
    display: none;
    cursor: pointer;
}

.minuse-list {
    width: 100%;
    padding-left: 15px;
    display: none;
}

.minuse-dropdown {
    list-style: none;
    padding: 12px 18px;
}

.minuse-dropdown a {
    color: white;
    text-decoration: none;
    font-size: .875rem;
    transition: all .3s ease-in-out 0s;
    width: 100%;
    display: inline-flex;
}

.burger i:hover {
    color: #03a3e4;
}

/* button and icon column */
.buttons {
    display: flex;
    align-items: center;
    margin-top: 7px;
    order: 3;
}

.button {
    transition: all .3s ease-in-out;
    text-transform: uppercase;
    background-color: #1559a8;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    margin-right: 7px;
    width: 73%;
    white-space: nowrap;
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: center;
}

.button:hover {
    background-color: #14447a;
    text-decoration: none;
    color: white;
}

.icon {
    width: 30px;
    font-size: .875rem;
    transition: all .3s ease-in-out 0s;
    margin-bottom: 13px;
}
.icon i {
    font-size: 25px;
    color: white;
}
.images img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
    .logo {
        margin: 10px 0;
        transform: translateX(30px);
        order: 2;
    }

    .menue {
        order: 1;
        display: none;
    }

    .buttons {
        order: 3;
        margin-top: 10px;
    }

    .nave-bar,
    .hide-dropdown {
        max-width: 960px;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .burger {
        display: none;
    }

    .nave-bar,
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 991px) {
    .nave-bar {
        max-width: 720px;
    }

    .burger {
        padding-right: 0px;
    }
}

@media (max-width: 767px) {
    .nave-bar {
        max-width: 540px;
    }

    .logo {
        width: 100px;
    }
}
/* image-section */
.advance-payment-image{
    width: 100%;
    padding-top: 60px;
}
.advance-payment-image img{
    width: 100%;
}
.unmatched-voice{
    position: absolute;
    top: 170px;
    right: 80px;
}
.unmatched-voice h1{
    font-size: 70px;
    font-weight: 700;
    color: white;
}
@media (max-width: 1200px) {
    .advance-payment-image{
        padding-top: 72px;
    }
    .unmatched-voice h1{
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .advance-payment-image{
        padding-top: 88px;
    }
    .image3{
        display: none;
    }
    .unmatched-voice{
        text-align: center;
        left: 0;
        right: 0;
        top: 130px;
    }
}
@media (min-width: 767px) {
    .image2{
        display: none;
    }
}
/* section */
.section{
    padding-top: 70px;
}
.section h1{
    font-weight: 700;
    color: #1559a8;
    text-align: center;
}
/* form */
.form{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 30px;
}
.error {
    border-color: red !important;
}
/* section3 */
.section3 {
    background: linear-gradient(150deg, #00f4ff, #1567b0);
}
.app-image{
    margin-top: -60px;
}
.app-text{
    color: white;
}
.app-text h5{
    margin: 30px 0 24px;
    font-weight: 800;
    font-size: 30px;
}
.app-buttons{
    margin-top: 40px;
    display: flex;
    gap: 20px;
    margin: 40px 150px;
}
.app-buttons img{
    height: 60px;
    width: 100%;
}
@media (max-width: 1200px) {
    .app-buttons{
        margin: 40px 100px;
    }
}
@media (max-width: 991px) {
    .app-text h5{
        font-size: 20px;
    }
    .app-text p{
        font-size: 10px;
    }
    .app-buttons{
        margin: 20px 90px;
    }   
}
@media (max-width: 767px) {
    .app-image{
        margin-top: 20px;
    }
    .app-text h5{
        font-size: 30px;
    }
    .app-text p{
        font-size: 15px;
    }
}
/* footer */
footer{
    background-color: #f1f1f1;
    color: #667578;
    float: left;
    padding-top: 60px;
    width: 100%;
}
.footer-box{
    padding: 20px;
}
.footer-box h5{
    margin-bottom: 15px;
    color: #333333;
    font-size: .9375rem;
    font-weight: 800;
}
.footer-box p{
    font-size: 1.1111rem;
}
.footer-links-column{
    display: flex;
}
.footer-box ul{
    padding: 0;
}
.footer-links{
    list-style: none;
    margin-bottom: 10px;
}
.footer-links a{
    text-decoration: none;
    color: #667578;
    transition: all .3s ease-in-out 0s;
    display: inline-block;
}
.footer-links a:hover{
    margin-left: 15px;
    color: #14447a;
}
.privacy{
    margin-bottom: 24px;
}
.privacy a{
    padding: 0 20px;
    color: #667578;
    text-decoration: none;
}
.privacy a:hover{
    color: #1559a8;
    transition: all .3s ease-in-out 0s;
}
.privacy a:nth-child(1){
    border-right: 1px solid #667578;
}
.privacy a:nth-child(2){
    border: none;
}
.ffollow{
    margin-bottom: 25px;
}
.ffollow h5{
    margin-bottom: 25px;
}
.icon-list{
    display: flex;
    justify-content: center;
    gap: 80px;
}
.icon-list a{
    text-decoration: none;
    color: #667578;
}
.icon-list a:hover{
    color: #c3c3c3;
    transition: all .3s ease-in-out 0s;
}
.footer-end{
    margin-bottom: 30px;
}