/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

/*===== VARIABLES CSS =====*/
:root {
    --header-height: 3rem;

    /*===== Colores =====*/
    --blue-color: #00015e;
    --first-color: #329CD7;
    --dark-color: #f1f1f1;
    --dark-color-alt: #282b3a;
    /* --white-color: #E6E7E9; */
    --white-color: #fff;
    --black-color: #000000;
    --white-color: #ffffff;


    /*===== Fuente y tipografia =====*/
    --body-font: "Poppins", sans-serif;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;

    /*===== z index =====*/
    --z-fixed: 100;
}

@media (min-width: 768px) and (max-width: 1024px) {
    :root {
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
    }
}

/*===== BASE =====*/
*,
::before,
::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: 500;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.bd-grid {
    max-width: 1024px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    /* margin-left: 1.5rem;
    margin-right: 1.5rem; */
}

.row {
    margin: 0;
    padding: 0;
}

/* ============ About-us / Start Header Section Style ============= */
/* ============ About Us / Start Header Style ============= */
.navbar {
    height: 80px;
    pad: 0.5rem;
    background-color: var(--first-color);
}


.navbar .brand-logo {
    width: 9%;
    height: 35px;
    margin-left: 20px;
}

.navbar .brand-logo img {
    width: 100%;
    height: auto;

    border-radius: 2px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #3e4095;
    transition: 0.3s color;

}

.navbar-brand a {
    color: var(--white-color);
}

.offcanvas-title {
    color: var(--white-color);
}

.contact-btn {
    width: 10%;
    margin-right: 30px;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: var(--white-color);
    font-weight: 600;
    margin: auto 20px;
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
    color: var(--white-color);
}

.nav-link:hover,
.nav-link.active {
    color: #e2e2e2;
}

.fa-bars {
    color: var(--white-color);
    font-size: 2rem;
}

.btn-close {
    background-color: var(--first-color);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    color: var(--white-color);
    background-color: var(--first-color);
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--white-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: var(--first-color);
    border: 0;
}

/* Optional: Add transition effect for dropdown */
.dropdown-menu {
    transition: all 0.3s ease-in-out;
    color: var(--white-color);
    background-color: var(--first-color);
    opacity: 0;
    visibility: hidden;
}

/* Optional: Adjust positioning if necessary */
.navbar-nav .dropdown-menu {
    margin-top: 0;
}


@media (max-width: 768px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
        color: var(--black-color);
        font-size: 1rem;
        font-weight: 600;
    }

    .navbar {
        height: 55px;
        background-color: var(--first-color);
    }

    .navbar .brand-logo {
        width: 14%;
        height: 30px;
    }

    .navbar .brand-logo img {
        width: 100%;
        height: auto;
        border-radius: 2px;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
        font-size: 1.25rem;
    }

    .contact-btn {
        display: none;
        /*width: 16%;*/
        /*padding: 10px;*/
        /*font-size: 0.9rem;*/
        /*font-weight: 700;*/
        /*height: 8vh;*/
        /*text-align: center;*/
        /*color: var(--white-color);*/
        /*border-radius: 30px;*/
        /*border: 2px solid var(--white-color);*/
        /*margin-left: 28rem;*/
    }

    .btn-close {
        background-color: var(--first-color);
        margin-top: 20px;
    }

    /* Show dropdown on hover */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        width: 100%;
        opacity: 1;
        visibility: visible;
    }

    .offcanvas-header img {
        width: 15vw;
        height: 15vh;
    }

    /* Optional: Add transition effect for dropdown */
    .dropdown-menu {
        transition: all 0.3s ease-in-out;
        color: var(--white-color);
        font-size: 1rem;
        font-weight: 600;
        background-color: var(--first-color);
        opacity: 0;
        visibility: hidden;
    }

    /* Optional: Adjust positioning if necessary */
    .navbar-nav .dropdown-menu {
        margin-top: 0;
    }
}

@media (max-width: 425px) {
    .navbar {
        height: 55px;
        width: 100%;
        background-color: var(--first-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar>.container-fluid {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .offcanvas.offcanvas-end {
        top: 0;
        right: 0;
        width: 75%;
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .navbar .brand-logo {
        width: 24%;
        margin-left: 15px;
        height: 30px;
    }

    .navbar .brand-logo img {
        width: 100%;
        height: auto;
        border-radius: 2px;
    }

    .navbar-toggler {
        margin-left: -20rem;
        margin-right: 2rem;
        border: none;
        background: none;
        font-size: 1.25rem;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .navbar-toggler .fa-bars {
        margin-bottom: 0;
        color: var(--white-color);
    }

    .offcanvas-header img {
        height: 15vh;
        width: 15vw;
    }

    /* Dropdown hover effect */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        width: 70vw;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu {
        transition: all 0.3s ease-in-out;
        color: var(--white-color);
        font-size: 1rem;
        font-weight: 600;
        background-color: var(--first-color);
        opacity: 0;
        visibility: hidden;
    }

    .navbar-nav .dropdown-menu {
        margin-top: 0;
    }

    .blue-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(50, 156, 215, 0.535);
        z-index: 1;
        display: flex;
        flex-direction: column;
    }
}

/* ============ About Us / End Header Style ============= */
/* ============ About-us / End Header Section Style ============= */





/* ============ About-us Style ============= */
.about-us-hero-section {
    position: relative;
    width: 100%;
    margin-top: 80px;
    min-height: 80vh;
    border-top: 1px solid var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-image: url(../images/about-us-cover.jpg);
    background-size: cover;
    background-position: center;
}

.about-us-title {

    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-title h2 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white-color)
}

.home-refer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.home-refer h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white-color);

}

.about-left {

    /*padding: 1rem;*/
    width: 100%;
    /* border: 2px solid black; */
    /* margin-top: 7rem; */
}

    .about_title img{
        /*border:2px solid black;*/
        display:flex;
        /*text-align:center;*/
    }
    
    .about_title h2 {
        display:none;
        /* border: 2px solid black; */
        /*font-size: 2rem;*/
        /*font-weight: 800;*/
        /*margin-top: 4rem;*/
        /*color: var(--first-color);*/
    }
    .about_title p{
        display:none;
        /*border: 2px solid black; */
        /*font-size: 1.2rem;*/
        /*font-weight: 500;*/
        /*color: var(--black-color);*/
    }
    .about-details-section{
        /*border:2px solid black;*/
        margin: 0px 0px 15% 0px;
        padding:0px;
        width:100%;
    }
.about-details-section {
    margin: 0px 0 10% 0;
}

.about-left h2 {
    font-size: 3.2rem;
    text-align: center;
    color: var(--first-color);
    font-weight: 800;
}


.about-left p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2rem;
    padding: 30px;
    text-align: left;
}

