@import url('https://fonts.googleapis.com/css2?family=Lekton:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", serif;
}
html{
  scroll-behavior: smooth;
}
body{
  background-color: #1168d4;
  color: #ffffff;
}

h1,h2,h3,h4,h5,h6{
  font-family: "Lekton", serif;
  color: #ffffff;
  margin-bottom: 5px;
}

h2{
    font-size: 40px;
  }
h3{
    font-size: 28px;
  }
li,
p,
span{
  font-size: 22px;
  color: #ffffff;
}
li{
  margin-left: 25px;
}

.yellow{
  color:#ffde59;
}
section{
  width: 100%;
  height: auto;
  background-color: #1168d4;
  margin-bottom: 25px;
}
.content{
  min-width: calc(100% - 45px);
  height: auto;
}
.line{
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: space-between;
  flex-direction: row;
}
.total{
  display: flex;
  flex-direction: column;
  padding: 15px 15px 0 15px;
}
.col{
  display: flex;
  flex-direction: column;
  width: calc(100% / 2 - 10px);
  padding:15px;
}
.half col{
  width: 50%;
}
.text{
  padding: 15px 40px;
}
.col video,
.col img{
  border: 3px solid #ffde59;
  border-radius: 35px;
}
/*Barra de navegação*/
.box{
  z-index: 1;
  width: fit-content;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  text-align: left;
  opacity: 0;
  left: -500px;
  pointer-events: none;
}
.active.box{
  opacity: 1;
  left: 0px;
  pointer-events: fill;
}
.menu_icon_box{
  z-index: 2;
  width: fit-content;
  height: auto;
  background-color: #ffffff;
  margin: 30px;
  position: absolute;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  position: fixed;
}
.line1, .line2, .line3{
  width: 40px;
  height: 4px;
  margin: 10px 8px;
  background-color: #000000;
  border-radius: 50px;
  transition: 0.3s;
}
.active .line1{
  transform: translate(0px, 15px)rotate(45deg);
}
.active .line2{
  opacity: 0;
}
.active .line3{
  transform: translate(0px, -15px)rotate(-45deg);
}
nav{
  padding-top: 100px;
}
nav ul{
  margin: 0px 30px;
}
nav ul li{
  list-style: none;
  margin-bottom: 30px;
  transition: 0.3s;
}
nav ul li:hover{
  background-color: #c6c6c66f;
  border-radius: 8px;
}
 nav ul li a{
  color: #000000;
  font-size: 28px;
  padding: 10px 30px;
  display: block;
  text-decoration: none;
}
/*Loadingpage*/
.loading{
  height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-clip-path: ellipse(71% 59% at 50% 40%);
  clip-path: ellipse(71% 59% at 50% 40%);
}
.loading img{
  display: inline-block;
  border-radius: 0;
  border: 0;
  width: 60%;
  vertical-align: middle;
}
.loading h1{
  text-transform: uppercase;
  font-size: 42px;
}
.background-clip{
  position: absolute;
  height: auto;
  width: auto;
  min-height: 100%;
  min-width: 100%;
  z-index: -1;
}
/*Objecto Social*/
.color_yellow,
.objecto span{
  color: #ffde59;
}
/*Pescas*/
.pesca p{
  margin-bottom: 15px;
}
.pesca .total{
  width: 100%;
}
.pesca .total .col{
  padding: 0;
  margin-bottom: 15px;
}
.double_mode{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: right;
}
/*Botões*/
.btns{
  display: flex;
  justify-content:flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btns a{
  background-color: #ffde59;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 15px 25px;
  margin: 0 5px;
  border-radius: 50px;
  border: 2px solid #ffde59;
}
.btns a:hover{
  color: #ffde59;
  background: none;
}
/*Animação nos elementos*/
.block{
  animation:appear 5s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
/*Contacto*/
.contacto p{
  margin-bottom: 15px;
}
.contacto a{
  color: #ffffff;
}
.contacto a:hover{
  text-decoration: none;
  color: #ffde59;
}
.endpage img{
  width: 100%;
}
/*Rodapé*/
footer{
  position: relative;
  width: 100%;
  height: 45px;
  text-align: center;
  background: #123f78;
}
footer span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*Tablet*/
@media only screen and (max-width: 850px){
  .box li a{
    font-size: 45px
  }
  .loading{
    -webkit-clip-path: ellipse(81% 59% at 50% 40%);
    clip-path: ellipse(81% 59% at 50% 40%);
  }
  .loading .line .col{
    padding: 15px 45px;
  }
  .loading .line .col h1{
    font-size: 55px;
  }
  .loading .line .col p{
    font-size: 35px;
  }
  .loading .line .col:nth-child(2){
    text-align: center;
    display: block;
  }
  .loading .line .col img{
    width: calc(100% / 2);
    text-align: center;
    justify-content: center;
  }
  .btns{
    display: flex;
    flex-direction: row;
  }
  .btns a{
    padding: 15px 25px;
    margin: 0 5px;
    border-radius: 50px;
    border: 2px solid #ffde59;
    font-size: 35px;
  }
  .line{
    flex-direction: column;
  }
  .col{
    width: 100%;
  }
  .col video,
  .col img{
    width: 97%;
  }
  .col h2{
    font-size: 65px;
  }
  .col h3{
    font-size: 45px;
  }
  .nota,
  .pesca li,
  .yellow,
  p{
    font-size: 35px;
  }
  .line1, .line2, .line3{
    width: 60px;
    height: 6px;
  }
}
@media only screen and (max-width: 850px){
  .line1, .line2, .line3{
    width: 30px;
    height: 4px;
  }
  .box li a{
    font-size: 20px
  }
  .loading h1{
    font-size: 35px;
  }
  .loading h1{
    font-size: 25px;
  }
  .col h2{
    font-size: 45px;
  }
  .col h3{
    font-size: 30px;
  }
  .btns a{
    font-size: 18px;
  }
  .loading .line .col h1{
    font-size: 35px;
  }
  .line .col span,
  .loading .line .col p{
    font-size: 25px;
  }

}
@media only screen and (max-width: 550px){
  .line1, .line2, .line3{
    width: 30px;
    height: 4px;
  }
  .box li a{
    font-size: 20px
  }
  .loading{
    height: 100vh;
    padding: 0px;
    margin: 0px;
  }

  .loading .line .col{
    text-align: justify;
    padding: 10px 10px 10px 10px;
    margin: 0;
  }
  .loading .line .col h1{
    font-size: 35px;
    margin-top: 55px;
  }
  .loading h1{
    font-size: 45px;
  }
  .col h2{
    font-size: 35px;
  }
  .col h3{
    font-size: 25px;
  }
  .intro .col{
    margin: 0;
    padding: 0;
  }
  .btns a{
    font-size: 16px;
    padding: 10px 20px;
  }
  .loading .line .col h1{
    font-size: 35px;
  }
  .line span,
  .yellow,
  .line p,
  .line ul li,
  .loading .line .col p{
    font-size: 25px;
  }
  .text{
    padding-bottom: 0;
  }
  .text:nth-child(2){
    padding-top: 0;
  }

}
/** Para voltar a usar depois
@media (max-width: 1000px){
  .loading{
    -webkit-clip-path: ellipse(91% 59% at 50% 40%);
    clip-path: ellipse(91% 59% at 50% 40%);
  }
  .loading .line .col:nth-child(2){
    width: 100%;
    text-align: center;
    display: block;
  }
  .loading .line .col:nth-child(2)img{
    text-align: center;
    justify-content: center;
    width: 150px;
  }
  .loading h1{
    margin-top: 55px;
    font-size: 55px;
  }
  .loading p{
    text-align: justify;
    font-size: 30px;
  }
  .btns{
    justify-content: center;
  }
  .btns a{
    font-size: 45px;
  }
  .line{
    flex-direction: column;
  }
  .col{
    width: 100%;
  }
  .col video{
    width: 95%;
  }
  .col:nth-child(1){
    padding-bottom: 0;
  }
  .col:nth-child(2){
    padding-top: 0;
  }
  .double_mode img{
    width: calc(100% - 15px);
  }
}
**/
@media (max-width: 780px){

}
@keyframes appear {
    from {
      opacity: 0;
      scale:0.4;
    }
    to {
      opacity: 1;
      scale: 1;
    }
}
