@font-face {
    font-family: GilroyRegular;
    src: url(gilroy-regular.ttf);
}
@font-face {
    font-family: GilroyBold;
    src: url(gilroy-bold.ttf);
}

body {
    font-family: "GilroyRegular";
    background-color: #f2f2f2 !important;
}
body a {
    text-decoration: none;
    color: inherit;
}
.main_Banner {
    width: 100%; 
    height: 70vh;
    background: linear-gradient(to bottom, rgb(100, 102, 102), rgb(255, 255, 255));
    background: black;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.main_Banner .banner_img_Container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main_Banner .banner_img_Container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: bannerFade 16s infinite;
    object-fit: fill;
}

/* Stagger animation */
.main_Banner .banner_img_Container img:nth-child(1) {
    animation-delay: 0s;
}
.main_Banner .banner_img_Container img:nth-child(2) {
    animation-delay: 4s;
}
.main_Banner .banner_img_Container img:nth-child(3) {
    animation-delay: 8s;
}
.main_Banner .banner_img_Container img:nth-child(4) {
    animation-delay: 12s;
}

@keyframes bannerFade {
    0%   { opacity: 0; }
    10%  { opacity: 0.5; }
    30%  { opacity: 0.5; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}

.banner_Content {
    font-family: 'GilroyRegular'; 
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%,-80%);
    z-index: 5;
    /* border-radius: 12px;
    background: black;
    box-shadow: 0 10px 40px rgb(0,0,0,0.7); */
    opacity: 0.7;
}
.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) {
    .main_Banner .banner_img_Container img {
        object-fit: cover;
    }
    .banner_Content {
        width: 100%;
        padding: 2rem 1rem;
    }
}
@media screen and (min-width: 375px) {
    .main_Banner .banner_img_Container img {
        object-fit: cover;
    }
    .banner_Content {
        width: 100%;
        padding: 2rem;
    }
}
@media screen and (min-width: 425px) {
    .main_Banner .banner_img_Container img {
        object-fit: cover;
    }
    .banner_Content {
        width: 100%;
        padding: 2rem 3rem;
    }
}
@media screen and (min-width: 768px) {
    .main_Banner .banner_img_Container img {
        object-fit: fill;
    }
    .banner_Content {
        width: 90%;
        padding: 2rem 3rem;
    }
}
@media screen and (min-width: 992px) {
    .main_Banner .banner_img_Container img {
        object-fit: cover;
    }
    .banner_Content {
        width: 80%;
        padding: 2rem 3rem;
    }
}
@media screen and (min-width: 1200px) {
    .main_Banner .banner_img_Container img {
        object-fit: cover;
    }
    .banner_Content {
        width: 70%;
        padding: 2rem 3rem;
    }
}
@media screen and (min-width: 1300px) {
    .main_Banner .banner_img_Container img {
        object-fit: cover;
    }
    .banner_Content {
        width: 60%;
        padding: 2rem 3rem;
    }
}



.container {
    max-width: 80%;
}


.featuresGrids {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 1rem auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: white;
    box-shadow: 0px 0px 3px 1px gainsboro;
}
.featuresGrids .heading {
    font-family: "GilroyRegular";
    color: #e06767;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0.25rem 1rem 1.5rem;
    width: 100%;
    text-align: left;
}
.featuresGrids .row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
    margin: 0;
}
.featuresGrids .row .col-2 {
    cursor: pointer;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 1px rgb(237, 235, 235);
    position: relative;
    transition: 0.2s ease;
    width: 11%;
    height: 10rem;
    margin: 1rem;
}
.featuresGrids .row .col-2:hover {
    transform: scale(1.05);
}
.featuresGrids .row .col-2 .gridsImg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 65%;
    padding: 0.5rem 1.5rem; 
}
.featuresGrids .row .col-2 .gridsImg img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}
.featuresGrids .row .col-2 .captions {
    font-family: "GilroyRegular";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    font-weight: 600;
    text-align: center;
    padding: 0 0.25rem;
    font-size: 0.8rem;
}


.brandGrids {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 1rem auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: white;
    box-shadow: 0px 0px 3px 1px gainsboro;
}
.brandGrids .heading {
    font-family: "GilroyRegular";
    color: #e06767;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0.25rem 1rem 1.5rem;
    width: 100%;
    text-align: left;
}
.brandGrids .row {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
    margin: 0;
}
.brandGrids .row .fundingseries {
    font-family: "GilroyRegular";
    font-size: 0.9rem;
    padding: 0 1.1rem;
    font-weight: 550;
}
.brandGrids .row .col-2 {
    cursor: pointer;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 1px rgb(237, 235, 235);
    position: relative;
    transition: 0.2s ease;
    width: 17%;
    height: 10rem;
    margin: 1rem;
}
.brandGrids .row .col-2:hover {
    transform: scale(1.05);
}
.brandGrids .row .col-2 .gridsImg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    padding: 0.5rem 1.5rem; 
}
.brandGrids .row .col-2 .gridsImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brandGrids .row .col-2 .captions {
    font-family: "GilroyRegular";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    font-weight: 600;
    text-align: center;
    padding: 0 0.25rem;
    font-size: 0.8rem;
}