.about-details-section .row .col-sm-12, 
    .about-details-section .row .col-md-6 {
        padding-left: 0 !important; /* Remove left padding */
        padding-right: 0 !important; /* Optionally remove right padding */
        
    }
    
.flip-box {
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;

}

.flip-box-front,
.flip-box-back {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    width: 25vw;
    color: var(--white-color);
    min-height: 330px;
    transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    backface-visibility: hidden;
}

.flip-box-front {
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
}

.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 25vw;
    min-height: 330px;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 30px;
    outline: 1px solid transparent;
    perspective: inherit;
    z-index: 2;
    transform: translateY(-50%)translateZ(60px) scale(.94);
    top: 50%;
}

.box-item-1,
.box-item-2,
.box-item-3,
.box-item-4,
.flip-box-front .flip-box-header {
    font-size: 1.5rem;
    width: 15vw;

}

.box-item-1,
.box-item-2,
.box-item-3,
.box-item-4,
.flip-box-front .flip-box p {
    font-size: 14px;
    font-weight: 400;
    border-radius: 30px;
    padding: 10px;
    line-height: 1.5rem;

}

.flip-box-back-1,
.flip-box-back-2,
.flip-box-back-3,
.flip-box-back-4,
.flip-box-header {
    font-size: 1.75rem;
    width: 15rem;

}

.flip-box-back-1,
.flip-box-back-2,
.flip-box-back-3,
.flip-box-back-4,
.flip-box p {
    font-size: 14px;
    font-weight: 400;
    border-radius: 30px;
    padding: 10px;
    line-height: 1.5rem;
}

.about-1-icon img {
    width: 60px;
    margin-bottom: 20px;
}

.about-2-icon img {
    width: 60px;
    margin-top: -20px;
    margin-bottom: 20px;
}

.about-3-icon img {
    width: 85px;
    height: 100px;
    margin-top: -65px;
}

.about-4-icon img {
    width: 80px;
    margin-top: -30px;
}
.box-item-1 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/

    }
    
    .box-item-2 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/
    }
   
    .box-item-3 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/

    }
    
    .box-item-4 .flip-box-front .flip-box-header {
        font-size: 20px;
        margin-top: 10px;
        width: 100%;
        /*border:2px solid white;*/

    }

.flip-box-button {
    background-color: transparent;
    border: 1px solid var(--white-color);
    border-radius: 20px;
    color: var(--white-color);
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    padding: 10px;
    text-transform: uppercase;
}



@media (min-width: 426px) and (max-width: 768px) {
    
    .about-us-hero-section {
    position: relative;
    width: 100%;
    margin-top: 55px;
    min-height: 80vh;
    border-top: 1px solid var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-image: url(../images/about-us-cover.jpg);
    background-size: cover;
    background-position: center;
}

.about-us-title {

    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-title h2 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white-color)
}

.home-refer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.home-refer h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white-color);

}

    

    .about-left {
        /* grid-column: 1 / -1; */
        /*padding: 1rem;*/
        width: 100%;
        /*margin-top: -5rem;*/
        /* padding: 3rem; */
    }

    .about_title img{
        /*border:2px solid black;*/
        display:flex;
        /*text-align:center;*/
    }
    
    .about_title h2 {
        display:none;
        /* border: 2px solid black; */
        /*font-size: 2rem;*/
        /*font-weight: 800;*/
        /*margin-top: 4rem;*/
        /*color: var(--first-color);*/
    }
    .about_title p{
        display:none;
        /*border: 2px solid black; */
        /*font-size: 1.2rem;*/
        /*font-weight: 500;*/
        /*color: var(--black-color);*/
    }
    .about-details-section{
        /*border:2px solid black;*/
        margin: 0px 0px 15% 0px;
        padding:0px;
        width:100%;
    }
    .about-left h2 {
       font-size: 1.9rem;
       text-align: left;
       padding-left: 20px;
       color: var(--first-color);
       font-weight: 800;
    }
    .about-left p {
       font-size: 16px;
       font-weight: 400;
       line-height: 1.8rem;
       padding-left: 20px;
       text-align: left;
    }
    
    .about-details-section .row .col-sm-12, 
    .about-details-section .row .col-md-6 {
        padding-left: 0 !important; /* Remove left padding */
        padding-right: 0 !important; /* Optionally remove right padding */
    }
    .flip-box-front,
    .flip-box-back {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 8px;
        width: 47vw;
        color: var(--white-color);
        min-height: 330px;
        transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
        backface-visibility: hidden;
    }

    .flip-box-front {
        transform: rotateY(0deg);
        transform-style: preserve-3d;
    }

    .flip-box:hover .flip-box-front {
        transform: rotateY(-180deg);
        transform-style: preserve-3d;
    }

    .flip-box-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 47vw;
        min-height: 330px;
        transform: rotateY(180deg);
        transform-style: preserve-3d;
    }

    .flip-box:hover .flip-box-back {
        transform: rotateY(0deg);
        transform-style: preserve-3d;
    }

    .flip-box .inner {
        position: absolute;
        left: 0;
        width: 100%;
        padding: 15px;
        outline: 1px solid transparent;
        perspective: inherit;
        z-index: 2;
        transform: translateY(-50%)translateZ(60px) scale(.94);
        top: 50%;
    }
    .about-2-icon img {
        width: 60px;
        margin-top: -8px;
        margin-bottom: 20px;
    }

    .about-3-icon img {
        width: 80px;
        height: 100px;
        margin-top: -70px;
    }

    .about-4-icon img {
        width: 80px;
        margin-top: 10px;
    }

    .box-item-1 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/

    }
    
    .box-item-2 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/
    }
   
    .box-item-3 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/

    }
    
    .box-item-4 .flip-box-front .flip-box-header {
        font-size: 20px;
        margin-top: 10px;
        width: 100%;
        /*border:2px solid white;*/

    }

    .box-item-1,
    .box-item-2,
    .box-item-3,
    .box-item-4,
    .flip-box-front .flip-box p {
        font-size: 14px;
        font-weight: 400;
        border-radius: 30px;
        padding: 10px;
        line-height: 1.5rem;

    }

    .flip-box-back-1,
    .flip-box-back-2,
    .flip-box-back-3,
    .flip-box-back-4,
    .flip-box-header {
        font-size: 1.75rem;
        width: 15rem;

    }

    .flip-box-back-1,
    .flip-box-back-2,
    .flip-box-back-3,
    .flip-box-back-4,
    .flip-box p {
        font-size: 14px;
        font-weight: 400;
        border-radius: 30px;
        padding: 10px;
        line-height: 1.5rem;
    }

    .about-1-icon img {
        width: 60px;
        margin-bottom: 20px;
    }

    .about-2-icon img {
        width: 60px;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .about-3-icon img {
        width: 80px;
        margin-top: -15px;
    }

    .about-4-icon img {
        width: 80px;
        margin-top: -30px;
    }

    .flip-box-button {
        background-color: transparent;
        border: 1px solid var(--white-color);
        border-radius: 20px;
        color: var(--white-color);
        cursor: pointer;
        font-size: 12px;
        font-weight: 400;
        margin-top: 5px;
        padding: 10px;
        text-transform: uppercase;
    }
}


