@font-face {
  font-family: "MPR";
  font-display: swap;
  src: local("MPR"), local("MYRIADPRO-REGULAR"), url("fonts/MYRIADPRO-REGULAR.woff") format("woff");
  font-weight: "400";
}
@font-face {
  font-family: "MPS";
  font-display: swap;
  src: local("MPS"), local("MYRIADPRO-SEMIBOLD"), url("fonts/MYRIADPRO-SEMIBOLD.woff") format("woff");
  font-weight: "500";
}
:root {
  --white: #FFFFFF;
  --blue: #00abc8;
  --rose: #ff80cc;
  --max-screen: 1920px;
  --max-w: 1440px;
  --max-980: 980px;
  --hh: 124px;
  --pd-60: 60px;
  --mg-120: 120px;
  --mg-60: 60px;
  --mg-48: 48px;
  --mg-36: 36px;
  --mg-24: 24px;
  --mg-12: 12px;
  --anim40: 40px;
  --anim20: 20px;
}

@media only screen and (max-width: 1600px) {
  :root {
    --mg-120: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  :root {
    --pd-60: 48px;
    --mg-120: 90px;
  }
}
@media only screen and (max-width: 1180px) {
  :root {
    --pd-60: 36px;
    --mg-120: 80px;
  }
}
@media only screen and (max-width: 979px) {
  :root {
    --hh: 114px;
    --mg-120: 60px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --hh: 104px;
    --pd-60: 24px;
    --mg-120: 50px;
    --mg-60: 48px;
  }
}
@media only screen and (max-width: 479px) {
  :root {
    --pd-60: 12px;
    --mg-120: 40px;
    --mg-60: 36px;
  }
}
@media only screen and (max-width: 375px) {
  :root {
    --mg-120: 30px;
  }
}
/* NEW MIXIN */
html, body, div, span, applet, object, iframe, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, font,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  vertical-align: baseline;
}

div, span, nav, ul, li, img, header, footer, section, article, a, h1, h2, h3, h4 {
  width: auto;
  height: auto;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  background-color: var(--blue);
}

.color-white {
  color: var(--white);
}

.color-rose {
  color: var(--rose);
}

.color-blu {
  color: var(--blue);
}

.mgb-60 {
  margin-bottom: var(--mg-60);
}

.mgb-48 {
  margin-bottom: var(--mg-48);
}

.mgb-36 {
  margin-bottom: var(--mg-36);
}

.mgb-24 {
  margin-bottom: var(--mg-24);
}

.mgb-12 {
  margin-bottom: var(--mg-12);
}

.mgt-60 {
  margin-top: var(--mg-60);
}

.mgt-48 {
  margin-top: var(--mg-48);
}

.mgt-36 {
  margin-top: var(--mg-36);
}

.mgt-24 {
  margin-top: var(--mg-24);
}

.mgt-12 {
  margin-top: var(--mg-12);
}

.max-980 {
  max-width: var(--max-980);
}

