@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/********placeHolder********/
body {
  margin: 0;
  padding: 0;
  background: #fff;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif !important;
}

.container-lg {
  max-width: 720px;
}

header {
  margin: 0;
  padding: 0px;
  background: #fff;
  animation: mymove 1s ease-in-out;
}
header .navbar {
  margin: 0;
  border: none;
  padding: 0;
  background: none;
}
header .navbar .navbar-brand {
  width: 70px;
}
@media only screen and (max-width: 991.98px) {
  header .navbar .navbar-brand {
    width: 40px;
  }
}

.sticky {
  background: #fff;
  position: fixed;
  z-index: 995;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  animation: mymove 1s ease-in-out;
}

@keyframes mymove {
  from {
    top: -50px;
  }
  to {
    top: 0px;
  }
}
.navbar-toggler {
  background: #5ec3ae;
}
.navbar-toggler i {
  color: #fff;
}
.navbar-toggler:focus {
  background: #009ec7;
}
.navbar-toggler:focus i {
  color: #fff;
}

.main-nav nav ul {
  gap: 120px;
}
@media only screen and (max-width: 991.98px) {
  .main-nav nav ul {
    gap: 0;
  }
}
.main-nav nav ul > li {
  position: relative;
}
.main-nav nav ul > li:after {
  position: absolute;
  content: "";
  border-right: 1px solid gray;
  right: -60px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.main-nav nav ul > li:last-child::after {
  display: none;
}
.main-nav nav ul > li > a {
  font-size: 14px;
  text-transform: capitalize;
  color: #000;
  display: inline-block;
  padding: 20px 0px !important;
}
.main-nav nav ul > li > a:hover {
  color: #5ec3ae !important;
}
.main-nav nav ul > li > a:focus {
  color: #5ec3ae !important;
}
.main-nav nav ul .active a {
  color: #5ec3ae !important;
}

.photobox {
  display: block;
}
.photobox .imgphoto {
  aspect-ratio: 1;
}
.photobox .texttitle {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: none;
  place-items: center;
}
.photobox .texttitle > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.photobox:hover .texttitle {
  display: grid;
}

.inbanner {
  background: #e6e6e6;
}
.inbanner .overlay {
  padding: 40px 0;
}
.inbanner .overlay h1 {
  font-size: 40px;
  color: #5ec3ae;
  ;
}
@media only screen and (max-width: 767.98px) {
  .inbanner .overlay h1 {
    font-size: 30px;
  }
}
.inbanner .overlay h1::first-letter {
  text-transform: capitalize;
}
.inbanner .overlay p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.inbanner .overlay .blinks i {
  color: #000;
}
.inbanner .overlay .blinks a {
  color: #5ec3ae;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.inbanner .overlay .blinks h6 {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.titlecontent h2 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
  color: #5ec3ae;
}
.titlecontent p {
  color: #000;
  font-size: 14px;
  font-weight: 300;
}

.videobox {
  width: 100%;
}
.videobox video {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videobox .videotext {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
}
.videobox .videotext .vtext {
  text-align: center;
  color: #fff;
}
.videobox .videotext .vtext h1 {
  font-size: 40px;
  font-weight: 700;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}
.videobox .videotext .vtext p {
  color: #fff;
  font-size: 16px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.texttitle h2 {
  font-family: "Open Sans", serif;
  color: #59bba6;
  font-weight: 600;
  font-size: 16px;
}
.texttitle h2::first-letter {
  text-transform: capitalize;
}
.texttitle p {
  color: #000;
  font-size: 13px;
  font-weight: 300;
}
.texttitle p::first-letter {
  text-transform: capitalize;
}

.btnblock a {
  color: #5ec3ae;
  font-weight: 700;
  text-transform: capitalize;
  text-transform: uppercase;
}
.btnblock a:hover {
  color: #000;
}

.contactform label {
  font-size: 14px;
  color: #000;
}
.contactform input[type=text],
.contactform input[type=email],
.contactform input[type=number],
.contactform input[type=tel],
.contactform select,
.contactform textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 0px !important;
  font-size: 14px;
  color: #000;
  background: #fff;
  border: 1px solid #b3b3b3;
}
.contactform button {
  background: #5ec3ae;
  color: #fff;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 0px !important;
  border: none;
}
.contactform button:hover {
  background: #009ec7;
  color: #fff;
}

.sicons a {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
}

.minsec {
  min-height: 100vh;
}

.imgbox {
  height: 350px;
}

.postblock h3 {
  color: #5ec3ae;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
}
.postblock h4 {
  color: #000;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.postblock p {
  color: #000;
  font-size: 14px;
}

.ftcopy p {
  font-size: 12px;
  color: #000;
  text-transform: capitalize;
}

.contact-block {
  min-height: 70vh;
}

.popmain {
  /* Modal Content */
  /* The Close Button */
  /* Hide the slides by default */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
}
.popmain .modal {
  display: none;
  position: fixed;
  z-index: 998;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.popmain .modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 500px;
  max-height: 700px;
}
.popmain .modal-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popmain .close {
  color: #000;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.popmain .close:hover,
.popmain .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.popmain .mySlides {
  display: none;
}
.popmain .prev,
.popmain .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 66;
  aspect-ratio: 1;
  width: 40px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: #000;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 100px !important;
  background: #5ec3ae;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.popmain .prev {
  left: -80px;
}
@media only screen and (max-width: 767.98px) {
  .popmain .prev {
    left: 0;
  }
}
.popmain .next {
  right: -80px;
}
@media only screen and (max-width: 767.98px) {
  .popmain .next {
    right: 0;
  }
}
.popmain img.demo {
  opacity: 0.6;
}
.popmain .active,
.popmain .demo:hover {
  opacity: 1;
}
.popmain img.hover-shadow {
  transition: 0.3s;
}

.contactboxes h3 {
  font-size: 20px;
  color: #000;
}
.contactboxes .infotext h4 {
  font-size: 16px;
  color: #000;
}
.contactboxes .infotext a {
  font-size: 14px;
  color: #5ec3ae;
  text-decoration: underline;
}
.contactboxes .infotext a:hover {
  color: #000;
}

@media only screen and (max-width: 991.98px) {
  .awimg {
    width: 80px;
  }
}/*# sourceMappingURL=main.css.map */