/* Wnd Style : Contact Page*/
.contact-page .main-content-wrap .main-content-3 .content-text {
    height: inherit !important;
    padding-left: 0px;
    width: 100% !important;
}

.contact-page .main-content-3 .content-text.contact-text .address-list{
   display: flex;
}
.contact-page .main-content-3 .content-text.contact-text .address-list .address-item{
    width: 50%;
}
.contact-page .main-content-3 .content-text.contact-text .address-list .address-item{ 
    white-space: nowrap;
}
.contact-page .main-content-3 .content-text.contact-text .address-list .address-item:last-child {
    padding-left: 20px;
}

.contact-page .main-content-3 .content-text.contact-text .address-item-title {
     font-size: 16px;
     line-height: 37.5px;
     font-family: "IBMPlexSansLight";
     font-weight: 300;
     text-transform: uppercase;
}
.contact-page .main-content-3 .content-text.contact-text p {
    font-size: 16px;
    font-weight: 300;
}
.contact-page .contact-form {
    margin-top: 60px;
    padding-bottom: 100px;
}
.contact-page .contact-form-title {
    display: inline-block;
    margin-bottom: 44px;
}

.contact-page .contact-form  .form-group {
    margin-bottom: 25px;
}


.contact-page .floating-label {
    position: relative;
}

.contact-page .floating-label input,
.contact-page .floating-label textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #000000;
    background: transparent;
    font-size: 18px;
    line-height: 28px;
    font-family: "IBMPlexSansLight";
    color: #000000;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}



.contact-page .floating-label label {
    position: absolute;
    left: 0;
    top: 5px;
    color: #000000;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 300;
}


.contact-page .floating-label.has-value label,
.contact-page .floating-label input:focus + label,
.contact-page .floating-label input:valid + label,
.contact-page .floating-label textarea:focus + label,
.contact-page .floating-label textarea:valid + label {
    top: -20px;
    font-size: 15px;
    color: #000000;
}

.contact-page .floating-label textarea {
    min-height: auto;
    resize: vertical;
    padding: 10px 0;
    height: 30px;
}


/* Custom Select Styles */
.contact-page .custom-select-wrapper {
    position: relative;
}

.contact-page .custom-select {
    position: relative;
    width: 100%;
}
.contact-page .floating-label .custom-select-wrapper label {
    top: -25px;
}
.contact-page .form-group.has-select .floating-label  {
    padding-top: 28px;
}
.contact-page .form-group.has-select.has-value .floating-label {
    padding-top: 15px;
}

.contact-page .select-trigger {
    width: 100%;
    padding: 10px 0;
    border: none;
    font-size: 18px;
    line-height: 28px;
    font-family: "IBMPlexSansLight";
    font-weight: 300;
    border-bottom: 1px solid #000000;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.3s;
    position: relative;

}

.contact-page .custom-select.active .select-trigger {
    border-bottom-color: #000000;
}

.contact-page .select-trigger .select-value {
    color: #000000;
    font-size: 18px;
    line-height: 28px;
    font-family: "IBMPlexSansLight";
    font-weight: 300;
    transition: all 0.3s ease;
}

.contact-page .custom-select.has-value .select-trigger .select-value,
.contact-page .custom-select.active .select-trigger .select-value {
    color: #000000;
}

.contact-page .select-trigger svg {
    transition: transform 0.3s ease;
    position: absolute;
    right: 10px;
    top: -10px;
 
}

.contact-page .custom-select.active .select-trigger svg {
    transform: rotate(180deg);
}

.contact-page .select-options {
    background: white;
    list-style: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden; 
    pointer-events: none; 
    transition: all 0.3s ease;
    border-bottom: 1px solid #000000;
}

.contact-page .custom-select.active .select-options {
    max-height: fit-content;
    opacity: 1;
    margin-bottom: 10px;
    pointer-events: auto;
}
.contact-page .custom-select.active .select-trigger {
    border-bottom-color: #ffffff;
}
.contact-page .select-options li {
    padding: 10px 0px;
    cursor: pointer;
    font-size: 15px;
    line-height: 28px;
    font-family: "IBMPlexSansLight";
    font-weight: 300;
    color: #000000;
    transition: background-color 0.2s;
    
}

.contact-page .select-options li:hover {
    background-color: #f5f5f5;
}

/* Label for select */
.contact-page .custom-select-wrapper .floating-label label {
    top: 16px;
    transition: all 0.3s ease;
}


.contact-page .custom-select.has-value + label {
    top: -25px !important;
    font-size: 15px !important;
    color: #000000 !important;

}
.contact-page .custom-select.has-value svg {
    top: 20px;
}


.contact-page .form-submit {
    display: flex;
    justify-content: flex-end;
}

.contact-page .form-submit button {
    width: fit-content;
    display: inline-block;
    border: none;
    font-size: 15px;
    line-height: 37.5px;
    font-family: "IBMPlexSansLight";
    font-weight: 300;
    color: #000000;
    background: transparent;
    text-align: center;
    margin: initial;
    cursor: pointer;
}

/* Inline validation */
.contact-page .form-group.has-error .floating-label input,
.contact-page .form-group.has-error .floating-label textarea,
.contact-page .form-group.has-error .select-trigger {
    border-bottom-color: #cc3333;
}

/* Form status message */
.contact-page .form-status {
    margin-top: -24px;
    margin-bottom: 24px;
    font-size: 14px;
    font-family: "IBMPlexSansLight";
    font-weight: 300;
}
.contact-page .form-status.ok { color: #207227; }
.contact-page .form-status.err { color: #cc3333; }
.contact-page .form-group .field-error {
    color: #cc3333;
    font-size: 12px;
    font-family: "IBMPlexSansLight";
    font-weight: 300;
    line-height: 18px;
    margin-top: 6px;
}

@media screen and (max-width: 1600px) {
    .contact-page .main-content-3 .content-text.contact-text {
        padding-left: 0px;
    }
}

@media screen and (max-width: 1400px) {
    .contact-page .main-content-3 .content-text.contact-text .address-list{
        flex-direction: column;
     }
     .contact-page .main-content-3 .content-text.contact-text .address-list .address-item {
        width: 100%;
     }
     .contact-page .main-content-3 .content-text.contact-text .address-list .address-item:last-child {
        padding-left: 0px;
     }
     .contact-page .main-content-3 .content-text.contact-text .address-list .address-item:first-child {
        margin-bottom: 20px;
     }
}

@media screen and (max-width: 991px) {
    .contact-page .main-content-wrap .main-content-3 {
        flex-direction: column;
    }
    .contact-page .contact-form  {
      padding-bottom: 0px ;
    }
    .contact-page .main-content-wrap .main-content-3 .content-text {
       margin: 0 auto;
       width: 100% !important;
       padding-left: 50px !important;
       padding-right: 50px !important;
        height: fit-content !important;
    }
    .contact-page .main-content-wrap .main-content-3 .contact-social {
       display: block;
       position: relative;
       left: 0;
       bottom: 0;
       margin: 0 ;
       padding-left: 50px;
    }
}

@media screen and (max-width: 576px) {
    .contact-page .main-content-wrap .main-content-3 .content-text {
        width: 100%;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .contact-page .main-content-wrap .main-content-3 .contact-social { 
        padding-left: 20px;
    }
}
