@charset "UTF-8";

.ss-layout-header {
    background: #fff;
}

.ss-layout-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    height: 70px;
    margin: 0 auto;
}

@media screen and (max-width: 1600px) {
    .ss-layout-header-content {
        height: 60px;
        padding: 0 calc(40vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-layout-header-content {
        justify-content: center;
        padding: 0 calc(20vw * 100 / 1600);
    }
}

.ss-layout-header-logo {
    display: inline-block;
    margin-right: 10px;
}

@media screen and (max-width: 1600px) {
    .ss-layout-header-logo {
        height: 20px;
    }
    .ss-layout-header-logo > img {
        height: 100%;
        vertical-align: top;
    }
}

@media screen and (max-width: 1024px) {
    .ss-layout-header-logo {
        margin-right: 0;
    }
}

.ss-layout-header-body {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-left: auto;
}

.ss-layout-header-body > *:last-child {
    margin-bottom: 0;
}

.ss-layout-footer {
    height: 45px;
}

@media screen and (max-width: 1024px) {
    .ss-layout-footer {
        height: auto;
    }
}

.ss-layout-footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .ss-layout-footer-content {
        display: block;
        padding: 10px 0;
    }
}

@media screen and (max-width: 1024px) {
    .ss-layout-footer-body {
        margin-bottom: 10px;
        padding: 0 20px 10px;
        border-bottom: 1px solid #999;
    }
}

.ss-layout-footer-body > *:last-child {
    margin-bottom: 0;
}

.ss-layout-footer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
    line-height: 1.35;
}

@media screen and (max-width: 1024px) {
    .ss-layout-footer-list {
        padding: 0 20px;
    }
}

.ss-layout-footer-list > li {
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
}

@media screen and (max-width: 1024px) {
    .ss-layout-footer-list > li:first-child {
        order: 3;
        width: 100%;
        margin-top: 4px;
        margin-right: 0;
        padding-right: 0;
        text-align: center;
    }
    .ss-layout-footer-list > li:first-child::after {
        content: none;
    }
}

.ss-layout-footer-list > li::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 60%;
    transform: translateY(-50%);
    background: #333;
    content: "";
}

.ss-layout-footer-list > li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.ss-layout-footer-list > li:last-child::after {
    content: none;
}

.ss-layout-footer-list > li a {
    text-decoration: none;
}

.ss-layout-footer-list > li a:visited, .ss-layout-footer-list > li a:link {
    color: #333;
}

.ss-layout-main {
    height: calc(100vh - (70px + 50px));
    background: #2b2f4c linear-gradient(135deg, #2b2f4c 0%, #2b2f4c 30%, #61626a 70%, #61626a 100%);
}

@media screen and (max-width: 1600px) {
    .ss-layout-main {
        height: calc(100vh - (60px + 45px));
    }
}

@media screen and (max-width: 1024px) {
    .ss-layout-main {
        height: auto;
    }
}

@media screen and (max-width: 639px) {
    .ss-layout-main {
        background: #2b2f4c linear-gradient(123deg, #2b2f4c 25%, #61626a 54%, #61626a 100%);
    }
}

