/* GLOBAL CHANGES */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
body{
  background-color: #f0f0f0;
}
img{
  border-radius: 5px;
}

/* HOMEPAGE STYLES */
/* CAROUSEL STYLES */
.carousel{
  width: 100%;
  height: 93vh;
  position: relative;
  overflow: hidden;
}
.slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.slide:nth-child(1){
  background-image: url('../images/carousel1.jpg');
}
.slide:nth-child(2){
  background-image: url('../images/carousel2.jpg');
}
.slide:nth-child(3){
  background-image: url('../images/carousel3.jpg');
}
.slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.slide-data h1{
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 55px;
}
.slide-data p{
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #fff;
  padding: 0 5px;
}
.slide-data button{
  font-family: "Poppins", sans-serif;
  background: none;
  outline: none;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 6px 28px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .5s;
}
.slide-data button:hover{
background-color: #fff;
color: #222629;
transition: all .5s;
}
.carousel .arrow{
  position: absolute;
  top: 50%;
  height: 100%;
  width: 10%;
  transform: translateY(-50%);
  color: transparent;
  background: none;
  outline: none;
  border: none;
}
.carousel .prev{
  left: 0;
}
.carousel .next{
  right: 0;
}
.dots{
  position: absolute;
  bottom: 2%;
  width: 100%;
  text-align: center;
}
.dots span{
width: 10px;
height: 10px;
margin: 0 2px;
border-radius: 100px;
border: 1.5px solid #fff;
display: inline-block;
transition: all 0.2s;
}
.dots span:hover{
  background-color: #fff;
  width: 13px;
  height: 13px;
  margin: 0 4px;
  transition: all 0.2s;
  cursor: pointer;
}
.dot-active{
  background-color: #fff;
  width: 13px;
  height: 13px;
}

/* OPENING PARAGRAPH STYLES */
.opening_txt{
  width: 100%;
  text-align: justify;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 15%;
  padding-right: 15%;
  text-justify:distribute;
  font-family: 'Poppins', sans-serif;
}
.divider{
  border-bottom: 1px solid rgba(34, 38, 41, 0.1);
  width: 90%;
  margin-left: 5%;
  margin-top: 1%;
  margin-bottom: 2%;
}
.opening_txt h1{
  color: #222629;
  margin-bottom: 10px;
  text-align: center;
  font-size: 32px;
}
.opening_txt p{
  color: #222629;
  margin-bottom: 15px;
  font-size: 16px;
}

/* CARDS STYLING */
.homepage{
  background-color: DarkSalmon;
  padding: 10px 0;
  margin-top: 2%;
}
.hp-container{
  max-width: 100%;
  margin: auto;
}
.info{
  display: flex;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}
.info-container{
  padding: 10px 40px 30px 40px;
  text-align: center;
  width: 33.33%;
}
.info .section1 h1, p,
.info .section2 h1, p,
.info .section3 h1, p{
color: #fff;
}
.info p{
  font-size: 14px;
  text-align: justify;
  text-justify: distribute;
}
.info h1{
  margin-bottom: 10px;
}
.info .section1 button[type=button],
.info .section2 button[type=button],
.info .section3 button[type=button]{
  border: 2.5px solid #fff;
  width: 60%;
  height: 40px;
  outline: none;
  color: #fff;
  font-size: 15px;
  background-color: transparent;
  cursor: pointer;
  border-radius: 2px;
  font-weight: bold;
  transition: all .5s;
  margin-top: 20px;
}
.info .section1 button[type=button]:hover,
.info .section2 button[type=button]:hover,
.info .section3 button[type=button]:hover{
  background-color: #fff;
  color: #222629;
  transition: all .5s;
}

