/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: DM Sans, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  animation: fadeInUp 1.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

a,
li {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* HEADER MOBILE */
header {
  width: 100%;
  background-color: #fff;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.main-menu,
.button-wrapper {
  display: none;
}

.logo {
  flex-grow: 0.3;
  background-color: #c28565;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo-main-header {
  width: 250px;
  height: 79.46px;
}

.ham-menu-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.ham-menu {
  width: 50px;
  height: 50px;
  position: relative;
  background-color: #c28565;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ham-menu span {
  width: 50%;
  height: 2px;
  background-color: #fff;
  border-radius: 25px;
  position: absolute;
  left: 12.5px;
}

.ham-menu span:nth-child(1) {
  top: 15px;
}

.ham-menu span:nth-child(2) {
  top: 24px;
}

.ham-menu span:nth-child(3) {
  top: 33px;
}

/* SIDEBAR */
.sidebar {
  height: 100vh;
  width: 310px;
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-top: 138px;
  background-color: #fff;
  border-right: 3px solid #c28565;
  z-index: 10;
  transition: 1s ease;
  transform: translateX(-335px);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sidebar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.sidebar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.sidebar-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 30px;
  width: 310px;
  height: 138px;
  background-color: #c28565;
  transition: 1s ease;
  transform: translateX(-335px);
}

.sidebar-header .exit-button {
  width: 33px;
  height: 33px;
  position: absolute;
  top: 35px;
  left: 293.5px;
  border-radius: 50%;
  background-color: #ab6a49;
  cursor: pointer;
  transition: 1s ease;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sidebar-header .exit-button:hover {
  background-color: #0d0d0d;
}

.sidebar-header .exit-button span {
  width: 50%;
  height: 2px;
  background-color: #fff;
  border-radius: 25px;
  position: absolute;
  top: 15.5px;
  left: 8.25px;
}

.sidebar-header .exit-button span:nth-child(1) {
  transform: rotate(-45deg);
}

.sidebar-header .exit-button span:nth-child(2) {
  transform: rotate(45deg);
}

.sidebar ul {
  width: 100%;
  list-style: none;
  margin: 30px 0;
  text-align: center;
}

.sidebar ul li {
  display: inline-block;
  width: 80%;
  border-bottom: 1px solid #fdedf1;
  text-align: left;
}

.sidebar ul li i {
  margin-right: 10px;
}

.sidebar ul li a {
  color: #0d0d0d;
  padding: 15px 10px;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

.sidebar ul li .extend-link {
  transition: 0.4s;
}

.sidebar ul li a .extend-button {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  background-color: #f9f3f0;
  cursor: pointer;
  transition: 0.4s;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: 130px;
}

.sidebar .extend-button span {
  width: 50%;
  height: 1px;
  top: 12px;
  left: 6.25px;
  background-color: #0d0d0d;
  border-radius: 25px;
  position: absolute;
}

.active {
  visibility: hidden;
}

.sidebar .extend-button span:nth-child(1) {
  transform: rotate(-90deg);
}

/*
.sidebar .extend-button span:nth-child(2) {
  transform: rotate(0deg);
}
*/

.sidebar .mobile-submenu {
  display: none;
  margin: 0 0 0 0;
  transition: 20s ease;
}

.sidebar .mobile-submenu li {
  cursor: pointer;
}

.sidebar .mobile-submenu li:last-child {
  border: none;
}

.sidebar .mobile-submenu li a {
  display: block;
}

/* BACKDROP */
.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
}

/* SLIDER */
.slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;
}

.slider {
  width: 100vw;
  height: 85vh;
  overflow: hidden;
}

.slides {
  width: 500%;
  height: 85vh;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 2s;
}

.slide img {
  width: 100vw;
  height: 85vh;
}

.first {
  background-image: url("../images/DSC_1567.jpg");
  background-size: cover;
  background-position: 40% 50%;
}

.second {
  background-image: url("../images/DSC_1514.jpg");
  background-size: cover;
  background-position: 70% 50%;
}

.third {
  background-image: url("../images/DSC_1527.jpg");
  background-size: cover;
  background-position: center;
}

.fourth {
  background-image: url("../images/DSC_1350.jpg");
  background-size: cover;
  background-position: 30% 50%;
}

/* css for manual slide navigation */

.navigation-manual {
  position: absolute;
  width: 100vw;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid #c28565;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.manual-btn:not(:last-child) {
  margin-right: 40px;
}

.manual-btn:hover {
  background-color: #c28565;
}

#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -20%;
}

#radio3:checked ~ .first {
  margin-left: -40%;
}

