/* ray */

@font-face {
  font-family: Ray;
  src:
          url(../fonts/Ray/woff/Ray-Light.woff) format("woff"),
          url(../fonts/Ray/ttf/Ray-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: Ray;
  src:
          url(../fonts/Ray/woff/Ray.woff) format("woff"),
          url(../fonts/Ray/ttf/Ray.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: Ray;
  src:
          url(../fonts/Ray/woff/Ray-Medium.woff) format("woff"),
          url(../fonts/Ray/ttf/Ray-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: Ray;
  src:
          url(../fonts/Ray/woff/Ray-Bold.woff) format("woff"),
          url(../fonts/Ray/ttf/Ray-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: Ray;
  src:
          url(../fonts/Ray/woff/Ray-ExtraBold.woff) format("woff"),
          url(../fonts/Ray/ttf/Ray-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: Ray;
  src:
          url(../fonts/Ray/woff/Ray-Black.woff) format("woff"),
          url(../fonts/Ray/ttf/Ray-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
}

/* base  */

:root {
  --color1: #8D3115;
  --color2: #DD8279;
  /*--color1: #FFA673;*/
  /*--color2: #03A6A1;*/
  --back: #fff;
  --font1: Ray;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font1);
  direction: rtl;
  background-color: var(--back);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color1)
}

.ltr {
  direction: ltr;
}

.rtl {
  direction: rtl;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (max-width: 767px) {
  .d-m-none {
    display: none !important;
  }

}

.col-20 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .col-lg-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 767.98px) {

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid,
  .navbar-expand-md>.container-lg,
  .navbar-expand-md>.container-md,
  .navbar-expand-md>.container-sm,
  .navbar-expand-md>.container-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* navbar */

.navbar-custom {
  background-color: #ffffffb0;
  height: 100px;
  padding: 0;
  z-index: 1000;
  transition: 0.3s;
  box-shadow: 0px 4px 8px 0px #00000029;
  position: absolute;
  width: 100%;
  z-index: 99;
  top: -100px;
  margin-top: 100px;
  transition: transform 0.5s ease-out, top 0.5s ease-out;
  backdrop-filter: blur(3px);
}

.navbar-custom.fixed {
  top: 0;
  margin-top: 0;
  position: fixed;
}

.navbar-logo-img {
  width: 90px;
  height: 65px;
  object-fit: contain;
}

.navbar-logo-text {
  width: 97px;
  height: 37px;
  object-fit: contain;
}

.navbar-logo {
  display: flex;
  align-items: center;
  margin-left: 60px;
}

.nav-item {
  margin-left: 15px;
  white-space: nowrap;
}

.nav-item a {
  display: flex;
  align-items: center;
  padding: 30px 5px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.nav-item.dropdown {
  margin-top: -2px;
}

/* border hover  */

@media (min-width:768px) {
  .nav-item a {
    display: inline-block;
  }

  .nav-item:not(.dropdown) a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--color1);
    transition: width .2s;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: -5px;
  }

  .nav-item:not(.dropdown) a:hover::after {
    width: 100%;
    transition: width .3s;
  }
}

.nav-item a:hover {
  color: var(--color1) !important;
}

.navbar-right {
  display: flex;
  align-items: center;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: end;
}

.navbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color2);
  height: 40px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  padding: 10px 30px;
  margin-right: 15px;
  white-space: nowrap;
}

.navbar-btn:hover {
  background: var(--color1);
  color: #fff;
}

.navbar-search {
  background: #fff;
  border: 1px solid #00000026;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  width: 100%;
  max-width: 252px;
}

.navbar-search button {
  font-size: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
}

.navbar-search input {
  border: 0;
  outline: none;
  width: 100%;
  font-size: 15px;
  padding-right: 5px;
}

@media (max-width:767.5px) {

  .navbar-custom {
    height: 105px;
    padding: 10px 0;
    backdrop-filter: unset;
    background-color: #ffffffde;
  }

  .navbar-logo-text {
    width: 70px;
    height: 30px;
  }

  .navbar-logo-img {
    width: 50px;
    height: 36px;
  }

  .navbar-logo {
    margin-left: 0;
  }

  .navbar-btn {
    height: 36px;
    padding: 10px 20px;
    margin: 0;
    font-size: 13px;
    margin-right: 10px;
  }

  .navbar-search {
    height: 38px;
    width: 100%;
    order: 3;
    max-width: 100%;
    margin-top: 9px;
  }

  .navbar-search input {
    font-size: 14px;
  }
}

@media (min-width:768px) and (max-width:1199px) {
  .navbar-logo {
    margin-left: 30px;
  }

  .nav-item {
    margin-left: 20px;
  }

  .nav-item a {
    font-size: 15px;
  }
}



/* dropdown */
.dropdown a::after {
  margin-top: -2px;
  margin-right: 10px;
  border: 0;
  font-family: "raya-icon";
  content: '\f107';
}

.dropdown ul li a::after {
  content: unset;
}

.dropdown .dropdown>a:after {
  display: block;
  content: " ";
  float: left;
  border: 0;
  font-family: "raya-icon";
  content: '\f104';
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown ul {
  left: 0;
  z-index: 1000;
  display: none;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  color: #212529;
  text-align: right;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  position: absolute;
  border: 0;
  border-radius: 5px;
  margin-top: 0px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  min-width: 200px;
  border-radius: 8px;
  font-size: 14px;
  transition: opacity 0.3s ease-in-out;
  right: 0;
}

.dropdown ul li a {
  color: #444;
  font-size: 16px;
  display: block;
  white-space: nowrap;
  width: 100%;
  padding: 7px 14px;
  font-weight: normal;
}

.dropdown ul li a:hover {
  color: var(--color1);
}



@media (min-width:767.5px) {
  .dropdown ul::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 5px;
    transform: translateX(-50%) rotate(180deg);
    border-top: 10px solid var(--color1);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }

  .dropdown .dropdown ul::before {
    content: unset;
  }

  .dropdown .dropdown {
    position: relative;
  }

  .dropdown .dropdown>ul {
    top: 0;
    right: 100%;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -20;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0.1s, 0.4s;
  }

  #overlay.active {
    visibility: visible;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0s, 0s;
    background: rgba(72, 72, 72, 0.6);
    z-index: 100;
  }

  .dropdown .dropdown:hover>a:after {
    border-left-color: #000;
  }

  .dropdown .dropdown:hover>ul {
    display: block;
  }

  .dropdown:hover>ul {
    display: block;
  }
}

/* offcanvas */
@media (max-width: 767.5px) {
  .dropdown ul::before {
    content: unset;
  }

  .dropdown a::after {
    content: '\f104';
    font-size: 16px;
    flex-grow: 1;
    justify-content: end;
    display: flex;
    align-items: center;
  }

  .dropdown .dropdown>a:after {
    margin-top: -2px;
    font-size: 16px;
  }

  .offcanvas-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
  }

  .dropdown ul {
    left: unset;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .dropdown ul.active {
    right: 0;
  }

  .offcanvas-nav.active {
    right: 0;
  }


  .offcanvas-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color1);
    background-color: #fff;
    padding: 0 15px;
    margin-bottom: 10px;
  }


  .offcanvas-header .close {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .offcanvas-header .back {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .nav-item {
    padding: 10px 20px;
    margin-left: 0px;
    display: flex;
  }

  .dropdown ul li a {
    padding: 10px 20px;
  }

  .nav-item a {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
  }

  .navbar-toggler {
    border: 0;
    margin: 0;
    padding: 0;
    color: var(--color1) !important;
    display: flex;
    margin-left: 10px;
  }
}


@media (min-width:768px) {
  .offcanvas-header {
    display: none;
  }
}


.dropdown-new .dropdown-menu {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
}

.dropdown-new a::after {
  display: none;
}

.navbar-btn-badge {
  background: var(--color2);
  width: 15px;
  height: 15px;
  position: absolute;
  left: -3px;
  top: -6px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-top: 3px;
}

.btn.btn-custom {
  background: var(--color1);
  color: #fff;
}

/* jconfirm  */
.btn.btn-custom:hover {
  opacity: 0.8;
}

.jconfirm-box {
  border-radius: 10px !important;
}




/* basket offcanvas */

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  /* visibility: hidden; */
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform .3s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 350px;
  border-right: 1px solid rgba(0, 0, 0, .2);
  transform: translateX(-100%);
}

