@font-face {
    font-family: 'HelveticaNeue';
    src: url(../fonts/HelveticaNeue-Light-08.ttf);
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url(../fonts/HelveticaNeue-01.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url(../fonts/HelveticaNeue-Medium-11.ttf);
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url(../fonts/HelveticaNeue-Bold-02.ttf);
    font-weight: 700;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'HelveticaNeue', sans-serif;
}

section {
    position: relative;
}

section .bg {
    width: 100%;
    object-fit: cover;
}

section .bg-d {
    display: none;
}

@media screen and (min-width: 768px) {
    section .bg-d {
        display: inline-block;
    }
}

@media screen and (min-width: 768px) {
    section .bg-m {
        display: none;
    }
}

section .section-container {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 30px;
}

@media screen and (min-width: 1024px) {
    section .section-container {
        max-width: 866px;
    }
}

@media screen and (min-width: 1200px) {
    section .section-container {
        max-width: 1024px;
    }
}

@media screen and (min-width: 1440px) {
    section .section-container {
        max-width: 1200px;
    }
}

section .section-container .section-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
}

@media screen and (min-width: 768px) {
    section .section-container .section-content {
        padding: 50px 30px;
    }
}

@media screen and (min-width: 1024px) {
    section .section-container .section-content {
        padding: 50px 0;
    }
}

@media screen and (min-width: 768px) {
    section .section-container .section-content .section-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (min-width: 768px) {
    section .section-container .section-content .section-row .row-el {
        width: 48%;
    }
}

section .section-container .section-content .section-row .row-el .section-header {
    text-align: center;
    font-size: 38px;
    letter-spacing: 1px;
}

@media screen and (min-width: 768px) {
    section .section-container .section-content .section-row .row-el .section-header {
        text-align: initial;
        padding-left: 18%;
    }
}

section .section-container .section-content .section-row .el-desktop {
    display: none;
}

@media screen and (min-width: 768px) {
    section .section-container .section-content .section-row .el-desktop {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    section .section-container .section-content .section-row .el-mobile {
        display: none;
    }
}

.fake-topbar-bg {
    visibility: hidden;
    height: 100px;
}

@media screen and (min-width: 768px) {
    .fake-topbar-bg {
        display: none;
    }
}

.topbar-dt {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    background: url("../img/bg_menu_m.webp") no-repeat bottom;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .topbar-dt {
        height: 120px;
        position: absolute;
        left: initial;
        top: initial;
        right: initial;
        width: 100%;
        background: none;
        background-size: initial;
    }
}

.topbar-dt .section-container .section-content {
    padding: 0;
    position: relative;
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content {
        padding: 0 30px;
    }
}

.topbar-dt .section-container .section-content .welcome-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100px;
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content .welcome-topbar {
        height: 100%;
    }
}

.topbar-dt .section-container .section-content .welcome-topbar .logo {
    width: 25%;
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content .welcome-topbar .logo {
        height: 100%;
        display: flex;
        align-items: center;
        position: relative;
        width: 30%;
    }
}

@media screen and (min-width: 1440px) {
    .topbar-dt .section-container .section-content .welcome-topbar .logo {
        width: 25%;
    }
}

.topbar-dt .section-container .section-content .welcome-topbar .logo .logo-img {
    width: 85%;
    cursor: pointer;
}

@media screen and (min-width: 400px) {
    .topbar-dt .section-container .section-content .welcome-topbar .logo .logo-img {
        width: 80%;
    }
}

@media screen and (min-width: 540px) {
    .topbar-dt .section-container .section-content .welcome-topbar .logo .logo-img {
        width: 60%;
    }
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content .welcome-topbar .logo .logo-img {
        width: 45%;
        align-self: center;
    }
}

.topbar-dt .section-container .section-content .welcome-topbar .logo .bg-white-triangle {
    display: none;
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content .welcome-topbar .logo .bg-white-triangle {
        display: inline-block;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
}

@media screen and (min-width: 1920px) {
    .topbar-dt .section-container .section-content .welcome-topbar .logo .bg-white-triangle {
        width: 1000px;
    }
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content .welcome-topbar .hamburger {
        display: none;
    }
}

.topbar-dt .section-container .section-content .welcome-topbar .hamburger img {
    width: 30px;
}

@media screen and (min-width: 400px) {
    .topbar-dt .section-container .section-content .welcome-topbar .hamburger img {
        width: initial;
    }
}

.topbar-dt .section-container .section-content .welcome-topbar .main-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    list-style: none;
    background-color: #fff;
    width: 100%;
    padding: 0 40px;
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu {
        background-color: initial;
        position: static;
        left: initial;
        top: initial;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        height: 100%;
        padding: 0;
    }
}

.topbar-dt .section-container .section-content .welcome-topbar .main-menu li {
    padding: 15px 0;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu li {
        border-bottom: none;
        padding: 10px 0;
        margin-left: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu li {
        margin-left: 30px;
    }
}

.topbar-dt .section-container .section-content .welcome-topbar .main-menu li a {
    text-decoration: none;
    color: #434241;
    font-size: 20px;
}

@media screen and (min-width: 400px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu li a {
        font-size: 26px;
    }
}

@media screen and (min-width: 540px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu li a {
        font-size: 30px;
    }
}

@media screen and (min-width: 768px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu li a {
        color: #ddd;
        font-size: 12px;
    }
}

@media screen and (min-width: 1024px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu li a {
        font-size: 13px;
    }
}

@media screen and (min-width: 1200px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu li a {
        font-size: 14px;
    }
}

@media screen and (min-width: 1440px) {
    .topbar-dt .section-container .section-content .welcome-topbar .main-menu li a {
        font-size: 15px;
    }
}

.topbar-dt .topbar-container {
    z-index: 10;
}

@media screen and (min-width: 768px) {
    .topbar-dt .topbar-container {
        padding: 0;
    }
}

.topbar-dt .topbar-container .section-content .grey-line {
    display: none;
}

@media screen and (min-width: 768px) {
    .topbar-dt .topbar-container .section-content .grey-line {
        display: inline-block;
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: #999;
        width: 100%;
        height: 1px;
    }
}

.welcome-dt {
    position: relative;
    overflow: hidden;
    background: url("../img/bg_welcome_m.webp") no-repeat top;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .welcome-dt {
        background: url("../img/bg_welcome_v2.webp") no-repeat top;
        background-size: cover;
    }
}

.welcome-dt .bg {
    width: 100%;
}

.welcome-dt .welcome-content {
    width: 100%;
}

.welcome-dt .welcome-content .container-dt {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .welcome-dt .welcome-content .container-dt {
        max-width: 866px;
    }
}

@media screen and (min-width: 1200px) {
    .welcome-dt .welcome-content .container-dt {
        max-width: 1024px;
    }
}

@media screen and (min-width: 1440px) {
    .welcome-dt .welcome-content .container-dt {
        max-width: 1200px;
    }
}

.welcome-dt .welcome-content .container-dt .section-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 60px 0;
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content {
        height: 85%;
        flex-direction: initial;
        justify-content: flex-end;
        padding: 220px 30px 70px 30px;
    }
}

@media screen and (min-width: 1024px) {
    .welcome-dt .welcome-content .container-dt .section-content {
        padding: 220px 0 70px 0;
    }
}

@media screen and (min-width: 1200px) {
    .welcome-dt .welcome-content .container-dt .section-content {
        padding: 220px 0 120px 0;
    }
}

.welcome-dt .welcome-content .container-dt .section-content .img-wrapper {
    position: relative;
    width: 90%;
    margin-bottom: 10px;
}

@media screen and (min-width: 540px) {
    .welcome-dt .welcome-content .container-dt .section-content .img-wrapper {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content .img-wrapper {
        width: 75%;
        margin-bottom: initial;
    }
}

@media screen and (min-width: 1200px) {
    .welcome-dt .welcome-content .container-dt .section-content .img-wrapper {
        width: 82%;
    }
}

.welcome-dt .welcome-content .container-dt .section-content .img-wrapper .main-img {
    width: 100%;
    z-index: 1;
    position: relative;
}

.welcome-dt .welcome-content .container-dt .section-content .img-wrapper .mi-d {
    display: none;
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content .img-wrapper .mi-d {
        display: inline-block;
    }
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content .img-wrapper .mi-m {
        display: none;
    }
}

.welcome-dt .welcome-content .container-dt .section-content .img-wrapper .main-img-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-51%, -43%);
    width: 109%;
    height: auto;
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content .img-wrapper .main-img-bg {
        width: 130%;
        transform: translate(-57.9%, -45%);
    }
}

