.section-container {
    padding: 0;
}
html {
    scroll-behavior: auto !important;
}

#hero-section {
    padding: 170px 20px 80px;
    background: var(--banner-bg);
    color: var(--color-white);
}
#hero-section .page-title {
    margin-bottom: 20px;
    color: var(--color-white);
}
#hero-section .description p {
    padding-right: 40px;
}
#hero-section .btns-wrapper {
    margin-top: 50px;
}

#hero-section .col-right {
    width: 47%;
    flex-shrink: 0;
}

.section-title {
    text-align: center;
}

.our-team {
    padding-top: 100px;
    text-align: center;
}
.our-team .team-text {
    width: 750px;
    max-width: 95%;
    margin: 20px auto 50px;
}
.our-team img {
    display: block;
    width: 100%;
    height: auto;
}

.testimonials {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-bg-subtle);
    background-image: url(https://www.tigera.io/app/uploads/2021/06/bg-careers-testimonial.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
.testimonials .section-title {
    line-height: 1.2;
    margin-bottom: 50px;
}
.testimonials .swiper {
    position: relative;
    /* width: 1165px; */
    max-width: 100%;
    height: 272px;
    overflow: hidden;
    padding-bottom: 50px;
}
.testimonials .swiper .swiper-slide {
    width: 100%;
    padding: 0 104px;
    backface-visibility: hidden;
}
.testimonials .swiper .swiper-slide .slide-inner {
    position: relative;
    height: 100%;
    background: var(--color-white);
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 30px 40px rgba(102, 124, 167, 0.07), 0px 32px 32px rgba(102, 124, 167, 0.05), 0px 22.3px 18px rgba(102, 124, 167, 0.04), 0px 12.5px 10px rgba(102, 124, 167, 0.035);
}
.testimonials .img-col {
    flex-shrink: 0;
    position: relative;
    width: 288px;
}
.testimonials .img-col img {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
}
.testimonials .text-col {
    height: 100%;
    padding: 40px 35px 30px 60px;
}
.testimonials .quote {
    margin: 0;
    font-weight: 500;
    font-style: normal;
}
.testimonials .quote:before {
    content: "";
    display: inline-block;
    position: relative;
    top: -5px;
    left: -5px;
    margin-left: -17px;
    width: 17px;
    height: 15px;
    background: url('../img/blockquote-before.svg') no-repeat top center;
}
.testimonials .quote:after {
    content: "";
    display: inline-block;
    position: relative;
    bottom: -10px;
    right: -10px;
    width: 17px;
    height: 15px;
    background: url('../img/blockquote-before.svg') no-repeat top center;
    transform: rotate(180deg);
}
.testimonials .name-and-role {
    margin-top: 12px;
    color: var(--color-text-body);
    font-size: var(--font-size-sm);
    font-weight: 500;
    opacity: .7;
}
.testimonials .swiper .swiper-button-next {
    right: 0;
    width: 24px;
    height: 24px;
    background: url('../img/arrow-right-testi.svg') no-repeat center center/100%;
    /* transform: rotate(-90deg); */
}
.testimonials .swiper .swiper-button-prev {
    left: 0;
    width: 24px;
    height: 24px;
    background: url('../img/arrow-right-testi.svg') no-repeat center center/100%;
    transform: rotate(180deg);
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.testimonials .swiper .swiper-pagination {
    top: 175px;
    bottom: auto;
    margin-top: 10px;
    margin-left: -130px;
}
.testimonials .swiper-pagination-bullet-active {
    background: var(--color-brand-accent);
}
.testimonials .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
}

#our-values {
    padding: 100px 0;
    text-align: center;
}
#our-values .section-title {
    padding-bottom: 0;
}
#our-values .values-cards-title {
    padding: 0 0 20px;
}
#our-values .values {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: left;
}
#our-values .values .card-item {
    position: relative;
    width: 49%;
    perspective: 1000px;
    transform-style: preserve-3d;
}
#our-values .values .card-item .card-front {
    transform: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    z-index: 1;
    height: 100%;
    padding: 35px;
    border-radius: 6px;
    transition: transform .5s;
}
#our-values .values .card-item:hover .card-front {
    transform: rotateX(180deg) rotateY(0);
}
#our-values .values .card-item:hover .card-back {
    transform: none;
    font-weight: 500;
}
#our-values .values .card-item .card-front .front-inner {
    height: 100%;
}
#our-values .values .card-item .img-wrapper {
    flex-shrink: 0;
    display: flex;
    width: 33%;
    margin-right: 20px;
}
#our-values .values .card-item img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
}
#our-values .values .card-item .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#our-values .values .card-item .content-wrapper,
#our-values .values .card-item .card-title {
    color: var(--color-white);
}
#our-values .values .card-item .read-more {
    font-weight: 500;
}

