/* ====== Preloader Animation ====== */

.preload-anim {
    animation: zoom 2s infinite ease-in-out;
    width: 180px;
}

@keyframes zoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }
}

/* ====== Large Menu ========= */
/* p {
    text-align: justify;
} */

@media(min-width:992px) and (max-width:1399px) {
    .large-menu {
        left: -450%;
        top: 130%;
    }

    .large-menu2 {
        left: -1080%;
        top: 130%;
    }

    .large-menu3 {
        left: -307%;
        top: 130%;
    }
}

@media(min-width:1400px) {
    .large-menu {
        left: -600%;
        top: 140%;
    }

    .large-menu2 {
        left: -1380%;
        top: 130%;
    }

    .large-menu3 {
        left: -386%;
        top: 130%;
    }
}

.submenus-submenu.big-menu-box {
    width: 750px !important;
}

@media(max-width:991px) {
    .submenus-submenu.big-menu-box {
        width: 100% !important;
        margin-left: 0px;
    }
}

.bg-col-1 {
    background-color: #fafbfb;
}

.text-blue-dark {
    color: #0f2e63 !important;
}

.menu-icons-img {
    width: 50px;
    padding-right: 15px;
}

.w-200p {
    width: 180px;
}

.modal .btn-close {
    position: absolute;
    right: -15px;
    top: -15px;
    background: #283F67;
    width: 25px;
    height: 25px;
    opacity: 1;
    color: #fff;
    border: 2px solid #fff;
}

.cnt-flag {
    display: flex;
    align-items: center;
    color: #121535;
    margin-bottom: 20px;
}

.cnt-flag:hover {
    color: #6369c9;
    text-decoration: underline;
    transition: 0.5s all ease-in-out;
}

.cnt-flag.cur-flag {
    color: #2632ff;
    font-weight: bolder;
    font-size: 18px;
    text-decoration: underline;
}

.cnt-flag img {
    width: 35px;
    border-radius: 5px;
    margin-right: 10px;
}

#countryModal h6 {
    text-decoration: underline;
}

.make-sec {
    padding: 20px;
    border-radius: 20px;
    background-color: #e5e7fb;
}

/* our-values css */

.feature-box {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box:nth-child(1) {
    background: linear-gradient(135deg, #283f67 0%, #1e2237 100%);
}

.feature-box:nth-child(2) {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.feature-box:nth-child(3) {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.feature-box:nth-child(4) {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 40px;
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.8);
}

.feature-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    transition: all 0.4s ease;
    text-align: center;
}

.feature-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    transition: all 0.6s ease;
}

.feature-box:hover::before {
    top: -50%;
    left: -50%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.feature-box:hover .feature-icon {
    animation: float 2s ease-in-out infinite;
}

.feature-box:hover .feature-title {
    transform: scale(1.1);
}

.feature-box:hover .feature-description {
    transform: translateY(5px);
}

.feat-ico-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
}

.core-points {
    list-style-type: circle;
    margin-left: 10%;
    margin-top: 10px;
    color: #fff;
}

.profeature-box {
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    border: 1px solid;
    border: 1px solid #2e3f68;
    box-shadow: 0px 3px 0px 0px rgb(46 63 104);
}

.profeature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

/* .profeature-content {
    /* padding: 30px 20px; */
/* border-radius: 10px; 
height: 100%;
}*/
.profeature-icon {
    width: 40px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.profeature-box:hover .feature-icon {
    transform: scale(1.1);
}

.profeature-description {
    font-size: 16px;
    line-height: 1.5;
    transition: opacity 0.3s ease;
}

.profeature-box:hover .feature-description {
    opacity: 0.9;
}

.shipping-item img {
    width: 30px;
    filter: brightness(100);
}

.shipping-item h6 {
    font-size: 16px;
}

@media(min-width:1200px) {
    .col-xxl-20 {
        width: 20%;
        max-width: 20%;
    }
}

#tablet-imgsec .profeature-box {
    padding: 10px 8px;
    border: 1px solid #e0e7f7;
    box-shadow: 0px 3px 0px 0px rgb(181 181 181);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* .social-icon:hover i {
    color: #fff;
} */

.social-icon i {
    font-size: 20px;
}

/* .facebook {
    background: #1877f2;
}

.youtube {
    background: linear-gradient(135deg, #ff0000, #c31414);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin {
    background: #0077b5;
} */
.facebook,
.youtube,
.instagram,
.linkedin {
    /* background: #e7e7e7; */
    box-shadow: 0px 0px 25px 0px rgb(145 145 145 / 40%);
    color: #000 !important;
}

.swal2-image {
    width: 180px;
}

@media(max-width:991px) {
    .w-265.me-18 {
        display: none;
    }
}

.max-h-222 {
    max-height: 275px !important;
}