/* DEVELOPMENT SECTION STYLES */
.dev-section{
    padding-top: 2%;
    padding-bottom: 2%;
}
.dev-container{
  max-width: 100%;
  margin: auto;
}
.dev-info{
  display: flex;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.dev-container .dev-title{
  width: 100%;
  margin-bottom: 0.5%;
}
.dev-section .dev-container h1{
  text-align: center;
  color: #222629;
  font-size: 32px;
}
.dev-section .dev-container h2{
  color: #222629;
}
.dev-section .dev-row1{
  padding: 20px;
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.dev-section .dev-row2{
  padding: 20px;
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.dev-section .dev-row1:hover,
.dev-section .dev-row2:hover{
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}
.sbhills-img{
  width: 50%;
  max-height: 100%;
  margin-right: 5%;
}
.sbheights-img{
  width: 50%;
  max-height: 100%;
  margin-right: 5%;
}
.dev-section .dev-container .sb-img img{
  border-radius: 5px;
}
.sb-text{
  width: 45%;
  align-items: center;
  justify-content: center;
  text-align: justify;
}
.sb-text p{
  color: #222629;
  font-size: 16px;
}
.dev-section button[type="button"]{
  border: 2.5px solid #222629;
  width: 60%;
  height: 40px;
  outline: none;
  color: #222629;
  font-size: 15px;
  background-color: transparent;
  cursor: pointer;
  border-radius: 2px;
  font-weight: bold;
  transition: all .5s;
  margin-top: 10px;
}
.dev-section button[type="button"]:hover{
  color: #fff;
  background-color: #222629;
}

/* KEEP IN TOUCH */
.kit{
  padding: 10px 0;
  padding-top: 2%;
  background-color: rgba(0, 0, 0, 0.05);
  padding-bottom: 50px;
}
.kit-container{
  max-width: 100%;
  margin: auto;
  text-align: center;
}
.kitinfo{
  display: flex;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}
.kitinfo-container{
  padding: 10px 40px 30px 40px;
  text-align: center;
  width: 33.33%;
}
.kit-container h1{
  color: #e9967a;
  font-size: 32px;
}
.kitinfo-container p{
  color: #222629;
}
.kit .kit-button{
  width: 100%;
  align-items: center;
  text-align: center;
}
.kit .kit-button button[type=button]{
  border: 2.5px solid #e9967a;
  width: 30%;
  height: 40px;
  outline: none;
  color: #e9967a;
  font-size: 15px;
  background-color: transparent;
  cursor: pointer;
  border-radius: 2px;
  font-weight: bold;
  transition: all .5s;
  margin-top: 20px;
}
.kit .kit-button button[type=button]:hover{
  background-color: #e9967a;
  color: #fff;
  transition: all .5s;
}
.kit-icon{
  font-size: 35px;
}
.kit-icon a{
  color: #e9967a;
  font-size: 35px;
  transition: all 0.5s ease;
}
.kit-icon a:hover{
  color: #222629;
  transition: all 0.5s ease;
}

/* MOBILE RESPONSIVENESS */
@media screen and (max-width:1024px){
.info-container{
  width: 100%;
}
.align{
  padding: 10%;
}
.dev-section .dev-row1,
.dev-section .dev-row2{
  width: 100%;
}
.dev-section .dev-row2{
  flex-direction: row-reverse;
}
.dev-section .dev-row2 .sb-img{
  margin: 0;
}
.dev-section .dev-row2 .sb-text{
  margin-right: 5%;
}
}

@media screen and (max-width:768px){
.info-container{
  width: 100%;
}
.kitinfo-container{
  width: 100%;
}
.kit .kit-button button[type=button]{
  width: 60%;
}
.dev-section .dev-row1,
.dev-section .dev-row2{
  width: 100%;
  flex-direction: column;
}
.sbhills-img{
  width: 98%;
  height: 100%;
  margin: 0;
}
.sbheights-img{
  width: 98%;
  height: 100%;
  margin: 0;
}
.sb-text{
  margin-left: 0;
  margin-top: 2%;
  width: 100%;
  text-align: center;
}
.slide-data h1{
  font-size: 40px;
}
.opening_txt{
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
}
.divider{
  margin-bottom: 0;
}
}

/* ABOUT ST LUCIA CSS */
/* HEADING / BANNER STYLES */
.slubanner{
width: 100%;
height: 92vh;
position: relative;
overflow: hidden;
}
.sluslides{
position: absolute;
width: 300%;
height: 100%;
top: 0;
left: 0;
transition: 2s ease;
}
.sluslide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.sluslide::before{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
}
.sluslide:nth-child(1){
background-image: url('../images/stlucia.jpg');
}
.sluslide-data{
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center;
color: #fff;
}
.sluslide-data h1{
font-family: "Poppins", sans-serif;
font-weight: bold;
letter-spacing: 2px;
font-size: 50px;
}
.sluslide-data p{
  letter-spacing: 4px;
  font-size: 17px;

}

/* ABOUT SLU CONTENT */
.aboutslu{
  width: 100%;
  text-align: justify;
}
.aboutslu .aboutslu-row{
  padding: 60px 35px;
  width: 100%;
  display: flex;
}
.aboutslu .aboutslu-row .aboutslu-txt{
  width: 100%;
}
.aboutslu .aboutslu-row .aboutslu-txt h1{
  color: #222629;
  font-size: 30px;
}
.aboutslu .aboutslu-row .aboutslu-txt p{
  color: #222629;
}
.aboutslu .aboutslu-row .aboutslu-txt p img{
  width: 40%;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}
.aboutslu .aboutslu-row .aboutslu-txt a{
  color: #e9967a;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.5s ease;
}
.aboutslu .aboutslu-row .aboutslu-txt a:hover{
  text-decoration: underline;
  color: #e0643a;
  transition: all 0.5s ease;
}

/* MOBILE RESPONSIVENESS */
@media screen and (max-width:768px){
.sluslide-data h1{
font-size: 40px;
}
.aboutslu .aboutslu-row .aboutslu-txt p img{
  display: none;
}
}

/* FOREIGN BUYERS GUIDE */
/* HEADING / BANNER STYLES */
.guide-banner{
  width: 100%;
  height: 92vh;
  position: relative;
  overflow: hidden;
}
.guide-slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.guide-slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.guide-slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.guide-slide:nth-child(1){
  background-image: url('../images/guide.jpg');
}
.guide-slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.guide-slide-data h1 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 40px;
}
.guide-slide-data p{
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 0 5px;
}

/* PDF GUIDE */
.guide-section{
  width: 100%;
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #222629;
}
.guide-container{
  width: 100%;
  margin-bottom: 3%;
}
.guide-container .guide-info{
text-align: center;
width: 100%;
background: #222629;
padding-top: 100px;
padding-bottom: 100px;
padding-left: 50px;
padding-right: 50px;
font-size: 20px;
}
.guide-container .guide-info p{
  font-size: 17px;
  font-weight: 500;
}
/* CONTENT */
.content-1{
  padding: 0 60px;
}
.content-1 hr{
  color: rgba(34, 38, 41,0.3);
  border-width: 1px;
  width: 100%;
  margin: 25px 0;
}
.content-1 h1, .content-1 h2, .content-1 h3{
  color: #222629;
}
.content-1 h2{
 text-align: center;
}
.content-1 h3{
   font-weight: normal;
   text-align: center;
}
.content-1 p{
  color: #222629;
 }
.content-1 a{
  color: #e9967a;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.5s ease;
}
.content-1 a:hover{
  text-decoration: underline;
  color: #e0643a;
  transition: all 0.5s ease;
}


/* GALLERY CSS */
/* CAROUSEL STYLES */
.gallery_banner{
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}
.gallery_slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.gallery_slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.gallery_slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.gallery_slide:nth-child(1){
  background-image: url('../images/gallery.jpg');
}
.gallery_slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.gallery_slide-data h1{
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 50px;
}

/* GALLERY STYLES */
.gallerysection{
  font-family: "Poppins", sans-serif;
  width: 100%;
  padding: 20px 35px;
  text-align: center;
}
.gallerysection h1{
  color: #222629;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 10px;
}
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
}
.img-container{
  background-color: #f0f0f0;
  overflow: hidden;
}
.img-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .5s;
}
.img-container img:hover{
  transform: scale(1.1);
  filter: opacity(80%);
  transition: transform .5s;
}
.max{
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.5s;
}
.max.open{
  opacity: 1;
  pointer-events: all;
  transition: all 0.5s;
  z-index: 9999;
}
.max p{
  color: #fff;
  font-size: 14px;
  position: absolute;
  bottom: 4%;
  left: 50%;
  filter: opacity(90%);
  transform: translate(-50%, -5%);
  z-index: 9999;
}
.full-img{
  position: absolute;
  height: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.3s;
}
.full-img.open{
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s;
}


