/*
0 - 650px       :   Phone
650 - 992px     :   Tablet Potrait
650 - 1200px    :   Tablet Landscape
[1200 - 1800px] :   Desktop
1800px +        :   Big Desktop
*/
/* 
$breakpoint argument choices:
- phone
- tab-port
- tab-lans
- big-desktop

ORDER:  Base + typography > general layout + grid > page layout > components

1em = 16px
*/
.color-white {
  color: white;
}
.color-white span {
  margin-left: 10px;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  /* default 16px */
  /* font-size: 10px; */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 62em) {
  body {
    height: 100vh;
  }
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}
input:focus,
textarea:focus,
button:focus,
select:focus,
a:focus {
  color: white;
}

button:focus {
  outline: 0;
}

@media only screen and (max-width: 62em) {
  main:not([page=home]) {
    margin-top: unset;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DIN-Bold.woff", "Roboto";
}

p {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 62em) {
  p {
    font-size: 1.2rem;
  }
}

a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.forDesktop {
  display: block !important;
}
@media only screen and (max-width: 62em) {
  .forDesktop {
    display: none !important;
  }
}

.forDesktop-dflex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media only screen and (max-width: 62em) {
  .forDesktop-dflex {
    display: none !important;
  }
}

.forMobile {
  display: none !important;
}
@media only screen and (max-width: 62em) {
  .forMobile {
    display: block !important;
  }
}

.forMobile-dflex {
  display: none !important;
}
@media only screen and (max-width: 62em) {
  .forMobile-dflex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/* hamburger menu */
#menu-hamburger {
  width: 40px;
  height: 34px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 20;
}

#menu-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.bg_white {
  background-color: white;
}

#menu-hamburger span:nth-child(1) {
  top: 10px;
}

#menu-hamburger span:nth-child(2) {
  width: 100%;
}

#menu-hamburger span:nth-child(4) {
  width: 60%;
  right: 0;
  left: unset;
}

#menu-hamburger span:nth-child(2), #menu-hamburger span:nth-child(3) {
  top: 19px;
}

#menu-hamburger span:nth-child(3) {
  display: none;
}

#menu-hamburger span:nth-child(4) {
  top: 28px;
}

#menu-hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#menu-hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
  width: 30px;
}

#menu-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  display: block;
}

#menu-hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
  display: none;
}

.h-100 {
  height: 100%;
}

.gm-ui-hover-effect {
  border: none !important;
}

.gm-style-iw-d {
  padding: 0 !important;
  overflow: auto !important;
}

.gm-style-iw {
  padding: 0 !important;
}
@media only screen and (max-width: 62em) {
  .gm-style-iw {
    max-width: 334px !important;
  }
}

.gm-ui-hover-effect {
  top: 2px;
  right: -1px;
}

