#pk_flex_content .flex_layout.contact_blok{
    max-width: 100%;
    margin-bottom: 60px;
}

.contact-block__section .component__wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    padding: 0 20px;
}

.contact-block__section .component__wrapper .content__left,
.contact-block__section .component__wrapper .content__right{
    width: 100%;
}

.contact-block__section .component__wrapper .content__right{
    padding: 40px 20px;
    background: var(--light-blue);
}

/* Content Left */
.contact-block__section .content__left h2{
    font-size: clamp(32px, 32px + (52 - 32) * ((100vw - 350px) / (1320 - 350)), 52px);
    font-weight: bold;
    color: var(--black);
    line-height: 1;
    margin-bottom: 30px;
}

/* Content Right */
.contact-block__section .content__right h2{
    font-size: clamp(24px, 24px + (44 - 32) * ((100vw - 350px) / (1320 - 350)), 44px);
    font-weight: 600;
    color: var(--black);
    line-height: 110%;
    margin-bottom: 30px;
}

.contact-block__section .content__right p{
    font-size: 20px;
    line-height: 130%;
} 

.contact-block__section .content__right p a{
    text-decoration: underline;
} 

.contact-block__section .content__right .btn-primary{
    margin-top: 52px;
    line-height: normal;
    display: flex;
    gap: 8px;
    align-items: flex-end;
}



/* form styling */
.contact-block__section .content__left .gform_wrapper .gform_heading{
   display: none;
}
.contact-block__section .content__left .gform_wrapper form *{
    background: transparent;
}

.contact-block__section .content__left .gform_wrapper form input, 
.contact-block__section .content__left .gform_wrapper form textarea{
    font-size: 20px;
    padding: 16px 25px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0;
}

.contact-block__section .content__left .gform_wrapper form input:focus-visible, 
.contact-block__section .content__left .gform_wrapper form textarea:focus-visible{
    border: 1px solid var(--pink);
}

.contact-block__section .content__left .gform_wrapper form input::placeholder, 
.contact-block__section .content__left .gform_wrapper form textarea::placeholder{
    color: rgba(0, 0, 0, 0.6)
}

.contact-block__section .content__left form  .gform-footer{
    margin: 0;
    margin-top: 28px;
    padding: 0;
}
.contact-block__section .content__left form .ginput_container_consent{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-block__section .content__left form .ginput_container_consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 0;
    accent-color: var(--pink);
    opacity: 0;
    position: absolute;
  }

  .contact-block__section .content__left form .ginput_container_consent label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 20px;
    height: 20px;
    background-color: #e6007e;
    border-radius: 0;
  }

  .contact-block__section .content__left form .ginput_container_consent input[type="checkbox"]:checked + label::before {
    background-image: url('./check-mark.png'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20x;
  }

  .contact-block__section .content__left form .ginput_container_consent .gform-field-label{
    margin-bottom: 0;
    padding-left: 25px;
    font-size: 20px;
    line-height: 1;
  }
  

.contact-block__section .content__left form  .gform-footer .gform_button{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    width: fit-content;
    padding: 10px 20px;
    margin: 0;
    border-color: var(--green);
    border-radius: 0;
    background: var(--green);
    transition-delay: 150ms;
}

@media screen and (min-width:768px){
}

@media screen and (min-width: 990px){
    #pk_flex_content .flex_layout.contact_blok{
        margin-bottom: 120px;
    }

    .contact-block__section .component__wrapper{
        display: grid;
        gap: 65px;
    }

    .contact-block__section .component__wrapper .content__left{
        grid-column: 2 / 8;
    }
    .contact-block__section .component__wrapper .content__right{
        padding: 100px 40px;
        grid-column: 8 / 13;
    }
}

@media screen and (min-width: 1199px){
    .contact-block__section .component__wrapper .content__right{
        padding: 100px 55px;
        grid-column: 8 / 12;
    }
}

@media screen and (min-width: 1401px){
}

@media screen and (max-width: 1400px){
}