@import url('https://fonts.googleapis.com/css?family=Red+Hat+Display:900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap');

@viewport {
    width: device-width ;
    zoom: 1.0 ;
  }
  @-ms-viewport {
    width: device-width ;
  }  

body {
    margin: 0;
    background-color: #fffef6;
    background-image: url(/images/Triangles.png);
  }

/* Header */
/* Header */
/* Header */
/* Header */
/* Header */
.header{
    width: 100vw;
    height: 100px;

    font-family: 'Kanit', sans-serif;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;

    box-sizing: border-box;
    background-color: #333333;
    align-items: center;
}
.Logo{
    background-image: url(/images/Paola.png);
    height: 120px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -1vh;
    margin-left: 1vw;
}
.header div a{
    color: aliceblue;
    font-weight: bold;
    text-decoration: none;
    font-size: 3vh;
    text-align: center;
    font-family: 'Kanit', sans-serif;
    display: inline-block;
    padding: 5%;
    position: relative;
}
header div a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 15%;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
a:hover:after { 
  width: 100%; 
  left: 0; 
}
.header div:not([class="Logo"]){
    margin-top: -1vh;
}

@media (max-width: 880px){
  .top {
    width: 100%;
  }
  .header{
    height: 100%;
    display: block;
    text-align: center;
  }
  .header div a{
    margin-top: -1%;
    text-align: center;
  }
  .Logo{
    background-image: url(/images/Paola.png);
    height: 120px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -1vh;
    margin-left: 35vw;
  }
}

/* Headerend */  
/* Headerend */
/* Headerend */
/* Headerend */
/* Headerend */

.heading{
    text-align: center;
    font-family: 'Yusei Magic', sans-serif;
    font-size: 5vw;
    margin-top: 2vh;
    font-weight: bold;
    width: 100vw;
}

.Container{
    width: 80vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 70vh;
    margin-left: 10vw;
    margin-right: 10vw;
    margin-top: 2vh;
}

.Rosalie{
    grid-column-start: 1;
    grid-column-end: 2;
    
    box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    background-color: rgb(255, 255, 255);
    border-radius: 10%;
    transition: transform .2s;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
}

.Sausewind{
    grid-column-start: 2;
    grid-column-end: 3;
    
    box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    background-color: rgb(255, 255, 255);
    border-radius: 10%;
    transition: transform .2s;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
}


.Rosalie:hover{
    transform: scale(1.02);
}
.Sausewind:hover{
    transform: scale(1.02);
}

.Container div img{
    height: 50vh; 
}

.Container div span{
    border-bottom: 1px solid #ccc;
    display: block;
    width: 80%;
    margin-left: 10%;
    margin-top: 5%;
    border-radius: 100%;
}

.Container div div{
    font-family: 'Yusei Magic', sans-serif;
    font-size: 7vh;
    text-align: center;
    font-weight: bold;
    margin-top: 1vh;
    color:rgba(0, 0, 0, 0.808);
}
@media (max-width: 1500px){
    .Container{
        width: 100vw;
        display: grid;
        margin-left: 0%;
        margin-right: 0%;
    }
}

@media (max-width: 1140px){
    .Container{
        width: 80vw;
        display: block;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .Rosalie{
        box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
        background-color: rgb(255, 255, 255);
        border-radius: 0%;
        transition: transform .2s;
        padding-top: 3%;
        margin-bottom: 10%;
    }
    
    .Sausewind{
        box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
        background-color: rgb(255, 255, 255);
        border-radius: 0%;
        transition: transform .2s;
        padding-top: 3%;
    }
    .Container div img{
        width: 74vw;
        height: 100%;
    }
    .heading{
        text-align: center;
        font-family: 'Yusei Magic', sans-serif;
        font-size: 7vw;
        margin-top: 2vh;
        font-weight: bold;
        width: 100vw;
    }
}

/* Footer */  
/* Footer */  
/* Footer */  
/* Footer */  
/* Footer */  
.footerbase{
    background-color: #292c2f;
      box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
      box-sizing: border-box;
      width: 100%;
      text-align: left;
      font: bold 16px sans-serif;
   
      padding: 55px 50px;
      margin-top: 80px;
  }
  .footerbase .footer-left,
  .footerbase .footer-center,
  .footerbase .footer-right{
      display: inline-block;
      vertical-align: top;
  }
  .footerbase .footer-left{
      width: 40%;
  }
   
  .footerbase h4{
      color:  #ffffff;
      font: normal 36px 'Cookie', cursive;
      margin: 0;
  }
   
   
  .footerbase .footer-links{
      color:  #ffffff;
      margin: 20px 0 12px;
      padding: 0;
  }
   
  .footerbase .footer-links a{
      display:inline-block;
      line-height: 1.8;
      text-decoration: none;
      color:  inherit;
  }
   
  .footerbase .footer-company-name{
      color:  #8f9296;
      font-size: 14px;
      font-weight: normal;
      margin: 0;
  }
   
   
  .footerbase .footer-center{
      width: 35%;
  }
   
  .footerbase .footer-center i{
      background-color:  #33383b;
      color: #ffffff;
      font-size: 25px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      text-align: center;
      line-height: 42px;
      margin: 10px 15px;
      vertical-align: middle;
  }
   
  .footerbase .footer-center i.fa-envelope{
      font-size: 17px;
      line-height: 38px;
  }
   
  .footerbase .footer-center p{
      display: inline-block;
      color: #ffffff;
      vertical-align: middle;
      margin:0;
  }
   
  .footerbase .footer-center p span{
      display:block;
      font-weight: normal;
      font-size:14px;
      line-height:2;
  }
   
  .footerbase .footer-center p a{
      color:  #5383d3;
      text-decoration: none;;
  }
   
  .footerbase .footer-right{
      width: 20%;
  }
   
  .footerbase .About{
      line-height: 20px;
      color:  #92999f;
      font-size: 13px;
      font-weight: normal;
      margin: 0;
  }
   
  .footerbase .About span{
      display: block;
      color:  #ffffff;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 20px;
  }
   
  .footerbase .Icons{
      margin-top: 25px;
  }
   
  .footerbase .Icons a{
      display: inline-block;
      width: 35px;
      height: 35px;
      cursor: pointer;
      background-color:  #33383b;
      border-radius: 2px;
   
      font-size: 20px;
      color: #ffffff;
      text-align: center;
      line-height: 35px;
   
      margin-right: 3px;
      margin-bottom: 5px;
  }
  
   
  @media (max-width: 880px) {
   
      .footerbase {
          font: bold 14px sans-serif;
      
      }
   
      .footerbase .footer-left,
      .footerbase .footer-center,
      .footerbase .footer-right{
          display: block;
          width: 100%;
          margin-bottom: 40px;
          text-align: center;
      }
   
      .footerbase .footer-center i{
          margin-left: 0;
      }
      .main {
          line-height: normal;
          font-size: auto;
      }
   
  }