*,
::after,
::before {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  background-color: transparent;
}

body {
  max-width: 1400px;
  margin: auto;
}

a {
  color: black;
  text-decoration: none;
}

button {
  border: none;
}

ul {
  list-style: none;
}

header {
  width: 100%;
  height: 9vh;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1450980392);
  position: fixed;
  z-index: 2;
  top: 0;
}
header .containerBtnMenuAndHome {
  width: 38%;
  height: 100%;
  display: flex;
}
header .containerBtnMenuAndHome .btnOpenMenuPhone,
header .containerBtnMenuAndHome .btnHome {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .containerBtnMenuAndHome .btnOpenMenuPhone {
  font-size: 2rem;
  color: #0467ab;
}
header .containerBtnMenuAndHome .btnHome img {
  height: 75%;
}
header .container {
  width: 62%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 10px;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
header .container .btnOpenSearchBar,
header .container .account,
header .container .basket {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  border: solid 1px #0467ab;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1254901961);
}
header .container .btnOpenSearchBar {
  color: #0467ab;
  padding-right: 2px;
  font-size: 1.4rem;
}
header .container .basket {
  font-size: 1.45rem;
  background-color: #0467ab;
  color: white;
}
header .container .account {
  color: #0467ab;
  font-size: 1.5rem;
}
header .container .searchBar {
  width: 60%;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: solid 1px #0467ab;
  display: none;
}
header .container .searchBar .fa-magnifying-glass {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #0467ab;
}
header .container .searchBar input {
  border: none;
  height: 100%;
  width: calc(100% - 50px);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding-left: 5px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.0823529412);
  color: #405672;
}

nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  display: none;
}
nav p {
  width: 70%;
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  border-bottom: solid 1px #0467ab;
  background: #0467ab;
  color: white;
}
nav p .fa-xmark {
  font-size: 1.8rem;
  position: fixed;
  left: 20px;
}
nav ul {
  width: 70%;
  height: 93vh;
  border: solid 3px #0467ab;
  border-top: none;
  background-color: white;
  padding: 15px 5px;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li button::before {
  content: "\f0c9";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-right: 6px;
}
nav ul li button,
nav ul li a {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  color: #0467ab;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  padding-left: 5%;
  cursor: pointer;
  transition: 0.3s;
}
nav ul li button:hover, nav ul li a:hover {
  color: #d41217;
  opacity: 0.8;
}
nav ul li a {
  border-top: 1px solid rgba(0, 0, 0, 0.1450980392);
}

#searchBarPhone {
  width: 100%;
  height: 40px;
  display: flex;
  background-color: #0467ab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3137254902);
  padding-left: 10px;
  position: absolute;
  z-index: 1;
  top: 9vh;
  display: none;
}
#searchBarPhone input {
  height: 100%;
  width: calc(100% - 40px);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 2px 0 0 5px;
  color: white;
  border: none;
}
#searchBarPhone input::-moz-placeholder {
  color: white;
}
#searchBarPhone input::placeholder {
  color: white;
}
#searchBarPhone i {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media screen and (min-width: 768px) {
  header .containerBtnMenuAndHome {
    width: 25%;
  }
  header .containerBtnMenuAndHome .btnOpenMenuPhone {
    font-size: 2.6rem;
  }
  header .container {
    width: 75%;
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding-right: 30px;
  }
  header .container .btnOpenSearchBar,
  header .container .account,
  header .container .basket {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    border-radius: 30px;
  }
  header .container .btnOpenSearchBar {
    display: none;
  }
  header .container .searchBar {
    display: flex;
  }
  nav p {
    width: 60%;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
  }
  nav p .fa-xmark {
    font-size: 2.7rem;
    left: 30px;
  }
  nav ul {
    width: 60%;
    padding: 25px 15px;
  }
  nav ul li button::before {
    margin-right: 10px;
  }
  nav ul li button,
  nav ul li a {
    width: 90%;
    height: 80px;
    font-size: 1.5rem;
    padding-left: 7%;
  }
}
@media screen and (min-width: 1024px) {
  header {
    height: 10vh;
  }
  header .containerBtnMenuAndHome {
    width: 8%;
    margin-right: 1%;
  }
  header .containerBtnMenuAndHome .btnOpenMenuPhone {
    display: none;
  }
  header .containerBtnMenuAndHome .btnHome {
    width: 100%;
  }
  header .container {
    width: 50%;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding-right: 15px;
  }
  header .container .btnOpenSearchBar,
  header .container .account,
  header .container .basket {
    width: 40px;
    height: 40px;
  }
  header .container .account {
    font-size: 1.5rem;
  }
  header .container .basket {
    font-size: 1.45rem;
  }
  header .container .searchBar {
    width: 55%;
    height: 28px;
  }
  header .container .searchBar .fa-magnifying-glass {
    width: 30px;
    font-size: 1rem;
  }
  header .container .searchBar input {
    font-size: 1rem;
  }
  nav {
    width: 45%;
    height: 100%;
    display: flex;
    position: unset;
  }
  nav p {
    display: none;
  }
  nav ul {
    border: none;
    width: unset;
    padding: 0 0 8px 0;
    background-color: transparent;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
  nav ul li button::before {
    margin-right: 6px;
  }
  nav ul li button,
  nav ul li a {
    width: unset;
    height: unset;
    padding: unset;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
  }
  nav ul li a {
    border: none;
  }
}
main {
  margin-top: 9vh;
}
main .presentation {
  height: 76vh;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
main .presentation .poster {
  height: 45%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15px;
  background: url(./../images/background-image_space.jpeg) center/cover;
}
main .presentation .poster img {
  width: 15%;
  position: relative;
}
main .presentation .poster h1,
main .presentation .poster h2,
main .presentation .poster p {
  color: white;
  text-shadow: 0 0 2px #000000;
  position: relative;
}
main .presentation .poster h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  text-transform: uppercase;
  margin-top: 15px;
}
main .presentation .poster h1::after {
  content: "";
  width: 95%;
  height: 3px;
  display: flex;
  margin: 2px auto 10px;
  background-color: #d41217;
}
main .presentation .poster h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}
main .presentation .poster p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  text-align: center;
  position: absolute;
  bottom: 15px;
}
main .presentation .poster::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.1254901961);
}
main .presentation .slider {
  height: 55%;
  transition: 0.3s;
  padding: 30px 25px;
  position: relative;
  background: linear-gradient(90deg, white 0%, rgba(0, 0, 0, 0.0823529412) 50%, white 100%);
}
main .presentation .slider h3 {
  text-shadow: 0 0 2px #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #d41217;
}
main .presentation .slider .dots {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  padding-left: 2px;
  margin-top: 5px;
}
main .presentation .slider .dots .dot {
  width: 6px;
  height: 6px;
  display: flex;
  border-radius: 5px;
  background-color: #0467ab;
  position: relative;
  z-index: 1;
}
main .presentation .slider .dots .dot_selected {
  width: 40px;
  background-color: transparent;
}
main .presentation .slider .dots .dot_selected::after {
  content: "";
  height: 6px;
  display: flex;
  border-radius: 5px;
  position: relative;
  background-color: #0467ab;
  animation: dotAnime 6.5s 1 linear;
}
main .presentation .slider .imgSlider {
  max-width: 50%;
  max-height: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
main .presentation .slider p {
  width: 98%;
  text-align: center;
  color: #405672;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  transform: translateX(-50%);
  position: absolute;
  bottom: 20px;
  left: 50%;
}
main .presentation .slider .fas {
  opacity: 0.5;
  font-size: 3rem;
  color: #0467ab;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
}
main .presentation .slider .fa-angle-left {
  left: 30px;
}
main .presentation .slider .fa-angle-right {
  right: 0;
}
main .containerOnglets {
  height: 15vh;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  background: linear-gradient(90deg, white 0%, rgba(0, 0, 0, 0.0823529412) 50%, white 100%);
  overflow: scroll;
  padding: 0 7%;
}
main .containerOnglets li {
  height: 90%;
  margin: auto 0;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1882352941);
}
main .containerOnglets li a {
  height: 100%;
  width: 200px;
  display: flex;
  overflow: hidden;
  position: relative;
}
main .containerOnglets li a img {
  max-width: 40%;
  max-height: 70%;
  transform: translateY(-50%);
  position: absolute;
  right: 5px;
  top: 50%;
}
main .containerOnglets li a p {
  width: 60%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #405672;
  position: absolute;
  bottom: 15px;
  left: 15px;
}
main .containerOnglets li a i {
  opacity: 0.75;
  font-size: 1.7rem;
  color: #0467ab;
  position: absolute;
  left: 15px;
  top: 15px;
}
main .containerOnglets li:nth-child(2n) a i {
  color: #d41217;
}

