@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Monserrat", sans-serif;
  font-weight: 300;
  margin: 0px;
  font-size: 1vw;
  color: #FFFFFF;
}
body .center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
body .segment {
  width: 35%;
}
body .segment p {
  line-height: 130%;
}
body h1 {
  margin: 50px 0;
}
body #home {
  color: #FFFFFF;
  background: linear-gradient(rgba(15, 20, 40, 0.4), #0f1528), url("media/mountains3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body #home #intro-text {
  text-align: center;
}
body #home #intro-text .info-times {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
  color: #E57373;
  font-size: 1vw;
  display: inline-flex;
}
body #home #intro-text .phonenumber {
  height: 64px;
  display: inline-flex;
  position: relative;
}
body #home #intro-text .phonenumber .image {
  padding-right: 15px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}
body #home #intro-text .phonenumber p {
  display: inline-flex;
  align-items: center;
  margin: 0 15px;
}
body #home #intro-text .phonenumber .number {
  font-size: 2vw;
}
body #home #intro-text .phonenumber .info {
  font-size: 11px;
  position: absolute;
  bottom: 0;
  left: 81px;
  display: none;
}
body #personal {
  text-align: center;
  color: #0f1528;
  padding-top: 50px;
}
body #personal .segment {
  width: 80%;
}
body #personal .container {
  display: flex;
}
body #personal .container .content1 {
  width: 250%;
}
body #personal .container p {
  text-align: left;
  margin: 0;
  padding: 0 20px;
}
body #personal .image-container {
  position: relative;
}
body #personal .image-container .image {
  width: 100%;
  height: auto;
}
body #personal .image-container .overlay {
  position: absolute;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(rgba(15, 20, 40, 0) 200px, #0f1528);
  color: #2c89cc;
}
body #personal .image-container .overlay .overlay-text {
  width: 100%;
  font-size: 1.6vw;
  padding-bottom: 20px;
}
body .background-img {
  background: linear-gradient(rgba(15, 20, 40, 0.6), rgba(15, 20, 40, 0.6)), url(media/architecture4.webp);
  background-position: top;
  background-size: 100%;
}
body #services {
  text-align: center;
  padding-top: 50px;
}
body #services .mobile {
  display: none;
}
body #services .segment {
  width: 100%;
}
body #services .container {
  display: inline-flex;
}
body #services .content {
  width: 30%;
  margin: 0 60px;
}
body #services .content p {
  text-align: justify;
}
body #contact h1 {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
body #contact .segment {
  width: 30%;
  height: auto;
  background-color: #0f1528;
  padding: 0 20px;
}
body #contact .info {
  text-transform: uppercase;
  font-size: 0.6vw;
  font-weight: bold;
  color: #2c89cc;
  margin-bottom: 0;
}
body #contact .content {
  margin-top: 0;
}
body .legalNotice {
  line-height: 130%;
  color: #0f1528;
  padding: 100px 200px;
}

header {
  color: #FFFFFF;
}
header .logo-and-hotline {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #2c89cc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo-and-hotline a {
  text-decoration: none;
  color: unset;
  display: inline-flex;
}
header .logo-and-hotline .left {
  margin-left: 20px;
}
header .logo-and-hotline .left .sign {
  font-size: 2em;
  padding-right: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}
header .logo-and-hotline .left .logo {
  padding-left: 10px;
}
header .logo-and-hotline .right {
  margin-right: 20px;
  color: #E57373;
  font-size: 0.9vw;
}
header .logo {
  color: #2c89cc;
  font-weight: bold;
  text-transform: none;
}
header #topNav {
  position: fixed;
  width: 100%;
  font-size: 1.2vw;
  z-index: 99;
  text-transform: uppercase;
  background-color: #0f1528;
}
header #topNav ul {
  list-style-type: none;
  margin: 0;
  padding: 20px 10px;
  overflow: hidden;
  text-align: center;
  border-bottom: 2px solid #333948;
}
header #topNav li {
  display: inline;
}
header #topNav li a {
  display: inline-block;
  color: #FFFFFF;
  text-align: center;
  margin: 14px 30px;
  text-decoration: none;
  position: relative;
}
header #topNav li a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  transition: transform 0.25s ease-out;
  transform-origin: center;
}
header #topNav li a:hover::after {
  transform: scaleX(1);
}
header #menuToggle {
  display: none;
}

footer {
  border-top: 2px solid #333948;
  height: auto;
  background-color: #0f1528;
  font-size: 0.7vw;
}
footer p {
  margin: 0;
}
footer a {
  color: #FFFFFF;
}
footer .container {
  display: flex;
  justify-content: center;
}
footer .container .content {
  margin: 60px;
}
footer .end {
  text-align: center;
  padding: 20px;
  font-size: 0.6vw;
  border-top: 2px solid #333948;
}

@media only screen and (max-width: 1200px) {
  body {
    font-size: unset;
  }
  body .segment {
    width: 100%;
  }
  body header {
    /*
    * Just a quick hamburger
    */
    /* 
    * Transform all the slices of hamburger
    * into a crossmark.
    */
    /*
    * But let's hide the middle one.
    */
    /*
    * Ohyeah and the last one should go the other direction
    */
    /*
    * Make this absolute positioned
    * at the top left of the screen
    */
  }
  body header #topNav {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #333948;
  }
  body header #topNav .logo {
    font-size: 20px;
    position: unset;
    top: auto;
    left: auto;
  }
  body header #topNav .sign {
    font-size: 40px;
  }
  body header #topNav .logo-and-hotline {
    width: auto;
  }
  body header #topNav .right {
    display: none;
  }
  body header #topNav .desktop {
    display: none;
  }
  body header #menuToggle {
    display: block;
    position: absolute;
    top: 36px;
    right: 36px;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
         user-select: none;
  }
  body header #menuToggle a {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
  }
  body header #menuToggle a:hover {
    color: #2c89cc;
  }
  body header #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    -webkit-touch-callout: none;
  }
  body header #menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  body header #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }
  body header #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  body header #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }
  body header #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  body header #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }
  body header #menu {
    border: 0;
    text-align: left;
    position: absolute;
    width: 200px;
    margin: -100px 0 0 -100px;
    padding-left: 20px;
    padding-top: 125px;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  body header #menu li {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }
  body header #menuToggle input:checked ~ ul {
    transform: none;
  }
  body #services .desktop {
    display: none;
  }
  body #services .mobile {
    display: block;
  }
  body #home .number {
    font-size: 26px !important;
  }
  body #home .info-times {
    font-size: 17px !important;
  }
  body #personal {
    padding-top: 100px;
    height: auto;
  }
  body #personal .segment {
    width: 100%;
  }
  body #personal .container {
    height: auto;
    display: inline;
    vertical-align: middle;
  }
  body #personal .container .content1 {
    width: auto;
  }
  body #personal .container .overlay {
    background: 0;
  }
  body #personal .container .overlay .overlay-text {
    font-size: 5vw;
  }
  body #services {
    padding: 0 20px;
    padding-top: 100px;
  }
  body #services .container {
    display: block;
  }
  body #services .content {
    width: 100%;
    margin: 0;
    text-align: left;
    padding: 0;
  }
  body #contact .segment {
    width: 70%;
  }
  body #contact .info {
    font-size: 12px;
  }
  body .legalNotice {
    padding: 20px;
    padding-top: 100px;
  }
  footer {
    font-size: unset;
  }
  footer .container {
    display: inline;
  }
  footer .end {
    font-size: unset;
  }
}/*# sourceMappingURL=styles.css.map */