@import url('styles.css');

.hero-section{
    background: var(--primary-5);
}

.hero-section h1{
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-100);
}

.hero-section p{
    font-size: 0.9rem;
    font-weight: 500;
    color: #2C3A37;
}

.hero-section .btn-1{
    font-weight: 600;
    color: var(--primary-100);
    border-color: var(--primary-100);
    border: solid 1px;
    padding: 0.75rem 1rem;
    margin-right: 10px;
}

.hero-section .btn-1:hover{
    color: white;
    background: var(--primary-100);
}

.hero-section .btn-2{
    font-weight: 600;
    color: var(--primary-100);
    background: var(--secondary-100);
    padding: 0.75rem 1rem;
    border: solid 1px var(--secondary-100);
}

.hero-section .btn-2:hover{
    color: var(--primary-100);
    background: var(--secondary-hover-100);
}

.modal-header{
    border: none;
}

.modal-backdrop {
    background-color: #000000!important;
}

.modal .img-container{
    overflow: hidden;
    object-fit: cover;
    border-radius: 5px;
}


.modal .text-small{
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-grey);
}

.founders h1{
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-100);
}

.founders h5{
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-100);
}

.founders p{
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.founders a{
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-grey);
}

/* .team .card{
    transition: all 0.2s ease-in-out;
}

.team .card:hover{
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.103);
    transform: scale(1.02);
} */

.team h1{
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-100);
}

.team h5{
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-100);
}

.team p{
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.team a{
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.team .card-img-top{
    overflow: hidden;
    width: 100%;
    object-fit: cover;
}
.modal .modal-img{
    overflow: hidden;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.stats-section .item{
    background: var(--primary-100);
    border-radius: 10px;
}

.stats-section .item{
    transition: all 0.2s ease-in-out;
}

.stats-section .item:hover{
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.473);
    transform: scale(1.02);
}

.stats-section h1{
    font-size: 2rem;
    color: white;
}

.stats-section h3{
    font-size: 1rem;
    color: var(--secondary-100);
}


.stats-section p{
    font-size: 0.9rem;
    color: var(--black-25);
}

.journey{
    background-color: var(--primary-5);
}

.journey h1{
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-100);
}

.journey img{
    width: 100%;
}


/* contact-us-section-start */
.contact-us{
    background: var(--primary-100);
}

.contact-us h1{
    font-weight: 700;
    font-size: 2rem;
    color: var(--secondary-100);
}

.contact-us p{
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--black-5);
    opacity: 80%;
}

.contact-us a{
    width: 50%;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-100);
    background: var(--secondary-100);
    padding: 0.75rem 2rem;
    border: none!important;
    border-radius: 5px;
}

.contact-us a:hover{
    color: var(--primary-100);
    background: var(--secondary-hover-100);
}
/* contact-us-section-end */

@media only screen and (max-width: 1000px) {
    .stats-section .item{
       min-width: 30vw; 
    }

    .featured-in img{
        width: 20vw;
    }
}

@media only screen and (max-width: 580px) {
    .stats-section .item{
        margin:10px;
        padding: 10px;
    }
    .stats-section h1{
        font-size: 1.5rem;
    }
    .stats-section p{
        font-size: 0.8rem;
    }

    .featured-in h1{
        font-size: 1.5rem;
    }
    .featured-in img{
        width: 25vw;
    }
}