@font-face {
  font-family: Roboto;
  src: url("../assets/fonts/Roboto-Regular_3.ttf");
}

@font-face {
  font-family: Inter;
  src: url("../assets/fonts/Inter-VariableFont_opsz,wght.ttf");
}

@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/Montserrat-VariableFont_wght.ttf");
}

@font-face {
  font-family: Boheme;
  src: url("../assets/fonts/Boheme_Floral.ttf");
}

@font-face {
  font-family: Kraton;
  src: url("../assets/fonts/Kraton.otf");
}

@font-face {
  font-family: CeraPro;
  src: url("../assets/fonts/Cera_ Pro_Medium.otf");
}

@font-face {
  font-family: CeraBasic;
  src: url("../assets/fonts/CERA-BASIC.OTF");
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;
  --CeraPro: CeraPro;
  --CeraBasic: CeraBasic;
  --Kraton: Kraton;
  --Boheme: Boheme;
  --Roboto: Roboto;
  --Montserrat: Montserrat;
  --Inter: Inter;
  --primary: #004135;
  --secondary: #72bf44;
  --text-dark: #474747;
  --dark-blue: #005792;
  --text-mute: rgba(37, 88, 83, 0.2);
}

html {
  font-size: 16px !important;
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  font-family: var(--CeraBasic) !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;

}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

body.loading {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

body.loaded {
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.loader-container {
  display: none;
}

.loader-wrapper {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  background-color: #ffffffe3;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  height: 100vh;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -o-radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  background: radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
  animation: l13 1s infinite linear;
}

.loader-light {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -o-radial-gradient(farthest-side, #ffffff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #ffffff);
  background: radial-gradient(farthest-side, #ffffff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #ffffff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
  animation: l13 1s infinite linear;
}

@-webkit-keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

/* form loader css */

.form-loader {
  display: none;
}

.form-loader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--primary);
  margin: auto;
  padding: 0.45rem 0.75rem 0.3rem 0.75rem;
  border-radius: 4px;
}

.form-loader-wrapper .loader-txt {
  color: var(--light);
  font-size: 1rem;
  font-weight: 500;
}

.f-loader {
  width: 25px;
  height: 25px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 0.75s linear infinite;
  animation: rotation 0.75s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem !important;
}

ul {
  padding-left: 0rem !important;
  margin-bottom: 0rem !important;
}

li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0rem !important;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.line {
  width: 6vw;
  height: 2px;
  border-radius: 100px;
  background-color: var(--primary);
  position: relative;
  bottom: 15px;
}

.line.about-line {
  bottom: unset;
}

.line.light {
  background-color: var(--light);
}

header {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
  background-color: var(--light);
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.marq-wrap {
  background: #394C41;
  /* margin-top: -10px; */
  /* margin-bottom: 15px; */
  position: static;
  padding: 0.7rem 0rem;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

.social-icons {
  width: 20px;
}

.link-text {
  color: #DBB464;
}

.dflex {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.dflex-icon {
  display: flex;
  justify-content: center;
  gap: 5px;
}

img {
  max-width: 100%;
}

header.dropped {
  top: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
  background-color: var(--light);
}

nav {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.75rem 4rem;
}

nav.dropped {
  background-color: var(--primary);
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
  align-items: center;
}

.navbar-container .navlogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}

.navbar-container .menu {
  display: none;
}

.navbar-container .navlogo .logo {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 130px;
  -o-object-fit: cover;
  object-fit: cover;
}

nav.dropped .navbar-container .navlogo .logo {
  width: 100px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -o-object-fit: cover;
  object-fit: cover;
}

.mob-logo {
  width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navbar-container .navbar-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-wrap: nowrap;
  text-transform: capitalize;
  font-family: CeraPro;
}

@-webkit-keyframes pulse-effect-2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.404);
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.404);
  }

  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect-2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.26);
  }

  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

.offcanvas.offcanvas-start {
  background: var(--primary);
}