@media(max-width:425px) {
    .about-us-hero-section {
    position: relative;
    width: 100%;
    margin-top: 55px;
    min-height: 50vh;
    border-top: 1px solid var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-image: url(../images/about-us-cover.jpg);
    background-size: cover;
    background-position: center;
}

.about-us-title {

    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-title h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color)
}

.home-refer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.home-refer h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white-color);

}

   
    .about-heading-section .about_title img {
        display: none; /* Hide the image on mobile */
    }
    .about-heading-section .about_title{
        /*border:2px solid black;*/
        width:100%;
        height:40%;
        text-align:center;
    }
    

    .about-heading-section .about_title h2 {
         /*border: 2px solid black; */
        font-size: 2rem;
        display:block;
        font-weight: 800;
        margin-top: 3rem;
        color: var(--first-color);
    }
    .about-heading-section .about_title p{
        /*border: 2px solid black; */
        font-size: 1.2rem;
        display:block;
        font-weight: 500;
        color: var(--black-color);
    }

    /* About left column: Full width on mobile/tablet */
    .about-left {
        width: 100%;
        margin-bottom: 5rem;
        margin-top: -1rem;
        padding: 0rem;
    }
    .about-left h2 {
        font-size: 1.8rem;
        margin: 20px 15px;
        text-align: left;
        color: var(--first-color);
        font-weight: 700;
    }

    .about-left p {
        font-size: 1rem;
        font-weight: 400;
        text-align: left;
        margin:auto 15px;
        padding: 0;
    }


    /* About right section: Full width by default */
    .about-right {
        display: block;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-details-section .row .col-sm-12, 
    .about-details-section .row .col-md-6 {
        padding-left: 0 !important; /* Remove left padding */
        padding-right: 0 !important; /* Optionally remove right padding */
}


    .flip-box {
        transform-style: preserve-3d;
        perspective: 1000px;
        cursor: pointer;
        margin-top: 50px;
        width: 92vw;
        display: block;
        gap: 1rem;
        margin-bottom: 50px;
    }

    .flip-box:nth-child(1) {
        grid-area: one;
    }

    .flip-box:nth-child(2) {
        grid-area: two;
    }

    .flip-box:nth-child(3) {
        grid-area: three;
    }

    .flip-box:nth-child(4) {
        grid-area: four;
    }

    .box-item-1,
    .box-item-2,
    .box-item-3,
    .box-item-4 {
        margin: -5rem 0 0 0;
        /* margin-left: 3rem; */
    }

    .flip-box-front,
    .flip-box-back {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 8px;
        width: 92vw;
        color: var(--white-color);
        min-height: 330px;
        transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
        backface-visibility: hidden;
    }

    .flip-box-front {
        transform: rotateY(0deg);
        transform-style: preserve-3d;
    }

    .flip-box:hover .flip-box-front {
        transform: rotateY(-180deg);
        transform-style: preserve-3d;
    }

    .flip-box-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 330px;
        transform: rotateY(180deg);
        transform-style: preserve-3d;
    }

    .flip-box:hover .flip-box-back {
        transform: rotateY(0deg);
        transform-style: preserve-3d;
    }

    .flip-box .inner {
        position: absolute;
        left: 0;
        width: 100%;
        padding: 30px;
        outline: 1px solid transparent;
        perspective: inherit;
        z-index: 2;
        transform: translateY(-50%)translateZ(60px) scale(.94);
        top: 50%;
    }

    .box-item-1 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/

    }
    
    .box-item-2 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/
    }
   
    .box-item-3 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/

    }
    
    .box-item-4 .flip-box-front .flip-box-header {
        font-size: 20px;
        width: 100%;
        /*border:2px solid white;*/

    }

    .box-item-1,
    .box-item-2,
    .box-item-3,
    .box-item-4,
    .flip-box-front .flip-box p {
        font-size: 14px;
        font-weight: 400;
        border-radius: 30px;
        padding: 10px;
        line-height: 1.5rem;

    }

    .flip-box-back-1,
    .flip-box-back-2,
    .flip-box-back-3,
    .flip-box-back-4,
    .flip-box-header {
        font-size: 1.75rem;
        width: 15rem;

    }

    .flip-box-back-1,
    .flip-box-back-2,
    .flip-box-back-3,
    .flip-box-back-4,
    .flip-box p {
        font-size: 14px;
        font-weight: 400;
        border-radius: 30px;
        padding: 10px;
        line-height: 1.5rem;
    }

    .about-1-icon img {
        width: 60px;
        margin-bottom: 20px;
    }

    .about-2-icon img {
        width: 60px;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .about-3-icon img {
        width: 80px;
        height: 100px;
        margin-top: -30px;
    }

    .about-4-icon img {
        width: 80px;
        margin-top: -30px;
    }

    .flip-box-button {
        background-color: transparent;
        border: 1px solid var(--white-color);
        border-radius: 20px;
        color: var(--white-color);
        cursor: pointer;
        font-size: 12px;
        font-weight: 400;
        margin-top: 5px;
        padding: 10px;
        text-transform: uppercase;
    }
}


/* ============ About-us / Start Company Section Style ============= */
/* ============ About Us / Start Company Style ============= */

.company-about {
    margin-top: 10%;
    display: flex;
    width: 100%;
}

.company-about .container {

    width: 100%;
    padding: 0;
    margin-bottom: 10%;
    border-radius: 20px;
}

.first-div {
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: var(--first-color);
    /*background-image: url(./images/16.png);*/
    /*background-size: cover;*/
    /*background-position: center;*/
    height: 18vh;
    width: 100%;
    margin: 0;
    border-radius: 20px 20px 0 0;
    border-left: 1px solid black;
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-left-color: #d3dae7;
    border-top-color: #d3dae7;
    border-right-color: #d3dae7;
    padding: 30px;
}

.first-div .flex-item-1 {
    width: 30%;
    padding: 10px;
    margin-right: auto 30%;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white-color);
}

.first-div .flex-item-2 {
    width: 40%;
    padding: 10px;
    color: var(--white-color);
}

.flex-item-1 h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    width: 100%;
}

.flex-item-2 h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    width: 100%;
}

