/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
  font-family: 'AfterSick';
  src: url('/font/aftersick-book.woff2');
}

:root {
  --white: #ffffff;
  --black: #000000;
  --gold: #D9D1BE;
  --brown: #6D6B6C; 
  --grey: #E6E6E4;
  --blue: #C4CFD5;
}

html, body{
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Manrope', serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
a:hover {
  color: var(--black);
}

.phone_box .iti { width: 100%; }
.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;
}
/* navbar */
.navbar {
  padding: 20px 0 !important;
  text-align: center;
  display: none;
}
.navbar button {
  width: 275px;
  height: 55px;
  border-radius: 15px;
  border: none;
  background: var(--black);
  color: var(--white);
  font-size: 35px;
  font-family:  'AfterSick';
  margin: 30px auto 0 auto;
  line-height: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: all 0.6s ease;
}
.navbar button:hover {
  transform: scale(1.05);
}
.nav {
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding: 25px 0;
}
.nav-row {
  width: 100%;
}
.nav-logo {
  position: absolute;
  background: var(--white);
  width: 195px;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 20px 0;
  left: 0;
}
.nav-logo img {
  height: 140px;
}
.nav-list {
  text-align: right;
}
.nav-list ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.nav-list ul li {
  cursor: pointer;
  margin: 0 20px;
  position: relative; 
}
.nav-list ul li:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--black);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.nav-list ul li:hover:after { 
  width: 100%; 
  left: 0; 
}
/* Header */
.header {
  position: relative;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  padding-top: 130px;
}
.background-video {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
.header-slider {
  overflow: hidden;
}
.header-img {
  background-size: cover !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  height: 900px;
  filter: brightness(0.55);
}
#header-slide1 {
  background: url('/img/header-slide/header1.jpg');
}
#header-slide2 {
  background: url('/img/header-slide/header2.jpg');
}
#header-slide3 {
  background: url('/img/header-slide/header3.jpg');
}
#header-slide4 {
  background: url('/img/header-slide/header4.jpg');
}
#header-slide5 {
  background: url('/img/header-slide/header5.jpg');
}
#header-slide6 {
  background: url('/img/header-slide/header6.jpg');
}
/*.background-video {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
  filter: brightness(0.5);
}
.background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/
.header-content {
  position: relative;
  z-index: 1;
}
.header-txt {
  margin: -50px 0 0 100px;
}
.header-txt h1 {
  font-family:  'AfterSick';
  font-size: 95px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0;
  margin: 0 0 10px 0;
}
.header-txt h3 {
  color: var(--white);
  font-size: 35px;
  font-weight: 300;
  letter-spacing: 10.5px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.selo {
  background: var(--white);
  padding: 10px;
  width: 300px;
  font-size: 18px;
  border-radius: 20px;
  text-align: center;
  margin-top: 35px;
}
.selo span {
  font-family:  'AfterSick';
  font-weight: 700;
  font-size: 28px;
  margin-left: 5px;
}
/* Form */
.form-box {
  margin: 0 0 0 auto;
  padding: 0;
}
#contactform {
  text-align: center;
  width: 480px;
  min-height: 530px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px 0px 0px 0px;
  background: rgba(255, 255, 255, 0.85);
  margin: 0 0 0 auto;
  padding: 40px 30px 30px 30px;
}
#contactform h3 {
  color: var(--black);
  font-family:  'AfterSick';
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.form-group {
  margin: 10px 0;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black) !important;
  font-size: 18px;
  -webkit-appearance: none;
  padding-left: 15px;
  text-align: left !important;
  font-weight: 400 !important;
}
.form-group textarea {
  height: 85px;
  line-height: 1.1;
  background: transparent !important;
  padding: 10px 0 5px 15px;
  resize: none;
}
input::placeholder, textarea::placeholder {
  color: var(--black);
  opacity: 1;
}
input::-webkit-input-placeholder {
  color: var(--black);
}
input::-moz-placeholder {
  color: var(--black);
}
input:-ms-input-placeholder {
  color: var(--black);
}
input:-moz-placeholder {
  color: var(--black);
}
.form-group input:active, .form-group input:focus, .form-group input:focus-visible {
  outline: none !important;
}
.form-group textarea:active, .form-group textarea:focus, .form-group textarea:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--black) !important;
}
.form-check {
  text-align: center;
}
.form-check label {
  margin: 0px 0 0 -10px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 200;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--black);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0.5px;
  margin-top: -1px;
  font-size: 12px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--black);
  text-decoration: underline;
}
.form-button {
  width: 275px;
  height: 55px;
  border-radius: 15px;
  border: none;
  background: var(--gold);
  color: #000;
  font-size: 35px;
  font-family:  'AfterSick';
  margin: 30px auto 0 auto;
  line-height: 1;
  filter: brightness(0.90);
  transition: all 0.6s ease;
}
.form-button:hover {
  background: var(--black);
  color: var(--white);
}
.error, #terms-error {
  font-size: 11px;
  line-height: 1;
  color: red !important;
  font-style: normal;
  width: 100%;
  font-weight: 200;
  text-align: center;
}
/* Message box */
.message-box {
  text-align: center;
  width: 480px;
  min-height: 530px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px 0px 0px 0px;
  background: rgba(255, 255, 255, 0.85);
  margin: 0 0 0 auto;
  padding: 40px 30px 30px 30px;
}
.message-box h3 {
  font-family: 'AfterSick';
  font-size: 60px;
  line-height: 1;
  margin-bottom: 20px;
}
.message-box p {
  font-size: 20px;
  line-height: 1.2;
  max-width: 80%;
  margin: 10px auto 0 auto;
  padding: 0;
}
/* Titles */
.title {
  margin-bottom: 50px;
}
.title h3 {
  color: var(--black);
  font-family: 'AfterSick';
  font-size: 60px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}
