/*
 Theme Name:   Blocksy Child
 Theme URI:    https://creativethemes.com/blocksy/
 Description:  Child theme for the Blocksy theme
 Template:     blocksy
 Version:      1.0.0
*/

/* You can add your custom CSS below */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

@font-face {
    font-family: 'Radikal Bold';
    src: url('./assets/fonts/radikal_bold-webfont.woff2') format('woff2'),
        url('./assets/fonts/radikal_bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


.RadikalBold {
    font-family: "Radikal Bold";
}


.account-input .form-group input.error {
    background-color: #ff000026 !important;
}


/* contact us block */

.contact-form-row {
    padding: 60px 20px !important;
}

.custom-form form .field-row{
    display: flex;
    gap: 20px;
    margin: 0 0 20px;
}
.custom-form form .field-col-50{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.custom-form form .field-col-50 label{
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #000000;
    display: inline-block;
    margin: 0 0 8px;
    text-transform: uppercase;
    width: 100%;
}
.custom-form form .field-col-50 span{
    display: inline-block;
    width: 100%;
}
.custom-form form .field-col-50 input{
    background-color: rgba(0, 0, 0, 0.03);
    border: none;
    border-radius: 4px;
    color: #000000;
    outline: none;
    height: 48px;
    padding: 12px;
    width: 100%;
}
.custom-form form .field-col-50 input::placeholder{
    color: rgba(0, 0, 0, 0.35);
}
.custom-form form .field-col-100{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.custom-form form .field-col-100 label{
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    display: inline-block;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
    text-transform: uppercase;
    width: 100%;
}
.custom-form form .field-col-100 span{
    display: inline-block;
    width: 100%;
}
.custom-form form .field-col-100 textarea{
    background-color: rgba(0, 0, 0, 0.03);
    border: none;
    border-radius: 4px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.5px;
    outline: none;
    height: 120px;
    padding: 12px;
    resize: none;
    width: 100%;
}
.custom-form form .field-col-100 textarea::placeholder{
    color: rgba(0, 0, 0, 0.35);
}
.custom-form form .field-btn-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    width: 100%;
}
.custom-form form .field-btn-inner p{
    font-family: "Chivo", sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: rgba(0, 0, 0, 0.35);
}
.custom-form form .field-btn-inner input[type="submit"]{
    background-color: #000000;
    background-image: url(assets/images/hero-arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: 80% center;
    border: none;
    border-radius: 30px;
    color: #FFFFFF;
    cursor: pointer;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 42px 12px 26px;
    transition: all 0.5s ease-in-out;
}
.custom-form form .field-btn-inner input[type="submit"]:hover,
.custom-form form .field-btn-inner input[type="submit"]:focus{
    background-color: #853275;
}
.custom-form form .field-btn-inner .wpcf7-spinner{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.custom-form form .wpcf7-not-valid-tip {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: flex !important;
    margin: 6px 0 0;
}
.custom-form form .wpcf7-response-output{
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: none;
    line-height: 1;
    display: flex;
    margin: 0;
    padding: 10px;
    padding-left: 0px;
}

@media only screen and (max-width: 1280px) {
    .contact-form-row {
        gap: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .contact-form-row {
        flex-direction: column;
    }

    .contact-form-row .contact-content,
    .contact-form-row .contact-form-sec {
        flex-basis: 100% !important;
    }

    .contact-form-row .contact-content .wp-block-group {
        width: 100%;
    }
}

@media only screen and (max-width: 768px){
    .contact-form-row{
        padding: 60px 20px !important;
    }
}

@media only screen and (max-width: 575px){
    .contact-form-row .contact-form-sec > .wp-block-group{
        padding: 20px !important;
    }
    .contact-form-row .contact-content .address-content-row{
        flex-direction: column;
        align-items: start;
    }
    .custom-form form .field-row{
        flex-direction: column;
        gap: 16px;
    }
    .custom-form form .field-col-50{
        width: 100%;
    }
}



/* End contact us block */