@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: 'Montserrat', sans-serif;
}

#Section-1 {
  position: relative;
  min-height: 100vh;
  background: url(../img/bg.png);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  padding: 0 20px 0 20px;
}

#Section-1 header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 75px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 0 0 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#Section-1 header nav a {
  color: #1c0d43;
  font-weight: 700;
  margin-left: 25px;
  font-size: 1.1em;
}

#Section-1 header nav :nth-child(4) {
  color: #bba3f6;
  border: 3px solid #bba3f6;
  border-radius: 5px;
  padding: 10px 15px;
  margin-left: 50px;
}

#Section-1 header .burger {
  display: none;
  width: 42px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 5%;
  top: 40px;
}

#Section-1 header .burger span {
  display: block;
  height: 4px;
  width: 100%;
  background: black;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#Section-1 header .burger span::before, #Section-1 header .burger span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background: black;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#Section-1 header .burger span::before {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

#Section-1 header .burger span::after {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

#Section-1 header .burger.active span {
  background: transparent;
}

#Section-1 header .burger.active span::before {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

#Section-1 header .burger.active span::after {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

#Section-1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  min-height: 94vh;
  margin: 0 auto;
  padding: 0 20px 0 20px;
}

#Section-1 .container .banner-info h1 {
  font-size: 5em;
  color: #1c0d43;
}

#Section-1 .container .banner-info blockquote {
  margin: 25px 0 35px 0;
  font-size: 1.5em;
  font-weight: 300;
  color: #9e9aad;
  line-height: 1.5;
}

#Section-1 .container .banner-info a {
  display: inline-block;
  color: whitesmoke;
  background: #8043fa;
  font-size: 1.2em;
  border-radius: 5px;
  padding: 15px 20px;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  #Section-1 .banner-img {
    text-align: right;
  }
  #Section-1 .banner-img img {
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  #Section-1 {
    padding: 0 10px 0 10px;
  }
  #Section-1 header .left {
    display: none;
  }
  #Section-1 header .right {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  #Section-1 header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  #Section-1 header nav a {
    padding: 10px 0;
  }
  #Section-1 header nav.show {
    opacity: 1;
  }
  #Section-1 header .burger {
    display: block;
  }
  #Section-1 header.show {
    position: fixed;
    top: 0;
    right: 0;
    background: #f1effb;
    width: 100%;
    height: 100vh;
  }
  #Section-1 .container {
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #Section-1 .container .banner-info {
    text-align: center;
    margin-top: 35px;
  }
  #Section-1 .container .banner-info h1 {
    font-size: 2.5em;
  }
  #Section-1 .container .banner-info blockquote {
    font-size: 1.5em;
  }
  #Section-1 .container .banner-info a {
    display: inline-block;
    color: whitesmoke;
    background: #8043fa;
    font-size: 1.2em;
    border-radius: 5px;
    padding: 15px 20px;
  }
  #Section-1 .container .banner-img {
    margin-top: 35px;
    text-align: center;
  }
  #Section-1 .container .banner-img img {
    width: 100%;
  }
}

#Section-2 {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  padding: 0 20px 0 20px;
}

#Section-2 h2 {
  font-size: 3.5em;
  color: #1c0d43;
}

#Section-2 .container {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Section-2 .container .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 200px;
  margin-bottom: 25px;
}

#Section-2 .container .block .block-img {
  height: 150px;
  width: 150px;
  background: #f6f3fe;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Section-2 .container .block .block-img img {
  width: 70%;
}

#Section-2 .container .block span {
  display: block;
  margin: 15px 0 20px 0;
  color: #1c0d43;
  font-size: 1.25em;
  font-weight: 700;
}

#Section-2 .container .block blockquote {
  color: #9e9aad;
  line-height: 1.5;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  #Section-2 h2 {
    font-size: 2em;
  }
  #Section-2 .container .block span {
    font-size: 1.75em;
  }
}

#Footer {
  background: #7f43fa;
  padding: 20px 20px;
  margin-top: 50px;
}

#Footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: whitesmoke;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 20px;
}

#Footer .container .bloc {
  max-width: 33%;
}

#Footer .container .bloc span {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
}

#Footer .container .bloc p {
  line-height: 1.5;
}

#Footer .container .bloc-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
}

#Footer .container .bloc-menu .bloc {
  max-width: 33%;
}

#Footer .container .bloc-menu .bloc span {
  font-size: 1.1em;
  display: block;
  color: #1c0d43;
}

#Footer .container .bloc-menu .bloc ul li {
  margin: 10px 0;
}

#Footer .container .bloc-menu .bloc span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
}

@media screen and (max-width: 425px) {
  #Footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #Footer .container .bloc {
    max-width: 100%;
    margin-bottom: 20px;
  }
  #Footer .container .bloc-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
  }
  #Footer .container .bloc-menu .bloc {
    max-width: auto;
  }
  #Footer .container .bloc-menu .bloc span {
    font-size: 1.1em;
    display: block;
    color: #1c0d43;
  }
  #Footer .container .bloc-menu .bloc ul li {
    margin: 10px 0;
  }
  #Footer .container .bloc-menu .bloc span {
    display: block;
    font-size: 1.1em;
    font-weight: 700;
  }
}
/*# sourceMappingURL=styles.css.map */