.client-carousel .slick-slide > div {
    padding-left: 10px;
    padding-right: 10px;
}

.client-carousel .client-carousel__item {
    border: 1px solid #bd9a6e;
    border-radius: 0 0 0 40px;
    height: 341px;
    align-items: flex-start;
    background-color: rgba(255,255,255,0.5);
    transition: background-color 0.5s, border-color 0.5s;
}

.client-carousel .client-carousel__item-inner{
    display: flex;
    flex-direction: column;
    align-items: center;

    transition: transform 0.5s;
    height: 341px;

    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
}

.client-carousel .client-carousel__item:hover .client-carousel__item-inner{
    transform: translateY(5%);
}

.client-carousel .title{
    color: #bd9a6e;
    text-transform: uppercase;
    font-family: 'Cormorant Bold',Helvetica,Arial,Lucida,sans-serif;
    padding-bottom: 5px;
    text-align: center;
    line-height: 1.3;
}

.client-carousel .title::before{
    display: block;
    content: '';
    height: 2px;
    width: 88px;
    background-color: #BD9A6E;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.client-carousel .client-carousel__image{
    margin-bottom: 14px;
}

.client-carousel .client-carousel__image img{
    height: 93px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.client-carousel .description{
    color: #707070;
    text-align: center;
    font-size: 14px !important;
    line-height: 1.5;
    transition: color 0.5s;
}

.client-carousel .client-carousel__item:hover{
    transition: background-color 0.5s, border-color 0.5s;
    background-color: #1e1e1e;
    border-color: #1e1e1e;
}

.client-carousel .client-carousel__item:hover .description{
    color: #D7D7D7;
}

.contact-form {
    position: relative;
}

.contact-form .contact-form__column{
    display: flex;
    gap: 20px;
}

.contact-form .contact-form__column > * {
    flex: 1;
}

.contact-form .contact-form__group{
    margin-bottom: 20px;
}

.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form input[type="tel"], 
.contact-form input.wpcf7-intl_tel,
.contact-form .contact-form__phone_with_code,
.contact-form textarea, 
.contact-form select {
  background-color: transparent !important;
  border: 1px solid #878787 !important;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  font-size: 16px;
  padding-bottom: 10px;
  height: 74px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.contact-form .contact-form__phone_with_code{
    display: flex;
    align-items: center;
}

.contact-form .contact-form__phone_with_code select,
.contact-form .contact-form__phone_with_code input[type="tel"] {
    padding: 0;
    height: auto;
    width: 100%;
    border: none !important;
}

.contact-form .contact-form__phone_with_code input {
    border: none;
}

.contact-form textarea {
    height: auto;
}

.contact-form .wpcf7-checkbox label{
    display: flex;
    align-items: center;
}

.contact-form .wpcf7-submit{
    background-color: #e1e1e1;
    color: #fff;
    width: 100%;
    border: none;
    font-family: 'Cormorant Bold',Helvetica,Arial,Lucida,sans-serif;
    font-size: 24px;
    height: 60px;
    cursor: pointer;
	transition: background-color 0.5s;
}

.contact-form .wpcf7-submit:hover{
	 background-color: #BD9A6E;
}

.contact-form .contact-form__label{
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-form input[type="checkbox"]{
    display: none;
}

.contact-form input[type="checkbox"] + .wpcf7-list-item-label{
    display: flex;
    position: relative;
    color: #BCBCBC;
    font-size: 16px;
    cursor:pointer;
    align-items: center;
    line-height: 1.2;
}

.contact-form input[type="checkbox"] + .wpcf7-list-item-label::before {
    display: block;
    border: 2px solid #D9D9D9;
    background-color: transparent;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    flex-shrink: 0;
}

.contact-form input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    border-color: #BD9A6E;
}

.contact-form input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    display: inline-block;
    content: "N";
    font-family: ETmodules;
    font-size: 32px;
    width: 26px;
    height: 26px;
    color: #BD9A6E;
    position: absolute;
    left: 0px;
    line-height: 1;
}

.contact-form .wpcf7-checkbox{
    display: inline-block;
}

.contact-form .wpcf7-checkbox .wpcf7-list-item{
    margin-left: 0;
    vertical-align: middle;
}

.contact-form .wpcf7-not-valid-tip{
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
}

.contact-form .wpcf7-not-valid-tip::before{
    content: '';
    width: 0; 
    height: 0; 

    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 18px solid #D62020;
    margin-right: 10px;
}

.contact-form .wpcf7-form-control-wrap{
    display: block;
}

.contact-form .wpcf7-not-valid-tip::after{
    position: absolute;
    content: '!';
    color: #fff;
    left: 9px;
    font-size: 14px;
}

.contact-form .wpcf7-spinner{
    position: absolute;
    bottom: 16px;
    right: 10px;
    margin: 0;
}

.contact-form .checkbox-consent:not(.wpcf7-not-valid){
    margin-bottom: 10px;
}

.contact-form .checkbox-consent + .wpcf7-not-valid-tip{
    margin-bottom: 20px;
}

.wpcf7 form .wpcf7-response-output{
    margin-left: 0;
    margin-right: 0;
}

.contact-form .intl-tel-input{
    width: 100%;
}

.contact-form .wpcf7-intl_tel{
    width: 100%;
}


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

    .contact-form .contact-form__label{
        font-size: 16px;
        margin-bottom: 2px;
    }

    .contact-form input[type="text"], 
    .contact-form input[type="email"], 
    .contact-form textarea, 
    .contact-form select{
        font-size: 13px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form select{
        height: 60px;
    }

    .contact-form input[type="checkbox"] + .wpcf7-list-item-label::before {
        width: 24px;
        height: 24px;
    }

    .contact-form input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
        width: 24px;
        height: 24px;
        font-size: 26px;
    }

    .contact-form .wpcf7-submit{
        font-size: 20px;
        height: 48px;
    }

    .contact-form .contact-form__column{
        gap: 0;
    }

    .contact-form .contact-form__group{
        margin-bottom: 10px;
    }

    .contact-form .checkbox-consent + .wpcf7-not-valid-tip{
        margin-bottom: 10px;
    }

    .contact-form .wpcf7-submit{
        margin-top: 10px;
    }
}  