.welcome-dt .welcome-content .container-dt .section-content .welcome-copy {
    color: #fff;
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy {
        position: absolute;
        left: 30px;
        top: 54%;
        width: initial;
        text-align: initial;
    }
}

@media screen and (min-width: 1024px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy {
        left: 0;
    }
}

.welcome-dt .welcome-content .container-dt .section-content .welcome-copy h1 {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 120%;
    margin-bottom: 10px;
    text-shadow: 1px 1px 20px #666;
}

@media screen and (min-width: 400px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy h1 {
        font-size: 28px;
    }
}

@media screen and (min-width: 540px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy h1 {
        font-size: 40px;
    }
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy h1 {
        font-weight: 600;
        text-shadow: initial;
        font-size: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy h1 {
        font-size: 36px;
    }
}

@media screen and (min-width: 1440px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy h1 {
        font-size: 44px;
    }
}

.welcome-dt .welcome-content .container-dt .section-content .welcome-copy p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 130%;
    font-weight: 300;
}

@media screen and (min-width: 400px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy p {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 540px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy p {
        font-size: 24px;
    }
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy p {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1440px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy p {
        font-size: 22px;
    }
}

.welcome-dt .welcome-content .container-dt .section-content .welcome-copy a {
    text-decoration: none;
    background-color: #fff;
    color: #990c23;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 18px;
    padding: 8px 15%;
    transition: all .4s;
    border: 1px solid #fff;
    box-shadow: 1px 1px 20px #333;
}

@media screen and (min-width: 540px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy a {
        font-size: 22px;
        padding: 15px 15%;
    }
}

@media screen and (min-width: 768px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy a {
        font-size: initial;
        padding: 10px 18%;
        letter-spacing: 1px;
    }
}

@media screen and (min-width: 1440px) {
    .welcome-dt .welcome-content .container-dt .section-content .welcome-copy a {
        font-size: 20px;
        padding: 10px 18%;
    }
}

.welcome-dt .welcome-content .container-dt .section-content .welcome-copy a:hover {
    background-color: transparent;
    color: #fff;
}

.about-dt {
    background: url("../img/bg_about_m.webp") no-repeat top;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .about-dt {
        background: url("../img/bg_about.webp") no-repeat top;
        background-size: cover;
        z-index: 100;
    }
}

.about-dt .section-container .section-content .section-row .row-el .section-header {
    color: #e5006d;
    margin-bottom: 10px;
}

@media screen and (min-width: 1200px) {
    .about-dt .section-container .section-content .section-row .row-el .section-header {
        margin-bottom: 30px;
    }
}

.about-dt .section-container .section-content .section-row .row-el .about-photo {
    width: 100%;
    box-shadow: 1px 1px 30px #666;
    margin-bottom: 10px;
}

@media screen and (min-width: 400px) {
    .about-dt .section-container .section-content .section-row .row-el .about-photo {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 768px) {
    .about-dt .section-container .section-content .section-row .row-el .about-photo {
        margin-bottom: 0;
    }
}

.about-dt .section-container .section-content .section-row .row-el p {
    color: #434241;
    font-size: 14px;
    line-height: 130%;
}

@media screen and (min-width: 400px) {
    .about-dt .section-container .section-content .section-row .row-el p {
        font-size: 16px;
        line-height: 140%;
    }
}

@media screen and (min-width: 540px) {
    .about-dt .section-container .section-content .section-row .row-el p {
        line-height: 150%;
        font-size: 22px;
    }
}

@media screen and (min-width: 768px) {
    .about-dt .section-container .section-content .section-row .row-el p {
        line-height: 120%;
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) {
    .about-dt .section-container .section-content .section-row .row-el p {
        font-size: 15px;
    }
}

@media screen and (min-width: 1200px) {
    .about-dt .section-container .section-content .section-row .row-el p {
        line-height: 140%;
    }
}

@media screen and (min-width: 1440px) {
    .about-dt .section-container .section-content .section-row .row-el p {
        font-size: 17px;
        line-height: 150%;
    }
}

.about-dt .section-container .section-content .section-row .row-el p:first-of-type {
    margin-bottom: 20px;
}

.about-dt .section-container .section-content .section-row .el-mobile .section-header {
    text-align: left;
    font-size: 26px;
}

@media screen and (min-width: 400px) {
    .about-dt .section-container .section-content .section-row .el-mobile .section-header {
        font-size: 30px;
    }
}

@media screen and (min-width: 540px) {
    .about-dt .section-container .section-content .section-row .el-mobile .section-header {
        font-size: 38px;
    }
}

.about-dt .section-container .section-content .section-row .el-desktop {
    width: 100%;
}

.our-work-dt {
    color: #fff;
    background: url("../img/bg_ourWork_m.webp") no-repeat top;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .our-work-dt {
        background: url("../img/bg_ourWork.webp") no-repeat top;
        background-size: cover;
        z-index: 100;
    }
}

.our-work-dt .section-container .section-content .section-row {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .our-work-dt .section-container .section-content .section-row {
        flex-direction: initial;
    }
}

.our-work-dt .section-container .section-content .section-row .row-el .header-d {
    display: none;
}

@media screen and (min-width: 768px) {
    .our-work-dt .section-container .section-content .section-row .row-el .header-d {
        display: block;
    }
}

.our-work-dt .section-container .section-content .section-row .row-el .header-m {
    text-align: left;
    margin-bottom: 10px;
    font-size: 26px;
}

@media screen and (min-width: 400px) {
    .our-work-dt .section-container .section-content .section-row .row-el .header-m {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 540px) {
    .our-work-dt .section-container .section-content .section-row .row-el .header-m {
        margin-bottom: 30px;
        font-size: 38px;
    }
}

@media screen and (min-width: 768px) {
    .our-work-dt .section-container .section-content .section-row .row-el .header-m {
        display: none;
    }
}

.our-work-dt .section-container .section-content .section-row .row-el .our-work-photo {
    width: 100%;
    box-shadow: 1px 1px 40px #000;
    margin-bottom: 10px;
}

@media screen and (min-width: 400px) {
    .our-work-dt .section-container .section-content .section-row .row-el .our-work-photo {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .our-work-dt .section-container .section-content .section-row .row-el .our-work-photo {
        margin-bottom: initial;
    }
}

.our-work-dt .section-container .section-content .section-row .row-el p {
    font-size: 14px;
    line-height: 130%;
}

@media screen and (min-width: 400px) {
    .our-work-dt .section-container .section-content .section-row .row-el p {
        font-size: 16px;
        line-height: 140%;
    }
}

@media screen and (min-width: 540px) {
    .our-work-dt .section-container .section-content .section-row .row-el p {
        font-size: 22px;
        line-height: 150%;
    }
}

@media screen and (min-width: 768px) {
    .our-work-dt .section-container .section-content .section-row .row-el p {
        line-height: 120%;
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) {
    .our-work-dt .section-container .section-content .section-row .row-el p {
        font-size: 15px;
    }
}

@media screen and (min-width: 1200px) {
    .our-work-dt .section-container .section-content .section-row .row-el p {
        line-height: 140%;
    }
}

@media screen and (min-width: 1440px) {
    .our-work-dt .section-container .section-content .section-row .row-el p {
        line-height: 150%;
        font-size: 17px;
    }
}

.our-work-dt .section-container .section-content .section-row .text-el {
    order: 2;
}

@media screen and (min-width: 768px) {
    .our-work-dt .section-container .section-content .section-row .text-el {
        order: initial;
    }
}

.our-work-dt .section-container .section-content .section-row .photo-el {
    order: 1;
    position: relative;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .our-work-dt .section-container .section-content .section-row .photo-el {
        margin-bottom: 0;
        order: initial;
    }
}

.our-work-dt .section-container .section-content .section-row .photo-el .ytd-video {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
}

.our-work-dt .section-container .section-content .section-row .our-work-header {
    width: 100%;
}

.our-work-dt .section-container .section-content .section-row .our-work-header .section-header {
    margin-bottom: 20px;
}

@media screen and (min-width: 1200px) {
    .our-work-dt .section-container .section-content .section-row .our-work-header .section-header {
        margin-bottom: 40px;
    }
}

.location-dt {
    display: block;
}

@media screen and (min-width: 768px) {
    .location-dt .location-header-m {
        display: none;
    }
}

.location-dt .location-header-m .map-header {
    letter-spacing: 1px;
    padding: 15px 30px;
    color: #434241;
    font-size: 26px;
}

@media screen and (min-width: 400px) {
    .location-dt .location-header-m .map-header {
        font-size: 30px;
    }
}

@media screen and (min-width: 540px) {
    .location-dt .location-header-m .map-header {
        font-size: 38px;
    }
}

.location-dt .map-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .location-dt .map-wrapper {
        display: flex;
    }
}

.location-dt .map-wrapper .single-map {
    display: flex;
    height: 600px;
}

@media screen and (min-width: 768px) {
    .location-dt .map-wrapper .single-map {
        width: 100%;
        height: 500px;
    }
}

@media screen and (min-width: 1024px) {
    .location-dt .map-wrapper .single-map {
        width: 100%;
        height: 450px;
    }
}

@media screen and (min-width: 1200px) {
    .location-dt .map-wrapper .single-map {
        height: 500px;
    }
}

.location-dt .map-wrapper .single-map .map-graphic {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .location-dt .map-wrapper .single-map .map-graphic {
        object-fit: cover;
    }
}

@media screen and (min-width: 1024px) {
    .location-dt .map-wrapper .single-map .map-graphic {
        object-fit: initial;
    }
}

.location-dt .map-wrapper .single-map .map-d {
    display: none;
}

@media screen and (min-width: 768px) {
    .location-dt .map-wrapper .single-map .map-d {
        display: inline-block;
    }
}

@media screen and (min-width: 768px) {
    .location-dt .map-wrapper .single-map .map-m {
        display: none;
    }
}

.location-dt .map-wrapper .loc2-content {
    /*display: none;*/
}

@media screen and (min-width: 768px) {
    .location-dt .map-wrapper .loc2-content {
        display: flex;
    }
}

.location-dt .map-wrapper .map-overlay {
    display: none;
}

@media screen and (min-width: 768px) {
    .location-dt .map-wrapper .map-overlay {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
        display: block;
        top: 1rem;
    }
}

.location-dt .map-wrapper .map-overlay .map-header {
    font-size: 26px;
    color: #434241;
    position: relative;
    z-index: 1;
    text-align: center;
    letter-spacing: 1px;
}

@media screen and (min-width: 400px) {
    .location-dt .map-wrapper .map-overlay .map-header {
        font-size: 30px;
    }
}

@media screen and (min-width: 540px) {
    .location-dt .map-wrapper .map-overlay .map-header {
        font-size: 38px;
    }
}

.location-dt .map-wrapper .map-overlay .overlay-graphic {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 120%;
    z-index: 0;
}

@media screen and (min-width: 768px) {
    .location-dt .map-wrapper .map-overlay .overlay-graphic {
        transform: translate(-50%, -60%) rotate(90deg);
        width: 150%;
    }
}

@media screen and (min-width: 1200px) {
    .location-dt .map-wrapper .map-overlay .overlay-graphic {
        width: 170%;
    }
}

@media screen and (min-width: 1920px) {
    .location-dt .map-wrapper .map-overlay .overlay-graphic {
        width: 180%;
    }
}

.location-dt .section-container {
    position: static;
    left: initial;
    top: initial;
    transform: translate(0);
    max-width: initial;
    height: initial;
}

@media screen and (min-width: 768px) {
    .location-dt .section-container {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%);
        height: 100%;
        z-index: 10;
        width: 100%;
        padding: 0 30px;
    }
}

@media screen and (min-width: 1024px) {
    .location-dt .section-container {
        max-width: 866px;
    }
}

@media screen and (min-width: 1200px) {
    .location-dt .section-container {
        max-width: 1024px;
    }
}

@media screen and (min-width: 1440px) {
    .location-dt .section-container {
        max-width: 1200px;
    }
}

.location-dt .section-container .section-content {
    justify-content: flex-end;
    padding: 0;
}

.location-dt .section-container .section-content .section-row .row-el {
    background-color: #fff;
    box-shadow: 0 0 30px #888;
    padding: 15px 35px;
    width: fit-content;
    min-width: 40%;
    text-align: center;
    margin: 0 auto;
}

.location-dt .section-container .section-content .section-row .row-el .warehouse-location {
    color: #990c23;
    font-size: 14px;
    margin-bottom: 5px;
}

.location-dt .section-container .section-content .section-row .row-el .warehouse-info {
    font-size: 14px;
    color: #434241;
    line-height: 140%;
}

.location-dt .section-container .section-content .loc-d {
    display: none;
}

@media screen and (min-width: 768px) {
    .location-dt .section-container .section-content .loc-d {
        display: flex;
    }
}

@media screen and (min-width: 768px) {
    .location-dt .section-container .section-content .loc-d .row-el {
        min-height: 130px;
    }
}

@media screen and (min-width: 1200px) {
    .location-dt .section-container .section-content .loc-d .row-el {
        min-height: initial;
    }
}

@media screen and (min-width: 768px) {
    .location-dt .section-container .section-content .loc-m {
        display: none;
    }
}

.location-dt .section-container .section-content .loc-m .loc-buttons {
    display: flex;
    width: calc(100% + 60px);
    transform: translate(-30px);
}

.location-dt .section-container .section-content .loc-m .loc-buttons .btn-loc {
    width: 50%;
    color: #990c23;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 18px;
}

.location-dt .section-container .section-content .loc-m .loc-buttons .btn-active {
    box-shadow: 1px 1px 20px #999;
}

.location-dt .section-container .section-content .loc-m .loc-info {
    padding: 20px 0;
}

.location-dt .section-container .section-content .loc-m .loc-info .single-loc-info .warehouse-location {
    color: #990c23;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
}

.location-dt .section-container .section-content .loc-m .loc-info .single-loc-info .warehouse-info {
    line-height: 140%;
    text-align: center;
}

.slider-dt {
    color: #fff;
    background: url("../img/bg_slider_m.webp") no-repeat top;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .slider-dt {
        background: url("../img/bg_slider.webp") no-repeat top;
        background-size: cover;
    }
}

.slider-dt .section-container .section-content .section-row {
    align-items: flex-start;
}

.slider-dt .section-container .section-content .section-row .row-el .section-header {
    text-align: left;
    margin-bottom: 10px;
    font-size: 26px;
}

@media screen and (min-width: 400px) {
    .slider-dt .section-container .section-content .section-row .row-el .section-header {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 540px) {
    .slider-dt .section-container .section-content .section-row .row-el .section-header {
        font-size: 38px;
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .section-row .row-el .section-header {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .section-row .slider-header {
        width: 100%;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el {
    position: relative;
}

.slider-dt .section-container .section-content .slider-row .row-el .slider-video {
    position: relative;
}

.slider-dt .section-container .section-content .slider-row .row-el .slider-video .ytd-video_1 {
    width: 100%;
    height: 240px;
    margin-bottom: 30px;
}

@media screen and (min-width: 400px) {
    .slider-dt .section-container .section-content .slider-row .row-el .slider-video .ytd-video_1 {
        height: 280px;
    }
}

@media screen and (min-width: 540px) {
    .slider-dt .section-container .section-content .slider-row .row-el .slider-video .ytd-video_1 {
        height: 400px;
    }
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .slider-video .ytd-video_1 {
        box-shadow: 1px 1px 30px #000;
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0;
        height: 280px;
    }
}

@media screen and (min-width: 1024px) {
    .slider-dt .section-container .section-content .slider-row .row-el .slider-video .ytd-video_1 {
        height: 350px;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-photo {
    margin-bottom: 20px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-photo {
        margin-bottom: 10px;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-photo .s-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

@media screen and (min-width: 400px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-photo .s-photo {
        height: 550px;
    }
}

@media screen and (min-width: 540px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-photo .s-photo {
        height: 720px;
    }
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-photo .s-photo {
        height: 280px;
    }
}

@media screen and (min-width: 1024px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-photo .s-photo {
        height: 350px;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-photo .disting-triangle {
    position: absolute;
    left: 0;
    bottom: 0;
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-text .employee-copy {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 120%;
}

@media screen and (min-width: 540px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-text .employee-copy {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 140%;
    }
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-text .employee-copy {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-text .employee-name {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

@media screen and (min-width: 540px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-text .employee-name {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .single-slide .slide-text .employee-name {
        font-size: 14px;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots {
    bottom: -20px;
}

@media screen and (min-width: 400px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots {
        bottom: -40px;
    }
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots {
        bottom: initial;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots li {
    margin: 0 12px;
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots li {
        margin: initial;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots li button {
    width: initial;
    height: initial;
    padding: 0;
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots li button:before {
    content: '';
    display: inline-block;
    width: 19px;
    height: 19px;
    border: 2px solid #fff;
    opacity: 1;
    border-radius: 50%;
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots li button:before {
        width: 9px;
        height: 9px;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .employee-slider .slick-dots .slick-active button:before {
    border: 2px solid transparent;
    background-color: #fff;
}

.slider-dt .section-container .section-content .slider-row .row-el .slider-extras {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 1px 1px 30px #000;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media screen and (min-width: 768px) {
    .slider-dt .section-container .section-content .slider-row .row-el .slider-extras {
        display: block;
        height: 280px;
    }
}

@media screen and (min-width: 1024px) {
    .slider-dt .section-container .section-content .slider-row .row-el .slider-extras {
        height: 350px;
    }
}

.slider-dt .section-container .section-content .slider-row .row-el .slider-extras .slider-arrow {
    display: flex;
    position: absolute;
    right: 0;
    cursor: pointer;
    pointer-events: auto;
}

.slider-dt .section-container .section-content .slider-row .row-el .slider-extras .slider-prev {
    bottom: 0;
}

.slider-dt .section-container .section-content .slider-row .row-el .slider-extras .slider-next {
    bottom: 40px;
}

.offer-dt {
    color: #434241;
    background: url("../img/bg_offer_m.webp") no-repeat top;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .offer-dt {
        background: url("../img/bg_offer.webp") no-repeat top;
        background-size: cover;
    }
}

.offer-dt .section-container .section-content .section-row .row-el .section-header {
    text-align: left;
    margin-bottom: 20px;
    font-size: 26px;
}

@media screen and (min-width: 400px) {
    .offer-dt .section-container .section-content .section-row .row-el .section-header {
        font-size: 30px;
    }
}

@media screen and (min-width: 540px) {
    .offer-dt .section-container .section-content .section-row .row-el .section-header {
        font-size: 38px;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .offer-dt .section-container .section-content .section-row .offer-header {
        width: 100%;
    }
}

.offer-dt .section-container .section-content .section-row .offer-boxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.offer-dt .section-container .section-content .section-row .offer-boxes .single-box {
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 400px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box {
        display: block;
        width: 47%;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box {
        margin-bottom: 10px;
        width: 45%;
    }
}

@media screen and (min-width: 1024px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box {
        width: 19%;
    }
}

@media screen and (min-width: 1200px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box {
        margin-bottom: 20px;
    }
}

.offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-icon {
    background-color: #fff;
    box-shadow: 1px 1px 30px #666;
    height: 80px;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

@media screen and (min-width: 400px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-icon {
        height: 120px;
        width: initial;
    }
}

@media screen and (min-width: 540px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-icon {
        height: 160px;
    }
}

@media screen and (min-width: 1024px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-icon {
        height: 100px;
    }
}

@media screen and (min-width: 1200px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-icon {
        height: 150px;
    }
}

@media screen and (min-width: 1620px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-icon {
        height: 180px;
    }
}

.offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-icon img {
    align-self: center;
    max-height: 60%;
    max-width: 60%;
}

@media screen and (min-width: 1620px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-icon img {
        max-height: initial;
        max-width: initial;
    }
}

.offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-text {
    font-size: 12px;
    width: 65%;
}

@media screen and (min-width: 400px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-text {
        text-align: center;
        width: initial;
    }
}

@media screen and (min-width: 768px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-text {
        min-height: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-text {
        min-height: initial;
    }
}

.offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-text p {
    font-weight: 500;
}

.offer-dt .section-container .section-content .section-row .offer-boxes .single-box .box-text span {
    display: inline-block;
    /*width: 75%;*/
}

.work-system-dt {
    color: #fff;
    background: url("../img/bg_workSystem_m.webp") no-repeat top;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .work-system-dt {
        background: url("../img/bg_workSystem.webp") no-repeat top;
        background-size: cover;
    }
}

.work-system-dt .section-container .section-content .section-row .row-el .section-header {
    text-align: left;
    font-size: 26px;
    margin-bottom: 20px;
}

@media screen and (min-width: 400px) {
    .work-system-dt .section-container .section-content .section-row .row-el .section-header {
        font-size: 30px;
    }
}

@media screen and (min-width: 540px) {
    .work-system-dt .section-container .section-content .section-row .row-el .section-header {
        margin-bottom: 30px;
        font-size: 38px;
    }
}

@media screen and (min-width: 768px) {
    .work-system-dt .section-container .section-content .section-row .work-system-header {
        width: 100%;
    }
}

.work-system-dt .section-container .section-content .section-row .work-system-boxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes {
        flex-wrap: initial;
    }
}

@media screen and (min-width: 1024px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes {
        justify-content: center;
    }
}

.work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box {
    width: 47%;
    margin: 0 0 20px 0;
}

@media screen and (min-width: 540px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box {
        margin: 0 0 40px 0;
    }
}

@media screen and (min-width: 768px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box {
        margin: 0;
        width: 28%;
    }
}

@media screen and (min-width: 1024px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box {
        margin: 0 25px;
        width: 21%;
    }
}

.work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box:last-of-type {
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box:last-of-type {
        margin: 0;
    }
}

@media screen and (min-width: 1024px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box:last-of-type {
        margin: 0 25px;
    }
}

.work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box .box-icon {
    background-color: #fff;
    box-shadow: 1px 1px 30px #000;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

@media screen and (min-width: 400px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box .box-icon {
        height: 100px;
    }
}

@media screen and (min-width: 540px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box .box-icon {
        height: 150px;
    }
}

@media screen and (min-width: 1620px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box .box-icon {
        height: 180px;
    }
}

.work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box .box-icon img {
    align-self: center;
    max-height: 60%;
    max-width: 60%;
}

@media screen and (min-width: 1620px) {
    .work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box .box-icon img {
        max-height: initial;
        max-width: initial;
    }
}

.work-system-dt .section-container .section-content .section-row .work-system-boxes .single-box .box-text {
    font-size: 14px;
    text-align: center;
}

.process-dt {
    color: #434241;
    background: url("../img/bg_process_m.webp") no-repeat top;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .process-dt {
        background: url("../img/bg_process.webp") no-repeat top;
        background-size: cover;
    }
}

.process-dt .section-container .section-content .section-row .row-el .process-header {
    text-align: left;
    margin-bottom: 10px;
    font-size: 26px;
}

@media screen and (min-width: 400px) {
    .process-dt .section-container .section-content .section-row .row-el .process-header {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .section-row .row-el .process-header {
        margin-bottom: 30px;
        font-size: 38px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .section-row .row-el .process-header {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .section-row .recruitment-header {
        width: 100%;
    }
}

.process-dt .section-container .section-content .section-row .process-boxes {
    width: 100%;
    margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .section-row .process-boxes {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .process-dt .section-container .section-content .section-row .process-boxes {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 1620px) {
    .process-dt .section-container .section-content .section-row .process-boxes {
        margin-bottom: 80px;
    }
}

.process-dt .section-container .section-content .section-row .process-boxes .process-box {
    height: 80px;
    background-color: #fff;
    box-shadow: 1px 1px 20px #999;
    text-align: center;
    padding: 5px 20px;
    margin-bottom: 25px;
    position: relative;
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box {
        padding: 20px;
        height: 100px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box {
        box-shadow: 1px 1px 30px #666;
        width: 18%;
        height: 120px;
        padding: 0 10px;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box {
        padding: 0 10px;
        height: 150px;
    }
}

@media screen and (min-width: 1440px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box {
        height: 140px;
    }
}

.process-dt .section-container .section-content .section-row .process-boxes .process-box .process-stage {
    font-weight: 600;
    text-align: left;
    font-size: 14px;
}

@media screen and (min-width: 400px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box .process-stage {
        font-size: 16px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box .process-stage {
        text-align: center;
        font-size: 18px;
        line-height: 42px;
        font-weight: 700;
    }
}

@media screen and (min-width: 1200px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box .process-stage {
        line-height: 52px;
        font-size: 20px;
    }
}

.process-dt .section-container .section-content .section-row .process-boxes .process-box span {
    color: #e5006d;
    font-weight: 600;
    display: inline-block;
    line-height: 120%;
    width: 60%;
    font-size: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 400px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box span {
        font-size: 14px;
    }
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box span {
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box span {
        position: static;
        left: initial;
        top: initial;
        transform: initial;
        width: initial;
        font-size: 11px;
    }
}

@media screen and (min-width: 1024px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box span {
        font-size: 13px;
    }
}

@media screen and (min-width: 1440px) {
    .process-dt .section-container .section-content .section-row .process-boxes .process-box span {
        font-size: 15px;
    }
}

.process-dt .section-container .section-content .white-boxes-row {
    margin-bottom: 20px;
    align-items: flex-start;
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .white-boxes-row {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .process-dt .section-container .section-content .white-boxes-row {
        margin-bottom: 60px;
    }
}

@media screen and (min-width: 1620px) {
    .process-dt .section-container .section-content .white-boxes-row {
        margin-bottom: 100px;
    }
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el {
    margin-bottom: 20px;
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el {
        width: 48%;
        margin-bottom: 0;
    }
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el {
    width: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 20px #999;
    padding: 10px 30px;
}

@media screen and (min-width: 400px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el {
        padding: 25px 50px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el {
        box-shadow: 1px 1px 30px #666;
    }
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-header {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
    transform: translate(-20px);
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-header {
        margin-bottom: 20px;
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-header {
        font-size: initial;
    }
}

@media screen and (min-width: 1620px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-header {
        margin-bottom: 25px;
    }
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-list {
    list-style: none;
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-list li {
    margin-bottom: 8px;
    position: relative;
    font-size: 15px;
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-list li {
        margin-bottom: 12px;
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-list li {
        font-size: initial;
        margin-bottom: 8px;
    }
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-list li:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 5px;
    background-color: #e5006d;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-list li:before {
        top: 8px;
    }
}

@media screen and (min-width: 1620px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-list li {
        margin-bottom: 10px;
    }
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-conclusion {
    color: #e5006d;
    font-weight: 600;
    margin: 15px 0 0 0;
    font-size: 16px;
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-conclusion {
        font-size: 18px;
        margin: 20px 0 5px 0;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-conclusion {
        font-size: initial;
    }
}

@media screen and (min-width: 1620px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .white-box-el .white-box-conclusion {
        margin: 25px 0 5px 0;
    }
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el {
    width: 100%;
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el .section-header {
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 26px;
}

@media screen and (min-width: 400px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el .section-header {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el .section-header {
        margin-bottom: 40px;
        font-size: 38px;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el .section-header {
        padding-left: 30px;
        margin-bottom: 20px;
        font-size: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el .section-header {
        font-size: 38px;
    }
}

.process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el .section-header .br-d {
    display: none;
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el .section-header .br-d {
        display: block;
    }
}

@media screen and (min-width: 1620px) {
    .process-dt .section-container .section-content .white-boxes-row .row-pre-el .header-el .section-header {
        margin-bottom: 30px;
    }
}

.process-dt .section-container .section-content .process-annotation {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 120%;
}

@media screen and (min-width: 540px) {
    .process-dt .section-container .section-content .process-annotation {
        margin-bottom: 40px;
        font-size: 20px;
        line-height: 140%;
    }
}

@media screen and (min-width: 768px) {
    .process-dt .section-container .section-content .process-annotation {
        width: 80%;
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .process-dt .section-container .section-content .process-annotation {
        margin-bottom: 40px;
    }
}

.process-dt .section-container .section-content .process-annotation:last-of-type {
    margin-bottom: 0;
}

@media screen and (min-width: 1620px) {
    .process-dt .section-container .section-content .process-annotation {
        margin-bottom: 60px;
    }
}

.contact-dt {
    color: #fff;
    background: url("../img/bg_contact_m.webp") no-repeat top;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .contact-dt {
        background: url("../img/bg_contact.webp") no-repeat top;
        background-size: cover;
    }
}

.contact-dt .section-container .section-content .section-row .row-el .btn_application {
    background-color: #fff;
    color: #990c23;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    padding: 10px 5%;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 1px 1px 20px #333;
    width: 100%;
    letter-spacing: 1px;
    transition: all .4s;
}

@media screen and (min-width: 400px) {
    .contact-dt .section-container .section-content .section-row .row-el .btn_application {
        font-size: 18px;
        padding: 15px 10%;
    }
}

@media screen and (min-width: 540px) {
    .contact-dt .section-container .section-content .section-row .row-el .btn_application {
        padding: 15px 20%;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .contact-dt .section-container .section-content .section-row .row-el .btn_application {
        font-weight: 600;
        max-width: 250px;
        color: #e5006d;
        width: initial;
        padding: 10px 20px 15px 25px;
        font-size: 16px;
        letter-spacing: initial;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .contact-dt .section-container .section-content .section-row .row-el .btn_application {
        font-size: 17px;
        max-width: 280px;
    }
}

.contact-dt .section-container .section-content .section-row .row-el .btn_application:hover {
    background-color: transparent;
    color: #fff;
}

.contact-dt .section-container .section-content .section-row .row-el .contact-annotation {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 10px;
}

@media screen and (min-width: 400px) {
    .contact-dt .section-container .section-content .section-row .row-el .contact-annotation {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 540px) {
    .contact-dt .section-container .section-content .section-row .row-el .contact-annotation {
        font-size: 20px;
        line-height: 150%;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 768px) {
    .contact-dt .section-container .section-content .section-row .row-el .contact-annotation {
        margin-bottom: 15px;
        font-size: 14px;
    }
}

.contact-dt .section-container .section-content .section-row .row-el .contact-annotation a {
    color: #fff;
}

.contact-dt .section-container .section-content .section-row .row-el .section-header {
    font-size: 26px;
    margin-bottom: 10px;
    text-align: initial;
}

@media screen and (min-width: 400px) {
    .contact-dt .section-container .section-content .section-row .row-el .section-header {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 540px) {
    .contact-dt .section-container .section-content .section-row .row-el .section-header {
        margin-bottom: 30px;
        font-size: 38px;
    }
}

@media screen and (min-width: 768px) {
    .contact-dt .section-container .section-content .section-row .row-el .section-header {
        margin-bottom: 20px;
        padding-left: 0;
    }
}

.contact-dt .section-container .section-content .section-row .row-el .job-agencies {
    display: flex;
}

@media screen and (min-width: 768px) {
    .contact-dt .section-container .section-content .section-row .row-el .job-agencies {
        display: block;
    }
}

.contact-dt .section-container .section-content .section-row .row-el .job-agencies .job-agency {
    margin-bottom: 20px;
    width: 50%;
}

@media screen and (min-width: 768px) {
    .contact-dt .section-container .section-content .section-row .row-el .job-agencies .job-agency {
        width: initial;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 1200px) {
    .contact-dt .section-container .section-content .section-row .row-el .job-agencies .job-agency {
        margin-bottom: 20px;
    }
}

.contact-dt .section-container .section-content .section-row .row-el .job-agencies .job-agency h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
    .contact-dt .section-container .section-content .section-row .row-el .job-agencies .job-agency h4 {
        font-size: 24px;
        margin-bottom: 0;
    }
}

.contact-dt .section-container .section-content .section-row .row-el .job-agencies .word-or {
    display: none;
}

@media screen and (min-width: 768px) {
    .contact-dt .section-container .section-content .section-row .row-el .job-agencies .word-or {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
    }
}

@media screen and (min-width: 1200px) {
    .contact-dt .section-container .section-content .section-row .row-el .job-agencies .word-or {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 768px) {
    .contact-dt .section-container .section-content .section-row .contact-el-left {
        padding-right: 10%;
    }
}

.contact-dt .section-container .section-content .contact-row {
    align-items: initial;
}
