/* -----------------------Global Variables-------------------------- */
* {
  margin: 0;
  padding: 0;
  font-family: "Candara", "Open Sans", sans-serif;
  box-sizing: border-box;
}
p {
  font: 400 17px/30px "Candara", "Open Sans", sans-serif !important;
  color: #5e6d81;
  margin: 0 0 30px;
  padding: 0;
}
a {
  font-family: "Candara", "Open Sans", sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

.scrollToBottom {
  background-color: #fa7135;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding-top: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 75px;
  z-index: 10;
  animation: bounce 3s infinite;
  cursor: pointer;
  display: none;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

/* ----------------------------Navbar-------------------------------- */
.desktopNav {
  z-index: 2;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 75px;
  color: #5e6d81;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
  height: 60px;
}
.desktopNav .leftNav {
  height: 100%;
}
.desktopNav .leftNav .logo img {
  height: 40px;
}
.desktopNav .rightNav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}
.desktopNav .rightNav ul li {
  /* font-size: 1.23vw; */
  font-weight: 600;
  color: #5e6d81;
  cursor: pointer;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.desktopNav .rightNav ul li .megaMenu {
  background-color: white;
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  z-index: 5;
  overflow: hidden;
  transform-origin: top;
  transition: max-height 1s ease;
  max-height: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.desktopNav .rightNav ul li .megaMenu .megaColContainer {
  margin: 30px 50px;
  display: flex;
  justify-content: space-evenly;
  gap: 50px;
}
.desktopNav .rightNav ul li .megaMenu .megaColContainer .megaCol {
  width: 20%;
  width: -moz-fit-content;
  width: fit-content;
}
.desktopNav .rightNav ul li .megaMenu .megaColContainer .megaCol img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.desktopNav .rightNav ul li .megaMenu .megaColContainer .megaCol ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 120px;
}
.desktopNav .rightNav ul li .megaMenu .megaColContainer .megaCol ul li a {
  /* font-size: 1.23vw; */
  font-weight: 600;
}
.desktopNav .rightNav ul li .megaMenu .megaColContainer .megaCol ul li a.megaMenuHeading {
  font-weight: 600;
  text-transform: uppercase;
  color: #23b7c2;
}
.desktopNav .rightNav ul li .megaMenu .megaColContainer .megaCol ul li a.megaMenuHeading.orange {
  color: #fa7135;
}
.desktopNav .rightNav ul li .megaMenu.active {
  max-height: 500px;
}
.desktopNav .rightNav ul li svg {
  fill: #5e6d81;
  margin-top: 3px;
  height: 30px;
  width: 30px;
  transition: all 0.5s ease;
}
.desktopNav .rightNav ul li:hover {
  color: #23b7c2;
}
.desktopNav .rightNav ul li:hover svg {
  fill: #23b7c2;
}
.desktopNav .rightNav ul li.active {
  color: #23b7c2;
}
.desktopNav .rightNav ul li.active svg {
  transform: rotate(180deg);
  fill: #23b7c2;
  margin-top: 0px;
}
.desktopNav .rightNav ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  color: #5e6d81;
  transition: all 100ms ease;
}
.desktopNav .rightNav ul li a:hover {
  color: #23b7c2;
}
.desktopNav .rightNav ul li a .heart {
  height: 25px;
  width: 25px;
  fill: #fa7135;
}
.desktopNav .rightNav ul li a.getStarted {
  padding: 7px 20px;
  /* font-size: 1.23vw; */
  font-weight: 600;
  border-radius: 30px;
  background-color: #fa7135;
  color: white;
  transition: all 0.3s ease;
}
.desktopNav .rightNav ul li a.getStarted:hover {
  background-color: #d36330;
}

@media screen and (max-width: 1500px) {
  .desktopNav .rightNav ul {
    gap: 20px;
  }
}
@media screen and (max-width: 1050px) {
  .desktopNav {
    display: none;
  }
}
/* --------------------------Mobile Navbar-------------------------- */
.mobileNav {
  display: none;
}

@media screen and (max-width: 1050px) {
  .mobileNav {
    color: #5e6d81;
    background-color: white;
    width: 100%;
    display: block;
  }
  .mobileNav .topBar {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 0 75px;
    padding-top: 5px;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
  }
  .mobileNav .topBar .leftNav .logo .logoImg {
    width: 150px;
  }
  .mobileNav .topBar .rightNav {
    position: relative;
    padding: 0;
  }
  .mobileNav .topBar .rightNav .hamburger {
    cursor: pointer;
  }
  .mobileNav .topBar .rightNav .hamburger svg {
    fill: #5e6d81;
    height: 50px;
    width: 50px;
  }
  .mobileNav .navContent {
    width: 500px;
    height: calc(100vh - 100px);
    background-color: white;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 100px;
    gap: 30px;
    overflow: auto;
    position: fixed;
    top: 100px;
    left: 0;
    transition: all 0.8s ease;
    transform: translateX(-100%);
  }
  .mobileNav .navContent::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
  }
  .mobileNav .navContent::-webkit-scrollbar {
    width: 3px;
    background-color: #f5f5f5;
  }
  .mobileNav .navContent::-webkit-scrollbar-thumb {
    background-color: #5e6d81;
  }
  .mobileNav .navContent.active {
    transform: translateX(0);
  }
  .mobileNav .navContent ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
  }
  .mobileNav .navContent ul li a {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #5e6d81;
    width: -moz-fit-content;
    width: fit-content;
  }
  .mobileNav .navContent ul li a:hover {
    color: #23b7c2;
  }
  .mobileNav .navContent ul li a.megaMenuHeading {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #23b7c2;
  }
  .mobileNav .navContent ul li a.megaMenuHeading.orange {
    color: #fa7135;
  }
  .mobileNav .navContent ul li a.megaMenuHeading.gray {
    color: #5e6d81;
  }
}
@media screen and (max-width: 768px) {
  .mobileNav {
    color: #5e6d81;
    background-color: white;
    width: 100%;
    display: block;
  }
  .mobileNav .topBar {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 0 50px;
    padding-top: 5px;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
  }
  .mobileNav .topBar .leftNav .logo .logoImg {
    height: 50px;
    width: auto;
  }
  .mobileNav .topBar .rightNav {
    position: relative;
    padding: 0;
  }
  .mobileNav .topBar .rightNav .hamburger {
    cursor: pointer;
  }
  .mobileNav .topBar .rightNav .hamburger svg {
    fill: #5e6d81;
    height: 50px;
    width: 50px;
  }
  .mobileNav .navContent {
    width: 400px;
    height: calc(100vh - 80px);
    background-color: white;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 70px;
    gap: 30px;
    overflow: auto;
    position: fixed;
    top: 80px;
    left: 0;
    transition: all 0.8s ease;
    transform: translateX(-100%);
  }
  .mobileNav .navContent.active {
    transform: translateX(0);
  }
  .mobileNav .navContent ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
  }
  .mobileNav .navContent ul li a {
    font-size: 18px;
    font-weight: 600;
    width: -moz-fit-content;
    width: fit-content;
  }
  .mobileNav .navContent ul li a.megaMenuHeading {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #23b7c2;
  }
}
@media screen and (max-width: 500px) {
  .mobileNav {
    color: #5e6d81;
    background-color: white;
    width: 100%;
    display: block;
    min-width: 370px;
  }
  .mobileNav .topBar {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 0 20px;
    padding-top: 5px;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
  }
  .mobileNav .topBar .leftNav img {
    height: 50px;
  }
  .mobileNav .topBar .rightNav {
    position: relative;
    padding: 0;
  }
  .mobileNav .topBar .rightNav .hamburger {
    cursor: pointer;
  }
  .mobileNav .topBar .rightNav .hamburger svg {
    fill: #5e6d81;
    height: 50px;
    width: 50px;
  }
  .mobileNav .navContent {
    width: 90%;
    height: calc(100vh - 80px);
    background-color: white;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 50px;
    gap: 30px;
    overflow: auto;
    position: fixed;
    top: 80px;
    left: 0;
    transition: all 0.8s ease;
    transform: translateX(-100%);
  }
  .mobileNav .navContent.active {
    transform: translateX(0);
  }
  .mobileNav .navContent ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
  }
  .mobileNav .navContent ul li a {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #5e6d81;
    width: -moz-fit-content;
    width: fit-content;
  }
  .mobileNav .navContent ul li a:hover {
    color: #23b7c2;
  }
  .mobileNav .navContent ul li a.megaMenuHeading {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #23b7c2;
  }
  .mobileNav .navContent ul li a.megaMenuHeading.orange {
    color: #fa7135;
  }
  .mobileNav .navContent ul li a.megaMenuHeading.gray {
    color: #5e6d81;
  }
}
/* --------------------------Header Section-------------------------- */
.homeHeader {
  padding: 20px 100px;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
  background-color: white;
}
.homeHeader .headerContent {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  color: #5e6d81;
  height: 100%;
}
.homeHeader .headerContent .left {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding-right: 50px;
}
.homeHeader .headerContent .left .homeHeaderTitle {
  font-weight: 700;
  font-size: 34px;
}
.homeHeader .headerContent .left .homeHeaderSlogan {
  font-size: 1.2vw;
  font-weight: 500;
}
.homeHeader .headerContent .left .homeHeaderSlogan p {
  font-size: 24px;
  font-weight: 500;
}
.homeHeader .headerContent .left .homeHeaderBtns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
.homeHeader .headerContent .left .homeHeaderBtns .homeHeaderBtn {
  padding: 7px 17px;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  background-color: #fa7135;
  color: white;
}
.homeHeader .headerContent .right {
  height: 100%;
  width: 50%;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.homeHeader .headerContent .right .slideshow-container {
  position: relative;
  height: fit-content;
  width: 800px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.homeHeader .headerContent .right .slideshow-container .container {
  height: 85%;
  width: 700px;
  overflow: hidden;
}
.homeHeader .headerContent .right .slideshow-container .container::-webkit-scrollbar {
  display: none;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer {
  display: flex;
  height: 100%;
  transition: all 0.8s ease;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides {
  height: 100%;
  min-width: 100% !important;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideImg {
  width: 55% !important;
  height: 300px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent {
  background-color: white;
  color: #5e6d81;
  padding: 20px;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .slideTitle {
  /* font-size: 1.23vw; */
  font-weight: 600;
  width: 40%;
  line-height: 20px;
  color: #5e6d81;
  text-decoration: none;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .imgBox {
  width: 60%;
  display: flex;
  justify-content: flex-end;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .imgBox .mapImg {
  height: auto;
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .slideDesc {
  font-size: 18px;
  margin-top: 5px;
  text-align: start;
  line-height: 20px;
  margin: 0;
}
.homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .fullStory {
  font-size: 16px;
  font-weight: 600;
  color: #fa7135;
  text-decoration: none;
  align-self: flex-end;
}
.homeHeader .headerContent .right .slideshow-container .back,
.homeHeader .headerContent .right .slideshow-container .forward {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: translateY(-50%) rotate(90deg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  z-index: 2;
  border: 1.5px solid #fa7135;
  background-color: white;
}
.homeHeader .headerContent .right .slideshow-container .back svg,
.homeHeader .headerContent .right .slideshow-container .forward svg {
  fill: #fa7135;
  margin-top: 4px;
  height: 30px;
  width: 30px;
}
.homeHeader .headerContent .right .slideshow-container .back {
  left: 0;
}
.homeHeader .headerContent .right .slideshow-container .forward {
  transform: translateY(-50%) rotate(-90deg);
  right: 0 !important;
}
.homeHeader .headerContent .right .dots {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 3px;
  background-color: white;
  border: 1px solid #fa7135;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}
.homeHeader .headerContent .right .enable,
.homeHeader .headerContent .right .dots:hover {
  background-color: #fa7135;
}

@media screen and (max-width: 1500px) {
  .homeHeader {
    padding: 20px 80px;
    height: fit-content;
  }
  .homeHeader .headerContent .left {
    gap: 20px;
    width: 50%;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan {
    font-size: 18px;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan p {
    font-size: 18px;
  }
  .homeHeader .headerContent .left .homeHeaderBtns {
    gap: 10px;
  }
  .homeHeader .headerContent .left .homeHeaderBtns .homeHeaderBtn {
    font-size: 14px;
  }
  .homeHeader .headerContent .right .slideshow-container {
    height: fit-content;
    width: 650px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .homeHeader .headerContent .right .slideshow-container .container {
    height: 85%;
    width: 560px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideImg {
    width: 55% !important;
    height: 300px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent {
    padding: 20px;
    width: 45%;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .slideTitle {
    font-size: 18px;
    width: 40%;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .mapImg {
    height: 130px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom {
    gap: 10px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .slideDesc {
    font-size: 16px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .fullStory {
    font-size: 16px;
  }
  .homeHeader .headerContent .right .slideshow-container .back,
  .homeHeader .headerContent .right .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .homeHeader .headerContent .right .slideshow-container .back svg,
  .homeHeader .headerContent .right .slideshow-container .forward svg {
    margin-top: 2px;
  }
  .homeHeader .headerContent .right .dots {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }
}
@media screen and (max-width: 1250px) {
  .homeHeader {
    padding: 20px 80px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .homeHeader .headerContent {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
  }
  .homeHeader .headerContent .left {
    gap: 20px;
    padding-right: 0;
    width: 100%;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan {
    font-size: 22px;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan p {
    font-size: 22px;
  }
  .homeHeader .headerContent .left .homeHeaderBtns {
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .homeHeader .headerContent .left .homeHeaderBtns .homeHeaderBtn {
    font-size: 16px;
  }
  .homeHeader .headerContent .right {
    width: 100%;
  }
  .homeHeader .headerContent .right .slideshow-container {
    height: fit-content;
    width: 650px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .homeHeader .headerContent .right .slideshow-container .container {
    height: 85%;
    width: 560px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideImg {
    width: 55% !important;
    height: 300px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent {
    padding: 20px;
    width: 45%;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .slideTitle {
    font-size: 18px;
    width: 40%;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .mapImg {
    height: 130px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom {
    gap: 10px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .slideDesc {
    font-size: 16px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .fullStory {
    font-size: 16px;
  }
  .homeHeader .headerContent .right .slideshow-container .back,
  .homeHeader .headerContent .right .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .homeHeader .headerContent .right .slideshow-container .back svg,
  .homeHeader .headerContent .right .slideshow-container .forward svg {
    margin-top: 2px;
  }
  .homeHeader .headerContent .right .dots {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }
}
@media screen and (max-width: 1050px) {
  .homeHeader {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .homeHeader {
    padding: 0 100px;
    padding-right: 100px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .homeHeader .headerContent {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
  }
  .homeHeader .headerContent .left {
    gap: 20px;
    padding-right: 0;
    width: 100%;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan {
    font-size: 22px;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan p {
    font-size: 22px;
  }
  .homeHeader .headerContent .left .homeHeaderBtns {
    gap: 20px;
    justify-content: flex-start;
  }
  .homeHeader .headerContent .left .homeHeaderBtns .homeHeaderBtn {
    font-size: 16px;
  }
  .homeHeader .headerContent .right {
    width: 100%;
  }
  .homeHeader .headerContent .right .slideshow-container {
    height: 350px;
    width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .homeHeader .headerContent .right .slideshow-container .container {
    height: 85%;
    width: 560px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideImg {
    width: 55% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent {
    padding: 20px;
    width: 45%;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .slideTitle {
    font-size: 18px;
    width: 40%;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .mapImg {
    height: 130px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom {
    gap: 10px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .slideDesc {
    font-size: 16px;
    text-align: justify;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .fullStory {
    font-size: 16px;
  }
  .homeHeader .headerContent .right .slideshow-container .back,
  .homeHeader .headerContent .right .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .homeHeader .headerContent .right .slideshow-container .back svg,
  .homeHeader .headerContent .right .slideshow-container .forward svg {
    margin-top: 2px;
  }
  .homeHeader .headerContent .right .dots {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }
}
@media screen and (max-width: 700px) {
  .homeHeader {
    padding: 0 50px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .homeHeader .headerContent {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
  }
  .homeHeader .headerContent .left {
    gap: 20px;
    padding-right: 0;
    width: 100%;
  }
  .homeHeader .headerContent .left .homeHeaderTitle {
    font-size: 24px;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan {
    font-size: 20px;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan p {
    font-size: 20px;
  }
  .homeHeader .headerContent .left .homeHeaderBtns {
    gap: 20px;
    justify-content: flex-start;
  }
  .homeHeader .headerContent .left .homeHeaderBtns .homeHeaderBtn {
    padding: 10px 25px;
    font-size: 16px;
  }
  .homeHeader .headerContent .right {
    width: 100%;
  }
  .homeHeader .headerContent .right .slideshow-container {
    height: 600px;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .homeHeader .headerContent .right .slideshow-container .container {
    height: 85%;
    width: 410px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides {
    flex-direction: column;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideImg {
    width: 100% !important;
    height: 55% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent {
    padding: 20px;
    height: 45%;
    width: 100%;
    gap: 0;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .slideTitle {
    font-size: 18px;
    width: auto;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .imgBox {
    width: 60%;
    display: flex;
    justify-content: center;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .top .imgBox .mapImg {
    height: 100px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom {
    gap: 10px;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .slideDesc {
    font-size: 16px;
    text-align: justify;
  }
  .homeHeader .headerContent .right .slideshow-container .container .slidesContainer .slides .slideContent .bottom .fullStory {
    font-size: 16px;
  }
  .homeHeader .headerContent .right .slideshow-container .back,
  .homeHeader .headerContent .right .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .homeHeader .headerContent .right .slideshow-container .back svg,
  .homeHeader .headerContent .right .slideshow-container .forward svg {
    margin-top: 2px;
  }
  .homeHeader .headerContent .right .dots {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }
}
@media screen and (max-width: 530px) {
  .homeHeader {
    padding: 0;
    margin-top: 70px;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 370px;
  }
  .homeHeader .headerContent {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    min-width: 370px;
  }
  .homeHeader .headerContent .left {
    gap: 20px;
    padding: 0 30px;
    width: 100%;
  }
  .homeHeader .headerContent .left .homeHeaderTitle {
    font-size: 28px;
  }
  .homeHeader .headerContent .left .homeHeaderSlogan {
    font-size: 20px;
  }
  .homeHeader .headerContent .left .homeHeaderBtns {
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .homeHeader .headerContent .left .homeHeaderBtns .homeHeaderBtn {
    padding: 10px 25px;
    font-size: 16px;
  }
  .homeHeader .headerContent .right {
    width: 100%;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel {
    width: 100%;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides {
    flex-direction: column;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides .slideImg {
    width: 100% !important;
    height: 60vw !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides .slideContent {
    padding: 10px 50px;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    gap: 0;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides .slideContent .top .slideTitle {
    font-size: 16px;
    width: 50%;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides .slideContent .top .imgBox {
    width: 50%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides .slideContent .top .imgBox .mapImg {
    width: 60%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides .slideContent .bottom {
    gap: 10px;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides .slideContent .bottom .slideDesc {
    font-size: 14px;
    text-align: justify;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .container .slidesContainer .slides .slideContent .bottom .fullStory {
    font-size: 14px;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .back,
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .back svg,
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .forward svg {
    margin-top: 2px;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .back {
    left: 10px;
    bottom: 80px;
    top: auto;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .slideshow-container .forward {
    transform: translateY(-50%) rotate(-90deg);
    right: 10px !important;
    bottom: 80px;
    top: auto;
  }
  .homeHeader .headerContent .right .homeHeaderCarousel .dots {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }
}

/* --------------------------Interect Section---------------------- */
.interectSection {
  background: linear-gradient(180deg, #23a0a9 29.43%, #b0d361 100%);
  height: fit-content;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  align-items: self-start;
}
.interectSection .interectTitle {
  font-size: 26px;
  font-weight: 600;
  color: white;
  height: 30px;
}
.interectSection .interectSlogan, .interectSection .interectSlogan p {
  font-size: 22px;
  color: white;
  text-align: justify;
  height: 90px;
}
.interectSection .interect-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 17px;
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
  align-self: flex-end;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  background: white;
  margin: 0px;
  align-items: flex-end;
}
.interectSection .interect-btn.askVolunteer {
  background-color: #fa7135;
  color: white;
}
.interectSection .sub-block{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 27%;
}

@media screen and (max-width: 1500px) {
  .interectSection .interectTitle {
    height: 60px;
  }
  .interectSection .interectSlogan, .interectSection .interectSlogan p {
    height: 140px;
  }
}
@media screen and (max-width: 1200px) {
  .interectSection .interectTitle {
    height: 50px;
  }
  .interectSection .interectSlogan, .interectSection .interectSlogan p {
    height: 140px;
  }
}
@media screen and (max-width: 1050px) {
  .interectSection {
    height: -moz-fit-content;
    height: fit-content;
    /* flex-direction: column; */
    padding: 30px;
    flex-wrap: wrap;
    gap: 40px;
    min-width: 370px;
  }
  .interectSection .interectTitle {
    height: fit-content;
  }
  .interectSection .interectSlogan, .interectSection .interectSlogan p {
    height: fit-content;
  }
  .interectSection .sub-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .interectSection {
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: row;
    padding: 50px;
    flex-wrap: wrap;
    gap: 40px;
    min-width: 370px;
  }
  .interectSection .interectTitle {
    height: fit-content;
  }
  .interectSection .interectSlogan, .interectSection .interectSlogan p {
    height: fit-content;
  }
  .interectSection .sub-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}

/* ----------------Research Guide Section---------------------- */
.researchGuideSection {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.researchGuideSection .researchGuideTitle {
  font-size: 24px;
  color: #5e6d81;
  font-weight: 600;
}
.researchGuideSection .researchGuideTitle span {
  color: #23b7c2;
}
.researchGuideSection .slideshow-container {
  position: relative;
  height: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.researchGuideSection .slideshow-container .container {
  height: fit-content;
  width: 94%;
  overflow: auto;
  overflow: hidden;
}
.researchGuideSection .slideshow-container .container::-webkit-scrollbar {
  display: none;
}
.researchGuideSection .slideshow-container .container .slidesContainer {
  display: flex;
  gap: 30px;
  height: 100%;
  width: calc((100% - 60px) / 3);
  transition: all 0.8s ease;
}
.researchGuideSection .slideshow-container .container .slidesContainer .researchSlides {
  height: 100%;
  min-width: 100% !important;
  width: -moz-fit-content;
  width: fit-content;
}
.researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideImg {
  width: 100% !important;
  height: 85% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideCaption {
  /* font-size: 1.23vw; */
  color: #5e6d81;
  font-weight: 600;
  margin-top: 10px;
}
.researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideCaption a {
  text-decoration: none;
  color: #5e6d81;
  font-size: 18px;
  color: #5e6d81;
  font-weight: 600;
}
.researchGuideSection .slideshow-container .back,
.researchGuideSection .slideshow-container .forward {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translateY(-50%) rotate(90deg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  z-index: 2;
  border: 1.5px solid #fa7135;
  background-color: white;
}
.researchGuideSection .slideshow-container .back svg,
.researchGuideSection .slideshow-container .forward svg {
  fill: #fa7135;
  margin-top: 4px;
  height: 30px;
  width: 30px;
}
.researchGuideSection .slideshow-container .back {
  left: 0;
}
.researchGuideSection .slideshow-container .forward {
  transform: translateY(-50%) rotate(-90deg);
  right: 0 !important;
}

@media screen and (max-width: 1500px) {
  .researchGuideSection {
    padding: 20px;
    gap: 20px;
  }
  .researchGuideSection .researchGuideTitle {
    font-size: 24px;
  }
  .researchGuideSection .slideshow-container .container {
    width: 94%;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer {
    display: flex;
    gap: 30px;
    height: 100%;
    width: calc((100% - 60px) / 3);
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides {
    height: 100%;
    min-width: 100% !important;
    width: -moz-fit-content;
    width: fit-content;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideImg {
    width: 100% !important;
    height: 80% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideCaption {
    font-size: 18px;
    margin-top: 10px;
  }
  .researchGuideSection .slideshow-container .back,
  .researchGuideSection .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .researchGuideSection .slideshow-container .back svg,
  .researchGuideSection .slideshow-container .forward svg {
    margin-top: 2px;
  }
}
@media screen and (max-width: 1200px) {
  .researchGuideSection {
    padding: 20px;
    gap: 20px;
  }
  .researchGuideSection .researchGuideTitle {
    font-size: 24px;
  }
  .researchGuideSection .slideshow-container .container {
    width: 92%;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer {
    display: flex;
    gap: 30px;
    height: 100%;
    width: calc((100% - 30px) / 2);
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides {
    height: 100%;
    min-width: 100% !important;
    width: -moz-fit-content;
    width: fit-content;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideImg {
    width: 100% !important;
    height: 82% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideCaption {
    font-size: 18px;
    margin-top: 10px;
  }
  .researchGuideSection .slideshow-container .back,
  .researchGuideSection .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .researchGuideSection .slideshow-container .back svg,
  .researchGuideSection .slideshow-container .forward svg {
    margin-top: 2px;
  }
}
@media screen and (max-width: 930px) {
  .researchGuideSection {
    padding: 20px;
    gap: 20px;
  }
  .researchGuideSection .slideshow-container .container {
    width: 90%;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer {
    display: flex;
    gap: 30px;
    height: 100%;
    width: calc((100% - 30px) / 2);
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides {
    height: 100%;
    min-width: 100% !important;
    width: -moz-fit-content;
    width: fit-content;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideImg {
    width: 100% !important;
    height: 85% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideCaption {
    font-size: 18px;
    margin-top: 10px;
  }
  .researchGuideSection .slideshow-container .back,
  .researchGuideSection .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .researchGuideSection .slideshow-container .back svg,
  .researchGuideSection .slideshow-container .forward svg {
    margin-top: 2px;
  }
}
@media screen and (max-width: 768px) {
  .researchGuideSection {
    padding: 20px;
    gap: 0px;
  }
  .researchGuideSection .slideshow-container .container {
    width: 87%;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer {
    display: flex;
    gap: 30px;
    height: 100%;
    width: 100%;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides {
    height: 100%;
    min-width: 100% !important;
    width: -moz-fit-content;
    width: fit-content;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideImg {
    width: 100% !important;
    height: 85% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideCaption {
    font-size: 18px;
    margin-top: 10px;
  }
  .researchGuideSection .slideshow-container .back,
  .researchGuideSection .slideshow-container .forward {
    width: 30px;
    height: 30px;
  }
  .researchGuideSection .slideshow-container .back svg,
  .researchGuideSection .slideshow-container .forward svg {
    margin-top: 2px;
  }
}
@media screen and (max-width: 530px) {
  .researchGuideSection {
    padding: 0;
    min-width: 370px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .researchGuideSection .researchGuideTitle {
    padding: 10px 30px;
    font-size: 22px;
  }
  .researchGuideSection .slideshow-container {
    height: 68vw;
    width: 100%;
  }
  .researchGuideSection .slideshow-container .container {
    height: 100%;
    width: 100%;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer {
    display: flex;
    gap: 30px;
    height: 100%;
    width: 100%;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides {
    height: 100%;
    min-width: 100% !important;
    width: -moz-fit-content;
    width: fit-content;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .slideImg {
    width: 100% !important;
    height: calc(100% - 50px) !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .caption {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .researchGuideSection .slideshow-container .container .slidesContainer .researchSlides .caption .slideCaption {
    font-size: 18px;
    text-align: center;
  }
  .researchGuideSection .slideshow-container .back,
  .researchGuideSection .slideshow-container .forward {
    width: 30px;
    height: 30px;
    bottom: -10px;
    top: auto;
  }
  .researchGuideSection .slideshow-container .back svg,
  .researchGuideSection .slideshow-container .forward svg {
    margin-top: 2px;
  }
  .researchGuideSection .slideshow-container .back {
    left: 5px !important;
  }
  .researchGuideSection .slideshow-container .forward {
    right: 5px !important;
  }
}
/* --------------------------Sponser Section---------------------- */
.sponserSection {
  background-color: #b0d361;
  background: linear-gradient(355deg, #23a0a9 29.43%, #b0d361 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}
.sponserSection .sponserTitle {
  font-size: 24px;
  font-weight: 600;
  color: white;
}
.sponserSection .btns {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sponserSection .btns .sponser-btn {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 7px 17px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  outline: none;
  text-decoration: none;
  background-color: white;
  color: #fa7135;
}
.sponserSection .sponserBtns{
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 1200px) {
  .sponserSection .btns {
    gap: 30px;
  }
  .sponserSection .btns .sponser-btn {
    font-size: 14px;
    padding: 7px 17px;
  }
}
@media screen and (max-width: 700px) {
  .sponserSection {
    flex-direction: column;
    gap: 10px;
    min-width: 370px;
  }
  .sponserSection .sponserTitle {
    text-align: center;
  }
  .sponserSection .btns {
    gap: 20px;
  }
  .sponserSection .btns .sponser-btn {
    font-size: 14px;
    padding: 7px 17px;
  }
}
@media screen and (max-width: 500px) {
  .sponserSection {
    flex-direction: column;
    gap: 10px;
    min-width: 370px;
  }
  .sponserSection .sponserTitle {
    font-size: 19px;
    text-align: center;
  }
  .sponserSection .btns {
    gap: 10px;
  }
  .sponserSection .btns .sponser-btn {
    font-size: 14px;
    padding: 7px 17px;
  }
}
/* --------------------------Cards Section---------------------- */
.cardsSection {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 20px 100px;
  gap: 30px;
}
.cardsSection .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25vw;
  min-width: 250px;
  justify-content: space-evenly;
}
.cardsSection .card .counts {
  font-size: 47px;
  color: #23a0a9;
  margin-bottom: 0px;
  font-weight: 600;
}
.cardsSection .card .cardTitle {
  font-size: 30px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
  color: #5e6d81;
}
.cardsSection .card .cardDesc {
  font-size: 1.39vw;
}
.cardsSection .card .cardDesc p {
  font-size: 25px;
}
.cardsSection .card .card-btn {
  align-self: flex-end;
  text-decoration: none;
  padding: 7px 17px;
  background-color: #23a0a9;
  color: white;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  /* font-size: 1.23vw; */
  text-transform: uppercase;
  border: none;
  outline: none;
}

@media screen and (max-width: 1500px) {
  .cardsSection {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 50px;
    gap: 50px;
  }
  .cardsSection .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    min-width: 200px;
  }
  .cardsSection .card .counts {
    font-size: 40px;
  }
  .cardsSection .card .cardTitle {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .cardsSection .card .cardDesc {
    font-size: 16px;
  }
  .cardsSection .card .cardDesc p {
    font-size: 16px;
  }
  .cardsSection .card .card-btn {
    padding: 7px 17px;
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  .cardsSection {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
    min-width: 370px;
  }
  .cardsSection .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 300px;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 1px 3px #5e6d81;
  }
  .cardsSection .card .counts {
    font-size: 40px;
  }
  .cardsSection .card .cardTitle {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .cardsSection .card .cardDesc {
    font-size: 16px;
  }
  .cardsSection .card .cardDesc p {
    font-size: 16px;
  }
  .cardsSection .card .card-btn {
    padding: 7px 17px;
    font-size: 16px;
  }
}
/* --------------------------subscribeSection Section---------------------- */
.subscribeSection {
  background: linear-gradient(90deg, #23a0a9 50.78%, #b0d361 100%);
  width: 100%;
  padding: 20px 150px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.subscribeSection .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 10px;
}
.subscribeSection .content .subscribe-title {
  font-size: 20px;
  font-weight: 700;
}
.subscribeSection .content .subscribe-desc {
  font-size: 16px;
}
.subscribeSection form {
  display: flex;
  gap: 20px;
}
.subscribeSection form .subscribe-input-email {
  padding: 7px;
  margin: 0px;
  width: 300px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: white;
}
.subscribeSection form .subscribe-btn {
  border: none;
  background-color: #fa7135;
  color: white;
  padding: 7px 17px;
  font-weight: 500;
  /* font-size: 1.23vw; */
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (max-width: 1200px) {
  .subscribeSection {
    padding: 20px 100px;
  }
  .subscribeSection .content {
    gap: 10px;
    margin-bottom: 30px;
  }
  .subscribeSection .content .subscribe-title {
    font-size: 20px;
  }
  .subscribeSection .content .subscribe-desc {
    font-size: 16px;
  }
  .subscribeSection form {
    display: flex;
    gap: 20px;
  }
  .subscribeSection form .subscribe-input-email {
    padding: 7px 17px;
    font-size: 16px;
    width: 300px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: white;
  }
  .subscribeSection form .subscribe-btn {
    border: none;
    background-color: #fa7135;
    color: white;
    padding: 7px 17px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .subscribeSection {
    padding: 20px;
  }
  .subscribeSection .content {
    gap: 10px;
    margin-bottom: 30px;
  }
  .subscribeSection .content .subscribe-title {
    font-size: 20px;
  }
  .subscribeSection .content .subscribe-desc {
    font-size: 16px;
  }
  .subscribeSection form {
    display: flex;
    gap: 20px;
  }
  .subscribeSection form .subscribe-input-email {
    padding: 7px;
    font-size: 18px;
    width: 300px;
    border-radius: 5px;
    border: none;
    outline: none;
  }
  .subscribeSection form .subscribe-btn {
    border: none;
    background-color: #fa7135;
    color: white;
    padding: 7px 17px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
  }
}
@media screen and (max-width: 570px) {
  .subscribeSection {
    padding: 20px 50px;
    min-width: 370px;
  }
  .subscribeSection .content {
    gap: 10px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: left;
  }
  .subscribeSection .content .subscribe-title {
    font-size: 20px;
  }
  .subscribeSection .content .subscribe-desc {
    font-size: 16px;
  }
  .subscribeSection form {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
  }
  .subscribeSection form .subscribe-input-email {
    padding: 10px;
    font-size: 18px;
    width: 100%;
    border-radius: 5px;
    border: none;
    outline: none;
  }
  .subscribeSection form .subscribe-btn {
    border: none;
    background-color: #fa7135;
    color: white;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
  }
}
/* --------------------------Footer Section------------------------------- */
footer {
  margin-bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
}
footer .menubar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 75px;
  gap: 50px;
  background-color: #eaedf1;
}
footer .menubar .left {
  height: 100%;
}
footer .menubar .left img {
  height: 80px;
}
footer .menubar .right {
  width: 80%;
  display: flex;
  margin-top: 30px;
  gap: 100px;
}
footer .menubar .right .menuColumn {
  margin: 0;
}
footer .menubar .right .menuColumn ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .menubar .right .menuColumn ul li {
  padding: 0 30px;
}
footer .menubar .right .menuColumn ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #5e6d81;
  display: flex;
  align-items: center;
}
footer .menubar .right .menuColumn ul li a:hover {
  color: red;
}
footer .menubar .right .menuColumn ul li a svg {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}
footer .terms {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 75px;
  background-color: #d7dbe0;
}
footer .terms .left ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
footer .terms .left ul li a {
  color: #5e6d81;
  text-decoration: none;
}
footer .terms .right {
  display: flex;
  gap: 50px;
  align-items: center;
}
footer .terms .right img {
  height: 60px;
}
footer .copyright {
  padding: 20px 75px;
  background-color: #5e6d81;
  position: relative;
  color: white;
  font-size: 0.92vw;
}
footer .copyright .scrollToTop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -60%);
  padding: 0;
  background-color: #5e6d81;
  border-radius: 150px 150px 0 0;
  padding: 0 10px;
  cursor: pointer;
}
footer .copyright .scrollToTop svg {
  height: 50px;
  width: 50px;
}

@media screen and (max-width: 1100px) {
  footer {
    margin-bottom: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  footer .menubar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 50px;
    gap: 20px;
  }
  footer .menubar .left {
    height: 100%;
  }
  footer .menubar .left img {
    height: 60px;
  }
  footer .menubar .right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 0;
  }
  footer .menubar .right .menuColumn {
    margin: 0;
  }
  footer .menubar .right .menuColumn ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer .menubar .right .menuColumn ul li {
    padding: 0 30px;
  }
  footer .menubar .right .menuColumn ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #5e6d81;
    display: flex;
    align-items: center;
  }
  footer .menubar .right .menuColumn ul li a:hover {
    color: red;
  }
  footer .menubar .right .menuColumn ul li a svg {
    height: 25px;
    width: 25px;
    margin-right: 10px;
  }
  footer .terms {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background-color: #d7dbe0;
  }
  footer .terms .left ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  footer .terms .left ul li a {
    color: #5e6d81;
    text-decoration: none;
  }
  footer .terms .right {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  footer .terms .right img {
    height: 45px;
  }
  footer .copyright {
    padding: 20px 30px;
    background-color: #5e6d81;
    position: relative;
    color: white;
    font-size: 0.92vw;
  }
}
@media screen and (max-width: 768px) {
  footer {
    margin-bottom: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  footer .menubar {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 50px;
    gap: 30px;
  }
  footer .menubar .left {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .menubar .left img {
    height: 60px;
  }
  footer .menubar .right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    gap: 0;
  }
  footer .menubar .right .menuColumn {
    margin: 0;
  }
  footer .menubar .right .menuColumn ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer .menubar .right .menuColumn ul li {
    padding: 0 20px;
  }
  footer .menubar .right .menuColumn ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #5e6d81;
    display: flex;
    align-items: center;
  }
  footer .menubar .right .menuColumn ul li a:hover {
    color: red;
  }
  footer .menubar .right .menuColumn ul li a svg {
    height: 25px;
    width: 25px;
    margin-right: 10px;
  }
  footer .terms {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 30px;
    background-color: #d7dbe0;
  }
  footer .terms .left ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  footer .terms .left ul li a {
    color: #5e6d81;
    text-decoration: none;
  }
  footer .terms .right {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-right: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  footer .terms .right img {
    height: 45px;
  }
  footer .copyright {
    padding: 20px 30px;
    background-color: #5e6d81;
    position: relative;
    color: white;
    font-size: 0.92vw;
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  footer {
    margin-bottom: 0;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 370px;
  }
  footer .menubar {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 10px;
  }
  footer .menubar .left {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .menubar .left img {
    height: 60px;
  }
  footer .menubar .right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 0;
    gap: 50px;
  }
  footer .menubar .right .menuColumn {
    margin: 0;
  }
  footer .menubar .right .menuColumn ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer .menubar .right .menuColumn ul li {
    padding: 0;
  }
  footer .menubar .right .menuColumn ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #5e6d81;
    display: flex;
    align-items: center;
  }
  footer .menubar .right .menuColumn ul li a:hover {
    color: red;
  }
  footer .menubar .right .menuColumn ul li a svg {
    height: 25px;
    width: 25px;
    margin-right: 10px;
  }
  footer .terms {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 30px;
    background-color: #d7dbe0;
  }
  footer .terms .left ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  footer .terms .left ul li a {
    color: #5e6d81;
    text-decoration: none;
  }
  footer .terms .right {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-right: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  footer .terms .right img {
    height: 45px;
  }
  footer .copyright {
    padding: 20px 75px;
    background-color: #5e6d81;
    position: relative;
    color: white;
    font-size: 0.92vw;
  }
  footer .copyright .scrollToTop {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    padding: 0;
    background-color: #5e6d81;
    border-radius: 150px 150px 0 0;
    padding: 0 10px;
    cursor: pointer;
  }
  footer .copyright .scrollToTop svg {
    height: 50px;
    width: 50px;
  }
}/*# sourceMappingURL=index.css.map */

/* --------------------------Paragraph theming---------------------- */

/* --------------------------left-right content paragraph---------------------- */

.left-right-content-paragraph {
  display: flex;
  gap: 10px;
  padding: 10px;
}
.left-right-content-paragraph img {
  height: fit-content;
  max-width: 100%;
}
.paragraph-left-image, .paragraph-right-content, .paragraph-left-content, .paragraph-right-image {
  width: 50%;
}
.information-box {
  background: linear-gradient(355deg, #23a0a9 29.43%, #b0d361 100%);
  padding: 20px;
  color: white;
  font-size: 24px;
  font-weight: 600;
}
.information-box p {
  color: white;
  font-weight: 600 !important;
}
.info-content-text {
  text-align: end;
  font-size: 17px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 530px) {
  .left-right-content-paragraph {
    display: block;
  }
  .paragraph-left-image, .paragraph-right-content, .paragraph-left-content, .paragraph-right-image {
    width: 100%;
  }
}