@font-face {
  font-family: 'NewYork';
  src: url(../fonts/NEWYORK.OTF);
}

#banner {
  height: 100vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#banner .image-box {
  position: absolute;
  left: 0%;
  top: 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: -1;
}

#banner .image-box img {
  width: 100%;
  min-width: 100vw;
  max-width: 100vw;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

#banner .center {
  width: 100%;
  height: 100%;
  max-width: 1366px;
  position: relative;
  -webkit-transition: 400ms;
  transition: 400ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 750px) {
  #banner .center {
    padding: 15px 30px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center {
    padding: 15px 20px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center {
    padding: 15px 15px;
  }
}

#banner .center .header-container {
  height: 115px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 400ms;
  transition: 400ms;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 750px) {
  #banner .center .header-container {
    height: 90px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .header-container {
    height: 70px;
  }
}

#banner .center .header-container a {
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#banner .center .header-container a .logo {
  height: 100%;
  width: auto;
}

#banner .center .header-container .hamburger {
  height: 100%;
  width: 100%;
  max-height: 80px;
  max-width: 80px;
  cursor: pointer;
  background-image: url("../assets/hamburger.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 45%;
  -webkit-transition: 400ms;
  transition: 400ms;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 750px) {
  #banner .center .header-container .hamburger {
    max-height: 70px;
    max-width: 70px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .header-container .hamburger {
    max-height: 60px;
    max-width: 60px;
  }
}

#banner .center .header-container .hamburger:hover {
  -webkit-transform: skew(-35deg);
          transform: skew(-35deg);
}

#banner .center .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFFFFF;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#banner .center .content-container .header {
  font-size: 35px;
  font-weight: 800;
  line-height: 55px;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: 400ms;
  font-family: "NewYork";
  letter-spacing: 3px;
}

@media only screen and (max-width: 750px) {
  #banner .center .content-container .header {
    font-size: 32px;
    font-weight: 800;
    line-height: 47px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .header {
    font-size: 28px;
    font-weight: 700;
    line-height: 39px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .content-container .header {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
  }
}

@media only screen and (max-width: 750px) {
  #banner .center .content-container .header {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .header {
    margin-top: auto;
    margin-bottom: 13px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .content-container .header {
    margin-bottom: 8px;
  }
}

#banner .center .content-container .sub-header {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin-bottom: 30px;
}

@media only screen and (max-width: 750px) {
  #banner .center .content-container .sub-header {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .sub-header {
    font-size: 20px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .content-container .sub-header {
    font-size: 18px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 750px) {
  #banner .center .content-container .sub-header {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .sub-header {
    margin-bottom: 19px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .content-container .sub-header {
    margin-bottom: 14px;
  }
}

#banner .center .content-container .search-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background-color: rgba(219, 201, 171, 0.45);
  border-radius: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: 400ms;
  transition: 400ms;
  overflow: hidden;
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .search-container {
    margin-bottom: auto;
  }
}

#banner .center .content-container .search-container:hover {
  background-color: rgba(219, 201, 171, 0.55);
}

#banner .center .content-container .search-container input {
  background-color: transparent;
  outline: none;
  border: 0px;
  color: #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 14px 44px 14px 22px;
  width: 300px;
  font-size: 16px;
  -webkit-transition: 400ms;
  transition: 400ms;
  font-family: 'Montserrat', sans-serif;
}

@media only screen and (max-width: 750px) {
  #banner .center .content-container .search-container input {
    padding: 13px 44px 13px 21px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .search-container input {
    width: 280px;
    padding: 12px 42px 12px 18px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .content-container .search-container input {
    width: 260px;
    padding: 11px 40px 11px 15px;
    font-size: 14px;
  }
}

#banner .center .content-container .search-container input::-webkit-input-placeholder {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
}

#banner .center .content-container .search-container input:-ms-input-placeholder {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
}

#banner .center .content-container .search-container input::-ms-input-placeholder {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
}

