.contactFirst{
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactFirst::before{
    content: '';
    position: absolute;
    height: 50%;
    width: 100%;
    background-image: url('/assets/images/all\ images/t1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.5);
}

.insideContactFirst{
    height: 80%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.insideContactFirst h2 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    align-self: center;
}

.navigate a, .navigate p {
    color: #fff;
    font-size: 14px;
    margin: 0.8rem 0;
}

.contactSecond{
    padding: 4rem  0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insideContactSecond {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.insideContactSecondCard{
    padding: 2rem;
    height: 100%;
    width: 70%;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #eff4f8;
}

.insideContactSecondCard h3 {
    font-size: 26px;
    font-weight: 500;
    align-self: flex-start;
    margin: 1rem 0;
    color: #000000e6;
}

.icsc {
    width: 30%;
    background-color: #fff;
    border: 1px solid #00000017;
}

.icscCard {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.contactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35rem;
}

.contactForm input {
    outline: none;
    border: none;
    height: 3rem;
    margin: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 16px;
    border-radius: 0.4rem;
}

.contactForm button {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: #5d9913;
    padding: 1rem;
    width: 100%;
    outline: none;
    border: 1px solid #5d9913;
    cursor: pointer;
    margin-top: 1rem;
}

.qc {
    font-size: 30px !important;
    font-weight: 600 !important;
}

.icsc p{
    font-size: 16px;
    line-height: 24px;
    margin-top: 0.4rem;
    margin-bottom: 1rem;
}

.icscCard i {
    color: #fff;
    font-size: 20px;
    margin: 0.5rem;
    background: #5d9913;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    padding: 1rem;
}

.icscCard p {
    font-size: 18px;
    font-weight: 500;
    color: #000000d9;
}

@media screen and (max-width:1030px){
    .insideContactSecond {
        flex-direction: column;
        align-items: center;
    }

    .insideContactSecondCard {
        width: 90%;
    }

    .icsc {
        width: 90%;
    }

}

@media screen and (max-width:765px){
    .contactForm {
        width: 25rem;
    }
    .contactForm button {
        font-size: 18px;
        padding: 0.8rem;
    }
    .qc {
        font-size: 26px !important;
    }
    .icsc p {
        font-size: 15px;
        line-height: 22px;
    }
}

@media screen and (max-width:550px){
    .insideContactFirst h2 {
        font-size: 30px;
    }
    .contactForm input {
        font-size: 14px;
    }
    .contactForm {
        width: 18rem;
    }
    .insideContactSecondCard {
        width: 100%;
    }
    .contactForm {
        width: 15rem;
    }
}

