/*------------------------------------*\
  SETTINGS
\*------------------------------------*/

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    position: relative;
    font-family: Arial, Helvetica, "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    color: #212529;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

body.fixed {
    overflow: hidden;
}


a {
    color: #595757;
    transition: 0.3s;
}

a:hover {
    color: #333;
    text-decoration: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.site-nav li,
.footer-menu li {
    list-style: none;
}


b, strong {
    font-weight: 700;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
    opacity: 1; /* Firefox */
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
}

.pre {
    white-space: pre-line; 
}


@media (min-width: 576px) {
    html {
        font-size: 16px;
        scroll-padding-top: 180px;
    }
}





/*------------------------------------*\
  UTILITIES
\*------------------------------------*/

.overlay {
    position: relative;
    transition: .3s;
}

.overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
}

.overlay-2::before {
    opacity: 0.2;
}

.overlay-3::before {
    opacity: 0.3;
}

.overlay-4::before {
    opacity: 0.4;
}

.p-relative {
    position: relative;
}

.o-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list-style-none,
.list-style-none li {
    list-style: none;
}

.add-shadow {
    box-shadow: 0 4px 15px 0 rgb(175 175 175 / 20%);
}


/**
 *  Width
 */

@media (min-width: 576px) {
    .w-lg-auto {
        width: auto !important;
    }
    
}




/*------------------------------------*\
  FONT
\*------------------------------------*/

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

.letter-spacing-4 {
    letter-spacing: 4px;
}

.letter-spacing-5 {
    letter-spacing: 5px;
}

.letter-spacing-8 {
    letter-spacing: 8px;
}

.letter-spacing-11 {
    letter-spacing: 11px;
}

.line-height-5 {
    line-height: 1.5em;
}

.line-height-8 {
    line-height: 1.8em;
}

.font-small {
    font-size: 12px;
}



/*------------------------------------*\
  COLORS, BG & BORDER
\*------------------------------------*/

.color-primary {
    color: #DC000C;
}

.color-gray-light {
    color: #b5b5b6;
}


.bg-color-primary {
    background-color: #DC000C;
}

.bg-color-gray {
    background-color: #f8fafc;
}

.bg-color-light {
    background-color: #fff;
}


.text-muted {
    font-size: 14px;
}

.under-below { 
    -webkit-text-underline-position: under;
    -ms-text-underline-position: below;
    text-underline-position: under; 
}


.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-line-2 {
    -webkit-line-clamp: 2;
}

.ellipsis-line-3 {
    -webkit-line-clamp: 3;
}


.writing-mode-v-rl {
    writing-mode: vertical-rl;
}

.writing-mode-v-lr {
    writing-mode: vertical-lr;
}






/*------------------------------------*\
  LAYOUTS
\*------------------------------------*/

.container-wide {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
}

.container {
    width: 1000px;
    max-width: 100%;
}

.section {
    padding-top: 60px;
    padding-bottom: 80px;
}

@media (min-width: 1200px) {
    .container-wide {
        max-width: 1440px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .section {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1000px;
    }
    
}




/*------------------------------------*\
  COMPONENTS
\*------------------------------------*/

/**
 *  Button
 */

.button {
    display: inline-block;
    padding: 8px 40px;
    letter-spacing: 2px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    background-color: transparent;
    font-weight: 300;
    transition: 0.3s;
}

.button-primary {
    background-color: #DC000C;
    color: #fff;
}

.button-primary:hover {
    background-color: #4B4B4B;
    color: #fff;
}

.button-secondary {
    background-color: #BF434A;
    color: #fff;
}

.button-secondary:hover {
    background-color: #222222;
    color: #fff;
}

.button-gray {
    background-color: #e0e0e0;
    color: #2e2e2e;
}

.button-gray:hover {
    background-color: #7e7e7e;
    color: #ececec;
}


.button-outline-primary {
    border-color: #333;
    color: #333;
}

.button-outline-primary:hover {
    background-color: #333;
    color: #fff;
}

.button-outline-light {
    border-color: #fff;
    color: #fff;
}

.button-outline-light:hover {
    background-color: #fff;
    color: #333;
}


.button-circle-wrap {
    position: relative;
    width: 220px;
}

    .button-circle {
        position: relative;
        display: flex;
        align-items: center;
        padding-left: 32px;
        width: 80px;
        height: 80px;
        color: #fff;
        font-size: 15px;
        font-weight: 300;
        transition: 0.3s;
        z-index: 1;
    }

    .button-circle::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        background-color: #8a6d68;
        border-radius: 50%;
        transition: 0.3s;
        z-index: -1;
    }

    .button-circle:hover {
        color: #8a6d68;
    }

    .button-circle:hover::after {
        margin-top: -30px;
        margin-left: -20px;
        padding-left: 60px;
        width: 120px;
        height: 120px;
        background-color: transparent;
        border: 1px solid #8a6d68;
        opacity: 0.8;
    }

    .slim-arrow {
        position: absolute;
        top: 50%;
        left: 40%;
        width: 90px;
        height: 7px;
        border-bottom: 1px solid #8a6d68;
        border-right: 2px solid #8a6d68;
        transform: skewX(50deg);
        transition: 0.3s;
        transition-delay: 100ms;
    }

    .button-circle:hover ~ .slim-arrow {
        width: 110px;
    }



