* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p li {
    font-family: "Source Sans 3", sans-serif;
}

body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    /* background-image: url(../images/background.jpg); */
    background: white;
    /* margin-bottom: 100px; */
}

ul {
    list-style-type: none;
}


.page-banner-area {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}




.page-banner-area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: #032346de;
    height: 100%;
    width: 100%;
}

.page-banner-area .container-fluid {
    max-width: 1520px;
    margin: auto;
}

.page-banner-content {
    position: relative;
}


.page-banner-content h1 {
    font-size: 50px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-banner-content ul {
    margin-left: 0;
    padding-bottom: 0;
}

.page-banner-content ul li {
    display: inline-block;
    position: relative;
    padding-right: 18px;
    font-size: 16px;
    font-weight: 500px;
    color: white;

}

.page-banner-content ul li a {
    text-decoration: none;
    color: white;
}

.page-banner-content ul li::before {
    position: absolute;
    content: "/";
    right: 2px;
    top: 0;
}

.page-banner-content ul li:last-child {
    color: var(--primary-color);
}

.page-banner-content ul li:last-child::before {
    display: none;
}

.bg-app-sys {
    background: url('../images/applications-and-systems-header.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.bg-multimedia {
    background: url('../images/multimedia-header.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.bg-security {
    background: url('../images/security-tech-header.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-data-and-security{
    background: #032346de;
    color: white;
}


.read-more {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgb(0 107 179);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    margin-top: 30px;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.read-more:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.read-more:hover .icon {
    transform: translate(4px);
}

.read-more:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.read-more::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}







.header .container {
    display: flex;
    flex-direction: row;
    padding: 30px 10px;
    justify-content: space-between;
    /* align-items: center; */
}

.header .header-image img {
    max-width: 400px;
    margin: 0px 20px;

}

.heading h1 {
    font-size: 40px;
    margin: 20px 0px;
    line-height: 1.3;
}


.heading span {
    background: -webkit-linear-gradient(rgb(251, 221, 19) 0.1%, rgb(255, 153, 1) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading h1 {
    animation: pulse 2s infinite;
}





@media(max-width:600px) {
    html {
        overflow: scroll;
        overflow-x: hidden;
    }

    .header .container {
        display: flex;
        flex-direction: column;
        padding: 0px 15px;
        align-items: center;
    }

    .header img {
        width: 100%;
        padding: 0px 15px;
    }



    .foot1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px 15px;
    }

    .foot2 {
        display: flex;
        flex-direction: column;

    }

    .home,
    .about-us,
    .our-services,
    .products {
        margin: 10px 0px;
    }


}

@media(min-width:600px) {

    .html {
        overflow: scroll;
        overflow-x: hidden;
    }

    .header .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px 20px;
    }

    .foot1 {
        display: flex;
        flex-direction: column;
        padding: 10px 0px;
    }

    .foot2 {
        display: flex;
        flex-direction: column;
        padding: 10px 25px;
    }

    .home,
    .about-us,
    .our-services,
    .products {
        margin: 10px 0px;
    }


}

@media(min-width:768px) {}

@media(min-width:992px) {
    .header .container {
        display: flex;
        flex-direction: row;
        padding: 10px 20px;
    }

    .foot1 {
        display: flex;
        flex-direction: row;
        padding: 0px 15px;
    }

    .foot2 {
        display: flex;
        flex-direction: row;
    }
}


@media(min-width:1200px) {}