/*======================
   01.fonts
========================*/
/* @import url('https://fonts.googleapis.com/css2?family=Abel&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap'); */

:root {
  --gray: #d1d6ca;
  --light: #e0dbca;
  --orange: #f6891e;
  --blue: #396aa1;
  --theme: #e0dbca;
}

/*======================
   02. Basic css
========================*/
::-moz-selection {
  background-color: #000;
  color: #fff;
}
::selection {
  background-color: #000;
  color: #fff;
}
html {
  font-size: 62.5%;
}
a,
button,
img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
  background-color: #fff;
  color: #000;
  font-weight: 400;
  font-size: 2rem;
}
/*font-family: "Abel", sans-serif;
font-family: "Playfair Display", serif;*/

ol,
ul {
  list-style: none;
}

a:hover {
  text-decoration: none;
}
p a {
  color: #000;
  text-decoration: underline;
}
p a:hover {
  color: var(--light);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
h1 {
  font-size: 11rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  font-weight: 800;
}
h2 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.16;
}
h3 {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
}
h4 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
}
h5 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}
h6, .h6 {
  font-size: 2rem;
  text-transform: uppercase;
  font-family: 'Abel', sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
}
/* page loader  */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0rem;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #000;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
  cursor: pointer;
  display: none;
  z-index: 999;
  margin-left: 2rem;
  position: relative;
}
.hamburger-menu span {
  background: var(--dark_blue);
  width: 4rem;
  height: 0.4rem;
  display: block;
  margin: 0.55rem 0;
  border-radius: 2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
  -webkit-transform: translateY(245%) rotate(135deg);
  -ms-transform: translateY(245%) rotate(135deg);
  transform: translateY(245%) rotate(135deg);
}
.hamburger-menu .line-center.current {
  opacity: 0;
}
.hamburger-menu .line-bottom.current {
  -webkit-transform: translateY(-245%) rotate(-135deg);
  -ms-transform: translateY(-245%) rotate(-135deg);
  transform: translateY(-245%) rotate(-135deg);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1024;
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 3rem 3.5rem;
}

/*sticky START CSS*/
header.sticky {
  background-color: #000;
}
.logo {
  display: inline-block;
  width: 100%;
  max-width: 50rem;
}
.menu_toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  cursor: pointer;
  color: #fff;
  font-family: 'Abel', sans-serif;
  text-transform: uppercase;
  font-size: 2.2rem;
  position: relative;
  z-index: 3;
}
.menu_toggle img {
  width: 4rem;
}
.menu_toggle.open img {
  transform: rotate(45deg);
}
.right_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-family: 'Abel', sans-serif;
  text-transform: uppercase;
  font-size: 2.2rem;
  -webkit-column-gap: 10rem;
  -moz-column-gap: 10rem;
  column-gap: 10rem;
}
.back_link{
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-family: 'Abel', sans-serif;
  text-transform: uppercase;
  font-size: 2.2rem;
  color: #fff;
}
.back_link:hover{
  color: var(--gray);
}
.right_menu a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}
.right_menu a:hover {
  color: var(--gray);
}
.right_menu input {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  width: 17rem;
  padding-right: 3rem;
  border-bottom: 0.1rem solid #fff;
  background-image: url(../img/search.svg);
  background-size: 1.8rem;
  background-position: right center;
  background-repeat: no-repeat;
}
.right_menu input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.right_menu input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.right_menu input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.right_menu input::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.right_menu input::placeholder {
  color: #fff;
  opacity: 1;
}
.menu_wrap {
  position: fixed;
  top: 0;
  left: -100%;
  width: 58rem;
  height: 100vh;
  background-color: #000;
  z-index: 2;
  padding: 16rem 0rem 2rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.menu_wrap.current {
  left: 0;
}
.menu_inner {
  height: calc(100vh - 18rem);
  overflow: auto;
  padding: 0 12rem;
}
.menu_wrap ul li {
  margin-bottom: 2.5rem;
}
.menu_wrap ul li a {
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
}
.menu_wrap ul li a:hover,
.menu_wrap ul li a.active {
  color: var(--light);
}
.menu_wrap .button {
  border-color: #ffff;
  color: #fff;
  font-size: 1.6rem;
}
.menu_wrap .button:hover {
  background-color: #fff;
  color: #000;
}
.close_icon {
  position: absolute;
  right: 5rem;
  top: 4rem;
  color: #fff;
  font-size: 3.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.overlay {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
}
.overlay.current {
  opacity: 0.5;
  pointer-events: all;
}
/*buttons*/
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 0.1rem solid transparent;
  color: #000;
  font-weight: 500;
  line-height: 1.31;
  text-align: center;
  font-size: 2rem;
  background-color: #fff;
  padding: 1.7rem 3rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  text-decoration: none;
}
.button:hover {
  color: #fff;
  background-color: #000;
}
.outline {
  background-color: transparent;
  border-color: #000;
}
.outline:hover {
  background-color: #000;
  color: #fff;
}
.black_btn {
  background-color: #000;
  color: #fff;
}
.black_btn:hover {
  background-color: var(--light);
  color: #000;
  border-color: #000;
}
.white_btn {
  background-color: #fff;
  color: #000;
}
.white_btn:hover {
  background-color: var(--dark_blue);
  color: #fff !important;
}
.button_wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}

