@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Inline+Text:wght@900&display=swap");
html {
    font-size: 10px;
}

@media only screen and (max-width: 1400px) {
    html html {
        font-size: 8.5px;
    }
}

@media only screen and (max-width: 500px) {
    html {
        font-size: 8px;
    }
}

@media only screen and (min-width: 1600px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1500px;
    }
}
:root {
    scroll-behavior: auto;
}
body {
    line-height: 1;
    font-family: "SF Pro Display";
    font-size: 1.6rem;
}

body.admin-bar .gnws-header.header-active {
    top: 32px;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
    transition: all 0.5s linear;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

:root {
    --primary-color: #212121;
    --primary-variant: #ff0000;
    --secondary-color: #f1f1f1;
    --secondary-variant: #fff;
    --light-color: #fff;
    --dark-color: #212121;
}

.banner-w {
    position: relative;
}

.banner-w:before,
.banner-w:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    pointer-events: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    transform-origin: top left;
    z-index: 9;
    transition-duration: 1.3s;
}

.banner-w:after {
    bottom: 0;
    right: 0;
    transform-origin: bottom right;
}

.banner-w:hover:before,
.banner-w:hover:after {
    transform: scale(1);
    opacity: 0;
}

.gnws-hover {
    overflow: hidden;
}

.gnws-hover:hover img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all 1s;
    transition: all 2s;
}

.gnws-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 1px 1px 5px #efefef;
}

.gnws-header-description-logo img {
    max-height: 50px;
    width: auto;
}

.gnws-header-description-search_icon {
    cursor: pointer;
}

.gnws-header-description-search_close {
    cursor: pointer;
    display: none;
}

@media only screen and (max-width: 800px) {
    .gnws-header-description-search_close {
        display: none !important;
    }
}

.gnws-header-search {
    transition: all 0.5s ease;
    width: 0;
    z-index: 14;
    top: -26%;
    height: 90%;
    opacity: 0;
    padding: 14px;
    left: 1%;
    pointer-events: auto;
}

@media only screen and (max-width: 1100px) {
    .gnws-header-search {
        left: 2%;
    }
}

.gnws-header-search form {
    width: 100%;
}

.gnws-header-search form input {
    height: 44px;
    color: var(--primary-color);
    padding: 10px;
    font-size: 0.875rem;
    border: 1px solid var(--secondary-color);
}

.gnws-header-search form input[type="text"] {
    font-size: 1.5rem;
}

.gnws-header-search form ::-webkit-input-placeholder {
    /* Edge */
    font-size: 1.5rem;
}

.gnws-header-search form :-ms-input-placeholder {
    /* Internet Explorer */
}

.gnws-header-search form .form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.gnws-header-search form button {
    height: 27px;
    width: 27px;
    cursor: pointer;
    right: 10px;
    top: 42%;
    background-color: #fff;
    border: none;
    transform: translateY(-50%);
}

.gnws-header-search-mobile {
    transition: all 0.5s ease;
    width: 0;
    z-index: 14;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    opacity: 0;
    left: 0;
    pointer-events: auto;
}

.gnws-header-search-mobile.gnws-open {
    width: 90%;
    z-index: 9999;
}

.gnws-header-search-mobile form {
    width: 100%;
}

.gnws-header-search-mobile form input {
    height: 44px;
    color: var(--primary-color);
    padding: 10px;
    font-size: 0.875rem;
    border: 1px solid var(--secondary-color);
}

.gnws-header-search-mobile form input[type="text"] {
    font-size: 1.5rem;
}

.gnws-header-search-mobile form ::-webkit-input-placeholder {
    /* Edge */
    font-size: 1.5rem;
}

.gnws-header-search-mobile form :-ms-input-placeholder {
    /* Internet Explorer */
}

.gnws-header-search-mobile form .form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.gnws-header-search-mobile form button {
    height: 27px;
    width: 27px;
    cursor: pointer;
    right: 10px;
    top: 48%;
    background-color: #fff;
    border: none;
    transform: translateY(-50%);
}

.gnws-header-icon {
    display: none;
    position: absolute;
    left: 1%;
    top: 40%;
}

@media only screen and (max-width: 500px) {
    .gnws-header-icon {
        top: 39%;
        left: 95%;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-header-icon {
        top: 39%;
        left: 94%;
    }
}

@media only screen and (min-width: 1000px) {
    .menu-mobile {
        position: relative;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100%;
        max-width: 320px;
        background-color: #000;
        background-size: cover;
        color: var(--primary-variant);
        z-index: 9999;
        transform: translateX(-100%);
        transition: 0.5s;
        overflow-y: scroll;
        padding-bottom: 50px;
    }
}

.menu-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul {
        margin-top: 50px;
        margin-bottom: 1rem;
    }
}

.menu-mobile ul > li {
    display: inline-block;
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li {
        display: block;
        position: relative;
        border-bottom: 1px solid var(--light-color);
    }
}

.menu-mobile ul > li > a {
    text-transform: uppercase;
    display: inline-block;
    line-height: 43px;
    color: var(--primary-color);
    font-size: 1.4rem;
    padding-right: 25px;
    padding-left: 25px;
    border-bottom: 2px solid transparent;
    position: relative;
    font-weight: bold;
}

@media only screen and (max-width: 1100px) {
    .menu-mobile ul > li > a {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li > a {
        font-weight: normal;
        font-size: 15px;
        text-transform: uppercase;
        display: block;
        padding: 15px 10px;
        line-height: 1.5;
        color: var(--light-color);
    }
}

.menu-mobile ul > li > a:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary-variant);
    transition: 0.2s;
}

