* {
    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 */
.unmatched-image {
    width: 100%;
    padding-top: 60px;
}

.unmatched-image img {
    width: 100%;
}

@media (max-width: 1200px) {
    .unmatched-image {
        padding-top: 72px;
    }
}

@media (max-width: 767px) {
    .unmatched-image {
        padding-top: 88px;
    }

    .image3 {
        display: none;
    }
}

@media (min-width: 767px) {
    .image2 {
        display: none;
    }
}

/* section1 */
.section {
    padding-top: 40px;
}

.section h5 {
    font-size: 2.5rem;
    color: #1559a8;
    font-weight: 700;
    margin-bottom: 70px;
    text-align: center;
}
.column {
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.column h4 {
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: black;
    border-bottom: 1px solid #dee2e6;
}

.boxes{
    display: flex;
    gap: 30px;
}
.box {
    border: 1px solid #dee2e6;
    width: 170px;
    cursor: pointer;
    padding: 10px;
    border-radius: 7px;
    margin-right: 10px;
    transition-timing-function: cubic-bezier(.98,0,.22,.98),linear;
}

.circle {
    border: 2px solid #1559a8;
    border-radius: 50%;
    content: "";
    display: block;
    height: 14px;
    position: absolute;
    left: 140px;
    top: 20px;
    width: 14px;
    transition: inherit;
}
@media (max-width: 1265px) {
    .box:last-child{
        margin-top: 10px;
    }
}
@media (max-width: 938px) {
    .box:nth-child(3){
        margin-top: 10px;
    }
}
@media (max-width: 610px) {
    .box{
        width: 100%;
        margin-bottom: 20px;
    }
    .circle{
        display: none;
    }
    .column h4{
        font-size: 17px;
    }
}
.box p {
    font-size: 23px;
    font-weight: 600;
    margin-left: 20px;
    margin-bottom: 0%;
    transition: inherit;
}

.box p sub {
    font-size: .4em;
}

.border11 {
    border: 2px solid #1559a8;
    width: 10px;
    margin-bottom: 10px;
    transition: inherit;
}
.box small{
    padding-top: 20px;
    color: #1559a8;
}
.error {
    border-color: red !important;
}
.circle {
    background-color: #ffffff;
    transition: background-color 0.4s ease; /* Add your default circle color */
  }

  .circle.selected {
    background-color: #1559a8; /* Add your selected circle color */
}
.border11 {
    width: 10px; /* Add your default border width */
  }

  .border11.selected {
    width: 100%;
    transition: width 0.4s ease; /* Add your selected border width */
  }

  .box.selected p {
    font-size: 35px;
    transition: font-size 0.4s ease; /* Add your selected font size */
  }
/* section3 */
.terms-conditions {
    padding-bottom: 30px;
    padding-top: 40px;
    /* max-width: 55%; */
    margin-left: auto;
    margin-right: auto;
}

.terms-conditions h5 {
    color: black;
    font-weight: 600;
    margin-bottom: 15px;
}

.terms-conditions-text {
    display: flex;
}

.terms-conditions-text i {
    color: #0c8fc9;
    margin-top: 5px;
    margin-right: 10px;
}

.terms-conditions-text p{
    margin-bottom: 8px;
}
/* .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;
}