.ss-layout-main-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1600px) {
    .ss-layout-main-content {
        padding: 0 calc(40vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-layout-main-content {
        flex-direction: column-reverse;
        padding: 20px 20px 32px;
    }
}

@media screen and (max-width: 639px) {
    .ss-layout-main-content {
        padding: calc(12vw * 100 / 360) calc(20vw * 100 / 360) calc(32vw * 100 / 360);
    }
}

.ss-layout-main-body {
    width: 100%;
    max-width: 783px;
}

@media screen and (max-width: 1600px) {
    .ss-layout-main-body {
        max-width: calc(783vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-layout-main-body {
        max-width: calc(783vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-layout-main-body {
        max-width: none;
    }
}

.ss-layout-main-body > *:last-child {
    margin-bottom: 0;
}

.ss-layout-main-image {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px 0;
    text-align: center;
}

.ss-layout-main-image > img {
    flex-shrink: 0;
    max-height: 100%;
}

@media screen and (max-width: 1600px) {
    .ss-layout-main-image {
        margin-right: calc(20vw * 100 / 1600);
        padding: calc(20vw * 100 / 1600) 0 calc(10vw * 100 / 1600);
    }
    .ss-layout-main-image > img {
        max-width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .ss-layout-main-image {
        flex: auto;
        max-width: 500px;
        margin-right: 0;
        margin-bottom: 16px;
        padding: 0;
    }
}

@media screen and (max-width: 639px) {
    .ss-layout-main-image {
        max-width: calc(216vw * 100 / 360);
        margin-bottom: calc(10vw * 100 / 360);
    }
    .ss-layout-main-image > img {
        width: 100%;
    }
}

.ss-layout-grid {
    display: flex;
}

@media screen and (max-width: 639px) {
    .ss-layout-grid {
        display: block;
    }
}

.ss-layout-grid-column {
    width: 50%;
    padding: 0 24px;
}

@media screen and (max-width: 639px) {
    .ss-layout-grid-column {
        width: 100%;
        padding: calc(16vw * 100 / 360) 0;
    }
}

.ss-layout-grid-column:first-child {
    padding-left: 0;
}

@media screen and (max-width: 639px) {
    .ss-layout-grid-column:first-child {
        padding-top: 0;
    }
}

.ss-layout-grid-column:last-child {
    padding-right: 0;
}

@media screen and (max-width: 639px) {
    .ss-layout-grid-column:last-child {
        padding-bottom: 0;
    }
}

.ss-layout-grid.of-border .ss-layout-grid-column {
    border-left: #4e4e4e 1px solid;
}

.ss-layout-grid.of-border .ss-layout-grid-column:first-child {
    border-left: 0;
}

@media screen and (max-width: 639px) {
    .ss-layout-grid.of-border .ss-layout-grid-column {
        border-top: #4e4e4e 1px solid;
        border-left: 0;
    }
    .ss-layout-grid.of-border .ss-layout-grid-column:first-child {
        border-top: 0;
    }
}

.ss-jumbotron {
    margin-bottom: 20px;
}

@media screen and (max-width: 1600px) {
    .ss-jumbotron {
        margin-bottom: calc(20vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-jumbotron {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 639px) {
    .ss-jumbotron {
        margin-bottom: calc(24vw * 100 / 360);
    }
}

.ss-jumbotron-title {
    display: block;
    margin-bottom: 10px;
    font-size: 56px;
    line-height: 1.25;
}

@media screen and (max-width: 1600px) {
    .ss-jumbotron-title {
        margin-bottom: calc(10vw * 100 / 1600);
        font-size: calc(56vw * 100 / 1600);
    }
}

@media screen and (max-height: 780px) and (max-width: 1920px) {
    .ss-jumbotron-title {
        font-size: calc(40vh * 100 / 700);
    }
}

@media screen and (max-width: 1024px) {
    .ss-jumbotron-title {
        margin-bottom: 10px;
        font-size: calc(56vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-jumbotron-title {
        margin-bottom: calc(10vw * 100 / 360);
        font-size: calc(32vw * 100 / 360);
    }
}

.ss-jumbotron-titleGroup {
    color: #fff;
    text-align: center;
    text-shadow: 4px 4px 4px #272b47;
}

.ss-jumbotron-subtitle {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
}

@media screen and (max-width: 1600px) {
    .ss-jumbotron-subtitle {
        margin-bottom: calc(6vw * 100 / 1600);
        font-size: calc(24vw * 100 / 1600);
    }
}

@media screen and (max-height: 780px) and (max-width: 1920px) {
    .ss-jumbotron-subtitle {
        font-size: calc(20vh * 100 / 700);
    }
}

@media screen and (max-width: 1024px) {
    .ss-jumbotron-subtitle {
        margin-bottom: 6px;
        font-size: calc(24vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-jumbotron-subtitle {
        margin-bottom: calc(6vw * 100 / 360);
        font-size: calc(18vw * 100 / 360);
    }
}

.ss-jumbotron-seriesText {
    display: block;
    font-size: 24px;
}

@media screen and (max-width: 1600px) {
    .ss-jumbotron-seriesText {
        font-size: calc(24vw * 100 / 1600);
    }
}

@media screen and (max-height: 780px) and (max-width: 1920px) {
    .ss-jumbotron-seriesText {
        font-size: calc(20vh * 100 / 700);
    }
}

@media screen and (max-width: 1024px) {
    .ss-jumbotron-seriesText {
        font-size: calc(24vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-jumbotron-seriesText {
        margin-bottom: calc(6vw * 100 / 360);
        font-size: calc(18vw * 100 / 360);
    }
}

.AutoPhoneCall {
    cursor: default;
}

.ss-textTelephone {
    display: flex;
    align-items: center;
    line-height: 1.35;
}

@media screen and (max-width: 1024px) {
    .ss-textTelephone {
        font-size: 18px;
    }
}

.ss-textTelephone-body {
    margin-left: 13px;
    color: #fd0836;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.1;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .ss-textTelephone-body {
        font-size: 20px;
    }
}

.ss-textTelephone dd {
    margin-left: 13px;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .ss-textTelephone dd {
        font-size: 20px;
    }
}

.ss-textTelephone dd a {
    display: inline-block;
    color: #fd0836;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.1;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .ss-textTelephone dd a {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .ss-layout-footer .ss-textTelephone {
        display: block;
        flex-direction: column;
        text-align: center;
    }
    .ss-layout-footer .ss-textTelephone-body {
        display: block;
        margin-left: 0;
    }
}

.ss-textLink {
    display: inline-block;
    color: #ccc;
    font-size: 24px;
    line-height: 1.25;
    text-decoration: none;
}

@media screen and (max-width: 1600px) {
    .ss-textLink {
        font-size: calc(24vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-textLink {
        font-size: calc(24vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-textLink {
        font-size: calc(18vw * 100 / 360);
    }
}

.ss-textLink > em {
    display: inline-block;
    text-decoration: underline;
}

@media screen and (max-width: 639px) {
    .ss-textLink-outer {
        padding: 0 calc(20vw * 100 / 360);
    }
}

.ss-textLink.of-arrow {
    position: relative;
    padding-left: 28px;
}

.ss-textLink.of-arrow:hover {
    color: #fff;
}

.ss-textLink.of-arrow:hover::before {
    border-color: transparent transparent transparent #fff;
}

.ss-textLink.of-arrow::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-width: 9px 0 9px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #ccc;
    background: none;
    content: "";
}

@media screen and (max-width: 1600px) {
    .ss-textLink.of-arrow {
        padding-left: calc(28vw * 100 / 1600);
    }
    .ss-textLink.of-arrow::before {
        border-width: calc(9vw * 100 / 1600) 0 calc(9vw * 100 / 1600) calc(15vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-textLink.of-arrow {
        padding-left: calc(26vw * 100 / 1024);
    }
    .ss-textLink.of-arrow::before {
        border-width: calc(7vw * 100 / 1024) 0 calc(7vw * 100 / 1024) calc(13vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-textLink.of-arrow {
        padding-left: calc(24vw * 100 / 360);
    }
    .ss-textLink.of-arrow::before {
        border-width: calc(7vw * 100 / 360) 0 calc(7vw * 100 / 360) calc(13vw * 100 / 360);
    }
}

@media screen and (max-width: 1024px) {
    .ss-smallScreen-textAlign-center {
        text-align: center;
    }
}

@media screen and (max-width: 639px) {
    .ss-extraSmallScreen-textAlign-left {
        text-align: left;
    }
}

.ss-card {
    margin-bottom: 40px;
}

@media screen and (max-width: 1600px) {
    .ss-card {
        margin-bottom: calc(40vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-card {
        margin-bottom: calc(40vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-card {
        margin-bottom: calc(32vw * 100 / 360);
    }
}

.ss-card-title {
    padding: 7px 22px;
    background: #3e43e1 linear-gradient(to right, #b100fd, #3e43e1);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.25;
    text-align: center;
}

@media screen and (max-width: 639px) {
    .ss-card-title {
        padding: calc(7vw * 100 / 360) calc(21vw * 100 / 360);
    }
}

@media screen and (max-width: 1600px) {
    .ss-card-title {
        font-size: calc(30vw * 100 / 1600);
    }
}

@media screen and (max-height: 780px) and (max-width: 1920px) {
    .ss-card-title {
        font-size: calc(20vh * 100 / 700);
    }
}

@media screen and (max-width: 1024px) {
    .ss-card-title {
        font-size: calc(30vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-card-title {
        font-size: calc(22vw * 100 / 360);
    }
}

.ss-card-body {
    padding: 24px 26px;
    background: #fff;
    color: #333;
}

@media screen and (max-width: 1600px) {
    .ss-card-body {
        padding: calc(24vw * 100 / 1600) calc(26vw * 100 / 1600);
    }
}

@media screen and (max-height: 780px) and (max-width: 1920px) {
    .ss-card-body {
        padding: calc(10vh * 100 / 700) calc(22vh * 100 / 700);
    }
}

@media screen and (max-width: 1024px) {
    .ss-card-body {
        padding: calc(24vw * 100 / 1024) calc(26vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-card-body {
        padding: calc(20vw * 100 / 360) calc(17vw * 100 / 360);
    }
}

.ss-figure {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
}

.ss-figure-image {
    flex-shrink: 0;
    margin-bottom: 4px;
}

@media screen and (max-width: 639px) {
    .ss-figure-image {
        margin-bottom: 0;
    }
}

.ss-figure-caption {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width: 1600px) {
    .ss-figure-caption {
        font-size: calc(22vw * 100 / 1600);
    }
}

@media screen and (max-height: 780px) and (max-width: 1920px) {
    .ss-figure-caption {
        font-size: calc(18vh * 100 / 700);
    }
}

@media screen and (max-width: 1024px) {
    .ss-figure-caption {
        font-size: calc(24vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-figure-caption {
        font-size: calc(20vw * 100 / 360);
    }
}

.ss-listButton {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

@media screen and (max-width: 1600px) {
    .ss-listButton {
        margin-bottom: calc(28vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-listButton {
        margin-bottom: calc(28vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-listButton {
        display: block;
        margin-bottom: calc(28vw * 100 / 360);
        padding: 0 calc(20vw * 100 / 360);
        text-align: center;
    }
}

.ss-listButton > li {
    display: flex;
    width: 100%;
    max-width: 420px;
}

@media screen and (max-width: 1600px) {
    .ss-listButton > li {
        max-width: calc(410vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-listButton > li {
        max-width: calc(410vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-listButton > li {
        max-width: none;
        margin-bottom: calc(22vw * 100 / 360);
    }
    .ss-listButton > li:last-child {
        margin-bottom: 0;
    }
}

.ss-listButton > li > .ss-buttonConversion {
    display: flex;
    width: 100%;
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 639px) {
    .ss-listButton > li > .ss-buttonConversion {
        display: inline-block;
    }
}

.ss-listButton > li > .ss-buttonConversion .ss-buttonConversion-body {
    width: 100%;
}

.ss-listButton > li:last-child {
    margin-right: 0;
}

.ss-buttonConversion {
    display: inline-block;
    min-width: 280px;
    background: #ff163c;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion {
        min-width: calc(280vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-buttonConversion {
        min-width: calc(280vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion {
        min-width: auto;
        min-height: calc(80vw * 100 / 360);
    }
}

.ss-buttonConversion.of-inquiry {
    background: #0ac29d;
}

.ss-buttonConversion.of-inquiry .ss-buttonConversion-body {
    padding: 24px 33px 24px 36px;
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion.of-inquiry .ss-buttonConversion-body {
        padding: calc(24vw * 100 / 1600) calc(33vw * 100 / 1600) calc(24vw * 100 / 1600) calc(36vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-buttonConversion.of-inquiry .ss-buttonConversion-body {
        padding: calc(24vw * 100 / 1024) calc(33vw * 100 / 1024) calc(24vw * 100 / 1024) calc(36vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion.of-inquiry .ss-buttonConversion-body {
        padding: calc(14vw * 100 / 360) calc(14vw * 100 / 360) calc(14vw * 100 / 360) calc(20vw * 100 / 360);
    }
}

.ss-buttonConversion.of-inquiry .ss-buttonConversion-body::before {
    width: 0;
    height: 0;
    border-width: 9px 0 9px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    background: none;
    content: "";
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion.of-inquiry .ss-buttonConversion-body::before {
        border-width: calc(9vw * 100 / 1600) 0 calc(9vw * 100 / 1600) calc(15vw * 100 / 1600);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion.of-inquiry .ss-buttonConversion-body::before {
        border-width: calc(7vw * 100 / 360) 0 calc(7vw * 100 / 360) calc(12vw * 100 / 360);
    }
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion.of-inquiry .ss-buttonConversion-image {
        width: calc(40vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-buttonConversion.of-inquiry .ss-buttonConversion-image {
        width: calc(40vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion.of-inquiry .ss-buttonConversion-image {
        width: calc(36vw * 100 / 360);
    }
}

.ss-buttonConversion-body {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 6px 15px 6px 33px;
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion-body {
        padding: calc(6vw * 100 / 1600) calc(10vw * 100 / 1600) calc(6vw * 100 / 1600) calc(33vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-buttonConversion-body {
        padding: calc(6vw * 100 / 1024) calc(10vw * 100 / 1024) calc(6vw * 100 / 1024) calc(33vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion-body {
        padding: calc(10vw * 100 / 360) calc(10vw * 100 / 360) calc(10vw * 100 / 360) calc(17vw * 100 / 360);
    }
}

.ss-buttonConversion-body::before {
    display: block;
    width: 20px;
    height: 19px;
    margin-right: 14px;
    background: url("../../../../../img/landing_page/common/icon_btn_dl.png") no-repeat center;
    content: "";
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion-body::before {
        margin-right: calc(14vw * 100 / 1600);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion-body::before {
        margin-right: 8px;
    }
}

.ss-buttonConversion-text {
    flex: 1;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.25;
    text-align: left;
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion-text {
        font-size: calc(24vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-buttonConversion-text {
        font-size: calc(24vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion-text {
        font-size: calc(18vw * 100 / 360);
    }
}

.ss-buttonConversion-text > span {
    display: block;
    font-size: 16px;
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion-text > span {
        font-size: calc(12vw * 100 / 1024);
    }
}

@media screen and (max-width: 1024px) {
    .ss-buttonConversion-text > span {
        font-size: calc(12vw * 100 / 639);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion-text > span {
        font-size: calc(14vw * 100 / 360);
    }
}

.ss-buttonConversion-image {
    margin-left: 8px;
}

@media screen and (max-width: 1600px) {
    .ss-buttonConversion-image {
        width: calc(143vw * 100 / 1600);
    }
}

@media screen and (max-width: 1024px) {
    .ss-buttonConversion-image {
        width: calc(143vw * 100 / 1024);
    }
}

@media screen and (max-width: 639px) {
    .ss-buttonConversion-image {
        width: calc(93vw * 100 / 360);
    }
}

.ss-smallScreen-show {
    display: none;
}

@media screen and (max-width: 1024px) {
    .ss-smallScreen-show {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    .ss-smallScreen-hide {
        display: none;
    }
}

.ss-extraSmallScreen-show {
    display: none;
}

@media screen and (max-width: 639px) {
    .ss-extraSmallScreen-show {
        display: block;
    }
}

.ss-utility-textWeight-normal {
    font-weight: normal;
}