.row:not(.no-gutters) {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
.row:not(.no-gutters) > div {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.row:not(.no-gutters).sm_gutters {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.row:not(.no-gutters).sm_gutters > div {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/*home area*/
.home_area {
  background-color: #000;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20rem 0;
  height: 100vh;
  max-height: 108rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.home_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.home_slider .home_item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.home_slider .owl-stage,
.home_slider .owl-stage-outer,
.home_slider .owl-item,
.home_slider .home_item {
  height: 100%;
}
.home_content {
  max-width: 155rem;
}
.home_area h1 {
  margin-top: 2rem;
  text-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.2);
}
.top_title {
  background-color: #fff;
  padding: 1.1rem 2.2rem;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  font-family: 'Abel', sans-serif;
  font-size: 3rem;
  line-height: 1.26;
}
.home_area::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(140, 140, 140, 0) 50%,
    rgba(158, 173, 179, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.8)),
    color-stop(50%, rgba(140, 140, 140, 0)),
    to(rgba(158, 173, 179, 1))
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(140, 140, 140, 0) 50%,
    rgba(158, 173, 179, 1) 100%
  );
  width: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
}

.light_bg {
  background-color: var(--light);
}
.light_blue {
  background-color: #b7c0c3;
}
.title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
}
.inner_title {
    border-right: 1px solid #000;
    padding-right: 5.1rem;
    min-width: 32.1rem;
}
.slider_content {
  max-width: 75rem;
  padding: 6rem 0;
}
.slider_content ul {
  font-size: 3rem;
  font-weight: 500;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  margin-top: 5rem;
}
.slider_content ul li {
  margin-bottom: 1.5rem;
}
.slider_content ul li a{
    color: inherit;
    text-decoration: underline;
}
.slider_content .button {
  font-weight: 700;
}
.link_wrap {
  padding: 3rem 0;
  position: relative;
  top: -10.6rem;
  margin-bottom: -10.6rem;
  background-color: inherit;
  width: 50%;
  border-bottom: 0.1rem solid #fff;
  min-height: 10.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.link_wrap .link {
  font-size: 3rem;
}
.link_wrap .link:hover {
  color: #818181;
}
#sync1 {
  z-index: 3;
}
#sync1 .owl-stage-outer {
  overflow: visible;
}
.right_content {
  width: calc(100% + 12rem);
}
#sync1 .owl-nav button {
  position: absolute;
  bottom: -9.5rem;
}
#sync1 .owl-nav button.owl-prev {
  left: 2%;
}
#sync1 .owl-nav button.owl-next {
  right: 2%;
}
#sync1 + .control_wrap .owl-nav button{
    border: 0.1rem solid var(--light) !important;
    font-size: 2rem;
}
.control_wrap {
  text-align: center;
  margin-top: 3rem;
}
.controls_inner {
  display: inline-block;
  padding: 0 10rem;
  position: relative;
}
.controls_inner .owl-nav button {
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  border: none !important;
  font-size: 3rem;
}
.controls_inner .owl-nav button.owl-prev {
  left: 0;
}
.controls_inner .owl-nav button.owl-next {
  right: 0;
}
/*return-to-top START CSS*/
.back-to-top {
  font-size: 2.6rem;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  border-radius: 50%;
  background: var(--light);
  z-index: 1000;
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.3);
}

.back-to-top i {
  color: #000;
}
.owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.owl-dots button {
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 50%;
  padding: 0.1rem;
  margin-top: 1rem;
  border: 0.2rem solid #707070 !important;
  background-color: transparent;
}
.owl-dots button.active {
  background-color: #000;
  border-color: #000 !important;
}
.owl-nav button {
  padding: 0;
  color: var(--dark_blue);
  font-size: 2rem;
  height: 4rem;
  width: 4rem;
  background-color: #fff;
  border: 0.1rem solid #707070 !important;
}
.owl-nav button:hover {
  color: #000;
  background-color: var(--light);
}