#our-values .values .card-item .card-back {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 35px;
    transform: rotateX(-180deg) rotateY(0);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border-default);
    border-radius: 6px;
    transition: transform .5s;
}
#our-values .text-after-cards {
    max-width: 900px;
    margin: 44px auto 0;
}

#our-perks {
    padding: 100px 0;
    background: var(--color-bg-subtle);
    text-align: center;
}
#our-perks .section-subtitle {
    margin-bottom: 50px;
    font-size: var(--font-size-md);
    font-weight: 500;
}
#our-perks .perks-cards {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
#our-perks .perks-cards .card {
    flex-direction: column;
    flex-basis: 30%;
    min-height: 306px;
    padding: 50px 50px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border-default);
    border-radius: 5px;
}
#our-perks .perks-cards .card .img-wrapper {
    margin-bottom: 20px;
}
#our-perks .perks-cards .card .img-wrapper img {
    width: 84px;
    height: 84px;
}
#our-perks .perks-cards .card .card-title {
    font-size: var(--font-size-md);
}

#current-openings {
    padding: 100px 0 0;
}
#current-openings .section-title {
    margin-bottom: 20px;
}
#grnhse_app {
    display: flex;
    justify-content: center;
}
#grnhse_app iframe {
    max-width: 700px;
}
#current-openings .awards {
    flex-wrap: wrap;
    align-items: center;
    margin: 50px 0 100px;
}
#current-openings .awards .img-col {
    width: 25%;
}
#current-openings .awards .img-col .inner {
    padding: 10px 20px;
}
#current-openings .awards .img-col:first-child .inner {
    margin-right: 100px;
    justify-content: flex-end;
}
#current-openings .awards .img-col:first-child .inner img {
    width: 120px;
}

.mailing-list__wrapper{background:url(/app/themes/tigera2021/dist/img/mailing-list-bg.svg) no-repeat top/cover;padding:50px 20px}
.mailing-list__wrapper .mailing-list__container{align-items:center;background-color:var(--color-white);border-radius:5px;box-shadow:var(--ti-box-shadow);display:grid;gap:0 25%;grid-template-columns:1fr;grid-template-rows:1fr;justify-content:center;padding:30px;margin:0 auto;width:100%}
.mailing-list__wrapper .mailing-list__container .mailing-list__container-content h2{font-size: var(--font-size-3xl)}.mailing-list__wrapper .mktoForm label{display:none;visibility:hidden}.mailing-list__wrapper .mktoForm .mktoFieldWrap .mktoField{line-height:21px!important;margin-bottom:10px;padding:13px 24px!important}.mailing-list__wrapper .mailing-list__container .mailing-list__container-form .mktoForm .mktoField:focus{outline-color:var(--color-brand-secondary)}

@media screen and (min-width: 36em) {
    .mailing-list__wrapper .mailing-list__container{max-width:540px !important}
}

@media screen and (min-width: 48em) {
    .mailing-list__wrapper .mailing-list__container{max-width:720px !important;grid-template-columns:1fr 1fr;padding:70px 100px}
}
@media screen and (min-width: 64em) {
    .mailing-list__wrapper .mailing-list__container{max-width:960px !important}
}
@media screen and (min-width: 1224px) {
    .mailing-list__wrapper .mailing-list__container{max-width:1224px !important}
}

