@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap");
body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
}

.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader span {
  display: inline-block;
  background-color: #D71111;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 8px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: bounce 0.6s infinite alternate;
          animation: bounce 0.6s infinite alternate;
}

.loader span:nth-child(2) {
  background-color: #494949;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes bounce {
  to {
    width: 16px;
    height: 16px;
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
}

@keyframes bounce {
  to {
    width: 16px;
    height: 16px;
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
}

.show-desktop {
  display: none;
}

.container {
  width: 100%;
  overflow-x: hidden;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.navbar {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.27);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.27);
  background: #fff;
}

.navbar .desktop-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.navbar .desktop-menu li {
  display: block;
}

.navbar .desktop-menu li a {
  text-decoration: none;
  color: #000000;
  font-size: 1.2em;
}

.navbar .desktop-menu li a::after {
  content: '';
  display: block;
  background: #000000;
  height: 2px;
  width: 0px;
  -webkit-transition: width .3s;
  transition: width .3s;
}

.navbar .desktop-menu li a:hover::after {
  width: 100%;
  -webkit-transition: width .3s;
  transition: width .3s;
}

.navbar .logo {
  margin-left: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.navbar .logo img {
  width: 200px;
}

.navbar .menu-btn.menucross .line:nth-of-type(1) {
  width: 29px;
  -webkit-transform-origin: 0%;
          transform-origin: 0%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .menu-btn.menucross .line:nth-of-type(2) {
  opacity: 0;
}

.navbar .menu-btn.menucross .line:nth-of-type(3) {
  width: 29px;
  -webkit-transform-origin: 0%;
          transform-origin: 0%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.navbar .menu-btn {
  width: 70px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 13px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.navbar .menu-btn .line {
  width: 40px;
  height: 3px;
  background: #000000;
  display: block;
  margin: 2px auto;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.menu.dropdown {
  height: 40%;
}

.menu.dropdown ul li {
  opacity: 1;
}

.menu {
  position: fixed;
  top: 75px;
  background: #494949;
  z-index: 9999;
  width: 100%;
  height: 0;
  overflow-y: hidden;
  -webkit-transition: height .175s ease-in-out;
  transition: height .175s ease-in-out;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: space-around;
      -ms-flex-align: space-around;
          align-items: space-around;
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu ul li {
  height: 25%;
  opacity: 0;
  -webkit-transition: opacity .090s ease-in-out;
  transition: opacity .090s ease-in-out;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 3vh;
  -webkit-tap-highlight-color: transparent;
  display: block;
  position: relative;
  height: 100%;
  padding-left: 1em;
  padding-top: 1em;
}

.menu ul li:hover {
  background-color: #979797;
}

.content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 999;
  color: #fff;
  width: 100%;
}

.content h1 {
  font-size: 2em;
  width: 70%;
}

.content p {
  font-size: 1em;
  line-height: 1.6;
  width: 70%;
}

.mission {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("../img/budapest.jpg") no-repeat center center/cover;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/budapest.jpg") no-repeat center center/cover;
}

.mission .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 100%;
}

.mission .content h1 {
  font-size: 4.8vh;
}

.mission .content p {
  padding-top: 5vh;
  font-size: 2.2vh;
}

@-webkit-keyframes scrollAnim {
  0% {
    -webkit-transform: rotate(xx) translateY(0);
            transform: rotate(xx) translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes scrollAnim {
  0% {
    -webkit-transform: rotate(xx) translateY(0);
            transform: rotate(xx) translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.about {
  min-height: 100vh;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../img/schaffhausen.jpg") no-repeat center center/cover;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/schaffhausen.jpg") no-repeat center center/cover;
}

.about .content {
  min-height: 100vh;
}

.about .content h1, .about .content p {
  margin: auto;
}

.about .content h1 {
  margin-top: 0;
  padding-top: 4em;
  font-size: 4.8vh;
}

.about .content p {
  font-size: 2.2vh;
  padding-top: 2vh;
}

.about .investments {
  width: 100%;
  position: absolute;
  bottom: 0;
  color: #fff;
  text-align: center;
}

.about .investments .maintxt {
  background: rgba(255, 255, 255, 0.7);
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1em;
  padding-bottom: 1em;
}

.about .investments .list {
  background: rgba(215, 17, 17, 0.6);
  -ms-grid-column-align: end;
      justify-self: end;
  padding-top: .8em;
  padding-bottom: 1em;
  height: 80%;
}

.about .investments .list ul {
  list-style-type: none;
  margin: 0;
}

.about .investments .list ul li {
  margin-top: 8px;
  margin-bottom: 8px;
}

.about .investments .list ul li:nth-of-type(1) img {
  width: 4vh;
}

.followup {
  min-height: calc(100vh - 75px);
  background: #fff;
}

.followup .innerContent {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.followup p {
  width: 80%;
  text-align: center;
  margin: 0;
  padding-top: 8vh;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.1vh;
}

.followup .list-business {
  position: relative;
  bottom: 0;
  width: 100%;
}

.followup .list-business .image, .followup .list-business .list-txt {
  text-align: center;
}

.followup .list-business .list-txt {
  background: #D71111;
  color: #fff;
  padding: 1em 0 1em 0;
}

.followup .list-business .list-txt ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 1.8vh;
}

.followup .list-business .list-txt ul li {
  margin: .8em 0 .8em 0;
}

.followup .list-business .list-txt ul li:last-child {
  margin-bottom: 0;
}

.strategy {
  z-index: 1;
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("../img/dubai.jpg") no-repeat center center/cover;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/dubai.jpg") no-repeat center center/cover;
  color: #fff;
  position: relative;
}

.strategy * {
  margin-top: 0;
}

.strategy .title {
  text-align: center;
}

.strategy .title h1 {
  margin-top: 0;
  font-size: 3.5vh;
}

.strategy .title img {
  width: 1.2em;
}

.strategy .inner-content {
  position: relative;
  text-align: center;
  padding-top: 6em;
  height: 100%;
}

.strategy .inner-content p {
  font-size: 2vh;
}

.strategy p {
  width: 72.5%;
  font-size: .85em;
  margin: auto;
}

.strategy p:nth-of-type(2) {
  padding-top: 2em;
}

.portfolio {
  padding-top: 2em;
}

.portfolio h1 {
  margin-top: 0;
  text-align: center;
  width: 80%;
  margin: auto;
  font-size: 4vh;
}

.portfolio ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin: 0;
  padding: 0;
}

.portfolio ul li {
  margin: 1em 0 1em 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.portfolio ul li:nth-of-type(1) img {
  width: 256px;
}

.portfolio ul li:nth-of-type(2) img {
  width: 231px;
}

.portfolio ul li:nth-of-type(3) img {
  width: 90px;
}

.portfolio ul li:nth-of-type(4) img {
  width: 200px;
}

.portfolio ul li:nth-of-type(5) img {
  width: 213px;
}

.portfolio ul li:hover img {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

.contact {
  text-align: center;
  background: #B9B9B9;
  padding: 1.5em 0 1.5em 0;
  color: #fff;
  border-top-left-radius: 30px;
  -webkit-clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
}

.contact h1 {
  font-size: 2em;
}

.contact .main h1 {
  color: #D71111;
  font-weight: bold;
  font-size: 2em;
}

.contact .address-list {
  width: 80%;
  margin: auto;
  text-align: center;
}

.contact .address-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1em;
}

.contact .address-list ul li p {
  margin: 1em auto;
}

.contact .address-list ul li p .bold {
  font-weight: bold;
}

.contact .mobile h1 {
  margin-bottom: .75em;
}

.contact .mobile p {
  margin: 0;
}

footer {
  background: #727272;
  color: #fff;
  font-size: .85em;
  text-align: center;
  padding: 1em 0 1em 0;
}

@media screen and (min-width: 575px) and (max-width: 768px) {
  .strategy .inner-content p {
    font-size: 2.2vh;
  }
}

@media screen and (max-width: 992px) {
  .image img {
    width: 120px;
  }
  .list ul {
    padding: 0;
    font-size: 1.6vh;
  }
  .list ul #small {
    font-size: 1.3vh;
  }
}

@media screen and (min-width: 768px) {
  .address-list p {
    width: 40%;
  }
  .mission .content h1 {
    font-size: 5.6vh;
  }
  .mission .content p {
    font-size: 2.7vh;
  }
  .strategy .inner-content img {
    width: 3vw;
  }
  .strategy .inner-content h1 {
    font-size: 5.2vh;
  }
  .strategy .inner-content p {
    font-size: 2.4vh;
  }
}

@media screen and (min-width: 992px) {
  .maintxt {
    font-size: 2.5vh;
  }
  .about .content h1 {
    font-size: 5.6vh;
  }
  .about .content p {
    font-size: 2.6vh;
  }
  .followup .innerContent p {
    font-size: 2.6vh;
  }
  .portfolio ul {
    height: 50vh;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .portfolio ul li {
    width: 30%;
  }
  .show-desktop {
    display: block;
    width: 60%;
  }
  .menu-btn.hide-desktop {
    display: none;
  }
  .menu.hide-desktop {
    display: none;
  }
  .list-business {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .list-business .list-txt {
    width: 40vw;
  }
  .list-txt[data-scroll] {
    -webkit-transition: all 1.7s;
    transition: all 1.7s;
  }
  .list-txt[data-scroll="in"] {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .list-txt[data-scroll="out"] {
    opacity: 0;
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  .image[data-scroll] {
    -webkit-transition: all 1.7s;
    transition: all 1.7s;
  }
  .image[data-scroll="in"] {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .image[data-scroll="out"] {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  .portfolio[data-scroll] {
    -webkit-transition: all 1.5s;
    transition: all 1.5s;
  }
  .portfolio[data-scroll="in"] {
    opacity: 1;
  }
  .portfolio[data-scroll="out"] {
    opacity: 0;
  }
  .investments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .investments .maintxt {
    width: 50%;
  }
  .investments .list {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .investments .list .chart-img {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .investments .list .chart-img img {
    margin: auto;
    width: 5vw;
  }
  .investments .list ul {
    width: 70%;
    text-align: right;
    padding-right: 1.3em;
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .strategy .inner-content p {
    font-size: 2.6vh;
  }
  .investments .maintxt {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}

@media screen and (max-width: 1440px) {
  .scroll {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .maintxt {
    font-size: 1.9vh;
  }
}

@media screen and (min-width: 1440px) {
  .scroll {
    -webkit-animation: scrollAnim 2.5s infinite;
            animation: scrollAnim 2.5s infinite;
    display: block;
    margin-top: 4em;
  }
  .scroll img {
    width: 2vw;
  }
  .address-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .address-list ul li {
    font-size: 1.3em;
    width: 30%;
  }
  .address-list ul li p {
    width: auto;
  }
}

@media screen and (min-width: 1585px) {
  .list ul {
    font-size: 1.3em;
  }
  .list ul #small {
    font-size: 1em;
  }
  .maintxt {
    font-size: 2.5vh;
  }
}
/*# sourceMappingURL=main.css.map */