/*Buttons*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
}

.container {
  max-width: 170rem;
  margin: 0 auto;
  padding: 3rem;
}

/*
::selection {
    background-color: $color-primary;
    color: $color-white;
}*/
body {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 3rem 0 1.38rem;
  line-height: 1.3;
  letter-spacing: 0.3rem;
  color: #064048;
}

h1,
h2 {
  font-family: "EB Garamond", serif;
  font-weight: 400;
}

h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0;
}

h1 {
  font-size: 11.089rem;
  margin-top: 0;
}

h2 {
  font-size: 6.854rem;
}

h3 {
  font-size: 4.236rem;
}

h4 {
  font-size: 2.618rem;
}

h5 {
  font-size: 1.618rem;
}

.dot {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #7dc9c5;
}

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

.btn {
  margin: 1rem;
  padding: 1.5rem 3.5rem;
  border-radius: 2.5rem;
  box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.25);
  border-style: solid;
  border-width: 1px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.btn:focus {
  border: 1px solid #141414;
  outline: 3px solid #0066cc;
  outline-offset: 5px;
}
.btn__primary {
  background-color: #064048;
  color: #fff;
  border-color: #064048;
}
.btn__primary:hover {
  transform: translateY(-10px);
  box-shadow: 0px 7px 6px 3px rgba(0, 0, 0, 0.25);
  background-color: #0b6875;
  color: #fff;
  border-color: #0b6875;
}
.btn__primary:active {
  transform: translateY(5px);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: #7dc9c5;
  color: #333;
  border-color: #7dc9c5;
}
.btn__secondary {
  background-color: #fff;
  color: #064048;
  border-color: #064048;
  transition: all 0.2s;
}
.btn__secondary:hover {
  transform: translateY(-10px);
  box-shadow: 0px 7px 6px 3px rgba(0, 0, 0, 0.25);
  background-color: #064048;
  color: #fff;
  border-color: #064048;
}
.btn__secondary:active {
  transform: translateY(5px);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  color: #0b6875;
  border-color: #0b6875;
}
.btn__cta {
  background-color: #ffb800;
  color: #333;
  border-color: #ffb800;
}
.btn__cta:hover {
  transform: translateY(-10px);
  box-shadow: 0px 7px 6px 3px rgba(0, 0, 0, 0.25);
  background-color: #fbc740;
  color: #333;
  border-color: #fbc740;
}
.btn__cta:active {
  transform: translateY(5px);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: rgba(251, 199, 64, 0.63);
  color: #333;
  border-color: rgba(251, 199, 64, 0.63);
}

/*=======GRID============*/
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-1,
.gy-1 {
  --gutter-y: 0.25rem !important;
}

.g-1,
.gx-1 {
  --gutter-x: 0.25rem !important;
}

.g-2,
.gy-2 {
  --gutter-y: 0.5rem !important;
}

.g-2,
.gx-2 {
  --gutter-x: 0.5rem !important;
}

.g-3,
.gy-3 {
  --gutter-y: 1rem !important;
}

.g-3,
.gx-3 {
  --gutter-x: 1rem !important;
}

.g-4,
.gy-4 {
  --gutter-y: 1.5rem !important;
}

.g-4,
.gx-4 {
  --gutter-x: 1.5rem !important;
}

.g-5,
.gy-5 {
  --gutter-y: 3rem !important;
}

.g-5,
.gx-5 {
  --gutter-x: 3rem !important;
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--gutter-y) * -1);
  margin-left: calc(var(--gutter-x) * -0.5);
  margin-right: calc(var(--gutter-x) * -0.5);
}
.row [class^=col-] {
  flex: 0 0 auto;
}
.row .col-4 {
  width: 100%;
}
@media only screen and (min-width: 62em) {
  .row .col-4 {
    width: 33.33333333%;
  }
}

.header {
  background-image: linear-gradient(125deg, #064048, #07515b);
  -webkit-clip-path: polygon(-4% -1%, 100% 0%, 102% 82%, 28% 97%, -5% 77%);
          clip-path: polygon(-4% -1%, 100% 0%, 102% 82%, 28% 97%, -5% 77%);
}
.header__container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: start;
}
@media only screen and (min-width: 62em) {
  .header {
    height: 90vh;
  }
}
.header__hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .header__hero {
    flex-direction: row;
  }
}
.header__hero-box {
  max-width: 60rem;
}
.header__hero-heading {
  color: #ffffff;
  font-size: 7rem;
  margin-top: 3rem;
  font-weight: 400;
}
@media only screen and (min-width: 62em) {
  .header__hero-heading {
    font-size: 9rem;
  }
}
.header__hero-img {
  width: 600px;
  margin-right: 5rem;
}
@media only screen and (min-width: 87.5em) {
  .header__hero-img {
    width: 500px;
    margin-right: 12rem;
    transform: translateY(-40px);
  }
}