.offcanvas.show {
  transform: none;
}

.offcanvas-body {
  padding: 20px 0;
  height: 100%;
  overflow: auto;
}

.offcanvas-head {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

.offcanvas-footer {
  padding: 15px;
  border-top: 1px solid #ccc;
}

.offcanvas-close {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #444;
  padding: 0;
}


.basket-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  padding-top: 10px;
}

.basket-item:first-child {
  padding-top: unset;

}

.basket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.basket-total-title {
  font-size: 14px;
  font-weight: 600;
}

.basket-item-img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid #ddd;
}

.basket-item-info {
  margin-right: 15px;
  white-space: nowrap;
}

.basket-item-count {
  margin-top: 5px;
  display: flex;
  align-items: end;
}

.basket-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.basket-item-count span {
  color: var(--color1);
  font-size: 16px;
}

.basket-item-discount {
  color: #545454 !important;
  text-decoration: line-through;
  font-size: 14px !important;
}

.basket-link {
  background: var(--color1);
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid var(--color1);
  transition: 0.3s;
}

.basket-link:hover {
  background-color: #fff;
  color: var(--color1);
}


.basket-item {
  padding: 15px;
}

.basket-total {
  margin-top: 0;
}

.offcanvas-title {
  font-weight: 600;
  color: #444;
  font-size: 18px;
}

#overlay-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -20;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0.1s, 0.4s;
}

#overlay-offcanvas.active {
  visibility: visible;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0s, 0s;
  background: rgba(72, 72, 72, 0.6);
  z-index: 1000;
}


