﻿body {
    font-family: "Reddit Sans", "Prompt", sans-serif;
    background: #121212;
}

.fade-gradient {
    position: relative;
}

.fade-gradient::after {
    position: absolute;
    background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1));
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fadeimage-mouseover {
    overflow: hidden;
    cursor: pointer;
}

.fadeimage-mouseover:hover img {
    transform: scale(1.1);
    transition: transform 3s ease-in;
}

.viewall {
    text-align: center;
    margin-top: 40px;
}

.viewall .viewall-button {
    color: #ffffff;
    border: 2px solid white;
    margin: 0px 10px;
    padding: 7px 20px;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s ease all;
}

.viewall .viewall-button:hover {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
}

.full-width {
    width: 100%;
}

.mb-30 {
    margin-bottom: 30px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    /*color: #2d3e91;*/
    color: #ffffff;
    left: 40px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    /*color: #2d3e91;*/
    color: #ffffff;
    right: 40px;
}

@media (max-width: 430px) {
    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 20px;
    }

    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 20px;
    }
}

.cookie {
    position: fixed;
    padding: 20px 0;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    background: #303840;
    font-family: "Reddit Sans";
    color: #ffffff;
}

.cookie a {
    color: #3d1049 !important;
    text-decoration: underline;
    cursor: pointer;
}

.cookie a:hover {
    color: #3d1049 !important;
}

.cookie .btn-accept,
.cookie .btn-accept:hover {
    font-weight: bold;
    text-transform: uppercase;
    color: #3d1049;
    background: #ebcd15;
    font-size: 0.8rem;
}

.btn-accept {
    position: absolute;
    padding: 6px 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #303841;
    background-color: #ebcd15;
    border-radius: 0px;
}

@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}

@media (max-width: 430px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

#main-content {
    margin-top: 0px;
    min-height: 50vh;
}

@media (max-width: 430px) {
    #main-content {
        margin-top: 0px;
    }
}

.cls-1 {
    fill: #231f20;
}

/*****************************************
* Website Header Logo
*****************************************/
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
}

@media (max-width: 430px) {
    .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 999;
        transform: translate(-50%, -50%);
    }
}

.slide-wrapper {
    overflow: hidden;
    height: auto;
}

/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    transition:
        opacity 0.75s,
        visibility 0.75s;
    z-index: 999;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

/*.loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: #009578;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}*/

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    width: 200px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}

/*****************************************
* Menu Modal
*****************************************/
#menuModal {
    background: #000000;
}

#menuModal .modal-dialog {
    margin: 3rem 1.5rem 3rem 1.5rem;
}

#menuModal .modal-dialog .modal-content {
    border: none;
    border-radius: 0rem;
    background: #000000;
}

#menuModal .modal-dialog .modal-content .close {
    position: absolute;
    top: -20px;
    right: 0px;
    opacity: 1;
}

#menuModal .modal-dialog .modal-content .menu-brand {
    margin-bottom: 30px;
}

#menuModal .modal-dialog .modal-content .menu-brand img {
    width: 30%;
}

#menuModal .modal-dialog .modal-content #mobile-menu {
    list-style: none;
    padding-left: 0px;
}

#menuModal .modal-dialog .modal-content #mobile-menu li a {
    color: #ffffff;
    font-size: 1.5rem;
    letter-spacing: 0px;
    padding: 2px 0px;
    text-transform: unset;
}

/*****************************************
* Bubble Footer Effect
*****************************************/
.bubbles-yp {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    pointer-events: none;
}

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 20%;
    }

    to {
        margin-top: -30%;
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 20%;
    }

    to {
        margin-top: -30%;
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 20%;
    }

    to {
        margin-top: -30%;
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0;
    }

    to {
        margin-left: 25px;
    }
}

@-moz-keyframes sideWays {
    0% {
        margin-left: 0;
    }

    to {
        margin-left: 25px;
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0;
    }

    to {
        margin-left: 25px;
    }
}

.yp1 {
    -webkit-animation:
        animateBubble 15s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    animation:
        animateBubble 15s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    left: 6%;
    top: 45%;
    background: #ffb739;
}

.yp2 {
    -webkit-animation:
        animateBubble 10s linear infinite,
        sideWays 4s ease-in-out infinite alternate;
    animation:
        animateBubble 10s linear infinite,
        sideWays 4s ease-in-out infinite alternate;
    left: 5%;
    top: 80%;
    background: #fc4fdd;
}

.yp3 {
    -webkit-animation:
        animateBubble 18s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    animation:
        animateBubble 18s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    left: 10%;
    top: 40%;
    background: #5ed5cb;
}

.yp4 {
    -webkit-animation:
        animateBubble 12s linear infinite,
        sideWays 3s ease-in-out infinite alternate;
    animation:
        animateBubble 12s linear infinite,
        sideWays 3s ease-in-out infinite alternate;
    left: 20%;
    top: 0;
    background: #3de4a3;
}

.yp5 {
    -webkit-animation:
        animateBubble 19s linear infinite,
        sideWays 4s ease-in-out infinite alternate;
    animation:
        animateBubble 19s linear infinite,
        sideWays 4s ease-in-out infinite alternate;
    left: 30%;
    top: 50%;
    background: #fc4fb1;
}

