#myLoader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #21242d url("../img/logo.gif") no-repeat center;
    z-index: 999;
}

.Homeslider-item {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 15px 30px;
    width: 60%;
    border-radius: 5px;
}

@media only screen and (max-width: 767px){
    .Homeslider-item {
        width: 100%;
    }
    .Homeslider-item p{ 
        line-height: 20px!important;
    }
    .Homeslider-item h2{ 
        font-size: 20px!important;
    }
    .Homeslider-item a{ 
        line-height: 30px!important;
    }
}

.about-left {
    position: relative;
    margin-right: 25px;
}

.about-img .img-1 {
    width: 51%;
    margin-top: 70px;
    border-radius: 10px 10px 0px 10px;
}

.about-img .img-2 {
    position: absolute;
    top: -60px;
    right: 0;
    width: 45%;
    border: 10px solid var(--color-white);
    border-radius: 10px 10px 10px 0px;
}

.about-right {
    position: relative;
    display: block;
}

.about-experience {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 14px 25px;
    border-radius: 100px 100px 0 100px;
    text-align: center;
}

.about-experience h5 {
    color: #00237d;
    font-size: 50px;
}

.about-experience p {
    color: #00237d;
    font-weight: bold;
    font-size: 25px;
}

.tabcontent {
    display: none;
}

.about-compnay .mission-goal li.tablinks.active {
    background: #f7f7f7;
}

/* ===================
        31. Counter css 
        ====================== */

.counter-area {
    position: relative;
    background: #001a57;
    overflow: hidden;
    z-index: 1;
    padding: 30px 0;
}

/* .counter-area::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            opacity: 0.1;
        } */

.counter-item {
    display: flex;
    gap: 12px;
    position: relative;
    padding: 15px 10px 15px 15px;
    border-radius: 100px;
    border: 2px solid #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

.counter-item::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    bottom: -3px;
    width: 40%;
    border: 3px solid #e13f28;
    border-radius: 100px 0 0 100px;
    border-right: none;
    transition: all 0.5s ease-in-out;
}

.counter-item:hover::before {
    width: 50%;
}