.wrapper-content-gmap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper-content-gmap .left {
  background-color: #ED1C24;
  width: 150px !important;
  height: 150px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper-content-gmap .left img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.wrapper-content-gmap .right {
  padding: 2rem;
}
@media only screen and (max-width: 62em) {
  .wrapper-content-gmap .right {
    padding: 1rem;
  }
}
.wrapper-content-gmap .right h3 {
  font-size: 1.9rem;
  font-family: "Roboto", sans-serif;
  color: #ED1C24;
}
.wrapper-content-gmap .right h4 {
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
@media only screen and (max-width: 62em) {
  .wrapper-content-gmap .right h4 {
    font-size: 1.5rem;
  }
}
.wrapper-content-gmap .right a {
  font-size: 1.6rem;
  line-height: 19px;
  color: #000000;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}
@media only screen and (max-width: 62em) {
  .wrapper-content-gmap .right a {
    font-size: 1.4rem;
  }
}
.wrapper-content-gmap .right a img {
  -o-object-fit: contain;
     object-fit: contain;
}

.bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.modal_thankyou {
  text-align: center;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: none;
}
.modal_thankyou img {
  width: 250px;
}
.modal_thankyou h3 {
  color: white;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  letter-spacing: 0.3px;
}
.modal_thankyou button {
  width: 170px;
  padding: 0.5rem 0;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  background-color: #ED1C24;
  color: white;
  box-shadow: none;
  border: none;
  font-family: "DIN-Bold.woff";
}
@media only screen and (max-width: 62em) {
  .modal_thankyou button {
    font-size: 15px;
    margin: 1rem;
  }
}

.modal_sorry {
  text-align: center;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: none;
}
.modal_sorry img {
  width: 250px;
}
.modal_sorry h3 {
  color: white;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.modal_sorry h4 {
  color: white;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.3px;
}
.modal_sorry button {
  width: 170px;
  padding: 0.5rem 0;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  background-color: #ED1C24;
  color: white;
  box-shadow: none;
  border: none;
  font-family: "DIN-Bold.woff";
}
@media only screen and (max-width: 62em) {
  .modal_sorry button {
    font-size: 15px;
    margin: 1rem;
  }
}

.btn-red, .btn-search-now, .btn-red-djarum {
  transition: 0.5s all linear;
}
.btn-red:hover, .btn-search-now:hover, .btn-red-djarum:hover {
  background-color: #961b1f !important;
}

.btn-blue-djarum {
  transition: 0.5s all linear;
}
.btn-blue-djarum:hover {
  background-color: #296e9b !important;
}

.search_form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 9999;
  display: none;
}
.search_form.active {
  display: block;
}
.search_form .btn-close-search {
  position: absolute;
  top: 33px;
  right: 33px;
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
}
.search_form input {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  font-size: 2rem;
  color: white;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-bottom: 1px solid white;
  font-family: "DIN-Bold.woff";
}
.search_form input::-moz-placeholder {
  color: white;
  font-size: 2rem;
  font-family: "DIN-Bold.woff";
}
.search_form input:-ms-input-placeholder {
  color: white;
  font-size: 2rem;
  font-family: "DIN-Bold.woff";
}
.search_form input::placeholder {
  color: white;
  font-size: 2rem;
  font-family: "DIN-Bold.woff";
}
.search_form input:focus {
  outline: none;
}

@font-face {
  font-family: "DIN-Bold.woff";
  src: url("/fonts/DINCondensed-Bold.woff") format("woff");
}
footer {
  padding: 4rem 6.7rem;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 62em) {
  footer {
    padding: 2rem;
  }
}
footer .left {
  width: 50%;
  padding-right: 20rem;
  padding-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 62em) {
  footer .left {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
footer .left .get {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 62em) {
  footer .left .get {
    text-align: center;
  }
}
footer .left .get h3 {
  color: white;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  margin-right: 8rem;
  margin-bottom: 0;
}
footer .left a {
  color: white;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin-bottom: 0;
  text-decoration: none;
  font-family: "DIN-Bold.woff", "Roboto";
}
footer .left a span {
  margin-left: 1rem;
}
footer .left .kretek {
  margin-bottom: 1.5rem;
}
footer .left p {
  color: white;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  font-weight: 300;
}
@media only screen and (max-width: 62em) {
  footer .left p {
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.2px;
  }
}
footer .left .copyright {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.2px;
  color: white;
}
footer .left .term {
  padding-left: 0;
  margin-bottom: 2rem;
}
footer .left .term li {
  list-style: none;
  display: inline-block;
  margin-right: 1rem;
}
footer .left .term li a {
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  text-decoration: none;
}
footer .right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
footer .right ul {
  margin-bottom: 0;
  padding-left: 0;
}
footer .right ul li {
  list-style: none;
}
footer .right ul li:not(:last-child) {
  margin-bottom: 0rem;
}
footer .right ul li a {
  font-family: "DIN-Bold.woff", "Roboto";
  text-decoration: none;
  color: white;
  font-size: 2.2rem;
  line-height: 31px;
  letter-spacing: 0.2px;
  position: relative;
}
footer .right ul li a:hover::before {
  width: 80%;
}
footer .right ul li a:before {
  position: absolute;
  content: "";
  width: 0%;
  background-color: #ED1C24;
  height: 20px;
  bottom: 0;
  z-index: -1;
  transition: 0.1s all ease-in;
}
footer .right ul li p {
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  color: white;
}
footer .copyright {
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.2px;
  color: white;
}
@media only screen and (max-width: 62em) {
  footer .copyright {
    text-align: center;
  }
}

menu {
  padding: 0 4rem;
  background-color: #111114;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  min-height: 80px;
  z-index: 99;
}
@media only screen and (max-width: 62em) {
  menu {
    padding: 0 2rem;
  }
}
menu img {
  -o-object-fit: contain;
     object-fit: contain;
}
menu a img {
  width: 242px;
}

.s1 {
  position: relative;
  height: 530px;
  background-color: black;
}

.bred {
  position: absolute;
  top: -63px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  height: 530px;
}
.bred .pl {
  position: absolute;
  top: 0;
  left: -495px;
  height: 100%;
}
.bred .pl .hd {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 441px;
}
.bred .nm {
  text-align: center;
  position: absolute;
  top: 4.5rem;
  right: 3rem;
  padding-top: 2rem;
}
.bred .nm img {
  margin-bottom: 4rem;
}
.bred .quote {
  font-size: 2rem;
  line-height: 2rem;
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
}
.bred .name {
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin-bottom: 0.5rem;
}
.bred .web {
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 1.8rem;
  line-height: 1.8rem;
}
.bred .ct {
  position: absolute;
  left: 0;
  top: 0;
  width: 427px;
}
.bred .ct .desc {
  text-transform: uppercase;
  padding-top: 9rem;
  padding-left: 2rem;
  border-left: 1px solid white;
  margin-top: 3rem;
}
.bred .ct .desc p {
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 3.2rem;
  line-height: 4.5rem;
  margin-bottom: 2rem;
}
.bred .ct .btn-testimonial {
  margin-left: 2rem;
  font-family: "DIN-Bold.woff", "Roboto";
  background-color: white;
  color: #ED1C24;
  padding: 1rem 4rem;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.6rem;
}

.forDesktopf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 62em) {
  .forDesktopf {
    display: none;
  }
}

.bredm {
  margin-top: 8rem;
  padding: 8rem 4rem 8rem 4rem;
  position: relative;
  overflow: hidden;
}
.bredm .aksen-bredm {
  position: absolute;
  right: -6rem;
  bottom: 16rem;
  z-index: 2;
  width: 240px;
}
.bredm .bg-bredm {
  position: absolute;
  top: 0;
  right: 2rem;
  z-index: 2;
}
.bredm .nm {
  text-align: center;
  position: absolute;
  top: 3rem;
  right: 3rem;
}
.bredm .nm img {
  margin-bottom: 2rem;
}
.bredm .nm .quote {
  font-size: 2rem;
  line-height: 2rem;
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
}
.bredm .nm .name {
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin-bottom: 0.5rem;
}
.bredm .nm .web {
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 1.8rem;
  line-height: 1.8rem;
}
.bredm .ct {
  position: relative;
  z-index: 3;
}
.bredm .ct .desc {
  padding-top: 8rem;
  margin-top: 3rem;
}
.bredm .ct .desc p {
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 4rem;
  line-height: 4.4rem;
  margin-bottom: 4rem;
  text-transform: uppercase;
}
.bredm .ct .btn-testimonial {
  width: 100%;
  font-family: "DIN-Bold.woff", "Roboto";
  background-color: white;
  color: #ED1C24;
  padding: 1rem 4rem;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-align: center;
}

header {
  margin-top: 80px;
  background-color: black;
  position: relative;
}
@media only screen and (max-width: 62em) {
  header {
    height: unset;
  }
}
header .header_slider {
  height: 100%;
  overflow: hidden;
}
header .header_slider .slick-list,
header .header_slider .slick-track {
  height: 100%;
}
header .header_slider .slick-slide > div {
  height: 100%;
}
header .header_slider_item {
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 62em) {
  header .header_slider_item {
    padding: 0;
  }
}
header .header_slider_item .text-banner {
  color: white;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  transition: top 500ms linear;
  width: 100%;
}
@media only screen and (max-width: 62em) {
  header .header_slider_item .text-banner {
    width: 80%;
  }
}
header .header_slider_item .text-banner h3 {
  font-size: 4rem;
  line-height: 4rem;
}
@media only screen and (max-width: 62em) {
  header .header_slider_item .text-banner h3 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 23.44em) {
  header .header_slider_item .text-banner h3 {
    font-size: 2.3rem !important;
    line-height: 2.3rem !important;
  }
}
header .header_slider_item .text-banner h2 {
  font-size: 19rem;
  line-height: 19rem;
}
@media only screen and (max-width: 62em) {
  header .header_slider_item .text-banner h2 {
    font-size: 8rem;
    line-height: 8rem;
  }
}
@media only screen and (max-width: 23.44em) {
  header .header_slider_item .text-banner h2 {
    font-size: 4rem !important;
    line-height: 4rem !important;
  }
}
header .header_slider_item .text-banner h2, header .header_slider_item .text-banner h3 {
  text-align: center;
  font-family: "DIN-Bold.woff", "Roboto";
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(rgba(255, 255, 255, 0.5)));
  background: -o-linear-gradient(top, #FFF 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header .header_slider_item .text-banner.active {
  opacity: 1;
  top: 30%;
}
header .header_slider_item .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(15px);
  transition: 500ms cubic-bezier(1, 0.04, 0.355, 1) transform, 3000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) -webkit-clip-path;
  transition: 500ms cubic-bezier(1, 0.04, 0.355, 1) transform, 3000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) clip-path;
  transition: 500ms cubic-bezier(1, 0.04, 0.355, 1) transform, 3000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) clip-path, 3000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) -webkit-clip-path;
  transform: translateX(100%);
  opacity: 0;
  position: relative;
  z-index: 3;
}
header .header_slider_item .bg.active {
  transform: translateX(0);
  filter: blur(0);
  opacity: 1;
}
@media only screen and (max-width: 62em) {
  header .header_slider_item .bg {
    transform: translateY(-51px);
  }
}
header .header_slider_item .bgprev_wrapper {
  padding-left: 13.4rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
header .header_slider_item .bg_prev {
  position: relative;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  transition: all 500ms linear;
  transform: scale(1.2);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  background-color: #000000;
}
header .header_slider_item .bg_prev.active {
  transform: scale(1);
  filter: blur(0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
}
header .header_slider_item .img_on_bg {
  position: absolute;
  width: 540px;
  height: 435px;
  left: 43px;
  top: 123px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 4;
  opacity: 0;
  transition: opacity 300ms linear, top 500ms linear, transform 500ms linear;
}
@media only screen and (max-width: 62em) {
  header .header_slider_item .img_on_bg {
    width: 316px;
    left: 50%;
    top: 215px;
    -o-object-fit: contain;
       object-fit: contain;
    transform: translateX(-50%);
  }
}
header .header_slider_item .img_on_bg.active {
  opacity: 1;
  top: 53px;
}
@media only screen and (max-width: 62em) {
  header .header_slider_item .img_on_bg.active {
    top: 229px;
  }
}
header .header_slider_item .img_on_bg.deactive {
  opacity: 0;
  transform: translateY(20%) !important;
}
header .box_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 825.32px;
  height: 330px;
  position: absolute;
  bottom: 0;
  right: 8rem;
}
@media only screen and (max-width: 62em) {
  header .box_banner {
    flex-direction: column;
    position: relative;
    z-index: 10;
    bottom: 0;
    right: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    height: 500px;
    padding: 4rem;
  }
}
header .box_banner .left {
  width: 40%;
}
@media only screen and (max-width: 62em) {
  header .box_banner .left {
    width: 100%;
  }
}
header .box_banner .left img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 62em) {
  header .box_banner .left img {
    height: 180px;
  }
}
header .box_banner .right {
  width: 60%;
  background-color: #ED1C24;
  padding: 5.4rem;
}
@media only screen and (max-width: 62em) {
  header .box_banner .right {
    width: 100%;
    padding: 2.5rem;
  }
}
header .box_banner .right h3 {
  color: white;
  font-size: 2.7rem;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 62em) {
  header .box_banner .right h3 {
    line-height: 25px;
    font-size: 1.9rem;
  }
}
header .follow_vk {
  position: absolute;
  right: 2rem;
  top: 4%;
}
@media only screen and (max-width: 62em) {
  header .follow_vk {
    top: 4%;
  }
}
header .slide-indicator {
  position: absolute;
  right: 8rem;
  bottom: 155px;
}
@media only screen and (max-width: 62em) {
  header .slide-indicator {
    top: 15%;
  }
}
header .slide-indicator ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  padding-right: 2rem;
  padding-top: 4rem;
}
@media only screen and (max-width: 62em) {
  header .slide-indicator ul {
    padding-right: 1rem;
    padding-top: 2rem;
  }
}
header .slide-indicator ul li {
  color: #ffffffab;
  list-style: none;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 1.8rem;
  line-height: 1.9rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #4D4D4D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 250px;
  cursor: pointer;
}
header .slide-indicator ul li:not(:last-child) {
  margin-right: 4rem;
}
header .slide-indicator ul li .nm {
  font-size: 4rem;
  line-height: 4rem;
  margin-right: 2rem;
}
header .slide-indicator ul li .dsc {
  text-transform: uppercase;
}
header .slide-indicator ul li.active {
  color: white;
}
@media only screen and (max-width: 62em) {
  header .slide-indicator ul li {
    font-size: 1.5rem;
  }
}