#radio4:checked ~ .first {
  margin-left: -60%;
}

/* css for automatic navigation */

.navigation-auto {
  visibility: hidden;
}

.navigation-auto div {
  border: 2px solid #c28565;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child) {
  margin-top: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
  background-color: #c28565;
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
  background-color: #c28565;
}

#radio3:checked ~ .navigation-auto .auto-btn3 {
  background-color: #c28565;
}

#radio4:checked ~ .navigation-auto .auto-btn4 {
  background-color: #c28565;
}

/*******************************************
PRICE LIST
*******************************************/
.price-list {
  width: 420px;
  margin: 0 auto;
}

.price-list-title {
  font-family: "Barlow Condensed";
}

.price-list_container {
  width: 100%;
}

.price-list_container p {
  color: #c28565;
  font-size: 18px;
  font-weight: 500;
  font-family: Barlow;
  padding: 0px 20px 0 20px;
  text-align: center;
}

.price-list_container .price-box {
  width: 100%;
}

.price-list_container .price-box__content {
  font-size: 16px;
  font-family: Barlow;
  text-transform: uppercase;
  padding: 5px 0;
}

.price-list_container .price-box__price {
  font-family: Barlow;
  font-size: 18px;
  color: #c28565;
  padding: 5px 0;
}

.price-list_container tr {
  padding: 20px 0;
}

.service-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  justify-content: center;
  height: 920px;
  overflow: hidden;
  grid-template-areas:
    "col-1"
    "col-2"
    "col-2";
}

.service-wrapper:nth-child(2) .image,
.service-wrapper:nth-child(4) .image,
.service-wrapper:nth-child(6) .image {
  display: none;
}

.service-wrapper:nth-child(1) {
  height: 2040px;
}

.service-wrapper:nth-child(2) {
  height: 840px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "col-1"
    "col-1"
    "col-1"
    "col-1"
    "col-2"
    "col-2";
}

.service-wrapper:nth-child(3) {
  height: 1540px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "col-1"
    "col-1"
    "col-2"
    "col-2"
    "col-2"
    "col-2";
}

.service-wrapper:nth-child(4) {
  height: 940px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "col-1"
    "col-1"
    "col-1"
    "col-1"
    "col-2"
    "col-2";
}

.service-wrapper:nth-child(5) {
  height: 1140px;
}

.service-wrapper:nth-child(6) {
  height: 1240px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "col-1"
    "col-1"
    "col-1"
    "col-2"
    "col-2";
}

.service-wrapper:nth-child(7) {
  height: 1440px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "col-1"
    "col-1"
    "col-1"
    "col-1"
    "col-2"
    "col-2"
    "col-2"
    "col-2";
  }  

.service-wrapper .price-list {
  padding: 0px 36px;
}

