@charset "UTF-8";
@font-face {
  font-family: "light";
  src: url(../Fonts/raleway/Raleway-Light.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/raleway/Raleway-Regular.ttf);
}

@font-face {
  font-family: "medium";
  src: url(../Fonts/raleway/Raleway-Medium.ttf);
}

@font-face {
  font-family: "semiBold";
  src: url(../Fonts/raleway/Raleway-SemiBold.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/raleway/Raleway-Bold.ttf);
}

@font-face {
  font-family: "lato-regular";
  src: url(../Fonts/lato/Lato-Regular.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'light';
}

*::-moz-selection {
  background-color: #000;
  color: #FFC93F;
}

*::selection {
  background-color: #000;
  color: #FFC93F;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #FFC93F;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-padding {
  padding: 70px 0;
}

.bg-gray {
  background-color: #f9f9f9;
}

/***************************** Global Style *****************************/
h1,
h2,
h3 {
  font-family: "bold";
}

h4,
h5,
h6 {
  font-family: "medium";
}

p {
  font-size: 15px;
  font-family: 'regular';
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

/***************************** Animations *****************************/
@-webkit-keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}
@keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container {
  position: relative;
  z-index: 9;
}

.navs-container .navbar {
  position: absolute;
  width: 100%;
}

.navs-container .navbar .navbar-brand {
  margin-right: 0;
}

.navs-container .navbar .navbar-brand img {
  width: 230px;
  margin-right: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-item {
  padding-top: 10px;
}

.navs-container .navbar .nav-link {
  color: #ddd;
  margin: 0px 10px;
  position: relative;
  text-align: center;
  font-family: 'semiBold';
}

.navs-container .navbar .nav-link::before {
  content: '';
  width: 0%;
  height: 1px;
  display: block;
  background-color: #ddd;
  position: relative;
  top: 30px;
  opacity: 0;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.navs-container .navbar .nav-link.active, .navs-container .navbar .nav-link:hover {
  color: #fff;
}

.navs-container .navbar .nav-link.active::before, .navs-container .navbar .nav-link:hover::before {
  opacity: 1;
  width: 100%;
}

.navs-container .navbar .has-dropdown .drop-down {
  padding: 35px 0px;
  background-color: #17161c;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 60px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navs-container .navbar .has-dropdown .drop-down h5 {
  color: #FFC93F;
  margin-bottom: 20px;
}

.navs-container .navbar .has-dropdown .drop-down .dropdown-item {
  color: #fff;
  padding: 0.5rem .6rem;
}

.navs-container .navbar .has-dropdown .drop-down .dropdown-item:hover {
  color: #FFC93F;
  background-color: transparent;
  margin-left: 5px;
}

.navs-container .navbar .has-dropdown::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: relative;
  top: -30px;
  right: 15px;
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #ddd;
  font-size: 12px;
}

.navs-container .navbar .has-dropdown:hover .drop-down {
  margin-top: 35px;
  opacity: .95;
  visibility: visible;
}

.navs-container .navbar .contact-btn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  background-color: #FFC93F;
  border: 1px solid #FFC93F;
  border-radius: 25px 0px 25px 25px;
  text-align: center;
  display: block;
  font-size: 15px;
  position: relative;
  font-family: "lato-regular";
}

.navs-container .navbar .contact-btn::after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: '';
  background: url(../images/icons/butn-icon-b.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
}

.navs-container .navbar .contact-btn:hover {
  color: #FFC93F;
  background-color: #17161c;
}

.navs-container .navbar .contact-btn:hover::after {
  -webkit-filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(200%) contrast(1500%);
          filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(200%) contrast(1500%);
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #FFC93F;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #FFC93F;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navs-container .navbar.inner-pages-nav {
  position: relative;
  background-color: #17161c;
  opacity: .85;
}

.navs-container .navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  background-color: #17161c;
  -webkit-box-shadow: 0px 4px 15px 0px #333;
          box-shadow: 0px 4px 15px 0px #333;
}

footer .copyright {
  background-color: #0b0b0b;
  padding: 25px 0px;
}

