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

@media screen and (min-width: 920px) {
  .mobile {
    display: none; } }

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  -webkit-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); }
  .header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out; }
    .header .container.reduce {
      height: 100px; }
      .header .container.reduce > a {
        height: 50px; }
    .header .container > a {
      overflow: hidden;
      transition: all .2s ease-in-out;
      -webkit-transition: all .2s ease-in-out;
      margin-left: 15px; }
      .header .container > a img {
        height: 80px; }
    @media screen and (max-width: 920px) {
      .header .container {
        height: 80px; }
        .header .container > a img {
          height: 60px; }
        .header .container.reduce {
          height: 60px; }
          .header .container.reduce > a {
            height: 40px; }
        .header .container .burger {
          position: absolute;
          z-index: 999;
          top: 50%;
          right: 40px;
          width: 40px;
          height: 40px;
          cursor: pointer;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
          .header .container .burger .bar {
            position: absolute;
            width: 40px;
            height: 1px;
            background: #0E4142;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out; }
            .header .container .burger .bar:nth-child(1) {
              top: 5px; }
            .header .container .burger .bar:nth-child(2) {
              bottom: 5px; }
          .header .container .burger:after, .header .container .burger:before {
            content: '';
            position: absolute;
            display: block;
            width: 40px;
            height: 1px;
            background: white;
            top: 50%;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out; }
        .header .container:not(.open) .burger:after, .header .container:not(.open) .burger:before {
          background: #0E4142; }
        .header .container:not(.open) .menu {
          display: none; }
        .header .container.open .burger .bar {
          opacity: 0; }
        .header .container.open .burger:after {
          transform: rotate(-45deg); }
        .header .container.open .burger:before {
          transform: rotate(45deg); }
        .header .container.open .menu {
          display: block;
          position: fixed;
          z-index: 999;
          width: 100%;
          top: 20%;
          bottom: 20%;
          left: 0; }
          .header .container.open .menu li {
            display: flex;
            height: 20%;
            align-items: center;
            justify-content: center; }
            .header .container.open .menu li a {
              position: relative;
              color: white;
              font-size: 24px; }
              .header .container.open .menu li a:hover:after {
                content: '';
                position: absolute;
                bottom: 0;
                height: 1px;
                width: 100%;
                background-color: white; }
            .header .container.open .menu li:nth-last-child(1) a {
              color: #85BAA0; }
              .header .container.open .menu li:nth-last-child(1) a:after {
                background-color: #85BAA0; }
        .header .container.open .overlay {
          position: fixed;
          background-color: rgba(14, 64, 66, 0.85);
          width: 100%;
          z-index: 900;
          top: -100px;
          bottom: -100px;
          left: 0; } }
  .header .menu {
    padding: 0;
    margin: 0; }
    .header .menu li {
      display: inline-block; }
    .header .menu li a {
      position: relative;
      letter-spacing: 2px;
      margin-left: 20px;
      text-transform: uppercase;
      padding-bottom: 10px; }
      .header .menu li a:hover:after {
        width: 100%; }
      .header .menu li a:after {
        content: '';
        position: absolute;
        display: block;
        height: 1px;
        width: 0;
        background-color: #0E4142;
        left: 0;
        bottom: 0;
        transition: all 0.2s ease-in-out; }
    .header .menu li:nth-last-child(1) a {
      color: #85BAA0; }
      .header .menu li:nth-last-child(1) a:after {
        background-color: #85BAA0; }

.footer {
  background-color: #0E4142;
  padding: 90px; }
  @media screen and (max-width: 720px) {
    .footer {
      padding: 30px !important; } }
  .footer .container > div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }
    .footer .container > div:nth-child(1) {
      margin-bottom: 60px; }
  @media screen and (max-width: 920px) {
    .footer {
      padding: 60px; }
      .footer .container {
        width: 100%; }
        .footer .container > div {
          display: block; }
      .footer ul li {
        text-align: center;
        display: block !important;
        margin: 20px; }
      .footer .wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center; }
        .footer .wrapper img {
          object-fit: contain;
          flex: 0 0 auto; } }
  .footer a, .footer p, .footer i {
    color: white;
    margin: 0; }
  .footer ul {
    padding: 0; }
    .footer ul li {
      display: inline;
      padding: 0 15px;
      text-decoration: none;
      text-transform: uppercase; }

html {
  height: auto;
  min-height: 100%; }

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Lustria', serif;
  height: auto;
  min-height: 100%;
  background-image: url(../images/flag.jpg);
  overflow-x: hidden; }
  body.no-scroll {
    overflow-y: hidden; }

* {
  box-sizing: border-box; }

a, p, h1, h2, h3 {
  color: #0E4142; }

a[href^="tel"] {
  color: inherit !important;
  /* Inherit text color of parent element. */
  text-decoration: none !important;
  /* Remove underline. */
  /* Additional css `propery: value;` pairs here */ }

label, input, li {
  font-family: 'Lustria', serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s; }

h1 {
  font-size: 30px;
  line-height: 48px; }

h2, h3 {
  font-size: 24px;
  letter-spacing: 1px; }

p {
  font-size: 14px;
  margin: 30px 0;
  line-height: 24px;
  letter-spacing: 0.05em;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.no-break {
  white-space: nowrap; }

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
  supported by Chrome and Opera */ }

a.button {
  display: inline-block;
  background: #85BAA0;
  padding: 10px 20px;
  box-sizing: border-box;
  white-space: nowrap;
  color: white;
  cursor: pointer;
  transition: all .2s ease-in-out; }
  a.button:hover {
    background: #64a887; }

.row {
  display: flex;
  width: 960px;
  margin: 0 -10px; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 {
  display: inline-block;
  flex-direction: column;
  vertical-align: top;
  margin: 0px;
  padding: 0 10px;
  box-sizing: border-box; }

.col-1 {
  width: 11.10%; }

.col-2 {
  width: calc(11.10% * 2); }

.col-3 {
  width: calc(11.10% * 3); }

.col-4 {
  width: calc(11.10% * 4); }

.col-5 {
  width: calc(11.10% *5); }

.col-6 {
  width: calc(11.10% * 6); }

.col-7 {
  width: calc(11.10% * 7); }

.col-8 {
  width: calc(11.10% * 8); }

.container {
  width: 80%;
  width: 960px;
  margin: 0 auto; }
  @media screen and (max-width: 1100px) {
    .container {
      width: 750px; } }
  @media screen and (max-width: 920px) {
    .container {
      width: 100%;
      padding: 0 15px; } }

.border {
  border: solid 1px #85BAA0;
  padding: 100px 0;
  box-sizing: border-box; }
  @media screen and (max-width: 1100px) {
    .border {
      padding: 40px 0; } }
  @media screen and (max-width: 920px) {
    .border {
      padding: 30px 15px; } }

.fade {
  opacity: 0 !important;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out; }
  .fade.left {
    transform: translate(-100px); }
    .fade.left.show {
      transform: translate(0); }
  .fade.right {
    transform: translate(100px); }
    .fade.right.show {
      transform: translate(0); }
  .fade.top {
    transform: translateY(100px); }
    .fade.top.show {
      transform: translate(0); }
  .fade.show {
    opacity: 1 !important; }

/*# sourceMappingURL=main.css.map*/