@import url('global.css');

/* companyD.css */
.container {
    display: flex;
    flex-direction: column;
    padding: 50px;
    background-color: var(--oth1-color);
}

.companyD_b {
    display: flex;
    justify-content: flex-end; /* Aligns content to the right */
    align-items: center; /* Vertically centers content if needed */
}

.cancel_btn {
    display: flex;
    justify-content: center;
    margin: 0px;
    border: 0px;
    
    font-family: 'TypoRoundBold';
    font-size: var(--fontS18);
    color: var(--white-color);

    padding: 5px 20px;
    border-radius: 20px;
    background-color: var(--oth2-color);

    cursor: pointer;
}

.companyD {
    display: flex;
    flex-direction: column;
}

.F1, .F2, .F3, .F4, .F5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px;
    border: 0px;
    padding: 20px 50px;
}

.companyLOGO_round_c {
    height: 120px;
}

.F3_WORD1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px;
    border: 0px;
    padding: 5px 0px;
}

.F3_word_c {
    text-align: justify;
    margin: 0px;
    border: 0px;
    padding: 0px;

    font-family: TypoRoundBold;
    font-size: var(--fontS24);
    color: var(--black-color);

    height: auto;
    width: fit-content;
}

.F2_word_c {
    text-align: justify;
    margin: 0px;
    border: 0px;
    padding: 0px;

    font-family: TypoRoundLight;
    font-size: var(--fontS24);
    color: var(--black-color);

    height: auto;
    width: fit-content;
}

.F4_wordList {
    padding: 0px 20px;
}

.F5 {
    justify-content: left;
    background-color: var(--oth2-color);
    border-radius: 10px;
    gap: 10px;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-content: Left;
    gap: 10px;
}

.contact-item1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call_btn {
    background-color: var(--oth1-color);
    border-radius: 10px;
    padding: 5px 20px;
    height: auto;
    width: fit-content;

    cursor: pointer;
}

.icon_oth1 {
    height: 20px;
    align-items: center;
}

.addressVAR, .emailVAR, .phoneVAR {
    font-family: TypoRoundBold;
    font-size: var(--fontS18);
    color: var(--white-color);
}

.phoneVAR {
    color: var(--oth2-color);
}

.social {
    height: 30px;
    cursor: pointer;
}


/* Small screens (Mobile) */
@media screen and (max-width: 768px) {
    .cancel_btn {
        font-size: var(--fontS14);
    }
    .F3_word_c {
        font-size: var(--fontS18);
    }
    .F2_word_c {
        font-size: var(--fontS18);
    }
    .companyLOGO_round_c {
        height: 80px;
    }
    .F1, .F2, .F3, .F4 {
        padding: 20px 20px;
    }
    .F5 {
        padding: 20px;
    }
    .addressVAR, .emailVAR, .phoneVAR {
        font-size: var(--fontS14);
    }
}
@media screen and (max-width: 450px) {
    .container {
        padding: 50px 20px;
    }
    .F1, .F2, .F3, .F4 {
        padding: 20px 10px;
    }
}