/* second div start  */
.second-div {
    width: 100%;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6fc;
    border-radius: 0 0 20px 20px;
}

.second-div .flex-item-1 {
    width: 50%;
    height: 65vh;
    display: flex;
}

.second-div .flex-item-1 img {
    width: 100%;
    border-radius: 0 0 0 12px;
    height: 65vh;
}

.second-div .flex-item-2 {
    width: 50%;
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.second-div .flex-item-2 .list-div {
    list-style-type: none;
    width: 100%;
    height: 65vh;
    padding: 50px 10px 22px 40px;
    line-height: 2.5rem;
    border-bottom: 1px solid black;
    border-bottom-color: #d3dae7;
    background: #f4f6fc;
}

.second-div .flex-item-2 .list-div li {
    display: flex;
    color: var(--black-color);
    align-items: center;
    margin-bottom: 10px;
}

.second-div .flex-item-2 .list-div li a {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
}


.second-div .flex-item-2 .list-div .fa-square-whatsapp,
.fa-linkedin,
.fa-envelope,
.fa-earth-europe,
.fa-location-dot {
    width: 20px;
    margin-right: 10px;
}

.second-div .flex-item-2 .list-div li img {
    margin-right: 10px;
}



@media (min-width:426px) and (max-width: 768px) {
    .company-about .container {
        width: 100%;
        padding: 0;
        margin-bottom: 10%;
        border-radius: 20px;
    }

    .first-div {
        display: flex;
        justify-content: start;
        align-items: center;
        background-image: url('../images/16.png');
        background-size: cover;
        background-position: center;
        height: 25vh;
        width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0;
        border-left: 1px solid black;
        border-top: 1px solid black;
        border-right: 1px solid black;
        border-left-color: #d3dae7;
        border-top-color: #d3dae7;
        border-right-color: #d3dae7;
        padding: 30px;
    }

    .first-div .flex-item-1 {
        width: 30%;
        padding: 10px;
        margin-right: auto 30%;
        font-size: 2rem;
        font-weight: 800;
        color: var(--first-color);
    }

    .first-div .flex-item-2 {
        width: 50%;
        padding: 10px;
        color: var(--first-color);
    }

    .flex-item-1 h2 {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 800;
        width: 100%;
    }

    .flex-item-2 h2 {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 500;
        width: 100%;
    }

    /* second div start  */
    .second-div {
        width: 100%;
        height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f4f6fc;
        border-radius: 0 0 20px 20px;
    }

    .second-div .flex-item-1 {
        width: 50%;
        height: 60vh;
        display: flex;
    }

    .second-div .flex-item-1 img {
        width: 100%;
        border-radius: 0 0 0 12px;
        height: 60vh;
    }

    .second-div .flex-item-2 {
        width: 50%;
        height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .second-div .flex-item-2 .list-div {
        list-style-type: none;
        width: 100%;
        height: 60vh;
        padding: 50px 10px 0px 21px;
        line-height: 1.5rem;
        border-bottom: 1px solid black;
        border-bottom-color: #d3dae7;
        background: #f4f6fc;
    }

    .second-div .flex-item-2 .list-div li {
        display: flex;
        color: var(--black-color);
        align-items: center;
    }

    .second-div .flex-item-2 .list-div li a {
        color: var(--black-color);
        font-size: 16px;
        font-weight: 400;
    }

}

@media(max-width:425px) {
    .company-about {
        margin-top: 10%;
        width: 100%;
        margin-bottom: 70%;
    }

    .company-about .container {
        display: block;
        width: 100%;
        height: 100vh;
        padding: 0;
        margin: 10% 3%;
        border-radius: 20px;
    }

    .first-div {
        display: block;
        background-image: url(../images/16.png);
        background-size: cover;
        background-position: center;
        height: 16vh;
        width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0;
        border-left: 1px solid black;
        border-top: 1px solid black;
        border-right: 1px solid black;
        border-left-color: #d3dae7;
        border-top-color: #d3dae7;
        border-right-color: #d3dae7;
    }

    .first-div .flex-item-1 {
        width: 100%;
        color: var(--first-color);
    }

    .flex-item-1 h2 {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 800;
        margin-top: -25px;
        width: 100%;
    }

    .first-div .flex-item-2 {
        width: 100%;
        color: var(--first-color);
    }

    .flex-item-2 h2 {
        text-align: center;
        font-size: 1.5rem;
        margin-top: -25px;
        font-weight: 500;
        width: 100%;
    }

    .second-div {
        width: 100%;
        height: 100vh;
        display: block;
        background: #f4f6fc;
        border-radius: 0 0 20px 20px;
    }

    .second-div .flex-item-1 {
        width: 100%;
        height: 50vh;
        display: block;
    }

    .second-div .flex-item-1 img {
        width: 100%;
        height: 50vh;
        border-radius: 0;
    }

    .second-div .flex-item-2 {
        width: 100%;
        height: 48vh;
        display: block;
    }

    .second-div .flex-item-2 .list-div {
      list-style-type: none;
      width: 100%;
      height: 55vh;
      padding: 15px 10px 10px 10px;
      line-height: 2.5rem;
      border-bottom: 1px solid black;
      border-bottom-color: #d3dae7;
      background: #f4f6fc;
  }

    .second-div .flex-item-2 .list-div li {
        display: flex;
        color: var(--black-color);
        align-items: center;
        margin-bottom: 10px;
    }

    .second-div .flex-item-2 .list-div li a {
        color: var(--black-color);
        font-size: 16px;
        font-weight: 400;
    }
}




/* ============ About Us / End Company Style ============= */
/* ============ About-us / End  Company Section Style ============= */




/* ============ About-us / Start Services Section Style ============= */
/* ============ About Us / Start Services Style ============= */


/* Video Section setup */
.service-section {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
  }
  
  /* Video styling */
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Blue Overlay */
  .blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 156, 215, 0.535);
    z-index: 1;
    display: flex;
    flex-direction: column;
  }
  
  /* Overlay Content */
  .overlay-content {
    color: #fff;
    z-index: 2;
    margin: 40px;
  }
  
  .overlay-content h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  .overlay-content p {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .service-section .container-fluid {
    width: 100%;
  }
  
  .owl-carousel {
    width: 100%;
    z-index: 2;
  }
  
  .owl-carousel .item {
    background: var(--first-color);
    padding: 20px 0;
    height: 80vh;
    width: 31vw;
    border-radius: 5px;
    text-align: left;
    color: white;
    margin: 10px 40px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }
  
  .owl-carousel .item:hover {
    background-color: #00015e;
  }
  .owl-carousel .item img {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 35px;
  }
  
  .owl-carousel .item .hover-icon img {
      position: absolute;
      bottom: -55px;
      right: -2px;
      width: 140px;
      height: 140px;
      opacity: 0;
      transition: all 0.5s ease;
  }
  
  
  /* On hover, show and move icon from bottom to top */
  .owl-carousel .item:hover .hover-icon img {
    opacity: .5;
    transform: translate(-10%, -20%);
    color: white;
  }
  
  
  
  
  .owl-carousel .item h4 {
    font-size: 1.5rem;
  }
  
  .service-icons {
    width: 50px;
    margin-left: 20px;
  }
  
  .service-heading-1 h3 {
    font-size: 22px;
    margin: 20px;
    font-weight: 700;
  }
  
  .serivece-details-1 {
    width: 100%;
    margin-top: 25px;
    padding: 10px
  }
  
  .serivece-details-1 li span {
    margin: 0 0 0 20px;
  }
  
  .serivece-details-2 {
  
    width: 100%;
    margin-top: 25px;
    padding: 10px;
  
  }
  
  .serivece-details-2 li span {
    margin: 0 0 0 20px;
  }
  
  .serivece-details-3 {
  
  
    width: 100%;
    margin-top: -20px;
    padding: 10px;
  
  }
  
  .serivece-details-3 li span {
    margin: 0 0 0 20px;
  }
  
  .serivece-details-4 {
  
    width: 100%;
    margin-top: 25px;
    padding: 10px;
  }
  
  .serivece-details-4 li span {
    margin: 0 0 0 20px;
  }
  
  .serivece-details-5 {
    width: 100%;
    margin-top: 25px;
    padding: 10px;
  }
  
  .serivece-details-5 span {
    margin: 0 0 0 20px;
  }
  
  .serivece-details-6 {
  
    width: 100%;
    margin-top: -15px;
    padding: 10px;
  }
  
  .serivece-details-6 span {
    margin: 0 0 0 20px;
  }
  
  .serivece-details-7 {
    width: 100%;
    margin-top: -15px;
    padding: 10px;
  }
  
  .serivece-details-7 li span {
    margin: 0 0 0 20px;
  }
  
  .fa-arrow-right {
    font-size: 15px;
    font-weight: bold;
    margin-right: 5px;
  }
  
  .serivece-details-1 li a {
    color: var(--white-color);
  }
  
  .serivece-details-2 li a {
    color: var(--white-color);
  }
  
  .serivece-details-3 li a {
    color: var(--white-color);
  }
  
  .serivece-details-4 li a {
    color: var(--white-color);
  }
  
  .serivece-details-5 li a {
    color: var(--white-color);
  }
  
  .serivece-details-6 li a {
    color: var(--white-color);
  }
  
  .serivece-details-7 li a {
    color: var(--white-color);
  }
  
  @media(max-width:768px) {
    .service-section {
      position: relative;
      width: 100%;
      height: 800px;
      overflow: hidden;
    }
  
    /* Video styling */
    .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
  
    /* Blue Overlay */
    .blue-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(50, 156, 215, 0.535);
      z-index: 1;
      display: flex;
      flex-direction: column;
    }
  
    /* Overlay Content */
    .overlay-content {
      color: #fff;
      z-index: 2;
      margin: 40px;
    }
  
    .overlay-content h1 {
      font-size: 3rem;
      margin: 0;
    }
  
    .overlay-content p {
      font-size: 1.5rem;
      margin: 0;
    }
  
    .owl-carousel {
      width: 100%;
      z-index: 2;
    }
  
    .owl-carousel .item {
      background: var(--first-color);
      padding: 20px 10;
      height: 90vh;
      width: 47vw;
      border-radius: 5px;
      text-align: left;
      color: white;
      margin: 10px 20px 60px 10px;
    }
  
    .owl-carousel .item img {
      display: block;
      width: 100%;
      margin-bottom: 40px;
      margin-top: 35px;
    }
  
    .owl-carousel .item .hover-icon img {
      position: absolute;
      bottom: -70px;
      right: -15px;
      width: 160px;
      height: 160px;
      opacity: 0;
      transition: all 0.5s ease;
    }
  
    .owl-carousel .item h4 {
      font-size: 1.5rem;
    }
  
    .service-icons {
      width: 50px;
      margin-left: 20px;
    }
  
    .service-heading-1 h3 {
      font-size: 22px;
      margin: 20px;
      font-weight: 700;
    }
  
    .serivece-details-1 {
      width: 100%;
      margin-top: 25px;
      padding: 10px
    }
  
    #deviceSpan {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-2 {
  
      width: 100%;
      margin-top: 25px;
      padding: 10px;
  
    }
  
    .service-details-list-2 li span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-3 {
  
  
      width: 100%;
      margin-top: -20px;
      padding: 10px;
  
    }
  
    .service-details-list-3 li span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-4 {
  
      width: 100%;
      margin-top: 25px;
      padding: 10px;
    }
  
    .service-details-list-4 li span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-5 {
      width: 100%;
      margin-top: 25px;
      padding: 10px;
    }
  
    .serivece-details-5 span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-6 {
  
      width: 100%;
      margin-top: -15px;
      padding: 10px;
    }
  
    .serivece-details-6 span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-7 {
      width: 100%;
      margin-top: -15px;
      padding: 10px;
    }
  
    .service-details-list-4 li span {
      margin: 0 0 0 20px;
    }
  
    .fa-arrow-right {
      font-size: 15px;
      font-weight: bold;
      margin-right: 5px;
    }
  }
  
  @media(max-width:425px) {
    .service-section {
      position: relative;
      width: 100%;
      margin-top: 20%;
      height: 800px;
      overflow: hidden;
    }
  
    /* Video styling */
    .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
  
    /* Blue Overlay */
    .blue-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(50, 156, 215, 0.535);
      z-index: 1;
      display: flex;
      flex-direction: column;
    }
  
    /* Overlay Content */
    .overlay-content {
      color: #fff;
      z-index: 2;
      margin: 40px;
    }
  
    .overlay-content h1 {
      font-size: 3rem;
      margin: 0;
    }
  
    .overlay-content p {
      font-size: 1rem;
      margin: 0;
    }
  
    .owl-carousel {
      width: 100%;
      z-index: 2;
    }
  
    .owl-carousel .item {
      background: var(--first-color);
      height: 75vh;
      width: 94vw;
      border-radius: 5px;
      text-align: left;
      color: white;
      margin: 0px 0px 10px 0px;
    }
  
    .owl-carousel .item img {
      display: block;
      width: 100%;
      margin-bottom: 0px;
      margin-top: 0px;
    }
  
    .owl-carousel .item .hover-icon img {
      position: absolute;
      bottom: -70px;
      right: -15px;
      width: 160px;
      height: 160px;
      opacity: 0;
      transition: all 0.5s ease;
    }
  
    .owl-carousel .item h4 {
      font-size: 1.5rem;
    }
  
    .service-icons {
      width: 50px;
      margin-left: 20px;
    }
  
    .service-heading-1 h3 {
      font-size: 22px;
      margin: 20px;
      font-weight: 700;
    }
  
    .serivece-details-1 {
      width: 100%;
      margin-top: 25px;
      padding: 10px
    }
  
    #deviceSpan {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-2 {
  
      width: 100%;
      margin-top: 25px;
      padding: 10px;
  
    }
  
    .service-details-list-2 li span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-3 {
  
  
      width: 100%;
      margin-top: -20px;
      padding: 10px;
  
    }
  
    .service-details-list-3 li span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-4 {
  
      width: 100%;
      margin-top: 25px;
      padding: 10px;
    }
  
    .service-details-list-4 li span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-5 {
      width: 100%;
      margin-top: 25px;
      padding: 10px;
    }
  
    .serivece-details-5 span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-6 {
  
      width: 100%;
      margin-top: -15px;
      padding: 10px;
    }
  
    .serivece-details-6 span {
      margin: 0 0 0 20px;
    }
  
    .serivece-details-7 {
      width: 100%;
      margin-top: -15px;
      padding: 10px;
    }
  
    .service-details-list-4 li span {
      margin: 0 0 0 20px;
    }
  
    .fa-arrow-right {
      font-size: 15px;
      font-weight: bold;
      margin-right: 5px;
    }
  }