/*exclusive area*/
.exclusive_area {
  position: relative;
  z-index: 2;
  padding-top: 9.5rem;
}
.exclusive_area p {
  margin-top: 3rem;
}
.features ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.3rem;
  -moz-column-gap: 2.3rem;
  column-gap: 2.3rem;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.features ul li img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.8rem;
  height: 3.4rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.news_box {
    background-color: #fff;
    border: 0.1rem solid #000;
    position: relative;
    height: 100%;
    display: block;
    color: inherit !important;
}
.news_img {
  display: block;
  overflow: hidden;
}
.news_img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5/3;
}
.news_box:hover .news_img img {
  transform: scale(1.1);
}
.news_content {
  padding: 5rem 5rem 11rem;
}
.news_content h5 {
  font-weight: 500;
  max-width: 38rem;
}
.news_content .link {
  position: absolute;
  left: 5rem;
  bottom: 5.5rem;
}
.link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
}
.link i {
  position: relative;
  top: 0.3rem;
  transition: 0.3s;
}
.link:hover {
  color: #000;
}
.link:hover i{
    transform: translateX(1rem);
}

/*video area*/
.video_area {
  padding-bottom: 15rem;
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}
.video_area::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 28.3rem);
  z-index: -1;
  background-color: var(--gray);
  opacity: 0.2;
}
.video_box {
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 54rem;
}
.video_box .play {
  display: block;
  width: 12rem;
}
.video_content {
  max-width: 52rem;
}
.video_content p {
  margin-top: 2.5rem;
}

