body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(0deg, rgba(var(--bs-black-rgb), 0.10) 0%, rgba(var(--bs-black-rgb), 0.10) 100%), linear-gradient(90deg, var(--bs-secondary) 11%, var(--bs-primary) 85%);
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-x: hidden;
}

.wrapper:before,
.wrapper:after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.wrapper:before {
  z-index: -1;
  top: calc(50% + 90px);
  transform: translateY(-50%);
  width: 465px;
  max-width: 100%;
  height: 325px;
  background-image: url('../images/pattern.svg');
  background-repeat: no-repeat;
}

.wrapper:after {
  top: 80px;
  left: 100px;
  width: 1757px;
  max-width: 100%;
  height: 823px;
  max-height: 100%;
  background-image: url('../images/elements.svg');
}

@media only screen and (max-width : 1199px) {
  .wrapper:after {
    display: none;
  }
}

@media only screen and (max-width : 767px) {
  .wrapper:before {
    display: none;
  }
}

.inner {
  display: flex;
  align-items: center;
  height: 100%;
}

header {
  position: relative;
  padding: 30px 0;
}

header:before {
  position: absolute;
  content: '';
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-image: url('../images/wave.svg');
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media only screen and (max-width : 1199px) {
  header {
    padding: 15px 0;
  }

  header img {
    max-height: 45px;
  }

  header:before {
    height: 35px;
  }
}

.inner {
  padding: 225px 0 180px 0;
}

.inner a:not(:hover) {
  color: var(--bs-white);
}

.inner address {
  margin: 55px 0 60px 0;
}

.inner address .col-address {
  margin-top: 10px;
}

@media only screen and (max-width : 1199px) {
  .inner {
    padding: 75px 0 60px 0;
  }

  .inner address {
    margin: 20px 0 30px 0;
  }
}

@media only screen and (max-width : 576px) {
  .inner address img {
    max-width: 16px;
  }

  .inner address span {
    font-size: 0.875rem;
  }

  .inner address a .row {
    position: relative;
    padding-bottom: 22.39px;
  }

  .inner address span:not(.h4) {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}

#copyright {
  padding: 30px 0;
  background: linear-gradient(90deg, var(--bs-secondary) 11%, var(--bs-primary) 85%);
}

#copyright a:not(:hover) {
  color: var(--bs-white);
}

@media only screen and (max-width : 1199px) {
  #copyright {
    padding: 10px 0;
  }
}
