@font-face {
    font-family: GilroyRegular;
    src: url(gilroy-regular.ttf);
}
@font-face {
    font-family: GilroyBold;
    src: url(gilroy-bold.ttf);
}


.main_Banner {
    width: 100%; 
    background: linear-gradient(to bottom, rgb(100, 102, 102), rgb(255, 255, 255));
    background: black;
    /* margin-top: 4rem; */
    overflow: hidden;
    position: relative;
}
.main_Banner .banner_img_Container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    height: 100vh;
    transition: transform 0.8s ease;
    will-change: transform;
}

.main_Banner .banner_img_Container img {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    filter: blur(1px);
}

.banner_Content {
    font-family: 'GilroyBold'; 
    position: absolute;
    width: 60%;
    top: 50%;
    left: 10%;
    transform: translate(-10%,-50%);
    z-index: 5;
    padding: 2rem 3rem;
    /* border-radius: 12px;
    background: linear-gradient(to bottom, rgb(164, 161, 152), rgb(255, 255, 255));
    box-shadow: 0 10px 40px rgb(0,0,0,0.7); */
    opacity: 1;
}
.banner_Content .text-content {
    font-weight: 900;
    font-size: 4rem;
    color: white;
    line-height: 1;
}
.banner_Content .text-content span {
    font-size: 3rem;
}
.banner_Content .btn-Section {
    font-family: 'GilroyRegular'; 
    text-align: left;
    margin-top: 3rem;
}
.banner_Content .btn-Section .btn {
    background-color: rgb(207, 172, 95) !important;
    border-radius: 25px !important;
    color: black;
    font-weight: 600; 
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
}


@media screen and (max-width: 374px) {
}
@media screen and (min-width: 375px) {
}
@media screen and (min-width: 425px) {
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 992px) {
}
@media screen and (min-width: 1200px) {
}
@media screen and (min-width: 1300px) {
}


.trustedClients {
    background: linear-gradient(to bottom, rgb(235, 223, 197), whitesmoke);
    padding: 1rem 0 4rem 0;
}
.imgSlider-heading {
    font-family: 'GilroyBold'; 
    color: rgb(84, 61, 11); 
    text-align: center; 
}
.imgSlider {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    background-color: transparent;
    position: relative;
}

.imgSlider .slider-track {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
}

.imgSlider .img-holder {
    width: 15rem;
    padding: 0 4rem;
    flex-shrink: 0;
}

.imgSlider .img-holder img {
    width: 100%;
    height: auto;
}

/* Keyframe Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media screen and (max-width: 374px) {
    .imgSlider-heading {
        font-size: 1.25rem; 
        margin-bottom: 1.5rem;
    }
}
@media screen and (min-width: 375px) {
    .imgSlider-heading {
        font-size: 1.5rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 425px) {
    .imgSlider-heading {
        font-size: 1.75rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 768px) {
    .imgSlider-heading {
        font-size: 2rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 1024px) {
    .imgSlider-heading {
        font-size: 2rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 1200px) {
    .imgSlider-heading {
        font-size: 2rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 1300px) {
    .imgSlider-heading {
        font-size: 2.5rem; 
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}



.solutionDiv {
    background: whitesmoke;
    padding: 3rem 0 4rem 0;
}
.solutionDiv .heading {
    font-family: 'GilroyBold'; 
    color: rgb(84, 61, 11); 
    text-align: center; 
    font-size: 2.5rem; 
}
.solutionDiv .description {
    font-family: 'GilroyRegular'; 
    color: rgb(74, 74, 74); 
    text-align: center; 
    font-size: 1.1rem; 
    margin: 1rem 0 3rem 0;
    padding: 0 5rem;
}
.solutionsContainer {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
}
.solutionsContainer .each_solution {
    background: white;
    background: linear-gradient(
                135deg,
                #f6ddee 0%,
                #d0dbee 50%,
                #e5edd1 100%
                ) !important;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 1px 1px 5px 0px whitesmoke;
    width: 30%;
    height: 500px;
    margin: 10px;
}
.each_solution .solutionImgSection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 1rem;
}
.each_solution .solutionImgSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.each_solution .solutionBlogSection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    padding: 0.5rem 1rem;
}
.each_solution .solutionBlogSection .heading {
    font-family: "GilroyBold";
    color: black;
    font-size: 2rem;
    text-align: left;
}
.each_solution .solutionBlogSection .content {
    font-family: "GilroyRegular";
    font-family: 'Montserrat',sans-serif;
    font-weight: 450;
    color: rgb(77, 76, 76);
    text-align: justify;
    font-size: 1rem;
}
.each_solution .solutionBlogSection .readBtn {
    position: absolute;
    color: rgb(125, 99, 44);
    font-weight: 600;
    bottom: 1.5rem;
    left: 1rem;
    font-size: 1rem;
}





.securityDiv {
    background: whitesmoke;
    padding: 3rem 0 4rem 0;
}
.securityDiv .heading {
    font-family: 'GilroyBold'; 
    color: rgb(84, 61, 11); 
    text-align: center; 
    font-size: 2.5rem; 
}
.securityDiv .description {
    font-family: 'GilroyRegular'; 
    color: rgb(74, 74, 74); 
    text-align: center; 
    font-size: 1.1rem; 
    margin: 1rem 0 3rem 0;
    padding: 0 5rem;
}
.securityDiv .securityContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.securityDiv .each_security {
    width: 20%;
    height: 100px;
    text-align: center;
}
.securityDiv .each_security img {
    width: 90px;
}
.securityDiv .each_security .heading {
    font-size: 1.1rem;
    font-family: "GilroyBold";
    color: gray;
}