@media (max-width: 1299px) {
    #our-values .values .card-item {
        width: 48%;
    }
}

@media (max-width: 1223px) {
    .testimonials .swiper {
        height: 322px;
    }
    .testimonials .swiper .swiper-slide {
        padding: 0 54px;
    }
    .testimonials .swiper .swiper-pagination {
        top: 225px;
        margin-left: -50px;
    }
}

@media (max-width: 1023px) {
    #hero-section .col-right {
        display: none;
    }
    #hero-section .col-left {
        width: auto;
        text-align: center;
    }
    #hero-section .description p {
        padding-right: 0;
    }
    #hero-section .btns-wrapper {
        justify-content: center;
    }
    .our-team {
        padding-top: 80px;
    }
    .testimonials,
    #our-values,
    #our-perks {
        padding: 80px 0;
    }
    #current-openings .awards {
        margin-bottom: 80px;
    }
    #our-values .values .card-item {
        width: 100%;
    }
    #our-values .values .card-item .content-wrapper {
        justify-content: flex-start;
    }
    #our-values .values .card-item .card-title {
        margin-bottom: 30px;
    }
    #our-perks .perks-cards .card {
        flex-basis: 44%;
    }
    #current-openings .awards .img-col {
        width: 50%;
    }
    #current-openings .awards .img-col img {
        max-height: 210px;
    }

    body .mailing-list__wrapper .mailing-list__container {
        gap: 0 25%;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        justify-content: center;
        padding: 30px;
    }
    .mailing-list__wrapper .mailing-list__container .mailing-list__container-content h2 {
        line-height: 1.3;
    }
}

@media (max-width: 991px) {
    .testimonials .section-container {
        max-width: 768px;
    }
    .testimonials .swiper .swiper-slide {
        padding: 0 26px;
    }
    .testimonials .img-col {
        width: 272px;
    }
    .testimonials .text-col {
        padding: 26px 30px 30px 40px;
    }
    .testimonials .quote {
        line-height: 1.4;
    }
    .testimonials .swiper .swiper-pagination {
        top: 232px;
        margin-left: -13px;
    }
}

@media (max-width: 767px) {
    .section-container {
        padding: 0 20px;
    }
    .section-title {
        font-size: var(--font-size-4xl);
    }
    #hero-section .page-title {
        margin-bottom: 10px;
        font-size: var(--font-size-4xl);
    }
    .our-team {
        padding-top: 50px;
    }
    .testimonials,
    #our-values,
    #our-perks {
        padding: 50px 0;
    }
    .testimonials .swiper {
        height: auto;
    }
    .testimonials .swiper .swiper-slide .slide-inner {
        flex-direction: column;
        padding-bottom: 30px;;
    }
    .testimonials .img-col {
        width: 100%;
        height: 240px;
        margin: 0 auto 10px;
        overflow: hidden;
    }
    .testimonials .img-col img {
        position: relative;
        top: 0;
        transform: none;
    }
    .testimonials .text-col {
        text-align: center;
    }
    .testimonials .swiper .swiper-pagination {
        position: static;
        margin-left: 0;
    }
    #our-values .values-cards-title:after {
        display: none;
    }
    #our-values .values .card-item {
        min-height: 330px;
    }
    #our-values .values .card-item .card-front {
        position: absolute;
    }
    #our-values .values .card-item .card-back {
        position: static;
    }
    #our-values .values .card-item .card-front .front-inner {
        align-items: center;
    }
    #our-perks .perks-cards .card {
        flex-basis: 100%;
    }
    #current-openings {
        padding-top: 50px;
    }
    #current-openings .awards {
        margin-bottom: 50px;
    }
    #current-openings .awards .img-col {
        width: 100%;
        margin-bottom: 20px;
    }
    #current-openings .awards .img-col:first-child .inner {
        margin: 0 50px;
        justify-content: center;
    }
}