.counter-item .icon {
    width: 80px;
    height: 80px;
    line-height: 70px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-item .icon img {
    width: 48px;
}

.counter-item .info {
    display: flex;
    gap: 2px;
}

.counter-item .counter {
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 50px;
    font-weight: 900;
}

.counter-item .unit {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    margin: 3px 0 0 3px;
}

.counter-item .title {
    color: #fff;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

/* counter-area 2 */
.counter-area2 {
    position: relative;
    z-index: 1;
}

.counter-area2 .counter-wrap {
    margin-top: -80px;
}

.counter-area2 .counter-item {
    background: #fff;
}

.counter-area2 .counter-item .icon {
    background: var(--theme-color2);
}

.counter-area2 .counter-item .counter {
    color: var(--color-dark);
}

.counter-area2 .counter-item .title {
    color: var(--color-dark);
}

/* Social Icons Footer  */
ul.social-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.social-menu > li {
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.export .nav-link.active {
    background-color: #001a57 !important;
}

/* ===================
37. Choose css 
====================== */

.choose-area {
    position: relative;
}

.choose-content {
    margin-top: 50px;
}

.choose-item {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.choose-item:last-child {
    margin-bottom: 0;
}

.choose-item-icon {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 58px;
    background: #001a57;
    text-align: center;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-item-icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px dashed #001a57;
    border-radius: 50px;
}

.choose-item-icon img {
    width: 38px;
    filter: brightness(0) invert(1);
}

.choose-item-info {
    flex: 1;
}

.choose-item-info h4 {
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.choose-item-info p {
    color: var(--body-text-color);
}

.choose-img {
    position: relative;
    text-align: right;
    margin-top: 45px;
}

.choose-img img {
    width: 83%;
    border: 10px solid var(--color-white);
    border-radius: 100px 100px 0 100px;
}

@media all and (max-width: 991px) {
    .choose-img img {
        width: 100%;
    }
}

/* table */
.producttable {
    text-align: center;
    vertical-align: middle !important;
}

.producttable th {
    background-color: #001a57;
    color: #fff;
    vertical-align: middle !important;
}

.producttable td {
    vertical-align: middle !important;
}

a.portfolio-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #001a57;
    cursor: pointer;
}

a.portfolio-content:hover {
    background: #fff;
    border-bottom: 1px solid #001a57;
    transition: all 0.3s ease-in;
}

a.portfolio-content:hover h6,
a.portfolio-content:hover span {
    color: #001a57 !important;
}

.shop-product-item {
    background: #f7f7f7;
    margin-bottom: 40px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    cursor: pointer;
}

.shop-product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-product-item:hover .product-info {
    background: #0d3680;
    color: #fff;
    transition: all 0.3s linear;
    cursor: pointer;
}

.shop-product-item:hover .product-info h6 {
    color: #fff !important;
    font-weight: bold;
}

.shop-product-item:hover img {
    transform: scale(1.1);
}

/* Single Product Page */
.pd-wrap {
    padding: 40px 0;
    font-family: "Poppins", sans-serif;
}

.heading-section {
    text-align: center;
    margin-bottom: 20px;
}

.sub-heading {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    display: block;
    font-weight: 600;
    color: #2e9ca1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-section h2 {
    font-size: 32px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    min-width: 80px;
    background-size: 100%;
}

.carousel-testimonial .item {
    padding: 30px 10px;
}

.quote {
    position: absolute;
    top: -23px;
    color: #2e9da1;
    font-size: 27px;
}

.name {
    margin-bottom: 0;
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
}

.position {
    color: #adadad;
    font-size: 14px;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    outline: none;
    height: 25px;
}

.owl-nav button svg {
    width: 25px;
    height: 25px;
}

.owl-nav button.owl-prev {
    left: 25px;
}

.owl-nav button.owl-next {
    right: 25px;
}

.owl-nav button span {
    font-size: 45px;
}

.product-thumb .item img {
    height: 100px;
}

.product-name {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 4px;
}

.product-price-discount {
    font-size: 22px;
    font-weight: 400;
    padding: 10px 0;
    clear: both;
}

.product-price-discount span.line-through {
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
    color: #a5a5a5;
}

.display-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.product-info {
    width: 100%;
}

.reviews-counter {
    font-size: 13px;
}

.reviews-counter span {
    vertical-align: -2px;
}

.rate {
    float: left;
    padding: 0 10px 0 0;
}

.rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked) > label {
    float: right;
    width: 15px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 21px;
    color: #ccc;
    margin-bottom: 0;
    line-height: 21px;
}

.rate:not(:checked) > label:before {
    content: "\2605";
}

.rate > input:checked ~ label {
    color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

.product-dtl p {
    font-size: 14px;
    line-height: 24px;
    color: #7a7a7a;
}

.product-dtl .form-control {
    font-size: 15px;
}

.product-dtl label {
    line-height: 16px;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.product-count {
    margin-top: 15px;
}

.product-count .qtyminus,
.product-count .qtyplus {
    width: 34px;
    height: 34px;
    background: #212529;
    text-align: center;
    font-size: 19px;
    line-height: 36px;
    color: #fff;
    cursor: pointer;
}

.product-count .qtyminus {
    border-radius: 3px 0 0 3px;
}

.product-count .qtyplus {
    border-radius: 0 3px 3px 0;
}

.product-count .qty {
    width: 60px;
    text-align: center;
}

.round-black-btn {
    border-radius: 4px;
    background: #212529;
    color: #fff;
    padding: 7px 45px;
    display: inline-block;
    margin-top: 20px;
    border: solid 2px #212529;
    transition: all 0.5s ease-in-out 0s;
}

.round-black-btn:hover,
.round-black-btn:focus {
    background: transparent;
    color: #212529;
    text-decoration: none;
}

.product-info-tabs {
    margin-top: 25px;
}

.product-info-tabs .nav-tabs {
    border-bottom: 2px solid #d8d8d8;
}

.product-info-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

.product-info-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #323232;
}

.product-info-tabs .nav-tabs .nav-item .nav-link:hover {
    border: none;
}

.product-info-tabs .nav-tabs .nav-item.show .nav-link,
.product-info-tabs .nav-tabs .nav-link.active,
.product-info-tabs .nav-tabs .nav-link.active:hover {
    border: none;
    border-bottom: 2px solid #d8d8d8;
    font-weight: bold;
}

.product-info-tabs .tab-content .tab-pane {
    padding: 30px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #7a7a7a;
}

.review-form .form-group {
    clear: both;
}

.mb-20 {
    margin-bottom: 20px;
}

.review-form .rate {
    float: none;
    display: inline-block;
}

.review-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: #000;
}

.review-form .form-control {
    font-size: 14px;
}

.review-form input.form-control {
    height: 40px;
}

.review-form textarea.form-control {
    resize: none;
}

.review-form .round-black-btn {
    text-transform: uppercase;
    cursor: pointer;
}

/* Product Table CSS */
table.table.table-bordered.table-striped1.table-product tbody tr th {
    background: #f2f8ff;
    color: #083365;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

table.table.table-bordered.table-striped1.table-product tbody tr td {
    line-height: 25px;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 500;
}
