/* Fonts */
@font-face {
   font-family: GT-Planar;
   src: url(/fonts/GT-Planar-Regular.woff2);
   font-weight: 400;
}
@font-face {
   font-family: GT-Planar;
   src: url(/fonts/GT-Planar-Retalic-15-Regular.woff2);
   font-style: italic;
   font-weight: 400;
}
@font-face {
   font-family: GT-Planar;
   src: url(/fonts/GT-Planar-Retalic-15-Bold.woff2);
   font-style: italic;
   font-weight: 700;
}
@font-face {
   font-family: GT-Planar;
   src: url(/fonts/GT-Planar-Bold.woff2);
   font-weight: 700;
}

:root {
  --white: #fff;
  --black: #2A282F;
  --green: #C7BB67;
  --brown: #93422E;
  --gold: #A09232;
  --lightgrey: #E6E8DF;
  --grey: #DADDD0;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: GT-Planar;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* header */
.header {
  background: url('/img/bg.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  min-height: 800px;
  position: relative;
}
.header-txt {
  color: var(--white);
}
.header-txt img {
  width: 400px;
  margin-bottom: 100px;
}
.header-txt h1 {
  text-shadow: 0px 0px 20px #000;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}
.pt-header .header-txt h1 {
  max-width: 80%;
}
.header-txt hr {
  position: absolute;
  left: 0px;
  width: 35%;
  height: 2px;
  background: var(--white);
  opacity: 1;
  border: none;
}
.header-txt h6 {
  font-size: 40px;
  font-weight: 400;
  margin: 50px 0 0 0;
}
/* form */
#contactform {
  margin: 0 0 0 auto;
  width: 400px;
  padding: 40px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.90);
}
#contactform h3 {
  color: var(--black);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 auto 20px auto;
}
.form-input {
  margin-bottom: 15px;
}
.form-input:has(.error) {
  margin-bottom: 0px;
}
.form-input input {
  width: 100%;
  height: 35px;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--black);
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  -webkit-appearance: none;
}
.form-input input:active, .form-input input:focus, .form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-input .dropdown-toggle {
  width: 100%;
  height: 35px;
  background: transparent;
  border-radius: 0;
  border: none;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  -webkit-appearance: none;
  border-bottom: 1px solid var(--black);
  color: rgba(0, 0, 0, 0.5);
  text-align: left;
  padding: 0;
}
.dropdown-toggle::after {
  display: none;
}
.form-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-input .dropdown-toggle:active, .form-input .dropdown-toggle:focus-visible, .form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.5);
}
.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
}
.form-option:hover {
  background: var(--brown);
  color: var(--white);
}
.phone_box .iti {
  width: 100%;
}
.iti__selected-country-primary {
  padding: 0 !important;
}
.iti__selected-country {
  height: 33px !important;
}
.phone_box .iti--inline-dropdown .iti__dropdown-content {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.phone_box .iti__flag {
  box-shadow: 0 0 1px 0 #DBDBDB;
  background-color: #DBDBDB;
}
.form-check {
  margin-top: 15px;
  text-align: left;
  padding: 0;
}
.form-check label {
  margin: 0 0 0 0px;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 10px;
  font-weight: 300;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0 px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 2px;
  padding-right: 2px;
  color: var(--black);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 13px;
}
#politica-link {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}
#politica-link:hover {
  color: var(--brown);
  text-decoration: underline;
}
.form-button {
  width: 200px;
  height: 50px;
  background: var(--brown);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  border: none;
  border-radius: 50px;
  line-height: 1;
  margin: 20px auto 0 auto;
  transition: all 0.6s ease;
}
.form-button:hover {
  transform: scale(1.05);
  background: var(--green);
  color: var(--white);
}
.error, #termos-error {
  font-size: 11px;
  font-weight: 300;
  color: red;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}
