@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.mh-50 {
    max-height: 450px !important;
}

.clip {
    overflow: hidden !important;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    position: relative;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-container-vertical .swiper-wrapper {
    position: absolute !important;
}

.arrows {
    position: absolute;
    top: 35%;
    right: 0px;
    z-index: 1000000;
    display: flex;
    flex-direction: column;
}
.arrowbtn {
    font-size: 20px;
    margin-bottom: 35px;
}
.arrowbtn i {
    color: #010483 !important;
    font-size: 25px !important;
}

/* h2 {
    font-size: 3rem;
} */
.section_margin {
    margin: 30px 0;
}

p {
    font-size: 16px;
}
.dark_content {
    font-size: 30px;
}

.header {
    width: 100%;
    height: auto;
    background-color: #3a31c8 !important;
    /* overflow: hidden !important; */
}

.header .logo {
    padding: 5px;
    max-height: 80px;
}
.is_sticky {
    background-color: #3a31c8;
    /* transition: all 0.5s linear;
    position: fixed;
    top: 0; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 8rem; */
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999 !important;
}
.navbar-nav .nav-item .nav-link {
    color: #fff !important;
    position: relative;
}

.navbar .navbar-collapse ul li .nav-link::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    border-bottom: 3px solid #1acc8d;
    width: 0%;
    transition: all 0.4s linear;
}

.navbar .navbar-collapse ul li .nav-link:hover:before {
    width: 97%;
    border-color: #1acc8d;
}

.navbar .navbar-collapse ul li {
    width: fit-content;
}

.header .menu_btn {
    border-radius: 10px;
    color: #010483 !important;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    background: #FFC940;
}

/* Banner Section CSS */

.banner_section {
    margin: 10px 0;
    color: #fff;
}
.banner_left h1 {
    font-weight: 600;
    font-size: 2.5rem;
}

.banner_left span {
    display: inline-block;
    font-weight: 600;
    border-bottom: solid 5px #1acc8d;
    margin-bottom: 30px;
}
.banner_left p {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.banner_left .button {
    display: block;
    background-color: #fff;
    border-radius: 30px;
    color: #010483;
    margin: 20px 0;
    padding: 14px 10px;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0px 10px 30px #00000026;
}
.banner_right img {
    width: 90%;
    /* width: 100%; */
}
.hero-main-img {
    transform: scaleX(-1);
}
.banner_section_sm img {
    width: 70%;
}

/* Icon Card CSS */
.icon_card {
    text-align: center;
    background: #fff;
    box-shadow: 0px 30px 30px #0000000f;
    border-radius: 36px;
    cursor: pointer;
    padding: 21px 0px;
    margin: 20px 0px;
}
/* .icon_card:active {
    background-color: red;
} */
.icon_card .icon_card_title {
    margin-top: 20px;
    color: #010483;
    overflow: hidden;
    font-size: 16px;
}
.icon_image {
    height: 130px;
    width: 110px;
    line-height: 130px;
}
.icon_image .icon_card_img {
    display: inline-block;
    vertical-align: middle;
}

/* Enhance for search page */
.searchFiltersParent .icon_card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin: unset;
    border-radius: unset;
    min-height: unset;
    max-height: unset;
    height: unset;
    border-bottom: 1px solid #01048360;
}

.searchFiltersParent .icon_card_title {
    flex: 1;
    margin: unset;
    align-items: center;
    text-align: start;
    font-size: 17px;
    font-weight: 500;
}

.searchFiltersParent .icon_image {
    display: flex;
    height: 22px;
    width: 22px;
    margin-right: 20px;
}

.searchFiltersParent .icon_image i {
    font-size: 22px;
}

.searchFiltersParent .icon_image img {
    object-fit: contain;
}

/*Enhance search page for mobile*/
@media (max-width: 768px), (max-width: 992px) {
    .searchFiltersParent .icon_image {
        height: 30px;
        width: 60px !important;
        margin-right: unset;
    }

    .searchFiltersParent .icofont-3x {
        font-size: 30px;
    }

    .searchFiltersParent .icon_image i {
        font-size: 30px;
    }
}

