/* -------------------*/
/* BASIC SETUP */
/* -------------------*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555;
    /* font-family: 'Lato', 'Arial', sans-serif; */
    font-family: 'Cardo', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}
/* -------------------*/
/* RUSABLE COMPONENTS */
/* -------------------*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    background-color: #fff;
    padding: 50px 0;
}

.alternate-section-background {
    background-color: #f4f4f4
}

.box {
    padding: 1%;
}

/* -------------------  */
/* Headings   */
/* -------------------- */

h1,
h2,
h3 {  
    font-weight: 300;
    text-transform: uppercase;
    
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: rgba(129, 129, 129, 0.81);
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px; 
}

h2 {
    font-size: 130%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px; 
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #555;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

/* PARAGRAPHS   */

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%; /* centers the text */
    margin-bottom: 30px;
    text-align: center;
}

.intro-box {
    font-size: 90%;
    width: 90%;
    margin-left: 5%;
    box-shadow: 0 4px 4px #efefef;
    line-height: 145%
} 

.intro-box p{
    padding: 15px;
    margin-bottom: 10px;
}

/* ICONS */
.icon-big {
    font-size: 200%;
    display: block;
    stroke-width: 16px;
}

/* -------------------  */
/* LINKS   */
/* -------------------- */

a:link,
a:visited {
    text-decoration: none;
    padding-bottom: 1px;
}

a:hover,
a:active {
    color: #555;
    border-bottom: 1px solid transparent;
}

.text-link {
    color: #e68799;
}

.text-link:hover, 
.text-link:active {
    color: #e68799;
    border-bottom: 1px solid #e68799;
}
/* -------------------  */
/* BUTTONS   */
/* -------------------- */
.btn {
    margin: 5px 0px;
}

.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 5px 15px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 20px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color: #8d8782; 
    border: 1px solid #8d8782;
    color: #fff;
    margin-right: 10px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #555;
    color: #505050; 
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #8d8782;
}

.btn-full:hover,
.btn-full:active {
    background-color: #555;  
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #8d8782;
    color: #fff;
}

/* -------------------  */
/* HEADER   */
/* -------------------- */
.navbar .navbar-nav>li>a {
    text-shadow: none;
    color: #000000;
    border-bottom:5px solid transparent;
}

/* hide close when burger shown */
.navbar-toggler.collapsed .close-icon {
    display: none;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    display: inline;
}

.card {
    border: none;
}

.logo {
    height: 120px;
    width: auto;
    margin-top: 10px;
    border-bottom: 1px solid transparent;
}

/* -------------------  */
/* MAIN NAVIGATION      */
/* -------------------- */
.dropdown-menu > a {
    color:  rgba(#000, .55) !important;
}

/* -------------------  */
/* DROPDOWN NAVIGATION   */
/* -------------------- */

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-top: 10px;
    z-index: 1;
}

/* -------------------  */
/* HEADER IMG SHOWCASE   */
/* -------------------- */
.header-images {
    width: 100%;
}

.header-img {
    width: 100%;
}

.section-header-pictures {
    padding: 0;
}

.header-img-showcase {
    list-style: none;
    width: 100%;
}

.header-img-showcase li {
    display: block;
    float: left;
    width: 33%;
    padding-left: 10px;
    padding-bottom: 25px
}

/* -------------------  */
/* CAROUSEL   */
/* -------------------- */
/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
}

/* Declare heights because of positioning of img element */
.carousel-item {
    background-color: #777;
    height: 600px;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    max-width: none;
}

.carousel-item > .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

/* -------------------  */
/* INTRO   */
/* -------------------- */
.house-img {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #fff;
}

.house-img img {
    width: 100%;
    height: auto;
}

.filler-house-image { margin-bottom: 5px; }

.filler-house-image img {
    width: 100%;
    height: auto;
}

.award-photo {
    /* width: 25%; */
    /* height: auto; */
    margin: 10px;
}

/* -------------------  */
/* MODAL IMAGES   */
/* -------------------- */
.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* https://www.w3schools.com/howto/howto_css_modal_images.asp */

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 25px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: transparent;
  margin: auto;
  padding: 0;
  width: 85%;
  max-width: 1200px;
  border: none;
}

.modal-slides {
    text-align: center;
}

.landscape-image {
    width: 90vw;
    max-width: 900px;
}

.portrait-image {
    height: 98vh;
    max-height: 600px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  z-index: 5;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
  z-index: 5;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white !important;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* -------------------  */
/* TESTIMONIALS - SWIPER   */
/* -------------------- */
.quotes-carousel {
    height: calc(100vh - 20em);
}

.quotes-carousel-item {
    background-color: transparent;
    text-align: center;
}

.quotes-carousel-indicators {
    bottom: -50px;
}

.quotes-carousel-indicators > li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
}

.section-testimonials-swiping {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url(../img/home/banner/testimonials_swiping.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 30px;
    color: #fff;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px;
}

blockquote:before {
    content: "\201C";
    font-size: 300%;
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
}

cite {
    font-size: 90%;
    margin-top: 25px;
    display: block;
}

/* -------------------  */
/* DETAILS   */
/* -------------------- */
.homepage-contact-details {
    padding: 20px 0px;
}

.award-image {
    margin-bottom: 5px;
}

.award-image img {
    height: auto;
    width: 60%;
    
}

/* -------------------  */
/* CONTACT FORM   */
/* -------------------- */
.contact-form {
    width: 100%;
    margin: 0 auto;
}

input[type=text],
input[type=email],
input[type=date],
input[type=tel],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

textarea {
    height: 80px;
}

*:focus {
    outline: none;
}

/* -------------------  */
/* FOOTER   */
/* -------------------- */
footer {
    background-color: #333;
    padding: 20px;
    font-size: 80%;
}

.footer-docs {
    font-size: 110%;
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: right;
}

.footer-docs li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-docs li a:link,
.footer-docs li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none; /*removes underlining */
    border: 0; /*remve border from links*/
    color: #888;
    transition: color 0.2s;
}

.footer-docs li a:hover,
.footer-docs li a:active {
    color: #ddd;
}

.social-links li a:link,
.social-links li a:visited {
    font-size: 190%;
}

.icon-facebook,
.icon-instagram {
    transition: color 0.2s;
}

.icon-facebook:hover {
    color: #3b5998;
}

.icon-instagram:hover {
    color: #3b5998;
}

footer p {
    color: #888;
    font-size: 90%;
    text-align: center;
    margin-top: 30px;
}

/* -------------------  */
/* ANIMATIONS  */
/* -------------------- */
.js--wp-1 {
    opacity: 0;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.js--wp-2
.js--wp-4, 
.js--wp-5, 
.js--wp-6 {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.js--wp-3 {
    opacity: 0;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.js--wp-3.animated {
    opacity: 1;
}

.js--wp-1.animated,
.js--wp-2.animated, 
.js--wp-4.animated, 
.js--wp-5.animated, 
.js--wp-6.animated {
    opacity: 1;
}