/* ============ About Us / End Services Style ============= */
/* ============ About-us / End Services Section Style ============= */



/* ============ About-us / Start Vendor Section Style ============= */
/* ============ About Us / Start Vendor Style ============= */

.vendor-heading-section {
    width: 100%;
    background-color: #f4f6fc;
    min-height: 6vh;
  }
  
  .vendor-heading-section .vendor_title img {
      width: 100%;
      display: flex;
  
  }
  
  .vendor-heading-section .vendor_title {
          width: 100%;
          height: 40%;
          display: flex;
          justify-content: center;
          align-items: center;
          text-align: center;
      }
  
  .vendor-heading-section .vendor_title h2 {
          /*font-size: 2rem;*/
          display: none;
          /*justify-content: center;*/
          /*font-weight: 800;*/
          /*align-items: center;*/
          /*color: var(--first-color);*/
      }
  
  .venderos-section {
    background-color: #f4f6fc;
    min-height: 95vh;
    padding-top: 0px;
    max-height: fit-content;
  }
  
  .venderos-section .container {
    width: 80%;
    min-height: 80%;
    max-height: fit-content;
    margin: 40 0 70px 0;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 130px);
    grid-gap: 20px;
  }
  
  .vendors-item {
    background-color: #f4f6fc;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
      -0.5rem -0.5rem 0.6rem rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .vendors-item:hover {
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
      -0.5rem -0.5rem 0.5rem rgb(255, 255, 255);
    transform: scale(1.05);
  }
  
  .item-1 img {
    width: 90px;
    height: auto;
  }
  
  .item-2 img {
    width: 90px;
    height: auto;
  }
  
  .item-3 img {
    width: 160px;
    height: auto;
  }
  
  .item-4 img {
    width: 170px;
    height: auto;
  }
  
  .item-5 img {
    width: 160px;
    height: auto;
  }
  
  .item-6 img {
    width: 230px;
    height: auto;
  }
  
  .item-7 img {
    width: 150px;
    height: auto;
  }
  
  .item-8 img {
    width: 150px;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .vendor-heading-section {
      width: 100%;
      background-color: #f4f6fc;
      min-height: 6vh;
    }
  
  
    .vendor-heading-section .vendor_title img {
      width: 100%;
      display: flex;
  
  }
  
  .vendor-heading-section .vendor_title {
          width: 100%;
          height: 40%;
          display: flex;
          justify-content: center;
          align-items: center;
          text-align: center;
      }
  
  .vendor-heading-section .vendor_title h2 {
          /*font-size: 2rem;*/
          display: none;
          /*justify-content: center;*/
          /*font-weight: 800;*/
          /*align-items: center;*/
          /*color: var(--first-color);*/
      }
  
    .venderos-section .container {
      width: 100%;
      min-height: 80%;
      max-height: fit-content;
      padding: 30px 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 100px);
      grid-gap: 20px;
    }
  
    .vendors-item {
      background-color: #f4f6fc;
      padding: 10px;
      border-radius: 20px;
      box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
        -0.5rem -0.5rem 0.6rem rgb(255, 255, 255);
      width: 100%;
      height: 100%;
      transition: all 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .vendors-item:hover {
      box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
        -0.5rem -0.5rem 0.5rem rgb(255, 255, 255);
      transform: scale(1.05);
    }
  
    .item-1 img {
      width: 70px;
      height: auto;
    }
  
    .item-2 img {
      width: 70px;
      height: auto;
    }
  
    .item-3 img {
      width: 110px;
      height: auto;
    }
  
    .item-4 img {
      width: 120px;
      height: auto;
    }
  
    .item-5 img {
      width: 120px;
      height: auto;
    }
  
    .item-6 img {
      width: 170px;
      height: auto;
    }
  
    .item-7 img {
      width: 100px;
      height: auto;
    }
  
    .item-8 img {
      width: 100px;
      height: auto;
    }
  }
  
  @media (max-width: 425px) {
    .vendor-heading-section {
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: #f4f6fc;
          min-height: 30vh;
      }
    .vendor-heading-section .vendor_title img {
      display: none;
  
  }
  
  .vendor-heading-section .vendor_title {
          width: 100%;
          height: 40%;
          display: flex;
          justify-content: center;
          align-items: center;
          text-align: center;
      }
  
  .vendor-heading-section .vendor_title h2 {
          font-size: 1.8rem;
          display: flex;
          justify-content: center;
          font-weight: 800;
          align-items: center;
          color: var(--first-color);
      }
  
  
    .venderos-section {
      background-color: #f4f6fc;
      min-height: 75vh;
      max-height: fit-content;
    }
  
    .venderos-section .container {
      width: 100%;
      min-height: 80%;
      max-height: fit-content;
      padding: 0 20px 100px 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 100px 100px 100px 100px;
      grid-gap: 20px 10px;
    }
  
    .vendors-item {
      background-color: #f4f6fc;
      padding: 10px;
      border-radius: 20px;
      box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
        -0.5rem -0.5rem 0.6rem rgb(255, 255, 255);
      width: 100%;
      height: 100%;
      transition: all 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .vendors-item:hover {
      box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
        -0.5rem -0.5rem 0.5rem rgb(255, 255, 255);
      transform: scale(1.05);
    }
  
    .item-1 img {
      width: 70px;
      height: auto;
    }
  
    .item-2 img {
      width: 70px;
      height: auto;
    }
  
    .item-3 img {
      width: 110px;
      height: auto;
    }
  
    .item-4 img {
      width: 120px;
      height: auto;
    }
  
    .item-5 img {
      width: 120px;
      height: auto;
    }
  
    .item-6 img {
      width: 150px;
      height: auto;
    }
  
    .item-7 img {
      width: 120px;
      height: auto;
    }
  
    .item-8 img {
      width: 120px;
      height: auto;
    }
  }




/* ============ About Us / End Vendor Style ============= */
/* ============ About-us / End Vendor Section Style ============= */



/* ============ About-us / Start Contact Section Style ============= */
/* ============ About Us / Start Contact Style ============= */

/* General section styling */
.contact-section {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 130px 40px;
    width: 100%;
    height: 30vh;
    background-image: url(../images/Color.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .contact-section .container {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 100px 150px;
    width: 95%;
    height: 35vh;
    padding: 20px 40px 20px 50px;
    background-image: url(../images/16.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    z-index: 2;
    transform: translateY(-50%);
  }
  
  .contact-content h2 {
    font-size: 40px;
    font-weight: 800;
    width: 100%;
    color: var(--first-color);
  }
  
  .contact-actions {
    display: flex;
    width: 100%;
    align-items: center;
    height: 40%;
  }
  
  .contact-actions button {
    background-color: var(--first-color);
    color: white;
    width: 180px;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
 
  .contact-actions .call-info {
    width: 100%;
    align-self: center;
    margin-left: 30px;
    margin-bottom: 20px;
  }
  
  .contact-actions .call-info h3 {
    font-size: 16px;
    color: var(--first-color);
    font-weight: 700;
  }
  
  .contact-actions .call-info h2 {
    font-size: 20px;
    font-weight: 700;
  }
  
  .contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
  }
  
  .contact-social h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
  }
  
  .contact-social a {
    font-size: 16px;
    color: var(--white-color);
    margin: 0px 7px 7px 5px;
  }
  
  @media(max-width:768px) {
    .contact-section {
      display: grid;
      grid-template-columns: auto;
      grid-template-rows: 90px 40px;
      width: 100%;
      height: 30vh;
      background-image: url(../images/Color.jpg);
      background-size: cover;
      background-position: center;
    }
  
    .contact-section .container {
      position: relative;
      display: grid;
      grid-template-columns: auto;
      grid-template-rows: 100px 150px;
      width: 95%;
      height: 30vh;
      padding: 20px 40px 20px 50px;
      background-image: url(../images/16.png);
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      z-index: 2;
      transform: translateY(-50%);
    }
  
    .contact-content h2 {
      font-size: 26px;
      font-weight: 800;
      width: 100%;
      color: var(--first-color);
    }
  
    .contact-actions {
      display: flex;
      width: 100%;
      align-items: center;
      height: 40%;
      margin-top: -30px;
    }
  
    .contact-actions button {
      background-color: var(--first-color);
      color: white;
      width: 150px;
      height: 50px;
      font-size: 15px;
      font-weight: 700;
      padding: 10px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
 
    .contact-actions .call-info {
      width: 100%;
      margin-left: 30px;
      margin-top: 10px;
      align-self: center;
    }
  
    .contact-actions .call-info h3 {
      font-size: 14px;
      color: var(--first-color);
      font-weight: 700;
    }
  
    .contact-actions .call-info h2 {
      font-size: 16px;
      margin-top: -5px;
      font-weight: 700;
    }
  
    .contact-social {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      padding: 20px;
    }
  
    .contact-social h3 {
      font-size: 18px;
          font-weight: 500;
      color: var(--white-color);
    }
  
    .contact-social a {
      font-size: 16px;
          color: var(--white-color);
          margin: 0px 7px 5px 5px;
    }
  }
  
  @media(max-width:425px) {
    .contact-section {
          display: grid;
          grid-template-columns: auto;
          grid-template-rows: 85px 40px;
          width: 100%;
          height: 25vh;
          background-image: url(../images/Color.jpg);
          background-size: cover;
          background-position: center;
      }
  
    .contact-section .container {
      position: relative;
      display: grid;
      grid-template-columns: auto;
      grid-template-rows: 100px 150px;
      width: 90%;
      height: 23vh;
      padding: 10px;
      background-image: url(../images/16.png);
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      z-index: 2;
      transform: translateY(-50%);
      }
    .contact-content{
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
  }
    .contact-content h2 {
      font-size: 20px;
      font-weight: 800;
      width: 100%;
      text-align: center;
      color: var(--first-color);
      }
  
    .contact-actions {
      display: flex;
      justify-content: center;
      width: 100%;
      align-items: center;
      height: 50%;
      margin-top: -50px;
      }
  
    .contact-actions button {
      background-color: var(--first-color);
      color: white;
      width: 110px;
      font-size: 10px;
      font-weight: 700;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
  
    .contact-actions .call-info {
      width: 100%;
      margin-left: 30px;
      margin-bottom: 0px;
      align-self: center;
      }
  
    .contact-actions .call-info h2 {
      font-size: 16px;
      margin-top: -10px;
      font-weight: 700;
    }
  
    .contact-actions .call-info h3 {
      font-size: 12px;
      color: var(--first-color);
      font-weight: 700;
    }
  
  
  
    .contact-social {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      padding: 20px;
    }
  
    .contact-social h3 {
      font-size: 16px;
      font-weight: 500;
      color: var(--white-color);
    }
  
    .contact-social a {
      font-size: 14px;
      color: var(--white-color);
      margin: 0px 7px 5px 5px;
    }
  
    .contact-social .social-icons i {
      color: var(--white-color);
    }
  }




/* ============ About Us / End Contact Style ============= */
/* ============ About-us / End Contact Section Style ============= */




/* ============ About-us / Start Footer Section Style ============= */
/* ============ About Us / Start Footer Style ============= */

.footer {
  min-height: 65vh;
  width: 100%;
  background-image: url(../images/footer-cover.png);
  background-size: cover;
  background-position: center;
  margin-bottom: -5rem;
  background-color: var(--first-color);
  display: flex;
  gap: 2rem;
  padding: 5rem;
}

.footer:nth-child(1) {
  grid-area: one;
}

.footer:nth-child(2) {
  grid-area: two;
}

.footer:nth-child(3) {
  grid-area: three;
}

.footer-info {
  width: 40%;
  margin-top: -20px;
  padding: 30px;
  --grid-gap: 2rem;
}

.footer-info img {
  width: 50%;
  margin-left: 27px;
  height: 12%;
  margin-bottom:65px;
}

.footer-info p {
  font-size: 16px;
  padding: 25px;
  color: var(--white-color);
  font-weight: 400;
}

.footer-menu {
  width: 15%;
  padding: 20px;
  margin-bottom: 15px;
  --grid-gap: 2rem;
}

.footer-menu h3 {
  font-size: 2rem;
  margin-top: 10px;
  color: var(--white-color);
  font-weight: 700;
}

.footer-menu a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
}

.footer-menu ul {
  margin-top: 5.2rem;
}

.footer-category {
  width: 25%;
  padding: 20px;
  margin-bottom: 10px;
  --grid-gap: 2rem;
}

.footer-category h3 {
  font-size: 2rem;
  margin-top: 10px;
  font-weight: 700;
  color: var(--white-color);
}

.footer-category a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
}

.footer-category ul {
  margin-top: 5.2rem;
}

.footer-contact {
    width: 30%;
    padding: 20px;
    margin-bottom: 10px;
    --grid-gap: 2rem;
}

.footer-contact h3 {
    font-size: 2rem;
    margin-top: 10px;
    color: var(--white-color);
    font-weight: 700;
}

.footer-contact span {
    margin-left: 22px;
}

.footer-contact a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
}
.footer-contact a .ukn{
    margin-left:25px;
}

.footer-contact ul {
    margin-top: 5.2rem;
}

.footer li {
    margin-top: 0.5rem;
}

.footer .fa-location-dot {
    color: var(--white-color);
}

.footer .fa-phone {
    color: var(--white-color);
}

.footer .fa-square-whatsapp {
    color: var(--white-color);
}

.footer .fa-linkedin {
    color: var(--white-color);
}

.footer .fa-facebook {
    color: var(--white-color);
}

.footer .fa-envelope {
    color: var(--white-color);
}
.footer .fa-earth-europe {
  color: var(--white-color);
}

.footer .fa-square-instagram {
    color: var(--white-color);
}
@media (max-width: 768px) {
  .footer {
      display: grid;
      width: 100%;
      padding: 1rem;
      --grid-gap: 0.5rem;
      grid-template-columns: 1fr;
      grid-template-areas:
          'one two'
          'three four';
  }

  .footer-info {
      width: 100%;
      padding: 20px;
      margin-top: 65px;
      --grid-gap: 2rem;
  }

  .footer-info img {
      width: 40%;
      margin-left: 0px;
      height: 17%;
      margin-bottom: 40px;
  }

  .footer-info p {
      font-size: 16px;
      padding: 20px 20px 20px 0;
      color: var(--white-color);
      font-weight: 400;
  }

  .footer-menu {
      width: 100%;
      margin-top: 63px;
      padding: 20px;
      margin-bottom: 10px;
      --grid-gap: 2rem;
  }

  .footer-menu h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-menu a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
  }

  .footer-menu ul {
      margin-top: 4.5rem;
  }

  .footer-category {
      width: 100%;
      padding: 20px;
      margin-bottom: 20%;
      --grid-gap: 2rem;
  }

  .footer-category h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-category a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
  }

  .footer-contact {
      width: 100%;
      padding: 20px;
      margin-bottom: 10px;
      --grid-gap: 2rem;
  }

  .footer-contact h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-contact span {
      margin-left: 22px;
  }

  .footer-contact a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
      margin-left: 10px;
  }

  .footer li {
      margin-top: 0.5rem;
  }

  .footer .fa-location-dot {
      color: var(--white-color);
  }

  .footer .fa-phone {
      color: var(--white-color);
  }

  .footer .fa-square-whatsapp {
      color: var(--white-color);
  }

  .footer .fa-linkedin {
      color: var(--white-color);
  }

  .footer .fa-facebook {
      color: var(--white-color);
  }

  .footer .fa-envelope {
      color: var(--white-color);
  }

  .footer .fa-square-instagram {
      color: var(--white-color);
  }
}