.desc-hm {
  color: #999999;
  position: absolute;
  bottom: 180px;
  right: 0;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 4rem;
}
.desc-hm .nm {
  font-size: 4rem;
  line-height: 4rem;
  margin-right: 2rem;
  font-family: "DIN-Bold.woff", "Roboto";
}
.desc-hm .dsc {
  text-transform: uppercase;
  font-size: 2rem;
  font-family: "DIN-Bold.woff", "Roboto";
  margin-right: 1rem;
}
@media only screen and (max-width: 23.44em) {
  .desc-hm .dsc {
    font-size: 1.6rem !important;
  }
}
.desc-hm img {
  -o-object-fit: contain;
     object-fit: contain;
}

.menu__showcase {
  padding: 4rem;
  background-color: #111114;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  transition: 0.5s all ease-in;
}
@media only screen and (max-width: 62em) {
  .menu__showcase {
    padding: 3rem;
    padding-bottom: 7rem;
  }
}
.menu__showcase .btn-close {
  opacity: 1;
}
.menu__showcase .btn-close:hover {
  opacity: 1;
}
.menu__showcase.show-menu {
  right: 0%;
}
.menu__showcase .box {
  border: 1px solid white;
  padding: 4rem;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 62em) {
  .menu__showcase .box {
    padding-top: 13rem;
  }
}
.menu__showcase .box .btn-close {
  position: absolute;
  top: 33px;
  right: 33px;
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.menu__showcase .box ul {
  padding: 0;
  margin: 0;
}
.menu__showcase .box ul li {
  list-style: none;
  margin-bottom: 1.5rem;
}
.menu__showcase .box ul li a {
  text-decoration: none;
  font-size: 26px;
  line-height: 28px;
  letter-spacing: 0.3px;
  color: white;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .menu__showcase .box ul li a {
    font-size: 21px;
    line-height: 21px;
  }
}
.menu__showcase .box ul li a:hover::before {
  width: 80%;
}
.menu__showcase .box ul li a:before {
  position: absolute;
  content: "";
  width: 0%;
  background-color: #ED1C24;
  height: 20px;
  bottom: 0;
  z-index: -1;
  transition: 0.1s all ease-in;
}
.menu__showcase .box .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 62em) {
  .menu__showcase .box .lang {
    justify-content: space-between;
    align-items: center;
  }
}
.menu__showcase .box .lang a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.3px;
  font-family: "DIN-Bold.woff", "Roboto";
}
.menu__showcase .box .lang .lang-init {
  color: #ED1C24;
}
.menu__showcase .box .lang .lang-ind {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 62em) {
  .menu__showcase .box .lang .lang-ind {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
}
.menu__showcase .box .lang p {
  color: white;
  margin-bottom: 0;
  font-family: "DIN-Bold.woff", "Roboto";
  margin: 0 1rem;
}
.menu__showcase .box .lang .btn-search {
  margin-left: 2.5rem;
  width: 19px;
  height: 19px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
@media only screen and (max-width: 62em) {
  .menu__showcase .box .lang .btn-search {
    width: 16px;
  }
}

.confirmation__wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.685);
}
.confirmation__wrapper .confirmation {
  width: 55%;
  height: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 62em) {
  .confirmation__wrapper .confirmation {
    width: 90%;
    height: 45%;
  }
}
.confirmation__wrapper .confirmation img {
  width: 100%;
  height: 100%;
}
.confirmation__wrapper .confirmation .box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 62em) {
  .confirmation__wrapper .confirmation .box {
    width: 100%;
    padding: 1rem;
  }
}
.confirmation__wrapper .confirmation .box h3 {
  color: white;
  font-size: 32px;
  text-align: center;
  line-height: 38px;
  letter-spacing: 0.3px;
  margin-bottom: 5rem;
  z-index: 2;
}
@media only screen and (max-width: 62em) {
  .confirmation__wrapper .confirmation .box h3 {
    font-size: 23px;
    line-height: 28px;
  }
}
.confirmation__wrapper .confirmation .box h4 {
  font-size: 26px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.3px;
  color: white;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 62em) {
  .confirmation__wrapper .confirmation .box h4 {
    line-height: 14px;
    text-align: center;
  }
}
.confirmation__wrapper .confirmation .box .btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.confirmation__wrapper .confirmation .box .btn_wrapper button {
  width: 170px;
  padding: 0.5rem 0;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  background-color: #ED1C24;
  color: white;
  box-shadow: none;
  border: none;
  font-family: "DIN-Bold.woff", "Roboto";
  transition: 0.5s all linear;
}
.confirmation__wrapper .confirmation .box .btn_wrapper button:hover {
  background-color: #961b1f !important;
}
@media only screen and (max-width: 62em) {
  .confirmation__wrapper .confirmation .box .btn_wrapper button {
    font-size: 15px;
    margin: 1rem;
  }
}
.v-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