#banner .center .content-container .search-container input::placeholder {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
}

#banner .center .content-container .search-container .search-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../assets/search.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  pointer-events: none;
  right: 10px;
  height: 30px;
  width: 30px;
}

@media only screen and (max-width: 750px) {
  #banner .center .content-container .search-container .search-icon {
    right: 9px;
    height: 29px;
    width: 29px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .search-container .search-icon {
    right: 7px;
    height: 27px;
    width: 27px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .content-container .search-container .search-icon {
    right: 5px;
    height: 25px;
    width: 25px;
  }
}

#banner .center .content-container .page-title {
  font-size: 29px;
  font-weight: 700;
  line-height: 50px;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin-top: 50px;
}

@media only screen and (max-width: 750px) {
  #banner .center .content-container .page-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 47px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .page-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 39px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .content-container .page-title {
    font-size: 23px;
    font-weight: 700;
    line-height: 35px;
  }
}

@media only screen and (max-width: 750px) {
  #banner .center .content-container .page-title {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .content-container .page-title {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .content-container .page-title {
    margin-top: 25px;
  }
}

#banner .center .footer-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 50px 0px 20px 0px;
  gap: 10px;
}

@media only screen and (max-width: 750px) {
  #banner .center .footer-container {
    padding: 45px 0px 20px 0px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .footer-container {
    padding: 40px 0px 20px 0px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .footer-container {
    padding: 35px 0px 20px 0px;
  }
}

#banner .center .footer-container .counter-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  pointer-events: none;
  gap: 25px;
}

@media only screen and (max-width: 750px) {
  #banner .center .footer-container .counter-container {
    gap: 23px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .footer-container .counter-container {
    gap: 20px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .footer-container .counter-container {
    gap: 18px;
  }
}

#banner .center .footer-container .counter-container .counter {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: rgba(196, 167, 118, 0.6);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 29px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  #banner .center .footer-container .counter-container .counter {
    font-size: 26px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .footer-container .counter-container .counter {
    font-size: 24px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .footer-container .counter-container .counter {
    font-size: 22px;
  }
}

#banner .center .footer-container .counter-container .counter.active::before {
  -webkit-transition: 400ms;
  transition: 400ms;
  content: "";
  border-radius: 50%;
  background-color: rgba(196, 167, 118, 0.6);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -75%;
  width: 8px;
  height: 8px;
}

@media only screen and (max-width: 750px) {
  #banner .center .footer-container .counter-container .counter.active::before {
    width: 7px;
    height: 7px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .footer-container .counter-container .counter.active::before {
    width: 6px;
    height: 6px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .footer-container .counter-container .counter.active::before {
    width: 5px;
    height: 5px;
  }
}

#banner .center .footer-container .handlers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 85px;
}

@media only screen and (max-width: 750px) {
  #banner .center .footer-container .handlers {
    width: 80px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .footer-container .handlers {
    width: 75px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .footer-container .handlers {
    width: 70px;
  }
}

#banner .center .footer-container .handlers .handler {
  background-color: rgba(196, 167, 118, 0.6);
  width: 30px;
  height: 30px;
  border-radius: 7px;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
  background-image: url("../assets/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}

@media only screen and (max-width: 750px) {
  #banner .center .footer-container .handlers .handler {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (max-width: 570px) {
  #banner .center .footer-container .handlers .handler {
    width: 26px;
    height: 26px;
  }
}

@media only screen and (max-width: 400px) {
  #banner .center .footer-container .handlers .handler {
    width: 24px;
    height: 24px;
  }
}

#banner .center .footer-container .handlers .handler:hover {
  background-color: rgba(219, 201, 171, 0.8);
}

#banner .center .footer-container .handlers .handler.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.home-about {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 300px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 400ms;
  transition: 400ms;
  padding: 30px 50px;
}

@media only screen and (max-width: 750px) {
  .home-about {
    padding: 30px 40px;
  }
}