.yp6 {
    -webkit-animation:
        animateBubble 11s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    animation:
        animateBubble 11s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    left: 50%;
    top: 0;
    background: #2c4aff;
}

.yp7 {
    -webkit-animation:
        animateBubble 10s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    animation:
        animateBubble 10s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    left: 65%;
    top: 70%;
    background: #ffb739;
}

.yp8 {
    -webkit-animation:
        animateBubble 12s linear infinite,
        sideWays 3s ease-in-out infinite alternate;
    animation:
        animateBubble 12s linear infinite,
        sideWays 3s ease-in-out infinite alternate;
    left: 80%;
    top: 10%;
    background: #8f3de4;
}

.yp9 {
    -webkit-animation:
        animateBubble 19s linear infinite,
        sideWays 4s ease-in-out infinite alternate;
    animation:
        animateBubble 19s linear infinite,
        sideWays 4s ease-in-out infinite alternate;
    left: 90%;
    top: 50%;
    background: #fff339;
}

.yp10 {
    -webkit-animation:
        animateBubble 16s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    animation:
        animateBubble 16s linear infinite,
        sideWays 2s ease-in-out infinite alternate;
    left: 80%;
    top: 80%;
    background: #fc4f4f;
}

.bubble {
    border-radius: 50%;
    box-shadow: none;
    height: 5px;
    position: absolute;
    width: 5px;
}

/*****************************************
* Navbar 
*****************************************/
.navbar-light {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    transition: 0.2s ease all;
    height: 80px;
    /*box-shadow: 0px 4px 12px #e8e8e8;*/
}

