.default-offcanvas-area {
  top: -20%;
  opacity: 0;
  visibility: hidden;
  transform: perspective(359px) rotateX(25deg);
}

.default-offcanvas-area {
  background-color: #F5EDE9;
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 50px;
  z-index: 1;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .default-offcanvas-area {
    padding: 40px;
  }
}

/* */

.offcanvas__area .offcanvas {
  text-align: center;
  padding: 75px 50px;
  background-color: var(--black-3);
  overflow-y: scroll;
}

.light .offcanvas__area .offcanvas {
  background-color: var(--white-2);
}

@media only screen and (max-width: 1399px) {
  .offcanvas__area .offcanvas {
    padding: 50px 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas__area .offcanvas {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__area .offcanvas {
    padding: 20px 0;
  }
}

.dir-rtl .offcanvas__area .offcanvas.offcanvas-end {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

.offcanvas__area .offcanvas.show:not(.hiding),
.offcanvas__area .offcanvas .showing {
  transform: none;
}

.offcanvas__area-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--black-3);
  opacity: 0;
  visibility: hidden;
}

.offcanvas__inner-2 {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
}

.offcanvas__left-2 {
  height: 100vh;
  padding: 60px 50px 30px;
  background-color: var(--black-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offcanvas__right-2 {
  padding: 60px 50px 30px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--black-3);
}

.offcanvas__contact li {
  padding-bottom: 30px;
}

.offcanvas__contact li:first-child {
  padding-bottom: 40px;
}

.offcanvas__contact li:first-child p {
  font-weight: 600;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.offcanvas__contact li:first-child a {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.offcanvas__contact li p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--gray-4);
  padding-bottom: 5px;
  margin-bottom: 0;
}

.offcanvas__contact li a,
.offcanvas__contact li span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
  display: inline-block;
}

.offcanvas__close {
  position: absolute;
  top: 15px;
  inset-inline-end: 15px;
  font-size: 20px;
  color: var(--white);
  padding: 0 10px;
  z-index: 99;
}

.light .offcanvas__close {
  color: var(--black-2);
}

.offcanvas__close:hover {
  color: var(--primary);
}

.offcanvas__close-2 button {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: var(--black-6);
  position: relative;
}

.offcanvas__close-2 button span {
  width: 30px;
  height: 1px;
  display: inline-block;
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
}

.offcanvas__close-2 button span:first-child {
  transform: translateX(-50%) rotate(45deg);
}

.offcanvas__close-2 button span:last-child {
  transform: translateX(-50%) rotate(-45deg);
}

.offcanvas__logo {
  position: relative;
  padding-bottom: 140px;
}

@media only screen and (max-width: 1399px) {
  .offcanvas__logo {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas__logo {
    padding-bottom: 20px;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__logo {
    padding: 0 15px;
  }
}

.offcanvas__logo::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 1px;
  bottom: 70px;
  left: calc(50% - 70px);
  background-color: var(--black-6);
}

@media only screen and (max-width: 1399px) {
  .offcanvas__logo::after {
    bottom: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas__logo::after {
    display: none;
  }
}

.offcanvas__logo img {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
  .offcanvas__logo img {
    max-width: 110px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__logo img {
    max-width: 90px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas__logo p {
    display: none;
  }
}

.offcanvas__menu {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .offcanvas__menu {
    display: block;
  }
}

.offcanvas__menu-area {
  overflow: hidden;
  display: none;
  position: relative;
  padding-bottom: 140px;
}

@media only screen and (max-width: 1399px) {
  .offcanvas__menu-area {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas__menu-area {
    padding-bottom: 20px;
    display: block;
  }
}

.offcanvas__menu-area::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 1px;
  bottom: 70px;
  left: calc(50% - 70px);
  background-color: var(--black-6);
}

@media only screen and (max-width: 1399px) {
  .offcanvas__menu-area::after {
    bottom: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas__menu-area::after {
    display: none;
  }
}

.offcanvas__menu-2 li {
  padding-bottom: 10px;
}

.offcanvas__menu-2 li a {
  font-weight: 600;
  font-size: 70px;
  line-height: 89px;
  color: var(--gray-14);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.offcanvas__menu-2 li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  transition: all 0.5s;
  opacity: 0;
}

.offcanvas__menu-2 li a::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 65px;
  top: 5px;
  background-color: var(--primary);
  transform: scale(0);
  transition: all 0.5s;
  z-index: -1;
}

.offcanvas__menu-2 li a:hover {
  color: var(--white);
  padding-left: 70px;
}

.offcanvas__menu-2 li a:hover::before {
  width: 60px;
  opacity: 1;
}

.offcanvas__menu-2 li a:hover::after {
  transform: scale(1);
}

.offcanvas__lang {
  gap: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.offcanvas__lang .language {
  gap: 30px;
  display: flex;
}

.offcanvas__lang .language li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  display: inline-block;
  text-transform: capitalize;
  position: relative;
}

.offcanvas__lang .language li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
  background-color: var(--white);
}

.offcanvas__lang .language li a:hover {
  color: var(--primary);
}

.offcanvas__lang .language li a:hover::after {
  width: 0;
}

.offcanvas__follow-2 {
  text-align: right;
  position: relative;
}

.offcanvas__follow-2 span {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--black-6);
}

.offcanvas__follow-2 a {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  writing-mode: tb-rl;
  transform: rotate(180deg) translate(28px, 30px);
}

.offcanvas__follow-2 a:hover {
  color: var(--primary);
}

.offcanvas__footer-2 p {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-4);
}

body .offcanvas__footer-2 a {
  color: var(--white);
  text-decoration: none;
  ;
}

.offcanvas__footer-2 .default-search__again-form form input {
  width: 100%;
  height: 37px;
  padding: 0;
  color: var(--black-2);
}

.offcanvas__footer-2 form button {
  font-size: 14px;
  color: var(--gray);
}

.offcanvas__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  padding-bottom: 20px;
  text-transform: capitalize;
}

.offcanvas__gallery {
  position: relative;
  padding-bottom: 140px;
}

@media only screen and (max-width: 1399px) {
  .offcanvas__gallery {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas__gallery {
    display: none;
  }
}

.offcanvas__gallery::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 1px;
  bottom: 67px;
  left: calc(50% - 70px);
  background-color: var(--black-6);
}

@media only screen and (max-width: 1399px) {
  .offcanvas__gallery::after {
    bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__gallery::after {
    bottom: 20px;
  }
}

.offcanvas__media li {
  display: inline-block;
}

.offcanvas__media li a {
  display: block;
  color: var(--gray);
  font-size: 20px;
  padding: 0 10px;
}

.offcanvas__media li a:hover {
  color: var(--primary);
}

.offcanvas__footer-2 {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas__footer-2 a {
  color: var(--white);
}

.offcanvas__footer-2 a:hover {
  color: var(--primary);
}

.offcanvas__footer-2 form {
  width: 220px;
}

.offcanvas__footer-2 form input,
.offcanvas__footer-2 form .cf-details-comment__field textarea,
.cf-details-comment__field .offcanvas__footer-2 form textarea,
.offcanvas__footer-2 form .dt-inap__appointment textarea,
.dt-inap__appointment .offcanvas__footer-2 form textarea,
.offcanvas__footer-2 form .elc-inbd-comment__field textarea,
.elc-inbd-comment__field .offcanvas__footer-2 form textarea {
  width: 100%;
  font-size: 14px;
  color: var(--gray);
  border: none;
  outline: none;
  padding-bottom: 5px;
  background-color: transparent;
  border-bottom: 1px solid var(--gray-6);
  background-image: url(../imgs/icons/search.png);
  background-repeat: no-repeat;
  background-position: right 0;
}

.offcanvas__footer-2 form input:hover,
.offcanvas__footer-2 form .cf-details-comment__field textarea:hover,
.cf-details-comment__field .offcanvas__footer-2 form textarea:hover,
.offcanvas__footer-2 form .dt-inap__appointment textarea:hover,
.dt-inap__appointment .offcanvas__footer-2 form textarea:hover,
.offcanvas__footer-2 form .elc-inbd-comment__field textarea:hover,
.elc-inbd-comment__field .offcanvas__footer-2 form textarea:hover {
  opacity: 1;
  color: var(--gray);
}

.mb-145 {
  margin-bottom: 145px;
}

.offcanvas-3__area {
  background: var(--black-2);
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 50px 50px 100px;
  z-index: 1000;
  overflow: hidden;
}

@media (max-height: 500px) {
  .offcanvas-3__area {
    padding: 40px;
  }
}

.offcanvas-3__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .offcanvas-3__inner {
    grid-template-columns: 260px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas-3__inner {
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
  }
}

@media (max-height: 500px) {
  .offcanvas-3__inner {
    overflow-y: scroll;
  }
}

.offcanvas-3__inner::-webkit-scrollbar {
  width: 0;
}

.offcanvas-3__meta li {
  font-size: 18px;
  line-height: 20px;
  color: var(--white);
  text-transform: uppercase;
}

.offcanvas-3__meta li:not(:last-child) {
  margin-bottom: 19px;
}

.offcanvas-3__meta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
}

.offcanvas-3__social .title {
  font-size: 18px;
  line-height: 20px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offcanvas-3__social-links {
  display: flex;
  gap: 20px;
}

.offcanvas-3__social-links a {
  font-size: 18px;
  width: 20px;
  color: var(--white);
}

.offcanvas-3__menu {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.offcanvas-3__menu ul {
  position: relative;
}

.offcanvas-3__menu ul:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #333337;
  inset-inline-start: 8px;
  top: 0;
}

@media only screen and (max-width: 767px) {
  .offcanvas-3__menu ul:before {
    display: none;
  }
}

@media (max-height: 500px) {
  .offcanvas-3__menu ul:before {
    height: 100%;
  }
}

.offcanvas-3__menu li {
  padding-inline-start: 58px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .offcanvas-3__menu li {
    padding-left: 0;
  }
}

.offcanvas-3__menu li:hover>a {
  color: var(--white);
}

.offcanvas-3__menu li:hover:before {
  opacity: 1;
  visibility: visible;
}

.offcanvas-3__menu li:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  background: var(--white);
  border-radius: 50%;
  border: 4px solid var(--black-2);
  inset-inline-start: 0;
  top: 38%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

@media only screen and (max-width: 767px) {
  .offcanvas-3__menu li:before {
    display: none;
  }
}

.offcanvas-3__menu li:not(:last-child) {
  margin-bottom: 26px;
}

.offcanvas-3__menu li a {
  font-size: 120px;
  color: #666666;
  text-transform: uppercase;
  line-height: 0.9;
  position: relative;
  transition: all 0.5s cubic-bezier(0, 0, 0.23, 1);
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #fff, #ddd 50%, #666 0);
  background-size: 200% 100%;
  background-position: 100%;
  transform: perspective(359px) rotateY(-18deg);
}

.offcanvas-3__menu li a:hover {
  background-position: 0;
  color: #fff;
  letter-spacing: 1.5px;
}

@media only screen and (max-width: 1399px) {
  .offcanvas-3__menu li a {
    font-size: 7vh;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas-3__menu li a {
    font-size: 6vh;
  }
}

@media only screen and (max-width: 991px) {
  .offcanvas-3__menu li a {
    font-size: 5vw;
  }
}

.offcanvas-3__menu-wrapper {
  display: flex;
  align-items: flex-end;
  overflow-y: hidden;
}

.offcanvas-4__area {
  background-color: #F5EDE9;
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 50px;
  z-index: 11;
  overflow: hidden;
}

.offcanvas-4__social-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-2);
}

.offcanvas-4__social-title.has-left-line {
  padding-left: 60px;
}

.offcanvas-4__social-title.has-left-line:before {
  width: 50px;
}

.offcanvas-4__social {
  display: flex;
  align-items: center;
  transform: rotate(270deg) translateX(-50%);
  gap: 30px;
  transform-origin: 0% 0;
  margin-right: auto;
}

.offcanvas-4__social-links {
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
}

.offcanvas-4__social-links a {
  font-size: 20px;
  color: var(--black-2);
}

.offcanvas-4__content-wrapper {
  display: grid;
  grid-template-columns: 30px 22% 1fr 255px;
  grid-gap: 140px;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}

@media only screen and (max-width: 1700px) {
  .offcanvas-4__content-wrapper {
    grid-gap: 80px;
  }
}

@media only screen and (max-width: 1399px) {
  .offcanvas-4__content-wrapper {
    grid-gap: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas-4__content-wrapper {
    grid-template-columns: 30px 22% 1fr 195px;
  }
}

@media only screen and (max-width: 991px) {
  .offcanvas-4__content-wrapper {
    grid-template-columns: 80px 1fr 195px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas-4__content-wrapper {
    grid-template-columns: 1fr 170px;
  }
}

@media (max-width: 575px) {
  .offcanvas-4__content-wrapper {
    grid-template-columns: 1fr;
  }
}

.offcanvas-4__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  height: 100%;
}

.offcanvas-4__menu {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  align-items: center;
}

.offcanvas-4__menu .sub-menu li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas-4__menu a {
  font-size: 4vw;
  line-height: 1;
  color: var(--black-2);
}

@media only screen and (max-width: 767px) {
  .offcanvas-4__menu a {
    font-size: 6vw;
  }

  .offcanvas-4__menu .sub-menu {
    padding-top: 15px;
    padding-left: 15px;
  }
}

.offcanvas-4__menu li:not(:last-child) {
  margin-bottom: 26px;
}

.offcanvas-4__menu.hover-border-move li a::after {
  bottom: 15px;
}

.offcanvas-4__menu-wrapper {
  height: 100%;
  overflow: hidden;
}

.offcanvas-4__meta li {
  font-size: 16px;
  color: var(--black-2);
}

.offcanvas-4__meta li:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .offcanvas-4__meta li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.offcanvas-4__button-wrapper {
  position: absolute;
  right: 50px;
  top: 50px;
}

.wcf-offcanvas-gl-style {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.wcf-offcanvas-gl-style .sub-menu {
  padding-top: 20px;
  padding-left: 30px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: #000;
  transition: all 0.3s;
  pointer-events: none;
  display: none;
}

.wcf-offcanvas-gl-style .menu-item-has-children:hover {
  position: relative;
  z-index: 9;
}

.wcf-offcanvas-gl-style .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block;
}

@media only screen and (max-width: 767px) {
  .offcanvas-4__button-wrapper {
    right: 40px;
    top: 40px;
  }
}

.offcanvas-5__area {
  z-index: 10;
  left: -20%;
  opacity: 0;
  visibility: hidden;
  padding: 60px 50px 100px;
  background-color: #6C7DB8;
  transform: perspective(359px) rotateX(0deg);
}

.offcanvas-5__area .sub-menu {
  background-color: #6C7DB8;
}

.offcanvas-5__inner {
  display: grid;
  grid-gap: 235px;
  grid-template-columns: auto 1fr auto;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .offcanvas-5__inner {
    grid-gap: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .offcanvas-5__inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}

.offcanvas-5__logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

@media only screen and (max-width: 991px) {
  .offcanvas-5__logo-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.offcanvas-5__content-wrapper {
  display: flex;
  gap: 50px;
  flex-direction: column;
  justify-content: space-between;
}

.offcanvas-5__meta-wrapper {
  display: flex;
  gap: 100px;
}

.offcanvas-5__lang {
  display: flex;
  gap: 30px;
}

.offcanvas-5__lang a {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.offcanvas-5__menu a {
  font-size: 110px;
  line-height: 1.2;
}

.offcanvas-5__menu {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.offcanvas-5__menu a:hover {
  color: var(--white);
}

.offcanvas-5__menu li:not(:last-child) {
  margin-bottom: -12px;
}

@media only screen and (max-width: 1919px) {
  .offcanvas-5__menu li:not(:last-child) {
    margin-bottom: 0;
  }
}

.offcanvas-5__menu>ul>li {
  counter-increment: menu-item;
}

.offcanvas-5__menu>ul>li>a {
  display: flex;
  gap: 10px;
}

.offcanvas-5__menu>ul>li>a:after {
  content: counter(menu-item, decimal-leading-zero);
  font-size: 14px;
  line-height: 26px;
}

.offcanvas-5__meta li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.offcanvas-5__meta li:not(:last-child) {
  margin-bottom: 20px;
}

.offcanvas-5__social-title {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--black-2);
  font-weight: 600;
  margin-bottom: 10px;
}

.offcanvas-5__social-links {
  display: flex;
  gap: 20px;
}

.offcanvas-5__social-links a {
  font-size: 18px;
}

.offcanvas-5__social-links a:hover {
  color: var(--white);
}

.offcanvas-6__area {
  background-color: #AF89FF;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: hidden;
  visibility: hidden;
}

.offcanvas-6__area .sub-menu {
  padding-top: 0;
  background-color: #F4E5D3;
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__area {
    background-color: #F4E5D3;
  }
}

.offcanvas-6__inner {
  display: grid;
  grid-template-columns: 1fr 615px;
  height: 100%;
  overflow-y: scroll;
  position: relative;
}

@media only screen and (max-width: 1399px) {
  .offcanvas-6__inner {
    grid-template-columns: 1fr 460px;
  }
}

@media only screen and (max-width: 991px) {
  .offcanvas-6__inner {
    grid-template-columns: 1fr auto;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__inner {
    grid-template-columns: 1fr;
  }
}

.offcanvas-6__menu-wrapper {
  background: #F4E5D3;
  border-right: 3px solid var(--black-2);
  padding-left: 80px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

@media only screen and (max-width: 1399px) {
  .offcanvas-6__menu-wrapper {
    padding-bottom: 55px;
  }
}

@media only screen and (max-width: 1399px) {
  .offcanvas-6__menu-wrapper {
    padding-bottom: 35px;
    padding-left: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__menu-wrapper {
    border-right: 0;
    padding-right: 40px;
  }
}

.offcanvas-6__logo {
  border-bottom: 3px solid var(--black-2);
  padding: 40px 0;
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__logo {
    padding: 20px 0;
  }
}

.offcanvas-6__logo img {
  max-height: 50px;
}

.offcanvas-6__menu {
  overflow-y: auto;
  overflow-x: hidden;
}

.offcanvas-6__menu a {
  font-size: 5vw;
  font-weight: 600;
  line-height: 0.7;
  position: relative;
  transition: all 0.5s cubic-bezier(0, 0, 0.23, 1);
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #AF89FF, #AF89FF 50%, #080808 0);
  background-size: 200% 100%;
  background-position: 100%;
  transform: perspective(359px) rotateY(-18deg);
}

@media only screen and (max-width: 1919px) {
  .offcanvas-6__menu a {
    font-size: 4vw;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__menu a {
    font-size: 8.2vw;
    font-weight: 500;
  }
}

.offcanvas-6__menu a:hover {
  background-position: 0;
  color: #AF89FF;
  letter-spacing: 1.5px;
}

.offcanvas-6__menu a:after {
  position: absolute;
  content: "";
  background-image: url(../imgs/content-creator/smile.png);
  background-size: contain;
  width: 80px;
  height: 80px;
  left: calc(100% + 40px);
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

@media only screen and (max-width: 1919px) {
  .offcanvas-6__menu a:after {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas-6__menu a:after {
    display: none;
  }
}

.offcanvas-6__menu a:hover:after {
  opacity: 1;
  visibility: visible;
}

.offcanvas-6__menu li {
  margin-right: 200px;
  margin-top: 20px;
}

@media only screen and (max-width: 1919px) {
  .offcanvas-6__menu li {
    margin-right: 140px;
  }
}

@media only screen and (max-width: 1199px) {
  .offcanvas-6__menu li {
    margin-right: 60px;
  }
}

.offcanvas-6__menu li:not(:last-child) {
  margin-bottom: 47px;
}

.offcanvas-6__meta-wrapper {
  padding: 60px 80px 150px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: flex-end;
  background-color: #AF89FF;
}

@media only screen and (max-width: 1399px) {
  .offcanvas-6__meta-wrapper {
    padding: 60px 60px 65px;
  }
}

@media only screen and (max-width: 991px) {
  .offcanvas-6__meta-wrapper {
    padding: 40px 40px 45px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__meta-wrapper {
    background-color: #F4E5D3;
    display: none;
  }
}

.offcanvas-6__close-button {
  position: absolute;
  top: 60px;
  right: 65px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__close-button {
    top: 40px;
    right: 45px;
  }
}

.offcanvas-6__links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.offcanvas-6__meta-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--black-2);
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__meta-title {
    font-size: 26px;
  }
}

.offcanvas-6__meta li {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: var(--black);
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__meta li {
    font-size: 18px;
  }
}

.offcanvas-6__meta li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas-6__social-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--black-2);
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .offcanvas-6__social-title {
    font-size: 26px;
  }
}

.offcanvas-6__social-links {
  display: flex;
  gap: 22px;
}

.offcanvas-6__social-links a {
  width: 95px;
  height: 95px;
  background-color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  border-radius: 30px;
  border: 3px solid var(--black-2);
  filter: drop-shadow(5px 5px 0 black);
  color: var(--black-2);
}

@media only screen and (max-width: 1399px) {
  .offcanvas-6__social-links a {
    width: 60px;
    height: 60px;
    font-size: 22px;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .offcanvas-6__social-links a {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

.offcanvas-6__social-links a:hover {
  background-color: var(--yellow-3);
}

.shadow-close-button {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: var(--white);
  position: relative;
  border: 3px solid var(--black-2);
  filter: drop-shadow(5px 5px 0 var(--black-2));
  transition: all 0.3s;
}

.shadow-close-button:hover {
  background-color: var(--yellow-3);
}

.shadow-close-button span {
  width: 30px;
  height: 3px;
  display: inline-block;
  background-color: var(--black-2);
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 3px;
}

.shadow-close-button span:first-child {
  transform: translateX(-50%) rotate(45deg);
}

.shadow-close-button span:last-child {
  transform: translateX(-50%) rotate(-45deg);
}

.cross-button {
  width: 130px;
  height: 130px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .cross-button {
    width: 60px;
    height: 60px;
  }
}

.cross-button span {
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: var(--black-2);
  position: absolute;
  left: 50%;
  top: 50%;
}

.cross-button span:first-child {
  transform: translateX(-50%) rotate(45deg);
}

.cross-button span:last-child {
  transform: translateX(-50%) rotate(-45deg);
}

.text-close-button {
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.text-close-button .bars {
  width: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.text-close-button .bars span {
  width: 100%;
  height: 1px;
  background: var(--black-2);
}

.close-button {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: var(--black-2);
  position: relative;
  border: 1px solid #333337;
}

@media only screen and (max-width: 767px) {
  .close-button {
    width: 50px;
    height: 50px;
  }
}

.close-button span {
  width: 26px;
  height: 1px;
  display: inline-block;
  background-color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
}

@media only screen and (max-width: 767px) {
  .close-button span {
    width: 20px;
  }
}

.close-button span:first-child {
  transform: translateX(-50%) rotate(45deg);
}

.close-button span:last-child {
  transform: translateX(-50%) rotate(-45deg);
}

.gallery__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.gallery__item {
  position: relative;
}

.gallery__item a {
  display: block;
}

.gallery__item a:hover span {
  opacity: 1;
  visibility: visible;
}

.gallery__item span {
  color: var(--white);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.4);
}

#offcanvas6 {
  visibility: hidden;
}

.offcanvas-6__menu-wrapper {
  left: -100%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transform: perspective(359px) rotateY(25deg);
}

.offcanvas-6__meta-wrapper {
  left: 100%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transform: perspective(359px) rotateY(-25deg);
}

.offcanvas-6__menu ul li {
  opacity: 0;
  left: -100px;
  position: relative;
}

.second_level_canvas {
  opacity: 0;
  scale: 0.8;
}

.offcanvas-6__social-title {
  opacity: 0;
  position: relative;
  left: -50px;
  overflow: hidden;
}

.offcanvas-6__social-links a {
  opacity: 0;
  scale: 0.8;
  left: -15px;
}

#main_btn {
  position: relative;
  z-index: 999999;
  background-color: red;
  padding: 30px;
}

.offcanvas-4__area {
  top: -20%;
  opacity: 0;
  visibility: hidden;
  transform: perspective(359px) rotateX(25deg);
}

.offcanvas-4__menu ul li {
  opacity: 0;
  visibility: hidden;
  transform: perspective(250px) rotateX(90deg);
  top: -10px;
}

.offcanvas-4__thumb {
  opacity: 0;
  left: 50px;
  visibility: hidden;
  position: relative;
}

.offcanvas-4__meta {
  opacity: 0;
  left: -50px;
  visibility: hidden;
  position: relative;
}

.offcanvas-3__area {
  left: 0%;
  opacity: 0;
  top: 0;
  visibility: hidden;
  transform: perspective(359px) rotateY(50deg);
}

.offcanvas-3__menu ul li {
  opacity: 0;
  top: -100px;
  position: relative;
  transform: perspective(359px) rotateX(50deg);
}

.offcanvas-3__meta {
  opacity: 0;
  top: -30px;
  position: relative;
}

.offcanvas-3__social {
  opacity: 0;
  top: -30px;
  position: relative;
}

.offcanvas__left-2 {
  opacity: 0;
  top: -50%;
  position: relative;
}

.offcanvas__right-2 {
  opacity: 0;
  bottom: -50%;
  position: relative;
}

.offcanvas__menu-2 ul li {
  /*overflow: hidden;*/
  bottom: -60px;
  opacity: 0;
  position: relative;
}

.offcanvas__area-2 {
  overflow: hidden;
}

.offcanvas__area-2 .sub-menu {
  background: #212125;
}

.offcanvas__menu-2 {
  width: 90%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  align-items: center;
}

.offcanvas__menu-2 .menu {
  width: 100%;
}

.wcf-offcanvas-gl-style .has-left-line {
  position: relative;
  padding-inline-start: 37px;
  display: inline-block;
}

.wcf-offcanvas-gl-style .has-left-line:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background-color: currentColor;
  inset-inline-start: 0;
  border-inline-start: 1px;
  top: 50%;
}

.wcf-offcanvas-gl-style .offcanvas-4__menu.hover-border-move li a::after {
  bottom: 10px;
}

@media (max-width: 767px) {
  .wcf-offcanvas-gl-style .offcanvas-4__menu.hover-border-move li a::after {
    bottom: 3px;
  }
}

.wcf-offcanvas-gl-style .hover-border-move li a {
  position: relative;
  transition: all 0.5s;
}

.wcf-offcanvas-gl-style .hover-border-move li a:hover::after {
  width: 100%;
  left: auto;
  right: 0;
}

.wcf-offcanvas-gl-style .hover-border-move li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  background-color: currentColor;
}

.offcanvas-4__social-title.has-left-line {
  padding-left: 60px;
}

.open-offcanvas {
  cursor: pointer;
}

.offcanvas-3__area .sub-menu {
  padding-left: 0;
}


/* Large Tablet */
@media (max-width: 1365px) {
  .offcanvas__footer-2 {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .offcanvas__inner-2 {
    grid-template-columns: 1fr 2fr;
  }
  .offcanvas__left-2 {
    padding: 50px 30px 30px;
  }
  .default-search__again-form {
    width: 100%;
  }
  .offcanvas__footer-2 form {
    width: 100%;
  }
  .offcanvas__right-2 {
    padding: 50px 30px 30px 50px;
  }
  .offcanvas-3__area {
    padding: 50px 30px;
  }

  .offcanvas-3__menu li {
    padding-inline-start: 40px;
  }


}

/* Mobile */
@media (max-width: 767px) { 
  .offcanvas__left-2{
    height: 100%;
  }
  .offcanvas__right-2 {
    height: 100%;
    justify-content: flex-start;
    padding: 80px 15px 20px;
  }
  .offcanvas__close-2 button {
    width: 50px;
    height: 50px;
  }
  .offcanvas__close-2 button span {
    width: 20px;
  }
  .offcanvas__inner-2 {
    height: 100%;
    grid-template-columns: 1fr;
  }
  .offcanvas__close-2 {
    left: unset;
    top: 20px;
    right: 15px;
  }
  .offcanvas__follow-2 {
    margin-top: auto;
  }
  .offcanvas__menu-2 {
    width: 100%;
  }

  .offcanvas__menu-2 li a::after {
    width: 10px;
    height: 10px;
    left: 65px;
    top: 5px;
  }

  .offcanvas__menu-2 li a:hover::before {
    width: 30px;
  }

  .offcanvas__menu-2 li a::before {
    height: 2px;
  }
  .offcanvas-3__menu li {
    padding-inline-start: 0;
  }
  .offcanvas-3__area {
    padding: 90px 15px 50px;
  }
  .offcanvas-3__menu-wrapper {
    height: 100%;
  }
  .offcanvas-4__menu {
    align-items: flex-start;
  }
  .offcanvas-4__area {
    padding: 90px 15px 30px;
  }
  .offcanvas-4__menu li:not(:last-child) {
    margin-bottom: 20px;
  }
  .offcanvas-4__meta {
    display: none;
  }
  .offcanvas-5__meta-wrapper {
    flex-direction: column;
    gap: 40px;
    display: none;
  }
  .offcanvas-5__content-wrapper {
    height: 100%;
  }
  .offcanvas-5__area {
    padding: 40px 15px;
  }
  .wcf-offcanvas-gl-style .sub-menu {
    padding-left: 20px;
  }
  .offcanvas-6__menu-wrapper {
    justify-content: flex-start;
    padding: 30px 15px;
  }
  .offcanvas-6__menu {
    height: 100%;
  }

  .offcanvas-6__menu li:not(:last-child) {
    margin-bottom: 20px;
  }
  .offcanvas-6__menu li {
    margin-right: 0;
  }

}


@media (max-width: 1600px) {
  .offcanvas__area-2 .offcanvas__footer-2 {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: flex-start;
	}
  
 .offcanvas__area-2 .default-search__again-form {
    margin: 0;
    margin-bottom: 0;
	}
  
}