@media(max-width:425px) {
  .footer {
      display: block;
      width: 100%;
      padding: 1rem;
  }
  .footer-info img {
      width: 40%;
      height: 18%;
      margin-bottom: 40px;
  }

  .footer-menu {
      width: 100%;
      padding: 20px;
      margin-bottom: 10px;
  }

  .footer-menu h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-menu a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
  }

  .footer-category {
      width: 100%;
      padding: 20px;
      margin-bottom: 10px;
  }

  .footer-category h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-category a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
  }

  .footer-contact {
      width: 100%;
      padding: 20px;
      margin-bottom: 20%;
  }

  .footer-contact h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-contact span {
      margin-left: 22px;
  }

  .footer-contact a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
      margin-left: 10px;
  }

  .footer li {
      margin-top: 0.5rem;
  }

  .footer .fa-location-dot {
      color: var(--white-color);
  }

  .footer .fa-phone {
      color: var(--white-color);
  }

  .footer .fa-square-whatsapp {
      color: var(--white-color);
      
  }

  .footer .fa-linkedin {
      color: var(--white-color);
  }

  .footer .fa-facebook {
      color: var(--white-color);
  }

  .footer .fa-envelope {
      color: var(--white-color);
  }

  .footer .fa-square-instagram {
      color: var(--white-color);
  }
}