.navbar-light.bg-transparent {
    /*background: none;*/
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.navbar-light.bg-transparent::before {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background-image: linear-gradient(to top, rgba(255, 0, 0, 0), rgb(0, 0, 0, 0.8));
}

.navbar-light.navbar-scroll {
    padding: 1.5rem 1rem 1.5rem 1rem;
    transition: 0.2s ease all;
    height: 80px;
}

.navbar-light.navbar-scroll::before {
    background: transparent;
}

.navbar-light.navbar-scroll.bg-transparent {
    /*background: #223f93 !important;*/
    background: linear-gradient(to bottom, rgb(0, 0, 0, 1), rgba(0, 0, 0, 0)) !important;
}

.navbar-light.navbar-scroll .navbar-brand {
    transition: 0.5s ease all;
}

.navbar-light .navbar-share {
    position: absolute;
    top: 24px;
    right: 46px;
}

.navbar-light .navbar-share img {
    width: 34px;
}

.navbar-light .navbar-top {
    position: absolute;
    top: 20px;
    right: 24px;
}

.navbar-light .navbar-top .external-link,
.navbar .navbar-top .external-link:hover {
    border: 1px solid #45cbca;
    padding: 5px 13px 4px 13px;
    color: #000000;
    border-radius: 7px;
    font-size: 0.9rem;
    font-family: "Reddit Sans";
    margin: 0px 5px;
    text-decoration: none;
    background: #45cbca;
    text-transform: uppercase;
}

.navbar-light.bg-transparent {
    background-color: rgba(0, 0, 0, 0);
}

.navbar-light .navbar-brand .navbar-logo {
    height: 70px;
    transition: 0.5s ease all;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:visited {
    color: #ffffff;
    font-size: 16px;
    font-family: "Reddit Sans";
    padding: 25px 20px;
    letter-spacing: 0px;
    cursor: pointer;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ffffff;
}

.navbar-light .navbar-nav .nav-link.active {
    background-color: #3170e7 !important;
    border-color: #3170e7 !important;
    border-radius: 10px;
    outline: 0;
    position: relative;
    color: #ffffff;
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
    position: absolute;
    right: 10px;
    top: 13px;
}

@media (max-width: 430px) {
    .navbar-light {
        margin: 0px auto 0px auto;
        padding: 0rem 1rem;
        height: 70px;
    }

    .navbar-light .navbar-toggler {
        border: none;
        outline: none;
        right: 0px;
        top: 15px;
    }

    .navbar-light .navbar-share {
        top: 26px;
        right: 60px;
    }

    .navbar-light .navbar-share img {
        width: 20px;
    }

    .navbar-light .navbar-top {
        top: 7px;
        right: 50px;
    }

    .navbar-light .navbar-brand {
        top: 8px;
    }

    .navbar-light .navbar-brand .navbar-logo {
        height: 50px;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:visited {
        color: #ffffff;
        font-size: 1.5rem;
        font-family: "Reddit Sans";
        letter-spacing: 0px;
    }

    .navbar-collapse {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:visited {
        color: #000000;
    }

    .nav-toolbar {
        display: none;
    }

    .nav-rightmenu {
        display: none;
    }

    .navbar-light.navbar-scroll {
        height: 80px;
        padding: 0.5rem 1rem 0.5rem 1rem;
    }
}

@media (max-width: 767px) {
    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }
}

.toolbar-icon {
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-left: 1px solid #ffffff;
    margin-left: 20px;
    padding-left: 20px;
}

.toolbar-icon .nav-toolbar-icon {
    position: relative;
}

.toolbar-icon .nav-toolbar-icon a {
    display: block;
    cursor: pointer;
    margin: 0.5rem;
    font-family: "Reddit Sans", "Prompt", sans-serif;
    font-weight: 400;
    color: #000000;
}

.toolbar-icon .nav-toolbar-icon a img {
    width: 26px;
    transition: 0.2s ease all;
}

.toolbar-icon .nav-toolbar-icon .nav-badge {
    color: #ffffff;
    background: #e62b2b;
    width: 18px;
    position: absolute;
    top: -3px;
    right: 0px;
    text-align: center;
    font-size: 0.6rem;
    border-radius: 50%;
    padding: 3px 2px 1px 2px;
}

@media (max-width: 767px) {
    .toolbar-icon {
        position: fixed;
        top: 17px;
        right: 15px;
    }
}

@media (max-width: 430px) {
    .toolbar-icon {
        position: fixed;
        top: 22px;
        right: 70px;
        border-left: none;
        margin-left: 0px;
        padding-left: 0px;
    }
}

/*****************************************
* Menu Dropdown
*****************************************/
.menu-dropdown-content {
    display: none;
    top: 70px;
    left: -15px;
    right: -15px;
    position: absolute;
    width: calc(100% + 30px);
    padding: 0px;
    /*display: block;
    transition: 1s ease all;
    background: rgba(0, 0, 0,0.5);
    height: auto;
    display: flex;
    justify-content: flex-start;*/
}

@media (max-width: 800px) {
    .menu-dropdown-content {
        top: 75px;
        right: 0px;
    }
}

.menu-dropdown:hover .menu-dropdown-content {
    display: block;
    transition: 1s ease all;
    background: rgba(0, 0, 0, 0.5);
    height: auto;
    display: flex;
    justify-content: flex-start;
}

.menu-dropdown-thumbnail {
    width: 40%;
}

.menu-dropdown-thumbnail img {
    width: 100%;
}

.menu-dropdown-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 60%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    /*background: #ffffff;*/
}

.menu-dropdown-lists .menu-dropdown-lists-item {
    width: 50%;
    padding: 20px;
}

.menu-dropdown-lists .menu-dropdown-lists-item .header {
    color: #ffffff;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    display: block;
}

.menu-dropdown-lists .menu-dropdown-lists-item .menu-product-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    color: #ffffff;
}

.menu-dropdown-lists .menu-dropdown-lists-item .menu-product-item .menu-product-item-icon {
    width: 60px;
}

.menu-dropdown-lists .menu-dropdown-lists-item .menu-product-item .menu-product-item-lists {
    width: calc(100% - 60px);
}

.menu-dropdown-lists .menu-dropdown-lists-item .menu-product-item .menu-product-item-lists .menu-product-item-type {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0px;
    color: #ffffff;
}

.menu-dropdown-lists .menu-dropdown-lists-item ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.menu-dropdown-lists .menu-dropdown-lists-item ul li {
}

.menu-dropdown-lists .menu-dropdown-lists-item ul li a {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

/*****************************************
* Menu Dropdown
*****************************************/
.menu-dropdown-mobile {
}

.menu-dropdown-mobile .header {
    color: #ffffff;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    display: block;
}

.menu-dropdown-mobile .menu-product-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    color: #ffffff;
}

.menu-dropdown-mobile .menu-product-item .menu-product-item-icon {
    width: 60px;
}

.menu-dropdown-mobile .menu-product-item .menu-product-item-lists {
    width: calc(100% - 60px);
}

.menu-dropdown-mobile .menu-product-item .menu-product-item-lists .menu-product-item-type {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
    color: #ffffff;
}

.menu-dropdown-mobile .menu-dropdown-lists-item ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.menu-dropdown-mobile .menu-dropdown-lists-item ul li {
    list-style: none;
}

.menu-dropdown-mobile .menu-dropdown-lists-item ul li a {
    color: #ffffff;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 400;
}

/*****************************************
* Button Action
*****************************************/
.button-action {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease all;
}

/*.button-action:hover {
        text-decoration: none;
        transform: scale(1.1);
    }*/

.button-action .button-text {
    color: #ffffff;
    font-size: 14px;
    padding-right: 10px;
    letter-spacing: 1px;
}

.button-action .button-icon {
    display: inline-flex;
}

.button-action .button-icon .button-icon-icon {
    appearance: none;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    height: 30px;
    width: 30px;
    padding: 8px;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    position: relative;
    background: #fff;
    font-size: 0;
    border: 2px solid #969696;
    background: none !important;
}

/* .button-action .button-icon .button-icon-icon .icon-over-circle {
                position: absolute;
                top: -3px;
                left: -3px;
                right: -3px;
                bottom: -3px;
            }

                .button-action .button-icon .button-icon-icon .icon-over-circle svg {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 100%;
                    height: 100%;
                    transform: translate(-50%, -50%) rotate(-90deg);
                }*/

/*****************************************
* Header Banner
*****************************************/
#header-banner {
    position: relative;
}