@media screen and (max-width:768px){
.max{
display: none;
}
.max.open{
display: none;
}
.full-img{
display:none;
}
.full-img.open{
display: none;
}
.gallery_slide-data h1{
  font-size: 40px;
}
}
@media screen and (max-width:1024px){
  .full-img{
    height: 40%;
  }
  .full-img.open{
    transform: translate(-50%, -50%) scale(1.8);
  }
}

/* FAQ SECTION */
/* HEADING / BANNER STYLES */
.faq_banner{
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}
.faq_slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.faq_slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.faq_slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.faq_slide:nth-child(1){
  background-image: url('../images/faq.jpg');
}
.faq_slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.faq_slide-data h1{
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 50px;
}

/* FAQ STYLES */
.faq-container{
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 30px;
}
.faq-dropdown{
  position: relative;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid rgba(34, 38, 41, 0.3);
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  margin: 10px 0;
  align-items: center;
}
.last-child{
  border-bottom: 0px;
}
.faq-dropdown:hover .faq-icons{
  background: url(../icons/plus-wht.png) no-repeat 8px 7px #e9967a;
  transition: all 0.5s ease;
}
.faq-dropdown .faq-icons{
  position: absolute;
  right: 0;
  padding: 3px 0 0px 0;
  margin-bottom: 20px;
  width: 30px;
  height: 30px;
  background: url(../icons/plus.png) no-repeat 8px 7px;
  border-radius: 50%;
  float: right;
  transition: all 0.5s ease;
}
.faq-dropdown .faq-icons:hover{
  background: url(../icons/plus-wht.png) no-repeat 8px 7px #e9967a;
  transition: all 0.5s ease;
}
.faq-dropdown h4{
  width: 90%;
  font-size: 16px;
  color: #222629;
  margin: 0;
  padding: 3px 0 20px 0;
  transition: all 0.5s ease;
}
.faq-dropdown h4:hover{
  color: #e9967a;
  transition: all 0.5s ease;
}
.collapse{
  padding: 0 15px;
  border-left: 6px solid #e9967a;
  margin-left: 25px;
  font-size: 14px;
  text-align: justify;
  text-justify: distribute;
  overflow: hidden;
  max-height: 0;
  transition: all .5s ease;
}
.collapse p{
  color: #222629;
}
.collapse p a{
  text-decoration: none;
  font-weight: bold;
  color: #e9967a;
  transition: all 0.4s ease;
}
.collapse p a:hover{
  text-decoration: underline;
  color: #e0643a;
  transition: all 0.4s ease;
}