.menu-mobile ul > li > a:hover:after {
    width: 100%;
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li .li-plus {
        position: absolute;
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        display: block;
        top: 0;
        right: 0;
        color: #fff;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li .li-plus:before,
    .menu-mobile ul > li .li-plus:after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-90deg);
        background-color: #fff;
        transition:
            transform 0.4s ease-in-out,
            opacity 0.4s ease-in-out;
        -webkit-transform: translate(-50%, -50%) rotate(-90deg);
        -moz-transform: translate(-50%, -50%) rotate(-90deg);
        -ms-transform: translate(-50%, -50%) rotate(-90deg);
        -o-transform: translate(-50%, -50%) rotate(-90deg);
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li .li-plus:before {
        width: 11px;
        height: 1px;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li .li-plus:after {
        width: 1px;
        height: 11px;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li .clicked {
        transform: rotate(180deg);
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li .clicked.li-plus:before {
        display: none;
    }
}

@media only screen and (min-width: 1000px) {
    .menu-mobile ul > li > ul {
        display: none;
        position: absolute;
        background: var(--light-color);
        width: max-content;
        min-width: 250px;
        z-index: 1;
        transition: all 0.5s ease-in-out;
        left: 0;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li > ul {
        margin-top: 0;
        display: none;
    }
}

@media only screen and (min-width: 1050px) {
    .menu-mobile ul > li > ul > li {
        display: block;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li > ul > li {
        border: none;
    }
}

.menu-mobile ul > li > ul > li > a {
    color: var(--primary-color);
    border-bottom: none;
    font-weight: normal;
}

@media only screen and (min-width: 1050px) {
    .menu-mobile ul > li > ul > li > a {
        display: block;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li > ul > li > a {
        color: var(--light-color);
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul > li > ul > li > a {
        padding-left: 25px;
    }
}

@media only screen and (min-width: 1050px) {
    .menu-mobile ul > li > ul > li > a:hover {
        background-color: var(--primary-color);
        color: var(--light-color);
    }
}

@media only screen and (min-width: 1000px) {
    .menu-mobile ul > li:hover ul {
        display: block;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul .current-menu-item a {
        color: #fff;
        font-size: 15px;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul .current-menu-item ul a {
        color: #fff;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile ul .current-menu-parent ul {
        display: block;
    }
}

.menu-mobile ul .menu-item-has-children {
    position: relative;
}

@media only screen and (min-width: 1000px) {
    .menu-mobile ul .menu-item-has-children > a {
        position: relative;
    }
}

@media only screen and (min-width: 1000px) {
    .menu-mobile ul .menu-item-has-children > a:before {
        content: "";
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.4' d='M5 7.5L10 12.5L15 7.5' stroke='%23212121' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
        background-size: 15px;
        background-repeat: no-repeat;
        background-position: center;
        top: 42%;
        right: 8%;
        width: 10px;
        height: 10px;
    }
}

@media only screen and (max-width: 1100px) {
    .menu-mobile ul .menu-item-has-children > a:before {
        right: 2%;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile .menu-mobile-close {
        position: absolute;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        top: 0;
        right: 10px;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile .menu-mobile-close svg {
        color: var(--light-color);
        width: 50%;
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile .menu-mobile-close svg path {
        fill: var(--light-color);
        stroke: var(--light-color);
    }
}

@media only screen and (max-width: 1000px) {
    .menu-mobile.menu-mobile-active {
        transform: translate(0);
    }
}

.overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1998;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.overlay.overlay-active {
    opacity: 1;
    visibility: visible;
}

.header__bars {
    cursor: pointer;
}

.header__bars svg {
    color: var(--primary-color);
}

.gnws-open {
    opacity: 1;
    width: 100%;
}

.gnws-footer {
    background-color: var(--primary-color);
}

.gnws-footer-news-image img {
    max-height: 70px;
    width: auto;
}

.gnws-footer-news-content p {
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: 600;
    color: var(--light-color);
}

.gnws-footer-news-content ul li {
    font-size: 1.4rem;
    color: var(--light-color);
    margin-bottom: 1.6rem;
    font-weight: 400;
}

.gnws-footer-news-content ul li a {
    color: var(--light-color);
    display: flex;
    font-size: 1.6rem;
    line-height: 2rem;
    align-items: center;
}

.gnws-footer-news-content ul li a:hover {
    color: var(--primary-variant);
}

.gnws-footer-news-content ul li a .gnws-footer-news-content_icon {
    min-width: 3rem;
}

.gnws-footer-intro p {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: var(--light-color);
    margin-bottom: 2.4rem;
    text-transform: uppercase;
}

.gnws-footer-intro ul li {
    font-size: 1.4rem;
    color: var(--light-color);
    margin-bottom: 2.4rem;
}

.gnws-footer-intro ul li a {
    color: var(--light-color);
    line-height: 1.7rem;
    font-size: 1.6rem;
}

.gnws-footer-intro ul li a:hover {
    color: var(--primary-variant);
}

.gnws-footer-social p {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: var(--light-color);
    margin-bottom: 2.4rem;
    text-transform: uppercase;
}

.gnws-footer-social ul li {
    font-size: 1.4rem;
    color: var(--light-color);
    margin-bottom: 2.4rem;
}

.gnws-footer-social ul li ul li {
    display: inline-block;
    margin-right: 1.4rem;
}

.gnws-footer-copy {
    border-top: 1px solid #f4f4f4;
    font-size: 1.3rem;
    color: var(--light-color);
}

@media only screen and (max-width: 768px) {
    footer .gnws-footer .container {
        padding-left: 2.5rem !important;
    }
}

@media only screen and (min-width: 768px) {
    .m--15 {
        margin: 0 -15px;
    }
}

.social-media {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.social-media__button {
    width: 65px;
    height: 65px;
    cursor: pointer;
    margin: auto;
    margin-right: 0;
    margin-top: 15px;
    transition: 0.2s;
    background-color: var(--primary-variant);
}

@media only screen and (max-width: 767px) {
    .social-media {
        bottom: 40px;
    }
    .social-media__button {
        width: 50px;
        height: 50px;
    }
    .social-media__button .button-text {
        font-size: 12px;
    }
}

.social-media__button svg path {
    stroke: #fff;
}

.social-media__button.clicked .button-text {
    display: none;
}

.social-media__button.clicked .button-icon {
    display: block;
}

.social-media__button .button-icon {
    display: none;
}

.social-media__button .button-text {
    font-size: 13px;
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .social-media__button .button-text {
        font-size: 12px;
    }
}

.social-media__list {
    background-color: #fff;
    border-radius: 5px;
    padding: 17px 12px;
    width: 300px;
    position: relative;
    box-shadow: 1px 1px 8px 0px #acacac;
    display: none;
    z-index: 99999999;
}

.social-media__list:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    position: absolute;
    bottom: -5px;
    right: 29px;
    transform: rotate(45deg);
}

.social-media__item:not(:last-child) {
    margin-bottom: 15px;
}

.social-media__item .item__icon {
    margin-right: 10px;
}

.social-media__item .item__link {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.social-media__item:hover .item__link {
    color: var(--primary-variant);
}

.gnws-main-slider-left_image img {
    max-width: 233px;
    max-height: 97px;
    opacity: 0.2;
}

.gnws-main-slider-left_content {
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    line-height: 2.25rem;
    margin-bottom: 5.5rem;
    display: inline-block;
    text-transform: uppercase;
}

.gnws-main-slider_check .carousel-cell:not(:first-child) {
    display: none;
}

.gnws-main-slider_check .flickity-slider .carousel-cell {
    display: block;
}

.gnws-main-slider-left_content:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -8.1rem;
    width: 7rem;
    height: 1px;
    background: var(--primary-color);
    z-index: 1;
}

.gnws-main-slider-right .controls {
    width: 220px;
    text-align: center;
}

.gnws-main-slider-right .controls .timeline {
    height: 3px;
    flex: 1;
    background: #d8d8d8;
    border-radius: 10px;
    margin: 5px 15px;
    position: relative;
    overflow: hidden;
}

.gnws-main-slider-right .controls .timeline .process {
    height: 100%;
    background: var(--primary-variant);
    position: absolute;
    left: 0;
}

.gnws-main-slider-right .progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem !important;
}

@media only screen and (min-width: 650px) {
    .gnws-main-slider .gnws-main-slider-right img,
    .gnws-design-slider img {
        height: calc(100vh - 80px - 60px);
    }
}

@media only screen and (max-width: 1700px) {
    .gnws-main-slider-right .progress-wrapper {
        margin-top: 1.5rem !important;
    }
}

@media only screen and (max-width: 1600px) {
    .gnws-main-slider-right .progress-wrapper {
        margin-top: 1rem !important;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-slider-right .progress-wrapper {
        margin-top: 0.5rem !important;
    }
}

.gnws-main-slider-right .progress-wrapper .selected-cell {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.gnws-main-slider-right .progress-wrapper .total-cell {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.gnws-main-slider-right .flickity-prev-next-button.next {
    left: 100rem;
    top: 84.3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66671 16L25.3334 16' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 6.66668L25.3334 16L16 25.3333' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 26px;
}

.gnws-main-slider-right .flickity-prev-next-button.next svg {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-slider-right .flickity-prev-next-button.next {
        left: 66rem;
        top: 54.6rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-slider-right .flickity-prev-next-button.next {
        left: 53rem;
        top: 42.3rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-slider-right .flickity-prev-next-button.next {
        left: 44rem;
        top: 57rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-slider-right .flickity-prev-next-button.next {
        left: 42rem;
        top: 52rem;
    }
}

.gnws-main-slider-right .flickity-prev-next-button.previous {
    left: 57rem;
    top: 84.3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg %3E%3Cpath d='M25.3334 16H6.66669' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 25.3334L6.66669 16.0001L16 6.66675' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 26px;
}

.gnws-main-slider-right .flickity-prev-next-button.previous svg {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-slider-right .flickity-prev-next-button.previous {
        left: 33rem;
        top: 54.6rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-slider-right .flickity-prev-next-button.previous {
        left: 21rem;
        top: 42.3rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-slider-right .flickity-prev-next-button.previous {
        left: 4rem;
        top: 57rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-slider-right .flickity-prev-next-button.previous {
        left: 3rem;
        top: 52rem;
    }
}

.gnws-main-slider-right .carousel-cell .gnws-main-slider-right_content {
    width: 100%;
    color: var(--light-color);
    font-size: 5rem;
    font-weight: 600;
    left: 50%;
    line-height: 7rem;
    bottom: 10%;
    transform: translate(-50%, 0%);
}

@media only screen and (max-width: 800px) {
    .gnws-main-slider-right .carousel-cell .gnws-main-slider-right_content {
        font-size: 4rem;
        line-height: 6rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-slider-right .carousel-cell .gnws-main-slider-right_content {
        font-size: 3.1rem;
        line-height: 5rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-slider-right .carousel-cell .gnws-main-slider-right_content {
        font-size: 2.8rem;
        line-height: 4.4rem;
    }
}

@media only screen and (max-width: 350px) {
    .gnws-main-slider-right .carousel-cell .gnws-main-slider-right_content {
        font-size: 2.4rem;
        line-height: 4.4rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-service-description-left {
        text-align: center;
    }
}

.gnws-main-service-description-left_content {
    font-size: 2rem;
    line-height: 3rem;
    color: var(--primary-color);
    font-weight: 400;
}

@media only screen and (min-width: 1200px) {
    .gnws-main-service-description-left_content {
        max-width: 81%;
    }
}

.gnws-main-service-description-right_title {
    font-family: "Big Shoulders Inline Text", cursive;
    font-size: 7rem;
    line-height: 7.2rem;
    color: var(--primary-color);
}

.gnws-main-service-description-right_content {
    font-size: 2rem;
    line-height: 3rem;
    color: var(--primary-color);
}
.gnws-main-service-content-left_icon {
    flex-shrink: 0;
}
.gnws-main-service-content-left_icon img {
    max-width: 48px;
    object-fit: contain;
}

.gnws-main-service-content-left {
    background-color: var(--secondary-color);
}

.gnws-main-service-content-left_description-title {
    color: var(--primary-color);
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-weight: 600;
}

.gnws-main-service-content-left_description-content {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 3rem;
    text-align: justify;
}

@media only screen and (max-width: 500px) {
    .gnws-main-service-content-left_description-content {
        padding: 0 2rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-service-content .gnws-service .gnws-col-1 {
        order: 2;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-service-content .gnws-service .gnws-col-2 {
        order: 1;
    }
}

.gnws-main-service-content .gnws-service:nth-child(even) .gnws-col-1 {
    order: 2;
}

@media only screen and (max-width: 800px) {
    .gnws-main-service-content .gnws-service:nth-child(even) .gnws-col-1 {
        order: 2;
    }
}

.gnws-main-service-content .gnws-service:nth-child(even) .gnws-col-2 {
    order: 1;
}

@media only screen and (max-width: 800px) {
    .gnws-main-service-content .gnws-service:nth-child(even) .gnws-col-2 {
        order: 1;
    }
}

.gnws-main-reason-content .carousel:after {
    content: "flickity";
    display: none;
}

@media screen and (min-width: 800px) {
    .gnws-main-reason-content .carousel:after {
        content: "";
    }
}

.gnws-main-project {
    background-color: var(--secondary-color);
}

.gnws-main-project .gnws-slider .progress-wrapper {
    margin-top: 2rem;
}

.gnws-main-project-description_left .nav .nav-item .nav-link .item {
    font-size: 1.6rem;
    line-height: 1.9rem;
    color: var(--primary-color);
    font-weight: 300;
}

.gnws-main-project-description_left .nav .nav-item .nav-link .item span {
    font-size: 1.2rem;
    line-height: 2.1rem;
    color: var(--primary-color);
    top: -10px;
    right: -17px;
    font-weight: 300;
}

@media only screen and (max-width: 500px) {
    .gnws-main-project-description_left .nav .nav-item .nav-link .item span {
        top: -10px;
        right: -1.2rem;
    }
}

.gnws-main-project-description_left .nav .nav-item button {
    padding: 0;
}

.gnws-main-project-description_left .nav .nav-item .active {
    color: var(--primary-color);
    background-color: transparent;
    font-weight: 500;
    text-decoration: underline;
    border-radius: 0;
}

.gnws-main-project-description_left .nav .nav-item .active span {
    margin-top: 0.4rem;
    font-weight: 500;
}

.gnws-main-project-description_left .nav .nav-item .active .item {
    font-weight: 500;
}

.gnws-main-project-description_left .nav .nav-item .active .item span {
    font-weight: 500;
}

.gnws-main-project-description_left .nav .nav-distance {
    font-size: 1.6rem;
    line-height: 2rem;
    color: var(--primary-color);
    margin-left: 2.4rem;
    margin-right: 1.4rem;
}

.gnws-main-project-description_left .flickity-prev-next-button.next {
    left: 86rem;
    top: 78.3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66671 16L25.3334 16' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 6.66668L25.3334 16L16 25.3333' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 26px;
}

.gnws-main-project-description_left .flickity-prev-next-button.next svg {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-project-description_left .flickity-prev-next-button.next {
        left: 66rem;
        top: 68rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-project-description_left .flickity-prev-next-button.next {
        left: 51rem;
        top: 76rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-project-description_left .flickity-prev-next-button.next {
        left: 43rem;
        top: 94rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-project-description_left .flickity-prev-next-button.next {
        left: 40rem;
        top: 89.5rem;
    }
}

.gnws-main-project-description_left .flickity-prev-next-button.previous {
    left: 38rem;
    top: 78.3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg %3E%3Cpath d='M25.3334 16H6.66669' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 25.3334L6.66669 16.0001L16 6.66675' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 26px;
}

.gnws-main-project-description_left .flickity-prev-next-button.previous svg {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-project-description_left .flickity-prev-next-button.previous {
        left: 26rem;
        top: 68rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-project-description_left .flickity-prev-next-button.previous {
        left: 15rem;
        top: 76rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-project-description_left .flickity-prev-next-button.previous {
        left: 4rem;
        top: 94rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-project-description_left .flickity-prev-next-button.previous {
        left: 1rem;
        top: 89.5rem;
    }
}

.gnws-main-review .gnws-main-slider-left_content {
    margin-bottom: 13.5rem;
}

.gnws-main-review .gnws-slider .button--prev {
    margin-right: 2rem;
}

.gnws-main-review .gnws-slider .button--next {
    margin-left: 2rem;
}

.gnws-main-review .gnws-slider .progress-wrapper {
    justify-content: start;
    margin-top: 6rem !important;
}

@media only screen and (max-width: 992px) {
    .gnws-main-review .gnws-slider .progress-wrapper {
        justify-content: center;
        margin-top: 1rem !important;
    }
    .gnws-main-review .gnws-main-review-right_title {
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-review-right_title {
        margin-left: 1rem;
        text-align: center;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-review-right_title-image img {
        width: 50%;
    }
}

.gnws-main-review-right_title-content {
    margin-top: -20rem;
}

.gnws-main-review-right_content-description {
    background-color: var(--secondary-color);
    padding-bottom: 2rem;
}

.gnws-main-review-right_content-description-image-comma {
    left: 5%;
    bottom: -9%;
    width: 40px;
    height: 40px;
    background-color: red;
    line-height: 40px;
    border-radius: 50%;
    z-index: 2;
}

.gnws-main-review-right_content-description-image .has-link {
    display: block;
}
.gnws-main-review-right_content-description-image .has-link::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    content: "";
}
.gnws-main-review-right_content-description-image .has-link::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    content: url("data:image/svg+xml,%3Csvg width='46' height='34' viewBox='0 0 36 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.3535 3.75519C33.9609 2.27706 32.8043 1.11294 31.3357 0.717875C28.6738 0 18 0 18 0C18 0 7.32626 0 4.66433 0.717875C3.19576 1.113 2.03914 2.27706 1.64658 3.75519C0.933327 6.43437 0.933327 12.0243 0.933327 12.0243C0.933327 12.0243 0.933327 17.6141 1.64658 20.2933C2.03914 21.7714 3.19576 22.8871 4.66433 23.2821C7.32626 24 18 24 18 24C18 24 28.6738 24 31.3357 23.2821C32.8043 22.8871 33.9609 21.7714 34.3535 20.2933C35.0667 17.6141 35.0667 12.0243 35.0667 12.0243C35.0667 12.0243 35.0667 6.43437 34.3535 3.75519ZM14.5091 17.0994V6.94906L23.4303 12.0244L14.5091 17.0994Z' fill='%23ff0000'/%3E%3C/svg%3E%0A");
}

.gnws-main-review-right_content-description_gap {
    height: 1.2rem;
    background-color: #dfdfdf;
    margin-bottom: 2rem;
}

.gnws-main-review-right_content-description-all {
    padding: 0 1.8rem;
}

.gnws-main-review-right_content-description-all_content {
    font-size: 1.5rem;
    line-height: 3rem;
    text-align: justify;
    font-weight: 400;
    margin-bottom: 2.8rem;
}

.gnws-main-review-right_content-description-all_name {
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-align: left;
}

.gnws-main-review-right_content-description-all_address {
    font-size: 1.55rem;
    line-height: 1.9rem;
    font-weight: 400;
    text-align: start;
}

.gnws-main-review-right_content .carousel-cell {
    width: 50%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-review-right_content .carousel-cell {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-review-right_content .carousel-cell {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-review-right_content .carousel-cell {
        top: -12px;
        right: 3px;
        width: 100%;
    }
}

.gnws-main-review-right_content .flickity-prev-next-button.next {
    left: 69rem;
    top: 98rem;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66671 16L25.3334 16' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 6.66668L25.3334 16L16 25.3333' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 26px;
}

.gnws-main-review-right_content .flickity-prev-next-button.next svg {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-review-right_content .flickity-prev-next-button.next {
        left: 49rem;
        top: 109.7rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-review-right_content .flickity-prev-next-button.next {
        left: 40rem;
        top: 91.5rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-review-right_content .flickity-prev-next-button.next {
        left: 43rem;
        top: 85rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-review-right_content .flickity-prev-next-button.next {
        left: 40rem;
        top: 88.5rem;
    }
}

.gnws-main-review-right_content .flickity-prev-next-button.previous {
    left: 23rem;
    top: 98rem;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg %3E%3Cpath d='M25.3334 16H6.66669' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 25.3334L6.66669 16.0001L16 6.66675' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 26px;
}

.gnws-main-review-right_content .flickity-prev-next-button.previous svg {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-review-right_content .flickity-prev-next-button.previous {
        left: 7rem;
        top: 109.7rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-review-right_content .flickity-prev-next-button.previous {
        left: 2rem;
        top: 91.5rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-review-right_content .flickity-prev-next-button.previous {
        left: 4rem;
        top: 84.9rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-review-right_content .flickity-prev-next-button.previous {
        left: 1rem;
        top: 88.5rem;
    }
}

.gnws-main-review-right .progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem !important;
}

@media only screen and (max-width: 1600px) {
    .gnws-main-review-right .progress-wrapper {
        margin-top: 4rem !important;
    }
}

@media only screen and (max-width: 1100px) {
    .gnws-main-review-right .progress-wrapper {
        margin-top: 4.2rem !important;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-review-right .progress-wrapper {
        margin-top: 3.2rem !important;
    }
}

.gnws-main-review-right .progress-wrapper .selected-cell {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.gnws-main-review-right .progress-wrapper .total-cell {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.gnws-main-company {
    background-color: var(--secondary-color);
    position: relative;
}

.gnws-main-company-image {
    position: absolute;
    top: 13rem;
    left: 24rem;
    z-index: 0;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-company-image {
        top: 13rem;
        left: 4rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-company-image {
        top: 18rem;
        left: 37rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-company-image {
        top: 9rem;
        left: 24rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-company-image img {
        width: 80%;
    }
}

.gnws-main-company-description {
    z-index: 1;
}

.gnws-main-company-description_left {
    font-size: 2rem;
    background-color: var(--light-color);
    padding: 4.2rem 4rem;
}

.gnws-main-company-description_left-descripton .li-style {
    padding: 2rem 0;
    position: relative;
    border-bottom: 1px solid #f4f4f4;
    cursor: pointer;
}

.gnws-main-company-description_left-descripton .li-style span {
    padding-left: 4.7rem;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: var(--primary-color);
}

.gnws-main-company-description_left-descripton .li-style .li-company {
    position: absolute;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: block;
    top: 10px;
    left: 0;
    color: var(--primary-variant);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

@media only screen and (max-width: 500px) {
    .gnws-main-company-description_left-descripton .li-style .li-company {
        top: 4px;
    }
}

.gnws-main-company-description_left-descripton .li-style .li-company:before,
.gnws-main-company-description_left-descripton .li-style .li-company:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: var(--primary-variant);
    transition:
        transform 0.4s ease-in-out,
        opacity 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -moz-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    -o-transform: translate(-50%, -50%) rotate(-90deg);
}

.gnws-main-company-description_left-descripton .li-style .li-company:before {
    width: 1.4rem;
    height: 2px;
}

.gnws-main-company-description_left-descripton .li-style .li-company:after {
    width: 2px;
    height: 1.4rem;
}

.gnws-main-company-description_left-descripton .li-style .clicked {
    transform: rotate(180deg);
}

.gnws-main-company-description_left-descripton .li-style .clicked.li-company:before {
    display: none;
}

.gnws-main-company-description_left-descripton .li-content {
    padding: 1.5rem 0 0 0;
    padding-left: 4.7rem;
    display: none;
    background: var(--light-color);
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.gnws-main-company-description_left-descripton .li-content * {
    line-height: 3rem;
    position: relative;
    border: none;
    text-align: justify;
}

.gnws-main-company-description_left-descripton .li-style:last-child {
    border-bottom: none;
}

.gnws-main-company-description_left-descripton_content:first-child .li-content {
    display: block;
}

@media only screen and (max-width: 800px) {
    .gnws-main-company-description .gnws-cp-1 {
        order: 2;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-company-description .gnws-cp-2 {
        order: 1;
    }
}

.gnws-main-company-block {
    height: 3.6rem;
    background-color: #e0e0e0;
}

.gnws-main-blog-left_title a {
    font-size: 2.4rem;
    line-height: 3.6rem;
    color: var(--primary-color);
}

.gnws-main-blog-left_content {
    font-size: 2rem;
    line-height: 3rem;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gnws-main-blog-left:hover .gnws-main-blog-left_title a {
    color: var(--primary-variant);
}

.gnws-main-blog-right-content img {
    width: 100%;
}

.gnws-main-blog-right-content_title a {
    font-size: 2rem;
    line-height: 3rem;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gnws-main-blog-right-content:hover .gnws-main-blog-right-content_title a {
    color: var(--primary-variant);
}

.gnws-main-blog .flickity-prev-next-button.next {
    right: 3rem;
    top: 70.6rem;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66671 16L25.3334 16' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 6.66668L25.3334 16L16 25.3333' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 26px;
}

.gnws-main-blog .flickity-prev-next-button.next svg {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-blog .flickity-prev-next-button.next {
        left: 39rem;
        top: 56.9rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-blog .flickity-prev-next-button.next {
        left: 53rem;
        top: 73.3rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-blog .flickity-prev-next-button.next {
        left: 43rem;
        top: 58rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-blog .flickity-prev-next-button.next {
        left: 40rem;
        top: 54.5rem;
    }
}

.gnws-main-blog .flickity-prev-next-button.previous {
    right: 3rem;
    top: 70.6rem;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg %3E%3Cpath d='M25.3334 16H6.66669' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 25.3334L6.66669 16.0001L16 6.66675' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 26px;
}

.gnws-main-blog .flickity-prev-next-button.previous svg {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .gnws-main-blog .flickity-prev-next-button.previous {
        left: 4rem;
        top: 56.9rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-main-blog .flickity-prev-next-button.previous {
        left: 14rem;
        top: 73.3rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-blog .flickity-prev-next-button.previous {
        left: 4rem;
        top: 58rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-main-blog .flickity-prev-next-button.previous {
        left: 1rem;
        top: 54.5rem;
    }
}

.gnws-main-blog .progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem !important;
}

@media only screen and (max-width: 1600px) {
    .gnws-main-blog .progress-wrapper {
        margin-top: 4rem !important;
    }
}

@media only screen and (max-width: 1100px) {
    .gnws-main-blog .progress-wrapper {
        margin-top: 4.2rem !important;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-blog .progress-wrapper {
        margin-top: 3.2rem !important;
    }
}

.gnws-main-blog .progress-wrapper .selected-cell {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.gnws-main-blog .progress-wrapper .total-cell {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.gnws-main-contact {
    background-color: var(--secondary-color);
}

@media only screen and (max-width: 800px) {
    .gnws-main-contact-left img {
        width: 100%;
    }
}

.gnws-main-contact-right label {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.4rem;
    color: var(--primary-color);
}

.gnws-main-contact-right select {
    display: block;
    width: 100%;
    font-size: 2.2rem;
    line-height: 2.6rem;
    opacity: 0.5;
    border: none;
    border-bottom: 1px solid #c8c8c8;
    background-color: transparent;
    padding-left: 0;
    border-bottom: 1px solid #c8c8c8;
    padding-bottom: 1.2rem;
    padding-top: 1rem;
}

.gnws-main-contact-right .form-control {
    border: none;
    border-bottom: 1px solid #c8c8c8;
    background-color: transparent;
    padding-bottom: 0.9rem;
    padding-top: 0.9rem;
    padding-left: 0;
}

.gnws-main-contact-right .form-control:focus {
    box-shadow: none;
}

.gnws-main-contact-right ::-webkit-input-placeholder {
    /* Edge */
    opacity: 0.8;
    font-size: 2.2rem;
    line-height: 2.6rem;
}

.gnws-main-contact-right :-ms-input-placeholder {
    /* Internet Explorer */
}

.gnws-main-contact-right input,
.gnws-main-contact-right input::placeholder,
.gnws-main-contact-right select {
    font-size: 2rem;
}

.gnws-main-partner_title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    color: var(--primary-color);
    opacity: 0.5;
    font-weight: 700;
}

.gnws-main-partner .carousel-cell {
    text-align: center;
    width: 20%;
}

@media only screen and (max-width: 800px) {
    .gnws-main-partner .carousel-cell {
        width: 30%;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-main-partner .carousel-cell {
        width: 50%;
    }
}

.gnws-main-partner .carousel-cell a {
    display: block;
}

.gnws-main-partner .carousel-cell a img {
    height: 80px;
    object-fit: contain;
}

.gnws-product {
    padding-top: 1px;
    border-radius: 8px;
    overflow: hidden;
}

.gnws-product-number {
    top: -102px;
    left: 11px;
}

.gnws-product-number p {
    opacity: 0.4;
    color: var(--primary-color);
    font-size: 15rem;
    width: 5.5rem;
    height: 11rem;
    font-weight: bold;
}

@media only screen and (max-width: 800px) {
    .gnws-product-number {
        display: none;
    }
}

.gnws-product-title {
    margin-top: 1.6rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.9rem;
    color: var(--primary-color);
}

.gnws-product-title span {
    color: #4f4f4f;
}

.gnws-product-title a {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.9rem;
    color: var(--primary-color);
}

.gnws-product-title a:hover {
    color: var(--primary-variant);
}

.gnws-product-content {
    font-size: 1.6rem;
    line-height: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    text-align: justify;
}

.gnws-btn a,
.gnws-btn button {
    display: inline-block;
    border-radius: 5px;
    padding: 1.5rem 2.5rem;
    background-color: var(--primary-variant);
    letter-spacing: 0.5rem;
    border: none;
}

.gnws-btn a span,
.gnws-btn button span {
    font-size: 1.8rem;
    line-height: 2.1rem;
    color: var(--light-color);
    text-transform: uppercase;
}

.gnws-btn a:hover,
.gnws-btn button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

@media only screen and (min-width: 576px) {
    .gnws-block {
        margin-left: calc(100vw / 2 - 540px / 2);
        padding-left: var(--bs-gutter-x, 0.75rem);
    }
}

@media only screen and (min-width: 768px) {
    .gnws-block {
        margin-left: calc(100vw / 2 - 720px / 2);
    }
}

@media only screen and (min-width: 992px) {
    .gnws-block {
        margin-left: calc(100vw / 2 - 960px / 2);
    }
}

@media only screen and (min-width: 1200px) {
    .gnws-block {
        margin-left: calc(100vw / 2 - 1140px / 2);
    }
}

@media only screen and (min-width: 1400px) {
    .gnws-block {
        margin-left: calc(100vw / 2 - 1320px / 2);
    }
}

@media only screen and (min-width: 1600px) {
    .gnws-block {
        margin-left: calc(100vw / 2 - 1500px / 2);
    }
}

.container {
    padding: 0 1.5rem !important;
}

.gnws-intro-right {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 1200px) {
    .gnws-intro-right {
        display: none !important;
    }
}

.gnws-intro-right p {
    text-transform: uppercase;
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
}

.gnws-intro-right p:after {
    content: "";
    width: 1px;
    height: 40px;
    background-color: #000;
    display: inline-block;
    margin-top: 5px;
    margin-right: 2px;
}

.gnws-intro-left {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 1200px) {
    .gnws-intro-left {
        display: none !important;
    }
}

.gnws-intro-left p {
    transform: rotate(-180deg);
    text-transform: uppercase;
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
}

.gnws-intro-left p:after {
    content: "";
    width: 1px;
    height: 40px;
    background-color: #000;
    display: inline-block;
    margin-top: 5px;
    margin-right: 2px;
}

.gnws-intro-left img {
    object-fit: cover;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 12rem;
    min-width: 100px;
}

@media only screen and (max-width: 1800px) {
    .gnws-intro-left img {
        display: none !important;
    }
}

@media only screen and (min-width: 1800px) and (max-width: 1900px) {
    .gnws-intro-left img {
        min-width: 80px;
        left: 10rem;
    }
}

/* @media only screen and (max-width: 1600px) {
.gnws-intro-left img {
min-width: 85px;
}
}

@media only screen and (max-width: 1400px) {
.gnws-intro-left img {
min-width: 80px;
}
}

@media only screen and (max-width: 1300px) {
.gnws-intro-left img {
width: 58px;
}
} */

.gnws-title {
    font-size: 3.8rem;
    color: var(--primary-color);
    line-height: 5rem;
    font-weight: 500;
}

@media only screen and (max-width: 800px) {
    .gnws-title {
        font-size: 3.5rem;
        color: var(--primary-color);
    }
}

@media only screen and (max-width: 500px) {
    .gnws-title {
        font-size: 3.5rem;
        color: var(--primary-color);
        line-height: 4.5rem;
    }
}

.gnws-slider .controls {
    width: 220px;
    text-align: center;
}

.gnws-slider .controls .timeline {
    height: 3px;
    flex: 1;
    background: #d8d8d8;
    border-radius: 10px;
    margin: 5px 15px;
    position: relative;
    overflow: hidden;
}

.gnws-slider .controls .timeline .process {
    height: 100%;
    background: var(--primary-variant);
    position: absolute;
    left: 0;
}

.gnws-slider .progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

@media only screen and (max-width: 1100px) {
    .gnws-slider .progress-wrapper {
        margin-top: 3rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-slider .progress-wrapper {
        margin-top: 2rem;
    }
}

.gnws-slider .progress-wrapper .selected-cell {
    font-size: 1.4rem;
    margin-bottom: 0;
    font-weight: 500;
}

.gnws-slider .progress-wrapper .total-cell {
    font-size: 1.4rem;
    margin-bottom: 0;
    font-weight: 500;
}

.gnws-slider .flickity-button:hover {
    background: transparent;
    cursor: pointer;
}

.gnws-slider .btn:focus {
    box-shadow: none;
}

.gnws-slider .button--prev {
    margin-right: 10rem;
}

@media only screen and (max-width: 1600px) {
    .gnws-slider .button--prev {
        margin-right: 6rem;
    }
}

@media only screen and (max-width: 1100px) {
    .gnws-slider .button--prev {
        margin-right: 8rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-slider .button--prev {
        margin-right: 6rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-slider .button--prev {
        margin-right: 2rem;
    }
}

.gnws-slider .button--next {
    margin-left: 10rem;
}

@media only screen and (max-width: 1600px) {
    .gnws-slider .button--next {
        margin-left: 6rem;
    }
}

@media only screen and (max-width: 1100px) {
    .gnws-slider .button--next {
        margin-left: 8rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-slider .button--next {
        margin-left: 6rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-slider .button--next {
        margin-left: 2rem;
    }
}

@media only screen and (min-width: 1600px) {
    .gx-6 {
        --bs-gutter-x: 6rem;
    }
}

.gnws-z-index {
    z-index: 1;
}

.rank-math-breadcrumb {
    padding: 1rem 0;
}

.rank-math-breadcrumb p {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.rank-math-breadcrumb p a {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.rank-math-breadcrumb p a:hover {
    color: red;
}

.gnws-pagination {
    padding: 40px 0;
}

.gnws-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    column-gap: 7px;
}

.gnws-pagination ul li {
    font-size: 1.6rem;
    border-radius: 4px;
    min-width: 40px;
    height: 40px;
}

.gnws-pagination ul li a svg path {
    stroke: var(--primary-variant);
    transition: all 0.5s linear;
}

.gnws-pagination ul li:hover svg path {
    stroke: #fff;
    transition: all 0.5s linear;
}

.gnws-pagination ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-variant);
    padding: 7px;
    height: 100%;
    background-color: #fff;
    color: var(--primary-variant);
    border-radius: 5px;
}

.gnws-pagination ul li a:hover {
    color: #fff;
    background-color: var(--primary-variant);
}

.gnws-pagination ul li:not(.active) a:hover {
    border: 2px solid #000;
    background: #000;
}

.gnws-pagination ul li svg {
    height: 10px;
}

.gnws-pagination ul .active a {
    color: #fff;
    background-color: var(--primary-variant);
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.mb-7 {
    margin-bottom: 5rem !important;
}

.mb-8 {
    margin-bottom: 6rem !important;
}

.mb-9 {
    margin-bottom: 7rem !important;
}

.mb-10 {
    margin-bottom: 8rem !important;
}

.mb-11 {
    margin-bottom: 9rem !important;
}

.mb-12 {
    margin-bottom: 10rem !important;
}

.mb-13 {
    margin-bottom: 11rem !important;
}

.mb-14 {
    margin-bottom: 12rem !important;
}

.mb-15 {
    margin-bottom: 13rem !important;
}

.mb-16 {
    margin-bottom: 14rem !important;
}

.mb-17 {
    margin-bottom: 15rem !important;
}

.mb-18 {
    margin-bottom: 16rem !important;
}

.mb-19 {
    margin-bottom: 17rem !important;
}

.mb-20 {
    margin-bottom: 18rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

.mt-7 {
    margin-top: 5rem !important;
}

.mt-8 {
    margin-top: 6rem !important;
}

.mt-9 {
    margin-top: 7rem !important;
}

.mt-10 {
    margin-top: 8rem !important;
}

.mt-11 {
    margin-top: 9rem !important;
}

.mt-12 {
    margin-top: 10rem !important;
}

.mt-13 {
    margin-top: 11rem !important;
}

.mt-14 {
    margin-top: 12rem !important;
}

.mt-15 {
    margin-top: 13rem !important;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-9 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

.py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.py-11 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
}

.py-12 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}

.py-13 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
}

.py-14 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
}

.py-15 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
}

.py-16 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
}

.py-17 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
}

.py-18 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
}

.py-19 {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
}

.py-20 {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

.my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
}

.my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
}

.my-11 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
}

.my-12 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
}

.my-13 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
}

.my-14 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
}

.my-15 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
}

.p-6 {
    padding: 4rem !important;
}

.p-7 {
    padding: 5rem !important;
}

.p-8 {
    padding: 6rem !important;
}

.p-9 {
    padding: 7rem !important;
}

.p-10 {
    padding: 8rem !important;
}

.pt-6 {
    padding-top: 4rem !important;
}

.pt-7 {
    padding-top: 5rem !important;
}

.pt-8 {
    padding-top: 6rem !important;
}

.pt-9 {
    padding-top: 7rem !important;
}

.pt-10 {
    padding-top: 8rem !important;
}

.pt-11 {
    padding-top: 9rem !important;
}

.pt-12 {
    padding-top: 10rem !important;
}

.pt-13 {
    padding-top: 11rem !important;
}

.pt-14 {
    padding-top: 12rem !important;
}

.pt-15 {
    padding-top: 13rem !important;
}

.pt-16 {
    padding-top: 14rem !important;
}

.pt-17 {
    padding-top: 15rem !important;
}

.pt-18 {
    padding-top: 16rem !important;
}

.pt-19 {
    padding-top: 17rem !important;
}

.pb-6 {
    padding-bottom: 4rem !important;
}

.pb-7 {
    padding-bottom: 5rem !important;
}

.pb-8 {
    padding-bottom: 6rem !important;
}

.pb-9 {
    padding-bottom: 7rem !important;
}

.pb-10 {
    padding-bottom: 8rem !important;
}

.pb-11 {
    padding-bottom: 9rem !important;
}

.pb-12 {
    padding-bottom: 10rem !important;
}

.pb-13 {
    padding-bottom: 11rem !important;
}

.pb-14 {
    padding-bottom: 12rem !important;
}

.pb-15 {
    padding-bottom: 13rem !important;
}

.pb-16 {
    padding-bottom: 14rem !important;
}

.pb-17 {
    padding-bottom: 15rem !important;
}

.pb-18 {
    padding-bottom: 16rem !important;
}

.pb-19 {
    padding-bottom: 17rem !important;
}

.pb-20 {
    padding-bottom: 18rem !important;
}

.pb-21 {
    padding-bottom: 19rem !important;
}

.pb-22 {
    padding-bottom: 20rem !important;
}

.pb-23 {
    padding-bottom: 21rem !important;
}

.pb-24 {
    padding-bottom: 22rem !important;
}

.pb-25 {
    padding-bottom: 23rem !important;
}

.ps-6 {
    padding-left: 4rem !important;
}

.ps-7 {
    padding-left: 5rem !important;
}

.ps-8 {
    padding-left: 6rem !important;
}

.ps-9 {
    padding-left: 7rem !important;
}

.ps-10 {
    padding-left: 8rem !important;
}

.ps-11 {
    padding-left: 9rem !important;
}

.ps-12 {
    padding-left: 10rem !important;
}

.ps-13 {
    padding-left: 11rem !important;
}

.ps-14 {
    padding-left: 12rem !important;
}

@media (min-width: 768px) {
    .mt-md-6 {
        margin-top: 4rem !important;
    }
    .mt-md-7 {
        margin-top: 5rem !important;
    }
    .mt-md-8 {
        margin-top: 6rem !important;
    }
    .mt-md-9 {
        margin-top: 7rem !important;
    }
    .mt-md-10 {
        margin-top: 8rem !important;
    }
    .mt-md-11 {
        margin-top: 9rem !important;
    }
    .mt-md-12 {
        margin-top: 10rem !important;
    }
    .mt-md-13 {
        margin-top: 11rem !important;
    }
    .mt-md-14 {
        margin-top: 12rem !important;
    }
    .mb-md-15 {
        margin-bottom: 13rem !important;
    }
    .mb-md-6 {
        margin-bottom: 4rem !important;
    }
    .mb-md-7 {
        margin-bottom: 5rem !important;
    }
    .mb-md-8 {
        margin-bottom: 6rem !important;
    }
    .mb-md-9 {
        margin-bottom: 7rem !important;
    }
    .mb-md-10 {
        margin-bottom: 8rem !important;
    }
    .mb-md-11 {
        margin-bottom: 9rem !important;
    }
    .mb-md-12 {
        margin-bottom: 10rem !important;
    }
    .mb-md-13 {
        margin-bottom: 11rem !important;
    }
    .mb-md-14 {
        margin-bottom: 12rem !important;
    }
    .mb-md-15 {
        margin-bottom: 13rem !important;
    }
    .mb-md-16 {
        margin-bottom: 14rem !important;
    }
    .mb-md-17 {
        margin-bottom: 15rem !important;
    }
    .mb-md-18 {
        margin-bottom: 16rem !important;
    }
    .mb-md-19 {
        margin-bottom: 17rem !important;
    }
    .mb-md-20 {
        margin-bottom: 18rem !important;
    }
    .my-md-6 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }
    .my-md-7 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }
    .my-md-8 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }
    .my-md-9 {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important;
    }
    .my-md-9 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }
    .my-md-10 {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }
    .my-md-11 {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important;
    }
    .my-md-12 {
        margin-top: 11rem !important;
        margin-bottom: 11rem !important;
    }
    .my-md-13 {
        margin-top: 12rem !important;
        margin-bottom: 12rem !important;
    }
    .my-md-14 {
        margin-top: 13rem !important;
        margin-bottom: 13rem !important;
    }
    .my-md-15 {
        margin-top: 14rem !important;
        margin-bottom: 14rem !important;
    }
    .p-md-6 {
        padding: 4rem !important;
    }
    .p-md-7 {
        padding: 5rem !important;
    }
    .p-md-8 {
        padding: 6rem !important;
    }
    .p-md-9 {
        padding: 7rem !important;
    }
    .p-md-10 {
        padding: 8rem !important;
    }
    .pt-md-6 {
        padding-top: 4rem !important;
    }
    .pt-md-7 {
        padding-top: 5rem !important;
    }
    .pt-md-8 {
        padding-top: 6rem !important;
    }
    .pt-md-9 {
        padding-top: 7rem !important;
    }
    .pt-md-10 {
        padding-top: 8rem !important;
    }
    .pt-md-11 {
        padding-top: 9rem !important;
    }
    .pt-md-12 {
        padding-top: 10rem !important;
    }
    .pt-md-13 {
        padding-top: 11rem !important;
    }
    .pt-md-14 {
        padding-top: 12rem !important;
    }
    .pt-md-15 {
        padding-top: 13rem !important;
    }
    .pt-md-16 {
        padding-top: 14rem !important;
    }
    .pt-md-17 {
        padding-top: 15rem !important;
    }
    .pt-md-18 {
        padding-top: 16rem !important;
    }
    .pt-md-19 {
        padding-top: 17rem !important;
    }
    .pt-md-20 {
        padding-top: 18rem !important;
    }
    .pt-md-21 {
        padding-top: 19rem !important;
    }
    .pt-md-22 {
        padding-top: 20rem !important;
    }
    .pb-md-6 {
        padding-bottom: 4rem !important;
    }
    .pb-md-7 {
        padding-bottom: 5rem !important;
    }
    .pb-md-8 {
        padding-bottom: 6rem !important;
    }
    .pb-md-9 {
        padding-bottom: 7rem !important;
    }
    .pb-md-10 {
        padding-bottom: 8rem !important;
    }
    .pb-md-11 {
        padding-bottom: 9rem !important;
    }
    .pb-md-12 {
        padding-bottom: 10rem !important;
    }
    .pb-md-13 {
        padding-bottom: 11rem !important;
    }
    .pb-md-14 {
        padding-bottom: 12rem !important;
    }
    .pb-md-15 {
        padding-bottom: 13rem !important;
    }
    .pb-md-16 {
        padding-bottom: 14rem !important;
    }
    .pb-md-17 {
        padding-bottom: 15rem !important;
    }
    .pb-md-18 {
        padding-bottom: 16rem !important;
    }
    .pb-md-19 {
        padding-bottom: 17rem !important;
    }
    .pb-md-20 {
        padding-bottom: 18rem !important;
    }
    .pb-md-21 {
        padding-bottom: 19rem !important;
    }
    .pb-md-22 {
        padding-bottom: 20rem !important;
    }
    .pb-md-23 {
        padding-bottom: 21rem !important;
    }
    .pb-md-24 {
        padding-bottom: 22rem !important;
    }
    .pb-md-25 {
        padding-bottom: 23rem !important;
    }
    .py-md-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    .py-md-7 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    .py-md-8 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .py-md-9 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }
    .py-md-10 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }
    .py-md-11 {
        padding-top: 9rem !important;
        padding-bottom: 9rem !important;
    }
    .py-md-12 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }
    .py-md-13 {
        padding-top: 11rem !important;
        padding-bottom: 11rem !important;
    }
    .py-md-14 {
        padding-top: 12rem !important;
        padding-bottom: 12rem !important;
    }
    .py-md-15 {
        padding-top: 13rem !important;
        padding-bottom: 13rem !important;
    }
    .py-md-16 {
        padding-top: 14rem !important;
        padding-bottom: 14rem !important;
    }
    .py-md-17 {
        padding-top: 15rem !important;
        padding-bottom: 15rem !important;
    }
    .py-md-18 {
        padding-top: 16rem !important;
        padding-bottom: 16rem !important;
    }
    .py-md-19 {
        padding-top: 17rem !important;
        padding-bottom: 17rem !important;
    }
    .py-md-20 {
        padding-top: 18rem !important;
        padding-bottom: 18rem !important;
    }
    .ps-md-6 {
        padding-left: 4rem !important;
    }
    .ps-md-7 {
        padding-left: 5rem !important;
    }
    .ps-md-8 {
        padding-left: 6rem !important;
    }
    .ps-md-9 {
        padding-left: 7rem !important;
    }
    .ps-md-10 {
        padding-left: 8rem !important;
    }
    .ps-md-11 {
        padding-left: 9rem !important;
    }
    .ps-md-12 {
        padding-left: 10rem !important;
    }
    .ps-md-13 {
        padding-left: 11rem !important;
    }
    .ps-md-14 {
        padding-left: 12rem !important;
    }
}

@media (min-width: 992px) {
    .mt-lg-6 {
        margin-top: 4rem !important;
    }
    .mt-lg-7 {
        margin-top: 5rem !important;
    }
    .mt-lg-8 {
        margin-top: 6rem !important;
    }
    .mt-lg-9 {
        margin-top: 7rem !important;
    }
    .mt-lg-10 {
        margin-top: 8rem !important;
    }
    .mt-lg-11 {
        margin-top: 9rem !important;
    }
    .mt-lg-12 {
        margin-top: 10rem !important;
    }
    .mt-lg-13 {
        margin-top: 11rem !important;
    }
    .mt-lg-14 {
        margin-top: 12rem !important;
    }
    .mb-lg-15 {
        margin-bottom: 13rem !important;
    }
    .mb-lg-6 {
        margin-bottom: 4rem !important;
    }
    .mb-lg-7 {
        margin-bottom: 5rem !important;
    }
    .mb-lg-8 {
        margin-bottom: 6rem !important;
    }
    .mb-lg-9 {
        margin-bottom: 7rem !important;
    }
    .mb-lg-10 {
        margin-bottom: 8rem !important;
    }
    .mb-lg-11 {
        margin-bottom: 9rem !important;
    }
    .mb-lg-12 {
        margin-top: 10rem !important;
    }
    .mb-lg-13 {
        margin-bottom: 11rem !important;
    }
    .mb-lg-14 {
        margin-bottom: 12rem !important;
    }
    .mb-lg-15 {
        margin-bottom: 13rem !important;
    }
    .mb-lg-16 {
        margin-bottom: 14rem !important;
    }
    .mb-lg-17 {
        margin-bottom: 15rem !important;
    }
    .mb-lg-18 {
        margin-bottom: 16rem !important;
    }
    .mb-lg-19 {
        margin-bottom: 17rem !important;
    }
    .mb-lg-20 {
        margin-bottom: 18rem !important;
    }
    .my-lg-6 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }
    .my-lg-7 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }
    .my-lg-8 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }
    .my-lg-9 {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important;
    }
    .my-lg-9 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }
    .my-lg-10 {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }
    .my-lg-11 {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important;
    }
    .my-lg-12 {
        margin-top: 11rem !important;
        margin-bottom: 11rem !important;
    }
    .my-lg-13 {
        margin-top: 12rem !important;
        margin-bottom: 12rem !important;
    }
    .my-lg-14 {
        margin-top: 13rem !important;
        margin-bottom: 13rem !important;
    }
    .my-lg-15 {
        margin-top: 14rem !important;
        margin-bottom: 14rem !important;
    }
    .p-lg-6 {
        padding: 4rem !important;
    }
    .p-lg-7 {
        padding: 5rem !important;
    }
    .p-lg-8 {
        padding: 6rem !important;
    }
    .p-lg-9 {
        padding: 7rem !important;
    }
    .p-lg-10 {
        padding: 8rem !important;
    }
    .pt-lg-6 {
        padding-top: 4rem !important;
    }
    .pt-lg-7 {
        padding-top: 5rem !important;
    }
    .pt-lg-8 {
        padding-top: 6rem !important;
    }
    .pt-lg-9 {
        padding-top: 7rem !important;
    }
    .pt-lg-10 {
        padding-top: 8rem !important;
    }
    .pt-lg-11 {
        padding-top: 9rem !important;
    }
    .pt-lg-12 {
        padding-top: 10rem !important;
    }
    .pt-lg-13 {
        padding-top: 11rem !important;
    }
    .pt-lg-14 {
        padding-top: 12rem !important;
    }
    .pt-lg-15 {
        padding-top: 13rem !important;
    }
    .pt-lg-16 {
        padding-top: 14rem !important;
    }
    .pt-lg-17 {
        padding-top: 15rem !important;
    }
    .pt-lg-18 {
        padding-top: 16rem !important;
    }
    .pt-lg-19 {
        padding-top: 17rem !important;
    }
    .pt-lg-20 {
        padding-top: 18rem !important;
    }
    .pt-lg-21 {
        padding-top: 19rem !important;
    }
    .pt-lg-22 {
        padding-top: 20rem !important;
    }
    .pb-lg-6 {
        padding-bottom: 4rem !important;
    }
    .pb-lg-7 {
        padding-bottom: 5rem !important;
    }
    .pb-lg-8 {
        padding-bottom: 6rem !important;
    }
    .pb-lg-9 {
        padding-bottom: 7rem !important;
    }
    .pb-lg-10 {
        padding-bottom: 8rem !important;
    }
    .pb-lg-11 {
        padding-bottom: 9rem !important;
    }
    .pb-lg-12 {
        padding-bottom: 10rem !important;
    }
    .pb-lg-13 {
        padding-bottom: 11rem !important;
    }
    .pb-lg-14 {
        padding-bottom: 12rem !important;
    }
    .pb-lg-15 {
        padding-bottom: 13rem !important;
    }
    .pb-lg-16 {
        padding-bottom: 14rem !important;
    }
    .pb-lg-17 {
        padding-bottom: 15rem !important;
    }
    .pb-lg-18 {
        padding-bottom: 16rem !important;
    }
    .pb-lg-19 {
        padding-bottom: 17rem !important;
    }
    .pb-lg-20 {
        padding-bottom: 18rem !important;
    }
    .pb-lg-21 {
        padding-bottom: 19rem !important;
    }
    .pb-lg-22 {
        padding-bottom: 20rem !important;
    }
    .pb-lg-23 {
        padding-bottom: 21rem !important;
    }
    .pb-lg-24 {
        padding-bottom: 22rem !important;
    }
    .pb-lg-25 {
        padding-bottom: 23rem !important;
    }
    .py-lg-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    .py-lg-7 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    .py-lg-8 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .py-lg-9 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }
    .py-lg-10 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }
    .py-lg-11 {
        padding-top: 9rem !important;
        padding-bottom: 9rem !important;
    }
    .py-lg-12 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }
    .py-lg-13 {
        padding-top: 11rem !important;
        padding-bottom: 11rem !important;
    }
    .py-lg-14 {
        padding-top: 12rem !important;
        padding-bottom: 12rem !important;
    }
    .py-lg-15 {
        padding-top: 13rem !important;
        padding-bottom: 13rem !important;
    }
    .py-lg-16 {
        padding-top: 14rem !important;
        padding-bottom: 14rem !important;
    }
    .py-lg-17 {
        padding-top: 15rem !important;
        padding-bottom: 15rem !important;
    }
    .py-lg-18 {
        padding-top: 16rem !important;
        padding-bottom: 16rem !important;
    }
    .py-lg-19 {
        padding-top: 17rem !important;
        padding-bottom: 17rem !important;
    }
    .py-lg-20 {
        padding-top: 18rem !important;
        padding-bottom: 18rem !important;
    }
    .ps-lg-6 {
        padding-left: 4rem !important;
    }
    .ps-lg-7 {
        padding-left: 5rem !important;
    }
    .ps-lg-8 {
        padding-left: 6rem !important;
    }
    .ps-lg-9 {
        padding-left: 7rem !important;
    }
    .ps-lg-10 {
        padding-left: 8rem !important;
    }
    .ps-lg-11 {
        padding-left: 9rem !important;
    }
    .ps-lg-12 {
        padding-left: 10rem !important;
    }
    .ps-lg-13 {
        padding-left: 11rem !important;
    }
    .ps-lg-14 {
        padding-left: 12rem !important;
    }
}

@media (min-width: 1200px) {
    .mt-xl-6 {
        margin-top: 4rem !important;
    }
    .mt-xl-7 {
        margin-top: 5rem !important;
    }
    .mt-xl-8 {
        margin-top: 6rem !important;
    }
    .mt-xl-9 {
        margin-top: 7rem !important;
    }
    .mt-xl-10 {
        margin-top: 8rem !important;
    }
    .mt-xl-11 {
        margin-top: 9rem !important;
    }
    .mt-xl-12 {
        margin-top: 10rem !important;
    }
    .mt-xl-13 {
        margin-top: 11rem !important;
    }
    .mt-xl-14 {
        margin-top: 12rem !important;
    }
    .mt-xl-15 {
        margin-top: 13rem !important;
    }
    .mt-xl-16 {
        margin-top: 14rem !important;
    }
    .mt-xl-17 {
        margin-top: 15rem !important;
    }
    .mt-xl-18 {
        margin-top: 16rem !important;
    }
    .mt-xl-19 {
        margin-top: 17rem !important;
    }
    .mt-xl-20 {
        margin-top: 18rem !important;
    }
    .mt-xl-21 {
        margin-top: 19rem !important;
    }
    .mt-xl-22 {
        margin-top: 20rem !important;
    }
    .mt-xl-23 {
        margin-top: 21rem !important;
    }
    .mb-xl-6 {
        margin-bottom: 4rem !important;
    }
    .mb-xl-7 {
        margin-bottom: 5rem !important;
    }
    .mb-xl-8 {
        margin-bottom: 6rem !important;
    }
    .mb-xl-9 {
        margin-bottom: 7rem !important;
    }
    .mb-xl-10 {
        margin-bottom: 8rem !important;
    }
    .mb-xl-11 {
        margin-bottom: 9rem !important;
    }
    .mb-xl-12 {
        margin-top: 10rem !important;
    }
    .mb-xl-13 {
        margin-bottom: 11rem !important;
    }
    .mb-xl-14 {
        margin-bottom: 12rem !important;
    }
    .mb-xl-15 {
        margin-bottom: 13rem !important;
    }
    .mb-xl-16 {
        margin-bottom: 14rem !important;
    }
    .mb-xl-17 {
        margin-bottom: 15rem !important;
    }
    .mb-xl-18 {
        margin-bottom: 16rem !important;
    }
    .mb-xl-19 {
        margin-bottom: 17rem !important;
    }
    .mb-xl-20 {
        margin-bottom: 18rem !important;
    }
    .my-xl-6 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }
    .my-xl-7 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }
    .my-xl-8 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }
    .my-xl-9 {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important;
    }
    .my-xl-9 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }
    .my-xl-10 {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }
    .my-xl-11 {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important;
    }
    .my-xl-12 {
        margin-top: 11rem !important;
        margin-bottom: 11rem !important;
    }
    .my-xl-13 {
        margin-top: 12rem !important;
        margin-bottom: 12rem !important;
    }
    .my-xl-14 {
        margin-top: 13rem !important;
        margin-bottom: 13rem !important;
    }
    .my-xl-15 {
        margin-top: 14rem !important;
        margin-bottom: 14rem !important;
    }
    .p-xl-6 {
        padding: 4rem !important;
    }
    .p-xl-7 {
        padding: 5rem !important;
    }
    .p-xl-8 {
        padding: 6rem !important;
    }
    .p-xl-9 {
        padding: 7rem !important;
    }
    .p-xl-10 {
        padding: 8rem !important;
    }
    .pt-xl-6 {
        padding-top: 4rem !important;
    }
    .pt-xl-7 {
        padding-top: 5rem !important;
    }
    .pt-xl-8 {
        padding-top: 6rem !important;
    }
    .pt-xl-9 {
        padding-top: 7rem !important;
    }
    .pt-xl-10 {
        padding-top: 8rem !important;
    }
    .pt-xl-11 {
        padding-top: 9rem !important;
    }
    .pt-xl-12 {
        padding-top: 10rem !important;
    }
    .pt-xl-13 {
        padding-top: 11rem !important;
    }
    .pt-xl-14 {
        padding-top: 12rem !important;
    }
    .pt-xl-15 {
        padding-top: 13rem !important;
    }
    .pt-xl-16 {
        padding-top: 14rem !important;
    }
    .pt-xl-17 {
        padding-top: 15rem !important;
    }
    .pt-xl-18 {
        padding-top: 16rem !important;
    }
    .pt-xl-19 {
        padding-top: 17rem !important;
    }
    .pt-xl-20 {
        padding-top: 18rem !important;
    }
    .pt-xl-21 {
        padding-top: 19rem !important;
    }
    .pt-xl-22 {
        padding-top: 20rem !important;
    }
    .pb-xl-6 {
        padding-bottom: 4rem !important;
    }
    .pb-xl-7 {
        padding-bottom: 5rem !important;
    }
    .pb-xl-8 {
        padding-bottom: 6rem !important;
    }
    .pb-xl-9 {
        padding-bottom: 7rem !important;
    }
    .pb-xl-10 {
        padding-bottom: 8rem !important;
    }
    .pb-xl-11 {
        padding-bottom: 9rem !important;
    }
    .pb-xl-12 {
        padding-bottom: 10rem !important;
    }
    .pb-xl-13 {
        padding-bottom: 11rem !important;
    }
    .pb-xl-14 {
        padding-bottom: 12rem !important;
    }
    .pb-xl-15 {
        padding-bottom: 13rem !important;
    }
    .pb-xl-16 {
        padding-bottom: 14rem !important;
    }
    .pb-xl-17 {
        padding-bottom: 15rem !important;
    }
    .pb-xl-18 {
        padding-bottom: 16rem !important;
    }
    .pb-xl-19 {
        padding-bottom: 17rem !important;
    }
    .pb-xl-20 {
        padding-bottom: 18rem !important;
    }
    .pb-xl-21 {
        padding-bottom: 19rem !important;
    }
    .pb-xl-22 {
        padding-bottom: 20rem !important;
    }
    .pb-xl-23 {
        padding-bottom: 21rem !important;
    }
    .pb-xl-24 {
        padding-bottom: 22rem !important;
    }
    .pb-xl-25 {
        padding-bottom: 23rem !important;
    }
    .py-xl-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    .py-xl-7 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    .py-xl-8 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .py-xl-9 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }
    .py-xl-10 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }
    .py-xl-11 {
        padding-top: 9rem !important;
        padding-bottom: 9rem !important;
    }
    .py-xl-12 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }
    .py-xl-13 {
        padding-top: 11rem !important;
        padding-bottom: 11rem !important;
    }
    .py-xl-14 {
        padding-top: 12rem !important;
        padding-bottom: 12rem !important;
    }
    .py-xl-15 {
        padding-top: 13rem !important;
        padding-bottom: 13rem !important;
    }
    .py-xl-16 {
        padding-top: 14rem !important;
        padding-bottom: 14rem !important;
    }
    .py-xl-17 {
        padding-top: 15rem !important;
        padding-bottom: 15rem !important;
    }
    .py-xl-18 {
        padding-top: 16rem !important;
        padding-bottom: 16rem !important;
    }
    .py-xl-19 {
        padding-top: 17rem !important;
        padding-bottom: 17rem !important;
    }
    .py-xl-20 {
        padding-top: 18rem !important;
        padding-bottom: 18rem !important;
    }
    .ps-xl-6 {
        padding-left: 4rem !important;
    }
    .ps-xl-7 {
        padding-left: 5rem !important;
    }
    .ps-xl-8 {
        padding-left: 6rem !important;
    }
    .ps-xl-9 {
        padding-left: 7rem !important;
    }
    .ps-xl-10 {
        padding-left: 8rem !important;
    }
    .ps-xl-11 {
        padding-left: 9rem !important;
    }
    .ps-xl-12 {
        padding-left: 10rem !important;
    }
    .ps-xl-13 {
        padding-left: 11rem !important;
    }
    .ps-xl-14 {
        padding-left: 12rem !important;
    }
}

.gnws-intro-story-left {
    position: relative;
}

.gnws-intro-story-left_image {
    z-index: 1;
}

.gnws-intro-story-left_add {
    position: absolute;
    width: 41rem;
    height: 60rem;
    background-color: #e8e8e8;
    bottom: -37px;
    left: -31px;
    z-index: -1;
}

.gnws-intro-story-right_content {
    font-size: 2rem;
    line-height: 3rem;
    color: var(--primary-color);
    text-align: justify;
}

.gnws-intro-story-right_content > * {
    margin-bottom: 3.2rem;
}

.gnws-intro-story-right .gnws-intro-story-right_content * {
    margin-bottom: 3.2rem;
}

.gnws-intro-vision .gnws-mission:nth-child(even) .gnws-vision .gnws-intro-vision-description .gnws-col-1 {
    order: 2;
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision .gnws-mission:nth-child(even) .gnws-vision .gnws-intro-vision-description .gnws-col-1 {
        order: 2;
    }
}

.gnws-intro-vision
    .gnws-mission:nth-child(even)
    .gnws-vision
    .gnws-intro-vision-description
    .gnws-col-1
    .gnws-intro-vision-description_left
    .gnws-intro-vision-description_left-title:before {
    content: "";
    height: 0;
}

.gnws-intro-vision
    .gnws-mission:nth-child(even)
    .gnws-vision
    .gnws-intro-vision-description
    .gnws-col-1
    .gnws-intro-vision-description_left
    .gnws-intro-vision-description_left-title:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3.1rem;
    width: 23rem;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
    opacity: 0.1;
}

@media only screen and (max-width: 1050px) {
    .gnws-intro-vision
        .gnws-mission:nth-child(even)
        .gnws-vision
        .gnws-intro-vision-description
        .gnws-col-1
        .gnws-intro-vision-description_left
        .gnws-intro-vision-description_left-title:after {
        width: 18rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision
        .gnws-mission:nth-child(even)
        .gnws-vision
        .gnws-intro-vision-description
        .gnws-col-1
        .gnws-intro-vision-description_left
        .gnws-intro-vision-description_left-title:after {
        width: 30rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision
        .gnws-mission:nth-child(even)
        .gnws-vision
        .gnws-intro-vision-description
        .gnws-col-1
        .gnws-intro-vision-description_left
        .gnws-intro-vision-description_left-title:after {
        width: 30rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-intro-vision
        .gnws-mission:nth-child(even)
        .gnws-vision
        .gnws-intro-vision-description
        .gnws-col-1
        .gnws-intro-vision-description_left
        .gnws-intro-vision-description_left-title:after {
        width: 15rem;
        right: -1.1rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-intro-vision
        .gnws-mission:nth-child(even)
        .gnws-vision
        .gnws-intro-vision-description
        .gnws-col-1
        .gnws-intro-vision-description_left
        .gnws-intro-vision-description_left-title:after {
        width: 12rem;
    }
}

.gnws-intro-vision
    .gnws-mission:nth-child(even)
    .gnws-vision
    .gnws-intro-vision-description
    .gnws-col-1
    .gnws-intro-vision-description_left
    .gnws-intro-vision-description_left-image {
    top: -88px;
    left: -308px;
    z-index: -1;
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision
        .gnws-mission:nth-child(even)
        .gnws-vision
        .gnws-intro-vision-description
        .gnws-col-1
        .gnws-intro-vision-description_left
        .gnws-intro-vision-description_left-image {
        top: -87px;
        left: 7px;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-intro-vision
        .gnws-mission:nth-child(even)
        .gnws-vision
        .gnws-intro-vision-description
        .gnws-col-1
        .gnws-intro-vision-description_left
        .gnws-intro-vision-description_left-image {
        top: -42px;
        left: 7px;
    }
}

.gnws-intro-vision .gnws-mission:nth-child(even) .gnws-vision .gnws-intro-vision-description .gnws-col-2 {
    order: 1;
}

@media only screen and (max-width: 1500px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 17rem;
    }
}

@media only screen and (max-width: 1400px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 16rem;
    }
}

@media only screen and (max-width: 1300px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 15rem;
    }
}

@media only screen and (max-width: 1200px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 14rem;
    }
}

@media only screen and (max-width: 1100px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 13rem;
    }
}

@media only screen and (max-width: 1024px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 12rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 9rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 6rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-vision .gnws-intro-vision-image {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision .gnws-mission:nth-child(even) .gnws-vision .gnws-intro-vision-description .gnws-col-2 {
        order: 1;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision .gnws-mission:nth-child(even) .gnws-vision .gnws-intro-vision-image {
        top: 60%;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-intro-vision .gnws-mission:nth-child(even) .gnws-vision .gnws-intro-vision-image {
        top: 47%;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-intro-vision .gnws-mission:nth-child(even) .gnws-vision .gnws-intro-vision-image {
        top: 43%;
    }
}

.gnws-intro-vision
    .gnws-mission:nth-child(odd)
    .gnws-vision
    .gnws-intro-vision-description
    .gnws-intro-vision-description_left
    .gnws-intro-vision-description_left-title {
    margin-right: 3rem;
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision
        .gnws-mission:nth-child(odd)
        .gnws-vision
        .gnws-intro-vision-description
        .gnws-intro-vision-description_left
        .gnws-intro-vision-description_left-title {
        margin-right: 0;
    }
}

.gnws-intro-vision .gnws-mission:nth-child(odd) .gnws-vision .gnws-intro-vision-image {
    left: 46%;
}

@media only screen and (max-width: 1050px) {
    .gnws-intro-vision .gnws-mission:nth-child(odd) .gnws-vision .gnws-intro-vision-image {
        left: 46%;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision .gnws-mission:nth-child(odd) .gnws-vision .gnws-intro-vision-image {
        top: 62%;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-intro-vision .gnws-mission:nth-child(odd) .gnws-vision .gnws-intro-vision-image {
        top: 49%;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-intro-vision .gnws-mission:nth-child(odd) .gnws-vision .gnws-intro-vision-image {
        top: 45%;
    }
}

.gnws-intro-vision .gnws-mission:last-child {
    padding-bottom: 10rem !important;
}

@media only screen and (max-width: 500px) {
    .gnws-intro-vision .gnws-mission:last-child {
        padding-bottom: 0 !important;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision-description .gnws-col-1 {
        order: 2;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision-description .gnws-col-2 {
        order: 1;
    }
}

.gnws-intro-vision-description_left-title {
    color: var(--primary-color);
    position: relative;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision-description_left-title {
        text-align: center;
    }
}

.gnws-intro-vision-description_left-title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3.1rem;
    width: 23rem;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
    opacity: 0.1;
}

@media only screen and (max-width: 1050px) {
    .gnws-intro-vision-description_left-title:before {
        width: 17rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision-description_left-title:before {
        width: 31rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-intro-vision-description_left-title:before {
        width: 17rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-intro-vision-description_left-title:before {
        width: 15rem;
    }
}

.gnws-intro-vision-description_left ul {
    list-style-type: disc;
}

@media only screen and (max-width: 500px) {
    .gnws-intro-vision-description_left ul {
        list-style-type: none;
    }
}

.gnws-intro-vision-description_left ul li {
    font-size: 2rem;
    line-height: 3rem;
    text-align: justify;
    color: var(--primary-color);
    margin-bottom: 3.2rem;
}

.gnws-intro-vision-description_right {
    z-index: 1;
}

.gnws-intro-vision-description_right img {
    width: 100%;
}

.gnws-intro-vision-image {
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.12;
    font-size: 18rem;
    color: #fff;
    font-weight: 900;
    text-shadow:
        1px 0 0 #000,
        -1px 0 0 #000,
        0 1px 0 #000,
        0 -1px 0 #000,
        1px 1px #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

@media only screen and (max-width: 1100px) {
    .gnws-intro-vision-image {
        font-size: 12rem;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-vision-image {
        font-size: 9rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-intro-vision-image {
        font-size: 6rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-intro-vision-image {
        font-size: 5rem;
    }
}

.gnws-intro-media {
    background-color: var(--secondary-color);
}

@media only screen and (max-width: 800px) {
    .gnws-intro-media_title {
        text-align: center;
    }
}

.gnws-intro-media-description_right {
    background-color: var(--light-color);
    padding-top: 7.7rem;
    padding-left: 7.2rem;
    padding-right: 6.8rem;
}

@media only screen and (max-width: 1100px) {
    .gnws-intro-media-description_right {
        padding: 4rem;
    }
}

.gnws-intro-media-description_right-title {
    font-size: 2.8rem;
    line-height: 4rem;
    color: var(--primary-color);
    font-weight: 500;
}

.gnws-intro-media-description_right-title_nhay1 {
    top: -18px;
    left: -20px;
}

.gnws-intro-media-description_right-title_nhay2 {
    bottom: 4px;
    right: 269px;
    transform: rotate(180deg);
}

@media only screen and (max-width: 1100px) {
    .gnws-intro-media-description_right-title_nhay2 {
        right: 65px;
    }
}

@media only screen and (max-width: 800px) {
    .gnws-intro-media-description_right-title_nhay2 {
        right: 491px;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-intro-media-description_right-title_nhay2 {
        right: 64px;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-intro-media-description_right-title_nhay2 {
        right: -9px;
    }
}

.gnws-intro-media-description_right-content {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 400;
}

.gnws-intro-media-description_right-image p {
    font-size: 1.6rem;
    line-height: 1.9rem;
    color: var(--primary-color);
}

.gnws-intro-media-btn .btn {
    background-color: var(--light-color);
    padding: 1.1rem;
}

@media only screen and (max-width: 500px) {
    .gnws-intro-media-btn .btn {
        padding: 0.5rem;
    }
}

.gnws-intro-media-btn .btn:focus {
    box-shadow: none;
}

.gnws-intro-media-btn .btn:hover {
    background-color: var(--primary-color);
}

.gnws-intro-media-btn .btn:hover svg path {
    color: var(--light-color);
    stroke: var(--light-color);
}

.gnws-intro-team_description-content {
    padding-bottom: 2.1rem;
    background-color: var(--secondary-color);
}

.gnws-intro-team_description-content img {
    -webkit-transition: all 1s;
    transition: all 2s;
}

.gnws-intro-team_description-content_title {
    margin-top: 2.1rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    .gnws-intro-team_description-content_title {
        font-size: 2.1rem;
    }
}

@media only screen and (max-width: 400px) {
    .gnws-intro-team_description-content_title {
        font-size: 1.8rem;
    }
}

.gnws-intro-team_description-content_position {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.3rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.gnws-intro-team_description-content_intro {
    font-size: 1.6rem;
    font-weight: 400;
    text-align: justify;
    line-height: 2.5rem;
    padding: 0 2rem;
}

.gnws-intro-image_content {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    grid-template-rows: 512px 213px 328px;
    grid-template-areas: "one two two " "three three for " "three three five ";
    grid-gap: 1.9rem;
}

.gnws-intro-image_content-discription {
    position: relative;
}

.gnws-intro-image_content-discription:after {
    content: "";
    z-index: 9;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.35s;
}

.gnws-intro-image_content-discription img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gnws-intro-image_content-discription_seemore {
    padding: 1.5rem 3rem;
    border: 1px solid #fff;
    position: absolute;
    z-index: 999;
    color: #fff;
    font-size: 2rem;
    line-height: 2rem;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition:
        opacity 0.35s,
        transform 0.35s;
    transform: scale(1.5) translate(-50%, -50%);
    transform-origin: left center;
    border-radius: 5px;
}

.gnws-intro-image_content-discription:hover {
    box-shadow: 0 5px 12px 2px #d9d9d9;
    background-color: #fff;
    overflow: hidden;
}

.gnws-intro-image_content-discription:hover .gnws-intro-image_content-discription_seemore {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
}

.gnws-intro-image_content-discription:hover:after {
    opacity: 1;
}

.gnws-intro-image_content-discription:first-child {
    grid-area: one;
}

.gnws-intro-image_content-discription:nth-child(2) {
    grid-area: two;
}

.gnws-intro-image_content-discription:nth-child(3) {
    grid-area: three;
}

.gnws-intro-image_content-discription:nth-child(4) {
    grid-area: for;
}

.gnws-intro-image_content-discription:nth-child(n + 6) {
    display: none;
}

.gnws-intro-image_content-discription:last-child {
    grid-area: five;
}

@media only screen and (max-width: 500px) {
    .gnws-intro-image_content {
        display: grid;
        grid-template-columns: 1fr 0.5fr 1fr;
        grid-template-rows: 256px 106px 164px;
        grid-template-areas: "one two two " "three three for " "three three five ";
        grid-gap: 1.9rem;
    }
}

.gnws-intro-info {
    background-color: var(--secondary-color);
}

.gnws-intro-info .gnws-intro-info-left img {
    max-width: 30%;
}

@media only screen and (max-width: 500px) {
    .gnws-intro-info-left {
        text-align: center;
    }
}

.gnws-intro-info-right {
    background-color: var(--light-color);
    padding: 2rem;
}

.gnws-intro-info-right p {
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.8rem;
}

.gnws-intro-consultant_title {
    font-size: 3.2rem;
    line-height: 4.4rem;
    color: var(--primary-color);
}

@media only screen and (min-width: 1100px) {
    .gx-8 {
        --bs-gutter-x: 8rem;
    }
}

.gnws-padding_75 {
    padding: 0 0.75rem;
}

.gnws-contact-right .gnws-footer-news-content h5 {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.gnws-contact-right .gnws-footer-news-content p {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gnws-contact-right .gnws-footer-news-content ul li a {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 2rem;
}

.gnws-contact-right .gnws-footer-news-content ul li a svg {
    stroke: var(--primary-color);
    color: var(--primary-color);
    fill: var(--primary-color);
}

.gnws-contact-right .gnws-footer-social {
    margin-top: 2rem;
}

@media only screen and (max-width: 500px) {
    .gnws-contact_map iframe {
        height: 300px;
    }
}

@media only screen and (min-width: 1100px) {
    .gx-contact-6 {
        --bs-gutter-x: 6rem;
    }
}

.gnws-design-slider .progress-wrapper p {
    color: var(--light-color);
}

.gnws-design-slider-title {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.gnws-design-slider-title h6 {
    font-size: 5rem;
    line-height: 5rem;
    color: var(--light-color);
}

@media only screen and (max-width: 1400px) {
    .gnws-design-slider-title {
        top: 70%;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-design-slider-title h6 {
        font-size: 3.5rem;
    }
}

.gnws-design-slider-title span {
    display: block;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem;
    color: var(--light-color);
}

.gnws-design-slider-title h3 {
    border: 1px solid var(--primary-color);
    -webkit-border-radius: 50px;
    border-radius: 50px;
    padding: 9px 15px 7px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.1;
    display: inline-block;
    text-transform: uppercase;
    color: var(--light-color);
    background-color: var(--primary-color);
    margin-bottom: 2rem;
}

.gnws-design-slider-title ul {
    margin-top: 2rem;
}

.gnws-design-slider-title ul li {
    display: inline-block;
    margin-right: 20px;
    width: max-content;
}

.gnws-design-slider-title ul li p {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2rem;
    color: var(--primary-variant);
}

.gnws-design-slider-title ul li p span {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.gnws-breadcrumb {
    border-bottom: 1px solid #e3e3e3;
}

.gnws-design-service-all-left :is(h2, h3, h4, h5, h6) {
    color: var(--primary-color);
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.gnws-design-service-all-left p {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 2rem;
}

.gnws-design-service-all-left ul {
    margin-bottom: 2rem;
}

.gnws-design-service-all-left ul li {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 2.2rem;
    text-align: justify;
    margin-bottom: 1rem;
}

.gnws-design-service-all-left ul li span {
    font-weight: bold;
}

.gnws-design-service-all-left ol {
    list-style: none;
}

.gnws-design-service-all-left ol > li {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 4rem;
    position: relative;
    padding-left: 7rem;
}

.gnws-design-service-all-left ol > li:before {
    content: attr(data-number);
    position: absolute;
    border-radius: 50%;
    padding: 10px;
    height: 4rem;
    width: 4rem;
    line-height: 2rem;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-left: -6rem;
    margin-top: -1rem;
}

.gnws-design-service-all-left ol > li ul {
    margin-top: 1rem;
}

.gnws-design-service-all-left ol > li ul li {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gnws-design-service-all:nth-child(even) .design-col-1 {
    order: 2;
}

@media only screen and (max-width: 800px) {
    .gnws-design-service-all:nth-child(even) .design-col-1 {
        order: 1;
    }
    .gnws-design-service-all-left ol li br {
        display: none;
    }
}

.gnws-design-service-all:nth-child(even) .design-col-2 {
    order: 1;
}

@media only screen and (max-width: 800px) {
    .gnws-design-service-all:nth-child(even) .design-col-2 {
        order: 2;
    }
}

.gnws-design-construction_content {
    font-size: 2rem;
    line-height: 3rem;
    color: var(--primary-color);
    text-align: justify;
}

.gnws-contruction-material-content p {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 2.2rem;
    text-align: justify;
    margin-bottom: 2rem;
}

.gnws-contruction-material-description :is(h2, h3, h4, h5, h6) {
    color: var(--primary-color);
    font-size: 3rem;
    line-height: 4.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.gnws-contruction-material-description p {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 2.2rem;
    text-align: justify;
    margin-bottom: 2rem;
}

.gnws-contruction-material-description .gnws-btn {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.gnws-contruction-material-description:nth-child(odd) .contruction-col-1 {
    order: 2;
}

@media only screen and (max-width: 800px) {
    .gnws-contruction-material-description:nth-child(odd) .contruction-col-1 {
        order: 1;
    }
}

.gnws-contruction-material-description:nth-child(odd) .contruction-col-2 {
    order: 1;
}

@media only screen and (max-width: 800px) {
    .gnws-contruction-material-description:nth-child(odd) .contruction-col-2 {
        order: 2;
    }
}

.gnws-product_banner {
    position: relative;
}

.gnws-product_banner.gnws-single_project::after {
    content: "";
    background: rgb(255 255 255 / 80%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.gnws-design-slider .gnws-carousel::after {
    content: "";
    background: rgb(0 0 0 / 30%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.progress-wrapper {
    z-index: 1;
}

.gnws-product_banner img {
    width: 100%;
}

@media only screen and (max-width: 1100px) {
    .gnws-product_banner img {
        height: 500px;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-product_banner img {
        height: 300px;
    }
}

.gnws-product_banner-title {
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

@media only screen and (max-width: 500px) {
    .gnws-product_banner-title {
        bottom: 5%;
    }
}

.gnws-product_banner-title .title-h1 {
    font-size: 5rem;
    line-height: 5rem;
    color: var(--light-color);
}

.gnws-product_banner.gnws-single_project .title-h1 {
    color: var(--dark-color);
}

@media only screen and (max-width: 500px) {
    .gnws-product_banner-title .title-h1 {
        font-size: 3.5rem;
    }
}

.gnws-product_banner-title span {
    display: block;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem;
    color: var(--light-color);
}

.gnws-product_banner-title h3 {
    border: 1px solid var(--primary-color);
    -webkit-border-radius: 50px;
    border-radius: 50px;
    padding: 9px 15px 7px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.1;
    display: inline-block;
    text-transform: uppercase;
    color: var(--light-color);
    background-color: var(--primary-color);
    margin-bottom: 2rem;
}

.gnws-product_banner-title ul {
    margin-top: 2rem;
}

.gnws-product_banner-title ul li {
    display: inline-block;
    margin-right: 20px;
    width: max-content;
}

.gnws-product_banner-title ul li p {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2rem;
    color: var(--primary-variant);
}

.gnws-product_banner-title ul li p span {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.gnws-product_banner-scroll {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    display: inline-block;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 1;
}

.gnws-product_banner-scroll p {
    text-transform: uppercase;
    font-size: 1.3rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.gnws-product_banner-scroll p:after {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #000;
    display: inline-block;
    margin-top: 5px;
    margin-right: 2px;
}

.product-main .product-mio {
    background-color: #f3f3f3;
    position: relative;
    margin-bottom: 3rem;
}

.product-main .product-mio a {
    display: inline-block;
}

.product-main .product-mio-label {
    line-height: 1;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    z-index: 2;
    top: 0.8em;
    font-size: 1.2rem;
    left: 0.8em;
}

.product-main .product-mio-label_content {
    background-color: var(--primary-variant);
    padding: 0.5rem 0.8rem;
    border-radius: 3px;
}

.btn {
    border-radius: 5px;
}

.product-main .product-detail .product-name a {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.35;
}

.product-main .product-detail .product-name a:hover {
    color: var(--primary-variant);
}

.product-main .product-detail .product-price del {
    color: #a7a7a7;
    font-size: 1.5rem;
    line-height: 1.7rem;
    margin-right: 1rem;
}

.product-main .product-detail .product-price ins {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.005em;
    color: #d92a2e;
    text-decoration: none;
}

.product-main:hover .product-mio {
    box-shadow: 0 25px 35px -5px #0000001a;
    transition: all 0.3s linear;
}

.product-main:hover .product-name a {
    color: var(--primary-variant);
}

.gnws-product-menu ul li {
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
    line-height: 1.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.gnws-product-menu ul li a {
    position: relative;
    display: block;
    font-size: 2rem;
    line-height: 1.9rem;
    color: var(--primary-color);
    font-weight: 300;
}

.gnws-product-menu ul li a span {
    position: absolute;
    font-size: 1.2rem;
    line-height: 2.1rem;
    color: var(--primary-color);
    top: -10px;
    right: -17px;
    font-weight: 300;
}

.gnws-product-menu ul li .gnws-active {
    text-decoration: underline;
    font-weight: 500;
}

@media only screen and (min-width: 1100px) {
    .gnws-detail-slider .carousel-main .carousel-cell img,
    .gnws-detail-slider .carousel-main .carousel-cell video {
        height: 60vh;
        width: auto;
    }
}

.gnws-detail-slider .carousel-nav .carousel-cell {
    width: 10%;
}

@media only screen and (max-width: 1100px) {
    .gnws-detail-slider .carousel-nav .carousel-cell {
        width: 20%;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-detail-slider .carousel-nav .carousel-cell {
        width: 30%;
    }
}

.gnws-detail-slider_description {
    border-bottom: 1px solid #e3e3e3;
}

.gnws-detail-slider_description-left_title {
    line-height: 1;
    font-size: 3rem;
    color: var(--primary-color);
}

.gnws-detail-slider_description-left_content {
    line-height: 1.4;
    font-size: 1.6rem;
    color: var(--primary-variant);
}

.gnws-detail-slider_description-right-price ins {
    font-size: 2.4rem;
    margin-right: 3rem;
    text-decoration: none;
    color: var(--primary-variant);
    font-weight: 800;
}

.gnws-detail-slider_description-right-price ins b {
    font-size: 2.8rem;
}

.gnws-detail-slider_description-right-price span {
    font-size: 1.6rem;
    color: #666;
}

.gnws-detail-slider_description-right-saving span {
    font-size: 1.4rem;
}

.gnws-detail-slider_description-right-saving_percent b {
    padding: 0.5rem;
    color: var(--light-color);
    line-height: 26px;
    width: 40px;
    background: var(--primary-variant);
    font-size: 1.3rem;
    margin-left: 15px;
    border-radius: 3px;
    font-weight: 700;
}

.gnws-detail-slider_description-buy a {
    display: block;
    height: 50px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 11px;
    border-radius: 5px;
    background: var(--primary-variant) url(../images/right-chevron.png) no-repeat 320px center;
}

.gnws-detail-slider_description-buy a b {
    font-size: 1.4rem;
    display: block;
    padding-top: 1.7rem;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 1rem;
}

@media only screen and (max-width: 500px) {
    .gnws-detail-slider_description-buy a b {
        padding-top: 2.5rem;
    }
}

.gnws-detail-slider_description-buy a:hover {
    background-color: var(--primary-color);
}

@media only screen and (max-width: 500px) {
    .gnws-detail-slider_description-buy a {
        background: var(--primary-color) url(../images/right-chevron.png) no-repeat 210px center;
        width: 83%;
    }
}

.gnws-detail-slider_content-description_title {
    line-height: 3.5rem;
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.gnws-detail-slider_content-description p {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 2.6rem;
}

#order-product {
    display: none;
    padding: 0;
    z-index: 99999;
}

#order-product .order-product-all {
    z-index: 99999;
    padding: 0;
    margin: 0 auto 0 auto;
    max-width: 90%;
    min-width: 500px;
    height: auto;
    overflow: hidden;
    background-color: #fff;
}

@media only screen and (max-width: 1100px) {
    #order-product .order-product-all {
        max-width: 1500px;
    }
}

@media only screen and (max-width: 500px) {
    #order-product .order-product-all {
        min-width: 380px;
    }
}

@media only screen and (max-width: 400px) {
    #order-product .order-product-all {
        min-width: 350px;
    }
}

#order-product .order-product-all-right {
    background-color: #efefef;
    padding: 3rem 2rem;
}

#order-product .order-product-all-right_title {
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
}

#order-product .order-product-all-right_content {
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 500;
}

#order-product .order-product-all-right .form-control {
    margin-bottom: 2rem;
    border: 0px solid #fff;
    font-size: 14px;
    color: var(--primary-color);
    padding: 1.7rem;
}

#order-product .order-product-all-right .form-control:focus {
    box-shadow: none;
}

#order-product .order-product-all-right_address {
    margin-bottom: 0.5rem;
}

#order-product .order-product-all-right_address span {
    margin-left: 0.5rem;
    line-height: 2.6rem;
    color: #555;
    font-size: 1.6rem;
}

#order-product .order-product-all-right .btn {
    background: var(--primary-variant) url(../images/iz.png) no-repeat 91% 50%;
    padding: 1rem 0;
    color: var(--light-color);
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.4s linear;
}

@media only screen and (max-width: 500px) {
    #order-product .order-product-all-right .btn {
        background: var(--primary-variant) url(../images/iz.png) no-repeat 95% 50%;
    }
}

#order-product .order-product-all-right .btn:hover {
    background-color: var(--primary-color);
    transition: all 0.4s linear;
}

.fancybox__container .fancybox__carousel .fancybox__viewport .fancybox__track .fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 64px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
}

@media only screen and (max-width: 500px) {
    .fancybox__container .fancybox__carousel .fancybox__viewport .fancybox__track .fancybox__slide {
        padding: 64px 20px !important;
    }
}

@media only screen and (max-width: 400px) {
    .fancybox__container .fancybox__carousel .fancybox__viewport .fancybox__track .fancybox__slide {
        padding: 64px 15px !important;
    }
}

@media only screen and (max-width: 500px) {
    .fancybox__container .fancybox__carousel .fancybox__viewport .fancybox__track .fancybox__slide .fancybox__content {
        padding: 36px 15px;
    }
}

.the-content h1,
.the-content h2 {
    font-weight: 500;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.the-content img {
    margin-bottom: 2rem;
}

.the-content h3 {
    font-weight: 500;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.the-content :is(h4, h5, h6) {
    font-size: 2.5rem;
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.the-content p {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.the-content p a {
    /* margin-left: 0.2rem; */
    color: var(--primary-variant);
}

/* .the-content p span {
margin: 0 0.3rem;
}
.the-content p .time {
margin: 0;
} */

.the-content .carousel-main .carousel-cell img {
    height: 500px;
    width: auto;
}

@media only screen and (max-width: 500px) {
    .the-content .carousel-main .carousel-cell img {
        height: 300px;
    }
}

.the-content .carousel-nav .carousel-cell {
    padding: 0 0.5rem;
    width: 10%;
}

.the-content .carousel-nav .carousel-cell img {
    object-fit: cover;
    height: 100px;
    width: auto;
}

@media only screen and (max-width: 1100px) {
    .the-content .carousel-nav .carousel-cell {
        width: 20%;
    }
}

@media only screen and (max-width: 500px) {
    .the-content .carousel-nav .carousel-cell {
        width: 30%;
    }
}

.the-content ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 5rem;
}

.the-content ul.blocks-gallery-grid {
    margin-bottom: 0;
    padding-left: 0;
}

.the-content .wp-block-gallery img {
    margin-bottom: 0;
}

.the-content ul li {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gnws-news-product-description {
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}

.gnws-news-product-description-right-title a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2em;
}

.lh-0 {
    line-height: 0;
}

.gnws-news-product-description-right-title a:hover {
    color: var(--primary-variant);
}

.gnws-news-product-description-right-time img {
    border-radius: 100%;
    height: 25px;
}

.gnws-news-product-description-right-time {
    position: relative;
}

.gnws-news-product-description-right-time::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: var(--primary-variant);
    margin: 12px 0 10px 0;
    position: absolute;
    bottom: -15px;
    left: 0;
}

.gnws-news-product-description-right-time span {
    font-size: 14px;
    line-height: 1.5;
    color: #242424;
}

.gnws-news-product-description-right-time-updates {
    border-left: 1px solid #e4e4e4;
}

.gnws-news-product-description-right-content p {
    line-height: 1.5;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 5;
}

.gnws-news-product-description-right-content a {
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
}

.gnws-news-product-description-right-content a:hover {
    color: var(--primary-variant);
}

.gnws-news-product-description-right-content a:hover svg {
    fill: var(--primary-variant);
    text-decoration: none;
    transition: all 0.5s linear;
}

.gnws-news-product-description-right-content a svg {
    transition: all 0.5s linear;
}

.gnws-news-product-description-image img {
    width: 100%;
}

.gnws-news-hot-description {
    background: #faf9f9;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}

.gnws-news-hot-description-title a {
    font-weight: 600;
    line-height: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.gnws-news-hot-description .small-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gnws-news-hot-description-content p {
    line-height: 1.5;
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.gnws-news-posts-description_title {
    font-size: 3.8rem;
    color: var(--primary-color);
    line-height: 6.8rem;
    font-weight: 500;
}

.gnws-news-posts-description-content {
    background-color: var(--primary-variant);
    transition: all 0.3s linear;
    border-radius: 5px;
}

.gnws-news-posts-description-content a {
    display: block;
    padding: 2rem 0;
    color: var(--light-color);
    font-size: 2rem;
    line-height: 3rem;
}

.gnws-news-posts-description-content:hover {
    background-color: var(--primary-color);
    transition: all 0.3s linear;
}

.sl-news_date {
    font-size: 1.5rem;
}

.gnws-news-signup-description {
    background: #faf9f9;
}

.gnws-news-signup-description form .form-control {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 2.6rem;
    color: var(--primary-color);
    padding: 1rem 1.7rem;
    border: 1px solid #21212196;
}

.gnws-news-signup-description form .form-control:focus {
    box-shadow: none;
}

.gnws-news-signup-description form ::-webkit-input-placeholder {
    /* Edge */
    font-size: 1.8rem;
}

.gnws-news-signup-description form :-ms-input-placeholder {
    /* Internet Explorer */
}

.gnws-news-signup-description form input[type="text"] {
    font-size: 1.8rem;
}

.gnws-news-signup-description form select {
    color: var(--primary-color);
    display: block;
    width: 100%;
    font-size: 1.8rem;
    line-height: 2.6rem;
    background-color: transparent;
    padding: 1.2rem 1.7rem;
    border: 1px solid #21212196 !important;
    border-radius: 0.25rem;
}

.gnws-news-signup-description form .btn {
    background-color: var(--primary-variant);
    padding: 1rem 2.1rem;
    color: var(--light-color);
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.4s linear;
}

.gnws-news-signup-description form .btn:hover {
    background-color: var(--dark-color);
    transition: all 0.4s linear;
}

.gnws-contact {
    background-color: var(--secondary-color);
}

@media only screen and (max-width: 500px) {
    .gnws-product .gnws-product-image img {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-design-slider-title span {
        margin-top: 0;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-detail-slider .flickity-prev-next-button {
        width: 31px;
        height: 31px;
    }
}

@media only screen and (max-width: 500px) {
    .gnws-contact-right {
        margin-left: 1rem;
    }
}

/*# sourceMappingURL=style.css.map */

.mh-50vh {
    max-height: 70vh;
    width: auto;
}

.gnws-tag a {
    color: var(--primary-color);
}

.gnws-tag a:hover {
    color: var(--primary-variant);
}

.page-load-status {
    display: none;
}

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.see-more button:disabled,
.see-more button[disabled] {
    display: none;
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: var(--primary-color);
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

.swal2-container .swal2-content {
    font-size: 1.6rem;
}

.swal2-container .swal2-styled {
    padding: 1rem 2rem;
    font-size: 1.6rem;
}

.wpcf7 .ajax-loader {
    position: absolute;
}

#wpadminbar {
    z-index: 99999999999;
}

.gnws-content_project .gnws-product-image a {
    position: relative;
    display: block;
}
.gnws-content_project .gnws-product-image a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
}
.gnws-content_project .gnws-product-title {
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 19;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    text-align: center;
    width: 100%;
    margin-top: 0;
}
.gnws-content_project .gnws-product-title span {
    color: #ffffff;
}
.gnws-content_project .gnws-product-image a:hover::after {
    opacity: 1;
    visibility: visible;
}
.gnws-content_project .gnws-product-image a:hover .gnws-product-title {
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
}

.gnws-content_project .gnws-product-image .gnws-product-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gnws-intro-right img {
    min-width: 100px;
}

@media only screen and (max-width: 768px) {
    .gnws-content_project .gnws-product-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
}

@media only screen and (max-width: 1700px) {
    .gnws-intro-right img {
        min-width: 80px;
    }
}

@media only screen and (max-width: 1600px) {
    .gnws-intro-right img {
        display: none;
    }
}

.the-content .lwptoc_i .lwptoc_items {
    margin-top: 20px;
}

.the-content .lwptoc_i .lwptoc_header b {
    font-size: 2rem;
}

.the-content .lwptoc_toggle {
    font-size: 100%;
}

.the-content .lwptoc_i .lwptoc_items .lwptoc_itemWrap .lwptoc_item a span {
    font-size: 1.8rem;
}

.the-content .lwptoc_itemWrap .lwptoc_item {
    margin-bottom: 20px;
}

.backToTop {
    z-index: 2222;
    background: var(--primary-variant);
    width: 35px;
    height: 35px;
    border-radius: 20px;
    line-height: 4px;
    text-align: center;
    transition: 0.8s;
    cursor: pointer;
    bottom: 40px;
    left: 20px;
    display: none;
    position: fixed;
}

.backToTop.show__backToTop {
    display: block;
}

.backToTop svg {
    color: var(--light-color);
    transform: translateY(8px);
}

.sg-product_video-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sg-product_video-svg svg path {
    fill: #fff;
}

.p-row {
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
}

.gnws-header.header-active {
    position: fixed !important;
    background: #fff;
    width: 100%;
    z-index: 99;
    box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    top: 0;
}

/* @keyframes slide-down {
    0% {
        opacity: 1;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
} */

.gnws-footer_top {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.gnws-header_fixed {
    height: 55px;
}

@media only screen and (max-width: 500px) {
    .gnws-main-project-description_left .nav .nav-item .nav-link .item span,
    .gnws-product-menu ul li a span {
        top: -10px;
        right: -1.2rem;
    }
}

.z-index_999 {
    z-index: 999;
}

/* Add fix content */

.the-content .wp-block-column p:last-child {
    margin-bottom: 0;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
    margin-bottom: 0;
}

.the-content .wp-block-columns {
    margin-bottom: 2rem;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
    margin: 0 2rem 2rem 0;
    margin-bottom: 0;
}

.wp-block-gallery {
    margin-bottom: 2rem;
}

.wp-block-column .wp-block-gallery {
    margin-bottom: 0;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.the-content * img {
    margin-bottom: 0;
}

.the-content .wp-block-columns .wp-block-image {
    margin-bottom: 0rem;
}

.wp-block-gallery:not(:first-child) {
    margin-top: 2rem;
}
.project__item a {
    padding-top: 66.66%;
    border-radius: 8px;
    overflow: hidden;
}
.project__item a:hover::after {
    opacity: 1;
    visibility: visible;
}

.project__item a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
}
.project__item img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.project__item-name {
    width: max-content;
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 19;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}
@media (max-width: 767px) {
    .project__item-name {
        font-size: 2rem;
    }
}
.project__item a:hover .project__item-name {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}
.list__project .gnws-carousel::after {
    content: "flickity";
    display: none;
}
@media screen and (min-width: 992px) {
    .list__project .gnws-carousel:after {
        content: "";
    }
}
@media (max-width: 991px) {
    .project__item {
        width: 80%;
        padding-left: 10px;
        padding-right: 10px;
    }
    .list__project .gnws-carousel {
        margin-left: -10px;
        margin-right: -10px;
    }
}

.single__project {
    margin-top: 5rem;
}
.single__project-thumb .flickity-button {
    width: 40px;
    height: 40px;
}
.single__project-thumb .flickity-button .flickity-button-icon {
    display: none;
}
.single__project-thumb .next::after {
    content: url("data:image/svg+xml,%3Csvg height='25px' width='25' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66671 16L25.3334 16' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M16 6.66668L25.3334 16L16 25.3333' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}
.single__project-thumb .previous::after {
    content: url("data:image/svg+xml,%3Csvg height='25px' width='25' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M25.3334 16H6.66669' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M16 25.3334L6.66669 16.0001L16 6.66675' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.single__project-thumb .flickity-button {
    background: var(--primary-variant);
    opacity: 1;
}
.project__related {
    margin: 4rem 0 6rem 0;
}
@media (max-width: 767px) {
    .single__project .thumb-item a {
        padding-top: 100%;
        width: 100%;
        position: relative;
        background-color: #f1f1f1;
    }
    .single__project .thumb-item a img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
}

.single__project-thumb:not(.flickity-enabled) {
    display: flex;
}
.single__project-thumb:not(.flickity-enabled) .thumb-item:not(:first-child) {
    display: none;
}
.project__item-name{
    width: max-content;
}