#header-banner::after {
    position: absolute;
    background-image: linear-gradient(to bottom, rgb(0, 0, 0, 1), rgba(0, 0, 0, 0));
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 430px) {
    #home-video {
    }
}

.social-nav-link {
    position: relative;
    cursor: pointer;
}

.social-nav-link .social-tab {
    top: 70px;
    left: 0px;
    right: 0px;
    position: absolute;
    width: calc(100%);
    padding: 0px;
    height: 0px;
    transition: 0.3s ease all;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-nav-link .social-tab .social-tab-content {
    /*display: none;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.social-nav-link .social-tab .social-tab-content .social-item {
    width: 40px;
    height: 40px;
    margin: 0px 10px;
    transition: 0.3s ease all;
}

.social-nav-link .social-tab .social-tab-content .social-item:hover {
    width: 60px;
    height: 60px;
}

.social-nav-link .button-icon-icon {
    transition: 0.3s ease all;
}

.social-nav-link .button-text {
    transition: 0.3s ease all;
}

/*.social-nav-link:hover .social-tab {
        height: 60px;
    }

        .social-nav-link:hover .social-tab .social-tab-content {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }


            .social-nav-link:hover .social-tab .social-tab-content .social-item {
                width: 40px;
                height: 40px;
                margin: 0px 10px;
                transition: 0.3s ease all;
            }

                .social-nav-link:hover .social-tab .social-tab-content .social-item:hover {
                    width: 60px;
                    height: 60px;
                }

    .social-nav-link:hover .button-icon-icon {
        transform: rotate(90deg);
    }

    .social-nav-link:hover .button-text {
        transform: scale(1.15);
    }*/

/*.menu-dropdown-content {
    display: none;
    top: 70px;
    left: -15px;
    right: -15px;
    position: absolute;
    width: calc(100% + 30px);
    padding: 0px;
}


.menu-dropdown:hover .menu-dropdown-content {
    display: block;
    transition: 1s ease all;
    background: rgba(0, 0, 0,0.5);
    height: auto;
    display: flex;
    justify-content: flex-start;
}*/

#header-banner video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#header-banner .header-content {
    position: absolute;
    color: #fff;
    text-align: center;
    margin: 0;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -90%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

#header-banner .header-content h1 {
    font-size: 50px;
    line-height: 54px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#header-banner .header-content p {
    font-size: 18px;
    line-height: 22px;
    margin-top: 0px;
    text-transform: uppercase;
}

#header-banner .header-content a {
    display: block;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    margin: 30px auto;
    padding: 12px 40px 12px 40px;
    cursor: pointer;
    width: 200px;
}

@media (max-width: 430px) {
    #header-banner .header-content {
        top: 50%;
        left: 14%;
        right: -5%;
        -ms-transform: translate(-10%, -50%);
        transform: translate(-10%, -50%);
    }

    #header-banner .header-content h1 {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 3px;
    }

    #header-banner .header-content p {
        font-size: 10px;
        line-height: 14px;
    }

    #header-banner .header-content p a {
        padding: 10px 40px 8px 40px;
        margin: 20px auto;
    }
}

/*****************************************
* Home About 
*****************************************/
#home-about {
    padding: 100px 0px 0px 0px;
}

@media (max-width: 430px) {
    #home-about {
        padding: 0px 0px 0px 0px;
    }
}

.home-about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    color: #ffffff;
}

.home-about .home-photo {
    width: 40%;
    position: relative;
    text-align: right;
}

.home-about .home-information {
    width: 40%;
    padding: 20px 40px;
}

.home-about .home-information .title {
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
    letter-spacing: 1.75px;
    text-transform: uppercase;
}

.home-about .home-information .subtitle {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.home-about .home-information .detail {
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
}

.home-about .home-information .detail p {
    margin-bottom: 30px;
}

.home-about .home-information .detail p:last-child {
    margin-bottom: 0px;
}

.home-about .home-information .detail p.italic {
    font-style: italic;
}

.home-about .home-information .detail p.hilighted {
    border-left: 10px solid #2d3e91;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
}

@media (max-width: 430px) {
    .home-about {
        margin-bottom: 20px;
    }

    .home-about .home-photo {
        width: 100%;
        order: 1;
    }

    .home-about .home-information {
        width: 100%;
        padding: 20px;
        order: 2;
    }

    .home-about .home-information .detail {
        font-size: 16px;
        line-height: 20px;
    }

    .home-about .home-information .detail p.hilighted {
        font-size: 20px;
        line-height: 24px;
    }
}
/*****************************************
* About Banner
*****************************************/
#about-banner {
    padding: 0px 0px 0px 0px;
}

.about-banner {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.about-banner .about-banner-photo {
    width: 70%;
}

.about-banner .about-banner-photo.wide-layout {
    width: 60%;
}

.about-banner .about-banner-info {
    width: 30%;
    overflow: hidden;
}

.about-banner .about-banner-info.wide-layout {
    width: 40%;
}

.about-banner .about-banner-info .about-banner-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #0a0a0a;
    color: #ffffff;
    padding: 40px;
    transform: scale(1);
    cursor: pointer;
    height: 100%;
}

