* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: black;
  width: 100vw;
  overflow-x: hidden;
  
  background: linear-gradient(
    rgba(0, 0, 0, 0.45), 
    rgba(39, 39, 39, 0.45)
  ), url("../images/4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.body::before {
    position: absolute; 
    width: 100%; 
    height: 100%; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); 
}

.contact {
  font-size: 16px;
}

.header {
  height: 180px;
  padding: 24px;
  background: white;
  display: flex;
  justify-content: center;
}

.title {
  font-size: 50px;
  font-weight: 700;
  color: white;
  margin-top: 30px;
}

.wrapper {
  padding: 0;
  margin: 0 auto;
  display: flex;
  max-width: 900px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact-info {
  margin-top: 30px;
}

.contact-info p,
a {
  color: white;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  line-height: 30px;

}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-info .contact {
    font-weight: 500;
}

.container-main {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact-info .contact-telf {
  margin-top: 10px;
}

.container-main h3 {
  font-size: 24px;
  color: white;
  font-weight: 500;
}

.container-list {
    font-size: 24px;
    color: white;
    margin: 10px 0 40px 0;
    margin-bottom: 60px;
    font-weight: 600;
}

.container-list p {
    margin: 15px;
}

.header {
  font-size: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100vw;
}

.logo {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 350px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 500px;
  background: rgb(17, 17, 17);
  width: 100vw;
  padding: 20px 15px;
}

.footer .title {
  color: white;
  font-size: 24px;
  font-weight: 400;
}

.footer .adress {
  font-size: 16px;
  line-height: 20px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.logo-oca {
  width: 150px;
  height: 150px;
  margin: 10px 0 20px 0;
}

.footer-copyright {
  color: white;
  font-size: 13px;
  text-align: center;
}

.adress .enterprise {
  font-size: 20px;
  font-weight: 500;
}


@media only screen and (min-width: 1200px) {
    .responsive-br {
        display: none;
    }
  }
  @media only screen and (max-width: 1199px) {
    .responsive-br {
        display: inline;
    }
  }

@media only screen and (max-width: 768px) {
  .logo {
    width: 200px;
  }
  .header {
    height: 100px;
  }
  .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 500px) {
  .header {
    font-size: 18px;
  }
  .contact-info p, a {
    font-size: 18px;
  }
  .wrapper {
      padding: 10px;
  }
}

@media only screen and (max-width: 500px) {
   
    .contact-info p, a {
      font-size: 16px;
    }
  }
  
