* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
}

::selection {
  color: #fff;
  background-color: #6f95b0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

html,
body {
  font-family: "Exo", sans-serif;
}
html #top,
body #top {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  border: 0;
  height: 5rem;
  width: 5rem;
  padding: 1rem;
  color: #fff;
  background-color: #6f95b0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s;
}
html #top:hover,
body #top:hover {
  cursor: pointer;
  background-color: #222;
}
html #top.show,
body #top.show {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
}

section:not(#banner) {
  max-width: 117.2rem;
  width: 100%;
  padding: 0 1.5rem;
  padding-bottom: 3rem;
  margin: auto;
}
section:not(#banner) h2 {
  padding: 3rem 0;
  font-size: 3rem;
  text-align: center;
  color: #565656;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section:not(#banner) h2 {
    font-size: 2.4rem;
  }
}

#header {
  top: 0;
  position: sticky;
  background: #fff;
  z-index: 1;
  overflow-x: hidden;
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.1);
}
#header img {
  width: 12.1rem;
  height: 5.6rem;
}
#header nav {
  display: flex;
  justify-content: space-between;
  padding: 2rem 1.5rem;
}
#header ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 2rem 0;
}
#header ul li.active a {
  color: #6f95b0;
}
#header ul li.active a::after {
  width: 100%;
}
#header ul a {
  display: block;
  position: relative;
  font-size: 1.6rem;
  color: #565656;
  transition: 0.3s;
}
#header ul a::after {
  content: "";
  width: 0%;
  height: 0.2rem;
  display: block;
  margin: auto;
  transition: 0.3s;
  background: #d9e8f3;
}
#header ul a:hover {
  color: #6f95b0;
}
#header ul a:hover::after {
  width: 100%;
}
#header .menu {
  display: none;
}
@media screen and (max-width: 948px) {
  #header ul {
    background-color: #fff;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 100vw;
    top: 0;
    margin-top: 0;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
    z-index: 9999;
  }
  #header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow-x: hidden;
  }
  #header .menu .close {
    position: absolute;
    right: -10rem;
    opacity: 0;
  }
  #header .menu ion-icon {
    color: #565656;
    transition: 0.3s;
  }
  #header .menu ion-icon:hover {
    color: #6f95b0;
    cursor: pointer;
  }
  #header.open ul {
    left: 0;
  }
  #header.open .menu .close {
    right: 0;
    opacity: 1;
    z-index: 99999;
  }
}

#welcome {
  background-color: #d9e8f3;
  color: #878889;
  text-align: right;
  font-size: 1.4rem;
  padding: 0.3rem 1.5rem;
}

main header {
  margin: 6rem auto 0;
  max-width: 117.2rem;
  padding: 0 1.5rem;
}
main header h1 {
  color: #303030;
  font-size: 2.6rem;
  font-weight: 400;
}
main header p {
  color: #666666;
  font-size: 1.6rem;
  font-weight: 300;
}

main header {
  margin-bottom: 3rem;
}
main section {
  display: flex;
  gap: 3rem;
}
main section .map {
  height: 31.5rem;
  flex: 1;
}
main section iframe {
  height: 100%;
  width: 100%;
}
main #side-content {
  flex: 1;
}
main #side-content h3 {
  color: #565656;
  font-weight: normal;
  font-size: 1.7rem;
  line-height: 1.7rem;
  line-height: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
main #side-content h4 {
  margin-bottom: 0.5rem;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.4rem;
  line-height: 18px;
  font-weight: 400;
}
main #side-content p,
main #side-content address {
  color: #666666;
  font-size: 1.4rem;
  font-style: normal;
}
main #side-content div {
  margin-bottom: 2rem;
}
main #side-content div:last-of-type a,
main #side-content div:last-of-type p {
  color: #000;
}
@media screen and (max-width: 940px) {
  main section {
    flex-direction: column;
    align-items: center;
  }
  main section #side-content,
  main section .map {
    flex: unset;
  }
  main section .map {
    width: 100%;
  }
  main section #side-content {
    align-self: flex-start;
  }
}

#footer {
  margin-top: auto;
  background-color: #d9e8f3;
}
#footer .container {
  padding-top: 6rem;
  padding-bottom: 0;
}
#footer .container span,
#footer .container li {
  display: block;
  color: #565656;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  padding-bottom: 0.3rem;
}
#footer .content {
  display: flex;
  margin-bottom: 3rem;
}
#footer img {
  display: block;
  max-height: 4.5rem;
  margin-bottom: 3rem;
}
#footer .col {
  color: #565656;
  flex: 1;
}
#footer .col h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  padding-bottom: 1.5rem;
}
#footer .col ul {
  list-style: none;
}
#footer .col a {
  color: #565656;
}
#footer .copy {
  padding-top: 5.5rem;
  padding-bottom: 2.5rem;
}
#footer .copy p,
#footer .copy a {
  font-size: 1.26rem;
  color: #565656;
}
#footer .copy a:hover {
  color: #919191;
}
@media screen and (max-width: 768px) {
  #footer .container {
    text-align: center;
  }
  #footer img {
    margin-left: auto;
    margin-right: auto;
  }
  #footer .content {
    flex-direction: column;
  }
  #footer .col {
    margin-top: 3rem;
    text-align: center;
  }
}

/*# sourceMappingURL=our-offices.css.map */