.about-banner .about-banner-info .about-banner-badge .header,
.about-banner .about-banner-info .about-banner-badge .header:hover {
    font-size: 50px;
    line-height: 54px;
    font-weight: 600;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #ffffff;
    text-decoration: none;
}

.about-banner .about-banner-info .about-banner-badge .header.small-header {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 10px;
}

.about-banner .about-banner-info .about-banner-badge .button-text.big-text,
.about-banner .about-banner-info .about-banner-badge:hover .button-text.big-text {
    font-size: 50px;
    line-height: 54px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
}

.about-banner .about-banner-info .about-banner-badge .subheader {
    font-size: 26px;
    line-height: 30px;
    font-weight: 200;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-banner .about-banner-info .about-banner-badge p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    letter-spacing: 0px;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 430px) {
    .about-banner .about-banner-photo {
        width: 100%;
    }

    .about-banner .about-banner-photo.wide-layout {
        width: 100%;
    }

    .about-banner .about-banner-info {
        width: 100%;
    }

    .about-banner .about-banner-info.wide-layout {
        width: 100%;
    }

    .about-banner .about-banner-info .about-banner-badge {
        padding: 20px;
    }

    .about-banner .about-banner-info .about-banner-badge .header.small-header {
        font-size: 28px;
        line-height: 32px;
    }
}

/*****************************************
* Product Type
*****************************************/
#product-type {
    padding: 0px 0px 0px 0px;
}

#product-type .title {
    color: #ffffff;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-align: center;
}

@media (max-width: 430px) {
    #product-type {
        padding: 0px;
    }

    #product-type .title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.product-type {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.product-type .product-type-item {
    width: 50%;
    cursor: pointer;
    position: relative;
}

.product-type .product-type-item.wide-banner {
    width: 60%;
}

.product-type .product-type-item.wide-info {
    width: 40%;
}

.product-type .product-type-item img {
    width: 100%;
}

.product-type .product-type-item .product-type-content {
    position: absolute;
    color: #fff;
    text-align: center;
    margin: 0;
    top: 80%;
    left: 10%;
    right: 10%;
    -ms-transform: translate(-50%, -80%);
    transform: translate(0%, -80%);
    z-index: 1;
}

.product-type .product-type-item .product-type-content h1 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.product-type .product-type-item .product-type-content p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
}

@media (max-width: 430px) {
    .product-type .product-type-item {
        width: 100%;
    }
}

.cooling-tower-wrapper {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.cooling-tower-type {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    color: #000000;
    width: 90%;
}

.cooling-tower-type .cooling-tower-icon {
    width: 20%;
}

.cooling-tower-type .cooling-tower-lists {
    width: 80%;
}

.cooling-tower-type .cooling-tower-lists .header {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
    color: #ffffff;
}

.cooling-tower-type .cooling-tower-lists ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.cooling-tower-type .cooling-tower-lists ul li {
    margin-bottom: 3px;
}

.cooling-tower-type .cooling-tower-lists ul li a {
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}

/*****************************************
* Home Video
*****************************************/
.home-video {
    height: 100vh;
    position: relative;
}

@media (max-width: 430px) {
    .home-video {
        height: 600px;
    }
}

.home-video.dark-theme::after {
    position: absolute;
    background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1));
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-video video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-video .home-content {
    position: absolute;
    color: #fff;
    text-align: center;
    margin: 0;
    top: 80%;
    left: 50%;
    -ms-transform: translate(-50%, -80%);
    transform: translate(-50%, -80%);
    z-index: 1;
}

.home-video .home-content h1 {
    font-size: 40px;
    line-height: 44px;
    font-weight: bold;
    margin-bottom: 5px;
}

.home-video .home-content p {
    font-size: 18px;
    line-height: 22px;
    margin-top: 0px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* .home-video .home-content a {
        border-radius: 5px;
        background: transparent;
        color: #fff;
        margin: 30px auto;
        padding: 12px 40px 12px 40px;
        cursor: pointer;
    }*/

@media (max-width: 430px) {
    .home-video .home-content {
        top: 78%;
        left: 14%;
        right: -5%;
        -ms-transform: translate(-10%, -90%);
        transform: translate(-10%, -90%);
    }

    .home-video .home-content h1 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 3px;
    }

    .home-video .home-content p {
        font-size: 10px;
        line-height: 14px;
    }

    /*.home-video .home-content a {
            padding: 10px 40px 8px 40px;
            margin: 20px auto;
        }*/
}

/*****************************************
* Swiper
*****************************************/
.swiper-slide {
    position: relative;
}

/*.swiper-slide::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1) );
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }*/

/*****************************************
* Home Carousel
*****************************************/
#home-carousel {
    position: relative;
}

#home-carousel .swiper-slide .swiper-text {
    position: absolute;
    color: #ffffff;
    z-index: 2;
    bottom: 10%;
    left: 0px;
    right: 0px;
    text-align: center;
}

#home-carousel .swiper-slide .swiper-text .header {
    font-size: 50px;
    line-height: 54px;
    font-weight: bold;
    margin-bottom: 20px;
}