/*trends area*/
.trends_area {
  position: relative;
  background-color: var(--gray);
}
.trends_content {
  max-width: 43rem;
  padding: 18rem 0;
}
.trends_content p {
  margin-top: 2rem;
  max-width: 41rem;
}
.slider_wrap {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  max-width: 121rem;
}
.nature_slider,
.nature_box,
.nature_slider .owl-stage-outer,
.nature_slider .owl-stage,
.nature_slider .owl-stage .owl-item {
  height: 100%;
}
.nature_box {
  padding: 6.5rem;
  position: relative;
  z-index: 1;
  color: #fff;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.nature_box::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 48%;
  z-index: -1;
  background: -o-linear-gradient(
    bottom,
    rgba(90, 90, 90, 1) 0%,
    rgba(90, 90, 90, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(90, 90, 90, 1)),
    to(rgba(90, 90, 90, 0))
  );
  background: linear-gradient(
    0deg,
    rgba(90, 90, 90, 1) 0%,
    rgba(90, 90, 90, 0) 100%
  );
  mix-blend-mode: multiply;
}
.nature_box p {
  font-size: 2.4rem;
  font-weight: 600;
}
.nature_box .top_title {
  font-size: 2rem;
  padding: 0.7rem 1rem 0.5rem;
  margin-bottom: 1rem;
}
.nature_slider .owl-nav {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  left: -3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nature_slider .owl-nav button {
  height: 6rem;
  width: 6rem;
  background-color: #fff;
  border: none !important;
  font-size: 3rem;
  margin: 1rem 0;
}
.nature_slider .owl-nav button:hover {
  background-color: var(--light);
}
.nature_slider .owl-dots {
  position: absolute;
  left: 0;
  bottom: 6rem;
  width: 100%;
}
.nature_slider .owl-dots button {
  background-color: #fff;
  border-color: #fff !important;
}
.nature_slider .owl-dots button.active {
  background-color: var(--light);
  border-color: var(--light) !important;
}

/*garante area*/
.garante_area {
  padding: 7rem 0 12rem;
}
.garante_box {
  position: relative;
  height: 100%;
  padding-bottom: 10rem;
}
.garante_box .button {
  position: absolute;
  left: 0;
  bottom: 0;
}
.garante_img {
  display: block;
  overflow: hidden;
  margin-bottom: 4rem;
}
.garante_box:hover .garante_img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.garante_box p {
  max-width: 68rem;
  margin-top: 3rem;
}

/*heft area*/
.heft_area {
  background-color: var(--light);
  padding: 7.5rem 0 12rem;
  text-align: center;
}
.heft_left {
  max-width: 123rem;
}
.heft_left p {
  margin-top: 2rem;
}
.heft_left .button {
  min-width: 21rem;
}
.heft_left .outline {
  background-color: #fff;
}
.heft_left .outline:hover {
  background-color: var(--light);
  color: #000;
}

/*footer*/
footer {
  padding: 5rem 0 10rem;
  background-color: #000000;
  color: #fff;
  font-size: 2rem;
  position: relative;
}
.flogo {
    position: absolute;
    display: inline-block;
    width: 8.8rem;
    top: -4.4rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.two_list ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
footer ul li {
  margin-bottom: 1rem;
  white-space: nowrap;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  opacity: 0.4;
}
footer h5 {
  color: var(--light);
  margin-bottom: 3.7rem;
  position: relative;
  z-index: 1;
  padding-bottom: 2.2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
footer h5::before {
  content: '';
  left: 0;
  bottom: 0;
  height: 0.1rem;
  width: 7.5rem;
  background-color: var(--light);
  position: absolute;
}
.icon_box {
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.icon_box a {
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border: 0.1rem solid #fff;
  font-size: 1.8rem;
}
.icon_box a:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}
.footer_logo {
  display: inline-block;
  width: 100%;
  max-width: 25.4rem;
}
footer p {
  margin-top: 3.5rem;
}
footer .outline {
  border-color: #fff;
  color: #fff;
  font-size: 1.6rem;
}
footer .outline:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}

/*inner pages*/
.inner_home {
  height: 86rem;
  padding: 16rem 0;
}
.breadcrumb {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0rem 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  position: relative;
  min-width: 71.5rem;
}
.breadcrumb li,
.breadcrumb li a,
.breadcrumb-item.active {
  font-size: 2rem;
  color: #000;
  font-weight: 500;
}
.breadcrumb li a:hover {
  color: #000;
  text-decoration: underline;
}
.slider_box {
  text-align: center;
  position: relative;
  display: block;
  color: inherit !important;
}
.slider_img img {
    aspect-ratio: 4.1/3;
    object-fit: cover;
}
.slider_box:hover .slider_img img {
  transform: scale(1.1);
}
.pin_btn {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000 !important;
  padding: 0.6rem 0.8rem 0.6rem 0.6rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.6rem;
  -moz-column-gap: 0.6rem;
  column-gap: 0.6rem;
  background-color: #fff;
  border-radius: 0.5rem;
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  z-index: 1;
}
.pin_btn img {
  width: 1.8rem;
}
.slider_box p {
  font-size: 2.4rem;
  margin-top: 2rem;
}
.collection_area {
  position: relative;
  z-index: 2;
}
.tab_box img {
    aspect-ratio: 4/4;
    object-fit: cover;
}
.collection_area .slider_content {
  padding-bottom: 10rem;
  max-width: 70rem;
  width: 100%;
}
.collection_area .slider_content > p {
  margin-top: 4rem;
}
.slider1 .owl-nav button {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  border: none !important;
  font-size: 2.5rem;
  height: auto;
  width: auto;
}
.slider1 .owl-nav button.owl-prev {
  left: -4rem;
}
.slider1 .owl-nav button.owl-next {
  right: -4rem;
}
.text_box {
  background-color: #000;
  color: #fff;
  padding: 6.5rem 9.5rem;
  margin-top: -22rem;
}
.text_box p {
  max-width: 72rem;
  line-height: 1.5;
}
.text_box p a{
    color: #fff;
    text-decoration: underline;
}
.grey_bg {
  background-color: #e3e3e3;
}
.grey2_bg {
  background-color: #d6d0ca;
}
.grey3_bg {
  background-color: #d1d6ca;
}
.grey4_bg {
  background-color: #e7e7ed;
}
.grey5_bg {
  background-color: #c3c4bd;
}
.grey6_bg {
  background-color: #e1e8eb;
}

.bella_wrapper .slider_box p {
  font-size: 2.6rem;
}
.title_wrapper p {
  max-width: 70rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.slider2 .owl-nav button,
.slider3 .owl-nav button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider3 .owl-nav button {
  top: 45%;
}
.slider2 .owl-nav button.owl-prev,
.slider3 .owl-nav button.owl-prev {
  left: -6rem;
}
.slider2 .owl-nav button.owl-next,
.slider3 .owl-nav button.owl-next {
  right: -6rem;
}
.tab_box {
  position: relative;
  color: #fff;
}
.tab_box .pin_btn {
  font-size: 2.5rem;
  padding: 1.1rem 1.8rem 1.1rem 1.1rem;
  top: 7rem;
  left: 7rem;
}
.tab_box .pin_btn img {
  width: 3.3rem;
}
.tab_content {
  position: absolute;
  left: 7rem;
  z-index: 1;
  bottom: 7rem;
}
.tab_content p {
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 600;
}
.tab_control {
  margin-left: -2rem;
  margin-right: -2rem;
}
.tab_control li {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 33.33%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
}
.tab_control li button {
  background-color: transparent;
  padding: 4rem 1rem;
  text-align: center;
  width: 100%;
  border: 0.1rem solid transparent;
  font-size: 2rem;
  border-radius: 0 !important;
}
.tab_control li button.active {
  background: transparent !important;
  border-color: #fff;
  color: #000 !important;
}
.tab_control li button img {
  width: 6.2rem;
  margin-bottom: 1rem;
}
.author_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  max-width: 54rem;
}
.author_wrap img {
  width: 24.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.slider3 p {
  font-size: 2.6rem;
}

/*kies area*/
.kies_area {
  background-color: #9eadb3;
  padding: 5rem 0 10rem;
}
.kies_area h5 {
  font-size: 5rem;
}
.kies_area p {
  margin-top: 3rem;
}
.kies_box img {
  height: 15rem;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}
.specification ul {
  margin-top: 3rem;
}
.specification ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
.specification ul li strong {
  width: 20rem;
}
.specification ul li:not(:last-child) {
  border-bottom: 0.1rem solid #707070;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

/*map area*/
.map_area {
  background-color: #f6f4ef;
  position: relative;
  z-index: 1;
  padding-bottom: 13rem;
}
.map_area .link_wrap {
  width: 100%;
  border-bottom: 0;
}
.location_box {
  background-color: #fff;
  height: 100%;
  border: 0.1rem solid #707070;
  padding: 4rem;
  line-height: 1.4;
}
.location_box p {
  margin-top: 2rem;
}
.location_box h4 {
  font-family: inherit;
  font-size: 3.4rem;
}
.location_box a.button.black_btn {
  font-size: 1.8rem;
  min-width: 14rem;
  padding: 1.2rem 1.7rem;
  margin-top: 2rem;
}
.location_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 10rem;
}
.location_form {
  background-color: #000;
  max-width: 40rem;
  padding: 4rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 73rem;
  position: relative;
  z-index: 2;
}
.location_form h4 {
  text-transform: none;
  font-family: inherit;
  font-size: 3.4rem;
}
.location_form > p {
  margin-top: 2rem;
}
.input_group {
  position: relative;
  margin-top: 6rem;
}
.input_group input {
  width: 100%;
  height: 5rem;
  border: none;
  background-color: #fff;
  font-size: 1.8rem;
  padding: 0 1.6rem;
}
.input_group button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.3rem;
  font-size: 2rem;
  padding: 0;
  background-color: transparent;
  border: none;
}
.map_box {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100rem;
  z-index: 1;
}
.map_box img,
.map_box iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}
.inner_home {
  height: 73rem;
}
.black_bg {
  background-color: #000;
  color: #fff;
  padding-bottom: 8rem;
  margin-bottom: 0;
}
.black_bg .text_box {
  background-color: #fff;
  color: #000;
}
.black_bg .breadcrumb li,
.black_bg .breadcrumb li a,
.black_bg .breadcrumb-item.active {
  color: #fff;
}
.verhal_content {
  max-width: 65rem;
  padding: 6.2rem 0;
}
.verhal_content p {
  margin-top: 1.6rem;
}
.right_item {
  position: relative;
}
.right_item::before {
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  height: 60%;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 2, 0, 0)),
    to(rgba(90, 90, 90, 1))
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 2, 0, 0) 0%,
    rgba(90, 90, 90, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 2, 0, 0) 0%,
    rgba(90, 90, 90, 1) 100%
  );
  mix-blend-mode: multiply;
}
.right_slider .owl-dots {
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 100%;
}
.right_slider .owl-dots button {
  background-color: #ffffff;
  border: none !important;
}
.right_slider .owl-dots button.active {
  background-color: #d1d6ca;
}
.white_outline {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  min-width: 16.7rem;
  padding: 1.8rem 2.2rem;
}
.white_outline:hover {
  color: #000;
  background-color: #fff;
}