/* section 1 */
.section1 {
  background: var(--lightgrey);
  padding: 20px 0 0 0;
  position: relative;
}
.sec1-txt {
  margin-bottom: 40px;
  color: var(--black);
}
.sec1-txt h3 {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
}
.sec1-txt hr {
  position: absolute;
  left: 0px;
  width: 50%;
  height: 2px;
  background: var(--black);
  opacity: 1;
  border: none;
}
.sec1-txt p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 50px;
  max-width: 93%;
}
.interactive-blocks-m {
  display: none;
  flex-direction: column;
}
.interactive-blocks-m svg {
  width: 100%;
}
.block-txt-slider {
  margin-bottom: 30px;
}
.block-info h5 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}
.block-info p {
  font-size: 16px;
  line-height: 1.1;
  max-width: 100%;
  margin: 0;
}
.block-info p span {
  font-weight: 700;
}
#a_black, #b_txt, #c_txt, #d_txt, #a_brown, #b_yellow, #c_yellow, #d_yellow {
  opacity:0;
}
#a_brown, #b_brown, #c_brown, #d_brown, #a_yellow, #b_yellow, #c_yellow, #d_yellow {
  cursor: pointer;
}
#a_off, #b_on, #c_on, #d_on {
  opacity:0;
}
#a_off, #b_off, #c_off, #d_off, #a_on, #b_on, #c_on, #d_on {
  cursor: pointer;
}
/* section 2 */
.section2 {
  padding: 0 0 100px 0;
  background: var(--lightgrey);
  position: relative;
}
.sec2-txt {
  text-align: right;
}
.sec2-txt h3 {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.sec2-txt h3 span {
  font-weight: 700;
}
.sec2-txt hr {
  position: absolute;
  right: 0px;
  width: 60%;
  height: 2px;
  background: var(--black);
  opacity: 1;
  border: none;
}
.section3 {
  background-color: var(--lightgrey);
  background-image: url('/img/pool1.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 750px;
  position: relative;
}
.sec3-vants {
  text-align: center;
}
.icons {
  margin: 40px auto;
}
.icons img {
  height: 50px;
  transition: all 0.6s ease;
  cursor: pointer;
}
.icons img:hover {
  transform: scale(1.2);
}
.icons p {
  font-size: 16px;
  font-weight: 400; 
  color: var(--black);
  line-height: 1.1;
  max-width: 70%;
  margin: 20px auto 0 auto;
}
.cta-box {
  margin-top: 50px;
}
.cta-box button {
  width: 200px;
  height: 50px;
  background: var(--brown);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  border: none;
  border-radius: 50px;
  line-height: 1;
  margin: 20px auto 0 auto;
  transition: all 0.6s ease;
}
.cta-box button:hover {
  transform: scale(1.05);
  background: var(--green);
  color: var(--white);
}
/* section 4 */
.section4 {
  padding: 90px 0 0 0;
  text-align: center;
}
.sec4-txt h3 {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.sec4-txt hr {
  width: 85%;
  margin: 20px auto;
  opacity: 1;
  border: none;
  height: 2px;
  background: var(--black);
}
.sec4-txt p {
  font-size: 25px;
  font-weight: 400; 
  line-height: 1.1;
  color: var(--black);
}
.gallery {
  background: linear-gradient(0deg, rgba(42,40,47,1) 50%, rgba(255,255,255,1) 50%);;
  padding: 80px 0 100px 0;
}
.gallery-sliders {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-sliders-m {
  display: none;
}
.gallery-slider-box {
  width: 30%;
}
.gallery-outer img {
  margin: 0 auto;
}
.gallery-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 430px;
  margin: 15px auto 0 auto;
  color: var(--white);
}
.dark-controls {
  color: var(--black);
  margin: 0 auto 15px auto;
}
.gallery-info h6 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 30%;
}
.prev-btn {
  transform: rotate(180deg);
  margin-right: 20px;
}
.controls img {
  filter: brightness(0) invert(1);
  height: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.dark-controls img {
  filter: none;
}
.prev-btn:hover {
  transform: scale(1.2) rotate(180deg);
}
.next-btn:hover {
  transform: scale(1.2);
}
.section4 .cta-box button {
  width: 230px;
}
/* section 5 */
.section5 {
  padding: 80px 0 200px 0;
  background-color: var(--white);
  background-image: url('/img/pool-front.png'), url('/img/pool-bg.png');
  background-size: 80%, cover;
  background-position: 100% 0, center;
  background-repeat: no-repeat;
  position: relative;
}
.section5::after {
  bottom: 0px;
  background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
  content: '';
  position: absolute;
  width: 100%;
  height: 380px;
  right: 0;
  left: 0;
  z-index: 0;
}
.sec5-fwd {
  position: relative;
  z-index: 10;
}
.sec5-txt {
  margin-top: 50px;
  min-height: 400px;
}
.sec5-txt h3 {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
  max-width: 80%;
}
.sec5-txt h3 span {
  font-weight: 700;
}
.sec5-txt hr {
  position: absolute;
  left: 0px;
  width: 35%;
  height: 2px;
  background: var(--black);
  opacity: 1;
  border: none;
}
.bullet-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.bullet-row:first-of-type {
  margin-bottom: 40px;
}
.sec5-bullet {
  color: var(--black);
  min-height: 70px;
  border-left: 2px solid var(--black);
  padding-left: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.big-bullet {
  width: 55%;
}
.small-bullet {
  width: 35%;
}
.sec5-bullet p {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.sec5-bullet h6 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
}
.sec5-video {
  text-align: left;
}
.sec5-video video {
  width: 400px;
  box-shadow: 0px 0px 30px #000;
  margin: 0 auto;
}
/* section 6 */
.section6 {
  padding: 50px 0 0 0;
  text-align: center;
}
.sec6-txt {
  margin-bottom: 60px;
}
.sec6-txt h3 {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.sec6-txt hr {
  width: 85%;
  margin: 20px auto;
  opacity: 1;
  border: none;
  height: 2px;
  background: var(--black);
}
.location {
  position: relative;
}
.location img {
  width: 100%;
}
#map-content {
  width: 90%;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  opacity: 0;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
#map-content.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.pt #map-content {
  top: 40px;
}
#map-logo {
  width: 250px;
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
}
/* footer */
.footer {
  padding: 60px 0 80px 0;
  background: var(--green);
  position: relative;
}
.footer-txt {
  color: var(--white);
}
.footer-txt h5 {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.1;
}
.footer-txt h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}
.footer-txt hr {
  position: absolute;
  left: 0px;
  width: 40%;
  height: 2px;
  background: var(--white);
  opacity: 1;
  border: none;
}
.footer-cta {
  text-align: center;
}
.footer-cta button {
  width: 200px;
  height: 50px;
  background: var(--brown);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  border: none;
  border-radius: 50px;
  line-height: 1;
  margin: 20px auto 0 auto;
  transition: all 0.6s ease;
}
.footer-cta button:hover {
  transform: scale(1.05);
  background: var(--black);
  color: var(--white);
}
/* message */
.message-box {
  margin: 0 0 0 auto;
  width: 400px;
  padding: 40px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.90);
  color: var(--black);
}
.message-box h3 {
  font-size: 35px;
  font-weight: 700;
}
.message-box h3 span {
  color: var(--brown);
}
.message-box p {
  line-height: 1.1;
  font-size: 16px;
  max-width: 80%;
  margin: 0 auto;
}
.pt-header .message-box p {
  max-width: 70%;
}
/* pop-up */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background-color: white;
  padding: 40px;
  width: 90%;
  aspect-ratio: 3/2;
  max-width: 500px;
  border-radius: 0px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.popup-content h6 {
  font-size: 35px;
  font-weight: 700;
  text-wrap: balance;
}
.popup-content h6 span {
  color: var(--brown);
}
.popup-content img {
  max-width: 100%;
  margin-bottom: 20px;
}
.call-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
.call-cta button {
  width: 300px;
  height: 55px;
  background: #1BD741;
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.call-cta button img {
  width: 35px;
  margin: 0 5px 0 0;
}
.call-cta button:hover {
  transform: scale(1.05);
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}
.close-btn:hover {
  color: #000;
}
.message-box button {
  width: 90%;
  height: 45px;
  background: var(--brown);
  border: none;
  color: var(--white);
  font-size: 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s ease;
  margin: 30px auto 0 auto;
}
.message-box button:hover {
  transform: scale(1.05);
  background: var(--green);
  color: var(--white);
}
/* Adstartegy */
#section-ads {
  text-align: center;
  padding: 30px;
}
/* Media Queries */
@media only screen and (max-width: 1550px) {
  .section5 {
    background-size: 90%, cover;
    background-position: 150% 0, center;
  }
  #map-content {
    top: 20px;
  }
  .section3 {
    background-size: cover;
  }
  .gallery-outer img, .gallery-info {
      width: 95%;
  }
  .gallery-info {
      justify-content: space-between;
  }
}
@media only screen and (max-width: 1400px) {
  .pt-header .header-txt h1 {
    max-width: 100%;
  }
  .sec1-txt p {
    max-width: 100%;
    font-size: 20px;
  }
  .sec2-txt h3 {
    font-size: 38px;
  }
  .gallery-sliders {
    justify-content: space-evenly;
  }
  .sec5-txt h3 {
    max-width: 90%;
  }
  .section5 {
    background-size: 95%, cover;
    background-position: 280% 0, center;
  }
  .sec5-bullet h6 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 1330px) {
   .section5 {
    background-size: 120%, cover;
    background-position: -30% 0%, center;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 48px;
  }
  .sec5-txt h3 {
    font-size: 38px;
    max-width: 100%;
  }
  .sec1-txt h3 {
    font-size: 38px;
  }
  .icons p {
    max-width: 85%;
  }
  .section5 {
    background-position: -40% 0%, center;
  }
  .sec2-txt h3 {
    font-size: 30px;
  }
  .footer-txt h5 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1080px) {
  .sec5-bullet p {
    font-size: 20px;
  }
  .sec5-bullet h6 {
    font-size: 25px;
  }
  .sec5-video video {
    width: 380px;
  }
}
@media only screen and (max-width: 991px) {
  .header-txt img {
    width: 100%;
  }
  .header-txt h1 {
    font-size: 35px;
  }
  .header-txt h6 {
    font-size: 26px;
  }
  .sec1-txt h3 {
    font-size: 30px;
  }
  .sec1-txt p {
    font-size: 18px;
  }
  .sec2-txt h3 {
    font-size: 27px;
  }
  .section2 {
    padding: 0 0 80px 0;
  }
  .icons {
    margin: 20px auto;
  }
  .section3 {
    min-height: auto;
    padding: 0 0 200px 0;
    background-size: 110%;
    background-position: bottom center;
  }
  .sec4-txt h3 {
    font-size: 32px;
  }
  .sec4-txt p {
    font-size: 18px;
  }
  .gallery {
    padding: 60px 0 80px 0;
  }
  .bullet-row {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .bullet-row:first-of-type {
    margin-bottom: 0;
  }
  .big-bullet, .small-bullet {
    width: 100%;
    margin: 10px auto;
  }
  .sec5-txt {
    min-height: 300px;
  }
  .section5 {
    background-size: 130%, cover;
    background-position: -30% 0%, center;
  }
  .sec6-txt h3 {
    font-size: 33px;
  }
  .footer-txt h5 {
    font-size: 23px;
  }
  .interactive-blocks {
    display: none;
  }
  .interactive-blocks-m {
    display: flex;
  }
  .sec1-txt {
    margin-bottom: 10px;
  }
  .block-txt-slider {
    margin: 40px 0;
  }
  .gallery {
    padding: 20px 0 60px 0;
    background: linear-gradient(0deg, rgba(42, 40, 47, 1) 60%, rgba(255, 255, 255, 1) 60%);
  }
  .gallery-sliders, .sec1-txt p {
    display: none;
  }
  .gallery-sliders-m {
    display: block;
    position: relative;
  }
  .gallery-outer img {
    max-width: 100%;
    margin: 0 auto;
  }
  .gallery-info {
    width: 100%;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    margin: 0 auto;
  }
  .controls {
    justify-content: space-between;
    width: 90%;
  }
  .controls img {
    filter: none;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px;
  }
  .cta-box {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 850px) {
  #contactform, .message-box {
    width: 380px;
  }
  .section5 {
    background-size: 160%, cover;
    background-position: 10% 0%, center;
  }
  .section6 {
    padding: 20px 0 0 0;
  }
  #map-content {
    top: 15px;
  }
  .gallery-info h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    text-align: center;
    padding: 50px 0;
  }
  .header-txt img {
    width: 300px;
    margin-bottom: 40px;
  }
  .header-txt h1 {
    font-size: 45px;
  }
  .pt-header .header-txt h1 {
    max-width: 90%;
    margin: 0 auto;
  }
  .header-txt hr {
    width: 300px;
    position: relative;
    margin: 20px auto 0 auto;
  }
  .header-txt h6 {
    margin: 20px auto 40px auto;
  }
  #contactform, .message-box {
    margin: 0 auto;
  }
  .section1 {
    text-align: center;
  }
  .sec1-txt {
    margin-bottom: 10px;
  }
  .sec1-txt hr {
    width: 300px;
    position: relative;
    margin: 20px auto;
  }
  .sec1-txt p {
    margin: 0 auto 20px auto;
  }
  .block-txt-slider {
    margin: 0px 0 40px 0;
  }
  .block-info p {
    max-width: 85%;
    margin: 0 auto;
  }
  .section2 {
    padding: 40px 0 20px 0;
  }
  .sec2-txt {
    text-align: center;
  }
  .sec2-txt hr {
    width: 300px;
    position: relative;
    margin: 20px auto;
  }
  .icons p {
    max-width: 75%;
  }
  .section3 {
    padding: 0 0 200px 0;
  }
  .section4 {
    padding: 60px 0 0 0;
  }
  .sec4-txt h3 {
    font-size: 30px;
  }
  .section5 {
    text-align: center;
    background-image: url(/img/pool-bg.png);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
  }
  .sec5-txt {
    margin-top: 0;
    min-height: auto;
  }
  .sec5-txt hr {
    width: 300px;
    position: relative;
    margin: 20px auto;
  }
  .sec5-video {
    display: flex;
    margin: 30px auto 60px auto;
  }
  .sec5-fwd {
    flex-direction: column-reverse;
  }
  .bullet-row {
    flex-direction: unset;
  }
  .big-bullet {
    width: 55%;
  }
  .small-bullet {
    width: 40%;
  }
  .footer {
    padding: 50px 0;
    text-align: center;
  }
  .footer-txt hr {
    width: 300px;
    position: relative;
    margin: 20px auto;
  }
}
@media only screen and (max-width: 655px) {
  .gallery-sliders {
    flex-direction: column;
  }
  .gallery-slider-box {
    width: 90%;
  }
}
@media only screen and (max-width: 500px) {
  .pt-header .header-txt h1 {
    max-width: 90%;
    margin: 0 auto;
  }
  .header-txt h1 {
    font-size: 40px;
  }
  .sec6-txt h3 {
    font-size: 30px;
  }
  .sec4-txt h3 {
    max-width: 70%;
    margin: 0 auto;
  }
  .sec5-txt h3 {
    font-size: 35px;
    max-width: 90%;
    margin: 0 auto;
  }
  .sec4-txt p {
    max-width: 70%;
    margin: 0 auto 20px auto;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt h1 {
    font-size: 36px;
  }
  .sec1-txt p {
    font-size: 16px;
  }
  .block-info p {
    max-width: 90%;
    font-size: 14px;
  }
  .sec2-txt h3 {
    font-size: 24px;
  }
  .icons p {
    font-size: 14px;
    max-width: 90%;
  }
  .sec5-bullet p {
    font-size: 17px;
  }
  .sec5-bullet h6 {
    font-size: 22px;
  }
  .sec6-txt hr {
    width: 300px;
  }
  .sec6-pt h3 {
    max-width: 70%;
    margin: 0 auto;
  }
  .sec6-txt {
    margin-bottom: 30px;
  }
  .footer-txt h5 {
    font-size: 21px;
  }
  .popup-content {
    padding: 20px;
  }
  .popup-content h6 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 450px) {
  .sec5-txt h3 {
    font-size: 33px;
    max-width: 95%;
  }
  .sec6-txt h3 {
    max-width: 65%;
    margin: 0 auto;
  }
  .footer-txt h5 {
    font-size: 18px;
  }
  .sec5-video video {
    width: 90%;
  }
  .sec4-txt h3 {
    max-width: 80%;
  }
  .footer-txt h3 {
    font-size: 35px;
  }
  .pt-header .header-txt h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 414px) {
  .header-txt h1 {
    font-size: 34px;
  }
  .sec5-txt h3 {
    font-size: 30px;
  }
  .sec2-txt h3 {
    max-width: 84%;
    margin: 0 auto;
  }
  #contactform, .message-box {
    width: 98%;
  }
  .pt-header #contactform h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 375px) {
  .pt-header .header-txt h1 {
    font-size: 30px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  .header-txt h6 {
    font-size: 22px;
  }
  .pt-header #contactform h3 {
    font-size: 22px;
  }
  .sec1-txt p {
    font-size: 15px;
  }
  .sec2-txt h3 {
    max-width: 85%;
    font-size: 22px;
  }
  .block-info p {
    font-size: 13px;
    max-width: 98%;
  }
  .icons p {
    max-width: 100%;
  }
  .sec4-txt h3 {
    max-width: 85%;
  }
  .sec4-txt p {
    max-width: 90%;
  }
  .sec5-txt h3 {
    font-size: 26px;
    max-width: 98%;
  }
  .sec5-bullet {
    padding-left: 10px;
    min-height: 50px;
  }
  .sec5-bullet p {
    font-size: 14px;
  }
  .sec5-bullet h6 {
    font-size: 20px;
  }
  .footer-txt h3 {
    font-size: 35px;
  }
  .sec6-txt h3 {
    max-width: 90%;
  }
  .call-cta button {
    width: 100%;
    font-size: 15px;
  }
  .popup-content h6 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 350px) {
  .footer-txt h5 {
    max-width: 70%;
    margin: 0 auto 10px auto;
  } 
  .header-txt h1 {
    font-size: 30px;
  }
  .header-txt hr, .sec1-txt hr, .sec2-txt hr, .sec4-txt hr, .sec5-txt hr, .sec6-txt hr, .footer-txt hr {
    width: 250px;
  }
  .sec2-txt h3 {
    max-width: 100%;
  }
  .icons p {
    font-size: 13px;
  }
  .sec5-bullet h6 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 335px) {
  #contactform h3 {
    font-size: 26px;
  }
  .header-txt h1 {
    font-size: 28px;
  }
  .pt-header .header-txt h1 {
    font-size: 24px;
  }
  .pt-header #contactform h3 {
    font-size: 21px;
  }
  .sec4-txt p, .sec4-txt h3 {
    max-width: 100%;
  }
  .footer-txt h5 {
    max-width: 80%;
  }
  .popup-content h6 {
    font-size: 20px;
  }
}