#home-carousel .swiper-slide .swiper-text .subheader {
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 430px) {
    #home-carousel .swiper-slide .swiper-text {
        bottom: 5%;
    }

    #home-carousel .swiper-slide .swiper-text .header {
        font-size: 20px;
        line-height: 24px;
    }

    #home-carousel .swiper-slide .swiper-text .subheader {
        font-size: 11px;
        line-height: 20px;
        width: 80%;
        margin: 0px auto;
        font-weight: 400;
    }
}

/*****************************************
* About Main
*****************************************/
#about-main {
    position: relative;
    padding: 100px 0px 0px 0px;
}

#about-main .header {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 40px;
}

#about-main .subheader {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

.about-main {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.about-main .about-main-youtube {
    width: 50%;
}

.about-main .about-main-info {
    width: 50%;
    color: #ffffff;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-main .about-main-info .title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.about-main .about-main-info .subtitle {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.about-main .about-main-info .detail {
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    text-align: center;
}

.about-main .about-main-info .detail p.hilighted {
    padding: 15px 0px;
    font-style: italic;
}

@media (max-width: 430px) {
    .about-main .about-main-youtube {
        width: 100%;
        order: 1;
    }

    .about-main .about-main-info {
        width: 100%;
        order: 2;
        padding: 20px;
        align-items: inherit;
    }

    .about-main .about-main-info .title {
        font-size: 28px;
        line-height: 32px;
    }

    .about-main .about-main-info .detail {
        text-align: left;
        font-size: 16px;
        line-height: 20px;
    }
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*****************************************
* About Carousel
*****************************************/
#about-carousel {
    position: relative;
    padding: 0px;
}

#about-carousel .header {
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}

#about-carousel .subheader {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

#about-carousel .about-carousel-wrapper {
    padding: 5%;
    position: relative;
}

#about-carousel .swiper-slide {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#about-carousel .swiper-photo {
    width: 50%;
}

#about-carousel .swiper-info {
    width: 50%;
    color: #ffffff;
    background: #181818;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#about-carousel .swiper-info .title {
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

#about-carousel .swiper-info .subtitle {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#about-carousel .swiper-info .detail {
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}

#about-carousel .swiper-info .detail p:last-child {
    padding-bottom: 0px;
}

#about-carousel .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 15px !important;
}

#about-carousel .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #ffffff;
    opacity: 1;
    border: 1px solid #ffffff;
    margin: 0px 10px;
}

#about-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid #ffffff;
}

@media (max-width: 430px) {
    #about-carousel {
        background: #181818;
        padding-bottom: 40px;
    }

    #about-carousel .about-carousel-wrapper {
        padding: 0px;
    }

    #about-carousel .swiper-photo {
        width: 100%;
        order: 1;
    }

    #about-carousel .swiper-info {
        width: 100%;
        order: 2;
        padding: 20px;
    }

    #about-carousel .swiper-info .detail {
        font-size: 16px;
        line-height: 20px;
    }

    #about-carousel .swiper-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: -20px !important;
    }
}

/*****************************************
* About Carousel
*****************************************/
#about-performance {
    position: relative;
    color: #ffffff;
    padding: 50px 0px 0px 0px;
    background: #0e0e0e;
}

#about-performance .header {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    margin: 0px auto 50px auto;
}

.performance-lists {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.performance-lists .performance-item {
    width: calc(100% / 3);
}

/*****************************************
* Services
*****************************************/
#services {
    padding: 50px 0px 0px 0px;
    background: #121212;
    color: #ffffff;
}

#services .title {
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

#services .subtitle {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 0px;
    text-align: center;
}

@media (max-width: 430px) {
    #services {
        padding: 50px 0px 0px 0px;
    }

    #services .title {
        font-size: 30px;
    }

    #services .subtitle {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 20px;
    }
}

.service-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /*padding: 15px;*/
}

.service-lists .service-item {
    width: calc(100% / 3);
    /*padding: 15px;*/
}

.service-lists .service-item img {
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    /*border-radius: 5px;*/
}

.service-lists .service-item .service-content {
    position: absolute;
    color: #fff;
    text-align: center;
    margin: 0;
    bottom: 40px;
    left: 0px;
    right: 0px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to top, rgb(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

.service-lists .service-item .service-content p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
}

.service-lists .service-item .service-content h1 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media (max-width: 430px) {
    .service-lists .service-item {
        width: 100%;
        padding: 0px 0px 20px 0px;
    }
}

/*****************************************
* Project
*****************************************/
#project-filter {
    padding: 20px 0px 0px 0px;
    background: #222222;
    color: #ffffff;
}

.project-filter {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.project-filter .project-filter-item {
    border: 2px solid white;
    margin: 0px 5px 10px 5px;
    padding: 7px 20px;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s ease all;
}

.project-filter .project-filter-item.active {
    background: #ffffff;
    color: #000000;
}

@media (max-width: 430px) {
    .service-lists .service-item {
        width: calc(100% / 1);
    }
}

/*****************************************
* Project Reference
*****************************************/
#project-reference {
    padding: 50px 0px;
    background: #222222;
    color: #ffffff;
}

