/* HERO */
.hero{ 
    background: var(--color-scheme-1-bg);
    display: flex;
    align-items: center;
    min-height: 95vh;
}
.hero-inner{ 
    padding: 2rem 0; 
}
.hero-title{
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: var(--color-scheme-1-text);
    /* responsive font-sizing with clamp */
    font-size: clamp(2rem, 6vw, 5.2rem);
    letter-spacing: .5px;
}
.hero-sub{
    font-family: Raleway;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-scheme-1-text);
}
.hero-img{
    position: relative;
    max-height: 80vh;
    object-fit: contain;
    display:block;
}
.hero-video {
    position: relative;
    max-height: 80vh;
    object-fit: contain;
    display:block;
    filter: blur(0);
}
.btn-report, .btn-contact-us{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    border: 1px solid var(--dodger);
    border-radius: 0.5rem;
    color: var(--color-white);
}
.btn-learn-more{
    border: 1px solid var(--neutral-15);
    border-radius: 0.5rem;
    color: var(--color-scheme-1-text);
    background: transparent;
}
.btn-learn-more:hover{
    color: var(--color-scheme-1-text-muted) !important;
}


/* Solution / cards */
.card-title{
    font-family: Nunito;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: .6rem;
    color: var(--color-scheme-1-text);
}
.card-img-fit{
    width: 100%;
    height: auto;
    display: block;
}
.card-text{
    font-size: 1.125rem;
    color: var(--color-scheme-1-text);
}
.link-btn{
    display:inline-flex; 
    align-items:center; 
    gap:.5rem;
    font-size: 1rem;
    text-decoration:none; 
    font-weight:500;
    color: var(--color-scheme-1-text);
    margin-top: .75rem;
    transition: ease-in 0.1s all;
}
.link-btn > .bi-chevron-right {
    transition: ease-out 0.1s all;
}
.link-btn:hover > .bi-chevron-right {
    transform: translate(0.6rem, 0);
    transition: ease-in 0.2s all;
}
.no-bullets{
    list-style: none;
    padding-left: 1rem;
    color: var(--color-scheme-1-text);
}


/* What we service section */
.what-we-service-card{
    overflow: hidden;
    border: 3px solid var(--color-card-border);
    border-radius: 0.8rem;
    background-color: var(--color-scheme-2-bg);
}
.what-we-service-card .card-body{
    padding: 1.25rem;
}
.what-we-service-image{
    width: 50px;
    height: auto;
    filter: var(--image-filter);
}


/* Advantages section */
.adventages-card{
    overflow: hidden;
    border: 3px solid var(--color-card-border);
    border-radius: 0.8rem;
    background-color: var(--color-scheme-1-bg);
}
.adventages-card .card-body{
    padding: 1.25rem;
}
.adventage-icon{
    width: 50px;
    height: auto;
    filter: var(--image-filter);
}
.advantage-img {
    max-width: 300px;
    height: auto;
}


/* Support section */
.support-card{ background: transparent; border: none; }
.support-icon{ width: 50px; height: auto; }


/* Modals */
.modal{
    font-family: Raleway;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-scheme-1-text);
    position: fixed !important;
    z-index: 2147483647 !important;
}
.modal-dialog, .modal-backdrop.show {
    z-index: 2147483646 !important;
}
.modal-header{
    color: var(--color-scheme-1-text);
    border-bottom: 0px;
    background: linear-gradient(135deg, var(--dodger), var(--mountain)) bottom / 100% 2px no-repeat;
}
.modal-footer{
    border-top: 0px;
}
.btn-send{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    border: 1px solid var(--dodger);
    border-radius: 0.5rem;
    color: var(--color-white);
}
.check-input-hide{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    opacity: 0%;
    transform: translate(0, 150%);
    z-index: -1;
    transition: transform 800ms, opacity 400ms, z-index 800ms;
}
.check-input{
    opacity: 100%;
    transform: translate(0, 15%);
    z-index: 0;
    transition: transform 800ms, opacity 400ms, z-index 800ms;
}
label {
    color: var(--color-scheme-1-text);
    transition: all 500ms ease-in-out;
}


/* Extra small devices (phones, portrait) */
@media (max-width: 575.98px) {
    .hero{
        padding-top: 1rem;
    }
}

/* Small devices (phones, landscape) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* CSS for larger phones / small tablets */
}

/* Only for medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
    
}

/* Large devices (desktops) */
@media (min-width: 992px) {
    /* CSS for desktops */
}