.video_area.v2 {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  color: #fff;
  padding: 7rem 0 12rem;
}
.video_area.v2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  opacity: 0.75;
}
.text_pagina {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-bottom: 12rem;
}
.text_content h5 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 3rem;
}
.text_content p,
.text_content ul li {
  margin-top: 1rem;
  padding-bottom: 1rem;
  max-width: 97.6rem;
}
.text_content ul {
  list-style: disc;
  padding-left: 2rem;
}
.text_content ul li::marker {
  color: #9eadb3;
}
.text_content p a,
.text_content ul li a {
  color: inherit;
  text-decoration: underline;
}
.text_content p a:hover,
.text_content ul li a:hover {
  color: #000;
}
.inner_pagination ol {
  position: relative;
  padding: 4.2rem 0;
  min-width: 100%;
}
.inner_pagination ol::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300rem;
  height: 0.1rem;
  background-color: #9eadb3;
}

.inner_home.v3 {
  height: 55rem;
  padding-bottom: 8.5rem;
}
.link_box {
  background-color: #e0dbca;
  padding: 2rem 4.5rem;
}
.link_box ul li:not(:last-child) {
  border-bottom: 0.1rem solid #000;
}
.link_box ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #000;
  font-size: 3rem;
  font-weight: 500;
  padding: 2.5rem 0;
}
.link_box ul li a:hover {
  color: #9eadb3;
}
.link_box ul li a::after {
  content: '\f178';
  font-family: 'Font Awesome 5 Pro';
  font-size: 70%;
}
.news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  color: inherit !important;
  margin-top: 4rem;
}
.news_img_left {
  width: 30rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.news_img_left img {
  width: 100%;
}
.news_item:hover .news_img_left img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.news_item h5 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 58rem;
}
.contact_area p {
  margin-top: 2.5rem;
}
.contact_area > p > a {
  text-decoration: underline;
}
.contact_area > p > a:hover {
  color: var(--gray);
}
.contact_area h5 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 5rem;
  line-height: 1.1;
}
.contact_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact_details .icon_box a {
  color: #000;
  border-color: #000;
}
.contact_details .icon_box a:hover {
  background-color: #000;
  color: #fff;
}
.contact_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5rem;
  padding-bottom: 1rem;
}
.contact_title h5,
.contact_title p {
  margin-top: 0;
}
.contact_title p {
  color: rgba(0, 0, 0, 0.5);
}
.contact_area input,
.contact_area textarea {
  width: 100%;
  padding: 0 1.6rem;
  border: 0.1rem solid #000000;
  resize: none;
  height: 6rem;
  margin-top: 2rem;
  display: block;
}
.contact_area textarea {
  height: 24rem;
  padding-top: 1.5rem;
}
.contact_area .button {
  min-width: 21rem;
  margin-top: 3rem;
}
.news_details_content h2 {
  font-size: 5rem;
  margin-top: 4.5rem;
}
.news_details_content p {
  margin-top: 3rem;
}
.card_img {
  max-width: 81rem;
  margin-top: 6rem;
  padding-bottom: 2rem;
}
.share_box p {
  font-size: 2.4rem;
}
.share_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.share_icon a {
  height: 4rem;
  width: 4rem;
  border: 0.1rem solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
}
.share_icon a:hover {
  background-color: #000;
  color: #fff;
}
.news_details {
  position: relative;
  z-index: 1;
}
.news_details::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  background-color: #f6f4ef;
  height: 52rem;
}
.right_content img {
  object-fit: cover;
  aspect-ratio: 1.2/1;
}