@media screen and (min-width: 768px) {
  main .presentation .poster {
    height: 50%;
  }
  main .presentation .poster img {
    width: 11%;
    margin: 10px 0;
  }
  main .presentation .poster h1 {
    font-size: 3rem;
  }
  main .presentation .poster h2 {
    font-size: 1.5rem;
  }
  main .presentation .poster p {
    width: 75%;
    font-size: 1.2rem;
  }
  main .presentation .slider {
    height: 50%;
    padding: 50px 150px;
  }
  main .presentation .slider h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2rem;
  }
  main .presentation .slider p {
    width: 65%;
    bottom: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
  }
  main .presentation .slider .fas {
    font-size: 5rem;
  }
  main .presentation .slider .fa-angle-left {
    left: 12.5%;
  }
  main .presentation .slider .fa-angle-right {
    right: 8%;
  }
  main .containerOnglets {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  main .containerOnglets li a {
    width: 330px;
  }
  main .containerOnglets li a img {
    max-width: 45%;
    max-height: 80%;
  }
  main .containerOnglets li a p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
  }
  main .containerOnglets li a i {
    font-size: 2.2rem;
    left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  main {
    margin-top: 10vh;
  }
  main .presentation {
    height: 75vh;
    display: flex;
    flex-direction: row;
    padding: 0 40px;
  }
  main .presentation .poster {
    width: 32%;
    height: calc(100% - 15px);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3764705882);
    border-radius: 12px;
    margin: 15px auto 0;
  }
  main .presentation .poster img {
    width: 20%;
    margin: 10px 0;
  }
  main .presentation .poster h1 {
    font-size: 2.4rem;
  }
  main .presentation .poster h2 {
    font-size: 1.2rem;
  }
  main .presentation .poster p {
    width: 95%;
    font-size: 0.9rem;
  }
  main .presentation .poster::before {
    border-radius: 12px;
  }
  main .presentation .slider {
    width: 65%;
    height: 100%;
  }
  main .presentation .slider .imgSlider {
    max-height: 40%;
  }
  main .presentation .slider h3 {
    font-size: 1.4rem;
  }
  main .presentation .slider p {
    font-size: 1rem;
  }
  main .containerOnglets {
    width: 100%;
    padding: 0 40px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    background: linear-gradient(90deg, white 35%, rgba(0, 0, 0, 0.0823529412) 70%, white 100%);
    overflow: unset;
  }
  main .containerOnglets li {
    height: 80%;
    width: 20%;
    border-radius: 5px;
  }
  main .containerOnglets li a {
    width: 100%;
  }
  main .containerOnglets li a img {
    max-width: 40%;
    max-height: 60%;
    right: 5px;
  }
  main .containerOnglets li a p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    bottom: 5px;
    left: 10px;
  }
  main .containerOnglets li a i {
    font-size: 1.2rem;
    left: 10px;
    top: 10px;
  }
}
#work {
  width: 100%;
  min-height: 90vh;
  background-color: rgba(0, 0, 0, 0.1882352941);
  position: absolute;
  left: 0;
  top: 0;
}
#work iframe {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 45%;
}
#work h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 34px;
  text-shadow: 2px 2px 5px white;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 75%;
}

@keyframes dotAnime {
  from {
    width: 6px;
  }
  to {
    width: 35px;
  }
}/*# sourceMappingURL=main.css.map */