/* DROPDOWN ACTIVE */
.collapse-active .faq-icons{
  background: url(../icons/minus-wht.png) no-repeat 8px 7px #e9967a;
  transition: all 0.5s ease;
}
.collapse-active:hover .faq-icons{
  background: url(../icons/minus-wht.png) no-repeat 8px 7px #e9967a;
  transition: all 0.5s ease;
}
.collapse-active .faq-icons:hover{
  background: url(../icons/minus-wht.png) no-repeat 8px 7px #e9967a;
  transition: all 0.5s ease;
}
.collapse-active h4{
  color: #e9967a;
  margin-left: 12px;
}

/* MOBILE RESPONSIVENESS */
@media screen and (max-width:768px){
  .faq_slide-data h1{
    font-size: 40px;
  }
}

/* DEVELOPMENTS PAGE */
/* HEADING / BANNER STYLES */
.home_dev_banner{
  width: 100%;
  height: 62vh;
  position: relative;
  overflow: hidden;
}
.home_dev_slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.home_dev_slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.home_dev_slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.home_dev_slide:nth-child(1){
  background-image: url('../images/developments.jpg');
}
.home_dev_slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.home_dev_slide-data h1{
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 50px;
}

/* DEVELOPMENT SECTION STYLES */
.home-dev-section{
    padding-top: 2%;
    padding-bottom: 2%;
}
.home-dev-container{
  max-width: 100%;
  margin: auto;
}
.home-dev-info{
  display: flex;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.home-dev-container .home-dev-title{
  width: 100%;
  margin-bottom: 0.5%;
}
.home-dev-section .home-dev-container h1{
  text-align: center;
  color: #222629;
  font-size: 32px;
}
.home-dev-section .home-dev-container h2{
  color: #222629;
}
.home-dev-section .home-dev-row1{
  padding: 20px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.home-dev-section .home-dev-row2{
  padding: 20px;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.home-dev-section .home-dev-row1:hover,
.home-dev-section .home-dev-row2:hover{
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}
.home-sbhills-img{
  width: 55%;
  height: 100%;
  border-radius: 4px;
}
.home-sbheights-img{
  width: 55%;
  height: 100%;
  border-radius: 4px;
}
.home-dev-info .sb-img img{
  border-radius: 5px;
}
.home-sb-text{
  width: 45%;
  align-items: center;
  justify-content: center;
}
.home-sb-text p{
  color: #222629;
  font-size: 16px;
}
.home-dev-section button[type="button"]{
  border: 2.5px solid #222629;
  width: 60%;
  height: 40px;
  outline: none;
  color: #222629;
  font-size: 15px;
  background-color: transparent;
  cursor: pointer;
  border-radius: 2px;
  font-weight: bold;
  transition: all .5s;
}
.home-dev-section button[type="button"]:hover{
  color: #fff;
  background-color: #222629;
}

/* MOBILE RESPONSIVENESS */
@media screen and (max-width:1024px){
.home-dev-section .home-dev-row1,
.home-dev-section .home-dev-row2{
  width: 100%;
}
.home-dev-section .home-dev-row2{
  flex-direction: row-reverse;
}
}

@media screen and (max-width:768px){
.home-dev-section .home-dev-row1,
.home-dev-section .home-dev-row2{
  width: 100%;
  flex-direction: column;
}
.home-sbhills-img{
  width: 98%;
  height: 100%;
}
.home-sbheights-img{
  width: 98%;
  height: 100%;
}
.home-sb-text{
  margin-top: 2%;
  width: 100%;
}
}

/* CONTACT  PAGE */
/* HEADING / BANNER STYLES */
.contact_banner{
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}
.contact_slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.contact_slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.contact_slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.contact_slide:nth-child(1){
  background-image: url('../images/contact.jpg');
}
.contact_slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.contact_slide-data h1{
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 50px;
}

/* INFO BUTTONS */
.contact{
  position: relative;
  min-height: 100vh;
  padding: 50px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(0);
}
 .contact-container{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
 }
 .contact-container .contact-info{
   width: 50%;
   display: flex;
   flex-direction: column;
 }
 .contact-container .contact-info .contact-box{
   position: relative;
   padding: 20px 0;
   display: flex;
 }
 .contact-container .contact-info .contact-box .contact-icon a{
   text-decoration: none;
 }
 .contact-container .contact-info .contact-box .contact-icon i{
   min-width: 60px;
   height: 60px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   border: 2px solid #222629;
   color: #222629;
   background: none;
   font-size: 22px;
 }
 .contact-container .contact-info .contact-box .contact-icon i:hover{
   color: #fff;
   border: none;
   background: #222629;
 }
 .contact-container .contact-info .contact-box .contact-text{
   display: flex;
   margin-left: 20px;
   font-size: 16px;
   color: #222629;
   flex-direction: column;
   font-weight: 300;
 }
.contact-container .contact-info .contact-box .contact-text h3{
  font-weight: 500;
  color: ;
}
.contact-container .contact-info .contact-box .contact-text p{
  color: #222629;
}

/* FORM STYLING */
.contact-form{
  width: 44%;
  padding: 40px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  border: 0.1px solid #dbdbdb;
  box-shadow: 0px 4px 34px -12px #B2B2B2;
}
.contact-form h1{
  color: #222629;
}
.contact-form .input-box{
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.contact-form .input-box input,
.contact-form .input-box textarea,
.contact-form .input-box select{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid #dbdbdb;
  border-radius: 5px;
  color: rgba(1, 1, 1, 0.7);
  outline: none;
  resize: none;
}
.contact-form .input-box select:disabled{
  color: rgba(1, 1, 1, 0.7);
  font-size: 14px;
}
.contact-form .input-box input:focus,
.contact-form .input-box textarea:focus{
    border-bottom: 1px solid #e9967a;
}
.contact-form .input-box span{
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 14px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: rgba(1, 1, 1, 0.7);
}
.contact-form .input-box input:focus ~ span,
.contact-form .input-box input:valid ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box textarea:valid ~ span{
  color: #e9967a;
  font-size: 13px;
  transform: translateY(-20px);
}
.contact-form .input-box input[type="submit"]{
  width: 90%;
  background: #222629;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  outline: none;
  color: #fff;
  font-size: 16px;
  transition: all .3s;
}
.contact-form .input-box input[type="submit"]:hover{
  background: #e9967a;
  color: #fff;
  transform: scale(1.03);
}
.form-valid p{
  color: green;
}
.form-valid{
  padding-top: 3%;
}
/* GOOGLE MAPS */
.map-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  align-items: center;
  padding: 30px 30px;
  padding-bottom: 40px;
  background-color: rgba(34, 38, 41, 0.05);
}
.map-header{
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  color: #222629;
}
#map{
  width: 90%;
  height: 75vh;
  border-radius: 3px;
}

/* MOBILE RESPONSIVENESS */
@media screen and (max-width: 991px){
  .contact{
    padding: 30px;
  }
  .contact-container{
    flex-direction: column;
  }
  .contact-container .contact-info{
    width: 100%;
    margin-bottom: 40px;
  }
  .contact-form{
    width: calc(100% + 60px);
    border-radius: 0px;
    box-shadow: none;
  }
  .contact-form .input-box input[type="submit"]{
    width: 90%;
  }
  .contact-form .input-box input[type="submit"]:hover{
    background: #e9967a;
    color: #fff;
    transform: scale(1);
}
.map-container{
  padding: 0px;
  background-color: transparent;
}
#map{
  width: 100%;
}
}
@media screen and (max-width:768px){
  .contact_slide-data h1{
    font-size: 40px;
  }
}

/* ABOUT PAGE */
/* HEADING / BANNER STYLES */
.about_banner{
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}
.about_slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.about_slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.about_slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.about_slide:nth-child(1){
  background-image: url('../images/golf5.jpg');
}
.about_slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.about_slide-data h1{
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 50px;
}

/* ABOUT SECTION INFO */
.about-section{
  width: 100%;
}
.about-section .about-us-opening{
  width: 100%;
  text-align: justify;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 15%;
  padding-right: 15%;
  text-justify:distribute;
}
.about-section .about-us-opening h1{
    color: #222629;
    margin-bottom: 10px;
    text-align: center;
    font-size: 32px;
  }
.about-section .about-us-opening p{
    color: #222629;
    margin-bottom: 15px;
    font-size: 17px;
  }
  .about-section .history-row{
    width: 100%;
    padding: 60px 35px;
    display: flex;
    background-color: rgba(233,150,122,0.1) ;
  }
  .about-section .history-row .history-img{
    width: 40%;
    margin-right: 5%;
  }
  .about-section .history-row .history-img img{
    filter: opacity(80%);
  }
  .about-section .history-row .history-txt{
    width: 55%;
    text-align: justify;
  }
  .about-section .history-row .history-txt p{
    color: #222629;
    font-size: 17px;
  }
  .about-section .history-row .history-txt p a{
    color: #e9967a;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
  }
  .about-section .history-row .history-txt p a:hover{
    text-decoration: underline;
    transition: all 0.5s ease;
    color: #e0643a;
  }
  .about-section .history-row .history-txt h1{
    color: #222629;
    margin-bottom: 5%;
    font-size: 30px;
  }
  .about-section .about-location-row{
    width: 100%;
    padding: 60px 35px;
    display: flex;
    flex-direction: row-reverse;
  }
  .about-section .about-location-row .about-location-img{
    width: 40%;
  }
  .about-section .about-location-row .about-location-img img{
    filter: opacity(80%);
  }
  .about-section .about-location-row .about-location-txt{
    width: 55%;
    margin-right: 5%;
    text-align: justify;
  }
  .about-section .about-location-row .about-location-txt h1{
    color: #222629;
    margin-bottom: 5%;
    font-size: 30px;
  }
  .about-section .about-location-row .about-location-txt p{
    color: #222629;
    font-size: 17px;
  }
  .about-section .about-section-end{
    background-color: rgba(233,150,122,0.1) ;
    width: 100%;
    padding: 90px 0;
    text-align: center;
  }
  .about-section .about-section-end p{
    font-size: 30px;
    color: #222629;
    margin-bottom: 1%;
    letter-spacing: 1px;
    font-weight: bold;
  }
  .about-section .about-section-end a{
    text-decoration: none;
    font-weight: bold;
    color: #e9967a;
    transition: all 0.5s ease;
  }
  .about-section .about-section-end a:hover{
    text-decoration: underline;
    color: #e0643a;
    transition: all 0.5s ease;
  }

/* MOBILE RESPONSIVENESS */
@media screen and (max-width: 1024px){
.about-section .about-us-opening{
  padding: 60px 35px;
}
.about-section .about-location-row{
  flex-direction: column-reverse;
}
.about-section .history-row{
  flex-direction: column-reverse;
  }
.about-section .about-location-row .about-location-txt{
  width: 100%;
  margin-bottom: 3%;
}
.about-section .about-location-row .about-location-txt h1{
  text-align: center;
}
.about-section .about-location-row .about-location-img{
  width: 100%;
  }
  .about-section .history-row .history-txt{
  width: 100%;
  margin-bottom: 3%;
  }
  .about-section .history-row .history-txt h1{
  text-align: center;
  }
  .about-section .history-row .history-img{
  width: 100%;
  }
}
@media screen and (max-width:768px){
  .about_slide-data h1{
    font-size: 40px;
  }
  .about-section .about-location-row .about-location-txt{
    width: 100%;
  }
  .about-section .about-location-row .about-location-txt h1{
    text-align: center;
  }
  .about-section .about-location-row .about-location-img{
    display: none;
    }
    .about-section .history-row .history-txt{
      width: 100%;
    }
    .about-section .history-row .history-txt h1{
      text-align: center;
    }
    .about-section .history-row .history-img{
      display: none;
    }
}

/* DENNIS NARDONI PAGE */
/* BANNER */
.nardoni_banner{
  width: 100%;
  height: 10vh;
  position: relative;
  overflow: hidden;
}
.nardoni_slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.nardoni_slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.nardoni_slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 38, 41, 1);
}
.nardoni_slide:nth-child(1){
  background-image: url('../images/team.jpg');
}
.nardoni_slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.nardoni_slide-data h1{
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 50px;
}


