html {
  scroll-behavior: smooth;
}

body {
  background-color: #FEFEFE;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  letter-spacing: 0.7px;
}

p.normal {
  margin: 0px 0px 10px 0px;
}

nav {
  width: 100%;
  background-color: #FEFEFE;
  font-family: 'Spinnaker', sans-serif;
  flex-direction: row;
  flex-wrap: wrap;
}

.wrapper {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 2px;
}

/* .wrapper a {
  padding: 100px;
} */

nav .wrapper .logo {
  width: 241px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  nav .wrapper .logo {
    display: flex;
    align-items: center;
    width: 150px;
  }
}

nav .wrapper .logo img {
  width: 100%;
}

nav .wrapper ul {
  flex: 1;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media screen and (max-width: 767px) {
  nav .wrapper ul {
    flex-wrap: wrap;
  }
  nav .wrapper ul a {
    width: 100%;
    text-align: center;
    padding: 0 5px;
  }
}

nav .wrapper ul li {
  list-style-type: none;
  align-self: center;
  color: #1A2B6D;
  font-size: 16px;
  cursor: pointer;
}

nav .wrapper ul a {
  color: #1A2B6D;
  text-decoration: none;
  align-self: center;
  color: #1A2B6D;
  font-size: 16px;
  cursor: pointer;
}

nav .wrapper ul li.active {
  color: #0083DB;
}

footer {
  display: flex;
  flex-direction: column;
  background-color: #00538B;
  align-items: center;
  justify-content: center;
  padding: 35px 0;
  color: #FEFEFE;
  position: relative;
}

footer a {
  color: #FEFEFE;
}

footer .backToTop {
  color: #FEFEFE;
  font-size: 37px;
  position: absolute;
  right: 35px;
  bottom: 0;
  height: 40px;
  vertical-align: middle;
  line-height: 40px;
  text-decoration: none;
  transform: scaleX(2);
}

.moreButton {
  position: absolute;
  bottom: -15px;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 45px;
  cursor: pointer;
  text-decoration: none;
}

.moreButton span.plus {
  background-color: #00538B;
  width: 35px;
  color: #FEFEFE;
  text-align: center;
  line-height: 35px;
  font-size: 23px;
  transition: background-color 0.2s linear;
}
.moreButton span.plus:hover {
  background-color: #D41317;
}
.moreButton span.text {
  padding: 0 30px;
  background-color: #0083DB;
  color: #FEFEFE;
  line-height: 35px;
  transition: background-color 0.2s linear;
}
.moreButton span.text:hover {
  background-color: #1A2B6D;
}

.button {
  background-color: #2E80B5;
  border: 0;
  color: #FEFEFE;
  font-size: 32px;
  width: 450px;
  padding: 15px 0;
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background-color 0.5s linear;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .button {
    max-width: 100%;
    width: 100%;
    margin: 15px auto;
  }
}

.button::after {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #00538B;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.button:hover {
  background-color: #999997;
}