.contact_box {
    width: 100%;
    padding-top: calc(75px + 10rem);
    padding-bottom: calc(20px + 3rem);
    background: url(../images/logo_contact.webp) no-repeat;
    background-size: 100%;
    background-position-y: calc(10px + 1.5rem);
}

.contact {
    max-width: 1600px;
    width: 90%;
    margin: auto;
}

.p_title {
    font-size: calc(10px + 1.5rem);
    color: #333333;
    font-weight: bold;
    text-align: center;
}

.contact_info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(2px + 2rem);
    margin-top: calc(5px + 3rem);
}

.contact_info_item {
    width: 48.5%;
    padding: calc(10px + 1rem);
    box-shadow: 0 0 calc(2px + 0.5rem) rgb(0 0 0 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(15px + 1rem);
    border-left: calc(1px + 0.1rem) #f7b014 solid;
    transition: .3s;

}

.contact_info_item .icon {
    width: calc(13px + 5rem);
    height: calc(13px + 5rem);
    border-radius: 50%;
    background-color: #ffffff40;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon1 {
    width: calc(10px + 4rem);
    height: calc(10px + 4rem);
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon1 img {
    width: calc(10px + 2rem);
}

.info_text {
    flex: 1;
}

.info_text .p1 {
    font-size: calc(10px + 0.5rem);
    color: #333333;
    border-bottom: 1px #dbdbdb solid;
    padding-bottom: calc(10px + 0.5rem);

}

.info_text .p2 {
    font-size: calc(8px + 0.5rem);
    color: #888888;
    margin-top: calc(10px + 0.5rem);
}

.contact_info_item:hover {
    background-color: #f7b014;
}

.contact_info_item:hover p {
    color: #ffffff;

}

.message_box {
    width: 100%;
    padding-top: calc(20px + 3rem);
    padding-bottom: calc(20px + 4rem);
    background: url(../images/contactForm_bg.webp) no-repeat;
    background-size: cover;
}

.message_main {
    max-width: 1600px;
    width: 90%;
    height: calc(142px + 20rem);
    margin: auto;
    box-shadow: 0 calc(0px + 0.1rem) calc(2px + 0.5rem) rgb(0 0 0 / 10%);
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: calc(5px + 3rem);
}

.message_left {
    width: calc(21px + 28rem);
}

.message_left .p1 {
    font-size: calc(4px + 1.5rem);
    color: #333333;
    font-weight: bold;
}

.message_left .p2 {
    font-size: calc(5px + 0.5rem);
    color: #777777;
    margin-top: calc(10px + 0.5rem);
}

.message_div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(5px + 0.5rem);
    margin-top: calc(10px + 3rem);
}

.message_div div {
    width: max-content;
    padding: calc(3px + 0.25rem) calc(4px + 0.5rem);
    height: calc(4px + 1.5rem);
    background-color: #F6F6F6;
    font-size: calc(5px + 0.5rem);
    color: #777777;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(1px + 0.25rem);
}

.message_from {
    width: calc(140px + 30rem);
}

.message_from label {
    display: none;
}

.message_from .form-group {
    width: 48.25%;
}

.message_from .form-control {
    width: 100% !important;
    height: calc(2px + 3rem) !important;
    background: #FFFFFF;
    border: none;
    outline: medium;

    border-bottom: 1px solid #dbdbdb;
    outline: medium;
    padding: 0 calc(8px + 0.5rem);
}

.message_from .fc-form-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(7px + 1rem);

}

.message_from .form-group:nth-of-type(3) {
    width: 100%;
}

.message_from .form-group:nth-of-type(4) {
    width: 100%;
}

.message_from .form-group:nth-of-type(5) {
    width: 100%;
}

@media screen and (max-width: 1100px){
    .p_title{
        font-size: calc(16px + 1rem);
        line-height: 1.5;
    }
    .contact_info_item{
        width: 100%;
    }
    .info_text .p1{
        font-size: calc(12px + 1rem);
    }
    .info_text .p2{
        font-size: calc(12px + 1rem);
    }
    .message_main{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
        height: auto;
    }
    .message_left{
        width: 100%;
    }
    .message_left .p1{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .message_left .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .message_div div{
        height: calc(28px + 1.5rem);
        font-size: calc(10px + 1rem);
        gap: calc(13px + 0.25rem);
    }
    .message_from .form-control {
        height: calc(26px + 3rem) !important;
    }
    .message_from{
        width: 100%;
    }
    .more a{
        font-size: calc(10px + 1rem) !important;
    }
}