/* ========================================
   ZENRIN DataCom - Bootstrap Custom Styles
   ======================================== */

.container {
    max-width: 1200px;
}

.w-95 {
    width: 95%;
}


/* NAVI and Footer MENU ICON */
.title-links {
    position: relative;
    display: inline-block;
    top: -2px;
}

.title-links::before,
.title-links::after {
    content: "";
    background: #fff;
    border-radius: 999px;
    width: 10px;
    height: 3px;
    position: absolute;
    right: -20px;
}

.title-links::before {
    top: 5px;
    transform: rotate(45deg);
}

.title-links::after {
    top: 10px;
    transform: rotate(-45deg);
}

.outlinks {
    padding-right: 20px;
    margin-bottom: -1px;
    background: url(../images/outlinks.svg) right top 2px/16px auto no-repeat;
}

/* NAVI */
#mobileMenu .title-links::before,
#mobileMenu .title-links::after {
    width: 14px;
    right: -20px;
}

#mobileMenu .title-links::before {
    top: 12px;
}

#mobileMenu .title-links::after {
    top: 21px;
}

#mobileMenu .outlinks {
    padding-right: 25px;
    margin-bottom: -1px;
    background: url(../images/outlinks.svg) right top 3px/19px auto no-repeat;
}

/* Reset and Base Styles */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    max-width: 1200px;
    margin: auto;
    border-radius: 0 0 30px 30px;
}

.logo-text {
    max-width: 200px;
    overflow: hidden;
    display: block;
    height: 13.19px;
}

.logo-text img {
    vertical-align: top;
}

.logo-subtext {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
}

.xsmall {
    font-size: .75em;
}

.t-shadow {
    text-shadow: 0 0 7px rgb(0 195 255/0.5);
}

/* Navigation Buttons */
.nav-btn {
    text-decoration: none;
    padding: 15px 5px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-btn-blue {
    background: #207fdd;
    color: #fff;
}

.nav-btn-blue:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
    color: #fff;
}

.nav-btn-orange {
    background: #FF9800;
    color: #fff;
}

.nav-btn-orange:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
    color: #fff;
}

/* Hamburger Menu */
.hamburger-menu {
    background: #207fdd;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: 10px;
    transition: transform 0.3s;
    width: 44px;
    height: 44px;
    border-radius: 4px;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile-menu-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border: none;
    font-size: 32px;
    color: #207fdd;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 300;
    z-index: 10000;
    opacity: 0;
    transform: scale(0.8);
}

.mobile-menu.active .mobile-menu-close {
    animation: slideInButton 0.5s ease 0.3s forwards;
}

@keyframes slideInButton {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mobile-menu-close:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-content {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    opacity: 0;
    transform: translateY(30px);
}

.mobile-menu.active .mobile-menu-content {
    animation: slideInContent 0.8s ease 0.2s forwards;
}

@keyframes slideInContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
}

.menu-section {
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .menu-section {
    animation: fadeInUp 0.6s ease forwards;
}

.mobile-menu.active .menu-section:nth-child(1) {
    animation-delay: 0.4s;
}

.mobile-menu.active .menu-section:nth-child(2) {
    animation-delay: 0.5s;
}

.mobile-menu.active .menu-section:nth-child(3) {
    animation-delay: 0.6s;
}

.mobile-menu.active .menu-section:nth-child(4) {
    animation-delay: 0.7s;
}

.mobile-menu.active .menu-section:nth-child(5) {
    animation-delay: 0.8s;
}

.mobile-menu.active .menu-section:nth-child(6) {
    animation-delay: 0.9s;
}

.mobile-menu.active .menu-section:nth-child(7) {
    animation-delay: 1s;
}

.mobile-menu.active .menu-section:nth-child(8) {
    animation-delay: 1.1s;
}

.mobile-menu.active .menu-entry {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-main-link {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.menu-main-link:hover {
    opacity: 0.8;
}

.menu-title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.menu-sub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.menu-sub-link {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s;
    position: relative;
    padding: 0 15px;
}

.menu-sub-link::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #b8fefd;
    font-weight: bold;
}

.menu-sub-link:hover {
    opacity: 0.8;
}

.menu-entry {
    margin-top: 30px;
    transform: translateY(20px);
    position: relative;
}

.menu-entry-btn {
    background: #FF9800;
    color: #fff;
    padding: 18px 60px;
    position: relative;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s;
    letter-spacing: 2px;
    min-width: 340px;
}

.menu-entry-btn:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
    color: #fff;
}

.entry-arrow {
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
}

/*COMMON Section */
.main-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 2px #207fdd;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.main-hero-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 2px #207fdd;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    background: url("../images/hero-bg.png")no-repeat top center/cover;
    padding: 250px 0 150px;
    margin-top: -100px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #333;
    line-height: 1.4;
    letter-spacing: 1.25px;
}

