@charset "UTF-8";
/*------------------------------------------------------------------
[Table of contents]

1.0 Variables
2.0 Google Fonts
3.0 Set Font-families
4.0 Custom Cursor Styles
5.0 General Styles
6.0 Home Page
7.0 About Page
8.0 Services Page
9.0 Works Page
10.0 Contact Page
11.0 Media Queries

-------------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Variables
--------------------------------------------------------------*/
/*$primary-color: #FF3663;*/
/*$secondary-color: #6c7060;*/
/*--------------------------------------------------------------
2.0 Google Fonts
--------------------------------------------------------------*/
/*To change the fonts, get the font link from (https://www.google.com/fonts) and replace with this line, then update the font-family section below.*/
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&family=Montserrat:wght@300;400;500;700&display=swap');
/*--------------------------------------------------------------
3.0 Set Font-families
--------------------------------------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Atkinson Hyperlegible', sans-serif; }

/*--------------------------------------------------------------
4.0 Custom Cursor Styles
--------------------------------------------------------------*/
.custom-cursor {
  cursor: none;
  --top: 0;
  --left: 0;
  --cursor-width: 30px;
  --color: #000000;
  --blending-mode: normal; }
  .custom-cursor .cursor > div {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .custom-cursor .cursor div, .custom-cursor .cursor img, .custom-cursor .cursor svg {
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    mix-blend-mode: var(--blending-mode); }

/*Cursor 1*/
.cursor-1 .cursor .cursor-el1 {
  width: var(--cursor-width);
  height: var(--cursor-width);
  border: calc(var(--cursor-width)/25) solid var(--color);
  border-radius: 50%;
  top: calc(var(--cursor-width)/-2);
  left: calc(var(--cursor-width)/-2);
  -webkit-transition: all 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: all 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28); }
.cursor-1 .cursor .cursor-el2 {
  width: calc(var(--cursor-width)/5);
  height: calc(var(--cursor-width)/5);
  border-radius: 50%;
  background-color: var(--color);
  top: calc(var(--cursor-width)/-10);
  left: calc(var(--cursor-width)/-10); }
.cursor-1.onlink .cursor .cursor-el1 {
  opacity: 0; }
.cursor-1.onlink .cursor .cursor-el2 {
  opacity: 0; }