.offcanvas-body .offcanvas-navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.offcanvas-body .offcanvas-navs .offcanvas-nav .offcanvas-link {
  color: var(--light);
  font-size: 1rem;
  font-weight: 500;
}

.offcanvas-header .btn-close {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.btn-primary {
  color: var(--primary);
  border: none;
  padding: 0.5rem 1rem;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-top: 1px solid var(--primary);
  text-wrap: nowrap;
  font-size: 1rem;
  border-bottom: 1px solid var(--primary);
  text-transform: capitalize;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #4c6dc591;
    box-shadow: 0 0 0 0 #476fdb91;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #4c6dc591;
    box-shadow: 0 0 0 0 #4c6dc591;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

section.main-banner {
  /* margin: 4.25rem 0 0 0; */
}

.accordion-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.accordion-content .acc-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
}

.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-button::after {
  background-image: unset;
  content: "+";
  width: 15px;
  height: 20px;
  font-size: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
  background-image: unset;
  font-size: 1.5rem;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  width: 15px;
  height: 20px;
  content: "-";
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}

.accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accordion-item {
  border: 1px solid #000;
}

.modal-logo {
  width: 120px;
  max-width: 100%;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-control.custom-input {
  border: none;
  border-bottom: 1px solid var(--primary);
  background: transparent;
  border-radius: 0px;
  color: var(--primary);
}

.mobile-input-div {
  position: relative;
}

.mobile-input-div .country-code {
  position: absolute;
  top: 7px;
  left: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
}

.invalid-feedback {
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.form-control.custom-input.mobile-input {
  padding-left: 2.55rem;
}

.form-control.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-submit {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.5rem 2rem;
  margin: 1rem 0 0 0;
}


.enquire-div-fixed {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99;
  -webkit-transform: rotate(270deg) translateY(61px);
  -ms-transform: rotate(270deg) translateY(61px);
  transform: rotate(270deg) translateY(61px);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}


.contact-form {
  padding: 1rem 0 0.25rem 0;
}

::-webkit-input-placeholder {
  color: var(--primary) !important;
}

::-moz-placeholder {
  color: var(--primary) !important;
}

:-ms-input-placeholder {
  color: var(--primary) !important;
}

::-ms-input-placeholder {
  color: var(--primary) !important;
}

::placeholder {
  color: var(--primary) !important;
}

.desktop-carousel {
  display: block;
}

.mobile-carousel {
  display: none;
}

.enquire-div {
  position: fixed;
  bottom: -50px;
  right: -50px;
  z-index: 99;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.enquire-div.show {
  bottom: 1vw;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  right: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.btn-enquire {
  color: var(--light);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.45rem 1.5rem;
  background: var(--primary);
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
}

.checkbox-label {
  font-size: 0.85rem;
}

.download-div {
  position: fixed;
  bottom: -50px;
  left: -50px;
  z-index: 99;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.download-div.show {
  bottom: 1vw;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  left: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.download-btn {
  color: var(--light);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.45rem 1.5rem;
  background: var(--primary);
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
}

/* ***************************************legacy Section Starts****************** */
.custom-container1 {
  width: 90%;
  margin: 0 auto;
}

.custom-container2 {
  width: 95%;
  margin: 0 auto;
}

.legacy {
  padding: 4rem 0;
  /* background: url(../assets/images/about/background-about.png) no-repeat center center / cover; */
}

.over_left {
  /* margin: 0 0 0 8rem; */
}

.legacy {
  position: relative;
}

/* .img-15 {
  width: 100%;
} */

.legacy img {
  width: 180px;
  object-fit: cover;
  height: 100%;
}







/* shailesh css */

.custom-15-container {
  display: grid;
  gap: 3rem;
  grid-template-columns: 24rem auto;
}

/* shailesh css */

.section-heading .section-subtitle {
  color: #DBB464;
  font-size: 3.875rem;
  font-style: normal;
  font-family: Kraton;
  font-weight: 400;
  margin-bottom: 5.5rem !important;
  /* line-height: normal; */
}

.section-heading .section-desc {
  color: #606060;
  font-size: 1.10rem;
  font-style: normal;
  font-weight: 400;
  text-wrap: balance;
  /* line-height: normal; */
}


.about-text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(70%, -50%);
  font-size: 6.7rem;
  color: #DBB464;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /* text-shadow: 4px 0px #fff; */
  text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  font-family: Inter;
}

.desc-color {
  color: #DBB464 !important;
}

.customs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-div-1 {
  width: 18%
}

.custom-div-2 {
  width: 50%
}


/* ***********************legacy Section end****************/

/* ********Counter Section Starts*******************/
.counter {
  padding: 2rem 0rem;
  background: #394C41;
  ;
}

.counter-img {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
}

.counter-img img {
  width: 2.34325rem;
  height: 2.34325rem;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.counter-description {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #DBB464;
  -webkit-text-fill-color: transparent;
  /* Makes the text fill transparent */
  color: transparent;
  /* Fallback for browsers that don't support -webkit-text-fill-color */
  font-size: 3.90306rem;
  font-family: 'CeraPro';
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.conter-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

/* ******************Counter Ends************** */

/* ******************About us Section Starts************** */
.aboutus {
  padding: 5rem 0rem;

}

.about-icon {
  text-align: center;
  padding-bottom: 2rem;
}

.about-intro {
  color: #606060;
  font-size: 4rem;
  font-style: normal;
  font-family: 'Kraton';
  text-align: center;
  font-weight: 400;
  line-height: normal;
}

.about-img {
  width: 100%;
  position: relative;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: baseline;
  /* background: bisque; */
}

.about-img img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.img-15 {
  width: 90%;
  position: relative;
  height: 345px;
  display: flex;
  justify-content: start;
  align-items: start;

}

.overlay-img {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  border: 3px solid #DBB464;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
}

.section-heading .section-subtitle2 {
  color: #DBB464;
  font-size: 3.875rem;
  font-style: normal;
  font-weight: 400;
  font-family: 'Kraton';
  padding-bottom: 1rem;
  /* line-height: normal; */
}

.about-img2 {
  width: 100%;
  position: relative;
}

.about-img2 img {
  /* width: 100%; */
  object-fit: cover;
  height: 100%;
}

/* ******************About us Section Ends**************** */

/***********************Gallery Section Starts************/
.gallery-sec {
  padding: 2rem 0rem;
  margin-bottom: 7rem;
}

.gallery-container {
  margin: 1.5rem auto auto auto;
}

.swiper-container {
  width: 55%;
  height: 65%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 100%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 0.3s all;
  box-shadow: 0 0 20px #00000036;
  border-radius: 10px;
}

.swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
  opacity: 0;
}

.swiper-slide-active {
  transition: 0.3s all;
  opacity: 1;
  background-color: orange;
}

.swiper-button-prev,
.swiper-button-next {
  background: none;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: 60px !important;
  height: 60px !important;
  cursor: pointer;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ameneties-carousel2 .owl-nav .owl-prev {
  position: absolute;
  top: 26%;
  left: -60px;
}

.ameneties-carousel2 .owl-nav .owl-next {
  position: absolute;
  top: 26%;
  right: -60px;
}

.arrow {
  width: 45px;
  height: 45px;
  /* border: 1px solid #0d393a !important; */
  padding: 10px !important;
  background: #DBB464 !important;
  display: inline-block !important;
  cursor: pointer !important;
  border-radius: 50% !important;
}

/* *********************Gallery Sections Ends************/

/* **********************Amenities Section Starts*********** */
.amenities {
  padding: 3rem 0rem;
  background: #FDF5E8;
}

.amenities-starts {
  padding: 3rem 0rem;
}

.sec-title {
  position: relative;
  margin: auto;
  text-align: center;
  margin-bottom: 1rem;
}

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

.sec-head {
  font-size: 1.1875rem;
  font-weight: 600;
  margin: 0 70px;
  display: inline;
  color: #DBB464;
  position: relative;
  font-family: 'CeraPro';
}

.sec-head:before {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background: #848484;
  top: 40%;
  left: -400px;
  position: absolute;
}

.sec-head:after {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background: #848484;
  right: -400px;
  top: 40%;
  position: absolute;
}

.amenities-img {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
  padding-bottom: 2rem;
}

.amenities-img img {
  width: 3.74875rem;
  height: 3.22963rem;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.amenities-text {
  text-align: center;
  font-size: 1rem;
  color: #414042;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

.custom-hr {
  color: #394C41;
}

.believe-nav .custom-nav {
  margin: 1.4rem auto;
  gap: 4px;
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}


li {
  list-style: none;
  text-decoration: none;
}

.believe-nav .custom-nav .nav-item .nav-link.active {
  background: #DBB464;
  color: #fff;
}

.believe-nav .custom-nav .nav-item .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #242424;
  -webkit-box-align: center;
  -ms-flex-align: center;
  border-radius: 0px;
  align-items: center;
  gap: 1rem;
  background: transparent;
}

/* **********************Amenities Section ends*********** */

/* **********************Founder Section starts*********** */
.about-architects {
  padding: 4rem 0rem;
  position: relative;
}

.founder-tile {
  color: #DBB464;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  padding-bottom: 5px;
}

.section-subtitle3 {
  color: #DBB464;
  font-size: 3rem;
  font-family: 'Kraton';
  font-style: normal;
  font-weight: 400;
  padding-bottom: 2rem;
}

.section-subtitle5 {
  color: #DBB464;
  font-size: 3rem;
  font-family: 'Kraton';
  font-style: normal;
  font-weight: 400;
}

.section-heading .section-description {
  color: #606060;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
}

.founder-img {
  width: 100%;
  position: relative;
}

.founder-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* **********************Founder Section ends*********** */


/* **********************Map Section starts*********** */
.map {
  padding: 3rem 0rem;
}

.section-subtitle4 {
  color: #DBB464;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 400;
  font-family: 'Kraton';
  padding-bottom: 2rem;
}

.map-img {
  width: 100%;
  position: relative;
}

.map-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* **********************Map Section ends*********** */

/* **********************Contactus Section starts*********** */
/* .contact-us {
  padding: 4rem 0rem;
  background: #394C41;
}

.contact-title {
  color: #FFF;
  font-family: 'CeraBasic';
  font-size: 1.14863rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-desc {
  color: #FFF;
  font-family: Roboto;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.dflex-social-icons {
  display: flex;
  gap: 19px;
}

.dflec {
  display: flex;
  justify-content: center;
}



#contact-form textarea {
  border: none;
  resize: none;
  
}

#contact-form .form-group {

  margin-top: 0;
}

.form-control:focus {
  box-shadow: none !important;
}

.form-control {
  border-radius: unset !important;
}

.custom-input {
  padding: 12px;
  font-family: 'Montserrat';
}

.custom-input::placeholder {
  font-family: 'Montserrat', sans-serif;
}

.contact-header-links {
  display: flex;
  gap: 19px;
}

.div-line2 {
  border-right: 1px solid #fff;
  padding-right: 12px;
}

.contact-description {
  font-family: Montserrat;
  color: #fff;
  font-size: 0.9rem;
} */

.contact-us {
  background-image: url(../assets/images/gallery/pool.jpg);
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
}

.overlay-contact {
  background: #00000060;
  padding: 50px 0px;
}

.contact-us h3 {
  text-align: center;
  margin-bottom: 30px !important;
  color: #fff;
  font-weight: 400;
  font-size: 2.1875rem;
  font-family: 'Kraton';
}

.form-flex {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.form-flex .form-item:not(:last-child) {
  flex-basis: 25%;
}

#contact-form .form-group {
  height: 40px;
  margin-bottom: 7%;
}

.form-control {
  background-color: #fff !important;
  /* border: 1px solid #fff !important; */
  color: #000 !important;
  border-radius: 0 !important;
  padding: 0.72rem .75rem !important;
}

.error {
  color: red;
}

.call-icon {
  font-family: var(--CeraBasic);
  font-size: 1.5rem !important;
  margin-top: 1rem !important;
}

/* **********************Contactus Section ends*********** */

/********** footer ***********/
/* .footerw1 {
  padding: 2rem 0;
  background: #fff;
  position: relative;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

.copyright-desc {
  font-family: Montserrat;
  color: #B9822B;
  font-size: 1.2rem;
}

.footer-flex {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.div-line {
  border-right: 1px solid #B9822B;
  padding-right: 8px;
} */



.outlets {
  text-align: center;
  margin-top: -18px;
}

.counter-merge {
  background: #DBB464;
  padding: 10px;
  width: 40%;
  margin: auto;
  border-radius: 20px;
  color: #FFF;
  font-family: Montserrat;
  font-size: 1.39213rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footerw1 {
  padding: 30px 0px;
  background: #BAB86C;
  position: relative;
}

.footerlogo img {
  display: block;
  margin: 0px auto;
  width: 163px;
}

.qrimg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}

.qrimg img {
  width: 100px;
}

footer .qr-text p {
  font-size: 1rem;
}

.mahrare {
  margin-top: 20px;
}

.mahrare p {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem !important;
}

.disclaimer p {
  font-size: 1rem;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem !important;
}

/* thank you page css */

nav.thank-you {
  background-color: #00000080;
}

section.secton-thankyou {
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0rem 1.5rem;
  /* margin: 8rem auto auto auto; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

section.secton-thankyou .thankyou-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0.75rem auto 1.15rem auto !important;
  text-align: center;
  text-wrap: pretty;
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.75;
  text-align: center;
  text-wrap: pretty;
}

/* thank you page css */

@media only screen and (max-width: 1400px) {
  nav {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0.65rem 2rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.85rem;
  }

  .img-15 {
    width: 60%;
  }

  .about-text {
    top: 46%;
    right: -7px;
    font-size: 5rem;
  }

  .section-heading .section-subtitle {
    font-size: 2.7rem;
    margin-bottom: 6.5rem !important;
  }
}

@media only screen and (max-width: 1280px) {
  .navbar-container .navbar-links {
    gap: 3rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container .menu {
    display: block;
  }

  .navbar-links {
    display: none !important;
  }

  .about-text {
    top: 56%;
    font-size: 5rem !important;
    transform: translate(83%, -57%);

  }

  .section-heading .section-subtitle {
    font-size: 2.7rem;
    margin-bottom: 5.5rem !important;
  }

  .ameneties-carousel2 .owl-nav .owl-prev {
    position: relative !important;
    top: unset !important;
    left: unset !important;
  }

  .ameneties-carousel2 .owl-nav .owl-next {
    position: relative !important;
    top: unset !important;
    right: unset !important;
  }

  .ameneties-carousel2 .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
}

/* @media only screen and (max-width: 1160px) {
  .section-heading .section-subtitle {
    font-size: 2.7rem;
    margin-bottom: 5.5rem !important;
  }
} */

@media screen and (max-width: 1146px) {

  .about-text {
    font-size: 4rem !important;
  }

  .section-heading .section-subtitle {
    font-size: 2.5rem;
  }


  .img-15 {
    width: 56%;
  }
}

@media (width: 1024px) and (height: 600px) {}


@media only screen and (max-width: 991px) {
  .custom-container {
    width: 100%;
    margin: auto;
  }


  .custom-15-container {
    gap: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .about-img {
    justify-content: start;
    /* background: bisque; */
  }

  .img-15 {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  .section-heading {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .section-heading.custom-padding {
    padding: 0rem 1rem;

  }

  .section-heading .section-subtitle {
    font-size: 2.1rem;
    margin-bottom: unset !important;
  }

  /* 
  .about-img img {
    width: 90%;
  } */

  /* .about-text {
    font-size: 4rem;
    top: 53%;
    left: 72%;
  } */

}

@media only screen and (max-width: 767px) {

  .navbar-container .navlogo .logo {
    width: 93px;
  }

  .swiper-container {
    width: 90%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  section.main-banner {
    /* margin: 4rem auto auto auto; */
  }

  header {
    top: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100vw;
    background-color: var(--light);
  }

  .btn-contact {
    border-radius: 100px;
    border: 1px solid #00afef;
    background: -o-linear-gradient(right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 49.5%,
        rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear,
        right top,
        left top,
        from(rgba(255, 255, 255, 0)),
        color-stop(49.5%, rgba(255, 255, 255, 0)),
        to(rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 49.5%,
        rgba(255, 255, 255, 0) 100%);
  }

  .img-15 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  .section-heading {
    padding: 0 1rem;
    margin-bottom: unset;
  }

  .desktop-carousel {
    display: none !important;
  }

  .mobile-carousel {
    display: block !important;
  }

  .about-intro {
    font-size: 2.5rem;
  }

  .section-heading .section-subtitle2 {
    font-size: 2rem;
  }

  .counter-description {
    font-size: 2.90306rem;
  }

  .sec-head:before {
    width: 100px;
    left: -123px;
  }

  .sec-head:after {
    width: 100px;
    right: -123px;
  }

  .aboutus {
    padding: 3rem 0rem;
  }

  .gallery-sec {
    margin-bottom: 2rem;
  }

  .about-architects {
    padding: 3rem 0rem;
  }

  .about-icon {
    padding-bottom: 1rem;
  }

  .sec-head {
    font-size: 1rem;
  }

  .amenities-text {
    font-size: 1rem;
  }

  .section-subtitle3 {
    font-size: 2rem;
  }

  .section-subtitle4 {
    font-size: 2rem;
  }

  .section-subtitle5 {

    font-size: 2rem;
  }

  .map {
    padding: 3rem 0rem;
  }

  .enquire-div-fixed {
    display: none;
  }

  .section-heading .section-desc {
    font-size: 1rem;
  }

  .section-heading .section-description {
    font-size: 1rem;
  }

  .copyright {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .copyright-desc {
    font-size: 1rem;
  }

  .contact-description {
    font-size: 0.6rem;
  }

  #contact-form {
    width: 80%;
    margin: auto;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    cursor: pointer;
  }

  .form-flex {
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .contact-title {
    text-align: center;
  }

  .contact-desc {
    text-align: center;
  }

  .counter-merge {
    width: 100%;
    font-size: 1rem;
  }

  /* .about-text {
    font-size: 4.5rem;
    top: 52%;
    left: 52%;
  } */

  /* .about-img img {
    width: 65%;
  } */

  .section-heading .section-subtitle {
    font-size: 2.1rem;
    margin-bottom: 20px !important;
    margin-top: 22px;
  }

  .over_left {
    /* margin: 0 0 0 8rem; */
  }

  #contact-form .form-group {
    height: 40px;
    margin-bottom: 2%;
  }

  .contact-us h3 {
    font-size: 2rem;
    font-weight: 800;
  }

  .mahrare p {
    text-align: center;
    color: #fff;
    font-size: 0.7rem;
  }

  footer .qr-text p {
    font-size: 0.7rem;
  }

  .disclaimer p {
    text-align: center;
    color: #fff;
    width: 100%;
    display: block;
    margin: 22px auto;
    font-size: 0.7rem;
  }

  section.section-mobile-fixed {
    position: fixed;
    z-index: 10;
    left: 0;
    padding: 0.55rem 0.25rem;
    bottom: 0;
    background-color: var(--primary);
    width: 100vw;
  }

  section.section-mobile-fixed::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #00000063;
    width: 2px;
    height: 100%;
  }

  .mobile-toggle-fixed {
    width: 100%;
  }

  a {
    text-decoration: none !important;
  }

  .btn-toggle-fixed {
    width: 100%;
    background: transparent;
    border: none;
  }

  .btn-toggle-fixed .btn-toggle-fixed-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .btn-toggle-fixed .btn-toggle-fixed-txt {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
  }

  .form-mob {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .about-img {
    align-items: start;
  }
}

@media only screen and (max-width: 576px) {
  .btn-enquire {
    width: 100vw;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    font-size: 1.1rem;
    text-align: center;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    cursor: pointer;
    -webkit-animation: unset;
    animation: unset;
  }

  .enquire-div {
    bottom: -50px;
    left: 0px;
    z-index: 99;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .enquire-div.show {
    bottom: 0;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    left: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}


/* ************banner form css starts here******** */
.over-form-sec {
  background-color: #394C41 !important;
  border-radius: 0px !important;
  outline: 4px solid #DBB464 !important;
  outline-offset: 10px;
}

.over-body {
  padding: 1rem;
  padding-top: 1.9rem;
}

.over-body h2 {
  font-family: 'Kraton';
  /* margin-top: -10px; */
  padding: 10px;
  margin-bottom: 9px !important;
  text-align: center;
  font-size: 20px;
  text-wrap: balance;
  color: #fff;
}

/* .over-body h2 {
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  font-family: var(--CeraBasic) !important;
  color: #fff;
} */



.checkboxprivcy label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
  color: #fff;
  font-size: 11px;
  word-spacing: 2px;
  font-family: var(--CeraBasic) !important;
}

input.form-control::placeholder {
  font-size: 0.9rem !important;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--CeraBasic) !important;
}

select.form-control.custom-input {
  font-size: 0.9rem !important;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--CeraBasic) !important;
  color: var(--primary) !important;
}


.carousel-control-prev {
  left: 4rem;
}

.carousel-control-next {
  right: 4rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1;
  /* Ensure it's above carousel items */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  /* filter: invert(1); */
}

@media only screen and (max-width: 767px) {

  .carousel-control-prev {
    left: 1rem;
  }

  .carousel-control-next {
    right: 1rem;
  }

  .overlay-img {
    left: 50%;
  }
}

/* new config section */
#configuration {
  padding: 3rem 0rem;
}

.configuration {
  background: linear-gradient(rgb(0 0 0 / 29%), rgb(0 0 0 / 59%)), url(../assets/images/gallery/garden.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.table>:not(caption)>*>* {
  background-color: unset !important;
  color: unset !important;
}

.configuration .sec_heading {
  color: #fff;
}

.configuration .sec_heading:after {
  background-color: #fff;
}

.table_cust {
  margin: 3rem 0 !important;
}

.table_cust thead tr {
  background-color: var(--primary) !important;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}

.table_cust thead tr th {
  padding: 1rem;
}

.table_cust tbody tr {
  background-color: #fff;
  text-align: center;
  font-size: 1rem
}

.table_cust tbody tr td {
  padding: 1rem;
  color: var(--primary) !important;
}

.price-btn {
  background: #505050;
  color: #fff;
  font-size: 1rem;
  background: -moz-linear-gradient(left, #505050 0%, #505050 46%, #ffffff 51%, #505050 56%, #505050 100%);
  background: -webkit-linear-gradient(left, #505050 0%, #505050 46%, #ffffff 51%, #505050 56%, #505050 100%);
  background: linear-gradient(to right, #004135 0%, #004135 46%, #ffffff 51%, #004135 56%, #004135 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#505050', GradientType=1);
  background-size: 600% 600%;
  -webkit-animation: AnimationNameGrey 3s ease infinite;
  animation: AnimationNameGrey 3s ease infinite;
  padding: 5px 7px;
  outline: 1px solid #004135 !important;
  outline-offset: 5px;
  text-wrap: nowrap;
}


@-webkit-keyframes AnimationNameGrey {
  0% {
    background-position: 100%
  }

  100% {
    background-position: 0%
  }
}

@keyframes AnimationNameGrey {
  0% {
    background-position: 100%
  }

  100% {
    background-position: 0%
  }
}

@media only screen and (max-width: 767px) {
  #configuration {
    padding: 3rem 2%;
  }

}