/*  #project-reference::before {
        left: 0;
        top: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
        background-image: linear-gradient(to top, rgba(255, 0, 0, 0), rgb(0, 0, 0, 0.8));
    }*/

#project-reference .title {
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 430px) {
    #project-reference {
        padding: 20px 0px;
    }

    #project-reference .title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.grid-container {
    columns: 3 200px;
    column-gap: 1.5rem;
    width: 90%;
    margin: 0 auto;
}

.grid-container div {
    margin: 0 1.5rem 1.5rem 0;
    display: inline-block;
    width: 100%;
    /*border: solid 2px black;
        padding: 5px;*/
    /*box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);*/
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
}

.grid-container div:hover img {
    filter: grayscale(0);
}

.grid-container div:hover {
    border-color: coral;
}

.grid-container div img {
    width: 100%;
    /*filter: grayscale(100%);*/
    border-radius: 5px 5px 0px 0px;
    transition: all 0.25s ease-in-out;
}

.grid-container div p {
    margin: 20px 0;
    padding: 0;
    text-align: center;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
}

/*****************************************
* Welcome Modal
*****************************************/
#welcome-modal {
    /*background: #222a35;*/
    background: rgba(255, 255, 255, 0.9);
}

#welcome-modal .modal-dialog {
    max-width: 100%;
    margin: 0rem auto;
}

#welcome-modal .modal-dialog .modal-content {
    background: none;
    box-shadow: none;
    border: none;
}

#welcome-modal .modal-dialog .modal-content .modal-header {
    padding: 5px 0px;
    border-bottom: none;
}

#welcome-modal .modal-dialog .modal-content .modal-header .close {
    opacity: 1;
    outline: none;
    padding: 1rem 1.5rem;
}

#welcome-modal .modal-dialog .modal-content .modal-header .close img {
    width: 26px;
}

#welcome-modal .modal-dialog .modal-content .modal-body {
    padding: 0rem;
}

#welcome-modal .modal-dialog .modal-content .modal-body iframe {
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
}

#welcome-modal .modal-dialog .modal-content .modal-body .footer-detail {
    color: #000000;
    text-align: center;
    padding: 40px;
}

#welcome-modal .modal-dialog .modal-content .modal-body .footer-detail .headline {
    font-size: 30px;
    font-weight: 600;
}

#welcome-modal .modal-dialog .modal-content .modal-body .footer-detail .subheadline {
    font-size: 24px;
    margin-bottom: 30px;
}

#welcome-modal .modal-dialog .modal-content .modal-body .footer-detail .copybody {
    font-size: 22px;
    font-style: italic;
}

#welcome-modal .modal-dialog .modal-content .modal-body .close-button {
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    padding: 10px;
    top: 0px;
    right: 0px;
}

#welcome-modal .modal-dialog .modal-content .modal-body .close-button button {
    outline: none;
}

@media (max-width: 1500px) {
    #welcome-modal .modal-dialog {
        max-width: 100%;
    }
}

@media (max-width: 430px) {
    #welcome-modal .modal-dialog {
        max-width: 100%;
    }

    #welcome-modal .modal-dialog .modal-content .modal-body .footer-detail {
        padding: 30px 15px;
    }

    #welcome-modal .modal-dialog .modal-content .modal-body .footer-detail .headline {
        font-size: 26px;
    }

    #welcome-modal .modal-dialog .modal-content .modal-body .footer-detail .subheadline {
        font-size: 20px;
    }

    #welcome-modal .modal-dialog .modal-content .modal-body .footer-detail .copybody {
        font-size: 18px;
        line-height: 22px;
    }
}

/*****************************************
* Language Menu
* https://gist.github.com/pratikbutani/20ded7151103bb30737e2ab1b336eb02*
*****************************************/

.lang-menu {
    width: 90px;
    text-align: right;
    font-weight: bold;
    position: relative;
    font-family: "Reddit Sans", "Prompt", sans-serif;
}

.lang-menu .selected-lang {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 2;
    cursor: pointer;
    color: #ffffff;
}

.lang-menu .selected-lang:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("https://twemoji.maxcdn.com/2/svg/1f1fa-1f1f8.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 35px;
    right: 0px;
    width: 140px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
}

.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
}

.lang-menu ul li:hover {
    background-color: #f2f2f2;
}

.lang-menu ul li a:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.th:before {
    background-image: url("https://cdn.jsdelivr.net/npm/twemoji@11.3.0/2/svg/1f1f9-1f1ed.svg");
}

.us:before {
    background-image: url("https://twemoji.maxcdn.com/2/svg/1f1fa-1f1f8.svg");
}

.cn:before {
    background-image: url("https://twemoji.maxcdn.com/2/svg/1f1e8-1f1f3.svg");
}

.lang-menu:hover ul {
    display: block;
}

/*****************************************
* Footer
*****************************************/
#footer {
    padding: 50px 0px;
    border-top: 1px solid #0c0c0c;
    background: #121212;
    color: #ffffff;
}

#footer .header {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

#footer a,
#footer a:hover {
    color: #ffffff;
}

