@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap");
a.button {
  background-color: rgb(0, 126, 255);
  border-radius: 50px;
  padding: 10px 22px;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-right: 20px;
}
a.button i {
  background-color: #fff;
  color: rgb(0, 126, 255);
  padding: 8px;
  border-radius: 100%;
  margin-right: 10px;
  margin-left: -11px;
}
a.button.button-secondary {
  background-color: rgba(0, 126, 255, 0.5);
}
a.button.button-secondary i {
  color: rgba(0, 126, 255, 0.5);
}
a.button:hover, a.button:focus {
  background-color: #006ad6;
  color: #fff;
  text-decoration: none;
}
a.button:hover i, a.button:focus i {
  background-color: #fff;
  color: #006ad6;
}
a.button.button-secondary:hover, a.button.button-secondary:focus {
  background-color: rgba(0, 126, 255, 0.5);
  color: #fff;
}
a.button.button-secondary:hover i, a.button.button-secondary:focus i {
  color: rgba(0, 126, 255, 0.5);
}

.block.block-home {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.block.block-home:before {
  content: "";
  position: absolute;
  bottom: -350px;
  left: -310px;
  width: 600px;
  height: 600px;
  animation-delay: 1.5s;
  animation: fadeInLeft 2s ease-in-out;
  background-image: url("../img/animation-top.svg");
}
.block.block-home:after {
  content: "";
  position: absolute;
  top: -400px;
  right: -200px;
  width: 600px;
  height: 600px;
  animation-delay: 3s;
  animation: fadeInRight 1.5s ease-in-out;
  background-image: url("../img/animation-top.svg");
  transition: none;
}
.block.block-home .image-wrapper {
  width: 75%;
  margin: 0 auto -150px auto;
  border-radius: 100%;
  overflow: hidden;
  padding: 5px;
  position: relative;
}
.block.block-home .image-wrapper:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  border-radius: 100%;
  left: 0;
  right: 0;
  border: 1px solid rgb(0, 126, 255);
}
.block.block-home .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 100%;
}
.block.block-home .panel-wrapper {
  background-color: #fff;
  border-radius: 20px;
  padding-top: 170px;
}
.block.block-home .panel-wrapper .name {
  text-align: center;
}
.block.block-home .panel-wrapper .job-title {
  text-align: center;
}
.block.block-home .panel-wrapper .contact-items {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block.block-home .panel-wrapper .contact-items li {
  padding: 20px;
}
.block.block-home .panel-wrapper .contact-items li .icon-wrapper {
  display: inline-block;
  transition: transform 0.15s ease-in-out;
}
.block.block-home .panel-wrapper .contact-items li .icon-wrapper:hover, .block.block-home .panel-wrapper .contact-items li .icon-wrapper:focus, .block.block-home .panel-wrapper .contact-items li .icon-wrapper:active {
  transform: scale(1.2);
}
.block.block-home .panel-wrapper .contact-items li .icon-wrapper i {
  font-size: 32px;
  color: rgb(0, 126, 255);
}
.block.block-home .content-wrapper {
  padding-left: 50px;
}
.block.block-home .content-wrapper .small-title {
  font-size: 24px;
  text-transform: uppercase;
  color: rgb(0, 126, 255);
  font-weight: 500;
  font-style: italic;
  text-decoration: none;
}
.block.block-home .content-wrapper h1 {
  font-size: 60px;
}
.block.block-home .content-wrapper h3 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
}
.block.block-home .content-wrapper p {
  font-size: 20px;
  color: #636363;
  margin-bottom: 30px;
}
.block.block-home .content-wrapper .button-wrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .block.block-home .content-wrapper .small-title {
    font-size: 18px;
  }
  .block.block-home .content-wrapper h1 {
    font-size: 40px;
  }
  .block.block-home .content-wrapper h3 {
    font-size: 24px;
  }
  .block.block-home .content-wrapper p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .block.block-home:before, .block.block-home:after {
    display: none;
  }
  .block.block-home .image-wrapper {
    margin-top: 30px;
  }
  .block.block-home .panel-wrapper {
    margin: 0 30px 30px 30px;
  }
  .block.block-home .content-wrapper {
    padding: 30px 0;
    text-align: center;
  }
  .block.block-home .content-wrapper .button-wrapper {
    display: block;
  }
  .block.block-home .content-wrapper .button-wrapper a {
    margin-bottom: 15px;
  }
}
.transition-fade {
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: #dee3ef;
  overscroll-behavior: none;
}
body .container {
  position: relative;
  z-index: 10;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #212428;
  }
  body h1,
  body h2,
  body h3,
  body h4,
  body h5,
  body p {
    color: white !important;
  }
  body .panel-wrapper h3.name {
    color: initial !important;
  }
}/*# sourceMappingURL=style.css.map */