/* swiper */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-center {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-custom {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-1 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-2 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-3 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-4-center {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-4 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-5 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-6 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-7 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-pagination-bullet {
  border-radius: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color1);
}


.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: 600;
  color: #707070;
}

.swiper-button-next {
  width: 38px;
  height: 38px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27);
  background-color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.swiper-button-prev {
  width: 38px;
  height: 38px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27);
  background-color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.swiper-button-next:hover {
  background: var(--color1);
}

.swiper-button-prev:hover {
  background: var(--color1);
}

.swiper-button-next:hover::after {
  color: #fff;
}

.swiper-button-prev:hover::after {
  color: #fff;
}




@media (max-width:767px) {
  .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-prev {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
  }
}


/* animate */
.myAnim1 {
  animation: myAnim1 10s linear 0s infinite normal forwards;
}

.myAnim2 {
  animation: myAnim2 15s linear 0s infinite normal forwards;
}

.myAnim2-2 {
  animation: myAnim2 30s linear 0s infinite normal forwards;
}

.myAnim3 {
  animation: myAnim3 10s linear 0s infinite normal forwards;
}

.myAnim4 {
  animation: myAnim4 10s linear 0s infinite normal forwards;
}

@keyframes myAnim1 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 0;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim2 {

  0%,
  100% {
    transform: translateY(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }

  20%,
  40%,
  60% {
    transform: translateY(8px);
  }

  80% {
    transform: translateY(6.4px);
  }

  90% {
    transform: translateY(-6.4px);
  }
}

@keyframes myAnim3 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim4 {
  0% {
    animation-timing-function: ease-out;
    transform: scale(1);
    transform-origin: center center;
  }

  10% {
    animation-timing-function: ease-in;
    transform: scale(0.91);
  }

  17% {
    animation-timing-function: ease-out;
    transform: scale(0.98);
  }

  33% {
    animation-timing-function: ease-in;
    transform: scale(0.87);
  }

  45% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* home */

.home-wrap-1 {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 550px;
}

.home-wrap-1-inner {
  background: linear-gradient(270deg, #D4B2A0 0%, rgba(144, 135, 132, 0) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.home-wrap-1-title {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.home-wrap-1-title strong {
  color: var(--color1);
  font-weight: 900;
}

.home-wrap-1-text {
  color: #1F150E;
  font-size: 30px;
}

.home-wrap-1-btn {
  height: 50px;
  display: flex;
  align-items: center;
  background: #fff;
  width: max-content;
  margin-top: 100px;
  min-width: 150px;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #A45622;
  gap: 10px;
  line-height: 1;
  transition: 0.3s;
}

.home-wrap-1-btn:hover {
  background: var(--color1);
  color: #fff;
}

.home-wrap-1-btn i {
  transition: 0.3s;
  margin-top: 2px;
}

.home-wrap-1-btn:hover i {
  margin-right: 10px;
}

.home-wrap-2 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.home-wrap-2-cover {
  max-width: 375px;
  margin: auto;
  max-height: 498px;
  position: relative;
  z-index: 1;
}

.home-wrap-2-cover::before {
  content: '';
  background: #E8C9B4;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  right: 25px;
  top: 25px;
}

.home-wrap-2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-wrap-2-title {
  font-size: 26px;
  color: #1F1712;
  font-weight: 300;
}

.home-wrap-2-title strong {
  color: #C87056;
  font-weight: 700;
}

.home-wrap-2-subtitle {
  color: #1F1712;
  font-size: 20px;
  font-weight: 300;
}

.home-wrap-2-text {
  font-size: 17px;
  text-align: justify;
  line-height: 1.8;
  margin-top: 30px;
}

.home-wrap-2-head {
  position: relative;
  padding-right: 30px;
}

.home-wrap-2-head::before {
  content: '';
  background: #C87056;
  width: 5px;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 10px;
  right: 0;
}

.home-wrap-2-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.home-wrap-2-item span {
  width: 50%;
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.home-wrap-2-item span::before {
  content: '\e85e';
  font-family: 'raya-icon';
  width: 21px;
  height: 21px;
  color: #fff;
  background: #C87056;
  border-radius: 50px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-warp-2-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.home-warp-2-end span {
  color: #C87055;
  font-weight: 700;
  font-size: 32px;
}

.home-warp-2-end img {
  height: 116px;
  width: 219px;
  object-fit: contain;
}

.home-wrap-2-right {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  right: 0;
  z-index: -1;
}

.home-wrap-2-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  bottom: 0;
  width: 50%;
  height: 100%;
}

.home-wrap-2-shape {
  position: absolute;
  top: -110px;
  left: 0;
  z-index: -1;
}

.home-wrap-3 {
  padding-top: 50px;
  padding-bottom: 100px;
  background: linear-gradient(270deg, #F6E7E1 0%, #FBF7F5 50%, #F6E7E1 100%);
}

.home-wrap-3-subtitle {
  text-align: center;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.home-wrap-3-subtitle::before {
  content: '';
  background: #C88555;
  width: 32px;
  height: 2px;
  display: block;
}

.home-wrap-3-subtitle::after {
  content: '';
  background: #C88555;
  width: 32px;
  height: 2px;
  display: block;
}

.home-wrap-3-title {
  text-align: center;
  color: #C87055;
  font-size: 32px;
  font-weight: 800;
  margin-top: 10px;
}

.home-wrap-3-head {
  margin-bottom: 30px;
}

.home-wrap-3-item {
  margin-top: 20px;
  position: relative;
  height: 190px;
  display: block;
  perspective: 1000px;
  z-index: 1;
}

.home-wrap-3-front,
.home-wrap-3-img {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.8s;
}

.home-wrap-3-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 5px;
}

.home-wrap-3-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.home-wrap-3-text {
  color: #000;
  margin-top: 15px;
}

.home-wrap-3-img {
  object-fit: cover;
  transform: rotateY(180deg);
  z-index: 1;
  box-shadow: 0px 4px 8px 0px #00000040;

}

.home-wrap-3-item:hover .home-wrap-3-front {
  transform: rotateY(180deg);
}

.home-wrap-3-item:hover .home-wrap-3-img {
  transform: rotateY(360deg);
}


.home-wrap-4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 15px;
  z-index: 1;
}

.home-wrap-4-item:nth-child(1) {
  grid-area: 1 / 3 / 5 / 4;
}

.home-wrap-4-item:nth-child(2) {
  grid-area: 1 / 2 / 3 / 3;
}

.home-wrap-4-item:nth-child(3) {
  grid-area: 3 / 2 / 5 / 3;
}

.home-wrap-4-item:nth-child(4) {
  grid-area: 1 / 1 / 5 / 2;
}

.home-wrap-4-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.home-wrap-4-item img:hover {
  opacity: 0.9;
}

.home-wrap-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
}

.home-wrap-4 {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.home-wrap-4-shape {
  position: absolute;
  right: 0;
  top: -245px;
}

.home-wrap-title {
  color: #925940;
  font-size: 22px;
  font-weight: 700;
}

.home-wrap-4-select {
  height: 50px;
  background: #fff;
  border: 1px solid #00000026;
  width: 100%;
  max-width: 300px;
  outline-color: var(--color2);
  color: #201510;
  padding: 0 15px;
}

.home-wrap-4-btn {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  margin: auto;
  border: 1px solid #00000026;
  border-radius: 10px;
  gap: 15px;
  line-height: 1;
  padding: 10px 20px;
  margin-top: 50px;
  color: #A45622;
  transition: 0.3s;
}

.home-wrap-4-btn:hover {
  background: var(--color2);
  color: #fff;
}

.home-wrap-img {
  width: 100%;
}

.user-wrap-header {
  display: flex;
  align-items: center;
}

.user-wrap-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  margin-left: 15px;
}

.user-wrap-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.user-wrap-date {
  color: #7A7A7A;
  font-size: 14px;
  margin-top: 5px;
}

.user-wrap-rate {
  color: #EC9100;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.user-wrap-text {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 10px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  height: 75px;
}

.user-wrap-item {
  margin-bottom: 30px;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: -2px 2px 4px 0px #00000014;
}

.home-wrap-6 {
  padding: 100px 0;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.home-wrap-6-flower {
  position: absolute;
  left: 0;
  top: -95px;
  z-index: -1;
}

.home-wrap-6-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
}

.home-wrap-6-bottom {
  position: absolute;
  bottom: -130px;
  z-index: -1;
  right: 0;
  left: 0;
  margin: auto;
}

.card-blog {
  display: block;
  height: 388px;
  background-size: cover;
}

.card-blog-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0a0a0a66;
  height: 100%;
  backdrop-filter: saturate(0.5);
  padding: 30px;
  transition: 0.3s;
}

.card-blog-badge {
  background: #D58066;
  width: max-content;
  color: #fff;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 10px 15px;
  font-size: 14px;
}

.card-blog-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.card-blog-inner:hover {
  backdrop-filter: saturate(1);
}

.home-wrap-8 {
  margin-top: 100px;
}


/* responsive */

@media (max-width:767px) {

  .home-wrap-1 {
    height: auto;
    min-height: auto;
  }

  .home-wrap-1-inner {
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .home-wrap-1-title {
    font-size: 25px;
    text-align: center;
  }

  .home-wrap-1-text {
    font-size: 20px;
    text-align: center;
    margin-top: 5px;
  }

  .home-wrap-1-btn {
    font-size: 14px;
    height: 38px;
    min-width: unset;
    padding: 10px 15px;
    margin: auto;
    margin-top: 20px;
  }

  .home-wrap-2 {
    padding: 30px 0;
  }

  .home-wrap-2-head {
    padding-right: 20px;
  }

  .home-wrap-2-head::before {
    width: 4px;
  }

  .home-wrap-2-title {
    font-size: 20px;
  }

  .home-wrap-2-subtitle {
    font-size: 18px;
  }

  .home-wrap-2-text {
    font-size: 14px;
    margin-top: 15px;
  }

  .home-wrap-2-item span {
    font-size: 14px;
  }

  .home-wrap-2-item {
    margin-top: 0;
  }

  .home-warp-2-end span {
    font-size: 20px;
  }

  .home-warp-2-end {
    margin-top: 20px;
  }

  .home-warp-2-end img {
    height: 79px;
    width: 130px;
  }

  .home-wrap-2-cover {
    margin: 20px;
  }

  .home-wrap-2-cover::before {
    right: 15px;
    top: 15px;
  }

  .home-wrap-3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home-wrap-3-subtitle {
    font-size: 16px;
    gap: 10px;
  }

  .home-wrap-3-title {
    font-size: 20px;
  }

  .home-wrap-3-item {
    height: 150px;
  }

  .home-wrap-3-head {
    margin-bottom: 10px;
  }

  .home-wrap-4-shape {
    top: -40px;
    max-width: 100%;
    width: 30%;
  }

  select.home-wrap-4-select {
    max-width: 153px;
    padding: 0 5px;
    font-size: 14px;
    height: 40px;
  }

  .home-wrap-4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home-wrap-title {
    font-size: 18px;
  }

  .home-wrap-flex {
    margin-bottom: 20px;
  }

  .home-wrap-4-grid {
    display: flex;
    flex-direction: column;
  }

  .home-wrap-4-item img {
    height: 150px;
  }

  .home-wrap-4-btn {
    height: 42px;
    font-size: 14px;
    padding: 10px 15px;
    width: max-content;
    margin-top: 30px;
  }

  .home-wrap-6-flower {
    top: 0;
    max-width: 100%;
    width: 40%;
  }

  .home-wrap-6 {
    padding: 30px 0;
    padding-bottom: 30px;
  }

  .user-wrap-item {
    margin-bottom: 15px;
  }

  .user-wrap-img {
    width: 70px;
    height: 70px;
  }

  .user-wrap-title {
    font-size: 16px;
  }

  .user-wrap-rate {
    font-size: 14px;
  }

  .card-blog-inner {
    padding: 20px;
  }

  .card-blog {
    height: 300px;
  }

  .home-wrap-7 .swiper-button-prev {
    display: none;
  }

  .home-wrap-7 .swiper-button-next {
    display: none;
  }

  .card-blog-badge {
    height: 38px;
    padding: 10px 10px;
    font-size: 14px;
  }

  .card-blog-title {
    font-size: 15px;
  }

  .home-wrap-8 {
    margin-top: 40px;
  }

}



/* footer top  */

.footer-top {
  background: #C4826B;
  padding: 50px 0;
}

.footer-top-flex {
  display: flex;
  align-items: center;
}

.footer-top-logo {
  width: 147px;
  height: 110px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 15px;
  border-radius: 25px;
}

.footer-top-title {
  font-size: 26px;
  font-weight: 700;
  color: #8E4139;
}

.footer-top-info {
  margin-right: 20px;
}

.footer-top-text {
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
  line-height: 1.8;
}


.footer-top-social {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer-top-social a {
  margin: 0 10px;
  transition: 0.3s;
}

.footer-top-social a:hover {
  opacity: 0.6;
}

.footer-top-social img {
  width: 41px;
  height: 41px;
}


@media (max-width:767px) {
  .footer-top {
    margin-top: 0;
    padding: 30px 0;
  }

  .footer-top-logo {
    height: 80px;
    width: 80px;
    padding: 5px;
    border-radius: 10px;
  }

  .footer-top-info {
    margin-right: 0;
    margin-top: 15px;
  }

  .footer-top-flex {
    flex-direction: column;
  }

  .footer-top-title {
    font-size: 18px;
  }

  .footer-top-text {
    text-align: justify;
    font-size: 13px;
  }

  .footer-top-social {
    margin-top: 15px;
  }

  .footer-top-social a {
    margin: 0 5px;
  }


  .footer-top-social img {
    width: 32px;
    height: 32px;

  }

}

/* footer  */

.footer::before {
  content: '';
  background: #DF9E82;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  opacity: 0.2;
}

.footer {
  background-color: #DF9E82;
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-header {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-ul {
  list-style: none;
  padding: 0;
  line-height: 2.4;
  color: #000;
  margin-bottom: 0;
}

.footer-ul i {
  color: var(--color1);
  margin-left: 5px;
}

.footer-ul a {
  color: #000;
  display: flex;
}

.footer-ul a span {
  display: block;
  direction: ltr;
}

.footer-ul a:hover {
  color: var(--color1);
}

.footer-logo {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 100px;
}

.footer-text {
  color: #fff;
  font-size: 15px;
  line-height: 2;
  text-align: right;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.footer-namad {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer-namad img {
  border: 2px solid var(--color1);
  background: #fff;
  max-width: 120px;
  padding: 10px;
  border-radius: 10px;
}

.footer-bottom {
  background: #8E4139;
  padding: 25px 0;
  color: #fff;
  font-size: 15px;
}

.footer-bottom a {
  color: #F4AD7F;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom-item {
  color: #fff;
  font-size: 15px;
  height: 100%;
  display: flex;
  align-items: center;
}

.footer-bottom-item span {
  margin: 0 3px;
}

.footer-social {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-social a {
  width: 35px;
  height: 35px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  padding-top: 6px;
  transition: 0.3s;
  border-radius: 50px;
}


.footer-social .icon-instagram {
  padding-top: 1px;
  padding-right: 2px;
}

.footer-social .icon-telegram {
  font-size: 14px;
}

.footer-social .icon-phone {
  padding-top: 3px;
}

.footer-social a:hover {
  background: var(--color2);
  color: #fff;
}

.footer-form-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.footer-form input::placeholder {
  color: #000;
}

.footer-form input {
  height: 60px;
  width: 100%;
  background: transparent;
  outline: none;
  border: 0;
  background: #ffffff9c;
  color: #000;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.footer-form input:focus {
  border-color: var(--color1);
}


.footer-form button {
  background: #8E4139;
  color: #fff;
  height: 50px;
  padding: 5px 25px;
  border: 0;
  outline: none;
  border-radius: 8px;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  transition: 0.3s;
}

.footer-form button:hover {
  background: var(--color2);
}


@media (max-width:767px) {

  .footer::before {
    content: unset;
  }

  .footer-header {
    font-size: 16px;
  }

  .footer {
    padding: 30px 0;
  }

  .footer-logo img {
    width: 70px;
  }

  .footer-text {
    font-size: 13px;
    text-align: justify;
    margin-top: 10px;
  }

  .footer-ul {
    line-height: 2.5;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .footer-bottom-item {
    font-size: 12px;
    text-align: center;
    justify-content: center;
  }

  .footer-namad img {
    width: 100px;
    margin-top: 20px;
  }

  .footer-social {
    margin-top: 5px;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .footer-form-title {
    font-size: 14px;
  }

  .footer-form input {
    height: 42px;
    font-size: 14px;
  }

  .footer-form button {
    height: 36px;
    font-size: 14px;
  }
}

/* services */

.service-wrap-1 {
  height: 470px;
  position: relative;
}

.service-wrap-1-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-wrap-1::before {
  content: '';
  background: #F4AD7F;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.service-wrap-2 {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.service-wrap-2-head {
  position: relative;
  padding-right: 30px;
}

.service-wrap-2-head::before {
  content: '';
  background: #C87056;
  width: 5px;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 10px;
  right: 0;
}

.service-wrap-2-text {
  font-size: 17px;
  text-align: justify;
  line-height: 1.8;
  margin-top: 30px;
}

.service-wrap-2-subtitle {
  font-size: 26px;
  font-weight: 600;
  color: #C87055;
}

.service-wrap-2-title {
  font-size: 26px;
  font-weight: 600;
  color: #1F1712;
}



/* video player plyr js  */
button.plyr__control.plyr__control--overlaid {
  background: rgba(220, 220, 220, 0.6) !important;
}

.plyr__controls [data-plyr="pip"] {
  display: none !important;
}

.plyr__controls [data-plyr="settings"] {
  display: none !important;
}

.plyr__controls [data-plyr="volume"] {
  display: none !important;
}

.plyr.plyr--full-ui.plyr--video.plyr--html5.plyr--fullscreen-enabled.plyr--paused.plyr--stopped.plyr--pip-supported.plyr__poster-enabled {
  border-radius: 18px;
}

.plyr__poster {
  background-size: cover !important;
}

.plyr__video-wrapper {
  border-radius: 18px;
}

.plyr--video {
  border-radius: 18px !important;
}

.plyr {
  height: 100%;
}

video {
  width: 100%;
}

.service-wrap-2-video {
  /*height: 455px;*/
  border-radius: 16px;
  overflow: hidden;
}

.service-wrap-2-top {
  position: absolute;
  right: 27%;
  top: 0;
  z-index: -1;
  max-width: 100%;
}

.service-wrap-2-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  max-width: 100%;
}

.service-wrap-3 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #F6EAE2;
  z-index: 1;
}

.service-wrap-3-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-wrap-3-title {
  font-size: 26px;
  color: #1F1712;
  font-weight: 300;
}

.service-wrap-3-title strong {
  color: #C87056;
  font-weight: 700;
}

.service-wrap-3-subtitle {
  color: #1F1712;
  font-size: 20px;
  font-weight: 300;
}

.service-wrap-3-text {
  font-size: 19px;
  text-align: justify;
  line-height: 1.8;
  margin-top: 30px;
}

.service-wrap-3-head {
  position: relative;
  padding-right: 30px;
}

.service-wrap-3-head::before {
  content: '';
  background: #C87056;
  width: 5px;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 10px;
  right: 0;
}

.service-wrap-3-cover::before {
  content: '';
  background: linear-gradient(270deg, #F6EAE2 0%, rgba(246, 234, 226, 0) 49.92%);

}

.service-wrap-3-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  z-index: -1;
}

.service-wrap-3-cover {
  width: 50%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
}

.service-wrap-3-cover::before {
  content: '';
  background: linear-gradient(270deg, #F6EAE2 0%, rgba(246, 234, 226, 0) 49.92%);
  position: absolute;
  right: 0;
  height: 100%;
  width: 50%;
}

.service-wrap-4 {
  background: #F6EAE2;
  padding: 60px 0;
}

.service-wrap-4-item {
  display: block;
  margin-top: 25px;
}

.service-wrap-4-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.3s;
}

.service-wrap-4-item img:hover {
  opacity: 0.8;
}

.service-wrap-4-title {
  color: #925940;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.service-wrap-4-btn {
  background: var(--color2);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 10px;
  width: max-content;
  padding: 10px 25px;
  margin: auto;
  margin-top: 50px;
  min-width: 150px;
  transition: 0.3s;
}

.service-wrap-4-btn:hover {
  background: var(--color1);
  color: #fff;
}

.service-wrap-5 {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.service-wrap-5-title {
  font-size: 26px;
  color: #000;
  font-weight: bold;
}

.service-wrap-5-text {
  font-size: 18px;
  text-align: justify;
  line-height: 1.8;
  margin-top: 15px;
}

.service-wrap-6 {
  background: #F6EAE2;
  padding: 30px 0;
}

.service-wrap-6-text {
  color: #ca6242;
  font-size: 22px;
}

.service-wrap-6-btn {
  display: flex;
  align-items: center;
  background: #709b1f;
  color: #fff;
  justify-content: center;
  width: max-content;
  gap: 20px;
  padding: 15px 40px;
  font-size: 22px;
  border-radius: 50px;
  transition: 0.3s;
}

.service-wrap-6-btn:hover {
  background: var(--color2);
  color: #fff;
}

.service-wrap-7 {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.service-content h2 {
  font-size: 24px;
  color: #000;
  font-weight: bold;
}

.service-content h3 {
  font-size: 22px;
  color: #000;
  font-weight: bold;
}

.service-content h2 {
  font-size: 22px;
  color: #000;
  font-weight: bold;
}

.service-content h4 {
  font-size: 22px;
  color: #000;
  font-weight: bold;
}

.service-content p {
  font-size: 18px;
  text-align: justify;
  line-height: 1.8;
  margin-top: 15px;
  margin-bottom: 25px;
}


.service-content img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin: auto;
  margin-bottom: 15px;
}

.service-content video {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  background: #000;
  max-height: 300px;
}

.service-content table,
td,
th {
  border: solid 1px #c8c8c8;
  text-align: center;
}

.service-content table {
  width: 100%;
  border-collapse: collapse;
}

.service-wrap-7-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  max-width: 100%;
  opacity: 0.8;
}

.service-wrap-9 {
  position: relative;
  overflow: auto;
  padding: 30px 0 0 0;
}

.service-faq-title {
  color: #925940;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

.accordion-button {
  font-size: 18px !important;
  font-weight: bold;
  min-height: 70px;
  padding: 15px 30px;
  color: #000;
}

.accordion-button:not(.collapsed) {
  color: var(--color1);
  box-shadow: unset;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-item {
  border: 2px solid #cdcdcd;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 10px;
}

.accordion-header {
  margin: 0;
}

.accordion-button::after {
  margin-left: unset;
  margin-right: auto;
}

.accordion-body {
  padding: 20px 30px;
  line-height: 2;
  font-size: 18px;
  background: #f6f6f6;
  border-top: 2px solid #cdcdcd;

}

.accordion-body p {
  margin: 0;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.service-wrap-9-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  max-width: 100%;
}

.service-head-title {
  color: #925940;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

.service-wrap-10 {
  position: relative;
}

.service-wrap-10-flower {
  position: absolute;
  right: 0;
  top: -200px;
  z-index: -1;
  max-width: 100%;
}

.service-comment {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.service-comment-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  margin-left: 25px;
}

.service-comment-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.service-comment-text {
  font-size: 18px;
  margin-top: 10px;
  color: #999;
  line-height: 2;
}

.service-form input {
  background: #f5f5f5;
  width: 100%;
  height: 60px;
  padding: 15px;
  border: 0;
  font-size: 18px;
  margin-bottom: 20px;
  outline-color: var(--color2);
}

.service-form textarea {
  background: #f5f5f5;
  width: 100%;
  padding: 15px;
  border: 0;
  font-size: 18px;
  margin-bottom: 20px;
}

.service-form button {
  width: 100%;
  height: 60px;
  background: var(--color2);
  color: #fff;
  font-size: 20px;
  border: 0;
  outline: none;
  transition: 0.3s;
}

.service-form button:hover {
  background: var(--color1);
  color: #fff;
}

.service-wrap-11 {
  margin-top: 80px;
}



@media (max-width:767px) {
  .service-wrap-1 {
    height: 330px;
  }

  .service-wrap-1-img {
    object-position: left;
  }

  .service-wrap-2-title {
    font-size: 20px;
  }

  .service-wrap-2-head {
    padding-right: 20px;
  }

  .service-wrap-2-subtitle {
    font-size: 18px;
  }

  .service-wrap-2 {
    padding: 30px 0;
  }

  .service-wrap-2-text {
    font-size: 15px;
    margin-top: 20px;
  }

  .service-wrap-2-video {
    /*height: 200px;*/
    margin-top: 15px;
  }

  .service-wrap-3 {
    padding: 30px 0;
  }

  .service-wrap-3-img {
    object-fit: cover;
    padding: 0 30px;
  }

  .service-wrap-3-head {
    padding-right: 20px;
  }

  .service-wrap-3-title {
    font-size: 22px;
  }

  .service-wrap-3-subtitle {
    font-size: 18px;
  }

  .service-wrap-3-info {
    margin-top: 20px;
  }

  .service-wrap-3-text {
    font-size: 15px;
    margin-top: 15px;
  }

  .service-wrap-4 {
    padding: 30px 0;
  }

  .service-wrap-4-title {
    font-size: 18px;
    margin-bottom: 0;
  }

  .service-wrap-4-item img {
    height: 150px;
  }

  .service-wrap-4-btn {
    margin-top: 30px;
    font-size: 14px;
    min-width: unset;
  }

  .service-wrap-5 {
    padding: 30px 0;
  }

  .service-wrap-5-title {
    font-size: 18px;
  }

  .service-wrap-5-text {
    font-size: 15px;
  }

  .service-wrap-6 {
    padding: 20px 0;
  }

  .service-wrap-6-text {
    font-size: 16px;
  }

  .service-wrap-6-btn {
    font-size: 16px;
    margin: auto;
    margin-top: 10px;
    padding: 10px 20px;
  }

  .service-wrap-7 {
    padding: 30px 0;
  }

  .service-content h2 {
    font-size: 18px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content h4 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .service-wrap-9 {
    padding: 30px 0 0 0;
  }

  .service-faq-title {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .service-wrap-10-flower {
    top: 0;
    width: 40%;
  }

  .service-head-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .service-comment-img {
    width: 60px;
    height: 60px;
    margin-left: 20px;
  }

  .service-comment-title {
    font-size: 16px;
  }

  .service-comment {
    align-items: start;
    margin-bottom: 20px;
  }

  .service-comment-text {
    font-size: 14px;
  }

  .service-form input {
    height: 56px;
    font-size: 16px;
  }

  .service-form textarea {
    font-size: 16px;
  }

  .service-wrap-11 {
    margin-top: 40px;
  }

  .accordion {
    margin-top: 5px;
  }

  .accordion-button {
    padding: 10px;
    min-height: 50px;
    font-size: 15px !important;
  }

  .accordion-button::after {
    font-size: 16px;
  }

  .accordion-body {
    padding: 15px;
    font-size: 14px;
  }

}

/* contact */
.contact-wrap-1 {
  width: 100%;
}

.contact-wrap-2 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact-wrap-2-img {
  width: 100%;
}

.contact-wrap-2-info {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-wrap-2-title {
  font-size: 26px;
  color: #000;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-wrap-2-text {
  font-size: 18px;
  text-align: justify;
  line-height: 1.8;
  margin-top: 15px;
}

.contact-wrap-3 {
  background: #f6e9e2;
  padding: 30px 0;
}

.contact-wrap-3-item i {
  min-width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c87054;
  font-size: 28px;
  color: #fff;
  border-radius: 40px;
  margin-left: 20px;
}

.contact-wrap-3-title {
  font-size: 18px;
  color: #000;
}

.contact-wrap-3-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-wrap-4 {
  margin-top: 80px;
}

.contact-form input {
  width: 100%;
  height: 58px;
  margin-bottom: 25px;
  background: #f8f4f2;
  border: 0;
  box-shadow: -2px 2px 12px 0 #00000047;
  padding: 10px 20px;
  outline-color: var(--color2);
}

.contact-form textarea {
  width: 100%;
  margin-bottom: 25px;
  background: #f8f4f2;
  border: 0;
  box-shadow: -2px 2px 12px 0 #00000047;
  padding: 10px 20px;
  outline-color: var(--color2);
}

.contact-wrap-4-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.contact-form button {
  width: 100%;
  height: 58px;
  background: var(--color2);
  color: #fff;
  font-size: 20px;
  border: 0;
  outline: none;
  transition: 0.3s;
}

.contact-form button:hover {
  background: var(--color1);
  color: #fff;
}


.contact-map {
  overflow: hidden;
  position: relative;
  height: 0;
  height: 500px;
  width: 100%;
  background: #F4F4F4;
  /*margin-top: -55px;*/
  margin-top: 20px;
  z-index: -1;
}

.contact-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}


@media (max-width:767px) {
  .contact-wrap-1 {
    height: 280px;
    object-fit: cover;
  }

  .contact-wrap-2 {
    padding: 30px 0;
  }

  .contact-wrap-2-info {
    padding-left: 0;
  }

  .contact-wrap-2-title {
    font-size: 20px;
    margin-bottom: 0;
  }

  .contact-wrap-2-text {
    font-size: 15px;
  }

  .contact-wrap-2-img {
    margin-top: 20px;
  }

  .contact-wrap-3-item {
    justify-content: start;
    padding: 10px 0;
  }

  .contact-wrap-3 {
    padding: 20px 0;
  }

  .contact-wrap-3-item i {
    min-width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: 15px;
  }

  .contact-wrap-3-title {
    font-size: 16px;
  }

  .contact-wrap-4 {
    margin-top: 30px;
  }

  .contact-wrap-4-title {
    font-size: 18px;
  }

  .contact-form input {
    height: 50px;
  }

  .contact-form button {
    height: 50px;
  }

  .contact-form textarea {
    margin-bottom: 15px;
  }

  .contact-map {
    height: 300px;
    /*margin-top: -55px;*/
    z-index: -1;
  }
}



/* breadcrumb */

.breadcrumb {
  font-size: 14px;
  margin: 0;
  padding: 0;
  background: transparent;
  margin-top: 25px;
  margin-bottom: 25px;
}

li.breadcrumb-item a {
  color: #7D7D7D;
}

.breadcrumb-item.active a {
  color: var(--color1);
}
.breadcrumb-item.active {
  color: var(--color1);
}
li.breadcrumb-item a:hover {
  color: var(--color1);
}

@media (max-width:767px) {
  li.breadcrumb-item {
    white-space: nowrap;
  }

  .breadcrumb {
    font-size: 12px;
    flex-wrap: nowrap;
    overflow: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}


/* pagination */

.pagination {
  justify-content: center;
  padding-top: 40px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.page-link {
  width: 38px;
  height: 38px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #323232;
  margin: 0 5px;
  background: unset;
  background: transparent;
  border-radius: 0px !important;
  transition: 0.3s;
  border: 1px solid #00000040;
  line-height: 1;
}

a.page-link:hover {
  background: var(--color2);
  color: #fff;
}

.page-item:first-child .page-link {
  margin-right: 5px;
}

span.page-link:hover {
  background: #fff;
  color: var(--color2);
}

.page-link:focus {
  box-shadow: unset;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #c87054;
  border-color: #c87054;
}

.page-item-title .page-link {
  width: auto;
  height: auto;
  font-size: 14px;
  color: #323232;
}

.page-item-title .page-link {
  width: auto;
  height: 38px;
  font-size: 14px;
  color: #323232;
}

.page-item-title .page-link:hover {
  background: var(--color2);
  color: #fff;
}

@media (max-width:767px) {
  .pagination {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .page-link {
    margin: 0;
  }

  .page-link span {
    display: none;
  }


  .page-item-title {
    display: none;
  }

  .page-link {
    width: 30px;
    height: 30px;
    margin: 0 3px;
  }
}


/* sort */

.sort-body {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: #F8F6F3;
  border-radius: 0;
  padding: 15px;
}

.sort-title {
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
}

.sort-item-flex {
  display: flex;
}

.sort-item {
  border: 1px solid transparent;
  background: #fff;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 15px;
  border-radius: 0;
  margin-left: 10px;
  transition: 0.3s;
}

.sort-item.active {
  background: var(--color2);
  border-color: var(--color2);
  color: #fff;
}

@media (max-width:767px) {
  .sort-title {
    font-size: 12px;
    white-space: nowrap;
    margin-left: 10px;
  }

  .sort-item-flex {
    overflow: auto;
  }

  .sort-item {
    height: 28px;
    font-size: 12px;
    padding: 5px 10px;
    white-space: nowrap;
  }

  .sort-body {
    margin-bottom: 5px;
  }

}

/* blogs */


.blog-wrapper {
  width: 100%;
}

.news-blog {
  display: block;
}

.blog-list {
  position: relative;
  overflow: hidden;
}

.news-blog-img-body {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.news-blog-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  border-radius: 0
}

.news-blog-img:hover {
  transform: scale(1.1);
}

.news-blog-inner {
  padding: 15px;
}

.news-blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  transition: 0.3s;
}

.news-blog-title:hover {
  color: var(--color1);
}

.news-blog-text {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 5px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  height: 75px;
}

.news-blog-more {
  font-size: 14px;
  text-align: end;
  color: #D58066;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: start;
}


.news-blog-more i {
  margin-top: 5px;
  margin-right: 3px;
}

@media (max-width:767px) {

  .blog-wrapper {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

}


.banner-wrapper-item-body {
  display: flex;
  align-items: center;
  margin-top: 10px;
  color: var(--color2);
}

.banner-wrapper-item {
  display: flex;
  align-items: center;
  margin-left: 20px;
  color: var(--color1);
}

.banner-wrapper-item img {
  margin-right: 5px;
}

.blog-box {
  background: #fff;
  padding: 25px;
  border: 1px solid #00000026;
}

.blog-img {
  max-width: 100%;
  display: block;
  margin: auto;
  margin-bottom: 15px;
  margin-top: 20px;
}

.blog-title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}


.blog-content {
  margin-top: 15px;
}

.blog-content p {
  font-size: 16px;
  line-height: 2.14;
  text-align: justify;
  color: #000;
}

.blog-content img {
  max-width: 100%;
  display: block;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 15px;
}

.blog-content video {
  width: 100%;
  max-width: 100%;
  background: #000;
  max-height: 300px;
}

.blog-content table,
td,
th {
  border: solid 1px #c8c8c8;
  text-align: center;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
}


.blog-title h1 {
  font-size: 26px;
  font-weight: 700;
}

.blog-title h2 {
  font-size: 26px;
  font-weight: 700;
}

.blog-info {
  font-size: 18px;
  margin-top: 20px;
}

.blog-mute {
  color: #999999;
  font-size: 16px;
  margin-top: 15px;
}

.blog-box-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 1;
}

.blog-box-text {
  color: #8C8C8C;
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
}


.blog-mini {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.blog-mini-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-left: 10px;
  border-radius: 8px;

}

.blog-mini-title {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.blog-mini-date {
  font-size: 16px;
  color: var(--color2);
  margin-top: 10px;
}

.blog-item-2 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 17px;
  font-weight: 300;
  color: #000;
  border-bottom: 1px solid #00000033;
  padding-bottom: 20px;
}

.blog-item-2:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.relative-title {
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 28px;
  color: #000;
}

.blog-single {
  margin-top: 130px;
}

@media (max-width:767px) {


  .blog-single {
    margin-top: 70px;
  }

  .blog-content p {
    font-size: 13px;
  }

  .blog-box {
    margin-top: 17px;
  }

  .blog-title {
    font-size: 18px;
    margin-top: 0;
  }

  .blog-title h1 {
    font-size: 20px;
  }

  .blog-title h2 {
    font-size: 20px;
  }

  .blog-info {
    font-size: 16px;
    margin-top: 15px;
  }

  .blog-mute {
    color: #999999;
    font-size: 14px;
  }

  .blog-box {
    padding: 15px;
  }

  .blog-content {
    margin-top: 5px;
  }

  .blog-box-title {
    font-size: 18px;
  }

  .blog-mini-img {
    width: 70px;
    height: 70px;
  }

  .blog-mini-title {
    font-size: 14px;
  }

  .blog-item {
    margin-top: 15px;
    font-size: 15px;
    padding-bottom: 15px;
  }

  .relative-title {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .banner-wrapper-item {
    margin-right: 15px;
    font-size: 14px;
  }
}


.comment-item {
  margin-top: 25px;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 20px;
}

.comment-item:last-child {
  border: 0;
  padding-bottom: 0;
}

.comment-item-info {
  display: flex;
  align-items: center;
}

.comment-item-info i {
  background: #C9C9C9;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}

.comment-item-user {
  font-size: 16px;
  font-weight: 600;
  color: #7A7A7A;
  margin-left: 10px;
  margin-right: 10px;
}

.comment-item-date {
  font-size: 14px;
  color: #7A7A7A;
  margin-left: 10px;
}

.comment-item-text {
  font-size: 14px;
  margin-top: 15px;
}

.comment-item-action {
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.comment-item-action button {
  margin: 0;
  padding: 0;
  line-height: 1;
  margin-left: 15px;
  border: 0;
  background: transparent;
  color: #7A7A7A;
  display: flex;
  align-items: center;
}

.comment-item-action button:hover {
  color: #000;
}

.comment-form-replay {
  margin-top: 15px;
}

.btn-replay.active {
  color: var(--color2);
}

.comment-form-replay textarea {
  width: 100%;
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  border: 1px solid #00000040;
  font-size: 14px;
  outline-color: var(--color2);
  margin-bottom: 0;
}

.comment-form-replay input {
  width: 100%;
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  border: 1px solid #00000040;
  font-size: 14px;
  margin-top: 15px;
  outline-color: var(--color2);
}


.comment-form-replay button {
  width: 100%;
  border-radius: 10px;
  background: var(--color1);
  border: 1px solid var(--color1);
  padding: 10px;
  font-size: 14px;
  margin-top: 15px;
  color: #fff;
  transition: 0.3s;
}

.comment-form-replay button:hover {
  background: transparent;
  color: var(--color1);
}

.btn-fave.active {
  color: var(--color1);
}


.comment-form textarea {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #00000040;
  padding: 10px;
  font-size: 14px;
  outline-color: var(--color2);
  margin-bottom: 0;
  margin-top: 20px;
}

.comment-form input {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #00000040;
  padding: 10px;
  font-size: 14px;
  margin-top: 15px;
  outline-color: var(--color2);
}


.comment-form button {
  width: 100%;
  border-radius: 10px;
  background: var(--color1);
  border: 1px solid var(--color1);
  padding: 10px;
  font-size: 14px;
  margin-top: 15px;
  color: #fff;
  transition: 0.3s;
}

.comment-form button:hover {
  background: transparent;
  color: var(--color1);
}

.comment-answer {
  margin-top: 25px;
  border-top: 1px solid #DBDBDB;
  padding-top: 20px;
  display: flex;
  align-items: center;
  margin-right: 30px;
}


.comment-answer-user {
  font-size: 14px;
  margin-left: 10px;
}

.comment-answer-text {
  font-size: 14px;
}

.comment-answer i {
  background: #C9C9C9;
  color: #fff;
  width: 30px;
  min-width: 30px;
  height: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-left: 15px;
}

.product-comment-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}


.comment-form-rate {
  display: flex;
  align-items: center;
  justify-content: end;
}

.comment-form-rate-star {
  margin-right: 15px;
  margin-left: 15px;
  direction: ltr;
}

.comment-form-rate-text {
  font-size: 16px;
  text-align: center;
  color: #505050;
}

.wrapper-star input {
  display: none;
}

.wrapper-star label {
  margin: 0;
  cursor: pointer;
}

i.icon-star-empty {
  color: #7D7D7D;
}

i.icon-star {
  color: #f9bc00;
}


.blog-search {
  background: #F8F6F3;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 0px;
  padding: 0 10px;
  width: 100%;
  margin-top: 15px;
}

.blog-search button {
  font-size: 18px;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
}

.blog-search input {
  border: 0;
  outline: none;
  width: 100%;
  font-size: 15px;
  padding-right: 5px;
  background: transparent;
}


.com-box-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.com-box-text {
  font-weight: 300;
  margin-top: 10px;
  color: #000;
}

.com-box-form {
  display: flex;
  flex-direction: column;
}

.com-box-form input {
  height: 50px;
  background: #F0EDE5;
  border: 1px solid transparent;
  margin-top: 5px;
  padding: 10px;
  outline-color: var(--color1);
  border-radius: 10px;
}

.com-box-form textarea {
  background: #F0EDE5;
  border: 1px solid transparent;
  margin-top: 5px;
  padding: 10px;
  outline-color: var(--color1);
  border-radius: 10px;
}

.com-box-form label {
  font-size: 18px;
}

.com-box-code input {
  background: #F0EDE5;
  border: 0;
  height: 40px;
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
  outline-color: var(--color1);
  width: 100%;
  max-width: 150px;
}

.com-box-code img {
  width: 140px;
}

.com-box-code {
  display: flex;
  align-items: center;
  white-space: nowrap;
}



.com-box-submit {
  height: 50px;
  background: var(--color1);
  border: 1px solid var(--color1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
  margin-top: 15px;
}

.com-box-submit:hover {
  background: #000;
  color: #fff;
}


@media (max-width:767px) {
  .com-box-title {
    font-size: 16px;
  }

  .com-box-text {
    margin-top: 10px;
    font-size: 14px;
  }

  .com-box-form label {
    font-size: 14px;
  }

  .com-box-form input {
    height: 40px;
    margin-top: 0px;
  }

  .com-box-mute {
    font-size: 12px;
  }

  .comment-form-rate-text {
    font-size: 14px;
  }

  .com-box-recode {
    margin-top: 10px;
    font-size: 14px;
    display: block;
  }


  .com-box-submit {
    height: 50px;
    padding: 8px;
    margin-top: 10px;
    width: max-content;
  }

}

.com-box-recode {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
  display: block;
}
.mce-toc{
  border: 1px solid #00000026;
  padding: 25px;
  margin: 20px 0 20px 0;
}
h1, h2, h3, h4, h5 {
  scroll-margin-top: 140px;
}

.mce-toc p{
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 1;
}
.mce-toc ul {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}
.mce-toc li {
  margin: 10px 0;
  font-size: 16px;
}
.mce-toc a {
  text-decoration: none;
  color: #925940;
  transition: color 0.3s ease;
}
.logo-text {
  direction: rtl;
  text-align: right;
  text-indent: 7px;
}
.logo-text h1 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #444;
  text-indent: -99999em;
}
/* contact us */

.contact-map {
  overflow: hidden;
  position: relative;
  height: 0;
  height: 500px;
  width: 100%;
  background: #F4F4F4;
  z-index: 1;
}

.contact-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.contact-box {
  padding: 25px;
  background: #fff;
  border: 1px solid #00000026;
}

.contact-item {
  padding: 25px;
  background: #fff;
  display: flex;
  align-items: center;
  min-height: 124px;
  margin-top: 25px;
  border: 1px solid #00000026;
}

.contact-item:first-child {
  margin-top: 0;
}

.contact-item i {
  min-width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1);
  font-size: 28px;
  color: #fff;
  border-radius: 40px;
  margin-left: 20px;
}

.contact-item-title {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

a.contact-item-title:hover {
  color: var(--color1);
}

@media (max-width:767px) {
  .contact-map {
    height: 180px;
  }

  .contact-box {
    padding: 15px;
  }

  .contact-item i {
    min-width: 50px;
    height: 50px;
    font-size: 20px;
    margin-right: 15px;
  }

  .contact-item-title {
    font-size: 16px;
  }

  .contact-item {
    padding: 15px;
    min-height: auto;
    margin-top: 15px;
  }
}


.contact-us-form-title {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--color1);
  padding-bottom: 5px;
  color: var(--color2);
}

.contact-us-form input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
  border-radius: 20px;
  background: #F0EDE5;
  height: 50px;
}

.contact-us-form textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #eee;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
  border-radius: 20px;
  background-color: #F0EDE5;
}


.contact-us-form label {
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  color: #979797;
}

.contact-us-form input:focus {
  border-color: var(--color2);
}

.contact-us-form textarea:focus {
  border-color: var(--color2);
}

.contact-us-form button {
  background: var(--color1);
  border: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 5px 30px;
  border-radius: 20px;
  transition: 0.3s;
  height: 50px;
}

.contact-us-form button:hover {
  background: var(--color2);
  color: #fff;
}

.contact-box-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.contact-info-text {
  text-align: justify;
  font-size: 17px;
  font-weight: 300;
  line-height: 2;
}

@media (max-width:767px) {
  .contact-info-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact-box-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact-info-text {
    font-size: 13px;
  }

  .responsive-map {
    padding-bottom: 200px;
  }

  .responsive-map iframe {
    height: 200px;
  }

  .contact-box {
    padding: 15px;
  }

  .contact-box-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-us-form label {
    font-size: 14px;
  }

  .contact-us-form button {
    height: 36px;
    width: auto;
    font-size: 12px;
  }

}
/*REgister Form MOdal nobat*/

.modal-login-btn {
  width: 100%;
  margin-top: 15px;
  height: 41px;
  border-radius: 8px;
  transition: 0.3s;
  background: var(--color2);
  border: 1px solid var(--color2);
  color: #fff;
}
.modal-login-input {
  height: 39px;
  width: 100%;
  background: #fff;
  border: 1px solid #C4C7C7;
  padding: 10px;
  border-radius: 8px;
  outline-color: var(--color2);
  margin-top: 20px;
}
@media (min-width: 768px) {
  .modal-login-text {
    /*margin-top: 7px;*/
    margin-right: unset;
    /*margin-bottom: 15px;*/
    text-align: center;
    font-size: 13px;
    font-weight: bolder;
  }
}
.navbar-btn-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7b7b7e;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  padding: 10px 30px;
  margin-right: 15px;
  white-space: nowrap;
}

.navbar-btn-cancel:hover {
  background: #4d4d4d;
  color: #fff;
}