/*--------------------------------------------------------------
5.0 General Styles
--------------------------------------------------------------*/
/*Menu*/
.ri-3x {
    font-size: 3em !important;
    display: inline-block;
}
.menu-header {
  z-index: 999;font-size:18px; text-transform: uppercase;
  font-weight: 700;
     }
  .menu-header a:not(.navbar-brand) {
    color: #f5f5f5;
    position: relative; }
    .menu-header a:not(.navbar-brand):before {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 8px;
      width: 0;
      height: 3px;
      background-color: #6c7060;
      -webkit-transition: all 200ms ease-out;
      transition: all 200ms ease-out; }
    .menu-header a:not(.navbar-brand):hover, .menu-header a:not(.navbar-brand):focus {
      color: #878c75; }
      .menu-header a:not(.navbar-brand):hover:before, .menu-header a:not(.navbar-brand):focus:before {
        width: 80px; }
  .menu-header li.active a {
    color: #f17100; }
    .menu-header li.active a:before {
      width: 90%; }
  .menu-header a.navbar-brand {
    color: #666666; }
    .menu-header a.navbar-brand:hover, .menu-header a.navbar-brand:focus {
      color: #f17100; }
  .menu-header .btn:hover {
    cursor: pointer; }
  .menu-header .navbar-toggler {

    border-radius: 5px; }
  .menu-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.primary-color {
  color: #ffffff; }

.primary-bg {
  background-color: #6c7060; }

main, footer {
  background-color: white; }

.image-tag {
  position: absolute;
  bottom: 5px;
  left: 5px;
  mix-blend-mode: hard-light;
  background-color: #6c7060;
  color: white;
  padding: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.arrow-right {
  display: inline-block;
  position: relative; }
  .arrow-right span {
    display: inline-block;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    opacity: 0;
    font-size: 75%;
    text-transform: uppercase;
    font-weight: 500;
    color: #4d4d4d; }
  .arrow-right:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: #4d4d4d;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out; }
  .arrow-right:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-top: 5px solid transparent;
    border-left: 5px solid #4d4d4d;
    border-bottom: 5px solid transparent;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out; }
  .arrow-right:hover:after, .arrow-right:focus:after {
    width: 25px; }
  .arrow-right:hover:before, .arrow-right:focus:before {
    left: 25px; }
  .arrow-right:hover span, .arrow-right:focus span {
    -webkit-transform: translateY(70%);
            transform: translateY(70%);
    opacity: 1; }

.line-before {
  display: block;
  position: relative;
  padding-left: 30px; }
  .line-before:before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #4d4d4d;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

footer a {
  color: #666666; }
  footer a:hover, footer a:focus {
    text-decoration: none;
    color: #6c7060; }
footer ul {
  margin-bottom: 0; }
footer p, footer address, footer a {
  font-size: 0.9em; }
footer .cp {
  border-top: 1px solid #cccccc; }

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #6c7060; }
  .form-control:focus + .input-group-append button {
    border-bottom: 1px solid #6c7060; }

.page-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .page-header .container:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40vh;
    height: 55vh;
    border: 7px solid white; }
  .page-header .container .red-label {
    background-color: #6c7060;
    color: white;
    padding: 5px 10px;
    display: inline-block; }

.cta {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: fixed;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: white; }
  .cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 112, 96, 0.7);
    mix-blend-mode: multiply; }

.overflow-x-hidden {
  overflow-x: hidden; }

.pagination .page-item.active .page-link {
  background-color: #6c7060;
  border-color: #6c7060; }
.pagination .page-link {
  color: #6c7060; }
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  border-radius: 0; }

.client-logo {
  opacity: 0.7; }
  .client-logo:hover, .client-logo:focus {
    opacity: 1; }


/*--------------------------------------------------------------
6.0 Home Page
--------------------------------------------------------------*/
.slide-data {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%; }
  .slide-data .container:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40vh;
    height: 55vh;
    border: 0px solid white; }
  .slide-data .subtitle span {
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
    display: inline-block;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
.slide-data .title-1 h1 {
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  .slide-data .title-2 {
    position: relative;
    display: inline-block; }
.slide-data .title-2 h2 {
      -webkit-transition: all 600ms ease;
      transition: all 600ms ease;
      -webkit-transition-delay: 600ms;
              transition-delay: 600ms;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      color: white;
      display: inline-block;
      padding: 0 10px; }
    .slide-data .title-2:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background-color: #6c7060;
      -webkit-transition: all 600ms ease;
      transition: all 600ms ease; }

.owl-item img {
  -webkit-transition: all 1500ms ease-out;
  transition: all 1500ms ease-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2); }

.owl-item.active {
  z-index: 999; }
  .owl-item.active img {
    -webkit-transform: scale(1);
            transform: scale(1); }
  .owl-item.active .slide-data .subtitle span {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
.owl-item.active .slide-data .title-1 h1 {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
.owl-item.active .slide-data .title-2 h2 {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .owl-item.active .slide-data .title-2:before {
    width: 100%; }

.carousel-navigation {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 9999;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 500;
  font-size: 12px;
  text-align: right; }
  .carousel-navigation > div {
    margin: 10px 0px; }
  .carousel-navigation .line {
    width: 0px;
    height: 1px;
    background-color: #6c7060;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease; }
    .carousel-navigation .line.active {
      width: 25px; }
      .carousel-navigation .line.active + .slide-nav {
        color: #6c7060; }

/*About Section*/
section.about .signature {
  width: 190px; }

/*Projects Section*/
.projects .overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease; }
.projects .image-wrapper {
  overflow: hidden; }
  .projects .image-wrapper:hover .overlay-image, .projects .image-wrapper:focus .overlay-image {
    opacity: 0; }
  .projects .image-wrapper:hover .image-title:before, .projects .image-wrapper:focus .image-title:before {
    width: 100%;
    -webkit-transition-delay: 0;
            transition-delay: 0; }
  .projects .image-wrapper:hover .image-title span, .projects .image-wrapper:focus .image-title span {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-delay: 600ms;
            transition-delay: 600ms; }
.projects .image-title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: white;
  padding: 5px 10px;
  overflow: hidden; }
  .projects .image-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    background-color: #6c7060;
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms; }
  .projects .image-title span {
    display: inline-block;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }

/*Testimonial Section*/
section.testimonial {
  background-image: url("../img/home/background_SWAT_jeep.jpg");
  background-size: 100%;
  background-repeat: no-repeat; }
  section.testimonial .quote-wrapper {
    background-color: white;
    padding: 30px; }
	
section.testimonial .quote-wrapper {
  background-color: white;
  padding: 30px;

  display: flex;
  flex-direction: column;
  min-height: 300px; 
}

section.testimonial .quote-wrapper .author,
section.testimonial .quote-wrapper .quote-footer {
  margin-top: auto;
}


/*Blog Section*/
section.blog .meta span {
  display: inline-block;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease; }
  section.blog .meta span:last-of-type {
    color: #6c7060;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    position: absolute;
    top: 0;
    left: 0; }
section.blog .blog-wrapper:hover .meta span:first-of-type, section.blog .blog-wrapper:focus .meta span:first-of-type {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%); }
section.blog .blog-wrapper:hover .meta span:last-of-type, section.blog .blog-wrapper:focus .meta span:last-of-type {
  -webkit-transform: translateY(0);
          transform: translateY(0); }

/*Contact Section*/
section.contact {
  background-image: url("../img/contact/contact-1440x500.jpg");
  background-size: 100%;
  background-repeat: no-repeat; }
  section.contact a.call {
    color: #6c7060; }
    section.contact a.call:hover, section.contact a.call:focus {
      text-decoration: none; }

/*--------------------------------------------------------------
7.0 About Page
--------------------------------------------------------------*/
.page-about .page-header {
  background-image: url("../img/about/header-1400x650.jpg"); }
.page-about .cta {
  background-image: url("../img/about/cta-1440x850.jpg"); }
.page-about .team .social-media a {
  text-decoration: none; }

/*--------------------------------------------------------------
8.0 Services Page
--------------------------------------------------------------*/
.page-services .page-header {
  background-image: url("../img/services/header-1400x650.jpg"); }
.page-services .cta {
  background-image: url("../img/services/cta-1440x850.jpg"); }
.page-services .packages .package {
  padding: 40px 30px;
  background-color: #f2f2f2; }

/*--------------------------------------------------------------
9.0 Works Page
--------------------------------------------------------------*/
.page-works .page-header {
  background-image: url("../img/projects/header-1400x650.jpg"); }
.page-works .cta {
  background-image: url("../img/projects/cta-1440x850.jpg"); }

/*--------------------------------------------------------------
10.0 Contact Page
--------------------------------------------------------------*/
.page-contact .page-header {
  background-image: url("../img/contact/header-1400x650.jpg"); }
.page-contact .cta {
  background-image: url("../img/contact/cta-1440x850.jpg"); }

/*--------------------------------------------------------------
11.0 Media Queries
--------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .cursor {
    display: none; }

  .menu-header {
  font-family: 'Atkinson Hyperlegible', sans-serif;
    background-color: black;
    height: 58px; }
    .menu-header > .container {
      padding: 0; }
    .menu-header a:not(.navbar-brand):before {
      left: 0 !important; }
    .menu-header a:not(.navbar-brand):hover, .menu-header a:not(.navbar-brand):focus {
      color: white !important; }
    .menu-header li.active a {
      color: white !important; }
    .menu-header .form-control {
      padding-left: 0; }

  nav.navbar {
    background-color: black; }

  section.home {
    padding-top: 58px; }
    section.home .owl-item img {
      min-height: 100vh;
      -o-object-fit: cover;
         object-fit: cover; }
    section.home .owl-item .display-4 {
      font-size: 2.5rem !important; }

  section.testimonial, section.contact {
    background-size: cover; }

  main {
    overflow: hidden !important; } }
/* Override custom cursor */

/*# whatsapp float style */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}
.my-float {
    margin-top: 16px;
}

body {
  cursor: auto !important;
}
.cursor {
  display: none !important;
}
.contact {
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.map-container {
  height: 600px;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.contact .bg-white {
  position: absolute;
  top: 60px; /* jarak dari atas map */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
/* ==== Contact Map & Floating Form Fix ==== 
section.contact {
  background: none !important;
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}*/

.map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact .bg-white {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  max-width: 800px;
  /*margin: 100px auto;*/
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.section-divider {
    /* Pastikan posisi relatif agar elemen di dalamnya bisa diatur */
    position: relative;
    /* Lebar penuh */
    width: 100%;
    /* Mengangkat elemen ke atas (nilai negatif) */
    /* Sesuaikan nilai -50px ini sesuai kebutuhan seberapa tinggi kamu mau mengangkatnya */
    margin-top: -5%; /* Contoh: mengangkat 50 piksel ke atas */
    /* Atau bisa juga pakai transform: translateY(-50px); */
    /* transform: translateY(-50px); */
    /* Pastikan gambar tampil di atas konten berikutnya */
    z-index: 10; /* Berikan z-index yang lebih tinggi */
}

.section-divider img {
    /* Pastikan gambar mengisi lebar penuh dari div .section-divider */
    width: 100%;
    /* Agar gambar tidak terdistorsi, pertahankan aspek rasionya */
    height: auto;
    /* Ini penting jika ada jarak default di bawah gambar */
    display: block;
}

/* Styling for Package Details Section */
.package-list li {
    margin-bottom: 5px;
    /* Memberi jarak atas bawah */
    padding: 3px 0;
}

.package-details .primary-color {
    /* Menggunakan warna primary untuk heading & contact agar serasi */
    color: #6c7060 !important; 
}
/* Menambahkan border di kolom kiri (Harga) */
@media (min-width: 576px) {
    .package-details .col-sm-5.border-right {
        border-right: 1px solid #ccc;
    }
}

/* Membatasi lebar video Google Drive di LightGallery agar tidak Full Width */
.lg-outer .lg-item iframe {
    max-width: 500px !important; /* Ubah angka ini sesuai keinginan (misal 800px) */
    width: 60% !important;       /* Beri jarak kiri-kanan di HP */
    height: 60vh !important;     /* Tinggi iframe (sesuaikan agar tidak gepeng) */
    margin: 0 auto !important;   /* Posisi tengah */
    
    /* Agar vertikal juga tengah */
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;          /* Pemanis: sudut melengkung */
}



/* START MASONRY CSS */
/* --- CSS MASONRY & FILTER (UPDATED 4 KOLOM) --- */
  .masonry-wrapper {
    column-count: 1; /* Default HP: 1 Kolom */
    column-gap: 20px;
  }

  /* Tablet (iPad/Tab): 2 Kolom */
  @media (min-width: 576px) {
    .masonry-wrapper {
      column-count: 2;
    }
  }

  /* Laptop & PC: 4 KOLOM */
  /* Sebelumnya 3, sekarang kita paksa jadi 4 */
  @media (min-width: 992px) {
    .masonry-wrapper {
      column-count: 4; 
    }
  }

  /* Styling Item - Tetap Sama */
  .masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  /* Image Wrapper Styling - Tetap Sama */
  .image-wrapper {
    position: relative;
    cursor: pointer;
  }
  .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  .image-wrapper:hover img {
    transform: scale(1.02);
  }

  /* Play Icon - Tetap Sama */
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    pointer-events: none;
  }
  .image-wrapper:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }

  /* Filter Buttons - Tetap Sama */
  .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .filter-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s;
  }
  .filter-btn:hover, .filter-btn.active {
    color: #000;
  }
  .filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f17100;
  }
  
  /* Animasi Hide/Show - Tetap Sama */
  .masonry-item.hide { display: none; }
  .masonry-item.show { animation: fadeIn 0.5s ease-in-out; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
/* --- CSS HERO IMAGE RESPONSIF (REVISI FIX) --- */
.hero-img-custom {
  width: 100%;
  object-fit: cover;
  height: 25vh !important;       /* Paksa jadi pendek di HP */
  min-height: unset !important;  /* Matikan min-height bawaan template */
}

/* DI LAPTOP/TABLET: Kita tinggikan lagi */
@media (min-width: 768px) {
  .hero-img-custom {
    height: 50vh !important;     /* Tinggi 50% layar di Laptop */
  }
}

.package {
  display: flex;
  flex-direction: column;
  min-height: 520px; /* sesuaikan dikit kalau perlu */
}

.package a.btn {
  margin-top: auto; /* dorong tombol ke bawah */
}

.brand-dewisekar {
  color: #f17100; font-weight:bold;
}
