@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::selection {
  background: none;
  color: #b8860b;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

html {
  font-size: 12px;
  overflow: hidden;
  scroll-behavior: smooth;
}

body {
  background: #fafafa;
  color: #010101;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  transition: all 0.4s ease;
}
body a {
  color: #010101;
}
body .light-logo {
  display: none;
}
body .nav {
  background: rgba(250, 250, 250, 0.3) !important;
}
body.bg-black {
  background: #010101;
  color: #fafafa;
}
body.bg-black .menu-responsive {
  background: #010101;
}
body.bg-black .nav {
  background: rgba(1, 1, 1, 0.3) !important;
}
body.bg-black a {
  color: #fafafa;
}
body.bg-black .nav-logo.dark {
  display: none !important;
}
body.bg-black .nav-logo.light {
  display: block !important;
}
body.bg-black .dark-logo {
  display: none !important;
}
body.bg-black .light-logo {
  display: block !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 300;
}

h1 {
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
}

.text-small {
  font-size: 0.8rem;
}

.text-extra-small {
  font-size: 0.64rem;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

.font-secondary {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-5 {
  opacity: 0.5;
}

.container {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 17px;
  }
  .container {
    width: 1140px;
  }
}
@media (min-width: 1600px) {
  html {
    font-size: 20px;
  }
  .container {
    width: 1300px;
  }
}
.link {
  cursor: pointer;
  font-size: 2rem;
  position: relative;
  white-space: nowrap;
  color: #010101;
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: "";
  /* show by default */
}

.link--io:hover {
  transition: all 0.3s ease-in-out;
  color: #b8860b;
}

.link--io.active {
  transition: all 0.3s ease-in-out;
  color: #b8860b;
}

.link--io::before {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  color: #b8860b;
}

.link--io:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  color: #b8860b;
}

.link--io.active::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  color: #b8860b;
}

.link--io::after {
  content: "";
  top: calc(100% + 4px);
  transform-origin: 0% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  color: #b8860b;
}

.link--io:hover::after {
  transform-origin: 100% 50%;
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  color: #b8860b;
}

.link--io.active::after {
  transform-origin: 100% 50%;
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  color: #b8860b;
}

@media (min-width: 992px) {
  .link {
    font-size: 1.1rem;
  }
}
.button {
  pointer-events: auto;
  cursor: pointer;
  background: #fafafa;
  border: none;
  padding: 1.5rem 3rem;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
}
.button.secondary {
  background: #b8860b;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--hyperion {
  font-weight: 400;
  padding: 0.7rem 1rem;
  border: 1px solid #b8860b;
  overflow: hidden;
  color: #fafafa;
}

.button--hyperion span {
  display: block;
  position: relative;
}

.button--hyperion > span {
  overflow: hidden;
}

.button--hyperion > span > span {
  overflow: hidden;
  color: #fafafa;
}

.button--hyperion.secondary > span > span {
  overflow: hidden;
  color: #b8860b;
}

.button--hyperion:hover > span > span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
  color: #b8860b;
}

.button--hyperion.secondary:hover > span > span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
  color: #fafafa;
}

@keyframes MoveUpInitial {
  to {
    transform: translate3d(0, -105%, 0);
  }
}
@keyframes MoveUpEnd {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.button--hyperion::before {
  content: "";
  background: #b8860b;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
}

.button--hyperion.secondary::before {
  content: "";
  background: #fafafa;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
}

.button--hyperion:hover::before {
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease-in-out;
  font-size: 1.25rem;
}
.btn span:first-child {
  position: relative;
  transition: color 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 5;
}
.btn span:last-child {
  display: block;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
  top: 20%;
  transform: translateY(225%);
}
.btn:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 103%;
  height: 100%;
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 9;
}
.btn:hover span:last-child {
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.48, 0, 0.12, 1);
}
.btn:hover:after {
  transform: skewY(9.3deg) scaleY(2);
}

.btn-black {
  background: #010101;
  color: #fafafa;
}
.btn-black span:first-child {
  color: #fafafa;
}
.btn-black span:last-child {
  color: #010101;
}
.btn-black:after {
  background: white;
}

.btn-white {
  background: white;
  color: #010101;
}
.btn-white span:first-child {
  color: #010101;
}
.btn-white span:last-child {
  color: #fafafa;
}
.btn-white:after {
  background: #010101;
}

.section {
  margin: 5rem 0;
  padding: 5rem 0;
}
.section .container h1 {
  margin-top: 3rem;
  margin-bottom: 5rem;
}

body .line {
  width: 100%;
  height: 1px;
  background: #010101;
  opacity: 0.1;
}
body.bg-black .line {
  background: #fafafa;
}

