.contact-form-section{
    margin-bottom: 80px;
}
.contactform-title{
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    color: var(--primary);

    margin-bottom: 20px;
}

::-webkit-input-placeholder {
    opacity: 1;
}
::-moz-placeholder {
    opacity: 1;
}
:-ms-input-placeholder {
    opacity: 1;
}
:-moz-placeholder {
    opacity: 1;
}
.contact-form-box label{
    width: 100%;
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 10px;
    margin-left: 20px;
}
.contact-form-box p{
    max-width: initial;
}
.customselect{
    margin-bottom: 25px;
}
.customselect select {
    background: #FFFFFF;
    border: 1px solid #FAFAFA;
    font-family: var(--font);
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    color: #343434;
    -webkit-appearance: button;
    appearance: button;
    outline: none;
    width: 100%;
    padding: 12px 50px 12px 20px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #cacaca;
}
.customselect span{
    display: block;
}
.customselect span::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    background-color: var(--secondary);
    pointer-events: none;
}
.customselect span::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    background: url('../../../assets/images/arrow-select.svg') no-repeat center;
    pointer-events: none;
}

.customselect:hover::before {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.2);
}


.contact-form-box input{
    position: relative;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #FAFAFA;
    font-family: var(--font);
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    color: #343434;
    padding: 12px 20px;
    box-sizing: border-box;
    margin-bottom: 25px;
    border: 1px solid #cacaca;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.contact-form-box textarea{
    position: relative;
    width: 100%;
    font-family: var(--font);
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    color: #343434;
    background: #FFFFFF;
    border: 1px solid #FAFAFA;
    color: #343A74;
    padding: 12px 20px;
    display: block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    box-sizing: border-box;
    resize: none;
    box-sizing: border-box;
    margin-bottom: 25px;
    border: 1px solid #cacaca;
}
.customselect select:focus,
.contact-form-box textarea:focus,
.contact-form-box input:focus{
    border: 1px solid #6C1F6A;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.contact-form-box input[type=submit]{
    font-weight: 700;
    font-size: 11px;
    line-height: 15px;
    color: var(--primary);
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 4px solid #EEE7E7;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    cursor: pointer;
    max-width: 80px;
    padding: 12px 0;
    float: right;
}
.contact-form-box input[type=submit]:hover{
    color: #BC1E21;
    border-bottom: 4px solid var(--primary);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
@media only screen and (max-width: 1024px) {
    .contact-form-section {
        max-width: 100%;
    }
    .contactform-title{
        font-size: 3.5rem;
        line-height: 3.4rem;
    }
}