/*
===================
LOCATIONS
==================
 */
@media (min-width: 1400px) {
    #locations-container,
    #contact-container {
        max-width: 1320px;
    }
}

#locations-container {
    background-color: var(--white);
    border-radius: 15px;
    filter: drop-shadow(0px 29px 32.5px rgba(78, 92, 62, 0.08));
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.location-wrapper {
    padding: 0;
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.location-wrapper:last-of-type {
    border-right: none;
}

/*.location-content {*/

/*}*/

.location-wrapper:last-of-type .location-content {
    border-right: none;
}

.location-top {
    /*padding: 22px 25px 22px 60px;*/
    padding: 22px 15px 22px 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.location-top p {
    margin-bottom: 0;
}

.location-top .dot {
    margin-left: 10px;
}


.location-content {
    /*padding: 45px 60px;*/
    padding: 40px 15px 40px 25px;
}

.location-content .person-wrapper {
    margin-bottom: 40px;
}

.location-content .person-wrapper:last-of-type {
    margin-bottom: 0;
}

.person-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    line-height: 24px;
}

.person-top p {
    margin-bottom: 0;
}

.person-top .name p {
    font-size: 20px;
    font-weight: 400;
}

.person-top a,
.person-content a {
    font-weight: 300;
}

.spacer {
    width: 1px;
    background-color: rgba(0, 0, 0, .1);
    height: 18px;
    margin: 0 10px;
}

.person-top .phone {
    margin-top: 2px;
}

.person-top .phone a,
.person-content .mail {
    font-size: 18px;
    color: var(--grey);
    text-decoration-line: none;
}

.person-top .phone a:hover,
.person-content .mail:hover {
    color: var(--dark-green);
}

.location-top {
    background-color: var(--lighter-green);
}

.location-short {
    color: var(--light-green);
}


/*
==========================
MAP
=========================
 */
#desktop-map {
    position: relative;
    height: 910px;
    margin-top: -120px;
}

#desktop-map img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (min-width: 1200px) {
    .spacer {
        display: none;
    }

    .person-top .phone {
        width: 100%;
    }
}

@media only screen and (max-width: 1199.9px) {
    #location-2 {
        border-right: none;
    }
    .location-top,
    .location-content{
        padding-left: 35px;
    }
}

@media only screen and (max-width: 991.8px) {
    #locations {
        padding-bottom: 20px;
    }

    #locations-container-mobile {
        position: relative;
        z-index: 2;
        filter: drop-shadow(0px 29px 32.5px rgba(78, 92, 62, 0.14));
    }
    .location-wrapper{
        border: none;
        border-bottom: 1px solid #2c7050 !important;
    }

    .location-wrapper:last-of-type{
        border: none !important;
    }
    .location-content{
        background-color: var(--white);
    }


    .location-top {
        padding: 15px 20px 15px 30px;
    }

    .location-content {
        padding: 30px 30px;
    }

    .card {
        border: none;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }

    .card-header {
        border: none;
    }

    .card-body {
        padding: 0;
    }

    .card-header:first-child {
        border-radius: 0;
    }

    .location-wrapper:first-of-type {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .location-name {
        margin-bottom: 0;
        width: 100%;
    }

    .location-name button {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        flex-basis: 100%;
        position: relative;
    }

    .location-name button:hover,
    .location-name button:focus {
        outline: none;
    }

    .location-name button:before {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: calc(50% - 7px);
        flex-basis: 21px;
        width: 21px;
        height: 13px;
        mask: url('../icons/filter-arrow.svg') no-repeat center;
        -webkit-mask: url('../icons/filter-arrow.svg') no-repeat center;
        -webkit-mask-size: 100%;
        mask-size: 100%;
        background-color: var(--white);
        transform: rotate(0deg);

        -webkit-transition: all .4s ease-out;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
    }

    .location-name button.collapsed:before {
        transform: rotate(180deg);
    }

    .location-top .dot {
        margin-left: 0;
        margin-right: 10px;
        color: var(--light-green);
    }


    .location-wrapper:last-of-type {
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    #page-hero-section {
        padding-bottom: 35px;
    }

    #desktop-map {
        margin-top: 0;
    }

    .location-content .person-wrapper {
        margin-bottom: 20px;
    }

    .location-content .person-wrapper:last-of-type {
        margin-bottom: 0;
    }

    .person-top .name p {
        font-size: 18px;
    }

    #desktop-map {
        height: inherit;
        padding-top: 100%;
    }
}
@media only screen and (max-width: 360px){
    .location-top {
        padding: 15px;
    }

    .location-content {
        padding: 30px 15px;
    }
    .person-top .phone a, .person-content .mail{
        font-size: 16px;
    }
}
/*
==========================
CONTACT FORM
=========================
 */