/* DENNIS NARDONI INFO */
.nardoni-section{
  width: 100%;
}
.nardoni-section .nardoni-row{
  width: 100%;
  padding: 0px 35px 60px 35px;
  display: flex;
}
.nardoni-section .nardoni-headings{
  width: 100%;
  margin-bottom: 2%;
  padding: 50px 35px 0 35px;
}
.nardoni-section .nardoni-row .nardoni-txt{
  width: 50%;
  margin-right: 5%;
  text-align: justify;
}
.nardoni-section .nardoni-headings h1{
  text-transform: capitalize;
  color: #222629;
  font-size: 30px;
}
.nardoni-section .nardoni-headings h2{
  text-transform: uppercase;
  color: #222629;
  font-size: 14px;
  font-weight: 800;
}
.nardoni-section .nardoni-headings h3{
  display: none;
  color: #222629;
  font-size: 14px;
  font-weight: 600;
}
.nardoni-section .nardoni-row .nardoni-txt p{
  color: #222629;
}
.nardoni-section .nardoni-row .nardoni-img{
  width: 45%;
  text-align: center;
  align-items: center;
  align-content: center;
}
.nardoni-section .nardoni-row .nardoni-img .img2{
  display: none;
}
.nardoni-section .nardoni-row .nardoni-img img{
  filter: opacity(90%);
  border-radius: 5px;
}