.service-wrapper .price-list h2 {
  color: #0d0d0d;
  font: 24px "Barlow Condensed";
  margin: 40px 0px 20px 0px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.row-1 .image {
  grid-area: col-1;
  box-shadow: 0 -3px 0 3px rgba(255, 255, 255, 1);
  background-image: url("../images/DSC_1428.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: 40% 50%;
  opacity: 0.75;
}

.row-1 div:last-child {
  grid-area: col-2;
  background-color: #fff;
}

.row-2 div:first-child {
  grid-area: col-1;
  background-color: #fff;
}

.row-2 .image-mobile {
  grid-area: col-2;
  background-image: url("../images/DSC_1604.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.75;
}

.row-3 .image {
  grid-area: col-1;
  background-image: url("../images/DSC_1642.jpg");
  background-size: cover;
  background-position: 10% 50%;
  opacity: 0.75;
}

.row-3 div:last-child {
  grid-area: col-2;
  background-color: #fff;
}

.row-4 div:first-child {
  grid-area: col-1;
  background-color: #fff;
}

.row-4 .image-mobile {
  grid-area: col-2;
  background-image: url("../images/DSC_1570.jpg");
  background-size: cover;
  background-position: 60% 10%;
  opacity: 0.75;
}

.row-5 .image {
  grid-area: col-1;
  background-image: url("../images/DSC_1654.jpg");
  background-size: cover;
  background-position: 40% 50%;
  opacity: 0.75;
}

.row-5 div:last-child {
  grid-area: col-2;
  background-color: #fff;
}

.row-6 div:first-child {
  grid-area: col-1;
  background-color: #fff;
}

.row-6 .image-mobile {
  grid-area: col-2;
  background-image: url("../images/DSC_1652.jpg");
  background-size: cover;
  background-position: 40% 50%;
  opacity: 0.75;
}

.row-7 .image {
  grid-area: col-1;
  background-image: url("../images/lasersko_odstranjevanje_dlak_large.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.75;
}

/*******************************************
ELEMENTOR
*******************************************/
.elementor-container {
  width: 90%;
  height: 100px;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 50px;
  position: relative;
}

.elementor-logo {
  position: absolute;
  top: 0;
  left: calc(50% - 50px);
  z-index: 2;
  width: 100px;
  height: 100%;
  color: #c28565;
  background-color: #fff;
  text-align: center;
}

.elementor-elements {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.elementor-element__left,
.elementor-element__right {
  flex-grow: 1;
  width: 100%;
  height: 2px;
}

.elementor-element__left {
  background: linear-gradient(270deg, #c28565 0%, rgba(194, 133, 101, 0) 100%);
}

.elementor-element__right {
  background: linear-gradient(90deg, #c28565 0%, rgba(194, 133, 101, 0) 100%);
}

/*******************************************
GALLERY 
*******************************************/
.gallery-container {
  width: 90%;
  max-width: 120rem;
  margin: auto;
  padding: 0 1.5rem;
  margin-top: 60px;
  text-align: center;
}

.gallery-container h1 {
  color: #c28565;
  font-size: 24px;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 10px;
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 1.5rem;
  overflow: hidden;
  grid-template-areas:
    "img-1 img-1"
    "img-1 img-1"
    "img-2 img-2"
    "img-3 img-3"
    "img-4 img-4"
    "img-5 img-5";
}

.image-gallery .img {
  width: 100%;
  height: 25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.image-gallery .img .gallery-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease-in-out;
}

.image-gallery .img:hover .gallery-img {
  transform: rotate(5deg) scale(1.2);
}

.image-gallery .img-1 {
  grid-area: img-1;
  min-height: 51.5rem;
}

.image-gallery .img-1 .gallery-img {
  background-image: url("../images/DSC_1397.jpg");
}

.image-gallery .img-2 {
  grid-area: img-2;
}

.image-gallery .img-2 .gallery-img {
  background-image: url("../images/DSC_1426.jpg");
}

.image-gallery .img-3 {
  grid-area: img-3;
}

.image-gallery .img-3 .gallery-img {
  background-image: url("../images/DSC_1629.jpg");
}

.image-gallery .img-4 {
  grid-area: img-4;
}

.image-gallery .img-4 .gallery-img {
  background-image: url("../images/DSC_1594.jpg");
}

.image-gallery .img-5 {
  grid-area: img-5;
}

.image-gallery .img-5 .gallery-img {
  background-image: url("../images/DSC_1529.jpg");
}

.image-gallery .gallery-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid #c28565;
  background-color: rgba(13, 13, 13, 0.699);
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.image-gallery .gallery-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-gallery .gallery-content h2 {
  color: #fff;
  font-size: 36px;
  font-family: "Cormorant Garamond", serif;
  transition: 0.4s ease-in-out;
}

.image-gallery .img .gallery-overlay:hover,
.image-gallery .img .gallery-overlay:focus {
  opacity: 1;
}

/*******************************************
WIDGET AREA
*******************************************/
#widget-area {
  width: 100%;
  margin-top: 150px;
  background-color: #0d0d0d;
}

#widget-area .col-2 i {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 20px;
  text-align: center;
  margin-right: 10px;
  color: #fff;
  background-color: #3d4250;
  transition: all 0.4s;
}

#widget-area .col-2 i:hover {
  background-color: #c28565;
  transform: rotate(360deg);
}

#widget-area .col-3 i {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 10px;
  text-align: center;
  margin-right: 10px;
  color: #fff;
  background-color: #c28565;
}

.widget-area__container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-row: auto;
  grid-template-areas:
    "col-1 col-1 col-2 col-2"
    "col-3 col-3 col-3 col-5";
}

.widget-area__container .col {
  height: 100%;
  max-width: 378px;
}

.widget-area__container .col-4,
.widget-area__container .col-6 {
  display: none;
}

.widget-area__container .col-1,
.widget-area__container .col-5,
.widget-area__container .col-2,
.widget-area__container .col-3 {
  padding: 60px 20px 30px 20px;
}

.widget-area__container .col-2 {
  grid-area: col-2;
}

.widget-area__container .col-3 {
  grid-area: col-3;
}

.widget-area__container .col-1 {
  display: block;
  background-image: url("../images//footer_shape_1.png");
  background-position: center;
  background-size: cover;
  grid-area: col-1;
}

.widget-area__container .col-5 {
  display: block;
  background-image: url("../images//footer_shape_2.png");
  background-position: center;
  background-size: cover;
  grid-area: col-5;
}

.widget-area__container .col-2 div,
.widget-area__container .col-3 div {
  margin: 15px 0;
}

.widget-area__container .col-2 h1,
.widget-area__container .col-3 h1 {
  color: #fff;
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.widget-area__container .col-2 h2,
.widget-area__container .col-3 h2 {
  color: #fff;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.widget-area__container .col p {
  color: #b2b2b2;
  margin-top: 5px;
}

.widget-area__container .col .phone-number {
  color: #b2b2b2;
  text-decoration: none;
}

/*******************************************
FOOTER
*******************************************/
.link {
  font-weight: 400;
  color: #c28565;
  transition: 0.4s;
}

.link:hover {
  color: white;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 460px) {
  .price-list {
    width: 496px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 600px) {
  .logo {
    flex-grow: 0.6;
  }

  #logo-main-header {
    width: 317px;
    height: 100.75px;
  }

  .ham-menu-wrapper {
    padding-right: 80px;
    justify-content: end;
  }

  .price-list {
    width: 600px;
    margin: 0 auto;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #widget-area {
    height: 400px;
  }

  .widget-area__container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    flex-direction: row;
  }

  .widget-area__container .col-2,
  .widget-area__container .col-3 {
    flex-grow: 1;
  }

  .widget-area__container .col-1,
  .widget-area__container .col-5 {
    display: none;
  }

  /**************************************
  MEDIUM PRICE LIST
  **************************************/
  .service-wrapper:nth-child(1) {
    height: 1980px;
  }

  .service-wrapper:nth-child(2) {
    height: 840px;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "col-1"
      "col-1"
      "col-1"
      "col-2"
      "col-2";
  }

  .service-wrapper:nth-child(3) {
    height: 1570px;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "col-1"
      "col-1"
      "col-2"
      "col-2"
      "col-2";
  }

  .service-wrapper:nth-child(4) {
    height: 1120px;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "col-1"
      "col-1"
      "col-1"
      "col-2"
      "col-2";
  }

  .service-wrapper:nth-child(5) {
    height: 1390px;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "col-1"
      "col-1"
      "col-1"
      "col-2"
      "col-2"
      "col-2";
  }

  .service-wrapper:nth-child(6) {
    height: 1440px;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "col-1"
      "col-1"
      "col-1"
      "col-1"
      "col-2"
      "col-2";
  }

  .service-wrapper:nth-child(7) {
    height: 1440px;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "col-1"
      "col-1"
      "col-1"
      "col-1"
      "col-2"
      "col-2";
  }  
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  /**************************************
  LARGE HEADER
  **************************************/
  .ham-menu-wrapper {
    display: none;
  }

  .logo {
    flex-grow: 0.5;
    background-color: #c28565;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-menu {
    flex-grow: 3;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .main-menu ul {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .main-menu > ul {
    height: 100%;
  }

  .main-menu .submenu {
    position: absolute;
    display: block;
    width: 300px;
    background-color: #fff;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    padding: 58px 30px 30px 5px;
    border-bottom: 2px solid #c28565;
    opacity: 0;
    /* transform: scale(0); */
    z-index: -1;
    transition: all ease 0.4s;
  }

  .main-menu .submenu li {
    display: block;
    color: rgb(110, 110, 110);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    list-style-type: none;
    padding-left: 9px;
    padding-right: 9px;
    position: relative;
    text-align: left;
    text-size-adjust: 100%;
  }

  .main-menu .submenu li a {
    color: rgb(13, 13, 13);
    cursor: pointer;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    list-style-type: none;
    transition-behavior: normal;
    transition-delay: 0s;
    transition-duration: 0.4s;
    transition-property: all;
    transition-timing-function: ease;
  }

  .main-menu .submenu li a:hover {
    padding-left: 9px;
  }

  .main-menu ul li:hover .submenu {
    z-index: 25;
    opacity: 1;
    /* transform: scale(1); */
  }

  .submenu i {
    opacity: 0;
    color: #c28565;
    padding-right: 5px;
    transition-behavior: normal;
    transition-delay: 0s;
    transition-duration: 0.4s;
    transition-property: all;
    transition-timing-function: ease;
  }

  .main-menu .submenu li a:hover i {
    opacity: 1;
  }

  .button-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: 100%;
  }

  .my-button {
    background-color: #c28565;
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 18px 20px;
    width: 149.27px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    border: none;
  }

  .my-button span {
    position: relative;
    z-index: 1;
  }

  .my-button:hover {
    color: #fff;
    font-weight: 700;
  }

  .my-button::before {
    content: "";
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #0d0d0d;
    transition: width 0.8s, height 0.8s;
  }

  .my-button:hover::before {
    width: 300px;
    height: 300px;
  }

  .main-menu li {
    display: inline-block;
    list-style: none;
  }

  .main-menu li a {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
  }

  .main-menu li a:hover {
    color: #c28565;
  }

  /**************************************
  LARGE PRICE LIST
  **************************************/
  .price-list {
    width: 496px;
    margin: 0 auto;
  }

  .service-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    height: 920px;
    overflow: hidden;
    grid-template-areas: "col-1 col-2";
  }

  .price-list_container p {
    margin-top: 50px;
  }

  .service-wrapper:nth-child(1) {
    height: 1320px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "col-1 col-2";
  }

  .service-wrapper:nth-child(2) {
    height: 450px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "col-1 col-2";
  }

  .service-wrapper:nth-child(3) {
    height: 920px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "col-1 col-2";
  }

  .service-wrapper:nth-child(4) {
    height: 620px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "col-1 col-2";
  }

  .service-wrapper:nth-child(5) {
    height: 720px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "col-1 col-2";
  }

  .service-wrapper:nth-child(6) {
    height: 920px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "col-1 col-2";
  }

  .service-wrapper:nth-child(7) {
    height: 920px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "col-1 col-2";
  }

  .service-wrapper .price-list {
    padding: 0px 36px;
  }

  .service-wrapper:nth-child(2) .image-mobile,
  .service-wrapper:nth-child(4) .image-mobile,
  .service-wrapper:nth-child(6) .image-mobile {
    display: none;
  }

  .service-wrapper:nth-child(2) .image,
  .service-wrapper:nth-child(4) .image,
  .service-wrapper:nth-child(6) .image {
    display: block;
  }

  .row-2 .image {
    grid-area: col-2;
    background-image: url("../images/DSC_1604.jpg");
    background-size: cover;
    background-position: 40% 50%;
    opacity: 0.75;
  }

  .row-4 .image {
    grid-area: col-2;
    background-image: url("../images/DSC_1570.jpg");
    background-size: cover;
    background-position: 60% 50%;
    opacity: 0.75;
  }

  .row-6 .image {
    grid-area: col-2;
    background-image: url("../images/DSC_1652.jpg");
    background-size: cover;
    background-position: 40% 50%;
    opacity: 0.75;
  }

  /**************************************
  LARGE GALLERY
  **************************************/
  .image-gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "img-1 img-1 img-2 img-2"
      "img-1 img-1 img-5 img-5"
      "img-3 img-3 img-4 img-4";
  }

  /**************************************
  LARGE WIDGET AREA
  **************************************/

  .widget-area__container .col-1 {
    display: block;
    flex-grow: 2;
    background-image: url("../images//footer_shape_1.png");
    background-position: center;
    background-size: cover;
  }

  .widget-area__container .col-2,
  .widget-area__container .col-3 {
    flex-grow: 2;
    padding: 60px 20px 30px 20px;
  }

  .widget-area__container .col-4 {
    display: none;
  }

  .widget-area__container .col-5 {
    display: block;
    flex-grow: 2;
    background-image: url("../images//footer_shape_2.png");
    background-position: center;
    background-size: cover;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  /**************************************
  EXTRA LARGE DESKTOP HEADER
  **************************************/
  .my-button {
    width: 169.27px;
  }

  /**************************************
  EXTRA LARGE PRICE LIST
  **************************************/
  .price-list {
    width: 600px;
  }

  /**************************************
  EXTRA LARGE GALLERY
  **************************************/
  .image-gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "img-1 img-2 img-3 img-3"
      "img-1 img-4 img-4 img-5";
  }

  /**************************************
  EXTRA LARGE WIDGET AREA
  **************************************/
  .widget-area__container .col-4 {
    display: block;
    flex-grow: 1;
  }

  .widget-area__container .col-5 {
    flex-grow: 1;
  }
}

@media only screen and (min-width: 1400px) {
  /**************************************
  SUPER EXTRA LARGE SLIDER
  **************************************/
  .second {
    background-position: 70% 20%;
  }

  .fourth {
    background-position: 30% 40%;
  }
  /**************************************
  SUPER EXTRA LARGE WIDGET AREA
  **************************************/
  .widget-area__container .col-6 {
    flex-grow: 1;
    display: block;
  }
}