.text-align-justify {
  text-align: justify;
}

.nav {
  position: fixed;
  width: 100%;
  padding: 1rem 10%;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.nav-wrapper .nav-logo {
  width: 180px;
}
.nav-wrapper .nav-logo.light {
  display: none;
}
.nav-wrapper .nav-links {
  display: none;
}
.nav-wrapper .nav-links .nav-link-item {
  display: flex;
  margin: 0 1rem;
}

.burger-menu {
  cursor: pointer;
  outline: 0;
  border: none;
  background: none;
  z-index: 99;
}
.burger-menu span {
  display: block;
  width: 24px;
  height: 1px;
  background: #010101;
  margin: 5px 0;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.burger-menu.active span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.burger-menu.active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.menu-responsive {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background: #fafafa;
  transition: transform 1s cubic-bezier(0.9, 0.12, 0.2, 1);
  transform: translateY(-100%);
  z-index: -1;
}
.menu-responsive .menu-responsive-links {
  text-align: center;
}
.menu-responsive .menu-responsive-links .menu-responsive-link {
  margin-bottom: 1rem;
  font-size: 4rem;
}
.menu-responsive .menu-responsive-links .menu-responsive-link.link-sm {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.menu-responsive .menu-responsive-links .menu-responsive-link.link-sm .link {
  margin: 1rem 1rem;
}
.menu-responsive.active {
  transform: translateY(0);
}

body.bg-black .burger-menu span {
  background: #d7c9c2;
}
body.bg-black .menu-responsive .menu-responsive-links .menu-responsive-link .link span:first-child {
  color: #010101;
}

@media (min-width: 992px) {
  .nav-wrapper .nav-logo {
    width: 250px;
  }
  .nav-wrapper .nav-links {
    display: flex;
  }
  .menu-responsive {
    display: none;
  }
  .burger-menu {
    display: none;
  }
}
.hero {
  position: relative;
}
.hero .container .header-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container .header-wrapper h5 {
  margin: 1rem 0;
}
.hero .container .header-wrapper .headline {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
}
.hero .container .header-wrapper .headline .breakline-desktop {
  display: none;
}
.hero .container .header-wrapper .buttons-wrapper {
  margin-top: 2rem;
}
.hero .container .header-wrapper .buttons-wrapper .button {
  margin-right: 1rem;
}
.hero .container .header-wrapper img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 30%;
  width: auto;
  z-index: -1;
}
.hero .social {
  position: absolute;
  right: 1rem;
  bottom: 2rem;
}
.hero .social a {
  display: block;
  margin: 0.8rem 0;
  font-size: 1.2rem;
  color: #010101;
  transition: all 0.2s ease-in-out;
}
.hero .social a:hover {
  color: #b8860b;
}

.language {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  background: #010101;
  transform: translateY(-50%);
}
.language .language-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
.language .language-wrapper .language-link {
  text-align: center;
  color: #fafafa;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}
.language .language-wrapper .language-link:hover {
  color: #b8860b;
}
.language .language-wrapper .language-line {
  width: 1px;
  height: 1rem;
  background: #fafafa;
  margin: 0.5rem 0;
}

@media (min-width: 576px) {
  .hero .container .header-wrapper .headline {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.3;
  }
  .hero .container .header-wrapper .headline .breakline-desktop {
    display: block;
  }
  .hero .container .header-wrapper .headline .breakline-mobile {
    display: none;
  }
  .hero .container .header-wrapper img {
    height: 40%;
  }
  .hero .social {
    left: 1rem;
  }
}
@media (min-width: 768px) {
  .hero .container .header-wrapper .headline {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.3;
  }
  .hero .container .header-wrapper img {
    height: 45%;
  }
  .language {
    display: flex;
  }
}
@media (min-width: 992px) {
  .hero .container .header-wrapper .headline {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.3;
    width: 70%;
  }
  .hero .container .header-wrapper img {
    height: 90%;
  }
}
.loading-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #010101;
  color: #fafafa;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: top;
}
.loading-screen .loading-screen-text-wrapper {
  display: grid;
  text-align: center;
}
.loading-screen .loading-screen-text-wrapper p {
  font-size: 1.5rem;
}
.loading-screen .loading-screen-text-wrapper p:first-child {
  grid-row: 1/2;
  grid-column: 1/2;
}
.loading-screen .loading-screen-text-wrapper p:last-child {
  grid-row: 1/2;
  grid-column: 1/2;
  opacity: 0;
}

.work-section .container .work-gallery .work-gallery-item {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 10rem;
}
.work-section .container .work-gallery .work-gallery-item img {
  margin-bottom: 1.5rem;
}
.work-section .container .work-gallery .work-gallery-item .description div {
  margin-bottom: 1.5rem;
}
.work-section .container .work-gallery .work-gallery-item .description div h3 {
  margin-bottom: 0.5rem;
}
.work-section .container .work-gallery .work-gallery-item .description div h5 {
  margin-bottom: 1rem;
}
.work-section .container .work-gallery .work-gallery-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .work-section .container .work-gallery .work-gallery-item {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
  .work-section .container .work-gallery .work-gallery-item img {
    margin: auto 0;
  }
  .work-section .container .work-gallery .work-gallery-item img.grid-col-2 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .work-section .container .work-gallery .work-gallery-item .description.grid-col-1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.about-section .container .about-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
.about-section .container .about-wrapper .about-box {
  width: 80%;
}
.about-section .container .about-wrapper .about-box h4 {
  margin-bottom: 1rem;
}
.about-section .container .about-wrapper .about-box h5 {
  line-height: 1.5;
}
.about-section .container .about-wrapper .about-box h5 a .fa-file-download {
  margin-right: 0.5rem;
}

@media (min-width: 992px) {
  .about-section .container .about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
  .about-section .container .about-wrapper .about-box {
    width: 100%;
  }
  .about-section .container .about-wrapper .about-box h4 {
    margin-bottom: 1rem;
  }
  .about-section .container .about-wrapper .about-box h5 {
    line-height: 1.5;
  }
}
.skills-section .container .skills-header span {
  position: relative;
  display: inline-block;
}
.skills-section .container .skills-header span .div-2,
.skills-section .container .skills-header span .div-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.skills-section .container .skills-header span .div-1 {
  animation: div1 7s infinite;
}
.skills-section .container .skills-header span .div-2 {
  animation: div2 7s infinite;
}
.skills-section .container .skills-header span .div-3 {
  animation: div3 7s infinite;
}
.skills-section .container .skills-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
.skills-section .container .skills-wrapper .skill-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.skills-section .container .skills-wrapper .skill-box p {
  margin-top: 1rem;
}

@keyframes div1 {
  0%, 11% {
    opacity: 0;
  }
  11%, 22% {
    opacity: 1;
  }
  22%, 33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes div2 {
  0%, 33% {
    opacity: 0;
  }
  33%, 44% {
    opacity: 0;
  }
  44%, 55% {
    opacity: 1;
  }
  55%, 66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes div3 {
  0%, 66% {
    opacity: 0;
  }
  66%, 77% {
    opacity: 0;
  }
  77%, 95% {
    opacity: 1;
  }
  95%, 100% {
    opacity: 0;
  }
}
@media (min-width: 576px) {
  .skills-section .container .skills-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem;
  }
}
@media (min-width: 768px) {
  .skills-section .container .skills-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4rem;
  }
}
@media (min-width: 992px) {
  .skills-section .container .skills-wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5rem;
  }
}
.contact-section .container .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
.contact-section .container .contact-wrapper .contact-info .box {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-bottom: 1rem;
}
.contact-section .container .contact-wrapper .contact-info .box h4 {
  margin-bottom: 1rem;
  margin-right: auto;
}
.contact-section .container .contact-wrapper .contact-info .box a {
  margin-right: auto;
  margin-bottom: 1.2rem;
  position: relative;
}
.contact-section .container .contact-wrapper .contact-info .box a:after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #b8860b;
  transition: all 0.3s ease;
  transform-origin: left;
  transform: scaleX(0);
}
.contact-section .container .contact-wrapper .contact-info .box a:hover {
  color: #b8860b;
}
.contact-section .container .contact-wrapper .contact-info .box a:hover:after {
  transform: scaleX(1);
}
.contact-section .container .contact-wrapper .contact-info .box a .margin-3px {
  margin-right: 3px;
}
.contact-section .container .contact-wrapper .contact-form-wrapper {
  display: flex;
  flex-direction: column;
  background: #010101;
  color: #fafafa;
  padding: 3rem 5rem;
}
.contact-section .container .contact-wrapper .contact-form-wrapper h4 {
  align-self: center;
  margin-bottom: 2rem;
}
.contact-section .container .contact-wrapper .contact-form-wrapper form .form-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.contact-section .container .contact-wrapper .contact-form-wrapper form .form-box label {
  margin-bottom: 0.5rem;
}
.contact-section .container .contact-wrapper .contact-form-wrapper form .form-box .form-control {
  padding: 0.7rem 0.5rem;
  font-size: 1rem;
  background: #171717;
  color: #fafafa;
  border: none;
  border-bottom: 1px solid #171717;
  transition: background-color 0.2s ease-in-out;
}
.contact-section .container .contact-wrapper .contact-form-wrapper form .form-box .form-control:focus {
  background: #373737;
  border-bottom: 1px solid #fafafa;
  outline: none;
}
.contact-section .container .contact-wrapper .contact-form-wrapper form .form-box button {
  margin: 0 auto;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
}

@media (min-width: 992px) {
  .contact-section .container .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
  }
  .contact-section .container .contact-wrapper .contact-info .box {
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-bottom: 1rem;
  }
  .contact-section .container .contact-wrapper .contact-info .box h4 {
    margin-bottom: 1rem;
    margin-right: auto;
  }
  .contact-section .container .contact-wrapper .contact-info .box a {
    margin-right: auto;
    margin-bottom: 1.2rem;
    position: relative;
  }
  .contact-section .container .contact-wrapper .contact-info .box a:after {
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    height: 1px;
    width: 100%;
    background: #b8860b;
    transition: all 0.3s ease;
    transform-origin: left;
    transform: scaleX(0);
  }
  .contact-section .container .contact-wrapper .contact-info .box a:hover:after {
    transform: scaleX(1);
  }
  .contact-section .container .contact-wrapper .contact-form-wrapper {
    display: flex;
    flex-direction: column;
    background: #010101;
    color: #fafafa;
    padding: 3rem 5rem;
  }
  .contact-section .container .contact-wrapper .contact-form-wrapper h4 {
    align-self: center;
    margin-bottom: 2rem;
  }
  .contact-section .container .contact-wrapper .contact-form-wrapper form .form-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .contact-section .container .contact-wrapper .contact-form-wrapper form .form-box label {
    margin-bottom: 0.5rem;
  }
  .contact-section .container .contact-wrapper .contact-form-wrapper form .form-box .form-control {
    padding: 0.7rem 0.5rem;
    font-size: 1rem;
    background: #171717;
    color: #fafafa;
    border: none;
    border-bottom: 1px solid #171717;
    transition: background-color 0.2s ease-in-out;
  }
  .contact-section .container .contact-wrapper .contact-form-wrapper form .form-box .form-control:focus {
    background: #373737;
    border-bottom: 1px solid #fafafa;
    outline: none;
  }
  .contact-section .container .contact-wrapper .contact-form-wrapper form .form-box button {
    margin-right: auto;
    border: none;
    cursor: pointer;
  }
}
.footer-section {
  padding: 5rem 0;
  margin: 0;
}
.footer-section .container .footer-wrapper img {
  width: 120px;
  margin-bottom: 3rem;
}
.footer-section .container .footer-wrapper .links-wrapper {
  margin-bottom: 3rem;
}
.footer-section .container .footer-wrapper .links-wrapper a {
  margin-right: auto;
  margin-bottom: 1.2rem;
  position: relative;
}
.footer-section .container .footer-wrapper .links-wrapper a:after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #b8860b;
  transition: all 0.3s ease;
  transform-origin: left;
  transform: scaleX(0);
}
.footer-section .container .footer-wrapper .links-wrapper a:hover {
  color: #b8860b;
}
.footer-section .container .footer-wrapper .links-wrapper a:hover:after {
  transform: scaleX(1);
}
.footer-section .container .footer-wrapper .links-wrapper a .margin-3px {
  margin-right: 3px;
}
.footer-section .container .footer-wrapper .links-wrapper .contact-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.footer-section .container .footer-wrapper .links-wrapper .contact-wrapper .link {
  color: #010101;
  margin-right: auto;
  margin-bottom: 1rem;
}
.footer-section .container .footer-wrapper .links-wrapper .navigation-links {
  display: flex;
  flex-direction: column;
}
.footer-section .container .footer-wrapper .links-wrapper .navigation-links .link {
  display: block;
  color: #010101;
  margin-left: auto;
  margin-bottom: 1rem;
}
.footer-section .container .footer-wrapper .rights {
  text-align: center;
  color: #010101;
  margin-bottom: 1rem;
}
.footer-section .container .footer-wrapper .signature {
  text-align: center;
  color: #010101;
}
.footer-section .container .footer-wrapper .signature a {
  color: #010101;
}
.footer-section .container .footer-wrapper .signature a:hover {
  color: #b8860b;
}

