.moudle-contact{
    background-image: url(../images/bg2.jpg);
    background-size: auto;
    background-repeat: repeat;
    background-position: top center;
}

.contact-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0px;
}

.contact-text p{
    text-align: center;
    font-size: var(--font-18);
}

.cotact-groups{
    display: flex;
    justify-content: space-between;
}

.cotact-groups .cotact-group{
    width: calc(50% - 24px);
    font-size: var(--font-18);
}

.moudle-contact .form-group{
    margin-top: 15px;
}

.moudle-contact .form-group:nth-child(1){
    margin-top: 0;
}

select,input,textarea{
    width: 100%;
    border: none !important;
    height: 32px;
    padding: 3px 8px;
}

textarea{
    height:unset;
}

.form-label{
    margin-bottom: 5px;
}

.form-label span{
    margin-left: 3px
}

.contact-infos{
    padding:32px 48px;
    background-color: #fff;
    border-radius: 32px;
    border: 1px solid var(--main-color);
}

.info-item{
    display: flex;
    margin-top: 5px;
}

.info-item a{
    color: #333;
}

.info-item a:hover{
    color: var(--main-color);
}


.info-ite:nth-child(1){
    margin-top: 0;
}

.info-item .info-item-title{
    width: 100px;
}

.info-item .info-item-content{
    width: calc(100% - 100px);
}

.j-c{
    display: flex;
    justify-content: center;
}

.info-item img{
    width: 100%;
    max-width: 300px;
    height: auto;
}

.contact-info .title{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: var(--font-20);
    font-weight: var(--font-bolder-600);
}

.inbanner-title{
    display: flex;
    align-items: center;
}

.inbanner-title img{
    width: 85px;
}

.inbanner-title span{
    padding-bottom: 8px;
}

.submit-btn{
    width: max-content;
    padding: 5px 48px;
    background-color: var(--main-color);
    color: #fff;
    border: none !important;
    margin-top: 16px;
    transition: all .4s ease-in-out;
}

.submit-btn:hover{
    background-color: var(--dark-main-color);
    transition: all .4s ease-in-out;
}

.form-control{
    min-height: 38px;
    background-color: #f9f9f9f9;
    border: none;
    border: 1px solid rgb(223, 223, 223) !important;
}

.form-control:focus{
    background-color: #f1f1f1f1;
    box-shadow: none;
}

.info-item-content{
    word-break: break-all;
}

@media screen and (max-width:1280px) {
    .cotact-groups {
        padding: 0 64px;
    }
}

@media screen and (max-width:991px) {
    cotact-group{
        flex-wrap: wrap;
    }

    .cotact-groups .cotact-group{
        width: 100%;
        margin-top: 32px;
    }

    .cotact-groups .cotact-group:nth-child(1){
        margin-top: 0;
    }

    .contact-text{
        padding: 16px 8px;
    }
}

@media screen and (max-width:768px) {
    .cotact-groups {
        padding: 0 16px;
    }

    .inbanner-title{
        left: 16px;
        font-size: var(--font-28);
    }

    .inbanner-title img{
        width: 55px;
        margin-right: 8px;
    }

    .cotact-group {
        font-size: var(--font-18);
    }

    .contact-infos{
        padding: 24px 16px;
    }

}

@media screen and (max-width:600px) {
    .inbanner-title{
        font-size: var(--font-20);
    }

    .inbanner-title img{
        width: 32px;
    }
}