/*****************************************************************************/
/*                                Fonts                                      */
/*****************************************************************************/
.strong {
  font-weight: 500;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.centre {
  text-align: center;
}

.hover {
  transition: 0.5s;
}

.title-font {
  font-family: "MPR";
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 130%;
  margin: 0;
}
@media screen and (max-width: 1600px) {
  .title-font {
    font-size: 21px;
  }
}
@media screen and (max-width: 1440px) {
  .title-font {
    font-size: 21px;
  }
}
@media screen and (max-width: 1180px) {
  .title-font {
    font-size: 21px;
  }
}
@media screen and (max-width: 979px) {
  .title-font {
    font-size: 18px;
    text-align: center;
  }
  .title-font br {
    display: none;
  }
}
@media screen and (max-width: 374px) {
  .title-font {
    font-size: 17px;
  }
}

.project-description {
  font-family: "MPR";
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 130%;
}
@media screen and (max-width: 1600px) {
  .project-description {
    font-size: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .project-description {
    font-size: 28px;
  }
}
@media screen and (max-width: 1180px) {
  .project-description {
    font-size: 24px;
  }
}
@media screen and (max-width: 979px) {
  .project-description {
    font-size: 22px;
  }
}
@media screen and (max-width: 374px) {
  .project-description {
    font-size: 20px;
  }
}

p {
  font-family: "MPR";
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 0;
}
@media screen and (max-width: 1180px) {
  p {
    font-size: 18px;
  }
}
@media screen and (max-width: 979px) {
  p {
    font-size: 17px;
  }
}
p strong {
  font-family: "MPS";
  font-weight: 500;
}

.title-descrioption {
  font-family: "MPR";
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 0;
  margin-top: var(--mg-36);
  margin-bottom: var(--mg-36);
}
@media screen and (max-width: 1180px) {
  .title-descrioption {
    font-size: 18px;
  }
}
@media screen and (max-width: 979px) {
  .title-descrioption {
    font-size: 17px;
  }
}

article {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  color: var(--white);
}
article p {
  font-family: "Rubik";
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: var(--mg-12);
  margin-top: var(--mg-12);
  color: var(--text-grey);
}
article p strong {
  font-weight: 500;
}
article p em, article p i {
  font-style: italic;
}

nav {
  display: flex;
  justify-content: center;
}
nav .button-lang {
  width: 80px;
  height: 64px;
  display: block;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 979px) {
  nav .button-lang {
    width: 64px;
    height: 51px;
  }
}
nav .button-lang svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
nav .button-lang svg .text {
  fill: var(--white);
}
nav .button-lang svg .active-lang {
  fill: var(--blue);
}
nav .button-lang svg .change-lang {
  fill: var(--rose);
}
nav .button-lang:first-child {
  margin-right: var(--mg-24);
}
nav .button-lang:hover {
  transition: 0.5s;
}
nav .button-lang:hover svg .text {
  fill: var(--blue);
}
nav .button-lang:hover svg .active-lang {
  fill: var(--white);
}
nav .button-lang:hover svg .change-lang {
  fill: var(--white);
}

/* header menu */
header {
  width: 100%;
  height: var(--hh);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px var(--pd-60) 0px var(--pd-60);
}

.section-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px var(--pd-60) 0px var(--pd-60);
  overflow: hidden;
}
.section-wrap .section {
  width: 100%;
  max-width: var(--max-w);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-logo-wrap {
  min-height: calc( 100vh - var(--hh) - var(--hh) );
  min-height: calc( 100dvh - var(--hh) - var(--hh) );
  justify-content: center;
}

.logo-wrap {
  width: 720px;
  height: 171px;
  display: flex;
  justify-content: center;
  margin-top: var(--mg-120);
}
@media screen and (max-width: 979px) {
  .logo-wrap {
    width: calc( 80vw - ( var(--pd-60) * 2 ) );
    height: calc( 19vw - ( var(--pd-60) * 2 * 0.2375 ) );
  }
}
.logo-wrap svg {
  object-fit: contain;
}
.logo-wrap svg .logo-color {
  fill: var(--white);
}

.title-wrap {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--mg-120);
}

.projects {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .projects {
    justify-content: center;
  }
}
.projects .project-wrap {
  width: calc( 50% - var(--pd-60) );
  display: flex;
  flex-direction: column;
  margin-bottom: var(--mg-48);
}
@media only screen and (max-width: 767px) {
  .projects .project-wrap {
    width: 100%;
  }
}
.projects .project-wrap .project {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: var(--mg-36);
  transition: 0.5s;
  opacity: 1;
  cursor: pointer;
}
.projects .project-wrap .project img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.projects .project-wrap .project:hover {
  opacity: 0.8;
}
@media screen and (max-width: 979px) {
  .section-footer {
    flex-direction: column;
    justify-content: center;
  }
}
.section-footer span {
  font-family: "MPR";
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
  margin-right: 12px;
}
.section-footer .email {
  display: flex;
  align-items: center;
}
.section-footer .email a {
  font-family: "MPR";
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
  transition: 0.5s;
  color: var(--white);
}
.section-footer .email a::before {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  bottom: -2px;
  z-index: 1;
}
.section-footer .email a:hover {
  color: var(--rose);
}
.section-footer .copy {
  font-family: "MPR";
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
  transition: 0.5s;
  color: var(--white);
}

.symbol {
  width: 184px;
  height: 250px;
  display: flex;
  justify-content: center;
  margin-top: var(--mg-120);
  margin-bottom: var(--mg-120);
}
@media screen and (max-width: 979px) {
  .symbol {
    width: 148px;
    height: 200px;
  }
}
.symbol svg {
  object-fit: contain;
}
.symbol svg .logo-color {
  fill: var(--white);
}

.symbol-description {
  margin-bottom: var(--mg-120);
}

footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: var(--pd-60) var(--pd-60) var(--pd-60) var(--pd-60);
  background-color: var(--purple-dark);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  footer {
    padding: calc( var(--pd-60)*2 ) var(--pd-60) var(--pd-60) var(--pd-60);
  }
}
footer .section {
  width: 100%;
  max-width: var(--max-w);
  height: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  footer .section {
    flex-direction: column;
    align-items: center;
  }
}
footer .section .payment {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  footer .section .payment {
    width: 100%;
  }
}
footer .section .payment h3 {
  width: 100%;
}
footer .section .payment .visa {
  width: 100px;
  height: 60px;
  display: block;
}
footer .section .payment .visa .st0 {
  fill: #fff;
}
footer .section .payment .master {
  width: 100px;
  height: 60px;
  display: block;
  margin-left: 48px;
}
footer .section .payment .master .masterst0 {
  fill: #ff5f00;
}
footer .section .payment .master .masterst1 {
  fill: #eb001b;
}
footer .section .payment .master .masterst2 {
  fill: #f79e1b;
}
footer .section .payment .master .masterst3 {
  fill: #fff;
}
footer .section .footer-menu {
  width: 50%;
  display: flex;
}
@media screen and (max-width: 767px) {
  footer .section .footer-menu {
    width: 100%;
  }
}
footer .section .footer-menu .mobile__menu ul {
  margin-top: 0px;
}
footer .section .footer-menu .mobile__menu ul li {
  font-weight: 300;
  margin: 12px 0px 12px 0px;
}
footer .section .footer-menu .mobile__menu ul li a {
  color: var(--white);
}
footer .section .footer-menu .mobile__menu ul li a::after {
  background-color: var(--purple-dark);
}
footer .section .footer-menu .mobile__menu ul li a:hover {
  color: var(--purple-light);
}
footer .section .footer-menu .mobile__menu ul li a:hover::after {
  background-color: var(--purple-light);
}
footer .section .footer-menu .mobile__menu ul li.current-menu-item a,
footer .section .footer-menu .mobile__menu ul li.active a {
  color: var(--purple-light);
}