/* This is a single-line comment */

html, body{
    margin: 0px;
    height: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.banner{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
    overflow: hidden;  
    text-align: center;
    background-color: #5C3550;
    position: -webkit-sticky;
    position: sticky;
    top: 0%;
}
.bannerList {
    display:inline;
    font-family: 'Montserrat', 'bold';
}

.bannerList a {
    display: inline-block;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.bannerList a:hover {
    background-color: #111;
  }

.plx-image1{
    background-image: url(images/cover.jpg);
    text-align: center;
    width: 100%;
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
 
.text1{
    font-size: 280px;
    padding-top: 200px;
    font-family: 'Montserrat', bold, sans-serif;
    color: #FFFFFF;
    -webkit-text-fill-color: rgba (255, 255, 255, 1);
    text-shadow: -3px -3px 12px #313a49;
}
 
.text2{
    font-size: 40px;
    color: white;
    margin: 0 0 20px 0;
    font-family: 'Montserrat', sans-serif;
}
 
.content-1{
    height: auto;
    width: 100%;
    background-color: #f2f2f2;
    text-align: center;
}
 
.text3{
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    background-color: #f2f2f2;
    padding-top: 100px;
}

.text31{
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    background-color: #f2f2f2;
    padding-top: 20px;
}
 
.text4{
    width: 70%;
    margin-left: 15%;
    padding: 30px 0 80px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    background-color: #f2f2f2;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
 
.plx-image2{
    background-image: url(images/image\ 2.jpg);
    text-align: center;
    width: 100%;
    height: 800px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
 
.content-2{
    height: auto;
    width: 100%;
    text-align: center;
    background-color: #f2f2f2;
}
 
.text5{
    font-family: 'Montserrat', sans-serif;
    font-size: 100px;
    padding: 80px 0 80px 0;
    letter-spacing: 0.2em;
}

.button {
    font-family: 'Montserrat', bold;
    border: none;
    color: white;
    background-color: #5C3550;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 8px;
/*    transition-duration: 0.4s;
    cursor: pointer; */
  }

.button:hover {
    background-color: #111;
  }

.gallery{
    padding:10%;
    width:90%;
    height:90%;
    clear:both;
    background-color: #f2f2f2;
   }
.gallery>div{
    width:30%;
    height:30%;
    float:left;
    line-height:5%;
    text-align:center;    
   }
.gallery>div>img{
    display:inline-block;
    vertical-align:middle;
    max-width:90%;
    max-height:90%;
   }

*, 
*:before, 
*:after {
   @include box-sizing(border-box); 
}

form {
   max-width: 100%;
   padding: 5%;
   text-align: center;
   margin: 20px auto;
   background-color: #f2f2f2;
   font-family: 'Montserrat', sans-serif;
   display:inline-block;
  
  input,textarea {
     border:0; outline:1;
     padding: 1em;
     @include border-radius(8px);
     display: block;
     width: 80%;
     margin-top: 1em;
     font-family: 'Montserrat', sans-serif;
     @include box-shadow(0 1px 1px rgba(black, 0.1));
     resize: none;
    
    &:focus {
       @include box-shadow(0 0px 2px rgba($red, 1)!important);
    }
  }
 #input-submit {
     width:100%;
     color: white; 
     background: #5C3550;
     cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    
    &:hover {
       @include box-shadow(0 1px 1px 1px rgba(#aaa, 0.6)); 
    }
  }
  
  textarea {
      height: 126px;
    float:right;
  }
}


.half {
  float: left;
  width: 50%;
  margin-bottom: 1em;
}

.right { width: 50%; }

.left { 
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}