.byBrands {
    background-color: white;
    box-shadow: 0px 0px 3px 1px gainsboro;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem 1.75rem 1rem;
    position: relative;
}
.byBrands .byBrandsCaptions {
    font-family: "GilroyRegular";
    color: #e06767;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0.25rem 1rem 0.5rem;
}
.nav-tabs {
    width: 100%;
    overflow-x: auto;
    list-style: none;
    padding: 0;
    padding-bottom: 0.3rem;
    border-bottom: 0;
    box-shadow: 0px 2px 3px 1px gainsboro;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: nowrap;
}
.nav-tabs::-webkit-scrollbar {
    height: 6px;   /* Thin horizontal scrollbar */
}
.nav-tabs::-webkit-scrollbar-track {
    background: transparent;
}
.nav-tabs::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}
.nav-tabs::-webkit-scrollbar-thumb:hover {
    background: #999;
}
.nav-tabs li {
    margin: 0;
    display: inline-block;
    white-space: nowrap;
}
.nav-tabs li a {
    font-family: "GilroyRegular";
    display: block;
    color: grey;
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    margin: auto 0.25rem;
    font-size: 0.9rem;
    font-weight: 550;
    white-space: nowrap;
}
.nav-tabs li a.active {
    color: mediumseagreen;
    border-bottom: 3px solid mediumseagreen;
    font-weight: 550;
    font-size: 1rem;
}
.byBrandscontent {
    padding: 0;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
}

.eachTabContent {
    cursor: pointer;
    display: inline-block;
    margin: 1rem 0.25rem;
    width: 150px;
    height: 9rem;
    position: relative;
}
.eachTabContent .brandImg {
    width: 100%;
    height: 75%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eachTabContent .brandImg img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%; 
    object-fit: cover;
}
.eachTabContent .brandName {
    font-family: "GilroyRegular";
    font-weight: 600;
    color: rgb(62, 62, 62); 
    font-size: 0.9rem;
    text-align: center;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15%;
    padding: 0 0.25rem;
}


.sliderLeft {
    background-color: white;
    box-shadow: 0px 0px 3px 1px gainsboro;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem 1.75rem 1rem;
    position: relative;
}
.sliderLeft .sliderLeftCaptions {
    font-family: "GilroyRegular";
    width: 100%;
    color: #e06767;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.25rem 0.25rem 1rem 0.75rem;
}
.sliderWrapper {
    width: 100%; 
    overflow: hidden; 
}
.slider {
    display: flex;
    transition: transform 0.3s ease-in-out; 
    width: max-content; 
}
.slides {
    width: 17rem; 
    height: 19rem;
    margin: 0.5rem 0.75rem; 
    flex-shrink: 0; 
    background-color: #f2f2f2;
    box-shadow: 0px 0px 3px 1px gainsboro;
    border-radius: 10px;
    position: relative;
    transition: 0.2s ease;
}
.spareSlider .slides {
    width: 18rem; 
    height: 21rem;
}
.slides:hover {
    transform: scale(1.03);
}

.prev-btn, .next-btn {
    cursor: pointer;
    color: gray;
    background-color: white; 
    border: 1px solid gainsboro;
    box-shadow: 0px 0px 10px 2px #f2f2f2;
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.6rem;
    font-size: 1rem;
}
.sliderViewallBtn {
    font-family: "GilroyRegular";
    cursor: pointer;
    color: cornflowerblue; 
    position: absolute;
    z-index: 3;
    top: 4%; 
    right: 0.75rem; 
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 550;
    letter-spacing: 0.1rem;
}

.prev-btn {
    left: 0.75rem; 
}
.next-btn {
    right: 0.75rem; 
}

.prev-btn:hover, .next-btn:hover {
    color: mediumseagreen;
    border: 2px solid mediumseagreen;
}
.sliderViewallBtn:hover { 
    color: blue; 
}

.slides .slideImg {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0.25rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: white;
    width: 100%;
    height: 70%;
    overflow: hidden;
}
.slides .slideImg .carousel, .slides .slideImg .carousel .carousel-inner, .slides .slideImg .carousel .carousel-item {
    width: 100%;
    height: 100%;
    border-radius: 10px;   
}
.slides .slideImg .carousel .carousel-item {
    background-color: gainsboro;
    border-radius: 10px;   
}
.slides .slideImg .carousel .carousel-item .w-100 {
    width: inherit;
    height: inherit;
    border-radius: 10px;   
}

.slides .slideDesc {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: white;
    width: 100%;
    height: 30%;
    padding: 0.25rem 0.5rem;
} 

.jobslides {
    height: 18rem;
}
.jobslides .slideImg img {
    width: 100%; 
    height: 100%;
}
.slides .slideDesc .slideTitle { 
    font-family: "GilroyRegular";
    color: black;
    font-size: 0.9rem;
    font-weight: 700;
    overflow: hidden;
    text-align: center;
}
.slides .slideDesc .slidePrice {
    font-family: "GilroyRegular";
    color: gray;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}
.slides .slideDesc .slideCountry {
    font-family: "GilroyRegular";
    color: cornflowerblue;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}