@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body{
  margin:0px;
  padding: 0px;
  font-family: 'Open Sans', sans-serif;
  background-image: url(../image/fondnuages.png);
  color: white;
  display: flex;
  flex-direction: column;
}

.navbar{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  height: 120px;
  background-color: #87CEEB;
  border-bottom: 1px solid rgba(95, 95, 95, 0.137);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 8px;
  z-index: 99;
}

.link
{
  color: #444444;
  font-size: 20px;
  cursor:pointer;
  align-self: center;
}

.link:hover
{
  color: #ffffff;
  transition: color 0.3s;
}

.logo
{
  height: 40px;
}

.navbar>img
{
  height: 100%;
  width: auto;
}

body > div.navbar > a > img{
  height: 120px;
  border-radius: 66%
}

.navbar svg
{
  transition: transform 0.2s;
}

.navbar svg:hover
{
  transform: rotate(360deg);
  fill: #87CEEB;
}

body > div.navbar > a > img:hover{
  transform: scale(1.1);
}

nav{
  display: flex;
  flex-wrap:wrap;
  gap:30px;
  margin-right: 30px;
  justify-content: center;
}

.search-bar{
  align-self: center;
}

.search-bar>input{
  padding: 15px;
  border-radius: 30px;
  border:none;
  background-color: #f2f2f2;
  outline:none;
}

.search-basket{
  display: flex;
  gap: 30px;
}

nav svg{
  height: 45px;;
  align-self: center;
}

header{
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  background-color: transparent;
  padding-bottom: 80px;
}

header h1{
  font-size: 50px;
  max-width: 500px;
  text-align:center;
  color: #000;
  margin-top: 80px;
  margin-bottom: 40px;
}
header button{
  padding: 15px 20px;
  font-size: 20px;
  border:none;
  border-radius: 5px;
  outline:none;
  cursor:pointer;
}

.btn a:hover
{
    background-color: #69bcea;
    border-radius: 8px;
    font-size: large;
    color: #ffffff;
    margin: 0;
    border: solid #ffffff;
    transition: background-color 0.5s, color 0.5s, border 0.5s;
}

.btn a
{
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    font-size: large;
    color: #444444;
    border: solid #69bcea;
}

header a :hover
{
  color: #ffffff;
  margin: 0%;
  fill: currentColor;
}

a
{
  text-decoration: none;
  color: #444444;
  fill: currentColor;
}

header svg
{
  width: 20px;
}

.maa
{
  font-size: xx-large;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.main{
  margin: 20px;
  margin-top: 80px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.cards{
  display:flex;
  flex-wrap:wrap;
  margin: 20px;
  justify-content: center;
}

.cards .card{
  margin-left: 20px;
  margin-right: 20px;
  cursor:pointer;
  margin-bottom: 30px;
}
.cards .card img{
  width: 350px;
  border-radius: 8px;
}
.cards .card .card-header{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}
.cards .card .card-body p{
  margin-top: -10px;
}

.main .video{
  margin-top: 80px;
  width: 90%;
}
.main .video iframe{
  border:none;
  border-radius: 10px;
  width: 100%;
  height: 400px;
}

.card:hover
{
  transform: scale(1.1);
}

.card
{
  transition: transform 0.2s ;
  background-color: #fefefe;
  color: #000;
  padding: 10px;
  border-radius: 10px;
  border: solid #69bcea;
}

footer {
  margin-top: 100px;
  background-color: #000;
  padding: 2vw 5vw;
  color: #fff;
  flex-wrap:wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 0;
  position: static;
}

footer .social-media{
  display: flex;
}
footer .social-media p{
  right: 80px;
  cursor:pointer;
}

.social-media svg
{
    width: 60px;
    height: 60px;
}
.social-media{
  display: flex;
  gap:20px;
}

#linkedin, #twitter, #facebook, #instagram
{
    margin-top: 0px;
    transition: transform 0.2s;
}

#linkedin:hover, #twitter:hover, #facebook:hover, #instagram:hover
{
    transform: scale(1.2);
}

.credit
{
  bottom: 10px;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: #000;
}

@media screen and (max-width: 650px){
  .cards .card img{
    width: 300px;

  }

  nav{
    flex-direction: column;
    margin-right: 0px;
    padding-bottom: 10px;
  }

  .navbar a
  {
    justify-content: center;
    display: flex;
  }

  .navbar{
    flex-direction: column;
    height: auto;
    width: 100vw;
    position: static;
    top: 0;
  }

  .produit{
    width: auto;
  }

  footer{
    justify-content: center;
  }
  .cards
  {
    justify-content: center;
  }

  .card 
  {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;

  }

footer
{
    left: 50%;
}
}