/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    scroll-behavior: smooth;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Set every element's box-sizing to border-box */
* {
    box-sizing: border-box;
    transition-property: all;
    transition-duration: 0.6s;
    transition-timing-function: ease;
}

html, body {
    height: auto;
    font-family: 'Play', sans-serif;
	  width: 100%;
	  margin: 0 auto;
}

h1, h2, h3, h4, h5 {
    font-family: 'Play', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    border-radius: 10%;
    background: #333333;
    padding: 0.5rem;
    border: 1px solid gray;
    cursor: pointer;
    opacity: 100%;
    transition: opacity 0.5s;
}

.hidden {
    opacity: 0%;
}

.back-to-top-icon {
    width: 1rem;
    height: 1rem;
    color: #eba49d;
}

.back-to-top:hover {
    opacity: 60%;
}

header {
    height: 20%;
    width: 100%;
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    background-color: transparent;
}

header a {
    margin: 0 15%;
    width: auto;
}

header span {
  display: none;
}

.nav-logo {
  margin-left: 17vw;
  width: 10vw;
}

.navbar-fixed-top {
    display: flex;
    width: 120%;
}

.closebtn {
  display: none;
}

.overlay-content {
  display: flex;
  width: 100%;
  flex-direction: row;
}

ul {
    align-items: center;
    height: 100%;
}

li {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.overlay-content li:nth-child(2) {
  text-decoration: underline;
}

a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #333333;
    font-size: 1vw;
    align-items: center;
    width: 100%;
}

a:hover {
    color: #eba49d;
}

.hamburger {
  display: none;
}

main {
    height: auto;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}

.mySlides {
    display: none;
}