.hero-illustration {
    max-width: 800px;
    width: 100%;
    height: auto;
}

/* City Skyline Section */
.city-skyline {
    background-color: #9fd8f6;
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-image: url('../images/city-skyline-bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: repeat-x;
    /* アニメーション名 */
    animation: loop-slide 20s infinite linear 0s both;
}

@keyframes loop-slide {
    from {
        background-position: top left 0%;
    }

    to {
        background-position: top left 100%;
    }
}

.city-img {
    position: relative;
    margin-bottom: -20px;
    z-index: 5;
    max-width: 1000px;
}

/* Main Message Section */
.main-message {
    background: #fff;
    border-bottom: 8px solid #f2f2f2;
}

.message-title {
    font-size: 32px;
    font-weight: 700;
    color: #207fdd;
    margin-bottom: 30px;
    line-height: 1.5;
}

.message-text {
    font-size: 20px;
    color: #555;
    line-height: 2;
    margin-bottom: 40px;
}

/* Custom Bootstrap Button */
.btn-custom-primary {
    background: #207fdd;
    color: #fff;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    min-width: 250px;
    position: relative;
}

.btn-custom-primary::before {
    content: "";
    background: url(../images/arrow02.svg)no-repeat top center/100%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
}

.btn-custom-primary:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    color: #fff;
}

/* Feature Boxes */
.feature-boxes {
    background: url('../images/feature-boxes-bg.jpg')no-repeat top center/cover;
    background-color: #f8f9fa;
    padding: 100px 0 200px;
    margin-bottom: -100px;
    overflow: hidden;
}

.feature-box {
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 220px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.feature-boxes .card-text {
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-boxes .card-body {
    padding: 30px;
}

.box-title {
    font-size: 30px;
    font-weight: 700;
    color: #207fdd;
    margin-bottom: 15px;
}

.box-text {
    font-size: 19px;
    color: #666;
    line-height: 1.8;
}

.box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
}

.box-icon::before {
    content: "";
    background: url("../images/arrow01.svg")no-repeat top center/100%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.box-link,
.interview-link,
.benefit-link,
.news-link {
    display: inline-flex;
    align-items: center;
    color: #207fdd;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.box-link:hover,
.interview-link:hover,
.benefit-link:hover,
.news-link:hover {
    transform: translateX(5px);
    color: #1565C0;
}

.link-icon {
    font-size: 24px;
    color: #207fdd;
}

/* Dark Cards Section */
.dark-cards {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    border-radius: 80px;
    padding: 100px 0;
    margin-bottom: -100px;
    position: relative;
    z-index: 5;
}

.dark-card .card-body {
    aspect-ratio: 1;
}

.dark-card .card-left {
    padding: 40px 0 0 40px;
}

.dark-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    aspect-ratio: 1/1;
    text-decoration: none;
    display: block;
    position: relative;
}

.dark-card.bg01 {
    background: url("../images/dark-cards01.png")no-repeat top center/cover;
}

.dark-card.bg02 {
    background: url("../images/dark-cards02.png")no-repeat top center/cover;
}

.dark-card:hover {
    transform: translateY(-5px);
}

.dark-card .card-title {
    font-size: 35px;
    color: #000;
}

.dark-card .card-text {
    font-size: 14px;
    color: #207fdd;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: .5rem;
}

.dark-card .card-sub-text {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    position: relative;
    margin-bottom: 0;
}

.dark-card::before {
    content: "";
    height: 45px;
    width: 45px;
    background: url("../images/arrow02.svg")no-repeat top center/100%;
    position: absolute;
    right: 45px;
    bottom: 45px;
}

.dark-card .card-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: #207fdd;
    border-radius: 9999px;
}

.dark-card .card-link:hover {
    color: #E3F2FD;
}

/* Interview Section */
.interview {
    background: url("../images/hero-bg.png")no-repeat top center/100%, url("../images/city.png")repeat-x bottom center/50%;
    background-color: #fff;
    padding: 200px 0 200px;
}

.section-sub-title {
    font-size: 22px;
    font-weight: bold;
    color: #207fdd;
}

.section-title {
    font-size: 50px;
    font-weight: bold;
    color: #333;
}

.interview-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    position: relative;
}