.button-with-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .button-primary.button-with-arrow svg {
        stroke: #fff;
    }

    .button-primary.button-with-arrow:hover svg {
        stroke: #333;
    }

    .button-outline-light.button-with-arrow svg {
        stroke: #fff;
    }

    .button-outline-light.button-with-arrow:hover svg {
        stroke: #333;
    }




/**
 *  Dropdown
 */


.drop {
    position: relative;
}

.drop__content {
    display: none;
    position: absolute;
    width: 100%;
}

.drop:hover .drop__content {
    display: block;
}

.drop:hover > a {
    color: #DC000C !important;
}

.drop__content a {
    display: block;
    padding: 10px 5px;
    background-color: rgb(220 0 12 / 70%);
    color: #fff;
    border-bottom: 1px solid #ea7d7d;
    font-size: 15px;
    text-align: center;
}

.drop__content li:last-child a {
    border-bottom: none;
}

.drop__content a:hover {
    color: #DC000C;
    background-color: rgb(243, 243, 243);
}



/**
 *  Collapse
 */


.collapse__content {
    display: none;
}

.collapse__button.active ~ .collapse__content {
    display: block;
}




/**
 * Popup
 */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9999999;
    opacity: 0;
    transition: 0.3s;
}
 
.popup.active {
    z-index: 9999999;
    background-color: rgba(37, 37, 37, 0.2);
    opacity: 1;
    transition: 0.3s;
}

    .popup__content {
        position: fixed;
        top: 50%;
        left: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transform: translate(-50%, -20%);
        background-color: #fff;
        width: 380px;
        max-width: 90%;
        height: 260px;
        border-radius: 10px;
        opacity: 0;
        transition: 0.3s;
    }

    .popup__content .msg {
        font-size: 22px;
        margin-top: 40px;
    }

    .popup.active .popup__content {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    .popup--modal .popup__content {
        background-color: #fff;
        padding: 20px 40px;
        width: 800px;
        max-width: 95%;
        height: 200px;
    }


.button--popup-close {
    position: absolute;
    right: 32px;
    top: 30px;
}

.button--popup-close svg {
    width: 18px;
    height: 18px;
}

.popup .button-wrapper {
    margin-top: 60px;
}

.popup .button {
    margin-left: 5px;
    margin-right: 5px;
}


/**
 *  Animate
 */

.animate {
    animation-duration: 1s;
}

@keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-40px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translate3d(40px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -40px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

.animate__delay-200ms {
    animation-delay: 200ms;
}

.animate__delay-400ms {
    animation-delay: 400ms;
}

.animate__delay-600ms {
    animation-delay: 600ms;
}

.animate__delay-800ms {
    animation-delay: 800ms;
}

.animate__delay-1s {
    animation-delay: 1s;
}



/**
 *  Image box
 */

.image-box {
    position: relative;
    display: flex !important;
}

    .image-box-outer {
        width: 100%;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
        margin: 0;
        line-height: 0;
    }

    .image-box-outer.vertical {
        padding-bottom: 120%;
    }

    .image-box-outer.ratio-3-2 {
        padding-bottom: 66.66%;
    }

    .image-box-outer.ratio-16-9 {
        padding-bottom: 56.25%;
    }

        .image-box-inner {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-color: #F9F9F9;
        }

            .image-box-inner img {
                width: 100%;
                height: 100%;
                object-position: 50% 50%;
                object-fit: cover;
            }


.image-hover--zoom img {
    transition: 0.5s;
}

.image-hover--zoom:hover img {
    transform: scale(1.01);
}

.grayscale .grayscale-img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: 0.3s;
}

.grayscale:hover .grayscale-img {
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}


.image-box .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}



/**
 *  icon box
 */

.icon-box .icon {
    width: 40px;
    height: 40px;
    border: 1px solid #919191;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.icon-box__i svg {
    width: 48px;
    height: 48px;
}

.icon-box__title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

    .icon-box__desc {
        font-size: 15px;
        font-weight: 300;
    }