/* RESPONSIVENESS */
@media screen and (max-width: 768px){
  .nardoni-section .nardoni-row{
    flex-direction: column-reverse;
  }
  .nardoni-section .nardoni-row .nardoni-txt{
    width: 100%;
    }
  .nardoni-section .nardoni-row .nardoni-img{
    width: 100%;
    margin-bottom: 5%;
  }
  .nardoni-section .nardoni-row .nardoni-img .img1{
    display: none;
  }
  .nardoni-section .nardoni-row .nardoni-img .img2{
    display: flex;
  }
}
@media screen and (max-width: 768px){
}


/* SB HILLS & HEIGHTS */
/* HEADING / BANNER STYLES */
.sb_banner{
  width: 100%;
  height: 10vh;
  position: relative;
  overflow: hidden;
}
.sb_slides{
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 2s ease;
}
.sb_slide{
width: 33.33%;
height: 100%;
position: relative;
float: left;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.sb_slide::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 38, 41, 1);
}
.sb_slide:nth-child(1){
  background-image: url();
}
.sb_slide-data{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  padding-left: 15%;
  padding-right: 15%;
}
.sb_slide-data h1{
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
  font-size: 50px;
}
.sb_slide-data p{
  font-size: 16px;
  letter-spacing: 1px;
}

