@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;500&family=Space+Grotesk&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --xs: 0;
  --sm: 577px;
  --md: 769px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;
}

a {
  text-decoration: none;
}

section {
  margin: 0px 0;
  padding: 80px 40px;
}

.main {
  height: 100vh;
  background-color: #a7aeb4;
  font-family: "Space Grotesk", sans-serif;
}

.main-up {
  height: 50%;
  background-color: #ffffff;
}

/* Header */
/* ////////// input Css */
.switch {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 34px;
}

.switchNon {
  display: none;
}

.m-switch {
  display: none;
}

.switch input {
  display: none;
}

.lang2 {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: space-around; */
  width: 100px;
  color: #fff;
  transform: translateX(0);
}

.lang2:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

.lang2 input {
  /* z-index: -1; */
}

input:checked + .lang2:before {
  background-color: #fff;
}

:root {
  --before-translation: translateX(66px);
}

input:checked + .lang2:before {
  transform: var(--before-translation);
}

/*------ ADDED CSS ---------*/
.on {
  display: none;
}

.on, .off {
  color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 16px;
  font-family: Verdana, sans-serif;
}

.on {
  color: #fff;
}

input:checked + .lang2 .on {
  display: block;
}

input:checked + .lang2 .off {
  display: none;
}

.nav-logo {
  display: none;
}
.nav-logo img {
  width: 80px;
  height: 80px;
}

.m-nav-logo {
  display: flex;
  align-items: center;
  color: #a7aeb4;
  font-family: "Space Grotesk", sans-serif;
}
.m-nav-logo img {
  width: 100px;
}

.navLogoWord {
  font-size: 20px;
}

.m-nav-logo img {
  width: 70px;
  height: 60px;
}

.navLogoWord {
  font-size: 25px;
  line-height: 0.8;
}

.DisplayBlock {
  display: flex;
  align-items: center;
  color: #fff;
}

.DisplayNon {
  display: none;
}

.l-header {
  height: 80px;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0 20px;
}

.lang select {
  padding: 5px 15px;
  border: 1px solid #e2eded;
  border-color: #eaf1f1 #e4eded #dbe7e7 #e4eded;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  color: #a7aeb4;
}

.lang select option {
  color: #000;
}

.right-text {
  text-align: center;
}

.navBar-box {
  width: 100%;
  display: flex;
  align-items: center;
}

.nav-box {
  display: flex;
  justify-content: flex-end;
}

.nav-link {
  color: #a7aeb4;
  padding: 10px;
  font-weight: 400;
}

.nav-link:hover {
  color: #0A4158;
  color: #16b5ef;
  color: #BE9101;
  color: #E5C00F;
}

.nav-active {
  color: #a7aeb4;
}

.fontWhite {
  color: #fff;
}

.nav-item {
  position: relative;
}

.nav-link:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 16px;
  width: 0px;
  height: 2px;
  transition: 0.5s ease-in-out;
}

.nav-item:hover .nav-link::before {
  width: 50%;
}

.bar-box {
  display: none;
  font-size: 25px;
  cursor: pointer;
  color: #a7aeb4;
}

.bar-white {
  color: #a7aeb4;
}

.bar-blue {
  color: #fff;
}

.nav-box {
  display: flex;
}

.Q-logo, .Q-hr {
  display: none;
}