@media (min-width: 768px) {
  .footer-section .container .footer-wrapper .links-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .footer-section .container .footer-wrapper .links-wrapper .contact-wrapper {
    margin-bottom: 0;
  }
  .footer-section .container .footer-wrapper .links-wrapper .navigation-links {
    flex-direction: column;
  }
  .footer-section .container .footer-wrapper .links-wrapper .navigation-links .link {
    margin-top: auto;
    margin-left: 1rem;
  }
}
.thanks-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.thanks-section .container .thanks-wrapper h2 {
  margin-bottom: 3rem;
}
.thanks-section .container .thanks-wrapper h5 {
  margin-bottom: 1rem;
}
.thanks-section .container .thanks-wrapper a {
  margin-top: 2rem;
}

.diagnostics-section .diagnostics-wrapper {
  display: flex;
  flex-direction: column;
}
.diagnostics-section .diagnostics-wrapper p {
  margin-bottom: 3rem;
}
.diagnostics-section .diagnostics-wrapper img {
  width: 50%;
  align-self: center;
}

@media (min-width: 768px) {
  .diagnostics-section .diagnostics-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
  .diagnostics-section .diagnostics-wrapper p {
    margin-bottom: 0;
  }
  .diagnostics-section .diagnostics-wrapper img {
    width: 60%;
    margin-left: auto;
  }
}
.workouts-section {
  background: #010101;
  color: #fafafa;
}
.workouts-section .container .workouts-wrapper {
  display: flex;
  flex-direction: column;
}
.workouts-section .container .workouts-wrapper .card-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}
.workouts-section .container .workouts-wrapper .notice {
  margin-bottom: 5rem;
}
.workouts-section .container .workouts-wrapper a {
  margin: 0 auto;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  color: #010101;
  text-align: center;
  padding: 2rem 2rem;
}
.card h3 {
  margin-bottom: 1rem;
}
.card p {
  margin-bottom: 2rem;
}
.card h4 {
  margin-bottom: 1rem;
}
.card .workout-benefits {
  text-align: left;
  margin: 0 auto;
}
.card .workout-benefits li {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
}
.card .workout-benefits li i {
  margin-right: 0.5rem;
  color: #b8860b;
}
.card .workout-benefits li:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .workouts-section .container .workouts-wrapper .card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 3rem;
  }
}
@media (min-width: 992px) {
  .workouts-section .container .workouts-wrapper .card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 8rem;
  }
}
.benefits-section {
  background: #010101;
  color: #fafafa;
}
.benefits-section .container .benefits-wrapper h3 {
  margin-bottom: 4rem;
}
.benefits-section .container .benefits-wrapper .workout-benefits {
  text-align: left;
  margin: 0 auto;
}
.benefits-section .container .benefits-wrapper .workout-benefits li {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
}
.benefits-section .container .benefits-wrapper .workout-benefits li i {
  margin-right: 0.5rem;
  color: #b8860b;
}
.benefits-section .container .benefits-wrapper .workout-benefits li:last-of-type {
  margin-bottom: 0;
}