@media only screen and (max-width: 570px) {
  .home-about {
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about {
    padding: 30px 10px;
  }
}

.home-about .bg {
  z-index: -1;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  background-color: #f2f1ed;
  width: calc(100% - 280px);
  min-width: 400px;
}

@media only screen and (max-width: 400px) {
  .home-about .bg {
    min-width: 250px;
  }
}

.home-about .center {
  width: 100%;
  max-width: 1366px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}

.home-about .center .left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 40px 40px 0px;
}

@-webkit-keyframes boxMove {
  0% {
    bottom: 0px;
    right: 0px;
  }
  25% {
    bottom: 0px;
    right: 22px;
  }
  50% {
    bottom: 22px;
    right: 22px;
  }
  75% {
    bottom: 22px;
    right: 0px;
  }
  100% {
    bottom: 1px;
    right: 0px;
  }
}

@keyframes boxMove {
  0% {
    bottom: 0px;
    right: 0px;
  }
  25% {
    bottom: 0px;
    right: 22px;
  }
  50% {
    bottom: 22px;
    right: 22px;
  }
  75% {
    bottom: 22px;
    right: 0px;
  }
  100% {
    bottom: 1px;
    right: 0px;
  }
}

.home-about .center .left::after {
  content: "";
  position: absolute;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  border: 3px solid rgba(196, 167, 118, 0.75);
  border-radius: 5px;
  z-index: -1;
  bottom: 0px;
  right: 0px;
  -webkit-animation: boxMove 3s infinite;
          animation: boxMove 3s infinite;
}

@-webkit-keyframes boxImage {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    top: 0px;
    left: 10px;
  }
  50% {
    top: 40px;
    left: 10px;
  }
  75% {
    top: 40px;
    left: 0px;
  }
  100% {
    top: 1px;
    left: 0px;
  }
}

@keyframes boxImage {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    top: 0px;
    left: 10px;
  }
  50% {
    top: 40px;
    left: 10px;
  }
  75% {
    top: 40px;
    left: 0px;
  }
  100% {
    top: 1px;
    left: 0px;
  }
}

.home-about .center .left img {
  width: 100%;
  max-width: 300px;
  height: auto;
  position: relative;
  -webkit-animation: boxImage 3s infinite;
          animation: boxImage 3s infinite;
}

