/*===== 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;
}


/* ============ Roll Out Migration / Start Header Section Style ============= */
/* ============ Roll Out Migration / Start Header Style ============= */
.navbar {
    height: 80px;
    pad: 0.5rem;
    background-color: var(--first-color);
}

.navbar .brand-logo {
    width: 9%;
    height: 35px;
    cursor:pointer;
    margin-left: 20px;
}

.navbar .brand-logo img {
    width: 100%;
    cursor:pointer;
    height: auto;
}

.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;
    }
}

/* ============ Roll Out Migration / End Header Style ============= */
/* ============ Roll Out Migration / End Header Section Style ============= */




/* ============ Start Roll Out Migration Hero Style ============= */
.rom-section {
    position: relative;
    padding: 40px;
    min-height: 100vh;
    background-image: url('../images/roll-out-migration.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.first-hero-div {
    display: flex;
    margin-left: 60px;
    color: var(--white-color);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
}

.first-hero-div .flex-item-1,
.first-hero-div .flex-item-2,
.first-hero-div .contact-us-btn {
    margin-bottom: 20px;
}

.first-hero-div .flex-item-1 h3 {
    font-size: 2rem;
    font-weight: 400;
}

.first-hero-div .flex-item-2 h2 {
    font-size: 3rem;
    font-weight: 600;
}

.second-hero-div {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 45%;
    text-align: left;
}

.second-hero-div .item {
    display: block;
    background-color: #00015e;
    border-radius: 10px 10px 0 0;
    text-align: left;
    color: var(--white-color);
    padding: 20px 0;
    height: 60vh;
    width: 60%;
    top: 40px;
    left: 20%;
    position: relative;
    overflow: hidden;
}

.second-hero-div .service-icons img,
.second-hero-div .service-heading-1,
.second-hero-div .serivece-details-1 {
    margin-bottom: 10px;

}

/* Optional styling for the button */
.contact-us-btn button {
    background-color: #00015e;
    color: white;
    width: 180px;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-us-btn button:hover {
    background-color: var(--first-color);
}

@media (max-width: 768px) {

    .rom-section {
        position: relative;
        padding: 10px;
        min-height: 100vh;
        background-image: url(../images/hb-fix-cover.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .first-hero-div {
        display: flex;
        margin-left: 20px;
        margin-top: 20px;
        color: var(--white-color);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 80%;
    }

    .first-hero-div .flex-item-1,
    .first-hero-div .flex-item-2,
    .first-hero-div .contact-us-btn {
        margin-bottom: 5px;
    }

    .first-hero-div .flex-item-1 h3 {
        font-size: 1.3rem;
        font-weight: 400;
    }

    .first-hero-div .flex-item-1,
    .first-hero-div .flex-item-2,
    .first-hero-div .contact-us-btn {
        margin-bottom: 5px;
    }

    .first-hero-div .flex-item-2 h2 {
        font-size: 26px;
        font-weight: 600;
    }

    .first-hero-div .flex-item-1,
    .first-hero-div .flex-item-2,
    .first-hero-div .contact-us-btn {
        margin-bottom: 5px;
    }

    .contact-us-btn button {
        background-color: #00015e;
        color: white;
        width: 170px;
        height: 50px;
        font-size: 14px;
        font-weight: 700;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .second-hero-div {
        position: absolute;
        bottom: 20px;
        flex-direction: column;
        display: flex;
        right: 52px;
        width: 90%;
        text-align: left;
    }

    .second-hero-div .item {
        display: block;
        background-color: #00015e;
        border-radius: 10px;
        text-align: left;
        color: var(--white-color);
        padding: 20px 0;
        height: 60vh;
        width: 100%;
        position: initial;
        overflow: hidden;
    }

    .service-heading-1 h3 {
        display: none;
    }

    .second-hero-div .service-icons img,
    .second-hero-div .service-heading-1,
    .second-hero-div .serivece-details-1 {
        margin-bottom: -10px;

    }

    .contact-us-btn button:hover {
        background-color: var(--first-color);
    }
}

@media (max-width: 425px) {

    .rom-section {
        position: relative;
        padding: 10px;
        min-height: 100vh;
        background-image: url(../images/hb-fix-cover.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .first-hero-div {
        display: flex;
        margin-left: 10px;
        color: var(--white-color);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .first-hero-div .flex-item-1,
    .first-hero-div .flex-item-2,
    .first-hero-div .contact-us-btn {
        margin-bottom: 5px;
    }

    .first-hero-div .flex-item-1 h3 {
        font-size: 1.3rem;
        font-weight: 400;
    }

    .first-hero-div .flex-item-1,
    .first-hero-div .flex-item-2,
    .first-hero-div .contact-us-btn {
        margin-bottom: 5px;
    }

    .hardware-break-fix-section .first-hero-div .flex-item-2 h2 {
        font-size: 26px;
        font-weight: 600;
    }

    .first-hero-div .flex-item-1,
    .first-hero-div .flex-item-2,
    .first-hero-div .contact-us-btn {
        margin-bottom: 5px;
    }

    .contact-us-btn button {
        background-color: #00015e;
        color: white;
        width: 170px;
        height: 50px;
        font-size: 14px;
        font-weight: 700;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .second-hero-div {
        position: absolute;
        bottom: 15px;
        flex-direction: column;
        display: flex;
        right: 23px;
        width: 90%;
        text-align: left;
    }

    .second-hero-div .item {
        display: block;
        background-color: #00015e;
        border-radius: 10px;
        text-align: left;
        color: var(--white-color);
        padding: 20px 0;
        height: 60vh;
        width: 100%;
        position: initial;
        overflow: hidden;
    }

    .service-heading-1 h3 {
        display: none;
    }

    .second-hero-div .service-icons img,
    .second-hero-div .service-heading-1,
    .second-hero-div .serivece-details-1 {
        margin-bottom: 15px;

    }

    .contact-us-btn button:hover {
        background-color: var(--first-color);
    }
}




/*=========== Start Roll Out Migration Part-1 Style ====================*/
.rom-section-1 {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 10% 0 20% 0;
}

.rom-section-1 .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 20px;
}

.rom-section-1 .first-div {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.rom-section-1 .first-div .flex-item-1 {
    width: 100%;
    display: block;
    text-align: left;
}

.rom-section-1 .first-div .flex-item-1 h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--first-color);
    margin-bottom: 15px;
    text-align: left;
}

.rom-section-1 .first-div .first-div-dec {
    width: 100%;
    margin-bottom: 20px;
}

.rom-section-1 .first-div .flex-item-1 p {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8rem;
    padding-right: 10%;
}

.rom-section-1 .first-div-list-dec {
    margin-top: 10px;
    padding-left: 50px;
    list-style-type: disc;
}

.rom-section-1 .first-div-list-dec li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8rem;
    font-weight: 400;
}

.rom-section-1 .second-div {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rom-section-1 .second-div .flex-item-2 img {
    width: 100%;
    height: 120vh;
}




/* Media Query for Tablet View (768px and below) */
@media (max-width: 768px) {
    .rom-section-1 {
        flex-direction: column-reverse;
        margin-bottom: 20%;
    }

    .rom-section-1 .container {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .rom-section-1 .second-div {
        width: 100%;
        margin-bottom: 20px;
    }

    .rom-section-1 .second-div .flex-item-2 img {
        width: 90vw;
        object-fit: cover;
        height: 55vh;
    }

    .rom-section-1 .first-div {
        width: 100%;
        display: block;
    }

    .rom-section-1 .first-div .flex-item-1 h2 {
        font-size: 28px;
        margin-left: 10px;
        font-weight: 800;
        color: var(--first-color);
        margin-bottom: 15px;
        text-align: left;
    }

    .rom-section-1 .first-div .flex-item-1 {
        width: 100%;
        display: block;
        text-align: left;
    }

    .rom-section-1 .first-div .flex-item-1 p {
        padding-left: 20px;
        padding-right: 15px;
    }

    .rom-section-1 .first-div-list-dec {
        padding-left: 70px;
    }
}


@media (max-width: 425px) {
    .rom-section-1 {
        flex-direction: column-reverse;
        margin-bottom: 30%;
    }

    .rom-section-1 .container {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .rom-section-1 .second-div {
        width: 100%;
        margin-bottom: 20px;
    }

    .rom-section-1 .second-div .flex-item-2 img {
        width: 90vw;
        object-fit: cover;
        height: 40vh;
    }

    .rom-section-1 .first-div {
        width: 100%;
        display: block;
    }

    .rom-section-1 .first-div .flex-item-1 h2 {
        font-size: 28px;
        margin-left: 10px;
        font-weight: 800;
        color: var(--first-color);
        margin-bottom: 15px;
        text-align: left;
    }

    .rom-section-1 .first-div .flex-item-1 {
        width: 100%;
        display: block;
        text-align: left;
    }

    .rom-section-1 .first-div .flex-item-1 p {
        padding-left: 20px;
        padding-right: 15px;
    }

    .rom-section-1 .first-div-list-dec {
        padding-left: 50px;
        width: 90%;
    }
}




/* ============ Roll Out Migration / Start Contact Section Style ============= */
/* ============ Roll Out Migration / Start Contact Style ============= */

/* General section styling */
.rom-contact-section {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 130px 40px;
    width: 100%;
    height: 30vh;
    margin-top: 20%;
    margin-bottom: 10%;
    /* background-image: url(../images/Color.jpg);
    background-size: cover;
    background-position: center; */
}

.rom-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;
    border: 1px solid black;
    border-color: #d3dae7;
    z-index: 2;
    transform: translateY(-50%);
}

.rom-contact-content h2 {
    font-size: 40px;
    font-weight: 800;
    width: 100%;
    color: var(--first-color);
}

.rom-contact-actions {
    display: flex;
    width: 100%;
    align-items: center;
    height: 40%;
}

.rom-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;
}

.rom-contact-actions .call-info {
    width: 100%;
    align-self: center;
    margin-left: 30px;
    margin-bottom: 20px;
}

.rom-contact-actions .call-info h3 {
    font-size: 16px;
    color: var(--first-color);
    font-weight: 700;
}

.rom-contact-actions .call-info h2 {
    font-size: 20px;
    font-weight: 700;
}


@media(max-width:768px) {
    .rom-contact-section {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 90px 40px;
        width: 100%;
        height: 30vh;
        margin-top: 20%;
        /* background-image: url(../images/Color.jpg);
      background-size: cover;
      background-position: center; */
    }

    .rom-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%);
    }

    .rom-contact-content h2 {
        font-size: 26px;
        font-weight: 800;
        width: 100%;
        color: var(--first-color);
    }

    .rom-contact-actions {
        display: flex;
        width: 100%;
        align-items: center;
        height: 40%;
        margin-top: -30px;
    }

    .rom-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;
    }

    .rom-contact-actions .call-info {
        width: 100%;
        margin-left: 30px;
        margin-top: 10px;
        align-self: center;
    }

    .rom-contact-actions .call-info h3 {
        font-size: 14px;
        color: var(--first-color);
        font-weight: 700;
    }

    .rom-contact-actions .call-info h2 {
        font-size: 16px;
        margin-top: -5px;
        font-weight: 700;
    }
}

@media(max-width:425px) {
    .rom-contact-section {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 85px 40px;
        width: 100%;
        height: 20vh;
        margin-top: 40%;
        /* background-image: url(../images/Color.jpg);
          background-size: cover;
          background-position: center; */
    }

    .rom-contact-section .container {
        position: relative;
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 100px 150px;
        width: 90%;
        height: 23vh;
        padding: 10px;
        background: var(--white-color);
        /*background-image: url(../images/16.png);*/
        /*background-size: cover;*/
        /*background-position: center;*/
        border-radius: 10px;
        z-index: 2;
        transform: translateY(-50%);
    }

    .rom-contact-content {
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .rom-contact-content h2 {
        font-size: 20px;
        font-weight: 800;
        width: 100%;
        text-align: center;
        color: var(--first-color);
    }

    .rom-contact-actions {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        height: 50%;
        margin-top: -50px;
    }

    .rom-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;
    }

    .rom-contact-actions .call-info {
        width: 100%;
        margin-left: 30px;
        margin-bottom: 0px;
        align-self: center;
    }

    .rom-contact-actions .call-info h2 {
        font-size: 16px;
        margin-top: -10px;
        font-weight: 700;
    }

    .rom-contact-actions .call-info h3 {
        font-size: 12px;
        color: var(--first-color);
        font-weight: 700;
    }
}




/* ============ Roll Out Migration / End Contact Style ============= */
/* ============ Roll Out Migration / End Contact Section Style ============= */




/* ============ Data Center Maintenance / Start Services Section Style ============= */
/* ============ Data Center Maintenance / 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: -55px;
        right: 0px;
        width: 140px;
        height: 140px;
        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: 10%;
        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: -10px;
        right: 0px;
        width: 120px;
        height: 120px;
        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 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;
    margin-top: 20%;
    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;
    border: 1px solid black;
    border-color: #d3dae7;
    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;
        margin-top: 20%;
        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: 20vh;
        margin-top: 40%;
        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: var(--white-color);
        /*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);
    }
}




/* ============ Roll Out Migration / End Contact Style ============= */
/* ============ Roll Out Migration / End Contact Section Style ============= */









/* ============ Roll Out Migration / Start Footer Section Style ============= */
/* ============ Roll Out Migration / 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 ul {
    margin-top: 5.2rem;
}

.footer li {
    margin-top: 0.5rem;
}

.footer .fa-location-dot {
    color: var(--white-color);
}

.footer .fa-earth-europe {
    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: 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);
    }
}






/* ============ Roll Out Migration / End Footer Style ============= */
/* ============ Roll Out Migration / End Footer Section Style ============= */



/* ============ Roll Out Migration / Start Copyright Section Style ============= */
/* ============ Roll Out Migration / 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;
    }
}






/* ============ Roll Out Migration / End Copyright Style ============= */
/* ============ Roll Out Migration / End Copyright Section Style ============= */