footer .copyright p {
  font-size: 12px;
  margin-bottom: 0;
  color: #ddd;
}

footer .copyright .scroll-top-btn {
  font-size: 13px;
  color: #fff;
  display: block;
  text-align: center;
}

footer .copyright .scroll-top-btn i {
  margin: 0px 3px;
}

footer .copyright .scroll-top-btn:hover {
  color: #FFC93F;
}

footer .copyright .social-links a {
  color: #ccc;
  margin: 0px 5px;
  float: right;
}

footer .copyright .social-links a:hover {
  color: #FFC93F;
}

/***************************** Start Edit Home Page *****************************/
header {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: bottom center !important;
  position: relative;
  overflow: hidden;
}

header::after {
  content: '';
  background-color: #202020;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

header .swiper-container .swiper-slide {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
  height: 600px;
  min-height: 85vh;
}

header .swiper-container .swiper-slide::after {
  content: '';
  background-color: #202020;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

header .swiper-container .swiper-slide .text {
  position: relative;
  z-index: 5;
  color: #fff;
}

header .swiper-container .swiper-slide .text h6 {
  font-size: 20px;
}

header .swiper-container .swiper-slide .text h1 {
  font-family: "semiBold";
  font-size: 50px;
  margin-bottom: 10px;
  margin-top: 12px;
}

header .swiper-container .swiper-slide .text p {
  font-size: 17px;
  color: #ddd;
  line-height: 1.8rem;
  margin-bottom: 25px;
}

header .swiper-container .swiper-slide .text .main-butn {
  width: 170px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  text-align: center;
  display: block;
  font-family: "lato-regular";
}

header .swiper-container .swiper-slide .text .main-butn i {
  margin: 0px 3px;
}

header .swiper-container .swiper-slide .text .main-butn:hover {
  color: #fff;
  background-color: #FFC93F;
}

header .swiper-container .social-links {
  position: absolute;
  color: #fff;
  top: 300px;
  right: 100px;
  z-index: 5;
}

header .swiper-container .social-links .follow {
  transform: rotate(90deg);
  margin-bottom: 100px;
  color: #fff;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

header .swiper-container .social-links .follow::after {
  content: '';
  background-color: #eee;
  width: 40px;
  height: 1px;
  display: block;
  position: absolute;
  right: -55px;
  top: 10px;
}

header .swiper-container .social-links a {
  color: #fff;
  display: block;
  margin: 5px 0px;
  text-align: center;
}

header .swiper-container .social-links a:hover {
  color: #FFC93F;
}

header .swiper-container .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

header .swiper-container .swiper-pagination-bullet-active {
  color: #fff;
  font-weight: bold;
  background: #FFC93F50;
}

header .swiper-container .swiper-button-prev,
header .swiper-container .swiper-button-next {
  background-image: unset;
  width: 50px;
  height: 100px;
  background-color: #000;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

header .swiper-container .swiper-button-prev::after,
header .swiper-container .swiper-button-next::after {
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 10px;
}

header .swiper-container .swiper-button-prev:hover,
header .swiper-container .swiper-button-next:hover {
  background-color: #FFC93F;
}

header .swiper-container .swiper-button-next {
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

header .swiper-container .swiper-button-next::after {
  content: 'Next';
  top: 37px;
  left: 20px;
}

header .swiper-container .swiper-button-prev {
  left: 0;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}

header .swiper-container .swiper-button-prev::after {
  content: 'Prev';
  top: 37px;
  left: 9px;
}

header.inner-pages .page-heading {
  position: relative;
  padding: 200px 0px 170px 0px;
}

header.inner-pages .page-heading nav {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 8;
}

header.inner-pages .page-heading nav h3 {
  color: #fff;
  text-transform: uppercase;
  font-family: 'semiBold';
  font-size: 2.5rem;
  letter-spacing: 1.5px;
}

header.inner-pages .page-heading nav .breadcrumb {
  background-color: transparent;
  color: #fff;
}

header.inner-pages .page-heading nav .breadcrumb .breadcrumb-item {
  color: #eee;
  position: relative;
  padding: 0px 25px;
  text-transform: capitalize !important;
  font-family: 'medium';
}

header.inner-pages .page-heading nav .breadcrumb .breadcrumb-item.active {
  color: #eee;
}

header.inner-pages .page-heading nav .breadcrumb .breadcrumb-item a {
  color: #eee;
  font-family: 'medium';
}

header.inner-pages .page-heading nav .breadcrumb .breadcrumb-item::before {
  padding-right: 0rem;
  color: #FFC93F;
  content: "•";
  font-size: 50px;
  position: absolute;
  left: -10px;
  top: -24px;
}

header.inner-pages .page-heading nav .breadcrumb .breadcrumb-item:nth-child(1)::before {
  display: none;
}

header.inner-pages .page-heading .pattern-r {
  position: absolute;
  top: -15px;
  right: -23px;
}

.closer-look {
  position: relative;
  padding: 70px 0px;
}

.closer-look .image-content {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 15px;
  max-height: 600px;
}

.closer-look .image-content .icon {
  width: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.closer-look .image-content .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.closer-look .image-content .video-butn {
  width: 200px;
  height: 65px;
  line-height: 65px;
  background-color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "lato-regular";
}

.closer-look .image-content .video-butn i {
  margin: 0px 3px;
}

.closer-look .image-content .video-butn:hover {
  color: #FFC93F;
}

.closer-look .text {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
  padding: 60px 50px;
  position: relative;
  margin-top: 50px;
  left: -100px;
}

.closer-look .text h4 {
  font-family: 'medium';
  font-size: 1.9rem;
}

.closer-look .text h1 {
  font-family: 'semiBold';
  font-size: 3.3rem;
  margin-bottom: 1.6rem;
}

.closer-look .text p {
  font-family: "lato-regular";
  color: #555;
  line-height: 1.7rem;
}

.closer-look .text .more-butn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  background-color: #202020;
  color: #fff;
  border-radius: 25px 0px 25px 25px;
  text-align: center;
  display: block;
  font-size: 15px;
  position: relative;
  margin-top: 30px;
  font-family: "lato-regular";
}

.closer-look .text .more-butn::after {
  content: '';
  background: url(../images/icons/butn-icon-b.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.closer-look .text .more-butn i {
  margin: 0px 3px;
}

.closer-look .text .more-butn:hover {
  background-color: #FFC93F;
}

.closer-look .text .more-butn:hover::after {
  -webkit-filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(0%) contrast(103%);
          filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(0%) contrast(103%);
}

.closer-look .counter-wrapper .item {
  padding: 2rem 1rem;
  text-align: center;
}

.closer-look .counter-wrapper .item p {
  font-size: 25px;
  font-family: 'lato-regular';
  color: #000;
}

.closer-look .counter-wrapper .item h6 {
  font-family: 'lato-regular';
}

.closer-look .pattern-l {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 23%;
  z-index: -1;
  pointer-events: none;
}

.services-sec {
  padding: 70px 0px;
  background-color: #101010;
}

.services-sec .heading-sec {
  color: #fff;
  padding-left: 60px;
  margin-bottom: 50px;
}

.services-sec .heading-sec h6 {
  position: relative;
}

.services-sec .heading-sec h6::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #eee;
  display: block;
  position: absolute;
  left: -65px;
  top: 10px;
}

.services-sec .heading-sec h3 {
  margin-top: 1rem;
  font-family: 'medium';
  font-size: 2rem;
  line-height: 2.5rem;
}

.services-sec .services-carousel.owl-theme .owl-dots {
  display: inline-block;
  width: 100%;
}

.services-sec .services-carousel.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 20px 7px 5px;
  background: #707070;
}

.services-sec .services-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.services-sec .services-carousel .card {
  position: relative;
  border-radius: 0;
  padding: 3.5rem 1.7rem;
  background-color: transparent;
  border: 1px solid #424242;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.services-sec .services-carousel .card h6 {
  color: #fff;
}

.services-sec .services-carousel .card p {
  color: #8E8E8E;
  font-size: 13px;
  line-height: 1.5rem;
}

.services-sec .services-carousel .card .icon-content {
  width: 60px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border: 1px solid #424242;
  background-color: #101010;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}

.services-sec .services-carousel .card .icon-content:hover {
  color: #FFC93F;
}

.services-sec .services-carousel .card:hover {
  background-color: #fff;
}

.services-sec .services-carousel .card:hover h6 {
  color: #333;
}

.services-sec .services-carousel .card:hover p {
  color: #555;
}

.projects-sec {
  padding: 70px 0px;
  background-color: #101010;
}

.projects-sec .heading-sec {
  color: #fff;
  padding-left: 60px;
  margin-bottom: 50px;
}

.projects-sec .heading-sec h6 {
  position: relative;
}

.projects-sec .heading-sec h6::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #eee;
  display: block;
  position: absolute;
  left: -65px;
  top: 10px;
}

.projects-sec .heading-sec h3 {
  margin-top: 1rem;
  font-family: 'medium';
  font-size: 2rem;
  line-height: 2.5rem;
}

.projects-sec .swiper-container .card {
  border: 1px solid transparent;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.projects-sec .swiper-container .card::after {
  content: '';
  background-color: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.projects-sec .swiper-container .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects-sec .swiper-container .card .right-line {
  width: 50px;
  height: 2px;
  background-color: #f5f5f5;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  margin-left: -250px;
  -webkit-transition: .5s;
  transition: .5s;
}

.projects-sec .swiper-container .card .middle-line {
  width: 2px;
  height: 50px;
  background-color: #f5f5f5;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  margin-top: -250px;
  -webkit-transition: .5s;
  transition: .5s;
}

.projects-sec .swiper-container .card h6 {
  z-index: 5;
  margin-bottom: 0;
  font-size: 1.5rem;
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 0;
  color: #fff;
  text-align: center;
}

.projects-sec .swiper-container .card:hover img {
  -webkit-animation-name: imagemove;
          animation-name: imagemove;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.projects-sec .swiper-container .card:hover::after {
  opacity: .7;
}

.projects-sec .swiper-container .card:hover .right-line {
  opacity: 1;
  margin-left: 0px;
}

.projects-sec .swiper-container .card:hover .middle-line {
  opacity: 1;
  margin-top: 0px;
}

.projects-sec .swiper-container .swiper-button-prev {
  background-image: url(../images/icons/left-swiper-arrow.svg);
}

.projects-sec .swiper-container .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url(../images/icons/left-swiper-arrow.svg);
}

.projects-sec .swiper-container .swiper-button-prev,
.projects-sec .swiper-container .swiper-button-next {
  background-size: 30px 40px;
}

.projects-sec .swiper-container .swiper-button-prev:hover,
.projects-sec .swiper-container .swiper-button-next:hover {
  -webkit-filter: invert(78%) sepia(95%) saturate(801%) hue-rotate(379deg) brightness(198%) contrast(246%);
          filter: invert(78%) sepia(95%) saturate(801%) hue-rotate(379deg) brightness(198%) contrast(246%);
}

.showerrooms-sec {
  padding: 70px 0px;
}

.showerrooms-sec .heading-sec {
  padding-left: 60px;
  margin-bottom: 50px;
}

.showerrooms-sec .heading-sec h6 {
  position: relative;
}

.showerrooms-sec .heading-sec h6::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  left: -65px;
  top: 10px;
}

.showerrooms-sec .heading-sec h3 {
  margin-top: 1rem;
  font-family: 'medium';
  font-size: 2rem;
  line-height: 2.5rem;
}

.showerrooms-sec .card {
  border-radius: 0;
  margin-bottom: 25px;
  border: 1px solid #D8D8D8;
}

.showerrooms-sec .card .card-img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.showerrooms-sec .card .inner {
  padding: 1.8rem 1.2rem;
}

.showerrooms-sec .card .inner h5 {
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.showerrooms-sec .card .inner p {
  font-size: 13px;
}

.showerrooms-sec .card .inner .main-butn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  border: 1px solid #101010;
  border-radius: 25px 0px 25px 25px;
  text-align: center;
  margin-top: 30px;
  display: block;
  font-size: 15px;
  position: relative;
  font-family: "lato-regular";
}

.showerrooms-sec .card .inner .main-butn::after {
  content: '';
  background: url(../images/icons/butn-icon-b.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  -webkit-filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(0%) contrast(103%);
          filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(0%) contrast(103%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.showerrooms-sec .card .inner .main-butn:hover {
  background-color: #101010;
  color: #fff;
}

.showerrooms-sec .card .inner .main-butn:hover::after {
  -webkit-filter: unset;
          filter: unset;
}

.heading-sec {
  padding-left: 60px;
  margin-bottom: 50px;
}

.heading-sec h6 {
  position: relative;
}

.heading-sec h6::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  left: -65px;
  top: 10px;
}

.heading-sec h3 {
  margin-top: 1rem;
  font-family: 'medium';
  font-size: 2rem;
  line-height: 2.5rem;
}

.newsletter {
  padding: 140px 0px;
  background: url(../images/newsletter.png);
  background-size: cover;
  position: relative;
}

.newsletter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  opacity: .7;
}

.newsletter .inner {
  position: relative;
  z-index: 7;
  text-align: center;
  color: #fff;
}

.newsletter .inner h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter .inner p {
  color: #eee;
  font-size: 16px;
  font-family: "lato-regular";
}

.newsletter .inner .form-group {
  position: relative;
  margin-top: 1.5rem;
}

.newsletter .inner .form-group .submit-btn {
  width: 150px;
  height: 50px;
  line-height: 50px;
  background-color: #fbc02a;
  border: 1px solid #fbc02a;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 15px;
  position: relative;
  font-family: "lato-regular";
  position: absolute;
  top: 0;
  right: 0;
}

.newsletter .inner .form-group .submit-btn:after {
  content: '';
  background: url(../images/icons/butn-icon-b.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 15px;
  height: 15px;
  -webkit-filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(0%) contrast(103%);
          filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(0%) contrast(103%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.newsletter .inner .form-group .form-control {
  height: 50px;
  background-color: transparent;
  border: 1px solid #D8D8D8;
  color: #fff;
  padding-right: 150px;
}

.newsletter .inner .form-group .form-control::-webkit-input-placeholder {
  color: #ddd;
}

.newsletter .inner .form-group .form-control:-ms-input-placeholder {
  color: #ddd;
}

.newsletter .inner .form-group .form-control::-ms-input-placeholder {
  color: #ddd;
}

.newsletter .inner .form-group .form-control::placeholder {
  color: #ddd;
}

/***************************** Start Edit About Page *****************************/
.about-pg {
  overflow: hidden;
  padding: 70px 0px;
  position: relative;
}

.about-pg .image-content {
  position: relative;
}

.about-pg .image-content .main-img {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  left: -50px;
  width: 100%;
}

.about-pg .image-content .logo-img {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  right: 100px;
}

.about-pg .image-content .counter-wrapper {
  background-color: #fff;
  width: 390px;
  position: absolute;
  bottom: 0;
  right: 70px;
  padding: 35px 25px;
  border-radius: 100px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
  box-shadow: 0px 3px 15px 0px #eee;
  text-align: center;
}

.about-pg .image-content .counter-wrapper::after {
  content: '';
  background: url(../images/icons/butn-icon-b.svg);
  background-size: contain;
  width: 55px;
  height: 55px;
  position: absolute;
  bottom: 0px;
  right: 0;
}

.about-pg .image-content .counter-wrapper .item.first {
  border-right: 1px solid #ddd;
}

.about-pg .image-content .counter-wrapper .item p {
  font-size: 30px;
  color: #000;
  margin-bottom: 2px;
}

.about-pg .image-content .counter-wrapper .item p span {
  font-family: 'semiBold';
  color: #17161c;
}

.about-pg .image-content .counter-wrapper .item h6 {
  font-family: 'lato-regular';
  line-height: 1.4rem;
  font-size: 12px;
  margin-bottom: 0;
}

.about-pg .text-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-pg .text-content h5 {
  font-size: 2rem;
  position: relative;
  padding-left: 50px;
}

.about-pg .text-content h5::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: #202020;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
}

.about-pg .text-content h2 {
  margin-bottom: 1rem;
  font-size: 3.2rem;
  font-family: 'semiBold';
}

.about-pg .text-content h2 span {
  font-family: 'semiBold';
  color: #FFC93F;
}

.about-pg .text-content p {
  line-height: 1.8rem;
}

.goals-sec {
  padding: 70px 0px;
}

.goals-sec .item {
  position: relative;
  height: 700px;
}

.goals-sec .item::after {
  content: '';
  background-color: #000;
  opacity: .3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.goals-sec .item .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.goals-sec .item .text-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 7;
  text-align: center;
  padding: 0px 30px;
}

.goals-sec .item .text-content .icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.goals-sec .item .text-content h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.goals-sec .item .text-content .text {
  font-size: 15px;
  line-height: 1.7rem;
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.goals-sec .item .text-content .text p {
  color: #ddd;
}

.goals-sec .item:hover::after {
  opacity: .8;
}

.goals-sec .item:hover .text {
  visibility: visible;
  opacity: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.team-sec {
  padding: 70px 0px;
}

.team-sec .heading-sec {
  margin-bottom: 50px;
}

.team-sec .heading-sec span {
  font-family: 'medium';
  position: relative;
  padding-left: 50px;
}

.team-sec .heading-sec span::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: #202020;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
}

.team-sec .heading-sec h4 {
  margin-top: .6rem;
  font-size: 2rem;
}

.team-sec .swiper-container .item {
  position: relative;
  height: 600px;
}

.team-sec .swiper-container .item::after {
  content: '';
  background-color: #000;
  opacity: .3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.team-sec .swiper-container .item .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-sec .swiper-container .item .text-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  z-index: 7;
  text-align: center;
  padding: 0px 30px;
  color: #fff;
  -webkit-transition: .5s;
  transition: .5s;
}

.team-sec .swiper-container .item .text-content h4 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-family: 'regular';
}

.team-sec .swiper-container .item .text-content h6 {
  font-size: 1.5rem;
}

.team-sec .swiper-container .item .text-content .links a {
  margin: 0px 5px;
  color: #eee;
  font-size: 16px;
}

.team-sec .swiper-container .item .text-content .links a:hover {
  color: #FFC93F;
}

.team-sec .swiper-container .item:hover::after {
  opacity: .7;
}

.team-sec .swiper-container .item:hover .text-content {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.team-sec .swiper-container .swiper-button-prev {
  background-image: url(../images/icons/left-swiper-arrow.svg);
}

.team-sec .swiper-container .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url(../images/icons/left-swiper-arrow.svg);
}

.team-sec .swiper-container .swiper-button-prev,
.team-sec .swiper-container .swiper-button-next {
  background-size: 30px 40px;
}

.team-sec .swiper-container .swiper-button-prev:hover,
.team-sec .swiper-container .swiper-button-next:hover {
  -webkit-filter: invert(78%) sepia(95%) saturate(801%) hue-rotate(379deg) brightness(198%) contrast(246%);
          filter: invert(78%) sepia(95%) saturate(801%) hue-rotate(379deg) brightness(198%) contrast(246%);
}

/***************************** Start Edit Services Page *****************************/
.services-pg {
  padding: 70px 0px;
}

.services-pg .item {
  background-color: #2A2A2E;
  padding: 40px 25px;
  height: 100%;
  position: relative;
}

.services-pg .item h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.services-pg .item p {
  color: #eee;
  font-size: 14px;
  line-height: 1.8rem;
}

.services-pg .item .pattern {
  position: absolute;
  bottom: 0;
  right: 0;
}

.services-pg .image-content img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

/***************************** Start Edit Product Details Page *****************************/
.products-category {
  padding: 70px 0px;
}

.products-category .item {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.products-category .item::after {
  content: '';
  background-color: #000;
  opacity: .4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.products-category .item .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.products-category .item .text-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 7;
  text-align: center;
  padding: 0px 30px;
}

.products-category .item .text-content h2 {
  color: #fff;
  font-family: 'medium';
  text-transform: uppercase;
}

.products-category .item .text-content .plus {
  margin-top: 40px;
  position: relative;
}

.products-category .item .text-content .plus .right-line {
  width: 50px;
  height: 2px;
  background-color: #ccc;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  margin-left: -250px;
  -webkit-transition: .5s;
  transition: .5s;
}

.products-category .item .text-content .plus .middle-line {
  width: 2px;
  height: 50px;
  background-color: #ccc;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  margin-top: -250px;
  -webkit-transition: .5s;
  transition: .5s;
}

.products-category .item:hover .main-img {
  -webkit-animation-name: imagemove;
          animation-name: imagemove;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.products-category .item:hover::after {
  opacity: .8;
}

.products-category .item:hover .plus .right-line {
  opacity: 1;
  margin-left: 0px;
}

.products-category .item:hover .plus .middle-line {
  opacity: 1;
  margin-top: 0px;
}

.products-gallery {
  padding: 70px 0px;
}

.products-gallery .heading-sec {
  margin-bottom: 40px;
  text-align: center;
}

.products-gallery .heading-sec h4 {
  font-size: 2.2rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px auto;
  display: block;
  padding-left: 40px;
  font-family: 'semiBold';
}

.products-gallery .heading-sec h4::before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #202020;
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
}

.products-gallery .heading-sec p {
  font-family: 'semiBold';
  line-height: 2rem;
  color: #202020;
  font-size: 18px;
}

.products-gallery .item {
  border-radius: 0px 40px 40px 40px;
  height: 325px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.products-gallery .item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #17161c;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.products-gallery .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 40px 40px 40px;
}

.products-gallery .item .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  text-align: center;
  bottom: 15px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.products-gallery .item .text h6 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.products-gallery .item:hover::after {
  opacity: .7;
}

.products-gallery .item:hover .text {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/***************************** Start Edit Contact Page *****************************/
.contact-pg {
  padding: 70px 0px;
}

.contact-pg .heading-sec {
  margin-bottom: 40px;
  text-align: center;
}

.contact-pg .heading-sec h4 {
  font-size: 2.2rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px auto;
  display: block;
  padding-left: 40px;
  font-family: 'bold';
}

.contact-pg .heading-sec h4::before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #202020;
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
}

.contact-pg .heading-sec p {
  font-family: 'semiBold';
  line-height: 2rem;
  color: #202020;
  font-size: 18px;
}

.contact-pg .form-group {
  margin-bottom: 30px;
}

.contact-pg .form-group .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  height: 50px;
  font-size: 15px;
}

.contact-pg .form-group .form-control:focus {
  border-bottom: 1px solid #FFC93F;
}

.contact-pg .form-group textarea {
  height: 250px !important;
  resize: none;
}

.contact-pg .form-group .main-butn {
  width: 200px;
  height: 50px;
  line-height: 50px;
  background-color: #101010;
  border: 1px solid #101010;
  color: #fff;
  border-radius: 25px 0px 25px 25px;
  text-align: center;
  margin-top: 30px;
  display: block;
  font-size: 15px;
  position: relative;
  font-family: "lato-regular";
}

.contact-pg .form-group .main-butn::after {
  content: '';
  background: url(../images/icons/butn-icon-b.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-pg .form-group .main-butn:hover {
  background-color: #FFC93F;
  border: 1px solid #FFC93F;
}

.contact-pg .form-group .main-butn:hover::after {
  -webkit-filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(0%) contrast(103%);
          filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(0%) contrast(103%);
}

.deg_360 iframe {
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
  -webkit-box-shadow: 0 5px 10px #0001;
          box-shadow: 0 5px 10px #0001;
}
/*# sourceMappingURL=style.css.map */