/*==============================================
[Main stylesheet style.css]
================================================*/
html,
body {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  --main-spacing: 15px 5px 10px 5px;
  --header-footer-spacing: 10px 5px;  
}
body{
    background-size: cover;
    background-position: center center;
}

#app {
    height: 100vh; /* old browsers */  
    height: 100dvh; /* new browsers */
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
        'header'
        'main'
        'footer';

    > header, > footer {
        padding: var(--header-footer-spacing);
  }

  > header {
    grid-area: header;
    a {
      margin-right: 20px;
      cursor: pointer;

      &.disabled {
        cursor: default;
        opacity: 0.5;
      }
    }
  }

  > main {
    grid-area: main;
    padding: 2%;
    overflow: auto;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 2%;
    grid-row-gap:2%;
  }

  > footer {
    grid-area: footer;
  }
}

header{
    height:90px;
    background-color: #fff;
}
.logo img{
    padding:22px 2%;
    max-width: 320px;
    max-height:50px;
    width:auto;
}
section{
  padding: 4%;
  color:#fff;
  font-size:17px;
}
section h1{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size:28px;
}
section a{
  color:#fff;
}
.videocontainer {
  display: flex;
  justify-content: center;
}
  
iframe {
  aspect-ratio: 16 / 9;
  width: 100% !important;
}
.card{
  background-color: rgba(4, 159, 130, 0.8);
  border-radius:10px;
}
.whitecard{
  background-color: rgba(255, 255, 255, 1);
  color:rgba(4, 159, 130, 1);
}
.some{
  border-radius: 8px;
  display: inline-block;
  background-color: #fff;
}
.some img{
  max-width:24px;
  height:auto;
  display: block;
}
.wastuu-btn img{
  max-width: 240px;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.8);
  border-radius: 14px;
}
footer a{
    display: block;
    width: 14.4%;
    margin: 1.1%;
    padding: 1% 0;
    float: left;
    height: auto;
    text-align: center;
    background-color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color:#222222;
    text-decoration: none;
    font-size: 19px;
}
footer a img {
    display: block;
    max-width: 30%;
    margin: 0 auto 10px auto;
    text-align: center;
}
@media screen and (max-width: 1250px) {
  footer a {
        font-size: 12px;
    }
}
@media screen and (max-width: 780px) {
  #app {
    > main {
    grid-template-columns: auto;
  }  
}
  footer a {
        width: 31%;
        margin: 1.1%;
        padding: 5% 0;
        font-size: 19px;
    }
}
@media screen and (max-width: 550px) {
  footer a {
        
        font-size: 14px;
    }
}