/* Feature Section Style */
.feature_section {
    background-color: #c8cbce;
    padding: 80px 30px;
}

.feature_section_item h2 {
    color: #000;
    margin-bottom: 30px;
}

.feature_section_item p {
    font-size: 18px;
    font-weight: 300;
}

.feature_section_img img {
    width: 70%;
}
.feature_btn_section {
    margin-top: 60px;
    /* text-align: center; */
}
.feature_btn {
    box-shadow: 0px 10px 30px #00000026;
    border-radius: 82px;
    opacity: 1;
    border: none !important;
    /* padding: 11px 40px; */
}
.btn-1 {
    background: transparent linear-gradient(270deg, #6156f9 0%, #1a129f 100%) 0% 0% no-repeat padding-box;
}

.btn-2 {
    background: transparent linear-gradient(270deg, #20ffb0 0%, #009f67 100%) 0% 0% no-repeat padding-box;
    font-weight: 500;
}

/* Marketing Section Style */

.marketing_section h2,
.marketing_section h3 {
    color: #000;
    margin-bottom: 30px;
}
.marketing_section p {
    font-size: 18px;
    font-weight: 300;
}
.marketing_section_img {
    width: 80%;
}

/*Waves*/

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 400px;
}
/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
    .content {
        height: 30vh;
    }
}

/*Other*/

