@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body,
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
*,
::after,
::before {
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
}
.container {
  width: 100% !important;
  margin: 0 auto;
  padding: 0 10%;
}
h3 {
  padding: 0;
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #1d1d1f;
  margin-bottom: 40px !important;
}
img {
  max-width: 100%;
}

/* header area start */
.headerArea {
  width: 100%;
  min-height: 120px;
  display: flex;
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px; */
  /* background-color: #333; */
  color: #fff;
  height: 100%;
}

.logo img {
  height: 115px;
  width: 135px; /* Adjust as needed */
}

/* nav {
    display: none; 
} */

nav ul {
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}
nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}
nav ul li a:hover {
  color: #3191d1;
}

.nav-links li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff; /* Background color of the dropdown */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Box shadow for the dropdown */
  width: 200px;
  border-radius: 8px;
  padding: 15px;
}
.dropdown-menu li {
  display: block;
  border-bottom: 1px solid #d1d1d1;
  margin-right: 0;
}
.dropdown-menu li a {
  font-size: 15px;
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

.menu-toggle {
  display: none; /* Hide initially on large screens */
  cursor: pointer;
  width: 21px;
}

.actionbluebtn {
  background-color: #3191d1;
  border-radius: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 15px;
  text-transform: uppercase;
  margin-left: 50px;
  color: #fff !important;
}
.actionbluebtn:hover {
  background-color: #003a58;
}
.nav-links a {
  color: #2c2a49;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}
.sticky-btn {
  position: sticky;
  top: 0; /* Adjust this value based on your needs */
  z-index: 1000; /* Ensures the button stays on top of other content */
}
/* header area end */

/* banner area start */
.bannerArea {
  margin: 0;
  padding: 0 8%;
  min-height: 627px;
  background-image: url(../images/bannerImgwithoverlay.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.bannerCont {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  min-height: 627px;
  justify-content: space-between;
}
.bannerTextArea {
  width: 63%;
}
.formArea {
  width: 422px;
}
.bannerTextArea span {
  display: block;
}
.bannerM-text {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}
.bannerL-text {
  font-family: "Oswald", sans-serif;
  font-size: 68px;
  font-weight: 500;
  color: #ffc93d;
  position: relative;
  line-height: 65px;
}
.bannerP-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #cfcfcf;
  margin-top: 15px;
}
.formBox {
  background-color: rgba(176, 176, 176, 0.65);
  border-radius: 20px;
  padding: 30px 20px 30px 20px;
}
.waterdrop {
  position: absolute;
  top: -90%;
  right: 4%;
}
.fldBlock {
  margin-bottom: 15px;
}
.bookfrmcntrl {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-family: "Inter", sans-serif;
}
.bookfrmcntrl::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.textarea {
  height: 122px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
.booksubmitbtn {
  background: rgba(250, 176, 59, 1);
  padding: 20px;
  gap: 30px;
  border-radius: 10px;
  color: #000;
  position: relative;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}
.booksubmitbtn:after {
  content: "";
  position: absolute;
  background-image: url(../images/arrow-right.png);
  background-repeat: no-repeat;
  width: 25px;
  height: 24px;
  right: 15px;
}
.booksubmitbtn:hover {
  background: #000;
  color: #fff;
}
.booksubmitbtn:hover::after {
  background-image: url(../images/arrow-right-h.png);
}
/* banner area end */

/* our previous work area start */
.ourpreviousworkArea {
  margin: 0;
  padding: 30px 0;
}
.ourpreviousworkArea h1,
.certificationArea h2 {
  text-align: center;
}
.certificationArea h2 {
  margin-bottom: 30px;
}
.heading {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #003b5a;
  position: relative;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.heading span {
  color: #ffc93d;
}
.workImg img {
  border-radius: 8px;
}
.workImg .owl-dots {
  margin-top: 20px;
  text-align: center;
}
.workImg .owl-dot {
  width: 37px;
  height: 37px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.workImg .owl-dot span {
  width: 7px;
  height: 7px;
  background-color: rgba(250, 176, 59, 0.7);
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: -2px;
}
.workImg .owl-dot.active {
  width: 37px;
  height: 37px;
  border: 1px solid #fab03b;
  border-radius: 50%;
}
.workImg .owl-dot.active span {
  background-color: #fab03b;
}
/* our previous work area end */

/* why choose area start */
.whychooseArea {
  margin: 0;
  padding: 0;
}
.twoSection {
  display: flex;
  flex-direction: row;
}
.whySection {
  width: 50%;
  background-image: url(./../images/whychoosebg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
}
/* .whyBoxsArea,
.achievementSection {
  flex: 1;
} */
.whySection,
.achievementSection {
  display: flex;
}

.achievementSection {
  flex: 1;
}
.achievementSection {
  width: 50%;
}
.achievementSection img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.achievementSection {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.achiContArea {
  background-color: #fab03b;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  /* max-height: calc(100vh - 4%);
    height: 100%; */
}
.achiImgarea {
  line-height: 0;
}
.whysecCont {
  width: 100%;
  padding: 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}
.whysecCont span {
  color: #fab03b;
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.whysecCont h1 {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  position: relative;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.whysecCont h1 span {
  color: #fab03b;
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 700;
  font-style: normal;
}
.subCont {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}
.whyBoxsArea {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.whyBox {
  width: 46%;
  border-radius: 8px;
  padding: 30px;
  margin-right: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
}
.whyIcon {
  width: 35px;
  margin-right: 10px;
}
.whyCont {
  width: 80%;
}
.whyIcon img {
  width: 34px;
}
.whyBox h2 {
  color: #3191d1;
  font-size: 21px;
  line-height: 30px;
}
.whyBox p {
  color: #6e6e6e;
  font-size: 16px;
  line-height: 28px;
}
.achiContArea h1 {
  margin: 0;
  padding: 0;
  font-size: 50px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #fff;
}
.ourContArea {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  width: 80%;
  justify-content: center;
}
.qblock {
  width: 30%;
}
.qnumber {
  font-size: 50px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #fff;
}
.qheading {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #fff;
}
.qleft {
  text-align: left;
}
.qcenter {
  text-align: center;
}
.qright {
  text-align: right;
}
.qborderright {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
/* why choose area end */

/* certification Area start */
.certificationArea {
  margin: 0;
  padding: 40px 0;
}
.certificationArea h1 {
  text-align: center;
}
.certificationImgArea {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.certificationBlock {
  width: 32%;
  text-align: center;
}
/* certification Area end */

/* testimonial area start */
.testtimonialArea {
  background-color: #f8f8f8;
  padding: 60px 0;
}
.testimonialsCont {
  display: flex;
  flex-direction: row;
  position: relative;
}
.testLeft {
  width: 50%;
}
.testRight {
  width: 50%;
}
.testheadingArea {
  margin: 0;
  padding: 0;
}
.testheadingArea span {
  color: #fab03b;
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.testheadingArea h1 {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #3191d1;
  position: relative;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.testheadingArea h1 span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #fab03b;
  position: relative;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-style: normal;
}
#testImg img {
  border-radius: 8px;
  width: 100%;
}
.testislider {
  position: relative;
  left: 0;
  z-index: 2;
  width: 120%;
  margin-top: 30px;
}
.testwhiteBox {
  box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background: #fff;
  margin: 10px;
  border-radius: 8px;
  padding: 60px 40px;
  /* height: 403px; */
  position: relative;
}
.ratingArea span .fa-star {
  color: #ffc93d;
}
.testCont {
  color: #6e6e6e;
  font-size: 20px;
  line-height: 36px;
  margin-top: 15px;
}
.writer {
  font-size: 20px;
  color: #003b5a;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  position: relative;
  padding-left: 15px;
}
.writer:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  left: 0;
  background-color: #003b5a;
  top: 15px;
}
.testiCont .owl-dots {
  position: absolute;
  right: -67%;
  bottom: 41px;
}
.testiCont .owl-dot {
  width: 37px;
  height: 37px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.testiCont .owl-dot span {
  width: 7px;
  height: 7px;
  background-color: rgba(250, 176, 59, 0.7);
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: -2px;
}
.testiCont .owl-dot.active {
  width: 37px;
  height: 37px;
  border: 1px solid #fab03b;
  border-radius: 50%;
}
.testiCont .owl-dot.active span {
  background-color: #fab03b;
}
/* testimonial area end */

/* footer area start */
.footerArea {
  margin: 0;
  padding: 60px 0;
  background-color: #3191d1;
}
.footerBlock {
  display: flex;
  flex-direction: row;
}
.footercolumn1 {
  width: 30%;
  margin-right: 50px;
}
.footercolumn2 {
  width: 45%;
  margin-right: 30px;
}
.footercolumn3 {
  width: 20%;
}
.footerheding {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 30px;
}
.footerlink {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}
.socialIcons {
  margin-top: 20px;
}
.socialIcons a {
  margin-right: 10px;
}
.footerlink ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.footerlink ul li {
  margin-right: 10px;
  width: 47%;
}
.footerlink ul li a {
  color: #fff;
  font-size: 18px;
}
.footerlink ul li a:hover {
  color: #000;
}
.footeraddress {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.footeraddress:before {
  background-image: url(./../images/loctionIcon.png);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 17px;
  height: 20px;
  left: 0;
  top: 5px;
}

.footeremail {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.footeremail:before {
  background-image: url(./../images/mailIcon.png);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 25px;
  height: 20px;
  left: 0;
  top: 5px;
}

.footerno {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.footerno:before {
  background-image: url(./../images/callIcon.png);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 17px;
  height: 20px;
  left: 0;
  top: 5px;
}
.yellowFooter {
  background-color: #fab03b;
  min-height: 90px;
  display: flex;
}
.copyText {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
/* footer area end */

/* call us button start */

.call-us-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.call-us-button img {
  width: 80px;
}
.info {
  text-align: center;
  margin-bottom: 18px;
  font-size: 30px;
  font-family: "Inter", sans-serif;
  width: 90%;
  margin: 25px auto 0 auto;
  line-height: 40px;
  font-weight: 900;
}
.info span {
  font-size: 30px;
  color: #fab03b;
}
/* call us button end */

/* deal area start */
.deailArea {
  /* background-color: #f8f8f8; */
  padding: 60px 0;
}
.dealImgcontArea {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.dealImgArea {
  width: 50%;
  padding-right: 30px;
}
.dealContArea {
  width: 50%;
  padding: 15px 25px 15px 50px;
}
.dealblock {
  margin-bottom: 20px;
}
.subheading {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 30px;
  color: #3191d1;
  margin-bottom: 20px;
}
.dealImgArea img {
  border-radius: 8px;
}
.deallistofCont {
  margin: 0;
  padding: 0;
  list-style: none;
}
.deallistofCont ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.deallistofCont ul li {
  margin: 0;
  padding: 5px 0;
  list-style: disc inside;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #6e6e6e;
  font-weight: 400;
}
.dealText {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #6e6e6e;
  font-weight: 400;
  text-align: center;
  padding-top: 47px;
}
.dealText p:first-child {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 29px;
  display: block;
  align-items: center;

  color: #6e6e6e;
}
.dealText p {
  margin-bottom: 10px;
}
/* deal area end */

/* blog listing page css start */
.blogArea {
  margin: 0;
  padding: 60px 0;
}
.blogPanel {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.blogleftpart {
  width: 68%;
}
.blogrightpart {
  width: 30%;
}
.blogleftpart img {
  width: 100%;
  height: 100%;
}
.bloggrybox {
  background-color: #f2f2f0;
  padding: 20px;
  border-radius: 8px;
}
.bloglistArea {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blogImg img {
  border-radius: 8px;
}
.bloglistBlcok {
  width: 48%;
}
.bloglistHeading {
  color: #3191d1;
  font-size: 24px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.post {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin: 10px 0;
}
.blogshortCont {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  line-height: 25px;
}
.readmorebtn {
  margin: 15px 0;
}
.readmorebtn a {
  display: inline-block;
  border: 1px solid #fab03b;
  padding: 12px 40px;
  color: #fab03b;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
  border-radius: 8px;
  font-size: 16px;
}
.readmorebtn a:hover {
  background-color: #fab03b;
  color: #fff;
}
.searchArea {
  margin-bottom: 20px;
}
.searchbox {
  padding: 15px 51px 15px 20px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  width: 100%;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 300;
  background-image: url(./../images/searchIcon.png);
  background-repeat: no-repeat;
  background-position: 95% center;
}
.searchbox:focus-visible {
  border: none;
  outline: 0;
}
.categoriesArea {
  margin-bottom: 20px;
}
.silepanelheading {
  margin: 0 0 15px 0;
  padding: 0;
  color: #3191d1;
  font-size: 24px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.categoriesList {
  margin: 0;
  padding: 0;
}
.categoriesList ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.categoriesList ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.categoriesList ul li a {
  padding: 10px 0;
  font-size: 16px;
  color: #6e6e6e;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  display: block;
}
.categoriesList ul li:after {
  content: "";
  position: absolute;
  background-image: url(./../images/chevron_rightIcon.png);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 13px;
}
.articallistArea {
  margin: 0;
  padding: 0;
}
.listblock {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
.recentariticaleCont {
  padding: 10px;
}
.articaleheding {
  color: #3191d1;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.articlePost {
  color: #6e6e6e;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.tagsArea {
  margin-top: 15pxx;
}
.tagsBlock {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.tagText {
  background-color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin: 5px;
  text-transform: uppercase;
}
.articaleslider .owl-prev {
  background-image: url(./../images/butto-Previous.png) !important;
  background-size: contain !important;
  width: 22px;
  height: 16px;
  margin: 0 5px;
}
.articaleslider .owl-nav {
  position: absolute;
  top: -42px;
  right: 0;
}
.articaleslider .owl-prev span {
  display: none;
}
.articaleslider .owl-next {
  background-image: url(./../images/butto-Next.png) !important;
  background-size: contain !important;
  width: 22px;
  height: 16px;
  margin: 0 5px;
}
.articaleslider .owl-next span {
  display: none;
}
/* blog listing page css start */

/* blog details area start */
.blogdetailsBlock {
  margin-bottom: 20px;
}
.blogdetailsBlock img {
  border-radius: 8px;
}
.blogdetailsBlock p {
  margin-bottom: 10px;
  color: #6e6e6e;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 25px;
}
.writerBox {
  background-color: #fff;
  box-shadow: 0 5px 32px rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-left: 5px solid #fab03b;
}
.writerBox p.writertext {
  color: #000;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.name {
  position: relative;
  padding-left: 40px;
}
.name:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  left: 0;
  top: 12px;
  background-color: #fab03b;
}
.relatedImgArea {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.img1block {
  width: 49%;
}
.img1block img {
  border-radius: 8px;
}
.authorbox {
  background-color: #fff;
  padding: 40px;
  border: 8px;
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  box-shadow: 0px 16px 32px 0px rgba(6, 40, 61, 0.1);
}
.authorImg {
  width: 150px;
}
.authorImg img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.authorcontent {
  width: 80%;
  margin-left: 15px;
}
.authorname {
  color: #000;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
.postname {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
.postcont {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 25px;
}
.formblock {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.formfldArea {
  width: 49%;
}
.formfld, form input, form textarea {
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  color: #000;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.blogtextare {
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  color: #000;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.submitbtn, .submit {
  background-color: #fab03b;
  border-radius: 8px;
  padding: 12px 30px;
  color: #fff;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: auto;
}
.submitbtn:hover {
  background-color: #000;
  color: #fff;
}
.submit:hover {
  background-color: #000;
  color: #fff;
}
/* blog details area end */

.happyCLients3Boxes {
  display: flex;
}
.happyClientBox {
  background: #3191d1;
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  padding: 47px 20px;
}
.happyClientBox span {
  background: #42a8ec;
  width: 89px;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  gap: 18px;
  color: #fff;
  border-radius: 100%;
}
.happyClientBox img {
  width: 30px;
  height: auto;
}
.happyClientBox div h2 {
  font-size: 50px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.happyClientBox div p {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.happyClientBox.yello {
  background: #fab03b;
}
.happyClientBox.yello span {
  background: #e3a23b;
}

/* why choose us style */
.whyChoosUsWrapper {
  text-align: center;
  background: #f8f8f8;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
}
.whyChoosUsWrapper h3 {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600 !important;
  font-size: 22px !important;
  line-height: 29px;
  margin: 0 !important;
  /* Primary */
  color: #3191d1;
}
.whyChoosUsWrapper h2 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  margin: 15px 0;
  /* Primary */
  color: #3191d1;
}
.whyChoosUsWrapper h2 span {
  color: #fab03b;
}
.whyChoosUsWrapper p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  /* or 180% */
  display: block;
  text-align: center;
  color: #ababab;
}
/* Group 12 */
.whyChooseBox span {
  width: 87px;
  height: 87px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6b44b;
}
.whyChooseBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 22px 20px;
  gap: 22px;

  width: 32%;
  height: auto;
  background: #ffffff;
  border-radius: 8px;
}
.whyChooseBox h4 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  /* Primary */
  color: #3191d1;
}
.whyChooseBox p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #6e6e6e;
  margin: 0;
}
.whyChooseBoxContainer {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.desktopview {
  display: block;
}
.mobileview {
  display: none;
}

/* swimming area start */
.swimmingArea {
  margin: 0;
  padding: 60px 0;
}

.abountarea {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  margin-top: 155px;
}
.swimmingimg {
  width: 48%;
  position: relative;
}
.swmmingimgcont {
  width: 48%;
}
.orengeheading {
  color: #fab03b;
  font-style: italic;
  font-size: 22px;
  line-height: 29px;
  font-family: "Playfair Display", serif;
}
.aboutheading {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  font-family: "Oswald";
  color: #003b5a;
  margin-bottom: 20px;
}
.aboutshortCont {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #6e6e6e;
}
.missionvisioncont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 15px;
}
.mission {
  width: 48%;
}
.vision {
  width: 48%;
}
.abaoutsmallheading {
  font-size: 24px;
  color: #003b5a;
  font-weight: 500;
  font-family: "Oswald";
}
.abouthighlighttext {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #003a58;
  margin-top: 15px;
  line-height: 29px;
}
.aboutCont {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #6e6e6e;
  margin-top: 15px;
}
.aboutBtnArea {
  margin: 0;
  padding: 0;
}
.cayellowBtn {
  font-family: "Oswald";
  font-size: 16px;
  font-weight: 600;
  line-height: 27.2px;
  text-align: center;
  padding: 12px 30px;
  color: #fff;
  background-color: #fab03b;
  border-radius: 8px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}
.cayellowBtn:hover {
  background-color: #3191d1;
}
/* swimming area end */

.cross {
  position: relative;
  z-index: 9999;
  top: -30px;
}
.menu-toggle.cross i {
  color: #fff;
}

.quoteImg {
  position: absolute;
  top: -37px;
  right: 133px;
  z-index: 99;
}
.testiCont .owl-item {
  padding-top: 30px;
}
.topfooterimgarea {
  position: relative;
}
/* .footerLogoArea {
  position: absolute;
  top: -44px;
  left: -7px;
} */
.topfooterimgarea img.footerlogo {
  width: 100%;
}
.footerumbrella {
  position: relative;
  top: -34px;
}
.aboutImgArea {
  position: absolute;
  top: -201px;
  right: -35px;
}

.umbrellaImg {
  position: absolute;
  bottom: 170px;
  left: -94px;
}
.achivment {
  width: 42%;
  max-width: 107px;
}

.loadmorebtn {
  margin: 15px 0;
}
.loadmorebtn a {
  display: inline-block;
  border: 1px solid #3191d1;
  padding: 12px 40px;
  color: #fff;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
  border-radius: 8px;
  font-size: 16px;
  background-color: #3191d1;
}
.loadmorebtn a:hover {
  background-color: #fab03b;
  border: 1px solid #fab03b;
  color: #fff;
}
.loadmoreIocn {
  width: 20px !important;
  height: 20px;
  position: relative;
  top: 5px;
  margin-right: 5px;
}
.blogdetailsheading {
  margin-bottom: 20px;
  font-size: 30px;
}
.sticky {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}
.ourawardsArea {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.ourawardsleft {
  width: 50%;
}
.ourawardsright {
  width: 50%;
}

.pagination {
  margin: 20px 0;
}

.pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination ul li {
  display: inline-block;
  margin-right: 5px;
}

.pagination ul li a {
  color: #333;
  text-decoration: none;
  padding: 7px 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Oswald";
}

.pagination ul li a:hover {
  background-color: #fab03b;
  border: 1px solid #fab03b;
  color: #fff;
}
.pagination ul li a.active {
  background-color: #fab03b;
  border: 1px solid #fab03b;
  color: #fff;
}
.pagiarrow {
  width: 7.4px !important;
  height: 12px !important;
  top: 14px;
  left: 16px;
  gap: 0px;
  opacity: 0px;
}
.innerpage-head-wrap {
  position: relative;
}
.innerpage-head-wrap img {
	width: 100%;
}
.curve {
	position: absolute;
	bottom: 0;
	left: 0px;
	right: 0;
}
.inner-page-title h2,
.inner-page-title h1 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 96px;
  line-height: 142px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  text-align: center;
  display: block;
  color: #ffffff;
}
.inner-page-title.blog-details h2,
.inner-page-title.blog-details h1{
  font-size: 60px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
}
.inner-page-title {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 90%;
}
.inner-page-title ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.inner-page-title ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 59px;
  display: flex;
  align-items: center;
}
.inner-page-title ul li span {
  position: relative;
  top: 5px;
}
.inner-page-title ul li a {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 59px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #ffffff;
}
/*---------------- staycation Signature Line------------- */
.staycationSignatureLineWrap h1 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  line-height: 95px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0;
  justify-content: center;
}
.staycationSignatureLineWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staycationSignatureLineWrap img{
  width: 100%;
}
.staycationSignatureCurve, .staycationSignatureCurve img{
  width: 100%;
}
.staycationSignatureLineWrap span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.staycationSignatureCurve {
  position: absolute;
  bottom: -7px;
}
.poolList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 78px;
  row-gap: 20px;
  flex-wrap: wrap;
  margin: 70px 0;
}
.poolList div h4 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 37px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #3c5472;
  margin: 0;
}
.poolList div p {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0;
  color: #7a7a7a;
}
.poolList div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.poolSoSpecialArea {
  background: url(../images/about.jpg) no-repeat;
  padding: 100px 100px;
  text-align: center;
  background-size: cover;
  position: relative;
}
.poolSoSpecialArea:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.poolSoSpecialArea .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  position: relative;
  z-index: 9;
}
.poolSoSpecialArea h2 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 47px;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-align: center;
}
.poolSoSpecialArea p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  /* or 180% */
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.poolsDetails {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.poolsDetails h3 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 47px;
  display: flex;
  align-items: center;
  color: #000000;
  margin: 0 !important;
}
.poolsDetails > p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #7a7a7a;
  margin-bottom: 40px;
}
.poolDetailsBox {
  display: flex;
  gap: 20px;
}
.poolInfoRightSection {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.poolInfoRightSection h4 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 44px;
  display: flex;
  align-items: center;
  letter-spacing: 2.72828px;
  text-transform: capitalize;
  color: #3c5472;
}
.poolInfoRightSection span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 19.098px;
  line-height: 35px;
  /* identical to box height, or 186% */
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #3c5472;
}
.poolInfoRightSection p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16.3697px;
  line-height: 30px;
  /* or 186% */
  display: flex;
  align-items: center;
  color: #7a7a7a;
  text-align: left;
}
.poolColorList div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.poolColorList {
  display: flex;
  gap: 27px;
}
.poolColorList div p {
  text-align: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16.3697px;
  line-height: 30px;
  /* identical to box height, or 186% */
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;

  color: #16365a;
}
.poolDetailsBox {
  margin-bottom: 64px;
}
.fiberglassPoolsImg {
  width: 55%;
}
.fiberglassPools {
  display: flex;
  align-items: center;
  gap: 40px;
}
.fiberglassPoolsInfo {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.fiberglassPoolsInfo h4 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 40.9242px;
  line-height: 61px;
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 5px;
}
.fiberglassPoolsInfo h5 {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 20px;
}
.fiberglassPoolsArea {
  padding-bottom: 60px;
}

/*---------------- aqua technics------------- */
.staycationSignatureLineWrap span {
  text-align: center;
  color: #fff;
}
.staycationSignatureLineWrap span p {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #ffffff;
}
.aquaTechnicsPool {
  display: flex;
  padding: 76px 0;
  justify-content: space-between;
}
.aquaTechnicsPoolInfo {
  width: 45%;
}
.aquaImage {
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
}
.aquaTechnicsPoolInfo h2 {
  margin-bottom: 15px;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  /* identical to box height, or 150% */
  display: flex;
  align-items: center;
  color: #003b5a;
}
.aquaTechnicsPoolInfo p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #6e6e6e;
}
.aquaTechnicsPoolInfo b {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #6e6e6e;
  padding-top: 15px;
}

/* Fo image hove animation  */
.column {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 13px;
  row-gap: 73px;
}
.column:last-child {
  padding-bottom: 60px;
}
.column::after {
  content: "";
  clear: both;
  display: none;
}
.column > div {
  position: relative;
  width: 24%;
  height: 212px;
  margin: 0;
  padding: 0;
}
.column div:first-child {
  margin-left: 0;
}
.column div a.shortlist {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  margin: 0;
  padding: 20px;

  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
  background: #b3b3b3;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
}
.search-icon {
  position: absolute;
  top: 4px;
  right: -28px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
  z-index: 9999;
}
.search-icon img {
  filter: brightness(1) invert(1);
}
.image-holder:hover .search-icon {
  opacity: 1;
  right: 6px;
}
figure {
  width: 100%;
  height: 153px;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.image-holder:hover a.shortlist {
  bottom: -59px;
  opacity: 1;
  z-index: 1;
}
/* Zoom In #1 */
.hover01 figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hover01 figure:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.p-info {
  background: #003b5a;
  padding: 15px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 29px;
  /* identical to box height, or 180% */
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  z-index: 99;
}

.no-scroll {
  overflow: hidden !important;
}
/* The Modal (background) */

/* Modal Content */
/* .modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  z-index: 9999;
  border-radius: 8px;
} */

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.modal-body {
  padding: 2px 16px;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}
.modal-slide img {
  width: 100%;
}

.model-bar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #fff !important;
  align-items: center;
}
.modal-dimension {
  color: #fff !important;
  font-size: 18px;
  font-weight: 300;
  padding: 19px 0;
  display: block;
  float: left;
  background: #033051;
  width: 178px;
  text-align: center;
}
.modalDimensionWrap {
  display: flex;
  gap: 10px;
}
.modal-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
  /* identical to box height, or 180% */
  color: #003b5a;
}

.poolClose {
  position: absolute;
  top: -12.5px;
  z-index: 9999;
  right: -12px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}
.modalPoolmoreInfo {
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  margin-top: 50px;
}
.modalPoolmoreInfo ul {
  width: 70%;
}
.modalPollBluePrint {
  width: 30%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  margin: 5% auto !important;
  position: relative;
  border-radius: 8px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}









/* footer area start */
.footerArea {
  margin: 0;
  padding: 60px 0;
  background-color: #000;
}
.footerBlock {
  display: flex;
  flex-direction: row;
}
.footercolumn1 {
  width: 34%;
  margin-right: 50px;
}
.footercolumn2 {
  width: 30%;
  margin-right: 30px;
}
.footercolumn3 {
  width: 20%;
}
.footerheding {
  color: var(--Primary, #3191d1);
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 29.77px; /* 175.118% */
  text-transform: uppercase;
  margin-bottom: 25px;
}
.footerlink {
  color: #c0bfc1;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 166.667% */
}
.socialIcons {
  margin-top: 20px;
}
.socialIcons a {
  margin-right: 10px;
}
.socialIcons a img{
  border: 1px solid #000;
  border-radius: 100px;
  overflow: hidden;
}
.socialIcons a:hover img {
  opacity: 0.9;
  filter: invert(1) brightness(2);
  border: 1px solid #ccc;

}
.footerlink ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 9px;
}
.footerlink ul li {
  margin-right: 10px;
  width: 100%;
}
.footerlink ul li a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.25px;
}
.footerlink ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.footeraddress {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.footeraddress:before {
  background-image: url(../images-landing/location_on.svg);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 22px;
  height: 25px;
  left: 0;
  top: 5px;
}

.footeremail, .footeremail a {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.footeremail a{
  padding-left: 0;
}
.footeremail:before {
  background-image: url(../images-landing/mail.svg);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 25px;
  height: 20px;
  left: 0;
  top: 5px;
}

.footerno, .footerno a{
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.footerno a{
  padding-left: 0;
}
.footerno:before {
  background-image: url(../images-landing/call.svg);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 17px;
  height: 20px;
  left: 0;
  top: 5px;
}
.yellowFooter {
  background-color: #3191d1;
  min-height: 60px;
  display: flex;
}
.copyText {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.footeraddress:before {
  background-image: url('https://staycationfiberglasspools.com/assets/images/location_on.svg');
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 22px;
  height: 25px;
  left: 0;
  top: 5px;
}
.footeremail:before {
  background-image: url('https://staycationfiberglasspools.com/assets/images/mail.svg');
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 25px;
  height: 20px;
  left: 0;
  top: 5px;
}
.footerno:before {
  background-image: url('https://staycationfiberglasspools.com/assets/images/call.svg');
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 17px;
  height: 20px;
  left: 0;
  top: 5px;
}

.comment-reply-title {
	    padding: 0;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    margin-bottom: 40px !important;
	    font-family: "Poppins", sans-serif !important;
}

.blogdetailsBlock h3 {
			margin-top: 10px !important;
			margin-bottom: 10px !important;
	    font-size: revert !important;
		}

.blogdetailsBlock {
    font-family: "Inter", sans-serif !important;
}
.blogdetailsBlock li {
    margin: 14px 0px;
}

.has-fixed-layout {
    border-collapse: collapse;
}
.has-fixed-layout td {
    border: 1px solid #c6c6c6;
    padding: 15px;
}
.has-fixed-layout strong {
    font-weight: 600;
}

.blogdetailsBlock  h2 {
    margin: 15px 0px;
}
.blogdetailsBlock figure {
    height: 100%;
	margin: 25px 0px;
}


