.about-us {
    width: 100%;
    height: auto;
}

.about-us .container {
    width: 100%;
    height: auto;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.about-us-content {
    width: 100%;
    height: auto;
    margin-top: 100px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.about-us-content h1 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--color-9);
    font-size: 36px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.about-us-content h2 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 32px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.about-us-content h3 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--color-9);
    font-size: 24px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.about-us-content h4 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--color-9);
    font-size: 20px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.about-us-content h5 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--color-9);
    font-size: 16px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.about-us-content h6 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--color-9);
    font-size: 14px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.about-us-content img {
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-us-content a {
    color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.about-us-content p {
    color: white;
    font-size: 18px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 10px;
}

.about-us-content ul {
    display: -ms-grid;
    display: grid;
    margin-top: 28px;
    margin-bottom: 28px;
    padding-left: 28px;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 14px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    color: var(--color-9);
    font-size: 18px;
}


/* human-resources */

.human-resources {
    width: 100%;
    height: auto;
}

.human-resources .container {
    width: 100%;
    height: auto;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.human-resources .card-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.human-resources .card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(25% - 30px);
    height: 170px;
    margin-right: 40px;
    margin-bottom: 40px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.human-resources .card-item::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--primary);
    right: 0;
    top: 0;
}

.human-resources .card-item::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 50px;
    background: var(--primary);
    right: 0;
    top: 0;
}

.human-resources .card-item .line {
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: 0;
}

.human-resources .card-item .line-1 {
    position: absolute;
    width: 2px;
    height: 50px;
    background: var(--primary);
    left: 0;
    bottom: 0;
}

.human-resources .card-item .content {
    width: 100%;
    height: auto;
}

.human-resources .card-item:hover {
    transform: translate3d(0, -6px, 0);
}

.human-resources .card-item:nth-child(4n) {
    margin-right: 0;
}

.human-resources .card-item .icon {
    width: 50px;
    height: 50px;
}

.human-resources .card-item .icon svg {
    width: 100%;
    height: 100%;
}

.human-resources .card-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.human-resources .card-item .title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: white;
    font-family: var(--font-regular);
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.human-resources .card-item .paragraph {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-9);
    font-family: var(--font-light);
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

.human-resources-content {
    width: 100%;
    height: auto;
    margin-top: 100px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.about-us-content h1 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: white;
    font-size: 36px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.human-resources-content h2 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: white;
    font-size: 32px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.human-resources-content h3 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: white;
    font-size: 24px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.human-resources-content h4 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: white;
    font-size: 20px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.human-resources-content h5 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: white;
    font-size: 16px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.human-resources-content h6 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: white;
    font-size: 14px;
    letter-spacing: -0.03em;
    font-family: var(--font-semibold);
}

