html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

/* //header// */
.headerBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  box-shadow: 0px 15px 10px -15px #999;
}
.headerContent {
  width: 70%;
  height: 80px;
  min-width: 1000px;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
}
.respHeaderContent {
  display: none;
}
.headerDropdown {
  display: none;
}

.headerFlex {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.logoImg {
  height: 80%;
  padding: 10px;
}
.navTxtDiv {
  padding-left: 20px;
}
.navTxt {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.navTxt:hover {
  color: #2c168b;
}
.searchBtn {
  background-color: #fff;
  height: 40px;
  width: 100%;
  border-radius: 15px;
  border: none;
  outline: none;
  padding-left: 20px;
  font-size: 15px;
  filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.404));
}
.navBtnDiv {
  padding-left: 20px;
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
}
.searchIcon {
  height: 25px;
  width: 25px;
  position: absolute;
  right: 10px;
}

@media only screen and (max-width: 1000px) {
  .headerContent {
    display: none;
  }
  .respHeaderContent {
    display: block;
    height: 80px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
  }
  .repHeaderFlex {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
  }
  .headerDropdown {
    display: block;
    z-index: 100;
  }
  .logoImgResp {
    height: 70%;
  }
  .respIcon {
    height: 35px;
    width: 35px;
  }
  .btnDiv {
    background-color: transparent;
    border: none;
    outline: none;
  }
  .headerDropdown {
    position: absolute;
    width: 100%;
    height: auto;
    top: 80px;
    background-color: #fff;
    padding-bottom: 20px;
    box-shadow: 0px 15px 10px -15px #111;
  }
  .navTxtResp {
    text-align: center;
  }
  .navBtnDiv {
    padding-left: 0px;
    display: flex;
    justify-content: center;
  }
  .searchBtn {
    width: 70%;
    border: 1px solid #000;
    filter: drop-shadow(0 0 0.75rem rgba(255, 255, 255, 0.404));
  }
  .searchIcon {
    right: 16%;
  }
}

/* //header// */

