*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth; }

body {
  background-color: #f7f7f7;
  padding: 1rem;
  color: #000000; }

p {
  width: 100%; }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(-50% -50%); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translate(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

body {
  font-family: 'Lora', sans-serif;
  font-size: 1.6rem; }

.primary-title {
  color: #ffffff;
  font-weight: 300;
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase; }
  .primary-title--black {
    color: #000000; }

.paragraph {
  font-size: 1.6rem;
  width: 100%; }
  .paragraph:not(:last-child) {
    margin-bottom: 2rem; }
  .paragraph--primary {
    font-size: 2.4rem;
    font-weight: 400; }

.secondary-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  color: transparent;
  transition: all .2s;
  background-image: linear-gradient(to right, #1fa2df, #135a7a);
  -webkit-background-clip: text; }
  .secondary-title:hover {
    transform: skewY(2deg) skewX(15deg) scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }
  .secondary-title.ie {
    color: #135a7a;
    background: transparent; }

.tertiary-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  color: #f7f7f7;
  transition: all .2s; }
  .tertiary-title:hover {
    transform: skewY(2deg) skewX(15deg) scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

.link {
  text-decoration: none; }

@media (max-width: 920px) {
  .primary-title {
    font-size: 3rem; }
  .paragraph {
    font-size: 1.6rem; }
  .secondary-title {
    font-size: 2.5rem; }
  .tertiary-title {
    font-size: 2.4rem; } }

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

.u-text-uppercase {
  text-transform: uppercase; }

.u-margin-bottom-small {
  margin-bottom: 2rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }

.u-margin-bottom-big {
  margin-bottom: 6rem; }

.u-margin-top-small {
  margin-top: 2rem; }

.u-margin-top-medium {
  margin-top: 4rem; }

.u-margin-top-big {
  margin-top: 6rem; }

.u-flex-li {
  display: flex;
  align-items: center; }

.row {
  max-width: 114rem;
  margin: 0 auto;
  display: block; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
  .row:not(:last-child) {
    margin-bottom: 2rem; }
  .row::after {
    content: '';
    display: table;
    clear: both; }
  .row .col-1-of-2 {
    width: calc((100vw - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100vw - (6rem * 2)) / 3); }
  .row .col-2-of-3 {
    width: calc(2 * ((100vw - (6rem * 2)) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100vw - (6rem * 3)) / 4); }
  .row .col-2-of-4 {
    width: calc((100vw - (6rem)) / 2); }
  .row .col-3-of-4 {
    width: calc((3 * (100vw - (6rem * 3)) / 4) + 2 * 6rem); }

.header {
  position: relative;
  min-height: 90vh;
  background-image: linear-gradient(to right bottom, rgba(25, 105, 143, 0.8), rgba(25, 135, 143, 0.8)), url("./pics/opening.jpg");
  background-size: cover;
  background-position: top;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%); }

.aboutus {
  background-color: #f7f7f7;
  margin-top: -20rem;
  padding: 0 2rem;
  padding-top: 15rem;
  text-align: center; }

.collegues {
  background-color: #f7f7f7; }

.services {
  padding: 2rem;
  padding-top: 15rem;
  background-image: linear-gradient(to right bottom, rgba(25, 105, 143, 0.8), rgba(25, 135, 143, 0.8)), url("./pics/services.jpg");
  background-size: cover;
  background-position: top;
  clip-path: polygon(0 25vh, 100% 0, 100% 100%, 0 100%); }
  .services.ie {
    padding-top: 2rem; }

.separated-section-container {
  display: flex;
  flex-wrap: wrap; }
  .separated-section-container > * {
    flex-basis: 50%;
    width: 50%; }

@media (max-width: 920px) {
  .services {
    padding-top: 4rem; }
  .separated-section-container > * {
    width: 100%;
    flex-basis: 100%; }
  .header, .services {
    clip-path: none; }
  .aboutus {
    margin-top: -14rem; } }

.header__text-content-wrapper {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 40%;
  left: 50%;
  color: white;
  text-align: center; }

.header__title {
  animation: moveInLeft .5s ease-out .75s;
  animation-fill-mode: backwards; }

.header__paragraph {
  animation: moveInRight .5s ease-out .75s;
  animation-fill-mode: backwards; }

.header__logo-box {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #ffffff; }

.header__logo-text {
  font-size: 4.8rem; }

@media (max-width: 920px) {
  .header__paragraph {
    width: 80vw; }
  .header__logo-text {
    font-size: 3rem; }
  .header__text-content-wrapper {
    top: 50%; } }

.btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all .2s;
  position: relative;
  color: #000000; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background-color: #ffffff;
  color: #777; }
  .btn--white::after {
    background: #ffffff; }

.btn--green {
  background-color: #1779a7;
  color: #ffffff; }
  .btn--green::after {
    background-color: #1779a7; }

.btn::after {
  content: '';
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--animated {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #1779a7;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #1779a7;
  padding: 3px;
  transition: all .2s; }

.btn-text:hover {
  color: #ffffff;
  background-color: #1779a7;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  transform: translateY(-2px); }

.btn-text:active {
  transform: translate(0px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.nav {
  height: 6rem;
  width: 6rem;
  border-radius: 10rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: #f7f7f7;
  cursor: pointer;
  z-index: 5; }
  .nav__icon {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center; }

.hidden-nav {
  margin-right: 2rem;
  background-image: linear-gradient(to right bottom, rgba(25, 105, 143, 0.8), rgba(25, 135, 143, 0.8)), url("./pics/opening.jpg");
  background-size: cover;
  background-position: top;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: all .8s;
  z-index: 2; }

.nav-option-container {
  width: 50vw;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center; }

.hidden-nav.hidden {
  transform: translateY(-100vh);
  z-index: 2; }
  .hidden-nav.hidden.ie {
    transition: all 5s;
    transform: translateY(100vh); }

.btn.nav__option {
  color: #ffffff; }

@media (max-width: 920px) {
  .nav {
    height: 6rem;
    width: 6rem;
    font-size: 1rem; } }

.collegues__title {
  display: block;
  margin: 4rem auto; }

.collegues__cardbox {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; }

/* cards and backgrounds of them */
.collegues__card {
  margin: 1rem;
  height: 250px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-image: linear-gradient(to right bottom, rgba(25, 105, 143, 0.6), rgba(25, 135, 143, 0.6));
  background-size: cover;
  background-position: top;
  text-align: center; }

.collegue__card--img {
  width: 100px;
  height: 100px;
  background-size: cover;
  border-radius: 100px; }

.collegues__card--first .collegue__card--img {
  background-image: url("./pics/miszori.jpg"); }

.collegues__card--second .collegue__card--img {
  background-image: url("./pics/muter.jpg"); }

.collegues__card--third .collegue__card--img {
  background-image: url("./pics/adrienn.jpg"); }

.collegues__card--fourth .collegue__card--img {
  background-image: url("./pics/dildi.jpg"); }

.collegues__card--fifth .collegue__card--img {
  background-image: url("./pics/orsi.jpg"); }

.collegues__card--sixth .collegue__card--img {
  background-image: url("./pics/ili.jpg"); }

.services {
  color: #f7f7f7;
  text-align: center; }

.service__card {
  width: 60vw;
  margin: 0 auto;
  margin-bottom: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.5);
  padding: 2rem;
  border-radius: 2px; }

.service__name {
  font-size: 2rem; }

.references {
  display: inline-block; }
  .references__list {
    list-style-type: none; }
    .references__list li {
      padding: .5rem; }

.contacts {
  display: inline-block; }
  .contacts ul {
    list-style-type: none;
    text-align: left; }
  .contacts__icon {
    font-size: 3.5rem;
    color: transparent;
    transition: all .2s;
    background-image: linear-gradient(to right, #1fa2df, #135a7a);
    -webkit-background-clip: text; }
    .contacts__icon.ie {
      color: #135a7a;
      background: transparent; }
  .contacts__phone, .contacts__mail, .contacts__address {
    margin-bottom: 1.5rem;
    margin-left: 3rem; }

@media (max-width: 920px) {
  .contacts ul {
    width: 50%;
    margin: 0 auto; } }

.footer {
  min-height: 2rem;
  background-color: #777; }

.impressium-text {
  color: #ffffff;
  cursor: pointer; }

.impressium-window {
  position: fixed;
  min-height: 100vh;
  min-width: 100vw;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: -100vw;
  background-color: #ffffff;
  transition: all .5s ease-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2px;
  z-index: 10;
  padding: 5rem; }
  .impressium-window .primary-title {
    color: #777; }
  .impressium-window .close-impressium {
    font-size: 2rem;
    position: absolute;
    right: 5rem;
    top: 5rem;
    cursor: pointer; }

.impressium-window.open {
  left: 50%;
  transition: all .5s ease-in; }