/* ============ About Us / End Footer Style ============= */
/* ============ About-us / End Footer Section Style ============= */



/* ============ About-us / Start Copyright Section Style ============= */
/* ============ About Us / Start Copyright Style ============= */

.copyRight {
  background-color: var(--first-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 10px 80px;
  justify-content: space-between;
  align-items: center;
}

/*================== CopyRight Section ================== */

/* ====== Utility Classes =======*/

.text-allign {
  text-align: center;
}

.p-top {
  color: var(--white-color);
}

.copyRight {
  margin-top: 2rem;
  height: 6vh;
  padding: 2rem 5rem 1rem 5rem;
  margin-inline: auto;
  background-color: var(--first-color);
  color: var(--white-color);
}

.copyRight p {
  font-size: 2rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .copyRight {
      height: 6vh;
      padding: 2rem 2rem 1rem 2rem;
      margin-inline: auto;
      background-color: var(--first-color);
      color: var(--white-color);
  }

  .copyRight p {
      font-size: 0.8rem;
      font-weight: 400;
  }
}

@media (max-width:425px) {
  .copyRight {
      height: 6vh;
      padding: 2rem 1rem 1rem 1rem;
      margin-inline: auto;
      background-color: var(--first-color);
      color: var(--white-color);
  }

  .copyRight p {
      font-size: 0.6rem;
      font-weight: 400;
  }
}






/* ============ About Us / End Copyright Style ============= */
/* ============ About-us / End Copyright Section Style ============= */