/*new css*/
.sm_card_wrap .slider_img img {
  object-fit: cover;
  aspect-ratio: 4.15/3;
}
.light_orange {
  background-color: #DFDBCB;
}
.text_box {
  margin-top: -10.6rem;
}
.contact_details .tab_box .pin_btn {
  top: 3rem;
  left: 3rem;
}
.eindeloze_area{
  padding: 9rem 0;
  background-color: #D0CBBC;
}
.eindeloze_area h5{
  font-size: 3.5rem;
}
.eindeloze_area h5+p{
  margin-top: 2rem;
  max-width: 125rem;
}
.eindeloze_area h2{
    font-size: 5rem;
}
.eindeloze_area h2+p,
.eindeloze_area h3+p{
    margin-top: 2rem;
}
.eindeloze_area h3{
    font-size: 4rem;
    font-family: inherit;
    margin-top: 3.5rem;
}
.eindeloze_box{
  text-align: center;
}
.eindeloze_img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 11.3rem;
  max-width: 15.4rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
.eindeloze_img img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.eindeloze_slider .owl-nav button{
  width: auto;
  height: auto;
  background-color: transparent;
  border: none !important;
  padding: 0;
  color: #fff;
  font-size: 3rem;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
}
.eindeloze_slider .owl-nav button.owl-prev{
  left: -2rem;
}
.eindeloze_slider .owl-nav button.owl-next{
  right: -2rem;
}
.border_bottom{
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  padding-bottom: 11rem;
}


/*new css*/
.carpet_area{
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: #000;
  background-size: cover;
  background-position: center center;
  padding-top: 3.5rem;
  padding-bottom: 10rem;
}
.carpet_area::before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.75;
  z-index: -1;
}
.carpet_content{
  max-width: 75rem;
}
.carpet_content p{
  margin-top: 4.5rem;
}
.right_content .v2 img {
  max-height: 53rem;
}
.carpet_item:not(:last-child){
  border-bottom: 0.1rem solid #fff;
  padding-bottom: 6rem;
  margin-bottom: 6rem;
}
.carpet_item p{
  margin-top: 3rem;
}
.carpet_heading{
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
}
.carpet_heading img{
  width: 4.7rem;
  height: 5.6rem;
  object-fit: contain;
  flex-shrink: 0;
}
.carpet_heading h5{
  font-size: 3rem;
}