.mySlides img {
    vertical-align: middle;
    max-width: 60%;
    margin-left: 20%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.mySlides:focus {
    visibility: visible;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  background-color: #f1f1f1;
  color: #333333;
  opacity: 30%;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  /* border-radius: 0 3px 3px 0; */
  /* border: 0.5px solid gray; */
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 20%;
  border-radius: 0 3px 3px 0;
}

.prev {
    left: 20%;
    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: #d9d9d9;
  color: #333333;
  opacity: 50%;
}

/* Caption text */
/* .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
} */

/* Number text (1/4 etc) */
/* .numbertext {
  color: #333333;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  margin-left: 20%;
} */

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 2% 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

.properties-text {
    height: auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    margin-top: 0%;
    margin-bottom: 4%;
    text-align: center;
    font-size: x-large;
    margin-left: 10%;
    line-height: 30px;
}

.properties-text h1 {
    font-size: xx-large;
    margin-top: 20%;
}

.properties-text p {
    line-height: 200%;
}

.properties-text a {
    display: inline;
    font-size: 1.6vw;
}   

.properties-text img {
  margin-top: 1%;
  margin-right: 2%;
  height: 100%;
}
  
  /* The Modal (background) */
  .modal {
    position: fixed;
    z-index: 1;
    /* padding-top: 100px; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: black;
    margin: auto;
    padding-top: 1.5%;
    width: 100%;
    max-width: 1000px;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .previous,
  .nextt {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    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 */
  .nextt {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .previous:hover,
  .nextt:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  /* .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  } */

footer {
    background-color: #333333;
    color: #d9d9d9;
    text-align: center;
    width: 100%;
    height: 100%;
    bottom: 0px;
}

span {
    color: #d9d9d9;
    font-size: medium;
    width: auto;
    display: flex;
    justify-content: center;
}

span a {
    color: #d9d9d9;
    font-size: medium;
    display: inline;
}

.social {
    display: flex;
    justify-content: center;
    height: auto;
}

.social a {
    display: flex;
    width: 3%;
    margin-left: 1%;
    margin-right: 1%;
    height: 50px;
}

.fa {
    margin: 0;
    font-size: 30px;
    text-decoration: none;
  }
  
  .fa:hover {
      opacity: 0.7;
  }
  
  .fa-facebook {
    color: #eba49d;
  }
  
  .fa-google {
    color: #eba49d;
  }
  
  .fa-youtube {
    color: #eba49d;
  }
  
  .fa-instagram {
    color: #eba49d;
  }

  .fa-tiktok {
    color: #eba49d;
  }

  .fa-tiktok:hover {
    opacity: 0.7;
  }
  
  footer .heart {
    color: #eba49d;
  }

  @media only screen and (min-width: 1535px) {
    /* For Large Desktop Screens: */
  
    .nav-logo {
      margin-left: 1vw;
      width: 100%;
    }
  
    .overlay-content {
      width: 60vw;
      margin-left: -12vw;
    }
  
    li {
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: center;
      margin-right: 9vw;
    }
  
    .nav-item a {
        font-size: 1.5vw;
    }
  
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
  
    main {
        height: auto;
        display: block;
        margin-top: 5vh;
        margin-bottom: 10vh;
    }
  
    .dot {
        width: 1.2vw;
        height: 1.2vw;
    }
  
    .properties-text {
        margin-left: 0%;
        width: 100%;
    }
  
    .properties-text h1 {
        font-size: 2vw;
        text-align: center;
    }
  
    .properties-text p {
        width: 100%;
        font-size: 1.7vw;
    }
  
    .properties-text a {
        font-size: 1.7vw;
    }
  
    .social a {
        display: flex;
        width: 3%;
        margin-left: 1.5%;
        margin-right: 1.5%;
        height: 50px;       
    }
  
  }
  
  @media only screen and (min-width: 1366px) and (max-width: 1535px) {
    /* For Desktops: */
  
    .nav-logo {
      margin-left: 1vw;
      width: 100%;
    }
  
    .overlay-content {
      width: 60vw;
      margin-left: -12vw;
    }
  
    li {
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: center;
      margin-right: 7vw;
    }
  
    .nav-item a {
        font-size: 1.5vw;
    }
  
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
  
    main {
        height: auto;
        display: block;
        margin-top: 5vh;
        margin-bottom: 10vh;
    }
  
    .dot {
        width: 1.2vw;
        height: 1.2vw;
    }
  
    .properties-text {
        margin-left: 0%;
        width: 100%;
    }
  
    .properties-text h1 {
        font-size: 2.2vw;
        text-align: center;
    }
  
    .properties-text p {
        width: 100%;
        font-size: 1.6vw;
    }
  
    .properties-text a {
        font-size: 1.6vw;
    }
  
    .social a {
        display: flex;
        width: 3%;
        margin-left: 1.5%;
        margin-right: 1.5%;
        height: 50px;       
    }   
  }
  
  @media only screen and (min-width: 864px) and (max-width: 1366px) {
    /* For Laptops and Desktops: */
  
    .nav-logo {
      margin-left: 1vw;
      width: 100%;
    }
  
    .overlay-content {
      width: 60vw;
      margin-left: -12vw;
    }
  
    li {
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: center;
      margin-right: 7vw;
    }
  
    .nav-item a {
        font-size: 1.8vw;
    }
  
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
  
    main {
        height: auto;
        display: block;
        margin-top: 5vh;
        margin-bottom: 10vh;
    }
  
    .dot {
        width: 1.4vw;
        height: 1.4vw;
    }
  
    .properties-text {
        margin-left: 0%;
        width: 100%;
    }
  
    .properties-text h1 {
        font-size: 2.5vw;
        text-align: center;
    }
  
    .properties-text p {
        width: 100%;
        font-size: 1.6vw;
    }
  
    .properties-text a {
        font-size: 1.6vw;
    }
  
    .social a {
        display: flex;
        width: 3%;
        margin-left: 2%;
        margin-right: 2%;
        height: 50px;       
    }
  
  }
  
  @media only screen and (min-width: 511px) and (max-width: 864px) {
  
    /* For Tablets */
  
    .nav-logo {
      margin-left: 1vw;
      width: 100%;
    }
  
    .overlay-content {
      width: 60vw;
      margin-left: -12vw;
    }
  
    li {
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: center;
      margin-right: 7vw;
    }
  
    .nav-item a {
        font-size: 2.5vw;
    }
  
    .nav-link3 {
        width: 18vw;
    }
  
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
  
    main {
        height: auto;
        display: block;
        margin-top: 10vh;
        margin-bottom: 10vh;
    }
  
    .mySlides img {
      max-width: 100%;
      height: 50%;
      margin-left: 0;
    }
  
    .prev {
        left: 0%
    }
  
    .next {
        right: 0%;
    }
  
    .dot {
        width: 2vw;
        height: 2vw;
    }
  
    .properties-text {
        margin-left: 0%;
        width: 100%;
    }
  
    .properties-text h1 {
        font-size: 3.4vw;
        text-align: center;
    }
  
    .properties-text p {
        width: 100%;
        font-size: 2.5vw;
    }
  
    .properties-text a {
        font-size: 2.5vw;
    }
  
    .social a {
        display: flex;
        width: 4%;
        margin-left: 3%;
        margin-right: 3%;
        height: 50px;       
    }
  
  }
  
  @media only screen and (min-width: 361px) and (max-width: 511px) {
  
    /* For Mobile Phones */
  
    .navbar-fixed-top {
      display: flex;
      width: 100%;
      flex-direction: column;
      margin-left: 0%;
      height: 80%;
    }
  
    .nav-logo {
        visibility: visible;
        margin-left: 25%;
        margin-top: 1%;
        width: 50%;
    }
  
    .overlay {
        height: 0%;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0, 0.95);
        overflow-y: hidden;
        transition: 0.5s;
        display: flex;
        justify-content: center;
    }
  
    .overlay-content {
        display: flex;
        flex-direction: column;
        position: relative;
        width: fit-content;
        text-align: center;
        margin-top: 20%;
    }
  
    .overlay-content a {
        font-size: 20px;
        margin: 80px;
    }
  
    .overlay a {
        display: flex;
        text-decoration: none;
        color: #818181;
        transition: 0.3s;
    }
      
    .overlay a:hover, .overlay a:focus {
        color: #f1f1f1;
    }
  
    .nav-item {
        justify-content: center;
    }
  
    .closebtn {
        right: -10vw;
        width: auto;
        position: absolute;
        top: 20px;
        font-size: 40px;
    }
  
    .hamburger {
        display: inline-flex;
        position: absolute;
        width: fit-content;
        color: #333333;
        background-color: transparent;
        margin-top: 5%;
        margin-left: 5%;
    }
  
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
  
    a {
        display: flex;
        text-decoration: none;
        color: #333333;
        font-size: small;
        align-items: center;
    }
  
    main {
        height: auto;
        display: block;
        margin-top: 10vh;
        margin-bottom: 10vh;
    }
  
    .mySlides img {
      max-width: 100%;
      height: 50%;
      margin-left: 0;
    }
  
    .prev {
        left: 0%
    }
  
    .next {
        right: 0%;
    }
  
    .dot {
        width: 2vw;
        height: 2vw;
    }
  
    .properties-text {
        margin-left: 0%;
        width: 100%;
    }
  
    .properties-text h1 {
        font-size: 4vw;
        text-align: center;
    }
  
    .properties-text p {
        width: 100%;
        font-size: 3vw;
    }
  
    .properties-text a {
        font-size: 3vw;
    }
  
    span p,
    span a {
        font-size: 3vw;
    }
  
    .copyright {
        font-size: 3vw;
    }
  
    .social a {
        display: flex;
        width: 6%;
        margin-left: 4%;
        margin-right: 4%;
        height: 50px;       
    }
  
  }
  
  @media only screen and (max-width: 360px) {
    /* For Small screens */
    
    .navbar-fixed-top {
      display: flex;
      width: 100%;
      flex-direction: column;
      margin-left: 0%;
      height: 80%;
    }
  
    .nav-logo {
        visibility: visible;
        margin-left: 25%;
        margin-top: 1%;
        width: 50%;
    }
  
    .overlay {
        height: 0%;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0, 0.95);
        overflow-y: hidden;
        transition: 0.5s;
        display: flex;
        justify-content: center;
    }
  
    .overlay-content {
        display: flex;
        flex-direction: column;
        position: relative;
        width: fit-content;
        text-align: center;
        margin-top: 20%;
    }
  
    .overlay-content a {
        font-size: 20px;
        margin: 80px;
    }
  
    .overlay a {
        display: flex;
        text-decoration: none;
        color: #818181;
        transition: 0.3s;
    }
      
    .overlay a:hover, .overlay a:focus {
        color: #f1f1f1;
    }
  
    .nav-item {
        justify-content: center;
    }
  
    .closebtn {
        right: -10vw;
        width: auto;
        position: absolute;
        top: 20px;
        font-size: 40px;
    }
  
    .hamburger {
        display: inline-flex;
        position: absolute;
        width: fit-content;
        color: #333333;
        background-color: transparent;
        margin-top: 5%;
        margin-left: 5%;
    }
  
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
  
    a {
        display: flex;
        text-decoration: none;
        color: #333333;
        font-size: small;
        align-items: center;
    }
  
    main {
        height: auto;
        display: block;
        margin-top: 10vh;
        margin-bottom: 10vh;
    }
  
    .mySlides img {
      max-width: 100%;
      height: 50%;
      margin-left: 0;
    }
  
    .prev {
        left: 0%
    }
  
    .next {
        right: 0%;
    }
  
    .dot {
        width: 2vw;
        height: 2vw;
    }
  
    .properties-text {
        margin-left: 0%;
        width: 100%;
    }
  
    .properties-text h1 {
        font-size: 4vw;
        text-align: center;
    }
  
    .properties-text p {
        width: 100%;
        font-size: 3vw;
    }
  
    .properties-text a {
        font-size: 3vw;
    }
  
    span p,
    span a {
        font-size: 4vw;
    }
  
    .copyright {
        font-size: 4vw;
    }
    
    .social a {
        display: flex;
        width: 8%;
        margin-left: 4%;
        margin-right: 4%;
        height: 50px;       
    }
  
  }
  


