/* nav bar */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.container-fluid {
    overflow: hidden;
}

.nav {
    position: relative;
    background-color: #0062c3;
    z-index: 200;
}

.nav .logo {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .logo img {
    width: 80px;
    height: 72px
}

.nav button {
    background: transparent !important;
    border: 1px solid transparent !important;
    outline: none!important;
}

.navitems ul {
    height: 100%;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 570px;
    margin-right: 28%;
}

.navitems>ul>li {
    height: 100%;
    display: block;
    align-items: center;
    transition: all 0.5s;
    position: relative;
}

.navitems ul li:nth-child(1) a {
    font-weight: bold;
}

.navitems ul li:nth-child(1) a:hover {
    text-decoration-line: underline;
}

.navitems ul li a {
    font-size: 20px;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s
}

.submeanu {
    position: fixed;
    width: 150px;
    list-style: none;
    display: none;
    transition: all 0.3s;
}

.sublist {
    height: 40px;
    border-bottom: 1px solid white;
    font-size: 20px;
    color: white;
    padding-left: 7px;
    background: #0054a8;
    cursor: pointer;
    transition: all 0.3s;
}

.sublist a {
    width: 100% !important;
    text-decoration: none !important;
    font-weight: normal !important;
}

.navitems2:hover .submeanu {
    display: block;
}

.sublist:hover {
    background-color: #004080;
    color: #33CEFF
}

.navitems ul li a:hover {
    color: #33CEFF !important
}


/* nav bar  end*/


/*footer area*/

.footer {
    background-color: #0062c3;
    min-height: 425px;
}

.list {
    list-style: inside;
}

.list li {
    color: white
}

.list a {
    color: white;
    text-align: left;
    font-size: 1vw;
    transition: all 0.2s;
    font-weight: 500
}

.list a:hover {
    color: #a2d2ff;
}

.footer .footer-detail {
    /*margin-top: 10px*/
}

.footer-detail ul {
    list-style: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-detail ul li a,
label {
    color: white;
    font-size: 1.2vw;
}

.disabled {
    pointer-events: none;
    cursor: default;
}

strong {
    margin: 0px 10px;
    font-weight: bolder;
}

small {
    color: white;
}

.social-link li:nth-child(1) {
    margin-bottom: 12px !important
}

.social-link i {
    font-size: 30px;
    margin: 0px 15px;
}


/* app btn */

.app {
    display: flex;
    margin-bottom: 5px;
    justify-content: start;
}

.app-btn {
    display: flex;
    align-items: center;
    padding: 0px;
    outline: none;
    border: 1px;
    height: 45px;
    width: 150px;
    background: #fdfcfd;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
}

.app-btn-img {
    width: 27%;
    border-right: 1px solid #ededed;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
}

.app-btn-img img {
    width: 25px;
}

.app-btn p {
    margin: 0px;
    text-align: center;
    width: 73%;
    color: #a4a5a7;
    font-size: 11px !important
}

.app-btn p span {
    color: #77797c;
    font-weight: 700;
}


/* countryselector */

div.dropdown {
    position: relative;
    width: 98px;
}

div.dropdown>div.caption {
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0px;
    line-height: 150%;
    letter-spacing: 0.3px;
    height: 39px;
    display: flex;
    align-items: center;
    border: 0.10000000149011612px solid #ffffff;
}

div.dropdown>div.caption span {
    color: white !important;
    right: 10px !important;
    font-size: 12px !important;
}

div.dropdown>div.caption svg,
div.dropdown>div.caption img {
    margin-top: 0px !important;
    left: 15px;
    transform: scale(1.5);
    width: 25px !important;
}

div.dropdown>div.list {
    position: absolute;
    background: linear-gradient(to bottom, #0a0830, #378fe1);
    width: 170px;
    border-radius: 12px;
    box-shadow: 0px 12px 24px rgb(21 18 51 / 13%);
    opacity: 0;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    transform: scale(0.85);
    transform-origin: 50% 0;
    top: 52px;
    left: -36px;
    z-index: -1;
    visibility: hidden;
    padding: 10px 0;
    color: white !important;
    overflow-x: auto;
}

div.dropdown.open>div.list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

div.dropdown>div.list>div.item {
    padding: 12.5px 25px 10.5px 10px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100%;
}

div.dropdown>div.list>div.item svg,
div.dropdown>div.list>.item img {
    position: relative !important;
    margin-top: 0px !important;
    width: 28px !important;
    height: 14px !important;
    left: 0px !important;
    margin-right: 6px;
    object-fit: cover;
}

div.dropdown>div.list>div.item span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: white !important;
    position: relative !important;
    right: 0px !important;
    margin-left: auto !important;
}

div.dropdown>div.list>div.item.selected {
    background: rgba(36, 60, 187, 0.2);
    pointer-events: none;
}

div.dropdown>div.list>div.item:hover {
    background: rgba(36, 60, 187, 0.2);
}

div.dropdown>div.caption img,
div.dropdown>div.list>div.item img,
div.dropdown>div.caption svg,
div.dropdown>div.list>div.item svg {
    position: absolute;
    margin-top: 2.5px;
    left: 15px;
}

div.dropdown>div.list>div.item span,
div.dropdown>div.caption span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #243cbb;
    position: absolute;
    right: 36px;
}

div.dropdown>div.list>div.item span {
    right: 20px;
}

@media (max-width: 576px) {
    div.dropdown {
        width: 72px;
    }
    div.dropdown>div.caption span {
        right: 7px !important;
        font-size: 10px !important;
    }
    div.dropdown>div.caption svg,
    div.dropdown>div.caption img {
        margin-top: 0px !important;
        left: 9px;
        transform: scale(1.3);
        width: 20px !important;
    }
}


/* country selector end */


/* app btn end */


/*footer area end*/

@media screen and (max-width: 1200px) {
    .footer-detail ul li a,
    label {
        font-size: 1.5vw
    }
}

@media screen and (max-width:992px) {
    .navitems ul>li {
        margin-top: 17px;
        width: 100%;
        border-bottom: 1px solid white;
        display: block;
    }
    .submeanu {
        position: absolute;
        width: 100%;
        z-index: 30;
    }
    .sublist {
        border: none;
        border-bottom: 1px solid white;
        margin-bottom: 0px
    }
    .navitems ul {
        justify-content: start;
        align-items: start;
        margin-bottom: 30px;
        width: 100%;
        margin-right: 0px
    }
    .logo i {
        display: block;
    }
    .nav .logo {
        margin: 0px;
    }
    .navbar-toggler {
        background-color: white !important
    }
    .list a {
        font-size: 1.3vw
    }
}

@media screen and (max-width:900px) {
    .footer-detail ul li a,
    label {
        font-size: 15px
    }
}

@media screen and (max-width: 767px) {
    .nav .logo {
        margin: auto;
        justify-content: space-between;
    }
    .footer .footer-detail {
        margin-top: 20px
    }
    .footer-detail ul li {
        margin-bottom: 20px !important
    }
    .footer-detail ul li a,
    label {
        font-size: 2vw
    }
    .social-link i {
        font-size: 30px;
        margin: 0px 5px;
    }
    .list {
        width: 100%
    }
    .list a {
        font-size: 2vw
    }
}

@media screen and (max-width:576px) {
    .list a,
    .footer-detail ul li a,
    label {
        font-size: 4vw
    }
    .list {
        display: flex;
        flex-direction: column;
        margin: 20px auto;
        width: 90%;
    }
    .footer-detail ul {
        margin-left: 10%;
    }
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 16px
    }
    p {
        font-size: 14px !important
    }
}