@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@font-face {
  font-family: 'Mersad';
  src: url("../css/fonts/Mersad Light.ttf");
}

@font-face {
  font-family: 'MersadBold';
  src: url("../css/fonts/Mersad Bold.ttf");
}

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

body {
  box-sizing: border-box;
  font-family: 'Sora';
  font-weight: 300;
  color: #333333;
}

.app {
  overflow: hidden;
  min-height: 100vh;
}

a {
  cursor: pointer;
}

a:hover, a:focus {
  text-decoration: none;
  transition: 0.5s;
}

a:focus, button:focus, input:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

pre {
  white-space: pre-line;
}

.empty {
  color: #94866d;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

label.error {
  color: #bb0000;
  display: inline;
  margin-top: 5px;
  margin-bottom: 0px;
  padding: 0;
  text-align: left;
  font-size: 10px;
  font-weight: 300;
}

.alert {
  margin-top: 10px;
  margin-bottom: 0;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.arrow-up.arrow-1 {
  border-bottom: 15px solid #dbcdbb;
}

.arrow-up.arrow-2 {
  border-bottom: 15px solid #d2b588;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ffffff;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.arrow-down.beiges {
  border-top: 15px solid #f8f5f1;
}

.arrow-down.caramel {
  border-top: 15px solid #d2b588;
}

.arrow-right {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-left {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.modal {
  background: rgba(56, 38, 25, 0.6) !important;
}

.modal img {
  max-width: 100%;
}

.modal-content {
  border-radius: 0 !important;
}

.modal-content.bg {
  background: #f9f6f1;
}

.modal-content .modal-wrapper {
  padding: 30px;
}

.modal-content .modal-wrapper.bg .sketch {
  margin: 80px 0;
}

.modal-content .modal-wrapper.bg .sketch-big {
  margin: 30px 0;
}

.modal-content .modal-wrapper .text {
  height: 25px;
}

.modal-content .btn-close {
  position: absolute;
  right: 25px;
  top: 20px;
}

.mtitle {
  font-family: 'Literata';
  font-size: 30px;
  color: #766d64;
  margin-bottom: 25px;
}

.mtitle.special {
  margin-top: 50px;
}

.mdesc {
  color: #a29988;
  font-size: 16px;
  line-height: 27px;
  text-align: justify;
}

.mdescription {
  border-top: 1px solid rgba(162, 153, 136, 0.3);
  border-bottom: 1px solid rgba(162, 153, 136, 0.3);
  padding: 20px 0;
  color: #a29988;
  font-size: 16px;
  line-height: 27px;
  text-align: justify;
}

@media screen and (max-width: 1366px) {
  .mdesc {
    font-size: 18px;
  }
}

@media screen and (max-width: 992px) {
  .mtitle.special {
    margin-top: 10px;
  }
  .modal-content .modal-wrapper.bg .sketch {
    margin: 10px 0;
  }
  .modal-content .modal-wrapper.bg .sketch-big {
    margin: 10px 0;
  }
}

.btn-main {
  background: #a53f5b;
  border-radius: 24px;
  color: #ffffff;
  padding: 9px 25px 11px 30px;
  border: 2px solid #a53f5b;
  width: 200px;
  transition: 0.5s;
  font-size: 18px;
}

.btn-main i {
  color: #ffffff;
  font-size: 17px;
  transition: 0.5s;
  margin-top: 2px;
  position: relative;
  left: 7px;
}

.btn-main:hover {
  background: rgba(165, 63, 91, 0.8);
  color: #a53f5b;
  transition: 0.5s;
  background: none;
}

.btn-main:hover > i {
  color: #ffffff;
  transition: 0.5s;
  left: 15px;
  color: #a53f5b;
}

.btn-tertiary {
  color: #a53f5b;
  border-radius: 25px;
  padding: 10px 25px 7px 25px;
  font-size: 18px;
}

.btn-tertiary i {
  color: #a53f5b;
  margin-left: 5px;
  font-size: 17px;
  margin-top: -4px;
}

.btn-tertiary:hover {
  opacity: 0.6;
  transition: 0.5s;
}

@media screen and (max-width: 992px) {
  .btn-main {
    width: 170px;
    padding: 9px 20px 11px 20px;
  }
}

header {
  background: #ffffff;
  height: 84px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  padding-top: 8px;
  padding-bottom: 12px;
}

header .logo-wrapper {
  display: flex;
  align-items: center;
  padding: 10px 0;
  width: 100%;
}

header .logo {
  width: 135px;
  max-width: 100%;
}

header .menu-bar {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: #333333;
  font-size: 27px;
}

header img {
  max-width: 100%;
}

header nav {
  display: flex;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
  margin-top: 20px;
}

header nav a {
  color: #333333 !important;
  font-weight: 400;
  padding: 5px 40px;
  margin: 0 0 0 10px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  font-family: "Sora", sans-serif;
}

header nav a:hover {
  background: #ba977b;
  color: #ffffff !important;
}

.mobile-menu {
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 999;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: visible;
  transition: 0.35s;
}

.mobile-menu .mobile-wrapper {
  right: 0;
  width: 335px;
  background: #ba977b;
  height: 100vh;
  position: absolute;
  transition: 0.35s;
}

.mobile-menu .mobile-wrapper.hide {
  right: -500px;
  transition: 0.35s;
}

.mobile-menu .mobile-wrapper .logo {
  width: 75%;
}

.mobile-menu .mobile-wrapper .navigation {
  height: 100%;
  overflow-y: auto;
  padding-top: 56px !important;
}

.mobile-menu .mobile-wrapper .navigation hr {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.mobile-menu .mobile-wrapper .navigation .main-title a {
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 15px;
  font-family: "Sora", sans-serif;
  font-size: 19px;
}

.mobile-menu .mobile-wrapper .navigation .main-title .mega-menu a {
  font-size: 16px;
}

.mobile-menu .mobile-wrapper .close-btn {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #ffffff;
  font-size: 30px;
}

.mobile-menu.hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}

.mobile-menu .socmed {
  margin-top: 30px;
  text-align: center;
}

.mobile-menu .socmed .fb {
  width: 40px;
}

.mobile-menu .socmed .logo-long {
  width: 87%;
  margin-top: 15px;
}

@media screen and (max-width: 992px) {
  header {
    padding-top: 9px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 99;
    height: 65px;
  }
  header .logo {
    max-width: 70%;
    margin-top: -7px;
  }
  header nav {
    display: none;
  }
  header .menu-bar {
    display: block;
  }
}

footer {
  color: #ffffff;
  min-height: 150px;
  padding-top: 80px;
  padding-bottom: 60px;
  padding-left: 160px;
  padding-right: 160px;
  position: relative;
  z-index: 5;
  background: #a53f5b;
}

footer .logo {
  width: 300px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

footer .content {
  position: relative;
  padding-left: 50px;
  margin-top: -7px;
}

footer .content p {
  color: #eeeeee;
  font-size: 15px;
  line-height: 27px;
  margin-top: 25px;
}

footer .text-logo {
  width: 220px;
}

footer .backtop {
  text-decoration: none;
  position: absolute;
  right: 30px;
  top: -25px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  z-index: 10;
  border: 1px solid #a53f5b;
}

footer .backtop i {
  color: #a53f5b;
  font-size: 28px;
}

footer hr.short {
  border-bottom: 1px solid #dddddd;
  width: 215px;
  margin-top: 3px;
  margin-bottom: 3px;
}

footer hr.long {
  border-bottom: 1px solid #832a43;
  width: calc(100% - 75px);
  margin-left: 50px;
  margin-right: 25px;
  margin-top: 3px;
  margin-bottom: -2px;
}

footer hr.long-second {
  border-bottom: 1px solid #c25875;
  width: calc(100% - 75px);
  margin-left: 50px;
  margin-right: 25px;
  margin-top: 3px;
  margin-bottom: 3px;
}

footer .copyrights {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  margin-top: 20px;
  margin-left: 50px;
  padding-right: 25px;
  line-height: 25px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .copyrights .official {
  text-transform: uppercase;
  font-weight: 900;
  display: flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

footer .copyrights .official .fb {
  width: 30px;
  margin-left: 11px;
  margin-top: -4px;
}

footer .copyrights .official .fb:hover {
  opacity: 0.7;
  transition: 0.5s;
}

footer .main-nav {
  display: flex;
  flex-direction: column;
  margin-top: 55px;
}

footer .main-nav .title-nav {
  font-family: 'NotoRegular';
  color: #fdf9d1 !important;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  text-decoration: none;
  margin-bottom: 20px;
}

footer .main-nav a {
  font-family: 'NotoRegular';
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  text-decoration: none;
  margin-bottom: 20px;
}

footer .main-nav a:hover {
  opacity: 0.7;
}

footer .main-nav a:first-child {
  border-left: none;
}

@media screen and (max-width: 992px) {
  footer {
    padding-left: 0;
    padding-right: 0;
  }
  footer .main-nav a {
    font-size: 15px;
  }
  footer .main-nav .title-nav {
    font-size: 15px;
    margin-bottom: 5px;
  }
  footer hr.long, footer hr.long-second {
    width: 94%;
    margin-left: 3%;
    margin-right: 0;
  }
  footer .backtop {
    width: 48px;
    height: 48px;
  }
  footer .copyrights {
    text-align: center;
    margin-left: 0;
    padding-right: 0;
    line-height: 20px;
    font-size: 11px;
    margin-top: 45px;
  }
  footer .copyrights div {
    width: 100%;
  }
  footer .copyrights .official {
    justify-content: center;
    margin-bottom: 15px;
  }
  footer .main-nav {
    margin-top: 15px;
    padding: 0 12px;
  }
  footer .main-nav a {
    margin-bottom: 0;
  }
  footer .main-nav .subnav {
    font-size: 13px;
    margin-top: 4px;
  }
  footer .logo {
    width: 70%;
    max-width: 70%;
  }
  footer hr.short {
    margin-left: auto;
    margin-right: auto;
  }
  footer .mobile-content {
    font-size: 14px;
    line-height: 23px;
    margin-top: 18px;
    text-align: left;
    padding: 0 12px;
  }
  footer .content {
    padding-left: 40px;
    transform: scale(0.95);
  }
  footer .content p {
    margin-bottom: 0;
  }
}

.slick-slide {
  height: auto !important;
}

.slick-banner {
  position: relative;
  z-index: 1;
}

.slick-banner .slick-next {
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0.8;
}

.slick-banner .slick-next:hover {
  opacity: 1;
  transition: 0.5s;
}

.slick-banner .slick-prev {
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0.8;
}

.slick-banner .slick-prev:hover {
  opacity: 1;
  transition: 0.5s;
}

img {
  max-width: 100%;
}

.slick-banner-mobile {
  display: none;
}

.banner {
  width: 100%;
  min-height: calc(100vh - 65px);
  position: relative;
  z-index: 2;
  margin-top: 65px;
}

.banner .mobile-cover {
  display: none;
}

.banner .text-cover {
  display: flex;
  align-items: center;
  height: 85vh;
}

.banner .text-cover-2 {
  display: flex;
  align-items: flex-end;
  height: 91vh;
}

.banner .main-text-1 {
  font-size: 55px;
  color: #ffffff;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 15px;
  font-family: MersadBold;
}

.banner .sub-text-1 {
  color: #ba977b;
  text-align: justify;
  line-height: 20px;
}

.banner .main-text-2 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 10px;
  font-family: MersadBold;
}

.banner .sub-text-2 {
  color: #ba977b;
  text-align: justify;
  line-height: 20px;
  font-size: 15px;
}

.banner .main-text-3 {
  font-size: 55px;
  color: #ffffff;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 15px;
  font-family: MersadBold;
  margin-top: 60px;
}

.banner .sub-text-3 {
  color: #ffffff;
  font-size: 12px;
  text-align: justify;
}

.banner .swiper {
  height: calc(100vh - 65px);
  object-fit: cover;
}

.banner .cover {
  height: 95vh;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}

.banner .cover.cover01 {
  background-image: url("../img/Assets/Asset 1.png");
}

.banner .cover.cover02 {
  background-image: url("../img/Assets/Asset 7.png");
}

.banner .cover.cover03 {
  background-image: url("../img/Assets/Asset 8.png");
}

.banner .goto {
  position: absolute;
  right: 95px;
  bottom: -30px;
  width: 60px;
  cursor: pointer;
  z-index: 5;
}

.swiper-wrapper {
  height: auto !important;
}

.swiper .swiper-pagination {
  position: absolute;
  left: 5% !important;
  bottom: 75px !important;
  width: 100px !important;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 10px;
  border-radius: 25px;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  height: 5px;
  width: 5px;
  margin: 0 7px !important;
}

.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000000;
}

.social-media-wrapper {
  position: fixed;
  bottom: 70px;
  right: 0;
  width: 250px;
  z-index: 5;
  display: flex;
}

.social-media-wrapper.mobile {
  bottom: 108px;
  width: 170px;
}

.social-media-wrapper.product-page {
  bottom: 10px;
  width: 130px;
}

.social-media-wrapper.product-desktop {
  bottom: 40px;
}

.social-media-wrapper.contact-page {
  position: relative;
  margin-left: auto;
  bottom: -30px;
  width: 150px;
}

.social-media-wrapper .icon-media {
  border: 1px solid #ffffff;
  border-radius: 7px;
  padding: 5px;
  color: #ffffff;
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.social-media-wrapper .icon-media.dark {
  border: 1px solid #000000;
  color: #000000;
}

.banner .swiper-arrow.full {
  width: 100%;
  margin-top: 40px;
}

.banner .swiper-arrow.full .swiper-scrollbar {
  margin-left: -2.5%;
  margin-top: 5px;
}

.banner .swiper-arrow .swiper-button-next {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #ba977b;
  background: #dddddd;
  z-index: 5;
}

.banner .swiper-arrow .swiper-button-next:after {
  font-size: 16px;
  content: '';
}

.banner .swiper-arrow .swiper-button-next i {
  font-size: 20px;
  color: #333333;
}

.banner .swiper-arrow .swiper-button-prev {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #ba977b;
  background: #dddddd;
  z-index: 5;
}

.banner .swiper-arrow .swiper-button-prev:after {
  font-size: 16px;
  content: '';
}

.banner .swiper-arrow .swiper-button-prev i {
  font-size: 20px;
  color: #333333;
}

@media screen and (max-width: 992px) {
  .swiper .swiper-pagination {
    position: absolute;
    left: 5% !important;
    bottom: 45px !important;
    width: 100px !important;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 10px;
    border-radius: 25px;
  }
  .swiper .swiper-pagination .swiper-pagination-bullet {
    height: 5px;
    width: 5px;
    margin: 0 7px !important;
  }
  .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #000000;
  }
  .banner .cover {
    display: none;
  }
  .banner .mobile-cover {
    display: block;
  }
  .banner .mobile-cover .mobile-cover01a {
    height: 55vh;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    background-image: url("../img/Assets/cover01.jpg");
  }
  .banner .mobile-cover .mobile-cover01b {
    height: 45vh;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    background-image: url("../img/Assets/bg-hitam.jpg");
  }
  .banner .mobile-cover .mobile-cover01b .text-cover {
    margin-top: 0;
    height: auto;
    padding: 15px;
  }
  .banner .mobile-cover .mobile-cover01b .main-text-1 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 10px;
    font-family: MersadBold;
    margin-top: 14px;
  }
  .banner .mobile-cover .mobile-cover01b .sub-text-1 {
    color: #ba977b;
    text-align: justify;
    line-height: 20px;
  }
  .banner .mobile-cover .mobile-cover02a {
    height: 45vh;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    background-image: url("../img/Assets/cover02.jpg");
  }
  .banner .mobile-cover .mobile-cover02b {
    margin-top: -1vh;
    height: 56vh;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    background-image: url("../img/Assets/bg-coklat-tua.jpg");
  }
  .banner .mobile-cover .mobile-cover02b .text-cover {
    margin-top: 0;
    height: auto;
    padding: 15px;
  }
  .banner .mobile-cover .mobile-cover02b .main-text-2 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 10px;
    font-family: MersadBold;
    margin-top: 13vh;
  }
  .banner .mobile-cover .mobile-cover02b .sub-text-2 {
    color: #ba977b;
    text-align: justify;
    line-height: 20px;
    font-size: 15px;
  }
  .banner .mobile-cover .mobile-cover03a {
    height: 45vh;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    background-image: url("../img/Assets/cover03.jpg");
  }
  .banner .mobile-cover .mobile-cover03b {
    margin-top: -1vh;
    height: 56vh;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    background-image: url("../img/Assets/bg-coklat.jpg");
  }
  .banner .mobile-cover .mobile-cover03b .text-cover {
    margin-top: 0;
    height: auto;
    padding: 15px;
  }
  .banner .mobile-cover .mobile-cover03b .main-text-3 {
    font-size: 45px;
    color: #ffffff;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 7px;
    font-family: MersadBold;
    margin-top: 10px;
  }
  .banner .mobile-cover .mobile-cover03b .sub-text-3 {
    color: #ffffff;
    text-align: justify;
    line-height: 15px;
    font-size: 13px;
  }
}

.product {
  background: #999999;
  height: 100vh;
}

.product .name {
  font-family: MersadBold;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 10px;
}

.product .desc {
  font-size: 11px;
  text-align: left;
}

.product .type {
  font-size: 12px;
}

.product .title {
  font-family: MersadBold;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  padding-top: 120px;
  margin-bottom: 30px;
  color: #000000;
}

.product .product-wrapper {
  text-align: center;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.product .product-wrapper .img-product {
  height: 45vh;
  margin-bottom: 15px;
}

.product .product-wrapper .btn-detail {
  background-color: #ba977b;
  color: #ffffff;
  font-size: 13px;
  margin-top: 10px;
  border-radius: 30px;
  padding: 3px 25px;
}

.swiper-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.swiper-navigation .swiper-scrollbar-drag {
  background-color: #46332d;
}

.swiper-navigation .swiper-indicator {
  font-size: 18px;
  color: #ba977b;
  letter-spacing: 1px;
}

.swiper-navigation .swiper-pagination {
  position: relative !important;
  width: 50px;
  font-size: 18px;
  color: #ba977b;
  margin-left: -10px;
}

.swiper-navigation .swiper-scrollbar {
  position: relative !important;
  width: calc(200px) !important;
  margin-top: 6px;
}

.swiper-navigation .swiper-scrollbar.swiper-scrollbar-horizontal {
  border: 1px solid #999999;
  height: 7px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15);
  background: #bbbbbb;
}

.swiper-arrow.full {
  width: 100%;
  margin-top: 40px;
}

.swiper-arrow.full .swiper-scrollbar {
  margin-left: -2.5%;
  margin-top: 5px;
}

.swiper-arrow .swiper-button-next {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #ba977b;
  background: #dddddd;
  z-index: 5;
}

.swiper-arrow .swiper-button-next:after {
  font-size: 16px;
  content: '';
}

.swiper-arrow .swiper-button-next i {
  font-size: 20px;
  color: #333333;
}

.swiper-arrow .swiper-button-prev {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #ba977b;
  background: #dddddd;
  z-index: 5;
}

.swiper-arrow .swiper-button-prev:after {
  font-size: 16px;
  content: '';
}

.swiper-arrow .swiper-button-prev i {
  font-size: 20px;
  color: #333333;
}

.productThumbnail {
  margin-top: 50px;
}

.productThumbnail .swiper-slide {
  width: 15% !important;
  opacity: 0.4;
  margin-top: 30px;
  margin-left: 5px;
}

.productThumbnail .swiper-slide-thumb-active {
  opacity: 1;
  height: 100%;
  width: 20% !important;
  margin-top: 0;
}

@media screen and (max-width: 992px) {
  .product {
    height: auto;
    min-height: 100vh;
  }
  .swiper-arrow.full {
    width: 100%;
    margin-top: 40px;
  }
  .swiper-arrow.full .swiper-scrollbar {
    margin-left: -2.5%;
    margin-top: 5px;
  }
  .swiper-arrow .swiper-button-next {
    position: absolute !important;
    top: 42.5%;
    transform: translateY(-50%);
    right: 60px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: #ba977b;
    background: #dddddd;
    z-index: 5;
  }
  .swiper-arrow .swiper-button-next:after {
    font-size: 16px;
    content: '';
  }
  .swiper-arrow .swiper-button-next i {
    font-size: 20px;
    color: #333333;
  }
  .swiper-arrow .swiper-button-prev {
    position: absolute !important;
    top: 42.5%;
    transform: translateY(-50%);
    left: 60px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: #ba977b;
    background: #dddddd;
    z-index: 5;
  }
  .swiper-arrow .swiper-button-prev:after {
    font-size: 16px;
    content: '';
  }
  .swiper-arrow .swiper-button-prev i {
    font-size: 20px;
    color: #333333;
  }
}

.gallery {
  background: #ffffff;
}

.gallery .title {
  font-family: MersadBold;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  padding-top: 120px;
  margin-bottom: 30px;
  color: #000000;
}

.gallery img {
  object-fit: cover;
  object-position: center;
}

.gallery-left-1 {
  width: 70%;
}

.gallery-left-1 img {
  height: 550px;
}

.gallery-right-1 {
  width: 30%;
}

.gallery-right-1 img {
  height: 550px;
}

.gallery-left-2 {
  width: 70%;
}

.gallery-left-2 img {
  height: 350px;
}

.gallery-right-2 {
  width: 30%;
}

.gallery-right-2 img {
  height: 350px;
}

.gallery-left-3 {
  width: 60%;
}

.gallery-left-3 img {
  height: 450px;
}

.gallery-right-3 {
  width: 40%;
}

.gallery-right-3 img {
  height: 450px;
}

@media screen and (max-width: 992px) {
  .gallery-left-1 {
    width: 70%;
  }
  .gallery-left-1 img {
    height: 300px;
  }
  .gallery-right-1 {
    width: 30%;
  }
  .gallery-right-1 img {
    height: 300px;
  }
  .gallery-left-2 {
    width: 70%;
  }
  .gallery-left-2 img {
    height: 250px;
  }
  .gallery-right-2 {
    width: 30%;
  }
  .gallery-right-2 img {
    height: 250px;
  }
  .gallery-left-3 {
    width: 60%;
  }
  .gallery-left-3 img {
    height: 300px;
  }
  .gallery-right-3 {
    width: 40%;
  }
  .gallery-right-3 img {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-left-1 {
    width: 70%;
  }
  .gallery-left-1 img {
    height: 200px;
  }
  .gallery-right-1 {
    width: 30%;
  }
  .gallery-right-1 img {
    height: 200px;
  }
  .gallery-left-2 {
    width: 70%;
  }
  .gallery-left-2 img {
    height: 150px;
  }
  .gallery-right-2 {
    width: 30%;
  }
  .gallery-right-2 img {
    height: 150px;
  }
  .gallery-left-3 {
    width: 60%;
  }
  .gallery-left-3 img {
    height: 200px;
  }
  .gallery-right-3 {
    width: 40%;
  }
  .gallery-right-3 img {
    height: 200px;
  }
}

.contact {
  background: #000000;
  min-height: 100vh;
  padding-bottom: 75px;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
}

.contact a span {
  margin-left: -8px;
  margin-top: 3px;
  display: block;
}

.contact .title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  padding-top: 150px;
  margin-bottom: 70px;
}

.contact .title span {
  border-bottom: 1px solid #ffffff;
}

.contact .info {
  display: flex;
  color: #ffffff;
}

.contact .info i {
  margin-right: 15px;
  margin-top: 4px;
  font-size: 20px;
  color: #ba977b;
}

.contact .form-contact .form-control {
  margin-bottom: 20px;
  border-radius: 0;
  padding: 14px 12px 12px 12px;
  font-size: 17px;
  font-family: 'Mersad';
  font-weight: 600;
}

.contact .form-contact .form-control::placeholder {
  color: #999999;
}

.contact .form-contact textarea {
  resize: none;
  height: 200px;
}

.contact .form-contact button {
  background-color: #ba977b;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  border-radius: 30px;
}
/*# sourceMappingURL=main.css.map */