.footer {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: transparent;
    text-align: left;
}

.footer .footer-item {
    width: calc(100% / 3);
}

@media (max-width: 430px) {
    #footer {
        padding: 50px 0px 0px 0px;
    }

    #footer .header {
        margin-bottom: 10px;
    }

    .footer .footer-item {
        width: 100%;
        margin-bottom: 30px;
    }
}

.footer-company {
    font-size: 18px;
}

.footer-company .company-logo {
    margin-bottom: 15px;
}

.footer-company .company-logo img {
    width: 60%;
}

.footer-company .company-name {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-company .company-slogan {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.company-brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.company-brand .company-brand-item {
    width: calc(100% / 4);
    margin: 10px 15px 10px 0px;
}

@media (max-width: 430px) {
    .footer-company .company-logo img {
        width: 50%;
    }
}

.footer-sitemap {
    padding: 20px;
}

.footer-sitemap .sitemap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
    font-size: 18px;
}

.footer-sitemap .sitemap a {
    color: #000000;
    font-weight: 400;
    padding-bottom: 0px;
    display: block;
}

.footer-sitemap .sitemap .sitemap-left {
    width: 50%;
}

.footer-sitemap .sitemap .sitemap-right {
    width: 50%;
}

@media (max-width: 430px) {
    .footer-sitemap {
        padding: 0px;
    }

    .footer-sitemap .sitemap {
        font-size: 16px;
    }
}

.footer-contact {
    padding: 20px;
}

.footer-contact .contact-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact .contact-item .contact-item-icon {
    width: 40px;
}

.footer-contact .contact-item .contact-item-icon img {
    width: 26px;
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
}

.footer-contact .contact-item .contact-item-detail {
    width: calc(100% - 40px);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px 20px 0px;
}

.footer-social .social-item {
    width: 40px;
    height: 40px;
    margin: 0px 5px;
}

@media (max-width: 430px) {
    .footer-contact {
        padding: 0px;
    }
}

#copyright {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    padding: 20px 0px;
    border-top: 1px solid #0c0c0c;
    background: #121212;
    color: #ffffff;
}

@media (max-width: 430px) {
    #copyright {
        font-size: 14px;
        line-height: 20px;
        padding: 15px 0px;
    }
}

/*****************************************
* Welcome Modal
*****************************************/
#company-modal {
}

#company-modal .modal-dialog {
    max-width: 50%;
    margin: 0rem auto;
}

#company-modal .modal-dialog .modal-content {
    background: #121212;
    box-shadow: 0px 10px 30px rgba(123, 123, 123, 0.5);
}

#company-modal .modal-dialog .modal-body {
    padding: 3rem;
}

#company-modal .modal-dialog .modal-content .modal-body .close-button {
    position: absolute;
    padding: 10px;
    top: 0px;
    right: 0px;
}

#company-modal .modal-dialog .modal-content .modal-body .close-button button {
    outline: none;
}

@media (max-width: 430px) {
    #company-modal .modal-dialog {
        max-width: 90%;
        margin: 0rem auto;
    }
}

#company-info {
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
}

#company-info .company-name {
    /* color: #233d92;*/
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

#company-info .company-address {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#company-info .company-phone {
}

#company-info .company-email {
}

@media (max-width: 430px) {
    #company-modal .modal-dialog .modal-body {
        padding: 20px;
    }

    #company-info .company-name {
        font-size: 18px;
        line-height: 22px;
    }

    #company-info .company-address {
        font-size: 12px;
        line-height: 16px;
        font-weight: 400;
    }
}

.product-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: #000000;
}

.product-lists .product-lists-item {
    width: calc(100% / 3);
    display: block;
    position: relative;
}

.product-lists .product-lists-item img {
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.product-lists .product-lists-item .product-lists-item-content {
    position: absolute;
    color: #fff;
    text-align: center;
    margin: 0;
    bottom: 40px;
    left: 10px;
    right: 10px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.product-lists .product-lists-item .product-lists-item-content p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
}

.product-lists .product-lists-item .product-lists-item-content h1 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-lists .product-lists-item .product-lists-item-content .button-link {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media (max-width: 430px) {
    .product-lists .product-lists-item {
        width: 100%;
        padding: 0px 0px 20px 0px;
    }
}

/*****************************************
* Get Button
*****************************************/
#getbutton {
    background: #111111;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    z-index: 999;
}

.getbutton {
    width: 60px;
    position: relative;
}

.getbutton .getbutton-icon-comment {
    transform: rotate(0deg);
    transition: 0.3s ease all;
    text-align: center;
}

.getbutton:hover .getbutton-icon-comment {
    transform: rotate(180deg);
}

.getbutton .getbutton-panel {
    height: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 60px;
}

.getbutton:hover .getbutton-panel {
    height: 490px;
}

.getbutton .getbutton-panel .getbutton-item {
    display: none;
}

.getbutton:hover .getbutton-panel .getbutton-item {
    display: block;
    margin: 10px auto;
}

#contact-global {
    position: relative;
}

#contact-global .rotate-icon {
    width: 80px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 100;
}