main[page=home] {
  background-color: #111114;
}
@media only screen and (max-width: 62em) {
  main[page=home] {
    padding-top: 4rem;
  }
}
main[page=home] .smoke_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}
@media only screen and (max-width: 62em) {
  main[page=home] .smoke_bg {
    top: 1%;
  }
}
main[page=home] .smoke_bg img {
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotateY(180deg);
  width: 100%;
  filter: opacity(0.2);
}
main[page=home] .section__first {
  padding-left: 13.4rem;
  padding-right: 8.4rem;
  padding-bottom: 17rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 4rem;
  }
}
main[page=home] .section__first .title__sf {
  margin-bottom: 2rem;
  position: relative;
}
main[page=home] .section__first .title__sf h2 {
  font-size: 6.5rem;
  line-height: 60px;
  color: white;
  margin-bottom: 0;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .title__sf h2 {
    font-size: 4rem;
    line-height: 40px;
    letter-spacing: 0.2px;
  }
}
main[page=home] .section__first .title__sf h2 span {
  color: #ED1C24;
}
main[page=home] .section__first .box__sf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .box__sf {
    flex-direction: column;
  }
}
main[page=home] .section__first .box__sf .left {
  width: 42%;
  height: 490px;
  position: relative;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .box__sf .left {
    width: 100%;
    height: unset;
  }
}
main[page=home] .section__first .box__sf .left .box_red {
  background-color: #ED1C24;
  width: 259px;
  height: 280px;
  position: absolute;
  right: 0;
  bottom: -160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-right: 4rem;
  text-align: end;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .box__sf .left .box_red {
    width: 262px;
    bottom: 0px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
main[page=home] .section__first .box__sf .left .box_red h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .box__sf .left .box_red h4 {
    font-size: 1.4rem;
  }
}
main[page=home] .section__first .box__sf .left .box_red p {
  margin-bottom: 0;
  color: white;
}
main[page=home] .section__first .box__sf .left .box_red a {
  color: white;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 2.8rem;
  line-height: 34px;
}
main[page=home] .section__first .box__sf .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .box__sf .left img {
    height: 220px;
  }
}
main[page=home] .section__first .box__sf .right {
  width: 58%;
  height: auto;
  background-color: black;
  padding: 4.1rem;
  transform: translateX(-4rem);
  position: relative;
  top: 8rem;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .box__sf .right {
    width: 100%;
    padding: 2rem;
    transform: unset;
    top: unset;
    position: unset;
  }
}
main[page=home] .section__first .box__sf .right .caption {
  padding: 4.1rem;
  border: 1px solid #313131;
  margin-bottom: 4rem;
  max-height: 400px;
  overflow: auto;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .box__sf .right .caption {
    padding: 2rem;
    max-height: 225px;
  }
}
main[page=home] .section__first .box__sf .right .caption h3 {
  color: white;
  font-size: 2.4rem;
  line-height: 34px;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__first .box__sf .right .caption h3 {
    font-size: 1.6rem;
    line-height: 26px;
  }
}
main[page=home] .section__first .box__sf .right .caption h3.rus-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
main[page=home] .section__first .box__sf .right .caption .kutip-l {
  display: inline-block;
  margin-bottom: 4rem;
}
main[page=home] .section__first .box__sf .right .caption .kutip-r {
  margin-top: 4rem;
}
main[page=home] .section__first .box__sf .right .read_all_testimonials {
  background-color: #ED1C24;
  color: white;
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  font-family: "DIN-Bold.woff", "Roboto";
  padding: 0.5rem;
  text-align: center;
  transition: 0.5s all linear;
}
main[page=home] .section__first .box__sf .right .read_all_testimonials:hover {
  background-color: #961b1f;
}
main[page=home] .section__first .box__sf .right .video_yt {
  margin-top: 8rem;
}
main[page=home] .section__second {
  overflow: hidden;
  padding: 5rem 0;
  position: relative;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second {
    padding-top: 4rem;
    padding-bottom: 0;
  }
}
main[page=home] .section__second .titleM {
  color: white;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.2px;
  text-align: center;
}
main[page=home] .section__second .v-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  z-index: 1;
  width: 100%;
}
main[page=home] .section__second .slider__products {
  padding-left: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 5;
  padding-top: 8rem;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second .slider__products {
    padding: 4rem;
  }
}
main[page=home] .section__second .slider__products .slider__products-item {
  padding-top: 5rem;
}
main[page=home] .section__second .slider__products .slider__products-item:hover .box .inbox .product {
  transform: translate(-50%, -50%) scale(1.1);
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second .slider__products .slider__products-item {
    padding-top: 0;
  }
}
main[page=home] .section__second .slider__products .slider__products-item .item__wrapper {
  width: 900px;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second .slider__products .slider__products-item .item__wrapper {
    width: unset;
  }
}
main[page=home] .section__second .slider__products .slider__products-item .box {
  height: 510px;
  width: 600px;
  position: relative;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second .slider__products .slider__products-item .box {
    width: 100%;
    height: 340px;
    margin-bottom: 4rem;
  }
}
main[page=home] .section__second .slider__products .slider__products-item .box .inbox {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
main[page=home] .section__second .slider__products .slider__products-item .box .bg {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main[page=home] .section__second .slider__products .slider__products-item .box .title {
  font-size: 5.3rem;
  line-height: 64px;
  letter-spacing: 0.2px;
  color: white;
  position: absolute;
  top: -40px;
  left: 80px;
  z-index: 2;
}
main[page=home] .section__second .slider__products .slider__products-item .box .product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.4s all ease;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second .slider__products .slider__products-item .box .product {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main[page=home] .section__second .slider__products .slider__products-item .box .description {
  width: 350px;
  height: 358px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -188.5px;
  border: 1px solid #999999;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second .slider__products .slider__products-item .box .description {
    padding: 1rem;
  }
}
main[page=home] .section__second .slider__products .slider__products-item .box .description p {
  color: white;
  font-size: 19px;
  line-height: 22px;
  letter-spacing: 0.2px;
  color: #999999;
  margin-bottom: 4rem;
}
main[page=home] .section__second .slider__products .slider__products-item .box .description .to_all_products {
  background-color: #ED1C24;
  color: white;
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  font-family: "DIN-Bold.woff", "Roboto";
  padding: 0.5rem;
  text-align: center;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second .slider__products .slider__products-item .description {
    padding: 0.5rem;
  }
}
main[page=home] .section__second .slider__products .slider__products-item .description h3 {
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.2px;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}
main[page=home] .section__second .slider__products .slider__products-item .description p {
  color: #999999;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.2px;
  margin-bottom: 3rem;
}
main[page=home] .section__second .slider__products .slider__products-item .description .to_all_products {
  background-color: #ED1C24;
  color: white;
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  font-family: "DIN-Bold.woff", "Roboto";
  padding: 0.5rem;
  text-align: center;
}
main[page=home] .section__second .arrow_wrapper {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s all ease;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  display: none;
  z-index: 5;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__second .arrow_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
main[page=home] .section__second .arrow_wrapper img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
main[page=home] .section__second .asep-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
main[page=home] .section__third {
  padding-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: black;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__third {
    flex-direction: column;
    background-color: #1F1F1F;
  }
}
main[page=home] .section__third > .left {
  width: 35%;
  background-color: black;
  padding: 8rem 8rem 0 8rem;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__third > .left {
    width: 100%;
    padding: 4rem;
    background-color: #1F1F1F;
  }
}
main[page=home] .section__third > .left .icon-loc {
  margin-bottom: 3.5rem;
}
main[page=home] .section__third > .left h3 {
  font-size: 4.3rem;
  line-height: 4.3rem;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 6.6rem;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__third > .left h3 {
    font-size: 40px;
    line-height: 48px;
  }
}
main[page=home] .section__third > .left form select {
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: white;
  padding: 1.8rem;
  margin-bottom: 1rem;
}
main[page=home] .section__third > .left form select option {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: black;
}
main[page=home] .section__third > .left form .form-select {
  background-image: url("https://djarum.herokuapp.com/images/arrowbt.png");
  background-position: right 2rem center;
}
main[page=home] .section__third > .left .btn-search-now {
  background-color: #ED1C24;
  color: white;
  box-shadow: none;
  border: none;
  width: 100%;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 2rem;
  padding: 0.5rem 0;
  margin-top: 1rem;
}
main[page=home] .section__third .right {
  width: 65%;
  padding-right: 8rem;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__third .right {
    width: 100%;
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__third .right #map {
    height: 500px !important;
  }
}
main[page=home] .section__fourth {
  padding: 8rem;
  background-color: black;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__fourth {
    padding: 4rem;
  }
}
main[page=home] .section__fourth .see-all {
  font-family: "DIN-Bold.woff", "Roboto";
}
main[page=home] .section__fourth .see-all:hover {
  color: white;
}
main[page=home] .section__fourth .sf-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
main[page=home] .section__fourth .sf-header h2 {
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 53px;
  color: white;
  line-height: 64px;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__fourth .sf-header h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
main[page=home] .section__fourth .sf-header a {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #ED1C24;
  margin-bottom: 0;
  text-decoration: none;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__fourth .inspiration__wrapper {
    flex-wrap: wrap;
  }
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box {
  width: 401px;
  height: 355px;
  position: relative;
  overflow: hidden;
  transition: 0.4s all ease-in;
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box:hover img {
  transform: scale(1.2);
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(29, 29, 29, 0.342);
  z-index: 1;
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box .ct {
  position: relative;
  height: 100%;
  z-index: 2;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__fourth .inspiration__wrapper .ins-box {
    width: 100%;
  }
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s all;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__fourth .inspiration__wrapper .ins-box img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box .box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  border: 1px solid white;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box .box span {
  font-size: 9.34406px;
  line-height: 11px;
  letter-spacing: 0.373762px;
  font-family: "DIN-Bold.woff";
  color: white;
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box .box h2 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: white;
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box .box p {
  font-size: 13.0817px;
  line-height: 15px;
  letter-spacing: 0.373762px;
  color: white;
  margin-bottom: 4rem;
}
main[page=home] .section__fourth .inspiration__wrapper .ins-box .box a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ED1C24;
  text-decoration: none;
  color: white;
  padding: 1rem;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.373762px;
  display: block;
  font-family: "DIN-Bold.woff", "Roboto";
  line-height: 1em;
}
@media only screen and (max-width: 62em) {
  main[page=home] .section__fourth .inspiration__wrapper .ins-box .box a {
    font-size: 18.6881px;
    line-height: 22px;
  }
}
main[page=home] .section__fourth .to-articles {
  background-color: #ED1C24;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: white;
  display: block;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DIN-Bold.woff", "Roboto";
}

main[page=about] {
  margin-top: 80px;
  position: relative;
  background-color: #111114;
}
main[page=about] .bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
main[page=about] .section__first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
main[page=about] .section__first .left-1 {
  width: 30%;
}
main[page=about] .section__first .left-1 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main[page=about] .section__first .left-1 h2 {
  position: absolute;
  left: 125px;
  top: 164px;
  font-weight: bold;
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: white;
}
main[page=about] .section__first .right-1 {
  width: 70%;
  padding: 8rem;
}
main[page=about] .section__first .right-1 h5 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 4rem;
}
main[page=about] .section__first .right-1 p {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 2rem;
}
main[page=about] .section__first .left-2 {
  width: 70%;
  padding: 0rem 8rem;
}
main[page=about] .section__first .left-2 h2 {
  color: white;
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
  margin-bottom: 4rem;
}
main[page=about] .section__first .left-2 h5 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 4rem;
}
main[page=about] .section__first .left-2 p {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 2rem;
}
main[page=about] .section__first .right-2 {
  width: 30%;
  position: relative;
}
main[page=about] .section__first .right-2 h2 {
  position: absolute;
  left: 125px;
  top: 164px;
  font-weight: bold;
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: white;
}
main[page=about] .section__first .right-2 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 600px;
}
main[page=about] .section__first_m {
  position: relative;
  z-index: 2;
}
main[page=about] .section__first_m .about-1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}
main[page=about] .section__first_m .about-1 img {
  width: calc(100% - 8rem);
}
main[page=about] .section__first_m .about-1 .box__wrapper {
  position: absolute;
  bottom: -1px;
  z-index: 10;
  left: 0;
  width: calc(100% - 8rem);
}
main[page=about] .section__first_m .about-1 .box__wrapper h2 {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.2px;
  color: white;
  padding-left: 4rem;
}
main[page=about] .section__first_m .about-1 .box__wrapper .box {
  background-color: #111114;
  padding: 4rem 4rem 2rem 4rem;
}
main[page=about] .section__first_m .about-1 .box__wrapper .box p, main[page=about] .section__first_m .about-1 .box__wrapper .box h5 {
  color: #999999;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}
main[page=about] .section__first_m .about-1-1 {
  padding: 4rem;
  background-color: #111114;
}
main[page=about] .section__first_m .about-1-1 p {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #999999;
}
main[page=about] .section__first_m .about-2 {
  background-color: #111114;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main[page=about] .section__first_m .about-2 img {
  width: 130px;
}
main[page=about] .section__first_m .about-2 h2 {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.2px;
  color: white;
  padding-left: 2rem;
  padding-top: 2rem;
  padding-right: 2rem;
}
main[page=about] .section__first_m .about-2-1 {
  padding: 4rem;
  background-color: #111114;
  transform: translateY(-120px);
  margin-left: 4rem;
}
main[page=about] .section__first_m .about-2-1 p, main[page=about] .section__first_m .about-2-1 h5 {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #999999;
}

main[page=kretekCollection] {
  margin-top: 80px;
}
@media only screen and (min-width: 90em) {
  main[page=kretekCollection] {
    height: 100vh;
  }
}
main[page=kretekCollection] .section__first {
  background-color: #111114;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 62em) {
  main[page=kretekCollection] .section__first .slick-slide {
    margin: 0 10px;
  }
  main[page=kretekCollection] .section__first .slick-list {
    padding: 0 20% 0 0 !important;
  }
}
@media only screen and (min-width: 90em) {
  main[page=kretekCollection] .section__first {
    height: 100%;
  }
}
main[page=kretekCollection] .section__first h2 {
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 62em) {
  main[page=kretekCollection] .section__first h2 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.2px;
  }
}
main[page=kretekCollection] .section__first .product__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  height: 100%;
}
main[page=kretekCollection] .section__first .product__item a {
  text-decoration: none;
}
main[page=kretekCollection] .section__first .tab-pane {
  position: relative;
}
main[page=kretekCollection] .section__first .left {
  width: 47%;
  padding: 8rem;
}
@media only screen and (max-width: 62em) {
  main[page=kretekCollection] .section__first .left {
    width: 100%;
    min-height: 100vh;
    padding: 4rem;
  }
}
main[page=kretekCollection] .section__first .left .arrow_wrapper {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s all ease;
  width: calc(100% + 35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  display: none;
}
@media only screen and (max-width: 62em) {
  main[page=kretekCollection] .section__first .left .arrow_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
main[page=kretekCollection] .section__first .left .arrow_wrapper img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
main[page=kretekCollection] .section__first .left .arrow img {
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
  transform: rotate(90deg);
}
main[page=kretekCollection] .section__first .left img {
  width: 440px;
  margin-bottom: 4rem;
}
main[page=kretekCollection] .section__first .left .cp {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.2px;
  color: #999999;
  margin-bottom: 4rem;
}
main[page=kretekCollection] .section__first .left form select {
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: white;
  padding: 1.8rem;
  margin-bottom: 1rem;
}
main[page=kretekCollection] .section__first .left form select option {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: black;
}
@media only screen and (max-width: 62em) {
  main[page=kretekCollection] .section__first .left .cs-kretek {
    width: unset;
  }
}
main[page=kretekCollection] .section__first .left .cs-kretek .nav {
  display: unset;
  flex-wrap: unset;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
main[page=kretekCollection] .section__first .left .cs-kretek .btn-collapse-cs {
  font-size: 22px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: white;
  padding: 1.5rem 2rem;
  border: 1px solid white;
  text-decoration: none;
  display: block;
  cursor: pointer;
  margin-bottom: 1rem;
  font-family: "DIN-Bold.woff";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main[page=kretekCollection] .section__first .left .cs-kretek .collapse {
  padding: 2rem;
}
@media only screen and (max-width: 62em) {
  main[page=kretekCollection] .section__first .left .cs-kretek .collapse {
    padding: 0rem;
  }
}
main[page=kretekCollection] .section__first .left .cs-kretek .collapse .first_p {
  margin-bottom: 2rem;
}
main[page=kretekCollection] .section__first .left .cs-kretek .collapse p {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #999999;
}
@media only screen and (max-width: 62em) {
  main[page=kretekCollection] .section__first .left .cs-kretek .collapse p {
    font-size: 14px;
    line-height: 18px;
  }
}
main[page=kretekCollection] .section__first .left .cs-kretek .product_item {
  margin-bottom: 4rem;
}
main[page=kretekCollection] .section__first .left .cs-kretek .product_item .photo_product {
  height: 255px;
  position: relative;
  margin-bottom: 4rem;
}
main[page=kretekCollection] .section__first .left .cs-kretek .product_item .photo_product .bg {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main[page=kretekCollection] .section__first .left .cs-kretek .product_item .photo_product .product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main[page=kretekCollection] .section__first .left .cs-kretek .product_item .photo_product .product.all-product {
  height: unset;
}
main[page=kretekCollection] .section__first .left .cs-kretek .product_item .desc-box {
  border: 1px solid white;
  padding: 4rem;
}
@media only screen and (max-width: 62em) {
  main[page=kretekCollection] .section__first .left .cs-kretek .product_item .desc-box {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 2rem;
  }
}
main[page=kretekCollection] .section__first .left .cs-kretek .product_item .desc-box h4 {
  font-size: 26px;
  line-height: 31px;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
main[page=kretekCollection] .section__first .left .cs-kretek .product_item .desc-box span {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #999999;
  margin-bottom: 2rem;
  display: block;
}
main[page=kretekCollection] .section__first .right {
  width: 53%;
}
main[page=kretekCollection] .section__first .right .tab-content {
  height: 100%;
}
main[page=kretekCollection] .section__first .right .tab-content .tab-pane {
  height: 100%;
}
main[page=kretekCollection] .section__first .right .tab-content .tab-pane:not(.tab-default) {
  background-color: #000000;
}
main[page=kretekCollection] .section__first .right h5 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 4rem;
}
main[page=kretekCollection] .section__first .right p {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 2rem;
}
main[page=kretekCollection] .section__first .right .arrow_wrapper {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s all ease;
}
main[page=kretekCollection] .section__first .right .arrow_wrapper img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
main[page=kretekCollection] .section__first .right .arrow_wrapper img:first-child {
  margin-right: 1rem;
}
main[page=kretekCollection] .section__first .right .default .photo_product .product {
  width: 95%;
  left: 40%;
}
main[page=kretekCollection] .section__first .right .default .photo_product .product.all-product {
  height: unset;
}
main[page=kretekCollection] .section__first .right .product_item {
  perspective: 50em;
}
main[page=kretekCollection] .section__first .right .product_item:not(.default) {
  background-color: #000000;
}
main[page=kretekCollection] .section__first .right .product_item:hover .product:not(.all-product) {
  transform: rotateX(90deg);
  opacity: 0;
}
main[page=kretekCollection] .section__first .right .product_item:hover .desc {
  transform: rotateX(0deg);
  opacity: 1;
  transition-delay: 0.2s;
}
main[page=kretekCollection] .section__first .right .product_item .photo_product {
  height: 552px;
  position: relative;
  perspective: 50em;
}
main[page=kretekCollection] .section__first .right .product_item .photo_product .bg {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main[page=kretekCollection] .section__first .right .product_item .photo_product .product {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
  transform-origin: 50% 100%;
}
main[page=kretekCollection] .section__first .right a {
  text-decoration: none;
}
main[page=kretekCollection] .section__first .right .desc {
  padding: 4rem;
  background-color: black;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 50% -50%;
  transform: rotateX(-90deg);
  transition: all 0.6s ease;
  opacity: 0;
}
main[page=kretekCollection] .section__first .right .desc-box {
  border: 1px solid white;
  padding: 4rem;
  text-transform: uppercase;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
main[page=kretekCollection] .section__first .right .desc-box h4 {
  font-size: 26px;
  line-height: 31px;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 4rem;
}

main[page=testimonials] {
  margin-top: 80px;
  position: relative;
  background-color: #111114;
}
main[page=testimonials] .v-img {
  position: absolute;
  width: 100%;
  top: 10%;
  filter: opacity(0.2);
}
main[page=testimonials] .v-img-2 {
  position: absolute;
  width: 100%;
  bottom: 20%;
  transform: rotate(180deg);
  filter: opacity(0.2);
}
main[page=testimonials] .iframe-yt {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 100%;
  z-index: 9999;
  display: none;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .iframe-yt {
    top: 50%;
    width: 100%;
    height: 100%;
  }
}
main[page=testimonials] .iframe-yt iframe {
  position: relative;
  z-index: 1;
}
main[page=testimonials] .iframe-yt.open {
  display: block;
}
main[page=testimonials] .iframe-yt .close-yt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 30px;
}
main[page=testimonials] .section__first {
  padding-bottom: 10rem;
  position: relative;
  z-index: 2;
}
main[page=testimonials] .section__first h2 {
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
  color: white;
  padding-left: 8rem;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
main[page=testimonials] .section__first .testimonials__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .section__first .testimonials__item {
    min-height: 500px;
  }
}
main[page=testimonials] .section__first .testimonials__item:not(:last-child) {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .section__first .testimonials__item:not(:last-child) {
    margin-bottom: 5rem;
  }
}
main[page=testimonials] .section__first .testimonials__item .left {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .section__first .testimonials__item .left {
    width: 75%;
    height: 280px;
  }
}
main[page=testimonials] .section__first .testimonials__item .left img {
  width: 100%;
}
main[page=testimonials] .section__first .testimonials__item .left .play-yt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
main[page=testimonials] .section__first .testimonials__item .right {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .section__first .testimonials__item .right {
    width: 25%;
    height: 280px;
  }
}
main[page=testimonials] .section__first .testimonials__item .right .box__wrapper {
  background-color: black;
  padding: 2rem;
  width: 60%;
  position: absolute;
  left: -13%;
  bottom: 5rem;
  z-index: 2;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .section__first .testimonials__item .right .box__wrapper {
    width: 294%;
    left: unset;
    right: 0;
    position: absolute;
    top: 60%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
main[page=testimonials] .section__first .testimonials__item .right .box__wrapper.even-bw {
  left: unset;
  right: -13%;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .section__first .testimonials__item .right .box__wrapper.even-bw {
    left: 0;
    right: unset;
  }
}
main[page=testimonials] .section__first .testimonials__item .right .box__wrapper .border-box {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2rem;
}
main[page=testimonials] .section__first .testimonials__item .right .box__wrapper .border-box p {
  font-size: 2rem;
  line-height: 23px;
  text-align: right;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .section__first .testimonials__item .right .box__wrapper .border-box p {
    font-size: 1.5rem;
  }
}
main[page=testimonials] .section__first .testimonials__item .right .box__wrapper .border-box h4 {
  font-size: 2rem;
  line-height: 23px;
  text-align: right;
  letter-spacing: 0.2px;
  color: #ED1C24;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 62em) {
  main[page=testimonials] .section__first .testimonials__item .right .box__wrapper .border-box h4 {
    font-size: 1.8rem;
  }
}

main[page=store] {
  margin-top: 80px;
}
main[page=store] .section__first .filter_wrapper {
  padding-top: 8rem;
  position: relative;
  background-color: #111114;
}
main[page=store] .section__first .filter_wrapper .bg {
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media only screen and (max-width: 62em) {
  main[page=store] .section__first .filter_wrapper .bg {
    width: 75%;
  }
}
main[page=store] .section__first .filter_wrapper .filter-map {
  position: relative;
  z-index: 2;
}
main[page=store] .section__first .filter_wrapper h2 {
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
  color: white;
  text-align: center;
}
@media only screen and (max-width: 62em) {
  main[page=store] .section__first .filter_wrapper h2 {
    margin-bottom: 0;
  }
}
main[page=store] .section__first .filter_wrapper form {
  width: 100%;
  padding: 4rem 16rem;
}
@media only screen and (max-width: 62em) {
  main[page=store] .section__first .filter_wrapper form {
    padding: 4rem;
  }
}
main[page=store] .section__first .filter_wrapper form .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 62em) {
  main[page=store] .section__first .filter_wrapper form .column {
    flex-direction: column;
  }
}
main[page=store] .section__first .filter_wrapper form .column select {
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: white;
  padding: 1.8rem;
  margin-bottom: 0rem;
}
main[page=store] .section__first .filter_wrapper form .column select:nth-child(2) {
  margin: 0 1rem;
}
@media only screen and (max-width: 62em) {
  main[page=store] .section__first .filter_wrapper form .column select:nth-child(2) {
    margin: 0;
  }
}
main[page=store] .section__first .filter_wrapper form .column select option {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: black;
}
main[page=store] .section__first .filter_wrapper form .column .form-select {
  background-image: url("https://djarum.herokuapp.com/images/arrowbt.png");
  background-position: right 2rem center;
}
main[page=store] .section__first .filter_wrapper form .btn-search-now {
  background-color: #ED1C24;
  color: white;
  box-shadow: none;
  border: none;
  width: 100%;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 2rem;
  padding: 1rem 0;
  margin-top: 1rem;
}
main[page=store] .section__first .map--search {
  height: 500px;
}
main[page=contact] {
  margin-top: 80px;
  background-color: #111114;
}
@media only screen and (min-width: 90em) {
  main[page=contact] {
    min-height: 70vh;
  }
}
main[page=contact] .section__first {
  background-color: #111114;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8rem;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 62em) {
  main[page=contact] .section__first {
    padding: 4rem;
    min-height: 100vh;
  }
}
@media only screen and (min-width: 90em) {
  main[page=contact] .section__first {
    height: 100%;
  }
}
main[page=contact] .section__first h2 {
  color: white;
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 62em) {
  main[page=contact] .section__first h2 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.2px;
  }
}
main[page=contact] .section__first h4 {
  color: #ED1C24;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: 0.2px;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 62em) {
  main[page=contact] .section__first h4 {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.2px;
  }
}
main[page=contact] .section__first p {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2px;
  color: #999999;
}
@media only screen and (max-width: 62em) {
  main[page=contact] .section__first p {
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.2px;
    margin-bottom: 4rem;
  }
}
main[page=contact] .section__first p span img {
  width: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 62em) {
  main[page=contact] .section__first p span img {
    width: 25px;
    margin-right: 10px;
  }
}
main[page=contact] .section__first .vk {
  text-decoration: none;
  color: white;
  margin-bottom: 4rem;
  display: block;
}
main[page=contact] .section__first form input {
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: white;
  padding: 1.8rem;
  margin-bottom: 0rem;
}
@media only screen and (max-width: 62em) {
  main[page=contact] .section__first form input {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.2px;
  }
}
main[page=contact] .section__first form input::-moz-placeholder {
  color: white;
}
main[page=contact] .section__first form input:-ms-input-placeholder {
  color: white;
}
main[page=contact] .section__first form input::placeholder {
  color: white;
}
main[page=contact] .section__first form select {
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: white;
  padding: 1.8rem;
  margin-bottom: 1rem;
}
main[page=contact] .section__first form select option {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: black;
}
main[page=contact] .section__first form .form-select {
  background-image: url("https://djarum.herokuapp.com/images/arrowbt.png");
  background-position: right 2rem center;
}
main[page=contact] .section__first form textarea {
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "DIN-Bold.woff", "Roboto";
  color: white;
  padding: 1.8rem;
  margin-bottom: 0rem;
}
@media only screen and (max-width: 62em) {
  main[page=contact] .section__first form textarea {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.2px;
  }
}
main[page=contact] .section__first form textarea::-moz-placeholder {
  color: white;
}
main[page=contact] .section__first form textarea:-ms-input-placeholder {
  color: white;
}
main[page=contact] .section__first form textarea::placeholder {
  color: white;
}
main[page=contact] .section__first form .btn-submit {
  background-color: #ED1C24;
  color: white;
  box-shadow: none;
  border: none;
  width: 100%;
  font-family: "DIN-Bold.woff", "Roboto";
  font-size: 2rem;
  padding: 1rem 0;
  margin-top: 1rem;
}
@media only screen and (max-width: 62em) {
  main[page=contact] .section__first form .btn-submit {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.2px;
  }
}

main[page=kretek-detail] {
  margin-top: 8rem;
}
main[page=kretek-detail] .section__first {
  padding: 12rem 8rem 0 8rem;
  background-color: #111114;
  position: relative;
}
main[page=kretek-detail] .section__first .bg-kretek-detail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main[page=kretek-detail] .section__first .product-detail {
  background-color: #ED1C24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6rem 4rem;
  position: relative;
}
main[page=kretek-detail] .section__first .product-detail .left {
  width: 50%;
  position: relative;
}
main[page=kretek-detail] .section__first .product-detail .left .box {
  width: 350px;
  border: 1px solid white;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 15rem;
  position: relative;
}
main[page=kretek-detail] .section__first .product-detail .left .box p {
  color: white;
}
main[page=kretek-detail] .section__first .product-detail .left .box .pr-img {
  position: absolute;
  right: -60%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  -o-object-fit: contain;
     object-fit: contain;
}
main[page=kretek-detail] .section__first .product-detail .left .box .pr-img[data-category="3"] {
  position: absolute;
  right: -67%;
  top: 50%;
  transform: translateY(-50%);
  width: 353px;
  -o-object-fit: contain;
  object-fit: contain;
}
main[page=kretek-detail] .section__first .product-detail .right {
  width: 50%;
  padding: 2rem 8rem;
}
main[page=kretek-detail] .section__first .product-detail .right .img2 {
  position: absolute;
  top: -67px;
  width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
main[page=kretek-detail] .section__first .product-detail .right h2 {
  font-size: 60px;
  line-height: 50px;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
main[page=kretek-detail] .section__first .product-detail .right p {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: white;
}
main[page=kretek-detail] .section__first .product-detail .right .desc {
  margin-bottom: 6rem;
}
main[page=kretek-detail] .section__first .product-detail .right .to-other {
  background-color: black;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: white;
  display: block;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DIN-Bold.woff", "Roboto";
  transition: 0.5s all ease;
}
main[page=kretek-detail] .section__first .product-detail .right .to-other:hover {
  background-color: #292929;
}
main[page=kretek-detail] .section__firstM {
  background-color: #111114;
}
main[page=kretek-detail] .section__firstM .to-other {
  background-color: #ED1C24;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: white;
  display: block;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DIN-Bold.woff", "Roboto";
}
main[page=kretek-detail] .section__firstM .logo-wrapper {
  padding: 4rem 4rem 8rem 4rem;
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .logo-wrapper img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
main[page=kretek-detail] .section__firstM .product-detail {
  height: 320px;
  position: relative;
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-detail {
    height: 215px;
  }
}
main[page=kretek-detail] .section__firstM .product-detail .bg {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.3);
}
main[page=kretek-detail] .section__firstM .product-detail .red-box {
  background-color: #ED1C24;
  position: absolute;
  top: -22px;
  width: calc(100% - 4rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 208px;
}
main[page=kretek-detail] .section__firstM .product-detail .red-box .left {
  width: 50%;
}
main[page=kretek-detail] .section__firstM .product-detail .red-box .left h2 {
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 29px;
  line-height: 29px;
}
main[page=kretek-detail] .section__firstM .product-detail .red-box .left .box {
  width: 120%;
  border: 1px solid white;
  padding: 2rem;
  position: relative;
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-detail .red-box .left .box {
    padding: 1.5rem;
    padding-right: 3rem;
  }
}
main[page=kretek-detail] .section__firstM .product-detail .red-box .left .box p {
  color: white;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2px;
  margin: 0;
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-detail .red-box .left .box p {
    font-size: 16px;
  }
}
main[page=kretek-detail] .section__firstM .product-detail .red-box .left .box .pr-img {
  position: absolute;
  right: -60%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
main[page=kretek-detail] .section__firstM .product-detail .red-box .right {
  width: 50%;
  position: relative;
}
main[page=kretek-detail] .section__firstM .product-detail .red-box .right .pr-img {
  position: absolute;
  width: 150px;
  bottom: 0;
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-detail .red-box .right .pr-img {
    width: 130px;
  }
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-detail .red-box .right .pr-img[data-category="1"] {
    left: 25px;
  }
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-detail .red-box .right .pr-img[data-category="2"] {
    width: 150px;
    left: 25px;
  }
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-detail .red-box .right .pr-img[data-category="3"] {
    width: 161px;
    top: -54px;
    right: 0px;
    bottom: unset;
  }
}
main[page=kretek-detail] .section__firstM .product-desc {
  padding: 2rem;
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-desc {
    padding: 5rem 2rem 2rem 2rem;
  }
}
main[page=kretek-detail] .section__firstM .product-desc p {
  color: #999999;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 62em) {
  main[page=kretek-detail] .section__firstM .product-desc p {
    font-size: 14px;
  }
}

main[page=inspiration] .section__first {
  margin-top: 8rem;
  padding: 8rem;
  background-color: #111114;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first {
    padding: 0;
  }
}
main[page=inspiration] .section__first h2 {
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first h2 {
    padding: 4rem;
    padding-bottom: 5px;
    margin-bottom: 0rem;
  }
}
main[page=inspiration] .section__first .ins-img {
  width: 100%;
  padding-right: 4rem;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .ins-img {
    width: 100%;
  }
}
main[page=inspiration] .section__first .date {
  color: white;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.35618px;
  margin-bottom: 3rem;
  display: block;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .date {
    padding-left: 4rem;
  }
}
main[page=inspiration] .section__first .box_title {
  margin-left: 9rem;
  background-color: #ED1C24;
  text-align: end;
  padding: 2rem;
  transform: translateY(-68px);
}
main[page=inspiration] .section__first .box_title h3 {
  font-size: 32px;
  line-height: 1em;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 2rem;
}
main[page=inspiration] .section__first .box_title .minutes {
  color: white;
  font-size: 13.0817px;
  letter-spacing: 0.373762px;
  margin-bottom: 0;
  display: block;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .content-detail {
    padding: 4rem;
    padding-top: 0;
  }
}
main[page=inspiration] .section__first .content-detail .minutes {
  color: white;
  font-size: 13.0817px;
  letter-spacing: 0.373762px;
  margin-bottom: 5rem;
  display: block;
}
main[page=inspiration] .section__first .content-detail .date {
  color: white;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.35618px;
  margin-bottom: 3rem;
  display: block;
}
main[page=inspiration] .section__first .content-detail h2 {
  margin-bottom: 0;
}
main[page=inspiration] .section__first .content-detail p {
  color: white;
}
main[page=inspiration] .section__first .btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .btn-wrapper {
    padding: 0 4rem;
    flex-direction: column;
  }
}
main[page=inspiration] .section__first .btn-wrapper .btn-djarum {
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: white;
  display: block;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "DIN-Bold.woff", "Roboto";
  margin-top: 1rem;
  width: 100%;
  box-shadow: none;
  border: none;
}
main[page=inspiration] .section__first .btn-wrapper .btn-blue-djarum {
  background-color: #268BCD;
  margin-right: 1rem;
}
main[page=inspiration] .section__first .btn-wrapper .btn-red-djarum {
  background-color: #ED1C24;
}
main[page=inspiration] .section__first .mb-2rem {
  margin-bottom: 2rem;
}
main[page=inspiration] .section__first .mb-5rem {
  margin-bottom: 5rem;
}
main[page=inspiration] .section__first .inspiration__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .inspiration__list {
    padding: 4rem;
  }
}
main[page=inspiration] .section__first .inspiration__item {
  height: 304.5px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .inspiration__item {
    padding-right: 0rem;
    height: 300px;
  }
}
main[page=inspiration] .section__first .inspiration__item:hover img {
  transform: scale(1.2);
}
main[page=inspiration] .section__first .inspiration__item.big {
  height: 629px;
  margin-right: 2rem;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .inspiration__item.big {
    margin-right: 0rem;
    height: 300px;
  }
}
main[page=inspiration] .section__first .inspiration__item.box-list {
  width: 32%;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .inspiration__item.box-list {
    width: 100%;
    margin-bottom: 2rem;
  }
}
main[page=inspiration] .section__first .inspiration__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s all ease-in;
}
main[page=inspiration] .section__first .inspiration__item .box_inspiration {
  background-color: #ED1C24;
  position: absolute;
  bottom: 0;
  padding: 2rem;
  width: 40%;
  height: 100%;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .inspiration__item .box_inspiration {
    width: 100%;
    height: unset;
    padding: 0;
  }
}
main[page=inspiration] .section__first .inspiration__item .box_inspiration.big {
  padding-right: 15rem;
  width: 60%;
  height: unset;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .inspiration__item .box_inspiration.big {
    width: 100%;
    padding-right: 0rem;
  }
}
main[page=inspiration] .section__first .inspiration__item .box_inspiration h2 {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 62em) {
  main[page=inspiration] .section__first .inspiration__item .box_inspiration h2 {
    padding: 2rem 4rem 1rem 4rem;
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 30px;
    letter-spacing: 0.2px;
  }
}
main[page=inspiration] .section__first .inspiration__item .box_inspiration p {
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.35618px;
  color: white;
}

main[page=search] {
  margin-top: 8rem;
}
main[page=search] .section__first {
  padding: 8rem;
  background-color: #111114;
}
@media only screen and (max-width: 62em) {
  main[page=search] .section__first {
    padding: 4rem;
    min-height: 100vh;
  }
}
main[page=search] .section__first h2 {
  font-size: 53px;
  line-height: 64px;
  letter-spacing: 0.2px;
  color: white;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 62em) {
  main[page=search] .section__first h2 {
    padding: 0rem;
    padding-bottom: 5px;
    margin-bottom: 4rem;
  }
}
main[page=search] .section__first .nav-tabs .nav-item.show .nav-link, main[page=search] .section__first .nav-tabs .nav-link {
  color: white;
  background-color: transparent;
  border-color: none;
  font-size: 2rem;
}
main[page=search] .section__first .tab-pane {
  padding-top: 4rem;
}
main[page=search] .section__first .tab-pane ul {
  padding-left: 0;
}
main[page=search] .section__first .tab-pane ul li {
  list-style: none;
  margin-bottom: 2rem;
}
main[page=search] .section__first .tab-pane ul li a {
  text-decoration: none;
  color: white;
  font-size: 2.5rem;
  font-family: "DIN-Bold.woff", "Roboto";
}

.admin {
  padding: 4rem;
}
.admin input {
  color: black;
}
.admin .nav .nav-item .nav-link {
  font-size: 1.6rem;
  color: black;
}
.admin .table__wrapper {
  padding: 4rem 0;
}
.admin .table__wrapper ul {
  padding-left: 0;
}
.admin .table__wrapper ul li {
  list-style: none;
  display: inline-block;
}
.admin select {
  color: black;
}
.admin select option {
  color: black;
}

#gmap_canvas2 img {
  max-width: none !important;
  background: none !important;
}

.relative {
  position: relative;
}