.home-about .center .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 60px;
  min-width: 400px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 570px) {
  .home-about .center .right {
    padding: 20px 40px;
    min-width: 350px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right {
    padding: 20px 10px;
    min-width: unset;
  }
}

.home-about .center .right .header {
  font-size: 39px;
  font-weight: 400;
  line-height: 62px;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #333333;
  font-family: 'NewYork';
}

@media only screen and (max-width: 750px) {
  .home-about .center .right .header {
    font-size: 35px;
    font-weight: 400;
    line-height: 50px;
  }
}

@media only screen and (max-width: 570px) {
  .home-about .center .right .header {
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right .header {
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
  }
}

@media only screen and (max-width: 570px) {
  .home-about .center .right .header {
    margin-bottom: 13px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right .header {
    margin-bottom: 12px;
  }
}

.home-about .center .right .handler-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 570px) {
  .home-about .center .right .handler-container {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right .handler-container {
    margin-bottom: 0px;
  }
}

.home-about .center .right .handler-container .element {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 10px 10px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 570px) {
  .home-about .center .right .handler-container .element {
    padding: 9px 9px 9px 0px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right .handler-container .element {
    padding: 8px 8px 8px 0px;
  }
}

.home-about .center .right .handler-container .element.active .scroller {
  left: 0%;
}

.home-about .center .right .handler-container .element.active .txt {
  color: #000000;
}

.home-about .center .right .handler-container .element .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: #333333;
}

@media only screen and (max-width: 750px) {
  .home-about .center .right .handler-container .element .txt {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 570px) {
  .home-about .center .right .handler-container .element .txt {
    font-size: 15px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right .handler-container .element .txt {
    font-size: 15px;
    line-height: 26px;
  }
}

.home-about .center .right .handler-container .element .scroller {
  height: 2px;
  border-radius: 2px;
  width: 100%;
  background-color: #333333;
  position: absolute;
  bottom: 0px;
  left: -100%;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.home-about .center .right .content-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}

.home-about .center .right .content-section .box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.home-about .center .right .content-section .box .element {
  min-width: 100%;
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: rgba(51, 51, 51, 0.85);
  padding: 15px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 750px) {
  .home-about .center .right .content-section .box .element {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .home-about .center .right .content-section .box .element {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right .content-section .box .element {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right .content-section .box .element {
    text-align: justify;
  }
}

.home-about .center .right .btn {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  background-color: rgba(196, 167, 118, 0.75);
  color: #333333;
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
  .home-about .center .right .btn {
    font-size: 12px;
    padding: 8px 19px;
  }
}

@media only screen and (max-width: 570px) {
  .home-about .center .right .btn {
    font-size: 11px;
    padding: 8px 18px;
  }
}

@media only screen and (max-width: 400px) {
  .home-about .center .right .btn {
    font-size: 11px;
    padding: 7px 16px;
  }
}

.home-programs {
  margin-top: 30px;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  min-height: 500px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home-programs .bg-section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (max-width: 750px) {
  .home-programs .bg-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home-programs .bg-section .left {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  background-color: #F2F1ED;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .home-programs .bg-section .left {
    min-height: 250px;
  }
}

.home-programs .bg-section .left::after {
  content: "";
  height: 1px;
  width: 30%;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #dbc9ab;
}

.home-programs .bg-section .right {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  background-image: url("../assets/home/programs_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: right;
}

.home-programs .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

@media only screen and (max-width: 750px) {
  .home-programs .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home-programs .center .left {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  background-color: #F2F1ED;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-programs .center .left .inner-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 280px;
  max-width: 300px;
}

@media only screen and (max-width: 400px) {
  .home-programs .center .left .inner-box {
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-width: 100%;
  }
}

.home-programs .center .left .header {
  font-size: 39px;
  font-weight: 400;
  line-height: 62px;
  -webkit-transition: 400ms;
  transition: 400ms;
  font-family: "NewYork";
  color: #555962;
  margin-bottom: 13px;
}

@media only screen and (max-width: 750px) {
  .home-programs .center .left .header {
    font-size: 35px;
    font-weight: 400;
    line-height: 50px;
  }
}

@media only screen and (max-width: 570px) {
  .home-programs .center .left .header {
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
  }
}

@media only screen and (max-width: 400px) {
  .home-programs .center .left .header {
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
  }
}

@media only screen and (max-width: 750px) {
  .home-programs .center .left .header {
    margin-top: 45px;
  }
}

.home-programs .center .left .txt {
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: rgba(85, 89, 98, 0.8);
}

@media only screen and (max-width: 750px) {
  .home-programs .center .left .txt {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .home-programs .center .left .txt {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .home-programs .center .left .txt {
    font-size: 12px;
    line-height: 20px;
  }
}

.home-programs .center .left .handler-container {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.home-programs .center .left .handler-container::before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #dbc9ab;
  z-index: 1;
}

.home-programs .center .left .handler-container .button-container {
  background-color: #F2F1ED;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

.home-programs .center .left .handler-container .button-container .button {
  height: 30px;
  width: 30px;
  min-height: 30px;
  min-width: 30px;
  border-radius: 5px;
  background-image: url("../assets/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  background-color: #dbc9ab;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.home-programs .center .left .handler-container .button-container .button.icon-left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.home-programs .center .left .handler-container .button-container .button.icon-left:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}

.home-programs .center .left .handler-container .button-container .button:hover {
  -webkit-box-shadow: 0px 0px 4px 1px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 4px 1px rgba(51, 51, 51, 0.2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.home-programs .center .right {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .home-programs .center .right {
    max-width: 100%;
  }
}

.home-programs .center .right .inner-box {
  width: 100%;
  height: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.home-programs .center .right .inner-box .box {
  height: auto;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.home-programs .center .right .inner-box .box .elem {
  background-color: #FFFFFF;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 7px;
  -webkit-box-shadow: 0px 0px 10px 4px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 10px 4px rgba(51, 51, 51, 0.2);
  width: 100%;
  height: 100%;
  color: #555962;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.home-programs .center .right .inner-box .box .elem .header {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  -webkit-transition: 400ms;
  transition: 400ms;
}

@media only screen and (max-width: 750px) {
  .home-programs .center .right .inner-box .box .elem .header {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 570px) {
  .home-programs .center .right .inner-box .box .elem .header {
    font-size: 15px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 400px) {
  .home-programs .center .right .inner-box .box .elem .header {
    font-size: 15px;
    line-height: 26px;
  }
}

.home-programs .center .right .inner-box .box .elem .txt {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-programs .center .right .inner-box .box .elem .btn {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  background-color: rgba(196, 167, 118, 0.75);
  color: #333333;
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
  .home-programs .center .right .inner-box .box .elem .btn {
    font-size: 12px;
    padding: 8px 19px;
  }
}

@media only screen and (max-width: 570px) {
  .home-programs .center .right .inner-box .box .elem .btn {
    font-size: 11px;
    padding: 8px 18px;
  }
}

@media only screen and (max-width: 400px) {
  .home-programs .center .right .inner-box .box .elem .btn {
    font-size: 11px;
    padding: 7px 16px;
  }
}

.home-contact .center {
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home-contact .center .contact-box {
  -webkit-box-flex: 1.4;
      -ms-flex: 1.4;
          flex: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(196, 167, 118, 0.8);
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: rgba(51, 51, 51, 0.9);
}

@media only screen and (max-width: 400px) {
  .home-contact .center .contact-box {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.home-contact .center .contact-box .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 350px;
}

@media only screen and (max-width: 570px) {
  .home-contact .center .contact-box .inner-box {
    min-width: 290px;
  }
}

@media only screen and (max-width: 400px) {
  .home-contact .center .contact-box .inner-box {
    min-width: 260px;
  }
}

.home-contact .center .contact-box .header {
  font-size: 39px;
  font-weight: 500;
  line-height: 62px;
  -webkit-transition: 400ms;
  transition: 400ms;
  font-family: 'NewYork';
}

@media only screen and (max-width: 750px) {
  .home-contact .center .contact-box .header {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
  }
}

@media only screen and (max-width: 570px) {
  .home-contact .center .contact-box .header {
    font-size: 30px;
    font-weight: 500;
    line-height: 44px;
  }
}

@media only screen and (max-width: 400px) {
  .home-contact .center .contact-box .header {
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
  }
}

.home-contact .center .contact-box .sub-header {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin-bottom: 15px;
}

@media only screen and (max-width: 750px) {
  .home-contact .center .contact-box .sub-header {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 570px) {
  .home-contact .center .contact-box .sub-header {
    font-size: 20px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 400px) {
  .home-contact .center .contact-box .sub-header {
    font-size: 18px;
    line-height: 25px;
  }
}

.home-contact .center .contact-box input[type=text],
.home-contact .center .contact-box input[type=email],
.home-contact .center .contact-box textarea {
  width: 100%;
  max-width: 400px;
  min-width: 350px;
  border: 0px none transparent;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 3px 2px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 3px 2px rgba(51, 51, 51, 0.2);
  font-family: 'Montserrat', sans-serif;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  font-weight: 500;
}

@media only screen and (max-width: 570px) {
  .home-contact .center .contact-box input[type=text],
  .home-contact .center .contact-box input[type=email],
  .home-contact .center .contact-box textarea {
    min-width: 290px;
  }
}

@media only screen and (max-width: 400px) {
  .home-contact .center .contact-box input[type=text],
  .home-contact .center .contact-box input[type=email],
  .home-contact .center .contact-box textarea {
    min-width: 260px;
  }
}

.home-contact .center .contact-box input[type=text]::-webkit-input-placeholder,
.home-contact .center .contact-box input[type=email]::-webkit-input-placeholder,
.home-contact .center .contact-box textarea::-webkit-input-placeholder {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.home-contact .center .contact-box input[type=text]:-ms-input-placeholder,
.home-contact .center .contact-box input[type=email]:-ms-input-placeholder,
.home-contact .center .contact-box textarea:-ms-input-placeholder {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.home-contact .center .contact-box input[type=text]::-ms-input-placeholder,
.home-contact .center .contact-box input[type=email]::-ms-input-placeholder,
.home-contact .center .contact-box textarea::-ms-input-placeholder {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.home-contact .center .contact-box input[type=text]::placeholder,
.home-contact .center .contact-box input[type=email]::placeholder,
.home-contact .center .contact-box textarea::placeholder {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.home-contact .center .contact-box textarea {
  min-height: 150px;
  height: 150px;
}

.home-contact .center .contact-box .button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(51, 51, 51, 0.7);
  border: 1px solid rgba(51, 51, 51, 0.2);
  color: rgba(219, 201, 171, 0.8);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  margin-left: auto;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.home-contact .center .contact-box .button:hover {
  border: 1px solid rgba(51, 51, 51, 0.8);
  background-color: rgba(196, 167, 118, 0.8);
  color: #333333;
}

.home-contact .center .map-box {
  background-color: rgba(51, 51, 51, 0.1);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  height: auto;
  min-height: 270px;
  border-radius: 7px;
  -webkit-box-shadow: 0px 0px 4px 2px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 4px 2px rgba(51, 51, 51, 0.2);
  overflow: hidden;
}

@media only screen and (max-width: 570px) {
  .home-contact .center .map-box {
    min-height: 350px;
  }
}

.home-contact .center .map-box iframe {
  width: 100%;
  height: 100%;
}

.home-enquiry .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: unset;
}

.home-enquiry .center .inner-box {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 7px;
  background-color: #E8E8E6;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 5px 2px rgba(51, 51, 51, 0.2);
  gap: 30px;
  padding: 50px;
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box {
    gap: 15px;
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 400px) {
  .home-enquiry .center .inner-box {
    gap: 15px;
    padding: 30px 15px;
  }
}

.home-enquiry .center .inner-box .header {
  font-size: 39px;
  font-weight: 400;
  line-height: 62px;
  -webkit-transition: 400ms;
  transition: 400ms;
  font-family: "NewYork";
  color: #555962;
}

@media only screen and (max-width: 750px) {
  .home-enquiry .center .inner-box .header {
    font-size: 35px;
    font-weight: 400;
    line-height: 50px;
  }
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box .header {
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
  }
}

@media only screen and (max-width: 400px) {
  .home-enquiry .center .inner-box .header {
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
  }
}

.home-enquiry .center .inner-box .content {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home-enquiry .center .inner-box .content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-enquiry .center .inner-box .content .left input {
  border-radius: 7px;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 13px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: 0px none transparent;
  -webkit-tap-highlight-color: transparent;
  min-width: 280px;
  -webkit-box-shadow: 0px 0px 4px 2px rgba(51, 51, 51, 0.1);
          box-shadow: 0px 0px 4px 2px rgba(51, 51, 51, 0.1);
}

@media only screen and (max-width: 750px) {
  .home-enquiry .center .inner-box .content .left input {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box .content .left input {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .home-enquiry .center .inner-box .content .left input {
    font-size: 12px;
    line-height: 20px;
  }
}

.home-enquiry .center .inner-box .content .left input::-webkit-input-placeholder {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.home-enquiry .center .inner-box .content .left input:-ms-input-placeholder {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.home-enquiry .center .inner-box .content .left input::-ms-input-placeholder {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.home-enquiry .center .inner-box .content .left input::placeholder {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
}

@media only screen and (max-width: 750px) {
  .home-enquiry .center .inner-box .content .left input::-webkit-input-placeholder {
    font-size: 13px;
    line-height: 21px;
  }
  .home-enquiry .center .inner-box .content .left input:-ms-input-placeholder {
    font-size: 13px;
    line-height: 21px;
  }
  .home-enquiry .center .inner-box .content .left input::-ms-input-placeholder {
    font-size: 13px;
    line-height: 21px;
  }
  .home-enquiry .center .inner-box .content .left input::placeholder {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box .content .left input::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 20px;
  }
  .home-enquiry .center .inner-box .content .left input:-ms-input-placeholder {
    font-size: 12px;
    line-height: 20px;
  }
  .home-enquiry .center .inner-box .content .left input::-ms-input-placeholder {
    font-size: 12px;
    line-height: 20px;
  }
  .home-enquiry .center .inner-box .content .left input::placeholder {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .home-enquiry .center .inner-box .content .left input::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 20px;
  }
  .home-enquiry .center .inner-box .content .left input:-ms-input-placeholder {
    font-size: 12px;
    line-height: 20px;
  }
  .home-enquiry .center .inner-box .content .left input::-ms-input-placeholder {
    font-size: 12px;
    line-height: 20px;
  }
  .home-enquiry .center .inner-box .content .left input::placeholder {
    font-size: 12px;
    line-height: 20px;
  }
}

.home-enquiry .center .inner-box .content .left input.drop {
  padding-right: 40px;
}

@media only screen and (max-width: 400px) {
  .home-enquiry .center .inner-box .content .left input {
    min-width: 100%;
  }
}

.home-enquiry .center .inner-box .content .left .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.home-enquiry .center .inner-box .content .left .box .ico {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  right: 13px;
  height: 15px;
  width: 15px;
  background-image: url("../assets/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px;
  cursor: pointer;
}

.home-enquiry .center .inner-box .content .right {
  height: auto;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box .content .right {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.home-enquiry .center .inner-box .content .right .button {
  background-color: #555962;
  border-radius: 6px;
  color: #DBC9AB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 20px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 750px) {
  .home-enquiry .center .inner-box .content .right .button {
    padding: 15px;
  }
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box .content .right .button {
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 5px 25px;
  }
}

.home-enquiry .center .inner-box .content .right .button:hover {
  -webkit-box-shadow: 0px 0px 4px 2px rgba(51, 51, 51, 0.4);
          box-shadow: 0px 0px 4px 2px rgba(51, 51, 51, 0.4);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

.home-enquiry .center .inner-box .content .right .button:hover .txt {
  color: #DBC9AB;
}

.home-enquiry .center .inner-box .content .right .button .icon {
  height: 50px;
  width: 50px;
  min-height: 50px;
  min-width: 50px;
  -webkit-transition: 400ms;
  transition: 400ms;
  background-image: url("../assets/mail.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box .content .right .button .icon {
    height: 30px;
    width: 30px;
    min-height: 30px;
    min-width: 30px;
  }
}

.home-enquiry .center .inner-box .content .right .button .txt {
  color: #C4A776;
  font-size: 13px;
  font-weight: 600;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  text-transform: uppercase;
  transition: 400ms;
}

@media only screen and (max-width: 750px) {
  .home-enquiry .center .inner-box .content .right .button .txt {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .home-enquiry .center .inner-box .content .right .button .txt {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .home-enquiry .center .inner-box .content .right .button .txt {
    font-size: 12px;
    line-height: 20px;
  }
}
/*# sourceMappingURL=index.css.map */