.interview-card::before {
    content: "";
    height: 40px;
    width: 40px;
    background: url("../images/arrow03.svg")no-repeat top center/100%;
    position: absolute;
    right: 10px;
    bottom: 10px;

}

.interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.interview-img {
    height: 250px;
    object-fit: cover;
}

.interview-text {
    font-size: 15px;
    font-weight: bold;
    color: #207fdd;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 50px;
}

.interview-name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.interview-position {
    font-size: 13px;
    color: #999;
}

/* Interview Category Badge */
.interview-category-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Interview Swiper Customization */
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    padding: 20px 0;
}

.interview-swiper-container {
    padding: 0 0;
    z-index: 10;
}

.navigation-zone {
    position: absolute;
    top: -50px;
    right: 15%;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.interview-button-prev,
.interview-button-next {
    width: 50px;
    height: 50px;
    background: #207fdd;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.interview-button-prev:hover,
.interview-button-next:hover {
    background: #1565C0;
    transform: scale(1.1);
}

.interview-button-prev {
    right: -50%;
}

.interview-button-next {
    right: 0;
}

.interview-button-prev::after,
.interview-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.swiper-button-disabled:hover {
    transform: translateY(-50%) scale(1) !important;
}

@media (max-width: 768px) {
    .interview {
        padding: 100px 0 100px;
    }

    .interview-swiper-container {
        padding: 0 50px;
    }

    .navigation-zone {
        position: absolute;
        top: initial;
        right: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        gap: 20px;
        width: 100%;
        justify-content: center;
    }

    .interview-button-prev,
    .interview-button-next {
        width: 40px;
        height: 40px;
    }

    .interview-button-prev::after,
    .interview-button-next::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .interview-swiper-container {
        padding: 0 40px;
    }

    .interview-button-prev,
    .interview-button-next {
        width: 35px;
        height: 35px;
    }
}

/* Career and Benefits Section */
.career-benefits {
    background: url("../images/career-benefits-bg.jpg")no-repeat bottom right/cover;
    background-color: #fff;
    padding: 100px 0;
}

.benefit-card {
    background: #e2f4fc;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    padding: 50px 30px;
    position: relative;
}

.benefit-card::before {
    content: "";
    height: 40px;
    width: 40px;
    background: url("../images/arrow02.svg")no-repeat top center/100%;
    background-color: #fff;
    border-radius: 999px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.benefit-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* News Section */
.news {
    background: #f3f9fb;
    padding: 100px 0;
}

.news-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.news-img {
    height: 200px;
    object-fit: cover;
}

.news-tag {
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid #000;
    border-radius: 999px;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    color: #207fdd;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-date {
    font-size: 13px;
}

/* CTA Section */
.cta {
    background: url("../images/cta-bg.jpg")no-repeat top center/cover;
    padding: 100px 0;
    border-radius: 80px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.cta .btn {
    width: 100%;
    aspect-ratio: 2.5/1;
    color: #fff;
    padding: 20px 60px;
    border: 2px solid #fff;
    font-weight: bold;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
}

.cta .btn::before {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    content: "";
    height: 40px;
    width: 40px;
    background: url("../images/arrow04.svg")no-repeat top center/100%;
}

.btn-cta-blue {
    background: #207fdd;
}

.btn-cta-blue:hover {
    background: #fff;
    color: #207fdd;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-orange {
    background: #FF9800;
}

.btn-cta-orange:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
    color: #FF9800;
}

.btn-icon {
    font-size: 20px;
}

/* Closing Message */
.closing-message {
    background: url("../images/city.png")no-repeat bottom 40px center/1000px,
        url("../images/closing-message-bg.jpg")no-repeat top center/cover;
    background-blend-mode: overlay;
    padding: 200px 0 250px;
    margin-bottom: -50px;
}

.closing-title {
    font-size: 36px;
    font-weight: 700;
    color: #207fdd;
    text-align: center;
}

/* Footer */
.footer {
    background: #207fdd;
    color: #fff;
    padding: 60px 0 0;
    border-radius: 50px 50px 0 0;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 12px;
    color: #fff;
}

/* Responsive Design */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.mpc {
    display: block !important;
}

.msp {
    display: none !important;
}

@media (max-width: 991px) {
    .mpc {
        display: none !important;
    }

    .msp {
        display: block !important;
    }

    .hero {
        padding: 150px 0 50px;
    }

    .hero-title {
        position: static;
        left: 0;
        top: 0;
        transform: translate(0, 0);
    }

    .main-hero-title {
        font-size: 36px;
    }

    .dark-cards {
        border-radius: 50px;
    }

    .dark-card {
        aspect-ratio: unset;
    }

    .dark-card .card-text {}
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .main-hero-title {
        font-size: 28px;
    }

    .dark-card .card-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 30px;
    }

    .message-title {
        font-size: 24px;
    }

    .career-benefits .card-body {
        flex-wrap: wrap;
    }

    /* City Skyline Section */
    .city-skyline {
        min-height: 150px;
        animation: loop-slide 35s infinite linear 0s both;
    }

    /* CTA Section */
    .cta {
        padding: 50px 0 20px;
        border-radius: 25px;
    }

    .cta-title {
        font-size: 28px;
    }

    .dark-card .card-left {
        padding: .75rem 0 0 .75rem;
    }

    /* Feature Boxes */
    .feature-boxes {
        padding: 50px 0 150px;
        margin-bottom: -100px;
        overflow: hidden;
    }

    /* Dark Cards Section */
    .dark-cards {
        border-radius: 25px;
        padding: 50px 0;
        margin-bottom: -50px;
        position: relative;
        z-index: 5;
    }

    /* Career and Benefits Section */
    .career-benefits {
        padding: 50px 0;
    }

    /* News Section */
    .news {
        padding: 50px 0;
    }

    /* Closing Message */
    .closing-message {
        padding: 100px 0 150px;
        margin: 0 auto -60px;
    }

    /* Footer */
    .footer {
        border-radius: 30px 30px 0 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .main-hero-title {
        font-size: 28px;
    }
}

/* MOVING */
.sa {
    opacity: 0;
    transition: all .5s ease;
}

.sa.show {
    opacity: 1;
}

.sa--lr.show,
.sa--rl.show,
.sa--up.show,
.sa--down.show,
.sa--scaleUp.show,
.sa--scaleDown.show,
.sa--rotateL.show,
.sa--rotateR.show {
    transform: none;
}

.sa--lr {
    transform: translate(-100px, 0);
}

.sa--rl {
    transform: translate(100px, 0);
}

.sa--up {
    transform: translate(0, 100px);
}

.sa--down {
    transform: translate(0, -100px);
}

.sa--scaleUp {
    transform: scale(.5);
}

.sa--scaleDown {
    transform: scale(1.5);
}

.sa--rotateL {
    transform: rotate(180deg);
}

.sa--rotateR {
    transform: rotate(-180deg);
}