.title p {
  color: var(--brown);
  font-size: 30px;
  font-weight: 200;
  line-height: 1.1;
}
/* section1 */
.section1 {
  text-align: center;
  padding: 50px 0 0;
  margin: 0 auto;
  width: 90%;
}
.gallery-outer {
  width: 100%;
  position: relative;
  padding: 0;
}
.gallery-title {
  position: absolute;
  left: 0;
  background: var(--white);
  width: 290px;
  height: 140px;
  border-radius: 0px 0px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  z-index: 2;
}
.gallery-title h3 {
  color: var(--brown);
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
}
.gallery-title h3 span {
  color: var(--black);
  font-family: 'Aftersick';
  font-size: 60px;
}
.gallery-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 55px;
  background: var(--white);
  border-radius: 20px 0px 0px 0px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.gallery-controls img {
  cursor: pointer;
  margin: 0 20px;
  transition: all 0.6s ease;
}
.prev:hover {
  transform: scale(1.15);
}
.next:hover {
  transform: scale(1.15) rotate(180deg);
}
.next {
  transform: rotate(180deg);
}
.galley-img {
  border-radius: 20px !important;
  height: 580px;
  background-size: 100% !important;
  background-position: center 35% !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.galley-img h6 {
  color: var(--white);
  font-family: 'AfterSick';
  font-size: 50px;
  margin: 0 50px 90px 0;
}
#slide1 {
  background: linear-gradient(rgba(109, 107, 108, 0.40), rgba(109, 107, 108, 0.40)), url('/img/slider/slide1.jpg');
}
#slide2 {
  background: linear-gradient(rgba(109, 107, 108, 0.30), rgba(109, 107, 108, 0.30)), url('/img/slider/slide2.jpg');
}
#slide3 {
  background: linear-gradient(rgba(109, 107, 108, 0.30), rgba(109, 107, 108, 0.30)), url('/img/slider/slide3.jpg');
}
#slide4 {
  background: linear-gradient(rgba(109, 107, 108, 0.30), rgba(109, 107, 108, 0.30)), url('/img/slider/slide4.jpg');
}
#slide5 {
  background: linear-gradient(rgba(109, 107, 108, 0.30), rgba(109, 107, 108, 0.30)), url('/img/slider/slide5.jpg');
}
#slide6 {
  background: linear-gradient(rgba(109, 107, 108, 0.30), rgba(109, 107, 108, 0.30)), url('/img/slider/slide6.jpg');
}
#slide7 {
  background: linear-gradient(rgba(109, 107, 108, 0.30), rgba(109, 107, 108, 0.30)), url('/img/slider/slide7.jpg');
}
#slide8 {
  background: linear-gradient(rgba(109, 107, 108, 0.30), rgba(109, 107, 108, 0.30)), url('/img/slider/slide8.jpg');
}
#slide9 {
  background: linear-gradient(rgba(109, 107, 108, 0.30), rgba(109, 107, 108, 0.30)), url('/img/slider/slide9.jpg');
  background-position: center 70% !important;
}
/* section2 */
.section2 {
  text-align: center;
  padding: 50px 0 0 0;
  margin: 0 auto;
  width: 90%;
}
.rooftop-section {
  background: var(--grey);
  border-radius: 20px;
  padding: 25px 40px;
  position: relative;
  transition: background-color 0.4s ease;
}
.toogle-outer {
  background: var(--white);
  width: 48%;
  height: 450px;
  border-radius: 0px 20px 0px 0px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.toogle-info {
  text-align: left;
  padding: 30px 50px;
}
.top-toogle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.top-toogle h3 {
  color: var(--brown);
  font-size: 30px;
  font-weight: 200;
  line-height: 1.1;
}
.top-toogle h3 span {
  font-family: 'AfterSick';
  font-size: 60px;
  color: var(--black);
}
.switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 36px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.sliding {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--brown);
  -webkit-transition: .4s;
  transition: .4s;
}
.sliding:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 5px;
  background: url('/img/moon.svg'), white;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 20px 20px !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch input:checked + .sliding {
  background-color: var(--blue);
}
.switch input:focus + .sliding {
  box-shadow: 0 0 1px #2196F3;
}
.switch input:checked + .sliding:before {
  background: url('/img/sun.svg'), white;
  -webkit-transform: translateX(32px);
  -ms-transform: translateX(32px);
  transform: translateX(36px);
}
.sliding.round {
  border-radius: 34px;
}
.sliding.round:before {
  border-radius: 50%;
}
.toogle-info h5 {
  color: var(--black);
  font-size: 28px;
  font-weight: 200;
  margin: 20px 0;
  line-height: 1.1;
}
.toogle-info p {
  font-size: 18px;
  color: var(--black);
  line-height: 1.2;
  font-weight: 200;
  max-width: 90%;
  margin: 0;
}
.toggle-img img {
  max-width: 100%;
}
#night {
  display: none;
}
/* section 3 */
.section3 {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 0 0;
  text-align: center;
}
.flat-slider .slick-list {
  padding: 30px 0;
}
.flat-card {
  width: 400px;
  margin: 0 auto;
  border-radius: 20px;
  transition: all 0.6s ease;
}
.flat-card:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.card-header {
  position: relative;
}
.card-header img {
  border-radius: 20px;
}
.card-title {
  position: absolute;
  left: 0;
  bottom: -5px;
  text-align: left;
  background: var(--white);
  width: 275px;
  height: 95px;
  border-radius: 0px 20px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-title h6 {
  color: var(--black);
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
}
.card-title h6 span {
  font-family: 'AfterSick';
  font-size: 30px;
}
.card-body {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 30px 0;
}
.card-icon {
  width: 33%;
}
.card-icon img {
  margin: 0 auto;
}
.card-icon p {
  color: var(--black);
  font-size: 25px;
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0;
}
.card-icon:not(:last-child) {
  border-right: 1px solid var(--black);
}
.card-cta {
  margin-top: 10px;
  padding-bottom: 30px;
}
.card-cta button {
  width: 300px;
  height: 60px;
  font-family: 'AfterSick';
  font-size: 30px;
  background: var(--gold);
  color: var(--black);
  border-radius: 15px;
  border: none;
  transition: all 0.6s ease;
}
.card-cta button:hover {
  background: var(--black);
  color: var(--white);
}
.house-plan {
  max-width: 60% !important;
}
.plans {
  max-height: 550px !important;
  text-align: center;
  overflow: hidden !important;
}
.plans img {
  margin: 0 auto;
  max-width: 55%;
  transition: all 0.8s ease;
}
.plans img:hover {
  transform: scale(1.1);
}
.house-plan .modal-content {
  height: auto;
}
.plan-body {
  display: flex;
  justify-content: center;
  align-items: center;  
}
.custom-dots {
  text-align: center;
}
.custom-dots .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.custom-dots .slick-dots li {
  margin: 0 5px;
}
.custom-dots .slick-dots li button {
  background-color: var(--grey); 
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
.custom-dots .slick-dots li.slick-active button {
  background-color: var(--black);
}
/* section 4 */
.section4 {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
.map-section {
  background: var(--grey);
  border-radius: 20px;
  padding: 25px 40px;
  position: relative;
  transition: background-color 0.4s ease;
}
.map-img img {
  max-width: 100%;
  border-radius: 20px;
}
.map-info-outer {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--white);
  width: 48%;
  height: 550px;
  border-radius: 20px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.map-info {
  text-align: right;
  padding: 30px 60px;
}
.map-info h3 {
  color: var(--brown);
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
}
.map-info h3 span {
  color: var(--black);
  font-family: 'AfterSick';
  font-size: 60px;
}
.map-info h6 {
  color: var(--black);
  font-size: 25px;
  font-weight: 200;
  margin: 20px 0 30px 0;
  padding: 0;
}
.map-info p {
  color: var(--black);
  font-weight: 400;
  font-size: 20px;
  padding: 0;
  margin: 0 0 20px 0;
}
.list-box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  margin-bottom: 15px;
}
.list ul li span {
  font-size: 13px;
  font-weight: 200;
}
.list ul li img {
  height: 20px;
  margin: -2px 5px 0 0;
}
.list2 {
  margin-left: 50px;
}
/* footer */
.footer {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.footer-section {
  background: var(--grey);
  border-radius: 20px;
  position: relative;
  height: 200px;
}
.footer-row {
  height: 100%;
}
.footer-txt-outer {
  background: var(--white);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  padding: 30px 45px;
  border-radius: 0 20px 0 0;
}
.footer-txt {
  text-align: left;
}
.footer-txt h3 {
  color: var(--black);
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
}
.footer-txt h3 span {
  font-family: 'AfterSick';
  font-size: 50px;
}
.foot-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot-cta button {
  width: 275px;
  height: 60px;
  font-family: 'AfterSick';
  font-size: 35px;
  background: var(--gold);
  color: var(--black);
  border-radius: 15px;
  border: none;
  transition: all 0.6s ease;
}
.foot-cta  button:hover {
  background: var(--black);
  color: var(--white);
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (min-width: 1920px) {
  .footer-txt h3 {
    max-width: 75%;
    margin-left: 30px;
  }
  .plans img {
    max-width: 55%;
  }
  .map-img img {
    max-width: 750px;
  }
}
@media only screen and (max-width: 1440px) {
  .nav {
    width: 100%;
  }
  .header, .section1, .section2, .section3, .section4, .footer {
    width: 95%;
  } 
  .toogle-outer {
    height: 400px;
  }
  .header-txt {
    margin: -50px 0 0 50px;
  }
  .header-txt h1 {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1340px) {
  .header-txt h1 {
    font-size: 85px;
  }
  .header-txt {
    margin: -50px 0 0 70px;
  }
  .card-header img {
    max-width: 100%;
  }
  .flat-card {
    width: 90%;
  }
  .footer-txt h3 span {
    font-size: 43px;
  }
  .footer-txt h3 {
    font-size: 38px;
  }
  .map-info-outer {
    height: 500px;
  }
  .map-info {
    padding: 30px 45px;
  }
  .list p {
    font-size: 20px;
  }
  .list ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1250px) {
  .header-txt h1 {
    font-size: 80px;
  }
  .footer-txt h3 span {
    font-size: 40px;
  }
  .footer-txt h3 {
    font-size: 35px;
  }
  .map-section {
    padding: 35px;
  }
  .map-info {
    padding: 30px 40px;
  }
  .map-info-outer {
    height: 480px;
  }
  .top-toogle h3 span {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt {
    margin: -50px 0 0 60px;
  }
  .toogle-info p {
    font-size: 16px;
  }
  .list2 {
    margin-left: 20px;
  }
  .list ul li span {
    font-size: 12px;
  }
  .footer-txt h3 span {
    font-size: 39px;
  }
  .footer-txt h3 {
    font-size: 34px;
  }
  .header-txt h1 {
    font-size: 75px;
  }
  .galley-img {
    background-size: cover !important;
  }
  #contactform, .message-box {
    width: 100%;
    padding: 40px 20px 30px 20px;
  }
}
@media only screen and (max-width: 1130px) {
  .header-txt h1 {
    font-size: 72px;
  }
  .footer-txt h3 span {
    font-size: 37px;
  }
  .footer-txt h3 {
    font-size: 32px;
  }
  .list p {
    font-size: 19px;
  }
  .list ul li {
    font-size: 16px;
  }
  .list2 {
    margin-left: 30px;
  }
  .card-icon p {
    font-size: 22px;
  }
  .card-cta button {
    width: 90%;
  }
  .toogle-outer {
    height: 380px;
  }
  .top-toogle h3 {
    font-size: 26px;
  }
  .top-toogle h3 span {
    font-size: 52px;
  }
  .footer-section {
    height: 160px;
  }
}
@media only screen and (max-width: 1100px) {
  .house-plan .modal-content {
    height: auto;
  }
  .header-txt h1 {
    font-size: 68px;
  }
  .header-txt h3 {
    font-size: 30px;
  }
  .footer-txt h3 span {
    font-size: 33px;
  }
  .footer-txt h3 {
    font-size: 28px;
  }
  .list p {
    font-size: 17px;
  }
  .list ul li {
    font-size: 15px;
  }
  .toogle-info p {
    max-width: 100%;
  }
  .toogle-outer {
    height: 350px;
  }
  .map-info-outer {
    height: 450px;
  }
  .map-info {
    padding: 20px 20px 20px 0;
  }
  .map-info h3 span, .top-toogle h3 span {
    font-size: 45px;
  }
  .map-info h6, .toogle-info h5 {
    font-size: 25px;
  }
  .card-title h6 span {
    font-size: 30px;
  }
  .card-icon img {
    height: 40px;
  }
  .house-plan {
    max-width: 90% !important;
  }
}
@media only screen and (max-width: 1080px) {
  .list ul li span {
    font-size: 10.5px;
  }
  .list ul li {
    font-size: 13px;
  }
  .map-info h6 {
    font-size: 20px;
  }
  .map-info-outer {
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .plans {
    height: 450px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .plans img {
    width: 550px;
  }
  .header-txt h1 {
    font-size: 75px;
    line-height: 1;
  }
  .header-txt h3 {
    font-size: 22px;
  }
  .footer-txt h3 span {
    font-size: 30px;
  }
  .footer-txt h3 {
    font-size: 24px;
  }
  .title h3 {
    font-size: 50px;
  }
  .title p {
    font-size: 22px;
  }
  .gallery-title h3 span {
    font-size: 50px;
  }
  .gallery-title h3 {
    font-size: 25px;
  }
  .gallery-title {
    width: 250px;
  }
  .toogle-info {
    padding: 30px 40px;
  }
  .toogle-outer {
    height: 330px;
  }
  .card-cta button {
    font-size: 28px;
  }
  .header-txt {
    margin: -50px 0 0 50px;
  }
  .galley-img h6 {
    font-size: 45px;
    margin: 0 50px 75px 0;
  }
  .toogle-info p {
    font-size: 15px;
  }
  .card-title {
    width: 220px;
    height: 80px;
  }
  .card-title h6 span {
    font-size: 24px;
  }
  .card-title h6 {
    font-size: 15px;
  }
  .list2 {
    margin-left: 20px;
  }
  .list p {
    font-size: 14px;
  }
  .list ul li {
    font-size: 11px;
  }
  .map-info h3 span, .top-toogle h3 span {
    font-size: 42px;
  }
  .map-info h6, .toogle-info h5 {
    font-size: 21px;
  }
  .rooftop-section {
    padding: 30px;
  }
  .map-section {
    padding: 40px 30px;
  }
  .plans img {
    max-width: 80%;
  }
  .footer-section {
    height: 145px;
  }
  .map-info {
    padding: 25px 25px 0 0;
  }
}
@media only screen and (max-width: 880px) {
  .list ul li span {
    font-size: 9.5px;
  }
  .rooftop-section {
    padding: 40px 30px;
  }
  .map-info h3 span, .top-toogle h3 span {
    font-size: 35px;
  }
  .map-info h3, .top-toogle h3 {
    font-size: 22px;
  }
  .footer-txt-outer {
    padding: 30px 20px;
  }
  .footer-section {
    height: 150px;
  }
  .list2 {
    margin-left: 15px;
  }
  .list p {
    font-size: 13px;
  }
  .list ul li {
    font-size: 10px;
  }
  .nav-list ul li {
    margin: 0 15px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 810px) {
  .rooftop-section {
    padding: 50px 30px;
  }
  .map-info h3 span, .top-toogle h3 span {
    font-size: 31px;
  }
  .map-info h6, .toogle-info h5 {
    font-size: 18px;
  }
  .selo {
    width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-txt-outer {
    position: relative;
    width: 95%;
    margin: 0 auto;
  }
  .footer-section {
    height: auto;
  }
  .footer-section {
    border-radius: 20px 20px 0 0;
  }
  .footer-txt-outer {
    border-radius: 20px 20px 0 0;
    margin-top: 30px;
  }
  .footer-txt {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer-txt h3 span {
    font-size: 42px;
  }
  .footer-txt h3 {
    font-size: 28px;
    max-width: 93%;
    margin: 0 auto;
  }
  .title {
    margin-bottom: 30px;
  }
  .title h3 {
    font-size: 42px;
  }
  .title p {
    font-size: 18px;
  }
  .flat-card {
    width: 400px;
  }
  .flat-row {
    margin-top: -30px;
  }
  .toogle-outer, .map-info-outer {
    position: relative;
    width: 100%;
    border-radius: 20px;
  }
  .map-info {
    width: 100%;
    text-align: center;
  }
  .list-box {
    justify-content: space-evenly;
  }
  .list2 {
    margin: 0;
  }
  .list p {
    font-size: 20px;
  }
  .list ul li {
    font-size: 15px;
  }
  .galley-img h6 {
    font-size: 35px;
    margin: 0 30px 75px 0;
  }
  .map-section, .rooftop-section {
    padding: 30px 35px;
  }
  .map-img img {
    margin-bottom: 30px;
  }
  .toggle-img img {
    margin-top: 30px;
  }
  .toogle-info {
    padding: 30px 50px;
  }
  .header {
    padding-top: 150px;
  }
  .header-txt {
    text-align: center;
    margin: 0 auto 50px auto;
  }
  .form-box {
    margin: 0 auto;
  }
  #contactform, .message-box {
    border-radius: 20px 20px 0 0;
  }
  .nav-logo {
    width: 140px;
    height: 120px;
  }
  .nav-logo img {
    height: 90px;
  }
  .nav {
    padding: 15px;
  }
  .map-info {
    padding: 30px;
  }
  .card-title {
    width: 255px;
  }
  .card-title h6 span {
    font-size: 28px;
  }
  .map-info h3 span, .top-toogle h3 span {
    font-size: 35px;
  }
  .map-info h3, .top-toogle h3 {
    font-size: 25px;
  }
  .header-img {
    height: 1100px;
  }
  .list ul li {
    line-height: 1.5;
  }
  .list ul li span {
    font-size: 12px;
  }
  .selo {
    margin: 30px auto 0 auto;
  }
} 
@media only screen and (max-width: 620px) {
  .list-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .list2 ul {
    display: flex;
    flex-direction: column-reverse;
  }
  .map-info-outer {
    height: auto;
  }
  .footer-txt h3 {
    max-width: 100%;
  }
  .header-txt h1 {
    font-size: 70px;
  }
  .list-box {
    align-items: flex-start;
    width: 75%;
    margin: 0 auto;
  }
  .list {
    margin: 0;
  }
  .list ul {
    text-align: left;
  }
  .list ul li br {
    display: none;
  }
  .list ul li span {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 550px) {
  .header {
    padding-top: 180px;
  }
  .header-txt {
    margin: 0 auto 130px auto;
  }
  #contactform, .message-box {
    background: rgba(255, 255, 255, 0.70);
    width: 90%;
    margin: 0 auto;
  }
  .header-img {
    height: 1250px;
  }
  .form-group input, .form-group select {
    height: 40px;
  }
  .title h3 {
    font-size: 38px;
  }
  .title p {
    font-size: 16px;
  }
  .footer-txt h3 span {
    font-size: 35px;
  }
  .footer-txt h3 {
    font-size: 25px;
  }
  .toogle-info {
    padding: 30px 40px;
  }
  .gallery-title {
    width: 220px;
    height: 110px;
  }
  .gallery-title h3 span {
    font-size: 45px;
  }
  .gallery-title h3 {
    font-size: 20px;
  }
  .header-txt h1 {
    font-size: 65px;
  }
  .house-plan {
    margin: 30px auto;
  }
  .plans img {
    max-width: 100%;
  }
  .list-box {
    width: 85%;
  }
}
@media only screen and (max-width: 500px) {
  .footer-txt-outer {
    padding: 30px 0 0 0;
  }
  .footer-txt h3 span {
    font-size: 32px;
  }
  .footer-txt h3 {
    font-size: 22px;
  }
  .header-txt h1 {
    font-size: 60px;
  }
  .toogle-outer {
    height: auto;
  }
  .list-box {
    width: 100%;
  }
}
@media only screen and (max-width: 475px) {
  .top-toogle {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .toogle-info {
    padding: 30px;
    text-align: center;
  }
  .top-toogle h3 {
    margin-bottom: 20px;
  }
  .flat-card {
    width: 90%;
  }
  .footer-txt h3 span {
    font-size: 30px;
  }
  .footer-txt h3 {
    font-size: 20px;
  }
  .title h3 {
    font-size: 35px;
  }
  .foot-cta button {
    width: 250px;
  }
  .header-txt h1 {
    font-size: 55px;
  }
  #contactform h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 425px) {
  .header-txt h1 {
    font-size: 50px;
  }
  .title h3 {
    font-size: 32px;
  }
  .gallery-title h3 span {
    font-size: 35px;
  }
  .gallery-title {
    width: 150px;
    height: 90px;
  }
  .map-info h3 span, .top-toogle h3 span {
    font-size: 35px;
  }
  .map-info h6, .toogle-info h5 {
    font-size: 18px;
  }
  .footer-txt h3 span {
    font-size: 28px;
  }
  .list ul li span {
    font-size: 11px;
  }
  .list ul li img {
    height: 18px;
    margin: -2px 3px 0 0;
  }
  .list ul li {
    font-size: 14px;
  }
  .list-box {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .header-txt h1 {
    font-size: 46px;
  }
  #contactform h3 {
    font-size: 22px;
  }
  .title h3 {
    font-size: 35px;
    
  }
  .title-big h3 {
    margin: 0 auto;
    max-width: 65%;
    line-height: 1;
  }
  .title-big p {
    margin: 5px auto 0 auto;
    max-width: 90%;
  }
  .footer-txt h3 {
    max-width: 90%;
    font-size: 25px;
  }
  .footer-txt h3 span {
    font-size: 32px;
  }
  .map-info {
    padding: 30px 20px;
  }
  .list ul li span {
    font-size: 10px;
  }
  .list ul li {
    font-size: 13px;
  }
  #contactform, .message-box {
    padding: 40px 10px 30px 10px;
  }
}
@media only screen and (max-width: 360px) {
  .header-txt h1 {
    font-size: 55px;
  }
  .title h3 {
    font-size: 32px;
  }
  .map-info h6, .toogle-info h5 {
    font-size: 18px;
    margin: 20px auto;
    max-width: 70%;
  }
  .map-info h3, .top-toogle h3 {
    font-size: 20px;
  }
  .map-info h3 span, .top-toogle h3 span {
    font-size: 30px;
  }
  #contactform h3 {
    font-size: 22px;
  }
  .footer-txt h3 {
    max-width: 85%;
    font-size: 25px;
  }
  .footer-txt h3 span {
    font-size: 32px;
  }
  .map-section, .rooftop-section {
    padding: 25px;
  }
  .foot-cta button {
    width: 85%;
    font-size: 30px;
  }
  .form-button {
    width: 95%;
    font-size: 32px;
  }
  .selo span {
    font-size: 25px;
  }
}
@media only screen and (max-width: 335px) {
  .map-section, .rooftop-section {
    padding: 20px;
  }
  #contactform, .message-box {
    width: 95%;
  }
  #contactform h3 {
    font-size: 20px;
  }
  .toogle-info p {
    font-size: 14px;
  }
  .title h3 {
    font-size: 30px;
  }
  .footer-txt h3 {
    max-width: 90%;
    font-size: 23px;
  }
  .footer-txt h3 span {
    font-size: 30px;
  }
  .form-check label {
    font-size: 9.5px;
  }
  .title-big h3 {
    max-width: 72%;
  }
  .flat-card {
    width: 95%;
  }
  .list ul li span {
    font-size: 9px;
  }
  .list ul li {
    font-size: 11px;
  }
  .selo {
    width: 100%;
  }
}