/**
 *  Loader
 */

.loader {
    display: none;
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #DC000C;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin-left: auto;
    margin-right: auto;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/**
 *  Slider
 */

.site-hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15px;
    background-color: #ff0000;
}

    .hero-slider .slide {
        position: relative;
    }

    .banner-wrapper {
        max-width: 100%;
    }

        .banner {
            width: 100%;
            padding-bottom: 43%;
            height: 0;
            position: relative;
            overflow: hidden;
        }
        
            .banner img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
            }

        .banner-logo {
            position: absolute;
            left: 20px;
            top: 15px;
            z-index: 99;
        }

    
    .hero-slider .slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(28, 28, 28, 0.3);
    }
    

    .slide-content {
        position: absolute;
        top: 190px;
        left: 0;
        width: 88%;
        height: 120px;
        color: #212529;
        font-size: 28px;
        letter-spacing: 3px;
        z-index: 9;
    }

        .slide-content h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 16px;
            line-height: 1.3em;
        }

        .slide-content::after {
            content: "";
            position: absolute;
            background-color: rgb(255 255 255 / 60%);
            width: 75%;
            height: 100%;
            top: -20%;
            z-index: -1;
        }


    .site-hero .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .site-hero .arrow-prev {
        left: 25px;
    }

    .site-hero .arrow-next {
        right: 25px;
    }

        .site-hero .slick-arrow > svg {
            width: 36px;
            height: 36px;
        }

    .site-hero .slick-dots {
        bottom: 25px;
    }

        .site-hero .slick-dots li {
            width: 28px;
            height: 6px;
            margin-left: 4px;
            margin-right: 4px;
        }

            .site-hero .slick-dots li button {
                width: 28px;
                height: 6px;
                padding: 0;
            }
            
            .site-hero .slick-dots li button:before {
                content: '';
                width: 28px;
                height: 6px;
                background-color: transparent;
                border: 1px solid #fff;
                border-radius: 5px;
            }

            .site-hero .slick-dots li.slick-active button:before {
                background-color: #fff;
            }

.slider-control {
    display: none;
}


.page-banner {
    max-height: 400px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .slide-content {
        width: 100%;
        top: 260px;
        height: 260px;
    }

    .slide-content h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .slide-content p {
        font-size: 18px;
        line-height: 1.5em;
    }

    .site-hero .slick-dots {
        bottom: 40px;
    }

        .site-hero .slick-dots li button,
        .site-hero .slick-dots li button:before,
        .site-hero .slick-dots li {
            width: 34px;
            height: 8px;
        }

    .slider-control {
        display: block;
    }
}
           