.unique-color-dark {
    /* background-color: #7289da !important; */
    /* background: transparent linear-gradient(107deg, #1a129f 0%, #6156f9 100%) 0%
        0% no-repeat padding-box; */
    background: #3a31c8 !important;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.footer_row {
    padding-top: 20px;
}
.bg-light {
    background: transparent linear-gradient(107deg, #1a129f 0%, #6156f9 100%) 0% 0% no-repeat padding-box;
    /* background-color: #7289da !important; */
}

.navbar-brand {
    color: white;
}

.custom-color {
    /* background-color: #7289da !important; */
    background: transparent linear-gradient(107deg, #1a129f 0%, #6156f9 100%) 0% 0% no-repeat padding-box;
}
.footer_first_section img {
    width: 70%;
}
.footer_first_section p {
    letter-spacing: 1.04px;
    color: #ffffff;
    opacity: 1;
    text-align: center;
}

.footer_sec_two {
    color: white !important;
    padding: 20px;
}
.footer_sec_two ul li {
    list-style: none;
    line-height: 32px;
}
.footer_sec_two ul li::before {
    font-family: 'FontAwesome';
    display: inline-block;
    content: '\f107';
    margin-right: 10px;
    color: #1acc8d;
    font-weight: 900;
}
.footer_sec_two img {
    width: 100px;
    height: 100px;
}
.footer_sec_three {
    color: #fff;
}
.footer_sec_three ul li {
    list-style-type: none;
}

.footer_sec_three ul li img {
    width: 160px;
    max-width: 100%;
}
.footer_contact_section a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    letter-spacing: 1.04px;
}
.footer_contact_section img {
    width: 30px;
    height: 30px;
}

.accordion-button-left::before {
    font-family: 'FontAwesome';
    display: inline-block !important;
    content: '\f067';
    margin-right: 10px;
    color: #1acc8d;
    font-weight: 900;
    background-image: none !important;
}
.accordion-button-left:not(.collapsed)::before {
    font-family: 'FontAwesome';
    display: inline-block !important;
    content: '\f068';
    margin-right: 10px;
    color: #1acc8d;
    font-weight: 900;
    background-image: none !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.accordion-button-left::after {
    visibility: hidden;
}

.accordion-button::after {
    font-family: 'FontAwesome';
    display: inline-block !important;
    content: '\f067';
    margin-right: 10px;
    color: #1acc8d;
    font-weight: 900;
    background-image: none !important;
}
.accordion-button:not(.collapsed)::after {
    font-family: 'FontAwesome';
    display: inline-block !important;
    content: '\f068';
    margin-right: 10px;
    color: #1acc8d;
    font-weight: 900;
    background-image: none !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.accordion-item {
    /* box-shadow: 0px 10px 10px #00000029 !important; */
    border: none !important;
}
.accordion-button {
    border-radius: 20px !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    box-shadow: 0px 10px 10px #00000029 !important;
    margin-top: 15px !important;
    background-color: #fff !important;
    border-radius: 22px;
}
.accordion-body {
    background-color: #d9d9ec !important;
    border-bottom-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}
.accordion-button:not(.collapsed) {
    background-color: #d9d9ec !important;
    color: #000;
    font-weight: 600 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}
.faqIcon {
    font-size: 24px;
    color: #010483;
}
/* TimeLine Section CSS  */
.col1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.col2 {
    width: 60%;
    padding: 40px 0px;
}

.number {
    width: 250px;
    height: 250px;
    border: 5px dashed #010483;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.num {
    /* padding: 50px; */
    font-size: 10vw;
    text-align: center;
    letter-spacing: 0px;
    color: #1acc8d;
    opacity: 1;
    /* border: 5px dashed #010483; */
}

.right {
    text-align: right;
    padding-right: 70px;
}

.line {
    border: 5px solid #010483;
    opacity: 1;
    transform: rotate(32deg) translate(45px, 114px);
    width: 630px;
}

.line2 {
    border: 5px solid #010483;
    opacity: 1;
    transform: rotate(-22deg) translate(-45px, 114px);
    width: 720px;
}

/* body {
    width: 100%;
} */

@media only screen and (max-width: 800px) {
    .col1 {
        width: 100%;
    }
    .col2 {
        width: 100%;
        padding: 40px 0px;
    }
    .right {
        text-align: left;
        /* padding-right: 70px; */
    }
    .num {
        margin: auto;
        width: 50%;
    }
    .button {
        margin-top: 50px;
    }
}

/* Search Page CSS */

form.nosubmit {
    border: none;
    padding: 0;
}

input.nosubmit {
    border: none;
    width: 100%;
    height: 50px;
    padding: 9px 4px 9px 40px;
    background: transparent
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E")
        no-repeat 13px center;
    background-color: #fff;
    box-shadow: 0px 10px 20px #0000000d;
    border-radius: 82px;
    opacity: 1;
    outline: none;
}

.search-stats p {
    color: #010483;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.search-stats span {
    font-size: 12px;
    color: #010483;
}

.address_cards p {
    color: #010483;
    font-weight: bold;
    margin-bottom: 0 !important;
}
.address_cards span {
    font-size: 12px;
    color: #010483;
}
.address_cards {
    margin-top: 30px;
}

.box {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 30px #00000008;
    opacity: 1;
    padding: 17px 30px;
    border-radius: 50px;
}
.box h4 {
    font-size: 25px;
    font-weight: normal;
}
.box i {
    color: #1acc8d;
    font-size: 35px;
    margin-right: 10px;
}
.contact_text p {
    font-weight: bold;
    font-size: 30px;
    color: #010483;
}
.image_section img {
    width: 70%;
}

.ref_image_section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref_image_section img {
    /* width: 70%; */
    max-height: 50px;
    /* object-fit: contain; */
    margin-top: 10px;
}

.references-lg {
    align-items: center;
}

.references-lg .image_section img {
    max-height: 100px;
    object-fit: contain;
    min-height: 100px;
}

@media (max-width: 768px) {
    .testimonial_box p {
        margin-top: 30px;
    }
    .mh-50 {
        max-height: 550px !important;
    }
    .testimonial_img {
        top: 10px !important;
    }

    .address_cards {
        margin-top: 15px;
    }
    .address_cards img {
        width: 60px;
        height: 60px;
    }

    .ref_image_section img {
        width: unset;
        object-fit: unset;
    }

    .references-lg .image_section img {
        max-height: unset;
        min-height: unset;
        object-fit: contain;
    }

    .entry_section h1 {
        font-size: 2.5rem;
    }
    .entry_section h3 {
        font-size: 2rem;
    }
}

.form-check-input {
    padding: 10px !important;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    top: 14px;
    font-size: 30px;
    left: 20px;
}
.has-search .form-control-feedback1 img {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    top: 19px;
    font-size: 30px;
    right: 145px;
}
.searchBox {
    position: relative;
}
.searchInput {
    border-radius: 50px;
    padding: -1px;
    padding: 21px 65px 21px 40px;
}
.searchInput::placeholder {
    display: block;
}
.searchInput:focus {
    box-shadow: 0px 30px 30px #0000000f;
    outline: none !important;
}
.searchBtn {
    border-radius: 115px;
    padding: 0px 36px;
    background-color: #3a31c8;
}

.searchBox .search-icon {
    background-color: #3a31c8;
    border-radius: 100%;
    padding: 2px 10px;
    width: fit-content;
    height: unset;

    font-size: 1.5rem;
    pointer-events: unset;
    cursor: pointer;
    position: absolute;
    left: unset;
    right: 20px;
    color: whitesmoke;
}

.searchBox .search-icon:hover {
    background-color: #6156f9;
    color: white;
}

/* testimonial design */
search-icon .title {
    font-size: 50px;
    text-align: left;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    height: 100px;
}

.swiper-slide .card-title {
    margin: 20px 40px;
}

.col-sm-6.align-middle {
    margin: auto;
}

.swiper-slide .top {
    display: inline-flex;
}

.img0 {
    border-radius: 109px;
    opacity: 1;
    width: 220px;
    height: 220px;
    transform: translate(75px, 10px);
}

.img1 {
    border-radius: 109px;
    opacity: 1;
    width: 100px;
    height: 100px;
    z-index: 9999999;
    transform: translate(120px, -100px);
}

.img2 {
    border-radius: 109px;
    opacity: 1;
    width: 176px;
    height: 176px;
    transform: translate(120px, -40px);
}

.img3 {
    border-radius: 109px;
    opacity: 1;
    width: 121px;
    height: 121px;
}

.name {
    text-align: left;
    font: normal normal 600 35px/53px Poppins;
    letter-spacing: 0px;
    color: #010483;
    opacity: 1;
    margin: 20px 40px 0px 40px;
}

.tag {
    text-align: left;
    font-size: 14px !important;
    letter-spacing: 0px;
    color: #1acc8d;
    opacity: 1;
}

.star {
    display: inline-flex;
}

span.str {
    transform: translate(269px, -11px);
}

.C-carousel {
    /* background: #f4f4f4; */
    height: 600px;
    width: 100%;
    overflow: hidden;
    /* position: relative; */
}

.C-track {
    opacity: 1;
    transition: all 400ms ease;
}

.C-track--reinit {
    opacity: 0;
    transition: all 0ms linear;
}

.C-slide {
    height: 100vh;
    width: 100%;
    /* display: flex; */
    flex: 1 1 auto;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    /* background: no-repeat center / cover;
    background-blend-mode: overlay; */
    /* font-weight: bold;
    font-size: 22px;
    letter-spacing: 2px; */
    /* text-transform: uppercase; */
    overflow: hidden;
}

.C-navigation {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.C-carousel--vertical .C-navigation {
    bottom: auto;
    left: auto;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

@media (max-width: 480px) {
    .C-navigation {
        bottom: 50px;
    }
}

.C-navigation__dot {
    width: 12px;
    height: 12px;
    background: rgb(0, 0, 0);
    display: inline-block;
    margin: 4px;
    cursor: pointer;
    border-radius: 50%;
}

.C-navigation__dot.active {
    background: #33f;
    transform: scale(1.3);
}

.C-slide-title {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    position: relative;
    transform: translateY(100%);
    opacity: 0;
    transition: all 300ms ease;
    transition-delay: 500ms;
}

@media (min-width: 480px) {
    .C-slide-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .C-slide-title {
        font-size: 42px;
    }
}

.active .C-slide-title {
    transform: translateY(0) translateX(0);
    opacity: 1;
}

.credit {
    /* text-align: center; */
    color: rgb(0, 0, 0);
}

.credit a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

.modal-header {
    border-bottom: none !important;
}
.modal-body .input-group-text {
    background-color: #3a31c8 !important ;
}
.modal-header .btn-close {
    background: #f7f7f7 url('/assets/img/cancelBtn.png') center/1em auto no-repeat !important;
}
.modal_search_input {
    border-radius: 0 20px 20px 0 !important;
    background-color: #00000008 !important;
}
.modal_search_input:focus {
    /* border-radius: 0 20px 20px 0 !important; */
    outline: none !important;
    /* border: none !important; */
    border-color: #000 !important;
    box-shadow: none !important;
    background-color: #00000008 !important;
}
.modal_seachIcon img {
    width: 2rem !important;
}
.modal_seachIcon {
    padding: 20px !important;
    border-radius: 20px 0 0 20px !important;
}

.modal_btn {
    background: transparent linear-gradient(270deg, #6156f9 0%, #1a129f 100%) 0% 0% no-repeat padding-box !important;
    border-radius: 82px !important;
}
.modal_btn:focus {
    box-shadow: none !important;
}
.modal-footer {
    border-top: none !important;
}
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.radioLabel {
    height: 70px;
}
.entry_section h1 {
    font-size: 3rem;
    font-weight: bold;
}
.entry_section h3 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Price Table CSS */
.rounded-lg {
    border: 4px solid #010483;
    border-radius: 36px !important;
}

.text-small {
    font-size: 0.9rem !important;
}

.custom-separator {
    width: 5rem;
    height: 6px;
    border-radius: 1rem;
}

.text-uppercase {
    letter-spacing: 0.2em;
}

.check_circle_icon {
    color: #1acc8d;
    font-size: 15px;
    margin-right: 10px;
}
.priceValue {
    color: #010483;
}
.CancelPriceValue {
    color: #ff0000;
}
.priceTopBar,
.secondPriceTopBar {
    background-color: #010483;
    /* border-radius: 1rem; */
    border-top-right-radius: 36px;
    border-top-left-radius: 36px;
    border-bottom-right-radius: 36px;
    border-bottom-left-radius: 36px;
    margin-top: -1px;
    padding: 10px 0;
}
.priceTopBar h3 {
    font-size: 1.3rem;
}
.secondPriceTopBar {
    background-color: #6156f9;
}
.secondPriceTopBar h3 {
    font-size: 1.3rem;
}
.modal_footer {
    padding: 20px;
    background-color: #dedede;
    border-radius: 36px;
}
.viewedSection {
    color: #ff0000;
}

.progress-1 {
    background: transparent linear-gradient(270deg, #6156f9 0%, #1a129f 100%) 0% 0% no-repeat padding-box !important;
    border-top-left-radius: 82px !important;
    border-bottom-left-radius: 82px !important;
}
.progress-2 {
    background-color: #20ffb0 !important;
    border-top-right-radius: 82px !important;
    border-bottom-right-radius: 82px !important;
    /* border-radius: 82px !important; */
}
.loading_section {
    color: #010483;
    font-weight: bold;
}
.swiper-slide .testimonial_box {
    text-align: left;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 12px 26px #0000001a;
    border-radius: 25px;
    opacity: 1;
    z-index: -1;
}
.testimonial_img {
    position: absolute;
    left: 0;
    top: 0;
}

.swiper-slide .testimonial_box p {
    color: #000000;
}

.chip {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
    position: relative;
    border-radius: 25px;
    border: solid 2px;
    border-color: #262085;
    color: #262085;
}
.chip .chipImg {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: 5px;
}
.chip i {
    font-size: 20px;
}

.chipSec {
    display: flex;
}

/* Top Header css */

.header-top {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #262085;
    z-index: 1;
}
.header-top-item ul {
    margin: 0;
    padding: 0;
}
.header-top-item ul li {
    display: inline-block;
    list-style-type: none;
    font-weight: 500;
    font-size: 14px;
    color: #344c5d;
    margin-right: 25px;
}

.header-top-item i {
    color: #fff;
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-right: 6px;
}
.header-top a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.header-top:focus {
    outline: none;
}

/* End Top Header css */