#contact-section {
    padding-bottom: 30px;
}

#contact-container {
    border-radius: 15px;
    /*filter: drop-shadow(0px 29px 32.5px rgba(78, 92, 62, 0.08));*/
    background-color: var(--light-green);
    padding: 70px 90px 40px 90px;
    margin-top: -110px;
    position: relative;
}

#contact-form-wrapper form {
    margin-top: 45px;
}

#contact-container .gform_fields {
    column-gap: 25px;
    grid-row-gap: 30px;
    row-gap: 30px;
}

#contact-form-wrapper .ginput_password.large,
#contact-form-wrapper .gfield input,
#contact-form-wrapper .gfield select,
#contact-form-wrapper .gfield textarea {
    font-size: 18px;
    line-height: 22px;
    color: var(--green);
    font-weight: 300;
    background-color: rgba(255, 255, 255, 0);
    outline: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(12, 88, 78, .3);
    width: 100%;
    box-shadow: none;
    padding: 12px 0;
    /*height: auto;*/
    height: 52px;
    min-height: inherit;
}

#contact-form-wrapper .gfield input:focus,
#contact-form-wrapper .gfield select:focus-visible,
#contact-form-wrapper .gfield textarea:focus-visible {
    border-bottom: 1px solid rgba(12, 88, 78, 1);
}

#contact-form-wrapper .gfield textarea {
    resize: none;
    width: 100%;
    overflow: hidden;
    height: 52px;
    word-break: break-all;
}

#contact-form-wrapper .ginput_password.large,
#contact-form-wrapper .gfield input,
#contact-form-wrapper .gfield select {
    padding-right: 30px;
}

#contact-form-wrapper .name-field input {
    background: url('../icons/name.svg') no-repeat 100% 10px;
}

#contact-form-wrapper .email-field input {
    background: url('../icons/email.svg') no-repeat 100% 13px;
}

#contact-form-wrapper .phone-field input {
    background: url('../icons/form-phone.svg') no-repeat 100% 9px;
}

#contact-form-wrapper .ginput_password.large,
#contact-form-wrapper .gfield input::placeholder,
#contact-form-wrapper .gfield select::placeholder,
#contact-form-wrapper .gfield textarea::placeholder {
    font-size: 18px;
    color: #0c584e;
    font-weight: 300;
}

#contact-form-wrapper #gform_submit_button_4 {
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--dark-green);
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 10px;
    filter: drop-shadow(-0.384px 21.997px 25.5px rgba(0, 0, 0, 0.08));
    padding: 18px;
    border: none;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

#contact-form-wrapper #gform_submit_button_4 .plane {
    margin-left: 12px;
    line-height: 20px;
    position: relative;
    flex-basis: 27px;
    width: 27px;
    height: 22px;
}

#contact-form-wrapper #gform_submit_button_4 .plane:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    flex-basis: 27px;
    width: 27px;
    height: 22px;
    mask: url('../icons/plane.svg') no-repeat center;
    -webkit-mask: url('../icons/plane.svg') no-repeat center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    background-color: var(--light-green);
}

#contact-form-wrapper #gform_submit_button_4:hover {
    background-color: var(--green);
    color: var(--white);
}

#contact-form-wrapper #gform_submit_button_4:hover .plane:before {
    background-color: var(--white);
}

#contact-form-wrapper .gform_footer,
#contact-form-wrapper .gform_page_footer {
    margin-top: 40px;
}

@media only screen and (max-width: 991.8px) {
    #contact-section {
        padding-bottom: 0;
    }

    #contact-container {
        margin-top: 0;
    }

    #contact-container {
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
        padding: 40px 15px;
    }

    #contact-form-wrapper {
        padding: 0 15px;
    }

    #contact-container .gform_fields {
        grid-row-gap: 15px;
        row-gap: 15px;
    }
}

/*
==========================
TRADE SHOW
=========================
 */
#trade-show {
    padding: 40px 0 0 0;
    position: relative;
    z-index: 2;
    background-color: var(--white);
}

#trade-show h2 span {
    color: var(--dark-green);
}

.tradeSwiper {
    margin-top: 45px;
}

.trade-inner {
    /*height: 337px;*/
    padding-top: 90%;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;

}

.trade-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trade-slider-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    position: relative;
    margin: 30px auto;
}

.trade-slider-bottom .trade-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: calc(100% - 100px);
    flex-basis: calc(100% - 100px);
    position: relative;
    top: auto;
    bottom: auto;

}

.trade-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: rgb(112, 112, 112);
    opacity: .25;
    margin: 0 15px;
}

.trade-pagination .swiper-pagination-bullet-active {
    background-color: var(--light-green);
    opacity: 1;
}