/* nav media Query  */
@media (max-width: 769px) {
  .bar-box {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 7%;
  }
  .nav-box {
    position: absolute;
    top: 0;
    left: -50%;
    height: 100vh;
    width: 50%;
    transition: 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top right, #a7aeb4 40%, #B4A7AE);
    font-family: "Space Grotesk", sans-serif;
  }
  .blur {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
  }
  .nav-link-open {
    color: #fff;
  }
  .nav-bg-open {
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    background-color: rgba(167, 174, 180, 0.968627451);
  }
  .Q-logo {
    display: block;
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 20px;
    color: #fff;
  }
  .Q-logo img {
    width: 80px;
    height: 76px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 769px) and (max-width: 320px) {
  .Q-logo img {
    display: none;
  }
}
@media (max-width: 769px) {
  .Q-logo .Q-logoWord {
    display: flex;
    align-items: center;
  }
  .Q-logo .Q-logoWord > div {
    line-height: 0.8;
  }
  .Q-logo span {
    font-size: 14px;
  }
}
@media (max-width: 769px) and (max-width: 577px) {
  .Q-logo span {
    display: none;
  }
}
@media (max-width: 769px) {
  .bar-white {
    color: #fff;
  }
  .nav-link,
  .nav-link.active,
  .nav-link:hover {
    color: #fff;
  }
  .nav-link:before {
    background-color: #fff;
  }
  .Q-hr {
    display: block;
  }
  .Q-hr p {
    position: absolute;
    bottom: 20px;
    left: 16px;
    color: #fff;
    font-size: 12px;
  }
  .Q-hr p span {
    color: #BE9101;
  }
  .Q-hr::before {
    content: "";
    position: absolute;
    bottom: 60px;
    left: 16px;
    width: 70%;
    height: 1px;
    background-color: #dadada;
    margin-bottom: 10px;
  }
  .new-class {
    left: 0%;
    transition: 0.5s ease-in-out;
  }
  .nav-box .nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
}
@media (max-width: 577px) {
  .Q-hr span {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .bar-box i {
    font-size: 22px;
  }
}
@media (max-width: 300px) {
  .nav-link {
    font-size: 13px;
    padding: 10px 0;
  }
  .nav-logo1 {
    width: 80px;
    height: 20px;
  }
  .bar-box i {
    font-size: 19px;
  }
}
/* nav classes js */
.open {
  position: fixed;
  width: 100%;
  animation-name: animationFade;
  animation-duration: 1s;
  animation-fill-mode: both;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 40px 20px;
  background-color: #a7aeb4;
  z-index: 10000;
  display: flex;
  align-items: center;
  color: #fff;
}

.open .bar {
  top: 20px;
}

.nav-logo3 {
  width: 100px;
}

@keyframes animationFade {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    -o-transform: none;
  }
}
/* End Header */
.home {
  height: 100vh;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  display: flex;
}

.home-left {
  height: 100%;
  overflow: hidden;
  width: 95%;
}

.content-width {
  width: 100%;
  height: 100%;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow-items {
  position: relative;
  width: 100%;
  height: 100vh;
}

.item {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.item-image-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.item-image {
  position: relative;
  width: 100%;
  height: 90%;
  opacity: 0;
  display: block;
  /* transition: property name | duration | timing-function | delay  */
  transition: opacity 0.3s ease-out 0.45s;
  -o-object-fit: fill;
     object-fit: fill;
}

.item.active .item-image,
.item.active .img1 {
  opacity: 1;
}

.item.active .item-image-container::before {
  opacity: 0.8;
}

.item-content {
  position: absolute;
  top: 25%;
  left: 15%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40%;
  height: 300px;
  padding: 0px 10px;
}

.bg-home {
  height: 100%;
  width: 100%;
  background-color: rgba(243, 243, 243, 0.342);
  background-color: rgba(167, 174, 180, 0.3411764706);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* Staggered Vertical Items ------------------------------------------------------*/
.item-header {
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: absolute;
  top: 0;
  right: 10px;
  width: 96%;
  color: #fff;
}

.item-header-up {
  display: flex;
  align-items: center;
}

.item-header-up img {
  width: 100px;
  height: 120px;
}

.item-header span {
  position: absolute;
  bottom: 10px;
  font-size: 13px;
  left: 20%;
  text-wrap: nowrap;
}

.item-header-word {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item-header-word > div {
  line-height: 0.8;
}

.item-header-word .header-word1 {
  font-weight: 600;
  font-size: 30px;
}

.item-description {
  position: absolute;
  top: 40%;
  width: 100%;
  z-index: 9;
  color: #000;
  overflow: hidden;
  display: inline-block;
  padding: 10px 20px;
}

.homeTitleSp {
  position: absolute;
  right: 100px;
  font-size: 22px;
}

@media (max-width: 992px) {
  .item-header {
    display: none;
  }
}
.item-description div,
.item-description p {
  display: inline-block;
  transform: translateY(300%);
  width: 100%;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
}

.home-btn {
  overflow: hidden;
  display: inline-block;
  height: 50px;
  width: 90%;
  position: absolute;
  bottom: 0px;
  left: 20px;
}

.item.active .home-but-circle {
  position: absolute;
  top: 30%;
  transform: translateY(0%);
  background-color: #a7aeb4;
  margin: 0 10px;
}

.home-but-circle,
.about-but-circle {
  width: 10px;
  height: 10px;
  background-color: #a7aeb4;
  border-radius: 50%;
  z-index: 20;
  margin-left: 20px;
  background-color: transparent;
}

.home-btn button {
  border: none;
  outline: none;
  padding: 10px 35px;
  color: #a7aeb4;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  bottom: 0px;
  z-index: 11;
  background-color: #ffffff;
  color: #555555;
  font-weight: 500;
  display: inline-block;
  transform: translateY(190%);
}

.item.active .item-description div,
.item.active .item-description p,
.item.active .home-but {
  transform: translateY(0);
}

.item-description div,
.item-description p,
.home-but,
.home-but-circle {
  transition: 0.21s;
}

@media (max-width: 992px) {
  .home-but {
    bottom: 4px;
  }
  .item-content {
    left: 3%;
    width: 95%;
    height: 190px;
    bottom: 15%;
    top: 50%;
  }
  .item-header img {
    display: none;
  }
  .item-description {
    top: 0%;
    font-size: 20px;
  }
}
@media (max-width: 769px) {
  .item-description {
    font-size: 16px;
  }
}
@media (max-width: 577px) {
  .item-description {
    font-size: 13px;
  }
  .home-left {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .home-but-circle {
    display: none;
  }
  .home-btn button {
    width: 100px;
    font-size: 9px;
    padding: 10px 10px;
  }
  .item-description div {
    font-size: 11px;
  }
}
#text1,
#text2,
#text3,
#text4,
#text5 {
  display: none;
}

/* Controls ----------------------------------------------------------------------*/
.controls {
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 40%;
}

@media (max-width: 992px) {
  .controls {
    top: 30%;
  }
}
.controls ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.controls ul li {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: 3px;
  border-radius: 50%;
  background: #a7aeb4;
  cursor: pointer;
}

.controls ul li.active {
  background: #fff;
}

.home-right {
  height: 49%;
  position: relative;
  right: 0px;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
}

.x-home {
  width: 20px;
  height: 20px;
}

.x-home-white {
  width: 20px;
  height: 20px;
  display: none;
}

.h-icon-x:hover .x-home {
  display: none;
}
.h-icon-x:hover .x-home-white {
  display: block;
  transform: scale(1.5);
}

.home-right .h-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #B4A7AE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
  cursor: pointer;
  transition: 0.5s all;
}

.home-right .h-icon:hover {
  background-color: #a7aeb4;
}

.home-right .h-icon:hover i {
  color: #fff;
}

.home-right .h-icon i {
  color: #B4A7AE;
}

.home-right .h-icon:hover i {
  transform: scale(1.4);
  transition: 0.5s all;
}

@media (max-width: 577px) {
  .home-right {
    display: none;
  }
}
/* //////////////////// About //////////////////// */
section.about {
  display: flex;
  height: 100%;
  position: relative;
}

@media (max-width: 1100px) {
  .about {
    height: auto;
  }
}
.bg-about {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(243, 243, 243, 0.488);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.about-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px 0;
  position: relative;
  padding: 20px 0;
}

.about::before {
  content: "";
  width: 10%;
  height: 60%;
  background-color: #a7aeb4;
  position: absolute;
  top: 0;
  left: 45%;
  z-index: -1;
}

@media (max-width: 577px) {
  .about-box::before {
    height: 41%;
  }
}
.about-left {
  width: 50%;
  height: 350px;
  position: relative;
}

.about-left img {
  height: 100%;
  width: 100%;
}

.about-right {
  width: 50%;
  margin-left: 45%;
  margin-top: -15%;
  height: 300px;
  position: relative;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

@media (max-width: 992px) {
  .about-left {
    width: 90%;
    margin: 40px auto;
  }
  .about-right {
    margin: auto;
    width: 88%;
  }
}
.about-title {
  position: relative;
}

.about-right .about-title h3 {
  font-size: 30px;
  font-weight: 600;
}

.about-p {
  position: relative;
  line-height: 1;
}

.about-p span {
  color: #828282;
}

.about-p div {
  position: relative;
  height: 70px;
  color: #828282;
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: inline;
  line-height: 1.4;
}

.about-but {
  border: none;
  outline: none;
  padding: 10px 5px;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  bottom: 0px;
  z-index: 11;
  width: 120px;
  background-color: #a7aeb4;
}

.about-content-last {
  position: absolute;
  bottom: 10%;
  left: 0px;
  height: 70px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  padding: 20px;
}

@media (max-width: 400px) {
  .about-p div {
    font-size: 10px;
  }
  .about-right {
    height: 360px;
  }
}
@media (max-width: 577px) {
  .about-content-last {
    padding: 0px;
    bottom: 0%;
    height: 20px;
  }
  .about-but {
    padding: 10px;
  }
  .about-p div {
    font-size: 11px;
  }
}
@media (max-width: 769px) {
  .about-content-last {
    bottom: 15px;
  }
}
.padge {
  position: absolute;
  right: -3.5%;
  top: -25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
}

.padge::after {
  content: "";
  background-color: #a7aeb4;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  position: absolute;
  top: 33%;
  left: 33%;
}

.padge .part_1 {
  position: absolute;
  background-color: #0A4158;
  top: 0px;
  left: 3px;
  transform: rotate(5deg);
}

.padge .part_2 {
  position: absolute;
  left: 20px;
  top: -23px;
  transform: rotate(63deg);
}

.padge .part_3 {
  position: absolute;
  left: -10px;
  top: 10px;
  transform: rotate(60deg);
}

.padge span {
  position: absolute;
  transform-origin: bottom center;
  color: #a7aeb4;
  font-family: "Space Grotesk", sans-serif;
}

.char1 {
  transform: rotate(-55deg);
  top: -5px;
  left: 2px;
}

.char2 {
  transform: rotate(-50deg);
  top: -12px;
  left: 9px;
}

.char3 {
  transform: rotate(-20deg);
  top: -13px;
  left: 11px;
}

.char4 {
  transform: rotate(-7deg);
  top: -14px;
  left: 17px;
}

.char5 {
  transform: rotate(0deg);
  top: -14px;
  left: 23px;
}

.char6 {
  transform: rotate(-8deg);
  top: -15px;
  left: 35px;
}

.char7 {
  transform: rotate(-5deg);
  top: -15px;
  left: 38px;
}

.char8 {
  transform: rotate(10deg);
  top: -15px;
  left: 43px;
}

.char9 {
  transform: rotate(17deg);
  top: -13px;
  left: 48px;
}

.char10 {
  transform: rotate(35deg);
  top: -10px;
  left: 51px;
}

.char11 {
  transform: rotate(55deg);
  top: -8px;
  left: 55px;
}

.char12 {
  transform: rotate(55deg);
  top: -3px;
  left: 54px;
}

.char13 {
  transform: rotate(78deg);
  top: 2px;
  left: 53px;
}

.char14 {
  transform: rotate(140deg);
  top: -29px;
  left: 37px;
}

.char15 {
  transform: rotate(155deg);
  top: -26px;
  left: 34px;
}

.char16 {
  transform: rotate(160deg);
  top: -24px;
  left: 28px;
}

.char17 {
  transform: rotate(180deg);
  top: -24px;
  left: 28px;
}

.char18 {
  transform: rotate(185deg);
  top: -22px;
  left: 21px;
}

.char19 {
  transform: rotate(195deg);
  top: -26px;
  left: 14px;
}

.about-contact {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.about-contact .about-contact-icon i {
  font-size: 30px;
  margin: 10px;
}

.about-contact .about-contact-details {
  font-size: 20px;
}

.about-contact .about-contact-details .support {
  font-weight: 700;
}

.about-contact .about-contact-details .number {
  color: #0A4158;
}

@media (max-width: 577px) {
  .about-contact {
    display: none;
  }
  .about-content-last {
    justify-content: center;
  }
}
section.services {
  height: 100%;
  width: 100%;
  position: relative;
  background-color: #B4A7AE;
  background: linear-gradient(to top right, #a7aeb4 40%, #B4A7AE);
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../images/services/bg-servicse.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.services-bg {
  background-color: rgba(0, 0, 0, 0.6588235294);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.services-title {
  padding: 20px;
  color: #fff;
}

.services-title h1 {
  font-size: 40px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
}

.serv-link {
  margin: 0 5px;
}

.serv-content1, .serv-content3 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serv-content2, .serv-content4 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-video {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  position: relative;
  border: 1px solid #E4D7D0;
  height: 100%;
}

@media (max-width: 577px) {
  .serv-cont {
    display: flex;
    justify-content: center;
  }
  .services-box {
    width: 96%;
  }
}
.c-video1, .c-video3 {
  height: 280px;
}

.c-video img {
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.c-video:hover img {
  transform: scale(1.2);
}

.c-video2 {
  height: 200px;
}

.serv-content .video-details {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  padding: 10px 0;
}

.serv-content .video-details .video-details-content h4 {
  font-size: 19px;
  color: #ffffff;
}

.serv-content .video-details .video-details-content h4:hover {
  color: #0A4158;
  color: #eeeeee;
  color: #E5C00F;
}

.serv-content .video-details .video-details-content p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

section.why {
  height: 100%;
  margin: 40px 0;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

@media (min-width: 1400px) {
  .container {
    max-width: 2100px;
  }
}
.why-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  position: relative;
}

.why-first {
  position: absolute;
  width: 70%;
  left: 0;
  padding: 0;
}

.why-box {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
  z-index: 1000;
  font-family: "Space Grotesk", sans-serif;
}

.why-img-container {
  width: 40%;
  padding: 0;
}

.why-img {
  height: 550px;
  width: 100%;
}

.why-img img {
  width: 100%;
  height: 100%;
}

.why-title {
  position: relative;
  padding: 10px;
  width: 35%;
}

.why-title h1 {
  font-size: 30px;
}

.why-title::before {
  content: "";
  width: 0.3%;
  height: 70%;
  position: absolute;
  left: 0;
  top: 10%;
  background-color: #B4A7A8;
}

.why-title h1::after {
  content: "";
  width: 5px;
  height: 70%;
  position: absolute;
  right: 0%;
  top: 10%;
  background-color: #B4A7A8;
}

@media (max-width: 992px) {
  .why-title h1 {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (max-width: 577px) {
  .why-title h1 {
    font-size: 14px;
  }
}
.why-para p {
  font-weight: 600;
}

.why-detail-point {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
}

.why-detail-point p {
  margin: 10px 5px;
}

.why-detail-icon {
  margin-right: 5px;
  color: #B4A7A8;
}

@media (max-width: 992px) {
  .why-container {
    height: auto;
    align-items: flex-start;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
  }
  .why-first {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
  }
  .why-img-container {
    width: 100%;
    margin: 10px 0;
  }
  .why-detail-point p {
    font-size: 12px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
  }
}
section.Contact {
  background: linear-gradient(to top right, #a7aeb4 40%, #B4A7AE);
  padding: 60px 0;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  margin: 40px 0;
  display: flex;
  align-items: center;
}

@media (max-width: 144px) {
  section.Contact {
    height: 100vh;
  }
}
/* form */
.form-control {
  position: relative;
  display: flex;
  flex-direction: column;
  border: none;
  background-color: transparent;
  margin: 2px 0;
}

.form-control input[type=text],
.form-control input[type=email],
.form-control input[type=tel],
.form-control input[type=Massege] {
  border: 1px solid #fff;
  display: block;
  font-size: 14px;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #a7aeb4;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.form-control input[type=Massege] {
  height: 200px;
}

.form-control input::-moz-placeholder {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
}

.form-control input::placeholder {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
}

.form-control input:focus {
  outline: 0;
  border: 2px solid #4c4b4b;
}

.form-control.success input {
  border: 1px solid #2ecc71;
}

.form-control.error input {
  border: 1px solid #e74c3c;
}

.form-control i {
  visibility: hidden;
  position: absolute;
  top: 40px;
  right: 10px;
}

.form-control.success i.fa-check-circle {
  margin: 6px 10px;
  color: #2ecc71;
  visibility: visible;
  position: absolute;
  top: 20%;
}

.form-control.error i.fa-exclamation-circle {
  margin: 6px 10px;
  color: #e74c3c;
  visibility: visible;
  position: absolute;
  top: 20%;
}

.form-control small {
  color: #e74c3c;
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  margin: 0 10px;
}

.form-control.error small {
  float: right;
  visibility: visible;
}

.form button {
  background-color: #fff;
  outline: none;
  border: none;
  color: #555555;
  display: block;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0px 10px;
  cursor: pointer;
  font-weight: 500;
}

.iti {
  width: 100%;
  background-color: #2ecc71;
}

/*====== Form End =====*/
.contact-right {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-right::before {
  content: "";
  width: 50%;
  height: 80%;
  background-color: #3E4143;
  position: absolute;
  top: -17%;
  left: 20%;
}

@media (max-width: 769px) {
  .contact-right::before {
    width: 0;
  }
}
@media (max-width: 577px) {
  .contact-title {
    text-align: center;
  }
  .contact-right::before {
    content: "";
    width: 0%;
    height: 0%;
  }
}
.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.contact-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title h1 {
  font-size: 70px;
  color: #fff;
}

.contact-title h1 span {
  position: relative;
}

.contact-title h1 span::after {
  content: "";
  width: 90%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0%;
  left: 5%;
}

.contact-title p,
.contact-title > span {
  color: #fff;
  font-size: 60px;
}

.contact-map {
  height: 300px;
  width: 90%;
  margin: 20px 0;
}

@media (max-width: 992px) {
  .contact-title h1 {
    font-size: 50px;
  }
  .contact-title p,
  .contact-title > span {
    color: #fff;
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .contact-title h1 {
    font-size: 30px;
  }
  .contact-title p,
  .contact-title > span {
    color: #fff;
    font-size: 20px;
  }
}
.latest {
  height: 100vh;
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 40px;
}

.latest-box {
  padding: 0;
}

.latest-title p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #8a8888;
}

.latest-detail-title {
  color: #B4A7AE;
  border-bottom: 1px solid #B4A7AE;
  font-size: 18px;
  margin: 10px;
}

.latest-info-raw i {
  color: #B4A7AE;
}

.latest-info-box {
  margin: 10px 0;
}

.latest-img img {
  width: 100%;
  height: 200px;
}

.latest-box-images img {
  width: 200px;
  height: 150px;
  margin: 0 5px;
}

@media (max-width: 992px) {
  .latest, .Love, .love-box {
    height: auto;
  }
  .latest-box-right {
    margin: 20px 0;
  }
  .latest-box-images img {
    margin: 20px 5px;
  }
  .l-d-col {
    margin: 5px 0;
  }
}
section.News {
  margin: 40px 0;
  height: 100%;
  padding: 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
}

.news-title {
  margin-bottom: 40px;
}

.card {
  width: 85%;
  height: 400px;
  border: 1px solid #ccc;
  padding: 40px 20px 40px 20px;
  position: relative;
  cursor: pointer;
  margin: 10px;
}

.card-para p {
  color: #B4AEA7;
  font-size: 18px;
  height: 100px;
}

.card-para div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.card-para div i {
  color: #B4A7AE;
  margin: 0 10px;
}

.card-para div:hover i {
  font-size: 30px;
}

.card-img {
  position: absolute;
  bottom: 40px;
  left: 20px;
  width: 100%;
}

.card-img img {
  width: 250px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-pro-navigation {
  position: absolute;
  top: 10%;
  right: 10%;
  margin: 0 auto;
  width: 200px;
  display: flex;
  justify-content: space-around;
}

.slick-project-prev,
.slick-project-next {
  color: #ccc;
  background: transparent;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 7px 14px;
  font-family: "Space Grotesk", sans-serif;
  margin: 0 10px;
  cursor: pointer;
}

.slick-dots li {
  display: none;
}

footer {
  padding: 60px 40px;
  height: auto;
  background-image: url("../images/projects/01designSection/Obhur residential villa/des-033.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%;
  position: relative;
  display: flex;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (max-width: 577px) {
  footer {
    padding: 20px;
  }
}
.footer-bac:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8784313725);
}

.footer-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  color: #fff;
}

.footer-title {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
}

.footer-title h1 {
  color: #E5C00F;
  font-size: 60px;
}

.footer-logo {
  display: flex;
  align-items: flex-end;
}
.footer-logo img {
  width: 120px;
  height: 90px;
}
.footer-logo .logo-word {
  color: #fff;
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 25px;
}

.footer-info {
  font-family: "Space Grotesk", sans-serif;
  height: 100%;
}

.footer-last {
  padding: 40px 0;
}

.footer-last > div {
  padding: 5px;
}

.footer-info h5 {
  color: #deb80b;
}

.footer-info p, .footer-contacts {
  font-size: 14px;
}

.footer-contacts {
  margin: 10px 0;
}

.footer-contacts h6 {
  font-weight: 500;
  color: rgb(55, 128, 255);
}

.links {
  display: flex;
  flex-direction: column;
}

.links a {
  text-decoration: none;
  color: #fff;
  margin: 10px 0;
  position: relative;
  line-height: 2.2;
}

.links a:before {
  content: "";
  width: 80px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  width: 0px;
  transition: ease-in-out 0.5s;
}

.footer-link:hover a::before {
  width: 100%;
}

.footer-end-right {
  color: #deb80b;
  font-size: 13px;
  text-decoration: underline;
  margin: 20px 0;
}

.footer-end-social {
  display: flex;
  margin: 10px 0;
}

.social-footer-link {
  margin: 0 10px;
  padding: 5px 10px;
  border-radius: 30%;
  border: 1px solid rgb(55, 128, 255);
  width: 35px;
  height: 35px;
}

.social-footer-link:hover a i, .button-up:hover a i {
  color: #fff;
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.5s ease-in-out;
}

.button-up {
  position: absolute;
  bottom: 5%;
  right: 5%;
  border-radius: 30%;
  border: 1px solid rgb(55, 128, 255);
  width: 35px;
  height: 35px;
  padding: 5px 10px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .footer-title {
    justify-content: center;
  }
}
@media (max-width: 769px) {
  .footer-title {
    justify-content: flex-start;
  }
  .decore-left-img, .decore-right-img {
    display: none;
  }
}
.secPagePref {
  background-color: #a7aeb4;
  margin-top: 80px;
  height: 60px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
}
.secPagePref p {
  color: #fcfcfc;
  font-size: 14px;
  display: inline;
}
.secPagePref span {
  font-size: 20px;
  color: #fcfcfc;
  font-weight: 700;
}

@media (max-width: 992px) {
  .secPagePref {
    height: auto;
  }
}
.d-header {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  background-color: rgb(236, 243, 255);
  position: relative;
  background-image: url("../images/services/DesignSection/Exterior/design-ex2.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%;
}

.d-header-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 127, 127, 0.488);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.d-header-content {
  position: relative;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
}

.d-header-l {
  display: flex;
  align-items: center;
  margin: 0 5px;
  font-size: 26px;
  color: #fff;
}

.d-header-l i {
  margin: 0 5px;
  color: #fff;
}

.d-header-content p {
  margin-top: 15px;
  font-size: 18px;
  margin-left: 5px;
}

.srevices-slides {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.serv-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  height: auto;
}

.serv-slide h4 {
  font-size: 30px;
  color: #000;
  z-index: 99999;
  padding: 10px;
  position: absolute;
  top: -30%;
}

.slider {
  margin: 40px 0;
  margin-left: -20px;
}

.servCard {
  height: 350px;
  width: 100%;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 10px;
  cursor: pointer;
}

.servCard-img {
  width: 100%;
  height: 80%;
  position: relative;
  overflow: hidden;
}
.servCard-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease-in;
  border: 1px solid #E4D7D0;
}

.servCard-bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5803921569);
  top: 100%;
  left: 15px;
  width: 90%;
  width: 0;
  height: 80%;
  transition: 0.5s ease-in;
  overflow: hidden;
}

.serv-Show {
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: -100%;
  left: 25%;
  transition: 0.8s ease-in;
  cursor: pointer;
  padding: 10px;
}

.hr-bg {
  background-color: #000;
  position: absolute;
  bottom: 10px;
  left: 100%;
  width: 80%;
  height: 2px;
  border-radius: 20px;
  transition: 1s ease-in;
}

.hr-bg2 {
  background-color: #000;
  position: absolute;
  top: 250%;
  left: -35%;
  width: 80%;
  height: 2px;
  border-radius: 20px;
  transition: 1s ease-in;
  transform: rotate(90deg);
}

.servCard-img:hover img {
  transform: scale(1.2);
}

.servCard-img:hover .servCard-bg {
  top: 25px;
}

.servCard-img:hover .hr-bg {
  left: 15px;
}

.servCard-img:hover .hr-bg2 {
  top: 50%;
}

.servCard-img:hover .serv-Show {
  top: 40%;
  background-color: rgba(184, 135, 11, 0.657);
}

.serv-card-p {
  height: 20%;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  font-family: "Space Grotesk", sans-serif;
}

.serv-card-p h6 {
  font-size: 20px;
  color: #000;
}

.serv-card-p span {
  color: #BE9101;
  cursor: pointer;
  transition: 0.5s all;
  display: flex;
  align-items: center;
}

.serv-card-p span:hover {
  color: darkgoldenrod;
  margin-left: 5px;
}

.serv-card-p span i {
  font-size: 11px;
}

.serv-card-p span .fullProject {
  margin: 0 5px;
}

section.minFeatures {
  height: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-family: "Space Grotesk", sans-serif;
}

.min-feature-box .feature-item {
  margin: 10px 0;
}
.min-feature-box .feature-item span {
  display: block;
}

@media (max-width: 577px) {
  .min-feature-box h2 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }
  .min-feature-box .feature-item {
    font-size: 14px;
  }
}
.features-content {
  width: 100%;
  padding: 40px 0px;
}
.features-content .minFeatureContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.features-content .features-title {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.features-content .features-title h2 {
  font-size: 30px;
  color: #BE9101;
  margin: 0 5px;
}
@media (max-width: 992px) {
  .features-content .features-title h2 {
    font-size: 20px;
  }
}
.features-content .feature-item {
  line-height: 2;
  color: #555555;
}
.features-content .feature-item i {
  color: #BE9101;
}
.features-content .featImg {
  height: 300px;
}
.features-content .featImg img {
  width: 100%;
  height: 100%;
}

@media (max-width: 769px) {
  .featuresBox {
    display: flex;
    justify-content: center;
  }
  .features-content {
    height: auto;
  }
  .features-l {
    margin: 10px 0;
  }
}
.min-serv-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  margin: 5px 0;
}
.min-serv-slide .slider {
  display: flex;
  align-items: center;
}
.min-serv-slide .servCard {
  height: 350px;
}
.min-serv-slide .servCard .servCard-img {
  height: 100%;
}

@media (max-width: 1025px) {
  .min-serv-slide {
    height: auto;
  }
}
.min-title h3 {
  font-size: 35px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .min-title h3 {
    font-size: 20px;
  }
  .min-title .hvas-para, .min-title p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .min-title h3 {
    font-size: 16px;
  }
  .min-title .hvas-para, .min-title p {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .min-title .hvas-para, .min-title p {
    font-size: 11px;
  }
}
.min-title .spanColor {
  color: #BE9101;
  font-weight: 600;
  padding: 0 5px;
}
.min-title p {
  color: #555555;
  font-size: 18px;
}

.min-strategy .min-stra-title h3 {
  font-size: 35px;
  font-weight: 600;
}
.min-strategy .min-stra-title .spanColor {
  color: #BE9101;
}
@media (max-width: 769px) {
  .min-strategy .min-stra-title h3 {
    font-size: 20px;
  }
}
.min-strategy .min-stra-para p {
  color: #555555;
  font-size: 18px;
}
@media (max-width: 992px) {
  .min-strategy .min-stra-para p {
    font-size: 13px;
  }
}

.slider-Min .slide-min-item {
  padding: 0 5px;
}
.slider-Min .slide-min-item img {
  height: 340px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.Features {
  height: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  font-family: "Space Grotesk", sans-serif;
}

section.servFeatures {
  position: relative;
  padding: 40px;
  align-items: center;
  justify-content: space-between;
  font-family: "Space Grotesk", sans-serif;
}

.strategy {
  width: 100%;
  padding: 20px 0;
  position: relative;
  background-image: url("../images/services/DesignSection/Exterior/design-ex2.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%;
  font-size: 15px;
}
.strategy .strategy-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 127, 127, 0.488);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.strategy p, .strategy .challenge p {
  color: #fff;
}
.strategy p span {
  color: #BE9101;
}

.strategy-content {
  padding: 20px 0;
}
.strategy-content .stra-title {
  display: flex;
  padding: 10px 0;
}
.strategy-content .stra-title i {
  font-size: 30px;
  color: #fff;
  margin: 0 5px;
}
.strategy-content .stra-title h2 {
  font-weight: 400;
  color: #fff;
}

.pro-container {
  height: 80vh;
  position: relative;
  width: 100%;
  padding: 20px 0;
  display: flex;
}

.pro-left {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

.row > * {
  padding: 0;
}

@media (max-width: 992px) {
  .pro-container {
    height: auto;
  }
  .pro-left {
    height: 500px;
  }
}
.slick-list {
  height: 100% !important;
}

.slider-nav {
  width: 20%;
  padding: 0px 5px;
  height: 100%;
  position: relative;
}

.slide-nav-item {
  height: 200px;
}

.slider-nav .slide-nav-item img {
  height: 100%;
  width: 100%;
}

.slider-products {
  width: 80%;
}

@media (max-width: 992px) {
  .slider-products {
    width: 80%;
  }
}
.slider-products div {
  height: 100%;
  width: 100%;
}

.slider-products img {
  width: 100%;
  height: 100%;
}

.slickButtons {
  width: 150px;
  position: absolute;
  top: 85%;
  left: 15%;
}

@media (max-width: 992px) {
  .slickButtons {
    top: 0%;
    left: 45%;
  }
}
.slickButtons button {
  width: 40px;
  height: 40px;
  background-color: #BE9101;
  outline: none;
  border: none;
  margin: 0 5px;
}

.slick-prev:before {
  content: "←";
  color: #fff;
  font-size: 20px;
}

.slick-next:before {
  content: "→";
  color: #fff;
  font-size: 20px;
}

.slick-prev:hover, .slick-next:hover {
  background-color: #BE9101;
}

.slick-dots {
  display: none;
}

.pro-right {
  font-family: "Space Grotesk", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 40px;
}

@media (min-width: 1440px) {
  .pro-right {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .pro-right {
    margin: 20px 0;
    padding: 40px 0;
  }
}
@media (max-width: 577px) {
  .pro-right {
    padding: 20px;
  }
}
.pro-r-title {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-bottom: 20px;
}
.pro-r-title h2 {
  font-size: 30px;
}

@media (max-width: 1024px) {
  .pro-r-title h2 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .pro-r-title {
    margin-top: 20px;
  }
}
.pro-r-title h3 {
  color: #BE9101;
  font-size: 22px;
}

.pro-r-p p {
  color: #919191;
  font-size: 14px;
  padding: 20px 0;
}

section.challenge {
  font-family: "Space Grotesk", sans-serif;
  display: flex;
  align-items: center;
}

@media (max-width: 577px) {
  section.challenge {
    padding: 20px;
  }
}
.challenge-title {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.challenge-title i {
  font-size: 30px;
  margin-right: 5px;
  color: #BE9101;
}

.chall-details i {
  color: #BE9101;
  padding: 0 5px;
  font-size: 14px;
}

.chall-details span {
  color: #919191;
}/*# sourceMappingURL=style.css.map */