#contact-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 50px 20px;
    padding-top: 0px;
    background: #F5F5F5;
}

.company-info {
    display: flex;
    justify-content: space-around;
    align-content: space-between;
    gap: 40px;
    padding-bottom: 144px;
    width: 100%;
    max-width: 1440px;
    color: #0e0e0e;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin: 0 auto;
}

.company-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    align-items: center;
}

.company-container > p:nth-of-type(2) {
    color: #0e0e0e;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.company-container > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contactus-form {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 910px;
    gap: 40px;
}

.contactus-title {
    padding-bottom: 80px;
    font-size: 95px;
    color: #0e0e0e;
    font-weight: 700;
}

.contactus-form-title {
    color: #0e0e0e;
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
}

.input-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #0E0E0E;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.textField {
    box-sizing: border-box;
    width: 100%;
    padding: 14px 21px;
    border: 1px solid #c5c5c5;
    background: #fff;
    color: #0E0E0E;
    font-weight: 300;
}

.checkBox {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 144px;
    color: #0E0E0E;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.checkBox > input {
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    border: 1px solid #C5C5C5;
    background: #FFF;
    accent-color: #0e0e0e;
}

.projectExplanation {
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    padding: 9px 12px;
    border: 1px solid #c5c5c5;
    background: #fff;
    color: #0E0E0E;
    font-weight: 300;
    resize: none;
}

.projectExplanation::-webkit-scrollbar {
    display: none;
}

.selectField {
    box-sizing: border-box;
    width: 100%;
    padding: 14px 21px;
    border: 1px solid #c5c5c5;
    background: #fff;
    color: #0E0E0E;
    font-weight: 300;
    appearance: none;
}

.month-box {
    display: flex;
    color: #0E0E0E;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    gap: 20px;
}

.month-box > div {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.buttonBox {
    box-sizing: border-box;
    width: 100%;
}

.submit-button {
    width: 100%;
    padding: 15px;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    background: #0e0e0e;
}

#contact-layout > p:nth-last-of-type(1) {
    padding-top: 40px;
    color: #0E0E0E;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px; 
}

@media (max-width: 1440px) {

    .company-info {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 40px;
        
    }    
}

@media (max-width: 910px) {
    .contactus-title {
        font-size: 58px;
        padding-bottom: 20px;
    }

    .contactus-form-title {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .contactus-form {
        gap: 15px;
    }

    .contactus-title {
        font-size: 24px;
        padding-bottom: 0px;
    }

    .contactus-form-title {
        font-size: 18px;
        line-height: 30px;
    }

    .company-container {
        font-size: 14px;
        gap: 10px;
        text-align: unset;
        align-items: unset;
    }

    .company-info {
        gap: 20px;
        padding-bottom: 30px;
    }

    .company-container > p:nth-of-type(2) {
        font-size: 16px;
    }

    .input-box {
        font-size: 16px;
        gap: 10px;
    }

    .textField {
        font-size: 14px;
        padding: 14px 12px;
    }

    .month-box input {
        padding: 14px 7px;
    }

    .checkBox {
        margin-bottom: 0px;
        font-size: 14px;
        gap: 10px;
    }

    .checkBox > input {
        width: 18px;
        height: 18px;
    }

    .submit-button {
        font-size: 16px;
    }

    #contact-layout > p:nth-last-of-type(1) {
        font-size: 16px;
    }

    .month-box {
        font-size: 16px !important;
    }

    .month-box > div {
        gap: 10px !important;
    }

    .company-container > div {
        gap: 10px !important;
    }

    .company-container > div img {
        width: 18px;
    }

    .projectExplanation {
        font-size: 14px;
    }
}