/* STYLES */
.sb-section{
  width: 100%;
  padding: 70px 40px 0 40px;
}
.sb-section hr{
  color: #222629;
  filter: opacity(20%);
}
.sb-section .sb-row{
  width: 100%;
  padding: 0px 35px 60px 35px;
  display: flex;
}
.sb-section .sb-row .sb-txt{
  width: 50%;
  text-align: justify;
}
.sb-section .sb-row .sb-txt p{
  color: #222629;
}
.sb-section .sb-row .sb-txt h1{
  color: #222629;
  text-align: ;
}
.sb-section .sb-row .sb-img{
  width: 45%;
  margin-right: 5%;
  text-align: center;
  align-items: center;
  align-content: center;
}
.sb-section .sb-row .sb-img img{
  filter: opacity(90%);
  border-radius: 15px;
}

/* RESPONSIVENESS */
@media screen and (max-width: 1024px){
  .sb-section .sb-row{
    flex-direction: column-reverse;
  }
  .sb-section .sb-row .sb-txt{
    width: 100%;
    }
  .sb-section .sb-row .sb-img{
    width: 100%;
    margin-top: 5%;
  }
  .sb-section .sb-row .sb-txt h1{
    text-align: center;
  }
}
@media screen and (max-width: 768px){
  .sb-section .sb-row .sb-img .sb-img1{
    display: none;
  }
}

/* INTERACTIVE MAP */
/* change color on map hover */
.lot{
  transition: all 0.4s ease;
}
.lot:hover {
  filter: brightness(130%);
  cursor: pointer;
  transition: all 0.4s ease;
}
/* interactive map section styles */
.interactive-map{
  width: 100%;
  max-height: 100%;
  display: flex;
  padding: 40px 30px;
}
.interactive-map .lot-info{
  width: 47%;
  margin-right: 3%;
  position: relative;
}
.interactive-map .svg-map{
  width: 50%;
}
/* div background when lot on map is clicked */
.interactive-map .lot-info .lot-content-all{
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  border-bottom: 5px solid #e9967a;
  background-color: #e4e8eb;
  border-radius: 5px;
}
.interactive-map .lot-info .lot-content{
  display: none;
  width: 90%;
}
/* info popup close button */
.interactive-map .lot-info .lot-content-all .hide{
  position: absolute;
  top: 4%;
  right: 3%;
  background-color: #e9967a;
  color: #fff;
  border-radius: 4px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}
/* content displayed when lot is clicked */
.interactive-map .lot-info .lot-content h1{
  text-transform: uppercase;
  color: #222629;
  font-size:35px;
  font-weight: 1000;
  margin-bottom: 1%;
}
.interactive-map .lot-info .lot-content h4{
  text-transform: uppercase;
  color: #222629;
  font-size: 15px;
  font-weight: 800;
}
/* colored lot status on popup */
.interactive-map .lot-info .lot-content h3{
  font-size: 22px;
  text-transform: uppercase;
  color: #222629;
  font-weight: 900;
}
.interactive-map .lot-info .lot-content h3 .sold{
  color: #ca5659;
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 900;
}
.interactive-map .lot-info .lot-content h4{
  font-size: 18px;
  color: #222629;
}
.interactive-map .lot-info .lot-content h4 .available{
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
}
.interactive-map .lot-info .lot-content .lot-size{
  font-size: 18px;
  font-weight: 500;
}
.interactive-map .lot-info .lot-content .lot-price{
  font-size: 22px;
  color: #ca5659;
}