/* //hero base// */
.carousel-container {
  position: relative;
  background-color: #dbc39b;
  width: 100%;
  overflow: hidden;
}
.carousel {
  white-space: nowrap;
  transition: transform 0.5s ease;
}
.carousel-item {
  display: inline-block;
  width: 100%; /* Adjust the width as needed */
  height: 600px; /* Adjust the height as needed */
}
.carousel-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
}
.carousel-indicators {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  margin-top: 10px;
}
.navBtn {
  background-color: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.carousel-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.carousel-indicator.active {
  background-color: #333;
}
@media only screen and (max-width: 600px) {
  .carousel-item {
    height: 80vh;
  }
}
/* //hero base// */
/* //hero// */
.carCardBase {
  width: 100%;
  height: auto;
  position: relative;
}
.carImg {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.carDataDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.carContent {
  width: 70%;
  min-width: 1000px;
  max-width: 1500px;
  height: 300px;
  bottom: 0;
}
.carTopContent {
  width: 100%;
  display: flex;
  align-items: center;
  height: 200px;
}
.carLogo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.carTitle {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  width: 60%;
  white-space: normal;
  text-align: start;
  font-family: "Times New Roman", Times, serif;
  padding-left: 1%;
}
.carBtnTxt {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: start;
  padding-left: 1%;
  white-space: normal;
}
.carButton {
  height: 100px;
  display: flex;
  align-items: center;
}
.arrowImg {
  width: 25px;
}
.carBtnArrow {
  width: 30px;
  height: 30px;
  padding: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

@media only screen and (max-width: 1000px) {
  .carTitle {
    width: 100%;
    font-size: 40px;
  }
  .carLogo {
    width: 100px;
    height: 100px;
  }
  .carContent {
    min-width: 0px;
  }
  .carButton{
    position: absolute;
    bottom: 20px;
    padding-right: 20px;
    /* margin-bottom: 500px; */
  }
}
@media only screen and (max-width: 600px) {
  .carImg {
    height: 80vh;
  }
  .carTitle {
    font-size: 25px;
    /* height: 100px; */
  }
  .carBtnArrow {
    width: 15px;
    height: 15px;
  }
  .arrowImg {
    width: 20px;
  }
  .carBtnTxt {
    font-size: 16px;
  }
}

/* //hero// */

/* //both// */
.aboutOut {
  height: 100%;
  width: 100%;
  position: relative;
}
.greyDiv {
  position: absolute;
  width: 100%;
  height: 150px;
  background-color: #dbc39b;
}
.aboutIn {
  width: 100%;
  padding-top: 150px;
}
.bookIn {
  position: absolute;
  width: 100%;
  /* z-index: 99999; */
}

@media screen and (max-width: 1077px) {
  .greyDiv {
    height: 600px;
  }
  .aboutIn {
    padding-top: 50px;
  }
  .bookIn {
    position: relative;
    height: 550px;
  }
}

/* //both// */

/* //booknow// */
.iframeBase {
  width: 100%;
  display: flex;
  justify-content: center;
  /* background-color: #dbc39b; */
}
.iframeContent {
  width: 70%;
  min-width: 1000px;
}
.iframeDiv {
  height: 100vh;
  padding: 20px 0px;
}
@media screen and (max-width: 1077px) {
  .iframeContent {
    min-width: 0px;
    width: 95%;
  }
}
/* //booknow// */

/* //about// */
.aboutBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.aboutContent {
  width: 70%;
  display: grid;
  min-width: 1000px;
  max-width: 1500px;
  grid-template-columns: 50% 50%;
}
.aboutFlexBase {
  display: grid;
  align-items: center;
}
.leftContent {
  width: 90%;
  justify-self: start;
  height: auto;
}
.rightContent {
  width: 90%;
  justify-self: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 500px;
}

.aboutTitle {
  margin: 0px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
}
.aboutMainTitle {
  margin: 0px;
  color: #000;
  font-weight: 600;
  font-size: 30px;
  width: 50%;
  margin-bottom: 15px;
  font-family: "Times New Roman", Times, serif;
}
.aboutMainDesp {
  margin: 0px;
  color: #000;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 25px;
}
.blueBtn {
  width: 150px;
  height: 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}
.aboutimgDiv {
  width: 450px;
  height: 450px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.imageBorderDiv {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -10px;
  left: -10px;
}
.aboutImage {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 10px;
  /* z-index: 999; */
}

@media only screen and (max-width: 1000px) {
  .aboutContent {
    grid-template-columns: auto;
    width: 90%;
  }
  .aboutContent {
    min-width: 0px;
  }
  .leftContent {
    width: 100%;
  }
  .rightContent {
    width: 100%;
    justify-content: center;
    padding-top: 20px;
    height: auto;
  }
}
@media only screen and (max-width: 600px) {
  .aboutimgDiv {
    width: 300px;
    height: 300px;
    margin-top: 20px;
  }
}

/* //about// */
/* //top// */
.doorBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.doorContent {
  width: 70%;
  display: grid;
  min-width: 1000px;
  height: 100%;
  max-width: 1500px;
  grid-template-columns: 35% 65%;
}
.doorFlexBase {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
}
.doorLeftContent {
  width: 100%;
  height: auto;
}
.doorRightTxt {
  padding: 2%;
}
.doorRightContent {
  width: 100%;
  height: auto;
  justify-self: right;
}
.leftDoorImageDiv {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.doorImage {
  width: 450px;
  height: 500px;
  object-fit: cover;
}
.doorTitle {
  margin: 0px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
}
.doorMainTitle {
  margin: 0px;
  color: #000;
  font-weight: 700;
  font-size: 30px;
  width: 40%;
  margin-bottom: 15px;
}
.doorMainDesp {
  margin: 0px;
  width: 60%;
  color: #000;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 25px;
}
.flexDoorSubContent {
  width: 100%;
  height: 250px;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
.miniDoorData {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  margin-top: 5%;
}
.miniContent {
  width: 96%;
  height: 100%;
}
.miniDoor {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.miniImgDiv {
  width: 100%;
  height: 80%;
}
.miniTxtDiv {
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.miniTxt {
  color: #000;
  margin: 0px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}

@media only screen and (max-width: 1850px) {
  .flexDoorSubContent {
    height: auto;
  }
  .doorImage {
    width: 350px;
    height: 400px;
  }
  .miniTxt {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1000px) {
  .doorContent {
    width: 100%;
    min-width: 0px;
    grid-template-columns: auto;
  }
  .doorLeftContent {
    display: none;
  }
  .miniDoorData {
    justify-content: center;
  }
  .doorMainTitle {
    width: 80%;
  }
  .doorMainDesp {
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  .flexDoorSubContent {
    grid-template-columns: 50% 50%;
  }
}

/* //top// */

/* //video// */
.videoHomeBase {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
.videoHomeContent {
  width: 80%;
  height: 100%;
  min-width: 1000px;
  max-width: 1500px;
}
.topVideoDiv {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.videoFlexT {
  width: 30%;
  height: auto;
  padding: 10px;
}
.videoFlexS {
  width: 50%;
  height: auto;
  padding: 10px;
}
.videoFlexB {
  width: 20%;
  height: auto;
  display: flex;
  justify-content: flex-end;
}
.videoTitleTxt {
  color: #000;
  font-size: 30px;
  margin: 0px;
  font-weight: 600;
}
.videoSubTxt {
  color: #000;
  font-size: 17px;
  margin: 0px;
  font-weight: 300;
}
.bottomDiv {
  height: 500px;
  margin-top: 20px;
  width: 100%;
}
.videoTagBottom {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media only screen and (max-width: 1000px) {
  .videoHomeContent {
    min-width: 600px;
  }
  .bottomDiv {
    height: 300px;
  }
  .topVideoDiv {
    display: block;
    text-align: center;
  }
  .videoFlexT {
    width: 100%;
  }
  .videoFlexS {
    width: 100%;
  }
  .videoFlexB {
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (max-width: 600px) {
  .videoHomeContent {
    min-width: 300px;
  }
  .bottomDiv {
    height: 180px;
  }
}

/* //video// */

/* //bottom// */
.doorBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.doorBottomContent {
  width: 70%;
  display: grid;
  min-width: 1000px;
  height: 100%;
  max-width: 1500px;
  grid-template-columns: 65% 35%;
}
.doorFlexBase {
  display: block;
  width: 100%;
  height: auto;
  align-items: center;
}
.doorLeftContent {
  width: 100%;
  height: auto;
}
.doorRightTxt {
  padding-right: 2%;
}
.doorBottomRightContent {
  width: 100%;
  height: auto;
  justify-self: left;
}
.leftBottomDoorImageDiv {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.doorImage {
  width: 450px;
  height: 500px;
  object-fit: cover;
}
.doorTitle {
  margin: 0px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
}
.doorMainTitle {
  margin: 0px;
  color: #000;
  font-weight: 700;
  font-size: 30px;
  width: 40%;
  margin-bottom: 15px;
}
.doorMainDesp {
  margin: 0px;
  width: 60%;
  color: #000;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 25px;
}
.flexDoorSubContent {
  width: 100%;
  height: 250px;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
.miniDoorDataBottom {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  margin-top: 5%;
}
.miniContent {
  width: 96%;
  height: 100%;
}
.miniDoor {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.miniImgDiv {
  width: 100%;
  height: 80%;
}
.miniTxtDiv {
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.miniTxt {
  color: #000;
  margin: 0px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}

@media only screen and (max-width: 1850px) {
  .flexDoorSubContent {
    height: auto;
  }
  .doorImage {
    width: 350px;
    height: 400px;
  }
  .miniTxt {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1000px) {
  .doorBottomContent {
    width: 100%;
    min-width: 0px;
    grid-template-columns: auto;
  }
  .doorLeftContent {
    display: none;
  }
  .miniDoorData {
    justify-content: center;
  }
  .doorMainTitle {
    width: 80%;
  }
  .doorMainDesp {
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  .flexDoorSubContent {
    grid-template-columns: 50% 50%;
    height: auto;
  }
}

/* //bottom// */

/* //gallery// */
.galleryBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.galleryContent {
  width: 70%;
  min-width: 1000px;
  height: 100%;
  max-width: 1500px;
}
.imgGalleryRow {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 4px;
}
.imgGalleryColumn {
  /* -ms-flex: 33%;
    flex: 33%;
    max-width: 33%; */
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
}

.longImgDiv {
  width: 100%;
  height: 500px;
  padding-top: 2%;
}

.shortImgDiv {
  width: 100%;
  padding-top: 2%;
  height: 250px;
}

.galleryImg {
  border-radius: 10px;
  height: 98%;
  width: 98%;
  padding: 1%;
  object-fit: cover;
}

.titleTxt {
  font-size: 30px;
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
  text-align: center;
}

.buttonGallery {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blueBtn {
  width: 150px;
  height: 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

@media screen and (max-width: 1000px) {
  .galleryContent {
    min-width: 600px;
  }
  .longImgDiv {
    height: 250px;
  }

  .shortImgDiv {
    height: 125px;
  }
}

@media screen and (max-width: 600px) {
  .galleryContent {
    min-width: 300px;
  }
  .imgGalleryColumn {
    grid-template-columns: 100%;
    /* -ms-flex: 100%;
      flex: 100%;
      max-width: 100%; */
  }
}

/* //gallery// */

/* //book// */
.bookNowBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 50px;
}

.bookNowBottomContent {
  width: 70%;
  max-width: 1500px;
  height: 100%;
}
.bookNowFlexBase {
  width: 100%;
}
.bookNowRightTxt {
  padding-right: 2%;
  width: 100%;
}

.bookNowTitle {
  margin: 0px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 25px;
}
.flexBookNowSubContent {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
}
.btnBB {
  width: 90%;
  height: 35px;
  border-radius: 10px;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}
.btnBB1 {
  width: 150px;
  height: 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}
.bbBookNowDataBottom {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bbContent {
  height: auto;
  padding: 25px 0px;
  width: 95%;
  background-color: white;
  filter: drop-shadow(0 0 0.75rem #2f2e567c);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.bbBookNow {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.bbImgDiv {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
}
.bbTxtDiv {
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.bbTxt {
  color: #000;
  margin: 0px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}

@media only screen and (max-width: 1000px) {
  .flexBookNowSubContent {
    grid-template-columns: 50% 50%;
  }
  .bbContent {
    margin-top: 15px;
  }
  .bookNowBottomContent {
    max-width: 600px;
  }
  .bbBookNowData {
    justify-content: center;
  }
}
@media only screen and (max-width: 600px) {
  .flexBookNowSubContent {
    grid-template-columns: 100%;
    height: auto;
  }
  .bookNowBottomContent {
    max-width: 300px;
  }
}

/* //book// */

/* //contact// */
.contactUsBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fbfbfb;
}
.contactUsContent {
  width: 70%;
  min-width: 1000px;
  height: 100%;
  max-width: 1500px;
  border-radius: 20px;
  height: auto;
  display: grid;
  grid-template-columns: 65% 35%;
  filter: drop-shadow(0 0 0.75rem #2f2e56);
}
.contactRight {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px;
}
.formTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
}
.formTItleDiv {
  width: auto;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.formTitleRight {
  font-size: 40px;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
  text-align: center;
  margin: 0px;
}
.formImg {
  width: auto;
  height: auto;
}
.formInfoImg {
  width: 30px;
}
.rightContentDiv {
  width: 100%;
}
.titleTxtSub {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: start;
}
.subHrRight {
  height: 5px;
  width: 15%;
  background-color: #fff;
}
.hrRight {
  height: 1px;
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
}
.contactInfo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  align-items: center;
}
.contactDataImg {
  width: 12%;
}
.contactIcon1 {
  /* width: 30px; */
  height: 30px;
}
.contactDataTxt {
  padding: 15px 0px;
  width: 88%;
}
.contactTxt {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
}
.contactLeft {
  background-color: #fff;
  padding: 5%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.form {
  width: 100%;
  height: auto;
}
.formTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
}
.formTItleDiv {
  width: auto;
}
.formTitle {
  font-size: 40px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
  text-align: center;
  margin: 0px;
}
.hrForm {
  height: 5px;
  width: 70px;
  margin-top: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.formImg {
  width: auto;
  height: auto;
  .formMailImg {
    width: 100px;
  }
}

.formContentTop {
  display: flex;
  justify-content: space-between;
}
.field_area {
  width: 45%;
  padding-bottom: 5%;
}
.field_area_area {
  width: 90%;
  padding-bottom: 5%;
}
.lableText {
  font-size: 17px;
}
.textField {
  width: 100%;
  height: 40px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  outline: none;
  font-size: 15px;
}
.error {
  color: red;
  font-size: 13px;
  font-weight: 500;
}
.formContentBottom {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.lableText {
  color: #9e9e9e;
  font-size: 17px;
}
.textArea {
  background-color: transparent;
  width: 100%;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  outline: none;
  margin-top: 10px;
}
.error {
  color: red;
  font-size: 13px;
  font-weight: 500;
}
.formBtnDiv {
  position: absolute;
  bottom: 10px;
  right: -10px;
}
.submitBtn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  .submitIcon {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .contactUsContent {
    min-width: 600px;
  }
  .formImg {
    display: none;
  }
  .formTop {
    width: 100%;
  }
  .contactIcon {
    width: 20px !important;
    height: 20px !important;
  }
  .contactTxt {
    font-size: 14px !important;
    padding-left: 10px;
  }
  .formTitle {
    font-size: 30px !important;
  }
  .formTitleRight {
    font-size: 30px !important;
  }
  .contactDataImg {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .contactUsContent {
    min-width: 300px;
    grid-template-columns: 100%;
  }
  .contactDataImg {
    display: block;
  }
  .contactLeft {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
  }
  .contactRight {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 20px;
  }
}
/* //contact// */
/* //customer// */
.testimonyBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 50px 0px;
}
.testimonyContent {
  width: 70%;
  min-width: 1000px;
  height: 100%;
  max-width: 1500px;
  border-radius: 20px;
  height: auto;
}
.testimonyGrid {
  width: 100%;
  height: auto;
  display: grid;
  margin-top: 40px;
  grid-template-columns: 33.3% 33.3% 33.3%;
}
.testimonyDataBase {
  display: flex;
  width: 100%;
  justify-content: center;
}
.testimonyData {
  width: 80%;
  padding: 5%;
  background-color: #fff;
  filter: drop-shadow(0 0 0.35rem #2f2e569c);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 15px;
}
.testDespTxt {
  color: #000;
  font-size: 16px;
  text-align: center;
}
.starImgDiv {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 30px 0px;
  .starImg {
    width: 50%;
  }
}
.testNameTxt {
  color: #000;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
}
.testLocationTxt {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
}
.testimonyTitle {
  font-size: 25px;
  font-weight: 700;
  margin: 0px;
  margin-bottom: 10px;
}
.testimonySubTitle {
  color: #000;
  font-size: 40px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 900;
  margin: 0px;
}

@media screen and (max-width: 1000px) {
  .testimonyContent {
    min-width: 600px;
  }
  .testimonyGrid {
    grid-template-columns: 100%;
  }
  .testimonyData {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .testimonyContent {
    min-width: 300px;
  }
  .testimonySubTitle {
    font-size: 35px;
  }
}

/* //customer// */
/* //footer// */
.logoImg {
  width: 200px;
  margin-bottom: 20px;
}
.footerBase {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #1e1e26;
  padding-top: 50px;
  padding-bottom: 50px;
}
.footerContent {
  width: 70%;
  min-width: 1000px;
  height: 100%;
  max-width: 1500px;
  border-radius: 20px;
  height: auto;
}
.footerTop {
  width: 100%;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
.footerGrid {
  width: 100%;
}
.logoFooter {
  height: 80px;
  cursor: pointer;
}
.footerDesp {
  color: #dbc39b;
  padding: 10px;
  font-size: 12px;
}
.footerHeadTxt {
  color: #dbc39b;
  padding: 5px;
  font-size: 25px;
  margin: 0px;
  font-weight: 700;
}
.footerLinkTxt {
  color: #dbc39b;
  padding: 5px;
  cursor: pointer;
}
.footerLine {
  height: 2px;
  width: 100%;
  background-color: #dbc39b;
}
.copyTxt {
  color: #dbc39b;
}
.footerBottomDiv {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footerIcons {
  width: 100%;
  display: flex;
}
.socialIcon {
  width: 45px;
  height: 45px;
  cursor: pointer;
  margin-left: 10px;
}
@media screen and (max-width: 1000px) {
  .footerContent {
    min-width: 0px;
  }
  .footerTop {
    grid-template-columns: 50% 50%;
  }
  .footerDesp {
    text-align: center;
  }
  .footerHeadTxt {
    text-align: center;
  }
  .footerLinkTxt {
    text-align: center;
  }
  .copyTxt {
    text-align: center;
  }
  .logoFooter {
    display: flex;
    justify-content: center;
  }
  .footerIcons {
    justify-content: space-between;
  }
}
@media screen and (max-width: 600px) {
  .footerTop {
    grid-template-columns: 100%;
  }
}

/* //footer// */