@media (min-width: 1212px) {
    .slide-content h2 {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .slide-content p {
        font-size: 22px;
    }
}

@media(max-width: 1211px) {
    .slide-content {
        height: 160px;
    }
}

@media(max-width: 991px) {
    .site-hero,
    .page-banner {
        margin-top: 72px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        height: 160px;
    }
}

@media(max-width: 576px) {
    .banner-logo {
        top: 10px;
        left: 15px;
    }

    .banner-logo img {
        width: 95px;
    }

    .banner {
        padding-bottom: 60%;
    }

    .slide-content {
        top: 125px;
    }

    .slide-content::after {
        width: 100%;
        height: 80%;
        top: -15%;
    }
}



/**
 *  carousel
 */

.carousel {
    width: 100%;
    overflow: hidden;
}

    .carousel-control {
        position: absolute;
        width: 200px;
        bottom: -50px;
        left: 50%;
        transform: translate(-50%);
    }

    .carousel-control .swiper-button-prev:after,
    .carousel-control .swiper-container-rtl .swiper-button-next:after,
    .carousel-control .swiper-button-next:after,
    .carousel-control .swiper-container-rtl .swiper-button-prev:after {
        display: none;
    }

    .carousel-slides-count {
        font-size: 14px;
    }
    



/**
 *  page breadcrumb
 */

.page-breadcrumb {
    margin-top: 10px;
    margin-bottom: 10px;
} 

    .page-breadcrumb li {
        display: inline-block;
        align-items: center;
        vertical-align: middle;
    }

        .page-breadcrumb li a {
            font-size: 14px;
        }

        .page-breadcrumb li:last-child svg {
            display: none;
        }



/**
 * Pagination
 */

 .page__pagination {
    margin-top: 80px;
}

    .page__pagination .pagination {
        justify-content: center;
        padding-left: 0;
    }

        .pagination .page-item {
            margin-right: 12px;
            list-style: none !important;
        }

        .pagination .page-item:last-child {
            margin-right: 0;
        }

        .pagination .page-link {
            display: inline-block;
            padding: 0;
            color: #DC000C;
            border-color: #eee;
            background-color: #EEEEEE;
            font-size: 15px;
            line-height: 30px;
            width: 30px;
            height: 30px;
            border-radius: 5px !important;
            text-align: center;
        }

        .pagination .page-link:hover {
            background-color: #DC000C;
            border-color: #DC000C;
            color: #fff;
            opacity: 0.8;
        }

        .pagination .page-link.active {
            background-color: #DC000C;
            border-color: #DC000C;
            color: #fff;
        }

        .pagination .page-link svg {
            position: relative;
            top: -3px;
            stroke: #626262;
            stroke-width: 1.5;
            width: 22px;
            height: 22px;
        }

        .pagination .page-item .page-quick-link {
            background-color: #EEEEEE;
            border-color: #eee;
        }

        .pagination .page-item .page-quick-link svg {
            stroke: #DC000C;
        }




/**
 *  Back to Top
 */

.site-tools {
    display: none;
}

.back-to-top {
    position: fixed;
    bottom: 70px;
    right: 15px;
    cursor: pointer;
    background-color: #DC000C;
    border-radius: 5px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    transition: 0.3s;
}

    .back-to-top svg {
        position: relative;
        top: -3px;
        transition: 0.3s;
        stroke: #fff;
    }

.back-to-top:hover {
    opacity: 0.8;
}



/**
 *  Theme Mode
 */

.mode-toggle {
    position: fixed;
    bottom: 125px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    transition: 0.3s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mode-toggle svg {
        stroke: #fff;
        width: 16px;
        height: 16px;
    }

.dark-mode .mode-toggle {
    background-color: #fff;
    transition: 0.3s;
}

    .mode-toggle.active svg {
        stroke: #333;
    }

.wave-container {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 50px;
    right: 50px;
    width: 40px;
    height: 40px;
    z-index: -1;
}

    .wave {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        /* transform: scale(0); */
        width: 250vw;
        height: 250vw;
        /* border-radius: 50%; */
        transition: 0.5s ease-in-out;
        display: flex;
        flex: 0 0 auto;
    }

    .dark-mode .wave {
        /* transform: scale(1); */
        background-color: #333;
        transition: 0.5s ease-in-out;
    }

.mode-toggle-icon {
    position: absolute;
    display: flex;
    opacity: 0;
    animation: waveAnimate .3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.mode-toggle-icon.moon {
    opacity: 1;
}

@keyframes waveAnimate {
    0%   { transform: scale(1); }
    50%  { transform: scale(0); }
    100% { transform: scale(1); }
}




/**
 *  Header
 */

.header {
    position: relative;
    width: 100%;
    z-index: 999;
    background-color: #eee;
    box-shadow: 0 0 20px 1px rgb(125 125 125 / 10%);
    transition-delay: 0.1s;
    transition: 0.5s;
}

.header-row__1 {
    background-color: #efefef;
}

.header-row__1-container {
    display: flex;
    justify-content: space-between;
    height: 25px;
}

    .header-row__1 .item {
        display: flex;
        align-items: center;
        font-size: 12px;
        letter-spacing: 0;
    }

    .header-row__1 .item-flag {
        width: 20px;
    }

    .header-row__1 .item-flag img {
        width: 20px;
        margin-right: 4px;
    }

    .nichino-global {
        padding: 2px 6px;
        line-height: 1;
        border: 1px solid #e6e6e6;
        color: #595757 !important;
        background-color: #fff;
        border-radius: 2px;
        transform: scale(0.9);
    }

    .nichino-global svg {
        margin-right: 6px;
    }

    .mobile-global {
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 20px;
        font-size: 18px;
    }

.header-row__2 {
    background-color: #fff;
}

.header-row__2-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .header-logo--img {
        padding: 12.5px 0;
        height: 50px;
        margin-top: 12.5px;
        margin-bottom: 12.5px;
    }

    .header-logo--text {
        height: 25px;
    }

    .header-logo--text img {
        height: 25px;
        padding-bottom: 10px;
    }

    .header-logo.white {
        display: none;
    }


.search-box {
    display: flex;
    
}
    .search-box__field {
        border: 1px solid #ff0000;
        border-radius: 0;
    }

    .search-box__field:focus {
        border: 1px solid #ff0000;
        outline: none;
        box-shadow: none;
    }

    .search-box__btn {
        background-color: #ff0000;
        outline: none;
        border: none;
    }

    .search-box__btn svg {
        stroke: #fff;
    }

    .site-top {
        font-size: 22px;
        padding-top: 17px;
        padding-bottom: 17px;
    }
    

        .logo-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-logo {
            width: 80%;
        }

        .gsp-logo {
            width: 54px;
        }


        .logo-wrapper.white {
            display: none;
        }
    

    .header-content {
        background-color: #ff0000;
        padding-left: 5%;
        padding-right: 5%;
    }

    .site-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .site-logo a {
            display: inline-block;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 5px;
            line-height: 1.2em;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .site-menu {
            display: flex;
            position: relative;
            width: 100%;
        }

            .site-menu .item {
                position: relative;
                flex: 1;
            }

            .site-menu .item::before {
                content: "";
                position: absolute;
                bottom: 5px;
                left: 0;
                background-color: #fff;
                width: calc(100% + 1px);
                height: 0;
                transition: 0.3s;
                z-index: 1;
            }

            .site-menu .item:hover::before {
                height: calc(100% - 5px);
            }

            .site-menu .item::after {
                content: "";
                position: absolute;
                bottom: 5px;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 8px 8px 8px;
                border-color: transparent transparent #dc000b transparent;
                opacity: 0;
            }

            .site-menu .item:hover::after {
                opacity: 1;
                z-index: 2;
            }

            .site-menu .item > a {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 60px;
                padding-left: 18px;
                padding-right: 12px;
                font-size: 16px;
                letter-spacing: 2px;
                font-weight: 300;
                color: #fff;
                z-index: 3;
            }
            

            .site-menu .item > a::before,
            .site-menu .item:last-child > a::after {
                content: "";
                position: absolute;
                top: 20%;
                left: 0;
                width: 1px;
                height: 60%;
                background-color: rgba(255, 255, 255, 0.9);
            }

            .site-menu .item:last-child > a::after {
                left: unset;
                right: 1px;
            }

            
            .site-menu .item > a:hover {
                color: #DC000C;
            }
            


    .site-media {
        margin-right: 15px;
    }

        .site-media .item > a {
            display: flex;
            margin-left: 6px;
            margin-right: 6px;
        }


.site-nav {
    transition: 0.3s;
}

    
@media (min-width: 576px) {
    .gsp-logo {
        width: 80px;
    }
}


@media (min-width: 1212px) {
    .site-menu .item > a {
        padding-left: 18px;
        padding-right: 13px;
    }
}

@media (max-width: 991px) {
    .header-row__2 {
        background-color: #fff;
        position: fixed;
        z-index: 999;
        border-bottom: 1px solid #ddd;
    }

    .header-logo--img {
        padding: 12.5px 0;
        height: 50px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .header-logo--text {
        font-size: 14px;
        height: 18px;
        margin-bottom: 4px;
    }
}



/**
 *  Mobile Nav
 */

.mobile-toggle {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #e32837;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.sidebar-toggle {
    transition: 0.3s;
}

    .toggle-icon {
        position: relative;
        width: 22px;
        height: 10px;
        margin: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
            
        .toggle-icon span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background-color: #f1f1f1;
            border-radius: 9px;
            opacity: 1;
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;
        }

        .toggle-icon span:nth-child(1) {
            top: 0px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
            
        .toggle-icon span:nth-child(2) {
            top: 7px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
            
        .toggle-icon span:nth-child(3) {
            top: 14px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        .sidebar-toggle.open .toggle-icon span:nth-child(1) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: -3px;
            left: 5px;
        }

        .sidebar-toggle.open .toggle-icon span:nth-child(2) {
            display: none;
        }
            
        .sidebar-toggle.open .toggle-icon span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 12px;
            left: 5px;
        }

    

.slide-sidebar {
    position: fixed;
    top: 0;
    left: 100vh;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    transition: .8s ease-in-out;
    z-index: 99;
    pointer-events: none;
}

    .slide-sidebar > ul {
        padding-left: 0;
    }

        .slide-sidebar ul > li > a {
            display: inline-block;
            padding: 12px 0;
            width: 100%;
            color: #e01f2a;
            letter-spacing: 2px;
            font-size: 18px;
            border-bottom: 1px solid #ddd;
        }


.slide-sidebar.active {
    opacity: 1;
    left: 0;
    pointer-events: initial;
}



.mobile-nav .mobile-menu {
    margin-top: 72px;
    padding-top: 20px;
    border-top: 6px solid #e32937;
}

    .mobile-nav .mobile-menu ul {
        padding-left: 25px;
        padding-right: 25px;
    }

    .mobile-menu .collapse__button {
        position: relative;
    }

        .mobile-menu .collapse__button i {
            position: absolute;
            top: 50%;
            right: 8px;
            transform: translateY(-50%);
        }

    .mobile-menu .collapse__content {
        background-color: #f2f2f2;
    }

    .mobile-menu .collapse__content a {
        border-bottom: none;
        color: #5d4545;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .mobile-nav .search-box {
        padding-left: 25px;
        padding-right: 25px;
    }


@media(min-width: 992px) {  
    .mobile-toggle {
        display: none;
    }
}
  
@media(max-width: 991px) {  
    .mobile-toggle {
        position: fixed;
    }
}
  

/**
 *  page mobile menu
 */

.page-mobile-menu li {
    list-style: none;
}

.page-mobile-menu a {
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-mobile-menu i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
} 

.page-mobile-menu .menu {
    text-align: center;
}

.page-mobile-menu > .collapse__item > .collapse__button {
    display: block;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    text-align: center;
}

.page-mobile-menu .menu .collapse__item {
    border-bottom: 1px solid #ddd;
}

.page-mobile-menu .menu .collapse__item.open {
    padding-bottom: 10px;
}

.page-mobile-menu .menu .collapse__button.active {
    background-color: #efefef;
}



/**
 *  side menu
 */

.side-menu {
    width: 100%;
}

    .side-menu ul {
        padding-left: 0;
    }

        /* .side-menu li {
            padding-left: 15px;
            padding-right: 15px;
        } */

            .side-menu a {
                position: relative;
                display: block;
                padding: 15px 10px 15px 40px;
                font-size: 15px;
                color: #5c5c5c;
                border-bottom: 1px dashed #333;
            }

            .side-menu li > a.active,
            .side-menu a:hover {
                color: #fff;
            }


            .side-menu a::before {
                position: absolute;
                content: "";
                background-color: #DC000C;
                width: 100%;
                height: 101%;
                top: 0;
                left: 0;
                z-index: -1;
                opacity: 0;
                transition: 0.3s;
            }

            .side-menu li > a.active::before,
            .side-menu a:hover::before {
                opacity: 1;
            }

            
            .side-menu svg {
                position: absolute;
                top: 20px;
                left: 20px;
                width: 11px;
                height: 11px;
                margin-right: 5px;
            }

            .side-menu li a:hover svg {
                left: unset;
                right: 5px;
            }

                .side-menu li > a.active svg path,
                .side-menu a:hover svg path {
                    fill: #fff;
                }
        

            .side-menu-label {
                font-size: 20px;
                font-weight: 300;
                border-bottom: 1px solid #333;
                padding-bottom: 10px;
                letter-spacing: 1px;
            }

            .side-menu .collapse__button {
                position: relative;
                /* display: flex;
                align-items: center;
                justify-content: space-between; */
            }

            .side-menu .collapse__button ~ .collapse__content a {
                padding-left: 24px;
            }

                .side-menu .collapse__button > svg {
                    display: inline-block;
                }
    

@media(min-width: 991px) {  
    .side-menu {
        width: 230px;
    }

    .page-content {
        width: calc(100% - 280px);
    }
}



/**
 *  Post
 */

.post-header {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .post-date {
        flex-shrink: 0;
        width: 45px;
        text-align: center;
        margin-right: 10px;
        font-size: 14px;
    }

        .post-date .date {
            color: #DC000C;
            background-color: #E5E5E5;
            padding-top: 3px;
            padding-bottom: 3px;
        }

        .post-date .month {
            color: #fff;
            background-color: #DC000C;
        }


.post-row {
    display: flex;
    align-items: flex-start;
}

    .post-row__date {
        margin-right: 10px;
        flex-shrink: 0;
    }

    .post-row__title {
        color: #e32837 !important;
    }

    .post-row__title:hover {
        text-decoration: underline;
    }


/**
 *  Footer
 */

.footer {
    background-color: #eee;
    padding-top: 60px;
    padding-bottom: 30px;
    text-align: center;
    transition: 0.5s;
    transition-delay: 0.1s;
}

    .footer .line-w {
        width: 400px;
        height: 1px;
        max-width: 80%;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        background-color: #fff;
    }


    .footer-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 88%;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }

        .footer-menu > li > a {
            position: relative;
            display: inline-block;
            padding: 5px 10px;
        }

        .footer-menu > li > a:hover {
            opacity: 0.9;
            color: #DC000C;
        }


    .footer-contact {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 20px;
        max-width: 88%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
        
        .footer-contact .item {
            margin-left: 15px;
            margin-right: 15px;
            margin-top: 2px;
            margin-bottom: 2px;
            font-weight: 300;
            color: #525252;
            font-size: 15px;
        }

            .footer-contact .item i {
                margin-right: 3px;
            }

            .footer-contact .item a:hover {
                color: #DC000C;
            }


    .copyright {
        font-size: 13px;
        text-align: center;
        background-color: #DC000C;
        color: #fff;
        padding-top: 12px;
        padding-bottom: 12px;
    }


    .social-media a {
        color: #7d7d7d;
        font-size: 26px;
        margin-right: 8px;
        margin-left: 8px;
    }

    .social-media .social-facebook:hover {
        color: #1877f2;
    }

    .social-media .social-instagram:hover {
        color: #c70079;
    }

    .social-media .social-youtube:hover {
        color: #f70000;
    }

    .social-media .social-line:hover {
        color: #06c152;
    }


@media (min-width: 576px) {
    .footer {
        text-align: left;
    }
        .footer .line-w {
            margin-top: 40px;
        }

        .footer-menu {
            margin-top: 40px;
            justify-content: center;
        } 

        .footer-contact {
            justify-content: center;
        }

        .footer-contact .block {
            border-left: 1px solid #e3e3e3;
        }

        .footer-contact .block:last-child {
            border-right: 1px solid #e3e3e3;
        }

    .social-media a {
        font-size: 18px;
        margin-right: 5px;
        margin-left: 5px;
    }
}





/*------------------------------------*\
  PAGES CONTENT
\*------------------------------------*/


.section-header {
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 3px;
}

.section-header .title {
    font-size: 36px;
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 2px solid #e32837;
    padding-bottom: 10px;
    font-weight: 300;
}

.section-header .subtitle {
    font-size: 24px;
    font-weight: 300;
}




/**
 *  Home
 */

.h-links .item {
    padding: 0;
}

.h-links .image-box-outer {
    padding-bottom: 43.25%;
}


@media(min-width: 576px) {
    .h-links .item {
        padding: 0 15px;
    }

    .h-links .item-row {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    
    .h-links .item {
        padding-left: 2px;
        padding-right: 2px;
    }

    .product .caption-title {
        font-size: 24px;
    }
}


@media(min-width: 991px) {
    .h-links .item-row1 .image-box-outer {
        padding-bottom: 48%;
    }
    
    .h-links .item-row2 .image-box-outer {
        padding-bottom: 80%;
    }
}



/**
 *  Product
 */
 
 .product .product-title {
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    text-align: center;
}

.product .caption img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.product .caption-title {
    margin-top: 10px;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 300;
}



.product-list .product .image-box {
    padding: 10px;
    background-color: #FBFBFB;
}

.product-list .p-label {
    font-weight: 700;
}

.product-wrap .image-box-inner img,
.product-slideshow .image-box-inner img {
    object-fit: contain;
}


.product-slideshow .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 6px;
}

    .product-slideshow .slick-dots li button:before {
        content: "";
        border: 1px solid #e54049;
        border-radius: 50%;
        background-color: transparent;
        width: 10px;
        height: 10px;
        line-height: 10px;
    }

    .product-slideshow .slick-dots li.slick-active button:before {
        opacity: 1;
        color: #dc000c;
        background-color: #e54049;
    }

.p-slider-nav .image-box {
    cursor: pointer;
}

.p-slider-nav .slick-prev:before,
.p-slider-nav .slick-next:before {
    color: rgb(145, 145, 145);
}

.p-slider-nav .slick-track {
    margin-left: unset;
}

.p-slider-nav .slick-prev {
    left: -4px;
}

.p-slider-nav .slick-next {
    right: -4px;
}



@media (min-width: 576px) {
    .p-slider-nav .slick-prev {
        left: -15px;
    }
    
    .p-slider-nav .slick-next {
        right: -15px;
    }

    .product .caption-title {
        font-size: 24px;
    }
    
}



/* table */
.desc table { 
    width: 100%;
    max-width: 100%;
    border-collapse: collapse; 
    margin-left: auto;
    margin-right: auto;
}

.desc tr:nth-of-type(odd) { 
    background: #eee; 
}

.desc th { 
    background: #333; 
    color: white; 
    font-weight: bold; 
}

.desc td, .desc th { 
    padding: 6px; 
    border: 1px solid #ccc; 
    text-align: left; 
    max-width: 260px;
}


@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

    .responsive table, .responsive thead, .responsive tbody, .responsive th, .responsive td, .responsive tr { 
        display: block; 
    }
    
    .responsive thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .responsive tr { border: 1px solid #ccc; }
    
    .responsive td { 
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50%; 
        padding-top: 6px;
        padding-bottom: 0;
        min-height: 36px;
    }
    
    .responsive td:before { 
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%; 
        padding-right: 10px; 
        white-space: nowrap;
    }

    .responsive td:before {
        content: attr(data-label);
    }

    .responsive tr:first-child {
        display: none;
    }

    .desc td, .desc th { 
        max-width: unset;
    }
    
}



/**
 *  Service- Dealers
 */

.page-dealer .side-menu a {
    padding-left: 36px;
}

/* .page-dealer .side-menu li:not(.layer-1) > a.active {
    color: transparent;
} */

.page-dealer .side-menu li:not(.layer-1) > a.active::before {
    opacity: 1;
}


.page-dealer .side-menu li.layer-1 > a.active {
    color: #5c5c5c;
}

.page-dealer .side-menu li.layer-1 > a.active::before {
    background-color: transparent;
}

.page-dealer .side-menu li.layer-1 > a.active svg path {
    fill: #333;
}


.page-dealer .side-menu .layer-1 > a > svg {
    width: 16px;
    height: 16px;
    left: 6px;
    top: 18px;
}

    .page-dealer .side-menu li:not(.layer-1) > a.active svg path,
    .page-dealer .side-menu .layer-1:hover > svg path {
        fill: #fff;
    }


.page-dealer .side-menu .layer-2 a {
    padding-left: 52px;
}

    .page-dealer .side-menu .layer-2 svg {
        left: 36px;
    }

    .page-dealer .side-menu .layer-2 > a:hover svg {
        left: unset;
        right: 5px;
    }



.dealer__map {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

    .dealer__map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }


.dealer-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    margin-top: 4px;
}

.dealer-info-icon svg {
    width: 14px;
    height: 16px;
}

.dealer-info-icon .contact svg {
    width: 12px;
    height: 14px;
}

.dealer__text-title {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 16px;
}


.dealer a:hover {
    color: #DC000C;
    opacity: .9;
}

.dealern__text-address {
    font-size: 14px;
}


@media (min-width: 991px) {
    .service-item__content {
        margin-top: 60px;
        margin-left: -50px;
        background-color: #fff;
        box-shadow: 0 8px 20px 1px rgb(138 138 138 / 20%);
    }

    .service.reverse .service-item__content {
        margin-left: 0;
        margin-right: -50px;
    }

    .service:nth-child(even)::after {
        content: "";
        position: absolute;
        top: -60%;
        left: -50%;
        background-color: #f7f7f7;
        width: 200%;
        height: 210%;
        z-index: -1;
    }
}



/**
 *  Contact
 */

.label {
    font-size: 15px;
}

.contact-form select {
    font-size: 15px;
    color: #6d767e;
}

.contact-form .form-control:focus {
    border-color: #ff757d;
    box-shadow: 0 0 0 0.2rem rgb(255 0 0 / 25%);
}


.map {
    height: 450px;
}


/* pesticide safety */
.catalog {
    position: sticky;
    top: 180px;
    width: 220px;
    background-color: #fff8f9;
    padding: 20px;
}

    .catalog a {
        display: flex;
        align-items: center;
        padding-top: 5px;
        padding-bottom: 5px;
        color: #DC000C !important;
    }

    .catalog a:hover {
        padding-left: 6px;
    }

    .catalog a::before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23DC000C' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
        width: 20px;
        height: 20px;
    }

.content li {
    margin-bottom: 10px;
}

.color-primary.border-bottom {
    border-bottom: 2px solid #dc000c !important;
}

@media(max-width: 991px) {
    .catalog {
        width: 100%;
    }
}


/* search */
.search-result .item {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.search-result .item .image-box {
    width: 60px;
    border: 1px solid #eee;
}



/* modal */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}

.custom-modal.active {
    z-index: 10001;
    pointer-events: auto;
    opacity: 1;
}


.custom-modal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}



.custom-modal__close {
    position: absolute;
    top: -4px;
    right: -66px;
}

.custom-modal__close svg {
    stroke: #fff;
}


/* map */
.global-map {
    position: relative;
    max-width: 90%;
    height: 85vh;
}

    .global-map-inner {
        max-height: 85vh;
        overflow: auto;
    }

    .global-map .map {
        max-width: 100%;
        height: auto;
    }

    .global-map .map-list {
        background-color: #f3f3f3;
        padding: 15px 20px;
        list-style: none;
    }
    .global-map .map-link {
        margin-bottom: 0px;
        font-size: 12px;
    }

    .global-map .map-link a {
        color: #595757;
    }

    .global-map 
    .map-link::before {
        position: relative;
        top: 4px;
        content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23e32837" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"%3E%3Cpolyline points="9 18 15 12 9 6"%3E%3C/polyline%3E%3C/svg%3E');

    }

@media(max-width: 991px) {
    map[name="ImageMap"] {
        display: none;
    }

    .global-map .custom-modal__close {
        top: -40px;
        right: 0;
    }
}