.text_pagina.v2{
  background-color: #F6F4EF;
  padding-bottom: 6rem;
}
.text_pagina.v2 p{
  font-size: 2.4rem;
  margin-top: 3rem;
}
.text_pagina.v2 p a{
    text-decoration: underline;
}
.content_area{
  padding: 4rem 0 10rem; 
}
.content_area h5{
  font-size: 3.6rem;
}
.content_area h5:not(:first-child){
    margin-top: 4rem;
}
.content_area p{
  margin-top: 2.5rem;
  max-width: 97.6rem;
}
.inner_card_wrapper {
  max-width: 97.6rem;
}
.content_area p a,
.content_area ul a,
.content_area ol a{
  text-decoration: underline;
}

.card_box{
  position: relative;
  height: 100%;
  padding-bottom: 10rem;
}
.card_box>img{
  margin-bottom: 4rem;
}
.card_box .button{
  white-space: nowrap;
  position: absolute;
  left: 0;
  bottom: 0;
}

.shape_item h6{
  text-transform: none;
  font-size: 2.6rem;
  font-weight: 700;
  font-family: inherit;
  margin-top: 4rem;
}
.shape_item h6 + ul {
  list-style: disc;
  column-count: 2;
  padding-left: 2rem;
  margin-top: 2.5rem;
  max-width: 42rem;
}
.shape_item h6 + ul li::marker{
  color: #9EADB3;
}
.shape_item img{
  width: 100%;
  max-width: 38rem;
}
.shape_item:not(:last-child){
  border-bottom: 0.1rem solid rgba(112, 112, 112, 0.25);
  padding-bottom: 5.5rem;
  margin-bottom: 2.5rem;
}
.content_area .link_box a{
  text-decoration: none;
}

/*login page*/
.login_area{
  padding: 16rem 0 8rem;
  height: 100%;
  min-height: 100vh;
  align-items: center;
}
.login_box{
  background-color: #fff;
  color: #000;
  text-align: center;
  max-width: 65rem;
  padding: 4rem 7.5rem 8rem;
}

.login_box .input_group{
  margin-top: 3rem;
}
.login_box .input_group label{
  font-weight: 800;
}
.login_box .input_group input{
  border: 0.1rem solid #000;
  margin-top: 1rem;
  text-align: center;
}
.login_box p{
  margin-top: 1.5rem;
}
.login_box .button{
  min-width: 21rem;
  margin-top: 4rem;
}
.line{
  width: 18rem;
  height: 0.1rem;
  background-color: #D6D0CA;
  margin: 4rem auto;
}
.bg-black{
  background-color: #000;
}

.registration_box .line{
    margin-left: 0;
}
.registration_box .input_group input{
    text-align: left;
}
.password_box{
    display: flex;
    margin-top: 1rem;
}
.login_box .input_group .password_box{
    position: relative;
}
.login_box .input_group .password_box input{
    margin-top: 0;
    border-right: none;
}
.login_box .input_group .password_box button:not(#togglePasswordBtn){
    position: relative;
    top: auto;
    transform: translateY(0);
    right: auto;
}
.password_box .generate{
    background-color: #9EADB3;
    color: #fff;
    padding: 1rem 2.3rem;
    border: 0.1rem solid #000;
    border-left: none;
    line-height: 1.1;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    font-size: 1.8rem;
}
.password_box .generate:hover{
    background-color: #000;
}
#togglePasswordBtn{
    right: 16rem;
}






