@media (min-width: 992px) {
    @font-face {
        font-family: "Barlow-Medium";
        src: url("/assets/fonts/Barlow-Medium.ttf");
    }
    @font-face {
        font-family: "Barlow-ExtraLight";
        src: url("/assets/fonts/Barlow-ExtraLight.ttf");
    }
    @font-face {
        font-family: "Helvetica";
        src: url("/assets/fonts/Helvetica.ttf");
    }
    @font-face {
        font-family: "Helvetica-Bold";
        src: url("/assets/fonts/Helvetica-Bold-Font.ttf");
    }
    html {
        font-size: 16px;
    }
    .grecaptcha-badge {
        display: none;
    }
    :root {
        --main-full-black-color: rgb(0, 0, 0);
        --main-transparent-black-color: rgba(0, 0, 0, 0.8);
        --main-half-black-color: rgba(0, 0, 0, 0.5);
        --main-white-color: rgb(255, 255, 255);
        --main-heading-color: rgb(6, 160, 55);
        --main-line-color: rgb(206, 206, 206);
        --hover-font-color: rgb(223, 108, 0);
        --main-heading-color: rgb(0, 96, 201);
        --main-button-color: #ffb400;
        --hover-button-color: rgb(14, 205, 84);
        --main-background-color: #ff9504;
        --main-color: rgb(208, 180, 143);
        --main-active-color: rgb(212, 156, 87);
    }
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    body {
        font-family: Arial, sans-serif, Helvetica, open-sans;
        color: var(--main-full-black-color);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background-color: var(--main-white-color);
    }
    h1 {
        font-size: 40px;
        font-weight: 700;
    }
    h2 {
        font-size: 35px;
        font-weight: 600;
	font-family: "Helvetica-Bold", "Arial";
    }
    h3 {
        font-size: 16px;
        font-weight: 500;
    }
    h4 {
        font-size: 14px;
        font-weight: 400;
    }
    em {
        font-style: italic;
    }
    a {
        transition: 0.3s color;
    }
    b {
        font-weight: 700;
    }
    p {
	font-size: 14px;
    }
    strong {
        font-weight: 700;
        color: #292929;
    }
    ::placeholder {
      color: var(--main-white-color);
      opacity: 1;
    }
    hr.horizontal {
        background-color: rgba(87, 87, 87, 0.3);
        border: none;
        display: block;
        height: 15px;
        margin: 0!important;
    }
    .mobile-header-section {
        display: none;
    }
    .mobile-header-padding {
        display: none;
    }
    .relatives {
        position: absolute;
        top: 0;
        background-color: var(--main-white-color);
        display: flex;
        flex-direction: row;
        justify-content: center;
        z-index: 1;
        width: 100%;
        height: 75px;
    }
    .page-name {
        position: absolute;
        top: 14%;
        text-align: center;
        right: 0;
        left: 0;
    }
    .page-name h1 {
        white-space: pre;
        color: var(--main-white-color)!important;
        font-weight: 300;
        letter-spacing: 12px;
	margin: 0!important;
	font-family: "Barlow-ExtraLight";
    }
    .menu-sections {
        transition: all 0.3s ease;
        display: block;
    }
    .menu-sections li ul {
        display: none;
    }
    .menu-sections li.main-menu:hover ul {
        position: absolute;
        display: block;
        width: 135px;
        z-index: 1;
        box-shadow: 0 0 20px rgba(212, 176, 176, 0.2);
        background-color: var(--main-color);
        height: auto;
        top: 40px;
        margin: 5px 0;
    }
    .menu-sections li.main-menu ul li:hover {
        z-index: 1;
        background-color: #00c8ff;
    }
    .menu-sections li ul li:active {
        z-index: 1;
        background-color: var(--active-color);
    }
    .menu-sections ul {
        display: flex;
        flex-direction: row;
        list-style-type: none;
    }
    .menu-sections li {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .menu-sections li ul li:active {
        background-color: var(--active-color);
    }
    .menu-sections ul li a {
        text-decoration: none;
        padding: 0 12px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.5);
	font-family: "Barlow-Medium";
    }
    li.main-menu.active > a {
        color: #0060d3;
        font-weight: 600;
    }
    .menu-sections ul li a:hover {
        color: var(--main-active-color);
    }
    .sub-menu {
        position: absolute;
        top: 40px;
        width: 150px;
        background-color: #192f21;
        padding: 10px;
        visibility: hidden;
        transition: 0.3s opacity;
        opacity: 0;
        z-index: 1000;
    }
    .sub-menu:after {
        bottom: 100%;
        left: 20%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(136, 183, 213, 0);
        border-bottom-color: #192f21;
        border-width: 10px;
        margin-left: -20px;
    }
    .sub-menu:hover {
        display: block;
        opacity: 1;
    }
    .tb-search {
        position: relative;
        width: 0;
        visibility: hidden;
        transition: 0.3s all;
        background-color: var(--main-background-color);
        border: 1px solid #1e581e;
        border-radius: 3px;
        padding: 5px;
        padding-left: 0;
        padding-right: 0;
        color: var(--main-white-color);
        z-index: 10000;
    }
    .tb-search::placeholder {
        color: #93aa99;
    }
    .tb-search:-ms-input-placeholder {
        color: #93aa99;
    }
    .tb-search::-ms-input-placeholder {
        color: #93aa99;
    }
    .tb-search:focus {
        outline-width: 0;
    }
    .btn-search:active ~ .tb-search {
        width: 175px;
        padding-left: 5px;
        padding-right: 5px;
        visibility: visible;
    }
    .btn-search:focus ~ .tb-search {
        width: 175px;
        padding-left: 5px;
        padding-right: 5px;
        visibility: visible;
    }
    .tb-search:hover {
        width: 175px;
        padding-left: 5px;
        padding-right: 5px;
        visibility: visible;
    }
    .tb-search:focus {
        width: 175px;
        padding-left: 5px;
        padding-right: 5px;
        visibility: visible;
    }
    
     @media only screen and (min-device-width: 300px) and (max-device-width: 375px) {
        .btn-search:focus ~ .tb-search, .tb-search:hover,  .tb-search:focus {
            width: 275px;
            visibility: visible;
            transition: 0.3s all;
            background-color: var(--main-background-color);
            border: 1px solid #082c69;
            border-radius: 3px;
            padding: 5px 15px;
            color: var(--main-white-color);
            right: 35px;
            z-index: 10;
            height: 40px;
            bottom: 10px;
            font-size: 25px;
            top: -8px;
        }
      }

      @media only screen and (min-device-width: 376px) and (max-device-width: 414px) {
        .btn-search:focus ~ .tb-search, .tb-search:hover,  .tb-search:focus {
            width: 300px;
            visibility: visible;
            transition: 0.3s all;
            background-color: var(--main-background-color);
            border: 1px solid #082c69;
            border-radius: 3px;
            padding: 5px 15px;
            color: var(--main-white-color);
            right: 35px;
            z-index: 10;
            height: 40px;
            bottom: 10px;
            font-size: 25px;
            top: -8px;
        }
      }

      @media only screen and (min-device-width: 415px) and (max-device-width: 991px) {
        .btn-search:focus ~ .tb-search, .tb-search:hover,  .tb-search:focus {
            width: 400px;
            visibility: visible;
            transition: 0.3s all;
            background-color: var(--main-background-color);
            border: 1px solid #082c69;
            border-radius: 3px;
            padding: 5px 15px;
            color: var(--main-white-color);
            right: 35px;
            z-index: 10;
            height: 40px;
            bottom: 10px;
            font-size: 25px;
            top: -8px;
        }
      }


    footer .text-center p {
	margin-top: 12px;
	color: rgb(82 82 82 / 60%);
	font-size: 12px;
    }
    .footer-main {
        color: var(--main-white-color);
    }
    .footer-main-dashboard {
        height: 50%;
        padding-top: 10px;
    }
    .footer-section {
        color: var(--main-white-color);
        width: 100%;
        min-height: 165px;
        background-color: var(--main-background-color);
        z-index: 100;
        position: relative;
    }
    .footer-section .menus {
        margin: 25px 0;
    }
    .footer-address {
        margin-top: 20px;
        margin-left: 50px;
        width: 400px;
        margin-bottom: 30px;
    }
    .footer-address strong {
        color: var(--main-white-color);
    }
    .footer-address ul li {
        font-size: 12px;
    }
    .footer-address ul li img {
        width: 40px !important;
        padding-bottom: 10px;
    }
    .footer-address ul li h3 {
        font-family: "Times New Roman";
        font-size: 18px;
    }
    .spvc h3 {
        margin-bottom: 20px;
        font-weight: bolder;
    }
    .spvc ul {
        display: block;
    }
    .spvc li {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100px;
        margin-top: 5px;
        margin-bottom: 0;
    }
    .spvc ul li a {
        padding: 0;
    }
    .banner-section {
        height: 500px;
        width: 100%;
        position: relative;
    }
    .banner-section img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 100%;
    }
    .banner-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 400px;
        width: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23040404' fill-opacity='1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    }
    .banner-breadcumb {
        z-index: 1;
        position: absolute;
        bottom: 50px;
        left: 50px;
    }
    .banner-breadcumb ul li {
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.705);
        padding: 10px 25px 10px 25px;
        border-radius: 60px;
        margin-right: 30px;
        position: relative;
        font-size: 14px;
    }
    .banner-line {
        position: absolute;
        width: 100%;
        height: 5px;
        background-color: #06b444;
        bottom: 0;
    }
    .banner-breadcumb ul li:not(:first-of-type)::before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        -moz-border-radius: 7.5px;
        -webkit-border-radius: 7.5px;
        border-radius: 7.5px;
        background-color: var(--main-white-color);
        position: absolute;
        left: -23px;
        top: 15px;
    }
    .banner-breadcumb ul li a {
        color: var(--main-white-color);
    }
    .banner-breadcumb ul li a:hover {
        color: var(--main-white-color);
    }
    .index-page {
        color: var(--main-full-black-color);
    }
    .index-page .profile-title {
	padding: 0 2rem;        
    }
    .index-page .profile-title h1 {
        color: #0060c9;
	font-family: "Helvetica-Bold";
    }
    .index-page .profile-title p {
        color: rgba(87, 87, 87, 0.8);
	font-size: 12px;
    }
   .btn {
       border: none;
       color: white;
       padding: 5px 0px;
       text-align: center;
       text-decoration: none;
       display: inline-block;
       font-size: 16px;
       margin: 12px 2px;
       transition-duration: 0.4s;
       cursor: pointer;
       width: 175px;
   }
    .btn-selengkapnya {
        background-color: white; 
        color: #575757CC; 
        border: 2px solid #0060d3;
    }
    .btn-selengkapnya:hover {
        background-color: #008CBA;
        color: white;
    }
    .slick-dotted .slick-slider {
        margin-bottom: 0 !important;
    }
    .index-page .reference .slick-dots {
        position: absolute;
        bottom: 50px;
        display: block;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        left: 0;
    }
    .index-page .testimony .slick-dots {
        position: absolute;
        display: block;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        left: 0;
        bottom: -100px;
    }
    .index-page .slick-prevs {
        position: absolute;
        top: 50%;
        left: 100px;
        cursor: pointer;
        z-index: 1;
        height: 35px;
        width: 35px;
        background-color: #ff9504;
    }
    .index-page .slick-prev {
        position: absolute;
        top: 50%;
        left: 1vw;
        cursor: pointer;
        z-index: 1;
        height: 35px;
        width: 35px;
    }
    .index-page .slick-prev-test {
        position: absolute;
        top: 30%;
        left: 0;
        cursor: pointer;
        z-index: 1;
        height: 35px;
        width: 35px;
    }
    .index-page .slick-nexts {
        position: absolute;
        top: 50%;
        right: 100px;
        cursor: pointer;
        z-index: 1;
        height: 35px;
        width: 35px;
        background-color: #ff9504;
    }
    .index-page .slick-next {
        position: absolute;
        top: 50%;
        right: 1vw;
        cursor: pointer;
        z-index: 1;
        height: 35px;
        width: 35px;
    }
    .index-page .slick-next-test {
        position: absolute;
        top: 30%;
        right: 0;
        cursor: pointer;
        z-index: 1;
        height: 35px;
        width: 35px;
    }
    .slick-dots ul {
        padding: 0;
    }
    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }
    .slick-dots li button {
        background-color: transparent;
        font-size: 0px;
        line-height: 0;
        border-radius: 50%;
        display: block;
        width: 20px;
        height: 20px;
        padding: 5px;
        cursor: pointer;
        border: 0;
        outline: 0;
    }
    .slick-dots li button:focus,
    .slick-dots li button:hover {
        outline: 0;
    }
    .slick-dots li button:focus:before,
    .slick-dots li button:hover:before {
        opacity: 1;
    }
    .slick-dots li button:before {
        font-family: slick;
        font-size: 16px;
        line-height: 20px;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        content: "•";
        text-align: center;
        opacity: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .slick-dots li.slick-active button:before {
        opacity: 1;
        color: #00f;
    }
    .index-page .slide img {
        width: 100%;
    }
    .index-page .slick-dots li button:before {
        font-size: 15px;
        line-height: 15px;
        color: #000 !important;
        opacity: 1;
    }
    .index-page .profil-text h1 {
        text-align: left;
    }
    .index-page .about-us {
        margin: 100px 0;
    }
    .index-page .network {
        height: 550px;
    }
    .index-page .product {
        min-height: 550px;
    }
    .index-page .about-us h2,
    .index-page .testimony h2 {
        color: var(--main-heading-color);
        font-weight: 600;
	margin: 50px 0 35px 0;
    }
   
    .index-page .reason h2 {
	color: #0060c9;
	margin-top: 50px;
    }
    .index-page .network h2,
    .index-page .product h2,
    .index-page .reference h2 {
        color: var(--main-white-color);
        font-weight: 600;
	margin: 50px 0 20px 0;
    }
    .index-page .network p,
    .index-page .product p,
    .index-page .reference p {
        color: var(--main-white-color);
	margin-bottom: 15px;
	font-size: 14px;
    }
    .index-page .product .product-image {
        background-color: var(--main-white-color);
        margin: 2px;
	height: 230px;
	padding: 8px;
    }
    .index-page .product .product-image img {
        width: 100%;
        height: 212px;
    }
    .index-page .product-image p {
        position: relative;
        color: var(--main-white-color);
        text-align: center;
        font-size: 20px;
        font-weight: 400;
    }
    .index-page .read-more {
        position: relative;
        left: 0;
        text-align: center;
        color: var(--main-white-color);
        transition: 0.3s all;
        transition-delay: 0.2s;
        opacity: 0;
        bottom: 25px;
        background: orange;
        height: 30px;
    }
    .index-page .read-more span {
        text-align: center;
        position: absolute;
        top: 5px;
	right: 0;
	left: 0;
    }
    .product-image:hover .read-more {
        transition: 0.3s;
        cursor: pointer;
        opacity: 1;
    }
    .index-page .reference h2 {
        margin-top: 50px;
    }
    .index-page .slide-reference {
        border: 15px solid #fff;
    }
    .index-page .reason .reason-desc img {
        width: 75px;
    }
    .index-page .reason .reason-desc h3 {
	font-weight: 400;
	color: rgba(0, 0, 0, 0.5);
    }
    .index-page .reason .reason-desc p {
	text-align: justify;
	font-size: 12px;
    }
    .verticalLine:not(:last-child) {
	border-left: 1px solid #000;
        margin-top: 10px;
	margin-bottom: 50px;
    }
    .index-page .reason-text p {
        margin-top: 10px;
        margin-bottom: 50px;
	color: rgba(87, 87, 87, 0.8);
    }
    .index-page .testimony {
        height: 575px;
    }
    .index-page .slider-testimony {
        height: 250px;
        padding: 10px 200px;
        font-weight: 400;
        font-family: "Barlow-ExtraLight";
    }
    .index-page .slide-testimony h4, .index-page .slide-testimony span {
       font-family: "Barlow-ExtraLight";
    }
    .index-page .network h2 {
	font-size: 40px;
	font-family: "Helvetica-Bold", "Arial";	
    }
    .index-page .network p {
	font-weight: 700;
	font-size: 14px;
    }
   .index-page .network img {
	height: 100%;
	position: relative;
	bottom: 84px;	
    }
    .about-section {
        min-height: 500px;
        color: var(--main-full-black-color);
        background-color: var(--main-white-color);
    }
    .about-section .about-us-upper {
        background-color: var(--main-white-color);
	height: 700px;
    }
    .about-section h1 {
        margin: 50px 0 75px 0;
        text-align: center;
        color: var(--main-heading-color);
    }
    .about-section .about-us-title {
        text-align: center;
        color: var(--main-heading-color);
	margin: 35px 0;
    }
    .about-section .about-us-image .about-card {
        position: relative;
        padding: 5px;
    }
    .about-section .about-us-image .about-card img {
	height: 500px;
    }
    .about-section .about-us-image .about-card:hover {
        transform: scale(1.1);
        transition: all 0.5s ease-in-out;
    }
    .about-section .about-us-image .text-block {
        position: absolute;
        top: 25px;
        color: var(--main-white-color);
        padding: 0 10px;
	margin: 0 2%;
    }
    .about-section .about-us-image .text-block h4 {
        text-align: center;
        font-size: 14px;
        margin: 25px 0;
    }
    .about-section .about-us-image .text-block p {
        font-size: 10px;
        text-align: justify;
	max-width: 205px;
    }
    .about-section .vision-mission {
        height: 300px;
    }
    .about-section .vision-mission h2 {
        color: var(--main-white-color);
        text-align: left;
        margin: 30px 0;
    }
    .about-section .vision-mission p {
        text-align: justify;
        color: var(--main-white-color);
        font-size: 12px;
    	list-style-type:disc;
    	display:list-item;
    	list-style-position: outside;
	margin-left: 15px;
    }
    .about-section .core-value {
        background-color: var(--main-white-color);
    }
    .about-section .core-value .is-6 {
        margin: 25px 0;
    }
    .about-section .core-value h2 {
        color: var(--main-heading-color);
        font-weight: 800;
        margin: 25px 0;
        text-align: center;
    }
    .product-all {
        background-color: var(--main-white-color);
	margin-top: 50px;
    }
    .product-all .products-desc {
	justify-content: center;
    }
    .product-all .product-top {
	text-align: center;
    }
    .product-all .product-top h2 {
	color: #0060c9;
    }
    .product-all .product-top p {
        color: #575757CC;
    }
    .product-all .product-image {
        background-color: var(--main-white-color);
        margin: 25px 4px 100px 4px;
        box-shadow: 5px 5px 5px #7a7a7a;
	height: 235px;
	width: 235px;
    }
    .product-all .product-image img {
        min-height: 215px;
	max-height: 100%;
        min-width: 215px;
	max-width: 100%;
    }
    .product-all .product-image p {
        position: relative;
        color: #575757CC;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
    }
    .product-all .cat-read-more {
        position: relative;
        left: 0;
        text-align: center;
        color: var(--main-white-color);
        transition: 0.3s all;
        transition-delay: 0.2s;
        opacity: 0;
        bottom: 28px;
        background: orange;
        height: 30px;
	width: 215px;
    }
    .product-all .cat-read-more span {
        text-align: center;
        margin-left: 15px;
        position: absolute;
        top: 5px;
	right: 0;
	left: 0;
    }
    .product-image:hover .cat-read-more {
        transition: 0.3s;
        cursor: pointer;
        opacity: 1;
    }
    .product-section {
        background-color: var(--main-white-color);
    }
    .product-section .products {
        min-height: 835px;
        max-height: 1800px;
    }
    .product-section .product-border {
        border: 1px solid #bfbfbf;
        background-color: var(--main-white-color);
        box-shadow: -2px 17px 10px 0 #aaa;
        margin: -50px 0 50px 0;
        z-index: 1;
        padding: 0;
        border-radius: 10px;
    }
   .product-section .product-border .back-to-list {
	text-align: center;
	justify-content: center;
	margin-top: 20px;
   }
   .product-section .product-border .back-to-list a {
	display: inline-flex;
   }
   .product-section .product-border .back-to-list img {
        width: 20px;
        height: 20px;
        margin-right: 12px;
   }
   .product-section .product-border .back-to-list span {
	font-size: 14px;
        font-weight: 400;
        color: #575757;
        font-family: 'Helvetica';
   }
   .product-section .atap-upvc {
	min-height: 1038px;
	height: auto;
    }
   .product-section .pipa-pvc {
	min-height: 970px;
	height: auto;
   }
   .product-section .plafon-upvc {
	min-height: 1405px;;
	height: auto;
    }
    .product-section .talang-air {
	min-height: 850px;
	height: auto;
    }
    .product-section .list-profil {
	min-height: 1000px;
	height: auto;
     }
    .product-section .verticalLine {
        border-left: 1px solid #fff;
        margin-top: 25px;
	margin-bottom: 12px;
    }
    .product-section .is-gapless {
        padding: 0;
    }
    .product-section .lower {
        color: var(--main-white-color);
    }
    .product-section .lower .columns {
        min-height: 250px;
    }
    .product-section .lower .columns .column {
        padding: 25px 30px;
    }
    .product-section .lower h2 {
        font-size: 28px;
	font-family: "Barlow-Medium";
    }
    .product-section .lower p {
        font-size: 12px;
	font-family: "Barlow-ExtraLight";
    }
    .product-section .lower ul {
        display: block;
    }
    .product-section .lower ul li {
        list-style: disc outside none;
        display: list-item;
        margin-left: 1em;
        font-size: 12px;
	font-family: "Barlow-ExtraLight";
    }
    .page-articles-section {
        background-color: var(--main-white-color);
    }
    .page-articles-section #articles {
        min-height: 500px;
	margin-top: 50px;
    }
    .page-articles-section .all-post {
        background-color: var(--main-background-color);
        margin-bottom: 50px;
	padding: 20px;
	height: 60px;
    }
    .page-articles-section .all-post .container .left {
	float: left;
    }
    .page-articles-section .all-post .container .right {
	float: right;
    }
    .page-articles-section .all-post a {
	color: var(--main-white-color);
	font-weight: 400;
	font-size: 15px;
	font-family: "Barlow-ExtraLight";
    }
    .page-articles-section .search-input {
        border-top-style: hidden;
        border-right-style: hidden;
        border-left-style: hidden;
        border-bottom-style: groove;
        border-bottom-color: white;
	position: relative;
	background-color: rgb(255,149,4);
	color: white;
        outline:none;
	position: relative;
        width: 0;
        visibility: hidden;
        transition: 0.3s all;
    }
    .page-articles-section input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
        height: 12px;
        width: 12px;
        display: block;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAn0lEQVR42u3UMQrDMBBEUZ9WfQqDmm22EaTyjRMHAlM5K+Y7lb0wnUZPIKHlnutOa+25Z4D++MRBX98MD1V/trSppLKHqj9TTBWKcoUqffbUcbBBEhTjBOV4ja4l4OIAZThEOV6jHO8ARXD+gPPvKMABinGOrnu6gTNUawrcQKNCAQ7QeTxORzle3+sDfjJpPCqhJh7GixZq4rHcc9l5A9qZ+WeBhgEuAAAAAElFTkSuQmCC);
        background-repeat: no-repeat;
        background-size: 12px;
	color: white;
        cursor: pointer;
	background-color: white;
    }
   .page-articles-section .search-input :focus {
        outline-width: 0;
    }
    .page-articles-section .btn-search:active ~ .search-input {
        width: 175px;
        padding-left: 25px;
        visibility: visible;
    }
    .page-articles-section .btn-search:focus ~ .search-input {
        width: 175px;
        padding-left: 25px;
        visibility: visible;
    }
    .page-articles-section .search-input:hover {
        width: 175px;
        padding-left: 25px;
        visibility: visible;
    }
    .page-articles-section .search-input:focus {
        width: 175px;
        padding-left: 25px;
        visibility: visible;
    }
    .page-articles-section .is-article-box {
        width: 375px;
        border: 1px solid #b8b8b8;
        padding: 0px;
        margin: 35px 10px;
    }
    .page-articles-section h2 {
        font-size: 12px;
        font-weight: 500;
        position: relative;
        left: 15px;
        top: 23px;
        color: var(--main-white-color);
    }
    .page-articles-section .article-box {
        position: relative;
        height: 250px;
    }
    .page-articles-section .article-box .overlay {
        background-color: var(--main-transparent-black-color);
        position: absolute;
        height: 100%;
        width: 100%;
        opacity: 0;
        left: 0;
        top: 0;
        transition: 0.3s all;
    }
    .page-articles-section .article-box .overlay span {
        position: absolute;
        top: 0;
        bottom: -100px;
        left: 0;
        right: 0;
        width: 40%;
        height: 15%;
        margin: auto;
        text-align: center;
        z-index: 10;
        font-size: 18px;
        color: var(--main-white-color);
        border: solid #fff 2px;
        opacity: 0;
        transition: 0.3s all;
    }
    .page-articles-section .article-box:hover .overlay {
        opacity: 1;
    }
    .page-articles-section .article-box:hover .overlay span {
        opacity: 1;
        bottom: 0;
    }
    .page-articles-section .article-content-container {
        display: block;
        text-overflow: ellipsis;
        word-wrap: break-word;
        overflow: hidden;
	margin: 12px;
    }
    .page-articles-section .article-content-container p:nth-child(2) {
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--main-half-black-color);
    }
    .page-articles-section .article-content-container .article-upper {
	display: inline-flex;
    }
    .page-articles-section .article-content-container .article-upper p {
	font-size: 9px;
    }
    .page-articles-section .article-content-container .numberCircle {
        border-radius: 50%;
        width: 25px;
        height: 25px;
        background: #43b2be;
        color: var(--main-white-color);
        text-align: center;
        font: 22px Arial, sans-serif;
        margin-right: 5px;
	display: inline-block;
    }
    .page-articles-section .article-content-container p.date {
        font-size: 9px;
        font-weight: 300;
    }
    .page-articles-section .article-content-container .dates {
        font-size: 12px;
    }
    .page-articles-section .article-content-container h4.title {
        margin-top: 5px;
	margin-bottom: 10px;
        font-size: 20px;
        font-weight: 500;
    }
    .page-articles-section .article-content-container p.content {
	margin-top: 12px;    
    }
    .page-articles-section .article-content-container a:hover,
     h4.title:hover
     p.content:hover {
	color: rgb(210,184,149);
	text-decoration: none;
    }
   .page-articles-section .article-content-container p.counter {
        font-size: 12px;
        font-family: 'Barlow-ExtraLight';
        color: #575757CC;
        font-weight: 400;
    }
    .page-articles-section .articles-detail h3 {
        font-size: 35px;
        font-weight: 600;
        color: var(--main-heading-color);
    }
    .page-articles-section .article-pagination {
        text-align: center;
        z-index: 1000;
        position: relative;
        padding-right: 30px;
        padding-bottom: 20px;
    }
    .page-articles-section .article-pagination span {
        margin-left: 20px;
        background-color: #fff;
        padding: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        color: #000;
        border: 1px solid grey;
	font-weight: 700;
    }
    .page-articles-section .article-pagination a {
        margin-left: 20px;
        background-color: #fff;
        padding: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        color: #000;
        transition: 0.2s all;
        border: 1px solid grey;
    }
    .page-articles-section .article-pagination a:hover {
        margin-left: 20px;
        background-color: #165b8f!important;
        padding: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        color: #fff;
    }
    .page-article-detail-section {
        background-color: var(--main-white-color);
	margin-bottom: 50px;
    }
    .page-article-detail-section .articles-detail {
        border: 1px solid #575757;
    }
    .page-article-detail-section .articles-detail {
        margin-top: 100px;
    }
    .page-article-detail-section .articles-detail .articles-padding {
        padding: 35px 70px;
    }
    .page-article-detail-section h1 {
        color: #575757;
        font-size: 30px;
	font-weight: 600;
    }
   .page-article-detail-section h2 {
        color: #575757;
	font-weight: 500;
    }
    .page-article-detail-section .articles-padding .content {
        margin-top: 10px;
        text-align: justify;
        color: #575757;
	font-weight: 400;
    }
    .page-article-detail-section .articles-related {
        position: relative;
        padding: 0;
	margin-right: 12px;
    }
    .page-article-detail-section .articles-related h3 {
	font-weight: 600;
    }
    .page-article-detail-section .articles-related .content a p {
        font-size: 12px;
        margin-bottom: 0.5em;
        margin-top: 0.5em;
    }
    .page-article-detail-section .articles-related .related-image {
        height: 300px;
        overflow: hidden;
        width: 100%;
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .page-article-detail-section .articles-related hr,
    .related-title hr {
        border: none;
        display: block;
        height: 1px;
        margin: 0;
        width: 100%;
    }
    .page-article-detail-section .articles-related .related-image img {
        height: 300px;
        object-fit: cover;
    }
    .page-article-detail-section .articles-related .related-title {
        color: var(--main-full-black-color);
        padding: 3px 0;
        font-size: 14px;
    }
    .page-article-detail-section .articles-related .related-title:hover {
        color: #00f;
    }
    .page-article-detail-section .articles-related .related-date {
        position: absolute;
        top: 10px;
        right: 25px;
        color: var(--main-white-color);
        background-color: var(--main-half-black-color);
        padding: 8px;
        font-size: 14px;
    }
    .page-article-detail-section .articles-related span {
        color: #575757;
	font-weight: 500;
    }
    .page-article-detail-section .a2a_kit a {
        margin-right: 10px;
    }
    .page-article-detail-section .article-details-p {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-article-detail-section .article-details-p .a2a_button_twitter .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: #000;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
    }
    .page-article-detail-section .article-details-p .a2a_button_twitter:hover .tooltiptext {
        visibility: visible;
    }
    .page-article-detail-section .back-to-list {
	line-height: 20px;
    }
    .page-article-detail-section .back-to-list img {
        float: left;
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }
    .page-career-section {
        min-height: 500px;
        background-color: var(--main-white-color);
    }
    .page-career-section .career-container {
        margin: 50px 0;
        -webkit-transition: height 1s ease-out;
        transition: height 1s ease-out;
        overflow: hidden;
        background-color: var(--main-white-color);
    }
    .page-career-section .career-container .is-8 {
	background-color: var(--main-white-color);
	padding: 50px;
    }
    .page-career-section .career-container ul li {
        display: block;
    }
    .page-career-section .career-container ul:hover {
        display: block;
    }
    .page-career-section .career-container ul li ul {
        display: block;
        color: var(--main-white-color);
        padding: 10px 35px;
	height: 130px;
    }
    .page-career-section .career-container .career-desc ul li {
        list-style: disc;
        display: list-item;
        font-size: 10px;
	font-weight: 300;
    }
    .page-career-section .boxes {
        background-color: var(--main-background-color);
        margin: 5px 10px 5px 0;
	height: 250px;
    }
    .page-career-section .boxes p.career-title {
        color: var(--main-white-color);
        padding: 10px 0 0 18px;
        font-weight: 600;
    }
    .page-career-section .boxes .career-desc p {
        color: var(--main-white-color);
        padding-left: 20px;
        font-size: 10px;
    }
    .page-career-section button.career-read-more {
        border: none;
        width: 130px;
        height: 35px;
        font-size: 12px;
        margin-left: 20px;
	font-family: "Barlow-ExtraLight";
	font-weight: 400;
     }
     .page-career-section button.career-read-more:hover {
	background-color: rgba(0, 0, 0, 0.9);
        color: var(--main-white-color);
	font-weight: 500;
     }
    .page-career-section .btn-show-more {
        color: var(--main-white-color);
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 14px;
        cursor: pointer;
        height: 25px;
        font-weight: 600;
        position: relative;
    }
    .jquery-modal {
        z-index: 10000!important;
        background-color: rgb(219, 148, 33)!important;
    }
    .jquery-modal ul {
        list-style-type: disc !important;
        padding-left: 50px;
    }
    #career-dialog #btn-apply {
        color: rgb(0, 0, 0);
        font-weight: lighter;
        float: left;
        height: 35px;
        width: 125px;
        text-align: center;
        padding-top: 5px;
        background-color: rgb(255,149,4) !important;
	margin-top: 25px;
  }
  #career-dialog #btn-apply:hover {
        background-color: rgba(0, 0, 0, 0.8)!important;
        color: white;
        text-decoration: none;
  }
  #job-desc p, #job-desc ul {
        font-size: 23px;
        font-weight: 400;
        font-family: "Barlow-ExtraLight";
        color: #575757;
  }
  .modal {
    max-width: 700px!important;
    padding: 75px 50px 0px 50px!important;
    border-radius: 0!important;
    -webkit-border-radius: 0!important;
    box-shadow: none!important;
    -webkit-box-shadow: none!important;
    min-height: 418px;
  }
  .btn-close {
    position: absolute;
    bottom: 300px;
    right: -35px;
  }
  #career-dialog {
    width: 100%;
    padding: 35px;
    margin: 20px;
    background: #A4D3EE;
    overflow: visible;
    position: relative;
  }
  .btn-x {
    position: absolute;
    background: none;
    color: white;
    top: -80px;
    right: -40px;
    border: none;
    font-size: 60px;
    text-decoration: none;
  }
  .btn-x:hover {
     color: white;
     text-decoration: none;
   }
  @media only screen and (min-device-width: 350px) and (max-device-width: 540px) {
    .btn-close {
      position: absolute;
      bottom: 250px;
      right: -50px;
    }
    #job-desc p, ul {
      font-size: 15px;
      font-weight: 400;
      font-family: barlow-extralight, barlow, sans-serif;
    }
    .jquery-modal ul {
      list-style-type: disc !important;
      padding-left: 25px;
    } 
  }

  @media only screen and (min-device-width: 541px) and (max-width: 991px) {
    .modal {
      max-width: 700px;
      padding: 25px;
    }
    #career-dialog a {
      color: rgb(0, 0, 0);
      font-weight: lighter;
      float: left;
      height: 35px;
      width: 125px;
      text-align: center;
      padding-top: 7px;
    }
    .btn-close {
      position: absolute;
      bottom: 300px;
      right: -35px;
    }
    #job-desc p, ul {
       font-size: 20px;
       font-weight: 400;
       font-family: barlow-extralight, barlow, sans-serif;

      }
    }
    .page-contact-section {
        position: relative;
        background-color: #fafafa;
        overflow: hidden;
    }
    .page-contact-section .title {
        color: var(--main-background-color);
        text-align: center;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 3rem;
        margin-top: 3rem;
    }
    .page-contact-section .office-container {
        padding-left: 100px;
        padding-bottom: 20px;
    }
    .page-contact-section .office-container .office-branch {
        margin-top: 15px;
        height: 220px;
        width: 100%;
        font-size: 12px;
    }
    .page-contact-section .office-container .office-branch p {
        color: var(--main-transparent-black-color);
    }
    select::-ms-expand {
        display: none;
    }
    .input-sm-select {
        width: 33%;
        height: 38px;
        border: 1px solid #d3d3d3;
    }
    .input-sm-select .option-text {
        font-size: 16px;
        font-weight: 500;
    }
    .page-search-section {
        min-height: 500px;
        background-color: var(--main-white-color);
    }
    .page-search-section .search-description {
        margin-bottom: 25px;
        font-weight: 500;
        font-size: 25px;
    }
    .page-search-section .page-search h1 {
        font-size: 35px;
        margin: 15px 0;
        color: var(--main-background-color);
    }
    .page-search-section .page-search h2 {
        margin: 0;
        color: var(--main-transparent-black-color);
        text-align: left;
        font-weight: 400;
    }
    .page-search-section .page-search h3 {
        font-size: 22px;
        font-weight: 400;
        text-align: left;
        color: var(--main-heading-color);
    }
    .page-search-section .search-item h3 {
        font-size: 30px;
        font-weight: 700;
        text-align: left;
        color: var(--main-transparent-black-color);
    }
    .page-search .search-result {
        margin-left: 10px;
    }
    .page-search-section .c-item {
        min-height: 75px;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 25px;
    }
    .page-search-section .c-item h3 {
        font-size: 14px;
        color: var(--main-full-black-color);
        font-weight: 600;
        margin-top: 10px;
    }
    .page-search-section .not-found {
        text-align: left;
        margin-bottom: 35px;
    }
    .page-search-section p a, .page-search-section p {
        color: var(--main-transparent-black-color);
    }
    .page-search-section a:hover {
        color: var(--main-heading-color);
    }
    .contact-us-section .form-head {
        height: 500px;
        margin-top: 50px;
    }
    .contact-us-section .form-body {
        background-color: var(--main-white-color);
        height: 415px;
        padding: 0 25px;
    }
    .contact-us-section h2 {
        color: var(--main-heading-color);
        font-weight: 600;
        margin: 15px 0;
	font-family: "Helvetica-Bold";
    }
    .contact-us-section h2 .small {
        text-align: center;
        font-size: 25px;
	font-family: "Helvetica-Bold";
    }
    .contact-us-section p {
        color: #575757;
        font-weight: 400;
	font-family: "Arial";
	font-size: 14px;
    }
    .contact-us-section input[type="text"] {
        width: 100%;
        border: 2px solid var(--main-white-color);
        resize: vertical;
        height: 25px;
        border-top-style: hidden;
        border-right-style: hidden;
        border-left-style: hidden;
        border-bottom-style: groove;
        background: 0 0;
    }
    .contact-us-section input[type="text"][name="tb_contact_message"] {
  	height: 75px;
    }
    .contact-us-section input[type="email"] {
        width: 100%;
        border: 2px solid var(--main-white-color);
        resize: vertical;
        height: 25px;
        border-top-style: hidden;
        border-right-style: hidden;
        border-left-style: hidden;
        border-bottom-style: groove;
        background: 0 0;
    }
    .contact-us-section input[type="text"]::placeholder,
    input[type="email"]::placeholder {
        color: var(--main-half-black-color);
        opacity: 1;
        font-size: 10px;
    }
    .contact-us-section input[type="text"]:-ms-input-placeholder,
    input[type="email"]:-ms-input-placeholder {
        color: var(--main-half-black-color);
        font-size: 10px;
    }
    .contact-us-section input[type="text"]::-ms-input-placeholder,
    input[type="email"]::-ms-input-placeholder {
        color: var(--main-half-black-color);
        font-size: 10px;
    }
    .contact-us-section input[type="text"]:hover,
    input[type="email"]:hover {
        outline: 0;
    }
    .contact-us-section input[type="text"]:focus,
    input[type="email"]:focus {
        outline: 0;
    }
    .contact-us-section input[type="text"]::focus,
    input[type="email"]:focus::-webkit-input-placeholder {
        color: var(--main-half-black-color);
    }
    .contact-us-section input[type="text"]::focus,
    input[type="email"]:focus:-moz-placeholder {
        color: var(--main-half-black-color);
    }
    .contact-us-section input[type="text"]::focus,
    input[type="email"]:focus::-moz-placeholder {
        color: var(--main-half-black-color);
    }
    .contact-us-section input[type="text"]::focus,
    input[type="email"]:focus:-ms-input-placeholder {
        color: var(--main-half-black-color);
    }
    .contact-us-section input:required:valid {
        background-color: var(--main-white-color);
        color: var(--main-full-black-color);
    }
    .contact-us-section label {
        padding: 0;
        display: inline-block;
        color: var(--main-half-black-color);
        font-size: 12px;
    }
    .contact-us-section input[type="submit"] {
        background-color: #222;
        color: var(--main-white-color);
        border: none;
        cursor: pointer;
        font-size: 12px;
        width: 115px;
        height: 35px;
        font-weight: 600;
    }
    .contact-us-section input[type="submit"]:hover {
        background-color: var(--main-background-color);
    }
    .contact-us-section .submit {
        text-align: center;
        margin: 25px 0;
    }
    .contact-us-section .error {
        color: red;
	font-size: 10px;
    }
    .index-page .contact-us-section img.img-contact-us {
        height: 570px;
        position: absolute;
	bottom: 211px;
    }
    .page-contact-section .contact-us-section img.img-contact-us {
        height: 570px;
        position: absolute;
	bottom: 554px;
    }
    ::-webkit-scrollbar {
        display: scroll;
    }
    ::-webkit-scrollbar-track {
        background: var(--main-white-color);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--main-white-color);
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--main-white-color);
    }
    .map-container {
        position: absolute;
        margin-top: 80px;
        padding: 0;
    }
    .not-found-section h1 {
        text-align: center;
        margin-top: 100px;
    }
    .not-found-section .boxs {
        height: 100px;
    }
    .container {
        padding-left: 0;
        padding-right: 0;
    }
    .is-fullhd {
        max-width: 1920px !important;
    }
    .wa-button {
        position: fixed;
        bottom: 0;
        right: 0;
        padding: 2em;
        a {
            display: flex;
            place-items: center;
            width: 3rem;
            height: 3rem;
            transition: 200ms;
  
            &:hover {
                transform: scale(1.1);
            }
        }
    }
    .scroll-to-top {
        position: fixed;
        z-index: 10000;
        right: 1rem;
        bottom: 1rem;
        display: none;
        background-color: #eaeae9;
    }
    .scroll-to-top a {
        width: 2.5rem;
        height: 2.1rem;
        color: var(--hover-font-color);
        line-height: 2rem;
        text-align: center;
        font-size: 30px;
    }
    .d-block {
        opacity: 0.8;
        display: block !important;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }
    .btn-spinner {
        color: var(--main-white-color);
        opacity: 0;
        transition: all 1s;
        -webkit-transition: all 1s;
    }
    #snackbar {
        visibility: hidden;
        min-width: 250px;
        margin-left: -125px;
        background-color: #333;
        color: var(--main-white-color);
        text-align: center;
        border-radius: 2px;
        padding: 16px;
        position: fixed;
        z-index: 1000;
        left: 50%;
        bottom: 80px;
        font-size: 16px;
    }
    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }
    @-webkit-keyframes fadein {
        from {
            bottom: 0;
            opacity: 0;
        }
        to {
            bottom: 80px;
            opacity: 1;
        }
    }
    @keyframes fadein {
        from {
            bottom: 0;
            opacity: 0;
        }
        to {
            bottom: 80px;
            opacity: 1;
        }
    }
    @-webkit-keyframes fadeout {
        from {
            bottom: 80px;
            opacity: 1;
        }
        to {
            bottom: 0;
            opacity: 0;
        }
    }
    @keyframes fadeout {
        from {
            bottom: 80px;
            opacity: 1;
        }
        to {
            bottom: 0;
            opacity: 0;
        }
    }
    .animated {
        -webkit-animation-duration: 1.75s;
        animation-duration: 1.75s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
    @-webkit-keyframes customFadeInDown {
        0% {
            opacity: 0;
            -webkit-transform: translateY(-75px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
        }
    }
    @keyframes customFadeInDown {
        0% {
            opacity: 0;
            transform: translateY(-75px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .customFadeInDown {
        -webkit-animation-name: customFadeInDown;
        animation-name: customFadeInDown;
    }
    @-webkit-keyframes customFadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translateY(75px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
        }
    }
    @keyframes customFadeInUp {
        0% {
            opacity: 0;
            transform: translateY(75px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .customFadeInUp {
        -webkit-animation-name: customFadeInUp;
        animation-name: customFadeInUp;
    }
    @-webkit-keyframes customFadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate(-75px, 0);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
        }
    }
    @keyframes customFadeInLeft {
        0% {
            opacity: 0;
            transform: translate(-75px, 0);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .customFadeInLeft {
        -webkit-animation-name: customFadeInLeft;
        animation-name: customFadeInLeft;
    }
    @-webkit-keyframes customFadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translate(75px, 0);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
        }
    }
    @keyframes customFadeInRight {
        0% {
            opacity: 0;
            transform: translate(75px, 0);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .customFadeInRight {
        -webkit-animation-name: customFadeInRight;
        animation-name: customFadeInRight;
    }
    pre {
        background-color: transparent;
    }
    div.ng-dirty.ng-invalid,
    div.ng-touched.ng-invalid,
    input.ng-dirty.ng-invalid,
    input.ng-touched.ng-invalid,
    select.ng-dirty.ng-invalid,
    select.ng-touched.ng-invalid,
    textarea.ng-dirty.ng-invalid,
    textarea.ng-touched.ng-invalid {
        color: var(--main-full-black-color);	
	border-color: #d60000;
        background-color: #f3c5c5;
        border-width: 1px;
    }
}