.human-resources-content img {
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.human-resources-content a {
    color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.human-resources-content p {
    color: white;
    font-size: 18px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 10px;
}

.human-resources-content ul {
    display: -ms-grid;
    display: grid;
    margin-top: 28px;
    margin-bottom: 28px;
    padding-left: 28px;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 14px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    color: var(--color-8);
    font-size: 18px;
}

.human-resources .card-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.human-resources .card-row .card {
    width: 50%;
    height: auto;
    padding: 50px;
    background: var(--primary);
    display: flex;
    flex-direction: row;
    text-decoration: none;
    transition: all 0.3s ease;
}

.human-resources .card-row .card.left:hover {
    transform: scale(1.05);
}

.human-resources .card-row .card.right:hover {
    transform: scale(1.05);
}

.human-resources .card-row .card.right {
    background: #3C1D24;
}

.human-resources .card .icon {
    width: 100px;
    height: 100px;
    margin-right: 30px;
}

.human-resources .card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

.human-resources .card .content {
    width: calc(100% - 130px);
    height: auto;
    display: flex;
    flex-direction: column;
}

.human-resources .card .content .title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: white;
    font-family: var(--font-regular);
    transition: all 0.3s ease;
    margin-top: 0;
    margin-bottom: 20px;
}

.human-resources .card .content .paragraph {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: white;
    font-family: var(--font-light);
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

.human-resources .heading-wrap {
    width: 100%;
    height: auto;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.human-resources .heading-wrap .title {
    font-size: 48px;
    font-weight: bolder;
    color: var(--primary);
    margin: 0;
    text-align: center;
    line-height: 1.2;
    font-family: var(--font-semibold);
    margin-bottom: 15px;
}

.human-resources .heading-wrap .paragraph {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: white;
    font-family: var(--font-light);
    text-align: center;
    margin: 0;
}

.human-resource-cta {
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.human-resource-cta.reverse .row {
    flex-direction: row-reverse;
}

.human-resource-cta .row {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
}

.human-resource-cta .row .media {
    width: 50%;
    height: 500px;
}

.human-resource-cta .row .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    appearance: none;
}

.human-resource-cta .row .content {
    width: 50%;
    height: auto;
    margin-left: 140px;
    max-width: 540px;
    padding-right: 40px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.human-resource-cta .row .content .title {
    font-size: 40px;
    font-weight: bolder;
    color: var(--primary);
    margin: 0;
    text-align: left;
    line-height: 1.2;
    font-family: var(--font-semibold);
    margin-bottom: 10px;
}

.human-resource-cta .row .content .paragraph {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: white;
    font-family: var(--font-light);
    text-align: left;
    margin: 0;
}

/* corporate-page */

.about-us .card-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.about-us .card-item {
    width: calc(50% - 20px);
    height: auto;
    position: relative;
    overflow: hidden;
    margin-right: 40px;
    margin-bottom: 40px;
    text-decoration: none;
}

.about-us .card-item:hover .media img {
    transform: scale(1.1);
}

.about-us .card-item:nth-child(2n) {
    margin-right: 0;
}

.about-us .card-item .media {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: black;
}

.about-us .card-item .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    appearance: none;
    transition: all 0.3s ease-in;
    opacity: 0.7;
}

.about-us .card-item .content {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.about-us .card-item .content .text {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: white;
    font-family: var(--font-regular);
}

.about-us .wrap {
    width: 100%;
    height: auto;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}


.about-us .heading-wrap {
    width: 100%;
    height: auto;
}

.about-us .heading-wrap .heading {
    font-size: 40px;
    font-weight: bolder;
    color: var(--primary);
    margin: 0;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: var(--font-semibold);
}

.our-values-content {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
}

.our-values-content .paragraph {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #ebebeb;
    font-family: var(--font-light);
    text-align: center;
    margin: 0;
}

@media only screen and (max-width:600px) {

    .human-resources .heading-wrap .title {
        font-size: 36px;
    }

    .human-resource-cta .row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resource-cta {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .human-resource-cta.reverse .row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .card-row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resource-cta .row .content {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 50px;
    }

    .human-resource-cta .row .media {
        margin-left: 0;
        height: 250px;
        width: 100%;
    }

    .human-resource-cta .row .content .title {
        font-size: 32px;
    }

    .about-us .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .card-item {
        width: 100%;
        margin-right: 0;
    }

    .human-resources .card-item:nth-child(2n) {
        margin-right: 0;
    }

    .human-resources .card-row {
        flex-direction: column;
    }

    .human-resources .card-row .card {
        width: 100%;
        padding: 30px;
    }

    .human-resources .card .icon {
        width: 70px;
        height: 70px;
    }

    .human-resources .card .content {
        width: calc(100% - 100px);
    }

    .human-resources .card .content .title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .about-us .card-item {
        width: 100%;
        height: 200px;
        margin-right: 0;
    }

    .about-us .heading-wrap .heading {
        font-size: 36px;
    }

}

@media (min-width:481px) and (max-width:767px) {

    .human-resources .heading-wrap .title {
        font-size: 36px;
    }

    .human-resource-cta .row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resource-cta {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .human-resource-cta.reverse .row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .card-row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resource-cta .row .content {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 50px;
    }

    .human-resource-cta .row .media {
        margin-left: 0;
        height: 250px;
        width: 100%;
    }

    .human-resource-cta .row .content .title {
        font-size: 32px;
    }


    .about-us .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .card-item {
        width: calc(50% - 10px);
        margin-right: 20px;
    }

    .human-resources .card-item:nth-child(2n) {
        margin-right: 0;
    }

    .human-resources .card-row {
        flex-direction: column;
    }

    .human-resources .card-row .card {
        width: 100%;
        padding: 30px;
    }

    .human-resources .card .icon {
        width: 70px;
        height: 70px;
    }

    .human-resources .card .content {
        width: calc(100% - 100px);
    }

    .human-resources .card .content .title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .about-us .card-item {
        width: 100%;
        height: 200px;
        margin-right: 0;
    }

    .about-us .heading-wrap .heading {
        font-size: 36px;
    }


}

@media (min-width:768px) and (max-width:1024px) {
    .human-resources .heading-wrap .title {
        font-size: 36px;
    }

    .human-resource-cta .row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resource-cta {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .human-resource-cta.reverse .row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .card-row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resource-cta .row .content {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 50px;
    }

    .human-resource-cta .row .media {
        margin-left: 0;
        height: 250px;
        width: 100%;
    }

    .human-resource-cta .row .content .title {
        font-size: 32px;
    }


    .about-us .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .card-item {
        width: calc(50% - 10px);
        margin-right: 20px;
    }

    .human-resources .card-item:nth-child(2n) {
        margin-right: 0;
    }

    .human-resources .card-row {
        flex-direction: column;
    }

    .human-resources .card-row .card {
        width: 100%;
    }

    .human-resources .card .icon {
        width: 70px;
        height: 70px;
    }

    .human-resources .card .content {
        width: calc(100% - 100px);
    }

    .human-resources .card .content .title {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

@media (min-width:768px) and (max-width:1024px) and (orientation:landscape) {

    .human-resources .heading-wrap .title {
        font-size: 36px;
    }

    .human-resource-cta .row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resource-cta {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .human-resource-cta.reverse .row {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .card-row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resource-cta .row .content {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 50px;
    }

    .human-resource-cta .row .media {
        margin-left: 0;
        height: 250px;
        width: 100%;
    }

    .human-resource-cta .row .content .title {
        font-size: 32px;
    }


    .about-us .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .human-resources .card-item {
        width: calc(50% - 10px);
        margin-right: 20px;
    }

    .human-resources .card-item:nth-child(2n) {
        margin-right: 0;
    }

    .human-resources .card-row {
        flex-direction: column;
    }

    .human-resources .card-row .card {
        width: 100%;
    }

    .human-resources .card .icon {
        width: 70px;
        height: 70px;
    }

    .human-resources .card .content {
        width: calc(100% - 100px);
    }

    .human-resources .card .content .title {
        font-size: 24px;
    }
}