.dashboard_area{
  padding-top: 11rem;
  overflow: hidden;
}
.dashboard_content h5{
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 4rem;
}
.dashboard_content p,
.dashboard_content ul{
  margin-top: 2.5rem;
}
.dashboard_content p a{
  text-decoration: underline;
}
.dashboard_content p strong{
  font-size: 2.4rem;
  font-weight: 700;
}
.dashboard_content ul {
  list-style: disc;
  padding-left: 2rem;
}
.dashboard_content ul li::marker{
  color: #D6D0CA;
}
.dashboard_content .button{
  min-width: 20rem;
}
.dashboard_content>h5:first-child{
  border-bottom: 0.1rem solid #000000;
  padding-bottom: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
}
.dashboard_content h5:first-child a{
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
}
.dashboard_content .slider_box{
  text-align: left;
}
.dashboard_content .slider_box p{
  display: flex;
  align-items: center;
  column-gap: 1rem;
  font-weight: 600;
  margin-top: 2rem;
  font-size: 2rem;
}
.dashboard_content .slider_box input{
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  accent-color: black;
  z-index: 3;
  display: block;
}
.heading_btn{
  display: flex;
  align-items: center;
  column-gap: 2rem;
  row-gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5rem;
}
.heading_btn h5{
  margin-top: 0;
}
.categorie_item h5{
  font-size: 2.2rem;
  margin-top: 5rem;
}
.categorie_item .slider_box p{
  font-weight: 500;
}
.success-message{
    background-color: rgba(147, 255, 0, 0.2);
    color: #569600;
    padding: 1.25rem 1.6rem;
    display: flex;
    align-items: center;
    column-gap: 1.2rem;
    margin-bottom: 1rem;
}
.success-message::before{
    content:'';
    height: 2.5rem;
    width: 2.5rem;
    flex-shrink: 0;
    background-image: url(../img/checkc.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.form-error{
    background-color: rgba(255, 0, 0, 0.2);
    color: #CC1100;
    padding: 1.25rem 1.6rem;
    display: flex;
    align-items: center;
    column-gap: 1.2rem;
    margin-bottom: 1rem;
}
.form-error::before{
    content:'';
    height: 2.5rem;
    width: 2.5rem;
    flex-shrink: 0;
    background-image: url(../img/close.svg);
    background-size: contain;
    background-repeat: no-repeat;
}



.side_box{
  position: relative;
  z-index: 1;
  padding-right: 10rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  height: 100%;
}
.side_box::before{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2000rem;
  z-index: -1;
  background-color: #D6D0CA;
}
.side_box>ul>li{
  padding: 1.8rem 0;
}
.side_box>ul>li:not(:last-child){
  border-bottom: 0.1rem solid #000;
}
.side_box>ul>li a{
  display: inline-flex;
  align-items: center;
  column-gap: 1.4rem;
  color: #000;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
}
.side_box>ul>li>a:hover,
.side_box>ul>li.active>a{
  color: #fff;
}
.side_box>ul:first-child>li>a{
  font-size: 3.2rem;
}
.side_box>ul:last-child{
  margin-top: 8rem;
}
.side_box>ul>li>ul{
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.side_box>ul>li>ul>li{
  padding-top: 1rem;
}
.side_box>ul>li>ul>li>a{
  font-size: 2.2rem;
  font-weight: 400;
}
.side_box>ul>li>ul>li>a:hover,
.side_box>ul>li>ul>li.active>a{
  color: #fff;
}
.dashboard_content{
  padding-top: 4rem;
  padding-left: 4rem;
  padding-bottom: 12rem;
}
.document_wrapper{
  padding-top: 3rem;
}
.document_box{
  color: inherit !important;
}
.document_box img{
  height: 9.5rem;
}
.document_box p{
  margin-top: 1.5rem;
}
.news_slider .owl-stage{
    display: flex;
}
.dashboard_content .input_group{
    margin-top: 2rem;
}
.dashboard_content .input_group input{
    border: 0.1rem solid #000;
    margin-top: 0.5rem;
}
.dashboard_content form button{
    margin-top: 3rem;
}
.slider_content .slider_nav {
    margin-bottom: 6rem;
}
.slider_content .slider_nav ul {
    display: flex;
    column-gap: 7rem;
    font-size: 2.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.slider_content .slider_nav ul li a{
    text-decoration: none;
}
.slider_content .slider_nav ul li a.active{
    text-decoration: underline;
}
.slider3 .owl-stage{
    margin-left: auto;
    margin-right: auto;
}

.location_filter_reset_btn {
  font-size: 2rem;
}
.nature_content .link{
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}
.nature_content .link:hover{
    color: var(--light);
}


.search_item{
    border-bottom: 0.1rem solid #9EADB3;
    padding-bottom: 5rem;
    margin-top: 5rem;
}
.search_item h5{
    font-size: 2.6rem;
}
.search_item p{
    margin-top: 2rem;
    max-width: 145rem;
}
.pager {
    margin-top: 5rem;
}
.simplesearch-page {
    height: 4rem;
    width: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.simplesearch-current-page {
    background-color: #000;
    color: #fff;
    font-weight: 700;
}
.simplesearch-page a{
    color: #000;
}
.updprof-error {
    background-color: #ff0b00;
    color: #fff;
    padding: 2rem;
    margin-top: 2.5rem;
}
.updprof-error p:first-child{
    margin-top: 0;
}