/* lot default info styles */
.interactive-map .lot-info .default-info{
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.interactive-map .lot-info .default-info h1{
  font-size: 32px;
  color: #222629;
}
.interactive-map .lot-info .default-info p{
  font-size: 16px;
  color: #222629;
}
.interactive-map .lot-info .default-info .tip{
  filter: opacity(50%);
}
/* MAP KEY */
.map-key{width: 100%; display: flex; float: right; justify-content: flex-end;}
.map-key .sold-key{background-color: #ca5659; width: 25px; height: 25px; border-radius: 4px; margin-right: 3px;}
.map-key .available-key{background-color: #D0E2B0; width: 25px; height: 25px; border-radius: 4px; margin-right: 3px;}
.map-key p{color: #222629; margin-right: 8px; font-weight: 500;}

/* RESPONSIVENESSS */
@media screen and (max-width: 1024px){
  .interactive-map .lot-info{
    width: 100%;
  }
  .interactive-map .svg-map{
    width: 100%;
    margin-bottom: 3%;
  }
  .interactive-map .lot-info .lot-content-all{
    height: 100%;
  }
  .interactive-map .lot-info .lot-content h1{
    font-size:30px;
  }
  .interactive-map .lot-info .lot-content h4{
    font-size: 15px;
  }
  .interactive-map .lot-info .lot-content h3{
    font-size: 18px;
  }
  .interactive-map .lot-info .lot-content h3 .sold{
    font-size: 18px;
  }
  .interactive-map .lot-info .lot-content h4{
    font-size: 16px;
  }
  .interactive-map .lot-info .lot-content h4 .available{
    font-size: 16px;
  }
  .interactive-map .lot-info .lot-content .lot-size{
    font-size: 16px;
  }
  .interactive-map .lot-info .lot-content .lot-price{
    font-size: 18px;
  }

}
@media screen and (max-width: 768px){
  .interactive-map{
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
  .interactive-map .lot-info .default-info{
    background-color: #e4e8eb;
    min-height: 60vh;
  }
  .interactive-map .lot-info .lot-content-all{
    height: 60vh;
  }
}

/* SITEMAP */
.sitemap{
  padding: 140px 80px;
}
.sitemap .sitemap-container{
  width: 100%;
}
.sitemap .sitemap-container .sitemap-box{
  margin-bottom: 20px;
}
.sitemap .sitemap-container .sitemap-box h3{
  font-size: 20px;
  color: #222629;
}
.sitemap .sitemap-container .sitemap-box ul li{
  list-style: none;
}
.sitemap .sitemap-container .sitemap-box ul li a{
  text-decoration: none;
  color: #e9967a;
  font-weight: 500;
}
.sitemap .sitemap-container .sitemap-box ul li a:hover{
  text-decoration: underline;
  color: #e0643a;
}
@media screen and (max-width:768px){
  .sitemap .sitemap-container .sitemap-box{
    text-align: center;
  }
}


/* FOOTER STYLING */
.footer-container{
  max-width: 1170px;
  margin: auto;
}
.footer-container ul{
  list-style: none;
}
.footer{
  background-color: #222629;
  padding: 70px 0;
}
.row{
  display: flex;
  flex-wrap: wrap;
}
.footer-col{
  width: 25%;
  padding: 0 15px;
}
.footer-col h3{
  font-size: 23px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 35px;
  position: relative;
}
.footer-col h3::before{
  content: ' ';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e9967a;
  height: 2px;
  box-sizing: border-box;
  width: 80px;
}
.footer-col ul li{
  margin-bottom: 6px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #e9967a;
  padding-left: 8px;
}
.footer-col .social-links a .fab{
  font-size: 25px;
  margin-bottom: 20px;
}
.footer-col .social-links .fa-instagram{
  margin-right: 6px;
}
.footer-col .social-links .hig:hover{
  color: #bc2a8d;
}
.footer-col .social-links .fa-facebook-f{
  margin-right: 9px;
}
.footer-col .social-links .hfb:hover{
  color: #3b5998;
}
.footer-col .social-links .fa-twitter{
  margin-right: 0px;
}
.footer-col .social-links .htt:hover{
  color: #00ACEE;
}
.footer-col .social-links a{
  font-size: 16px;
  display: block;
  text-decoration: none;
  color: #bbbbbb;
  border-radius: 50%;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  padding-left: 8px;
}
.footer-col form input[type="submit"]{
  width: 100%;
  background: #bbbbbb;
  border: none;
  cursor: pointer;
  height: 45px;
  outline: none;
  color: #222629;
  font-size: 15px;
  font-weight: bold;
  transition: all .4s ease;
  text-transform: uppercase;
  margin-top: 11px;
}
.footer-col form input[type="submit"]:hover{
  background: #fff;
  color: #e9967a;
  font-size: 16px;
  transition: all .4s ease;
}
.footer-col form input[type="email"]{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid #bbbbbb;
  color: #fff;
  outline: none;
  resize: none;
  transition: all 0.5s ease;
}
.footer-col form input[type="email"]:focus{
  color: #e9967a;
  border-bottom: 1px solid #e9967a;
  transition: all 0.5s ease;
}
.footer-col form input[type="email"]::-webkit-input-placeholder{
  color: #bbbbbb;
  font-size: 15px;
  transition: all 0.4s;
}
.footer-col form input[type="email"]:focus::-webkit-input-placeholder{
  color: #e9967a;
  font-size: 13px;
  transition: all 0.4s;
}

 /* RESPONSIVENESS STYLES */
@media screen and (max-width: 768px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
  }
  .footer-col ul li a:hover{
    color: #e9967a;
    padding-left: 0;
  }
  .footer-col form input[type="submit"]{
    width: 70%;
  }
  .footer-col form input[type="email"]{
    width: 70%;
  }
  .footer-col .social-links a .fab{
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px){
  .footer-col{
    text-align: center;
    width: 100%;
    align-items: center;
  }
  .footer-col ul li a:hover{
    color: #e9967a;
    padding-left: 0;
  }
  .footer-col h3::before{
    left: 50%;
    transform: translate(-40px, 0);
  }
  .footer-col .social-links a .fab{
    display: block;
  }
  .footer-col .social-links a{
    margin-right: 15px;
  }
  .footer-col .social-links{
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