.header-cs {
  background-image: linear-gradient(125deg, #064048, #07515b);
}
@media only screen and (min-width: 62em) {
  .header-cs {
    -webkit-clip-path: polygon(-4% -1%, 100% 0%, 102% 82%, 28% 97%, -5% 77%);
            clip-path: polygon(-4% -1%, 100% 0%, 102% 82%, 28% 97%, -5% 77%);
    height: 100vh;
  }
}
.header-cs__logo-box {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}
@media only screen and (min-width: 62em) {
  .header-cs__hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.header-cs__hero-heading {
  color: #ffffff;
  font-size: 7rem;
  text-align: center;
  margin: 3rem auto;
}
@media only screen and (min-width: 62em) {
  .header-cs__hero-heading {
    text-align: left;
  }
}
@media only screen and (min-width: 75em) {
  .header-cs__hero-heading {
    font-size: 11.089rem;
  }
}
.header-cs__hero-img {
  max-width: 100%;
}
@media only screen and (min-width: 62em) {
  .header-cs__hero-img {
    width: 50%;
  }
}
@media only screen and (min-width: 75em) {
  .header-cs__hero-img {
    width: 36%;
  }
}

blockquote {
  padding: 1rem;
  font-size: 1.8rem;
  font-style: italic;
}

/*@keyframes blobby {
    0% {
        clip-path: $clip-path-1;
    }

    25% {
        clip-path: $clip-path-2;
    }

    50% {
        clip-path: $clip-path-3;
    }

    75% {
        clip-path: $clip-path-2;
    }

    100% {
        clip-path: $clip-path-1;
    }
}*/
.skip a {
  position: absolute;
  left: -50px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  font-size: 2em;
  background: white;
  font-weight: bold;
  display: block;
  padding: 10px;
}
.skip a:focus {
  position: static;
  width: auto;
  height: auto;
}

@media only screen and (min-width: 62em) {
  .navigation {
    width: 100%;
  }
}
.navigation__nav {
  list-style: none;
  font-size: 5rem;
}
@media only screen and (min-width: 62em) {
  .navigation__nav {
    display: flex;
    flex-wrap: nowrap;
  }
}
.navigation__item a:link, .navigation__item a:visited {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #141414;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #ffffff 50%);
  background-size: 250%;
  transition: all 0.4s;
}
@media only screen and (min-width: 62em) {
  .navigation__item a:link, .navigation__item a:visited {
    display: flex;
    flex-direction: row;
    color: #ffffff;
    font-size: 2rem;
  }
}
.navigation__item a:hover, .navigation__item a:active, .navigation__item a.active {
  background-position: 100%;
  color: #064048;
  transform: translateX(1rem);
}
.navigation__item a:focus {
  background-position: 100%;
  color: #064048;
  transform: translateX(1rem);
  border: 1px solid #141414;
  outline: 3px solid #0066cc;
  outline-offset: 5px;
}
.navigation__button {
  position: fixed;
  top: 9rem;
  right: 2rem;
  z-index: 2000;
  background-color: #ffffff;
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  border: none;
  box-shadow: 0 1rem 3rem rgba(20, 20, 20, 0.4);
  text-align: center;
  cursor: pointer;
}
@media only screen and (min-width: 62em) {
  .navigation__button {
    display: none;
  }
}
.navigation__button:focus {
  border: 1px solid #141414;
  outline: 3px solid #0066cc;
  outline-offset: 5px;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__icon {
  position: relative;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__menu {
  background-image: linear-gradient(125deg, #7dc9c5 30%, #00625d);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 62em) {
  .navigation__menu {
    opacity: 1;
    z-index: 0;
    height: auto;
    position: static;
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    background-image: none;
  }
}
.active .navigation__menu {
  opacity: 1;
  width: 100%;
}
.active .navigation__icon {
  background-color: transparent;
}
.active .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.active .navigation__button:hover .navigation__icon::before, .active .navigation__button:hover .navigation__icon::after {
  top: 0;
}
.active .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

@media only screen and (min-width: 62em) {
  .menu__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
  }
}
.menu__container-cs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 62em) {
  .menu__container-cs {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
  }
}

.lang {
  display: flex;
  justify-content: flex-end;
}
.lang-link {
  font-weight: 600;
  padding: 0 1rem;
  color: #fff;
  text-decoration: none;
}
.lang-link:first-child {
  margin-right: 1rem;
}
.lang-link:hover, .lang-link.active {
  background-color: #fff;
  color: #064048;
}
.lang-link:focus {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

.about {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 62em) {
  .about__paragraph {
    width: 70%;
    margin: 0 auto;
  }
}

.description__cols {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
  margin-bottom: 4.5rem;
  margin-left: calc(var(--gutter-x) * -0.5);
  margin-right: calc(var(--gutter-x) * -0.5);
}
.description__col {
  flex: 0 0 auto;
  width: 100%;
}
@media only screen and (min-width: 62em) {
  .description__col:not(:last-of-type) {
    border-right: 1px solid #7dc9c5;
  }
}
@media only screen and (min-width: 62em) {
  .description__col {
    width: 33.33333333%;
  }
}
.description__p {
  text-align: center;
}
@media only screen and (min-width: 62em) {
  .description__p {
    margin: 0.8rem 6rem;
    text-align: start;
  }
}

.work {
  background-image: linear-gradient(to right bottom, #f5f7f8, transparent);
}/*# sourceMappingURL=style.css.map */