.location-section {
  background: #010101;
  color: #fafafa;
}
.location-section .location-wrapper h4 {
  margin-bottom: 1rem;
}
.location-section .location-wrapper p {
  margin-bottom: 1rem;
}
.location-section .location-wrapper p .margin-3px {
  margin-right: 4px;
}
.location-section .location-wrapper iframe {
  margin-top: 2rem;
}

.about-section .container .about-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
.about-section .container .about-wrapper .about-box {
  width: 80%;
}
.about-section .container .about-wrapper .about-box h4 {
  margin-bottom: 1rem;
}
.about-section .container .about-wrapper .about-box h5 {
  line-height: 1.5;
}
.about-section .container .about-wrapper .about-box h5 a .fa-file-download {
  margin-right: 0.5rem;
}

@media (min-width: 992px) {
  .about-section .container .about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
  .about-section .container .about-wrapper .about-box {
    width: 100%;
  }
  .about-section .container .about-wrapper .about-box h4 {
    margin-bottom: 1rem;
  }
  .about-section .container .about-wrapper .about-box h5 {
    line-height: 1.5;
  }
}
.gallery-section .container .gallery-wrapper {
  padding-top: 0;
  line-height: 0;
  column-count: 3;
  column-gap: 1rem;
}
.gallery-section .container .gallery-wrapper figure {
  margin-bottom: 1rem;
  background: white;
}

@media (min-width: 768px) {
  .gallery-section .container .gallery-wrapper {
    column-count: 3;
  }
}
@media (min-width: 992px) {
  .gallery-section .container .gallery-wrapper {
    column-count: 3;
  }
}
.encouragement-section {
  margin: 0;
  padding-bottom: 0;
}
.encouragement-section .container h1 {
  text-align: center;
}
.encouragement-section .container h1 a {
  color: #b8860b;
}
.encouragement-section .container p,
.encouragement-section .container h4 {
  margin-bottom: 0.4rem;
}