*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* navigation bar */
.apps{
    padding: 3px;
    background-color: #055296;
    font-weight: 700;
    color: #fff;
    width: 100%;
}
.apps-left{
    float: left;
}
.apps-right{
    margin-left: 50%;
}
.apps ul li{
    display: inline;
}
.fa-phone{
    border: 2px solid white;
    padding: 3px;
    border-radius: 50px;
}
.fa-envelope{
    border: 2px solid white;
    padding: 3px;
    border-radius: 50px;
}
.navbar{
    background-color: #fff !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
    top: 0 !important;
    position: sticky !important;
}
.navbar-brand{
    margin-left: 8%;
}
.navbar-collapse{
    margin-left: 10%;
}
.nav-link{
    color: #04327c !important;
}
.nav-link:hover{
    color: #04243f !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
}
.blink {
    animation: blink 1s steps(2) infinite;
    /* 1 second animation, 2 steps, repeat infinitely */
}

@keyframes blink {
    0% {
        opacity: 1;
        /* Fully visible */
    }

    50% {
        opacity: 0;
        /* Invisible */
    }

    100% {
        opacity: 1;
        /* Fully visible again */
    }
}

.body{
    padding: 50px;
    font-family: 'Poppins', sans-serif;
    background-color: #daeef1;
}
.form-box {
    border-radius: 20px;
    background-color: #b0cdda;
    padding: 20px;
    width: 50% !important;
    margin: 80px auto !important;
}
@media only screen and (max-width:800px){
    .form-box{
        width: 90% !important;
    }
}

input[type=text]{
    /* width: 100%; */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=email]{
    /* width: 100%; */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=submit] {
    background-color: #045076;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #0e2c42;
}

#service{
    /* width: 100%; */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
#rank{
    /* width: 100%; */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

/* footer */
.foot{
    width: 100%;
    padding: 30px;
    background-color: rgb(148, 180, 231);
}
.footrap{
    width: 90%;
    margin: auto;
}
.foot1 p{
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}
.foot2 p{
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}
.foot2 h6{
    color: black;

}
.footer{
    width: 100%;
    padding: 10px;
    background-color: rgb(148, 180, 231);
}

/* responsive */
@media only screen and (max-width:570px){
    iframe{
        width: 300px;
    }
}