@charset "UTF-8";
/* ---
  Generated by: https://icomoon.gbiorczyk.pl/
--- */
/* ---
  Explode
--- */
/* ---
  String replace
--- */
/* Example of use is at the bottom of file */
/*

  Example:

    div {
      background-attachment: fixed;

      @include browser('ie') {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
      }
    }

  Result:

    div {
      background-attachment: fixed;
    }

    @media screen and (min-width:0\0) {

      div {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
      }
    }

*/
/* Example of use is at the bottom of file */
/*

  Sample file name:
    • OpenSans-Bold.ttf
    • [prefix][font_weight].ttf

  Mixin args:
    • path with prefix of files
    • font family
    • fonts weights: 
      • name (font_weight in file names)
      • weight
      • style

  Example:
    $Roboto : (
      (
        'name'   : 'Regular',
        'weight' : 400,
        'style'  : 'normal'
      ),
      (
        'name'   : 'Medium',
        'weight' : 500,
        'style'  : 'normal'
      ),
      (
        'name'   : 'Bold',
        'weight' : 700,
        'style'  : 'normal'
      )
    );

    @include fontFace('../sources/fonts/Roboto/Roboto-', 'Roboto', $Roboto);

*/
/* Example of use is at the bottom of file */
/*

  Example:

    ul {

      li {

        span {
          color: green;

          @include parent('li', '.red') {
            color: red;
          }

          @include parent('ul', '.hide || .hidden') {
            display: none;
          }
        }
      }
    }

  Result:

    ul li span {
      color: green;
    }

    ul li.red span {
      color: red;
    }

    ul.hide li span {
      display: none;
    }

    ul.hidden li span {
      display: none;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    input {
      color: $cBlack;

      @include placeholder() {
        color: $cBlack;
      }
    }

  Result:

    input {
      color: $cBlack;
    }

    input::-webkit-input-placeholder {
      color: $cBlack;
    }

    input::-moz-placeholder {
      color: $cBlack;
    }

    input:-ms-input-placeholder {
      color: $cBlack;
    }

    input:-moz-placeholder {
      color: $cBlack;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    div {
      float: left;

      @include rtl() {
        float: right;
      }
    }

  Result:

    div {
      float: left;
    }

    html[dir=rtl] div {
      float: right;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    ul {
      margin-bottom: 15px;

      @include rwd(tablet, true) {
        margin-bottom: 30px;
      }

      li {
        margin-bottom: 20px;

        @include rwd(tablet) {
          margin-bottom: 10px;
        }
      }
    }

  Result:

    ul {
      margin-bottom: 15px;
    }

    ul li {
      margin-bottom: 20px;
    }

    @media (min-width: 769px) {
      ul {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 768px) {
      ul li {
        margin-bottom: 10px;
      }
    }

*/
/* ---
  Basic version:
  https://meyerweb.com/eric/tools/css/reset/
--- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ---
  Modifications
--- */
/* - HTML support - */
main {
  display: block;
}

/* - Hidden attribute - */
*[hidden] {
  display: none !important;
}

/* - Reset for SVG oraz elements of form - */
svg,
input, textarea, button, select {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-size: 100%;
  outline: none;
}

input, textarea, select, button {
  background: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  overflow: auto;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  border: 0;
}

select::-ms-expand,
input::-ms-clear {
  display: none;
}

/* - IE11 - */
template {
  display: none !important;
}

/* - Fonts on iOS, ignoring font size changes - */
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* - Inline tags - */
a {
  color: inherit;
}

a,
a:hover,
a:focus,
*:focus {
  outline: 0;
  text-decoration: none;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

/* - Reset for images - */
img {
  border: 0;
}

/* - Vue.js - */
[v-cloak] {
  display: none !important;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../../fonts/ProximaNova/ProximaNova-Regular.woff2") format("woff2"), url("../../fonts/ProximaNova/ProximaNova-Regular.woff") format("woff"), url("../../fonts/ProximaNova/ProximaNova-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../../fonts/ProximaNova/ProximaNova-Medium.woff2") format("woff2"), url("../../fonts/ProximaNova/ProximaNova-Medium.woff") format("woff"), url("../../fonts/ProximaNova/ProximaNova-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../../fonts/ProximaNova/ProximaNova-Semibold.woff2") format("woff2"), url("../../fonts/ProximaNova/ProximaNova-Semibold.woff") format("woff"), url("../../fonts/ProximaNova/ProximaNova-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../../fonts/ProximaNova/ProximaNova-Bold.woff2") format("woff2"), url("../../fonts/ProximaNova/ProximaNova-Bold.woff") format("woff"), url("../../fonts/ProximaNova/ProximaNova-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../../fonts/ProximaNova/ProximaNova-Black.woff2") format("woff2"), url("../../fonts/ProximaNova/ProximaNova-Black.woff") format("woff"), url("../../fonts/ProximaNova/ProximaNova-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "gesstwo";
  src: url("../../fonts/gesstwo/gesstwo-Light.woff2") format("woff2"), url("../../fonts/gesstwo/gesstwo-Light.woff") format("woff"), url("../../fonts/gesstwo/gesstwo-Light.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "gesstwo";
  src: url("../../fonts/gesstwo/gesstwo-Medium.woff2") format("woff2"), url("../../fonts/gesstwo/gesstwo-Medium.woff") format("woff"), url("../../fonts/gesstwo/gesstwo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "gesstwo";
  src: url("../../fonts/gesstwo/gesstwo-Bold.woff2") format("woff2"), url("../../fonts/gesstwo/gesstwo-Bold.woff") format("woff"), url("../../fonts/gesstwo/gesstwo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Qatar2022";
  src: url("../../fonts/Qatar/Qatar2022-Thin.woff2") format("woff2"), url("../../fonts/Qatar/Qatar2022-Thin.woff") format("woff"), url("../../fonts/Qatar/Qatar2022-Thin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Qatar2022";
  src: url("../../fonts/Qatar/Qatar2022-Book.woff2") format("woff2"), url("../../fonts/Qatar/Qatar2022-Book.woff") format("woff"), url("../../fonts/Qatar/Qatar2022-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Qatar2022";
  src: url("../../fonts/Qatar/Qatar2022-Medium.woff2") format("woff2"), url("../../fonts/Qatar/Qatar2022-Medium.woff") format("woff"), url("../../fonts/Qatar/Qatar2022-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Qatar2022";
  src: url("../../fonts/Qatar/Qatar2022-Bold.woff2") format("woff2"), url("../../fonts/Qatar/Qatar2022-Bold.woff") format("woff"), url("../../fonts/Qatar/Qatar2022-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Qatar2022";
  src: url("../../fonts/Qatar/Qatar2022-Heavy.woff2") format("woff2"), url("../../fonts/Qatar/Qatar2022-Heavy.woff") format("woff"), url("../../fonts/Qatar/Qatar2022-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.hiddenOverflow {
  overflow: hidden;
}

@font-face {
  font-family: "icomoon";
  src: url("../../fonts/icons/icomoon.eot");
  src: url("../../fonts/icons/icomoon.woff") format("woff"), url("../../fonts/icons/icomoon.eot#iefix") format("embedded-opentype"), url("../../fonts/icons/icomoon.ttf") format("truetype"), url("../../fonts/icons/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
.icon-arrow-down:before {
  content: "\E900" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left:before {
  content: "\E901" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-right:before {
  content: "\E902" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-close:before {
  content: "\E903" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\E909" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
  content: "\E90A" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-linkedin:before {
  content: "\E90B" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-logo-text:before {
  content: "\E918" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-loupe:before {
  content: "\E919" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-twitter:before {
  content: "\E924" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-youtube:before {
  content: "\E925" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-plane:before {
  content: "\E904" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-plus:before {
  content: "\E905" !important;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

#page {
  overflow: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  color: #2C2C2C;
  line-height: 1.2;
  font-size: 1.6rem;
  overflow-x: hidden;
}
html[dir=rtl] body {
  font-family: "gesstwo", sans-serif;
}

img {
  max-width: 100%;
  image-rendering: optimizeQuality;
  image-rendering: -webkit-optimize-contrast;
}

::-moz-selection {
  background: #3FAE2A;
  color: #FFFFFF;
}

::selection {
  background: #3FAE2A;
  color: #FFFFFF;
}

.alternativeDesign ::-moz-selection {
  background: #00ABC7;
  color: #FFFFFF;
}

.alternativeDesign ::selection {
  background: #00ABC7;
  color: #FFFFFF;
}

.sliderArrow {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background-color: #e5f1e3;
  color: #3FAE2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0.5rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .sliderArrow {
  transform: scaleX(-1);
}
.sliderArrow.swiper-button-disabled {
  transform: scale(0) !important;
}
.sliderArrow:hover {
  background-color: #c0e2ba;
}
.sliderArrow:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.9);
}

input[type=checkbox] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.wpcf7-list-item {
  margin-left: 0;
  margin-right: 1rem;
  vertical-align: middle;
}
html[dir=rtl] .wpcf7-list-item {
  margin-right: 0;
  margin-left: 1rem;
}

.commonArrows__arrows {
  display: flex;
  justify-content: flex-end;
  margin: -0.5rem;
  margin-bottom: 0.5rem;
}
.commonArrows__arrow {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background-color: rgba(63, 174, 42, 0.1);
  color: #3FAE2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0.5rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .commonArrows__arrow {
  transform: scaleX(-1);
}
.commonArrows__arrow.swiper-button-disabled {
  transform: scale(0) !important;
}
.commonArrows__arrow:hover {
  background-color: rgba(63, 174, 42, 0.3);
}
.commonArrows__arrow:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.9);
}

#accessibilityBar {
  transition: all 0.5s ease-in-out;
  z-index: 9999;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  background-color: rgba(34, 34, 34, 0.75);
  border-radius: 0.5rem 0 0 0.5rem;
  box-shadow: 0 5px 30px rgba(34, 34, 34, 0);
}

#accessibilityBar * {
  box-sizing: border-box;
}

#accessibilityBar.active {
  transform: translate(0, -50%);
  box-shadow: 0 5px 30px rgba(34, 34, 34, 0.5);
}

#accessibilityBar button {
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  cursor: pointer;
}

#accessibilityBar button#universalAccessBtn {
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  background-color: #ed1c24;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  transform: translate(-110%, -50%);
  cursor: pointer;
}

#accessibilityBar button#universalAccessBtn span {
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  text-align: right;
  font-weight: bold;
  color: #fff;
  background-color: #ed1c24;
  box-shadow: 0 10px 30px rgba(102, 102, 102, 0.1);
  height: 100%;
  padding: 0 1rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
}

#accessibilityBar button#universalAccessBtn.collapsed span {
  opacity: 0;
  right: 50%;
}

#accessibilityBar button#universalAccessBtn:hover span {
  opacity: 1;
  right: 120%;
}

#accessibilityBar button.setAccessibility {
  font-size: 12px;
  font-size: 0.75rem;
  transition: all 0.3s ease-in-out;
  color: #222;
  font-weight: 700;
  background-color: #eee;
  width: 100%;
  padding: 0.1rem 0.2rem;
  border-radius: 0.25rem;
  border: none;
  display: flex;
  align-items: center;
  margin: 0.25rem;
}

#accessibilityBar button.setAccessibility:hover {
  background-color: #fff;
}

#accessibilityBar button.setAccessibility strong {
  color: #fff;
  background-color: #ed1c24;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
}
body.contrast #accessibilityBar button[data-accessibility=contrast] {
  background-color: #ed1c24;
}

body.darkmode #accessibilityBar button[data-accessibility=dark] {
  background-color: #ed1c24;
  color: #fff;
}

body.accessibility_readingLine #accessibilityBar button[data-accessibility=readingLine] {
  background-color: #ed1c24;
  color: #fff;
}

body.accessibility_markerLine #accessibilityBar button[data-accessibility=markerLine] {
  background-color: #ed1c24;
  color: #fff;
}

body.accessibility_readingLine #readingLine {
  background-color: #ed1c24;
  opacity: 1;
  width: 100vw;
  height: 0.5rem;
  position: absolute;
  left: 0;
  z-index: 9999;
  transform: translateY(0.5rem);
}

body.accessibility_markerLine #markerLine {
  background-color: #e4fd00;
  opacity: 0.75;
  border-width: 0.1px 0;
  border-style: solid;
  border-color: #cde400;
  width: 100vw;
  height: 1.75rem;
  position: absolute;
  left: 0;
  z-index: 9999;
  transform: translateY(-1rem);
  mix-blend-mode: color;
}

body.accessibility_markerLine.contrast #markerLine {
  mix-blend-mode: multiply;
  opacity: 1;
}

body.accessibility_markerLine.darkmode #markerLine {
  opacity: 0.25;
  background: #655b5b;
  mix-blend-mode: unset;
}

body.contrast {
  background: #000;
  color: #fff;
}

body.contrast nav, body.contrast li, body.contrast ol, body.contrast header, body.contrast footer, body.contrast section, body.contrast main, body.contrast aside, body.contrast article {
  background-color: #000;
  color: #fff;
}

body.contrast h1, body.contrast h2, body.contrast h3, body.contrast h4, body.contrast h5, body.contrast h6, body.contrast p, body.contrast label, body.contrast strong, body.contrast em, body.contrast cite, body.contrast q, body.contrast i, body.contrast b, body.contrast u, body.contrast span {
  color: #fff;
}

body.contrast a {
  color: #ff0;
}

body.contrast a * {
  color: #ff0;
}

body.contrast button, body.contrast input[type=button], body.contrast input[type=reset], body.contrast input[type=submit] {
  background: #ff0;
  color: #000;
  font-weight: bold;
  border: none;
}

body.contrast img {
  filter: grayscale(100%) contrast(120%);
}

body.contrast input[type=text], body.contrast input[type=password], body.contrast input[type=url], body.contrast input[type=search], body.contrast input[type=email], body.contrast input[type=tel], body.contrast input[type=date], body.contrast input[type=month], body.contrast input[type=week], body.contrast input[type=datetime], body.contrast input[type=datetime-local], body.contrast textarea, body.contrast input[type=number] {
  background: #000;
  border: 1px solid #fff;
  color: #ff0;
}

body.contrast #accessibilityBar * {
  background-color: #000;
  color: #ff0;
}

body.contrast #accessibilityBar .setAccessibility {
  border: 1px solid;
}

body.contrast #accessibilityBar .setAccessibility[data-accessibility=contrast] {
  background-color: #ff0;
  color: #000;
}

body.darkmode {
  background: #121212;
  color: #655b5b;
}

body.darkmode nav, body.darkmode li, body.darkmode ol, body.darkmode header, body.darkmode footer, body.darkmode section, body.darkmode main, body.darkmode aside, body.darkmode article {
  background: #121212;
  color: #655b5b;
}

body.darkmode h1, body.darkmode h2, body.darkmode h3, body.darkmode h4, body.darkmode h5, body.darkmode h6, body.darkmode p, body.darkmode label, body.darkmode strong, body.darkmode em, body.darkmode cite, body.darkmode q, body.darkmode i, body.darkmode b, body.darkmode u, body.darkmode span {
  color: #655b5b;
}

body.darkmode a {
  color: #8d8080;
}

body.darkmode a * {
  color: #8d8080;
}

body.darkmode button, body.darkmode input[type=button], body.darkmode input[type=reset], body.darkmode input[type=submit] {
  background: #292323;
  color: #655b5b;
  border: #191414;
}

body.darkmode img {
  filter: grayscale(100%) contrast(120%);
}

body.darkmode input[type=text], body.darkmode input[type=password], body.darkmode input[type=url], body.darkmode input[type=search], body.darkmode input[type=email], body.darkmode input[type=tel], body.darkmode input[type=date], body.darkmode input[type=month], body.darkmode input[type=week], body.darkmode input[type=datetime], body.darkmode input[type=datetime-local], body.darkmode textarea, body.darkmode input[type=number] {
  background: #191414;
  border: 1px solid #292323;
  color: #655b5b;
}

body.darkmode img {
  transition: all 0.3s ease-in-out;
  filter: grayscale(75%) contrast(90%);
}

body.darkmode img:hover {
  filter: grayscale(0) contrast(100%);
}

body.darkmode #accessibilityBar * {
  background-color: #655b5b;
  color: #121212;
}

body.darkmode #accessibilityBar .setAccessibility[data-accessibility=darkmode] {
  background-color: #121212;
  color: #655b5b;
}

body.darkmode #accessibilityBar .setAccessibility {
  color: #8d8080;
}

body.darkmode #accessibilityBar .setAccessibility * {
  color: #8d8080;
}

body.darkmode #accessibilityBar .setAccessibility strong, body.darkmode #accessibilityBar .setAccessibility i {
  background-color: #191414;
}

.contrast .header__topBar {
  background-color: #000;
}

body.contrast .navbar__top {
  background-color: #000 !important;
}

body.contrast .navbar__bottom {
  background: #000 !important;
}

body.contrast .floatingNavbar__progress {
  background-color: #000 !important;
}

body.contrast .floatingNavbar__progress {
  background-color: #000 !important;
}

body.contrast .floatingNavbar {
  background-color: #000 !important;
}

body.contrast h1, body.contrast h2, body.contrast h3, body.contrast h4, body.contrast h5, body.contrast h6, body.contrast p, body.contrast label, body.contrast strong, body.contrast em, body.contrast cite, body.contrast q, body.contrast i, body.contrast b, body.contrast u, body.contrast span {
  color: #ff0 !important;
}

body.contrast .searchform__icon.icon-loupe,
body.contrast .latestNews__slide,
body.contrast .latestNews,
body.contrast .banner__close {
  background-color: #000 !important;
}

body.contrast .wcagIconFill {
  fill: #ff0 !important;
}

._access-icon {
  display: none !important;
}

#accessibilityBar {
  display: none;
}

._access {
  display: none !important;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
  overflow: hidden;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: 0 0;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc string {
  color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.alternativeDesign .banner__button.button {
  background: linear-gradient(45deg, #83113D, #42091F);
  border: none;
  padding: 7px 7px 7px 24px;
}
.alternativeDesign .banner__button.button .icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  margin-left: 1rem;
}
.alternativeDesign .banner__button.button .icon:before {
  color: #83113D;
}
.alternativeDesign .banner__button.button .icon:after {
  background-color: #83113D;
}
.alternativeDesign .banner__button.button:hover {
  text-shadow: none;
  color: #FFFFFF;
}
.alternativeDesign .banner__button.button:hover .icon:before {
  color: #FFFFFF;
}

.banner {
  width: 100%;
  z-index: 101;
  color: #FFFFFF;
  background-color: #2C2C2C;
}
.banner--hidden {
  display: none;
}
.banner__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 5.4rem;
  padding-top: 5px;
  padding-bottom: 5px;
}
.banner__title {
  margin: 5px;
}
.banner__title strong {
  font-weight: 700;
}
.banner__close {
  flex-shrink: 0;
  margin-left: auto;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: #FFFFFF;
  color: #3FAE2A;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s ease-in-out;
}
.banner__close .icon:before {
  vertical-align: middle;
  pointer-events: none;
}
.banner__close:active {
  transform: scale(0.95);
}
html[dir=rtl] .banner__close {
  margin-left: unset;
  margin-right: auto;
}
.banner__button.button {
  white-space: nowrap;
  flex-shrink: 0;
  margin: 5px;
  font-size: 1.2rem;
  padding: 7px 24px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.banner__button.button .icon {
  display: none;
}
.banner__button.button:hover {
  transform: none;
  background-color: #FFFFFF;
  color: #2C2C2C;
}

.button {
  cursor: pointer;
}
.button--small {
  padding: 0.6rem 0.6rem 0.6rem 3rem;
  font-size: 1.6rem;
}
.button--small .icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
}
.button--minimized {
  border: 1px solid #3FAE2A;
  border-radius: 6rem;
  padding: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #3FAE2A;
  transition: 0.1s ease-in-out;
}
.button--minimized span {
  display: none;
  white-space: nowrap;
}
.button--minimized .icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #3FAE2A;
  border-radius: 50%;
  vertical-align: middle;
  font-size: 1.2rem;
}
.button--minimized .icon:before {
  position: relative;
  color: #3FAE2A;
  z-index: 1;
}
.button--minimized .icon:after {
  content: "";
  transition: 0.3s ease-in-out;
  background-color: #3FAE2A;
  transform: scale(0);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
html[dir=rtl] .button--minimized .icon {
  transform: rotate(180deg);
}
.button--minimized:hover {
  transform: translateY(-3px);
}
.button--minimized:hover .icon {
  text-shadow: none;
}
.button--minimized:hover .icon:before {
  color: #FFFFFF;
}
.button--minimized:hover .icon:after {
  transform: scale(1);
}
.button--minimized:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.95);
}
.button--outline {
  display: inline-block;
  border: 1px solid #3FAE2A;
  color: #3FAE2A;
  border-radius: 6rem;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  transition: 0.1s ease-in-out;
}
html[dir=rtl] .button--outline {
  padding: 0.9rem 3rem 0.9rem 1.2rem;
}
.button--outline.button--small {
  padding: 0.6rem 0.6rem 0.6rem 3rem;
  font-size: 1.6rem;
}
.button--outline.button--small .icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
}
.button--outline .icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid #3FAE2A;
  border-radius: 50%;
  margin-left: 2rem;
  vertical-align: middle;
}
html[dir=rtl] .button--outline .icon {
  margin-left: 0;
  margin-right: 2rem;
  transform: rotateZ(180deg);
}
.button--outline .icon:before {
  position: relative;
  color: #3FAE2A;
  z-index: 1;
}
.button--outline .icon:after {
  content: "";
  transition: 0.3s ease-in-out;
  background-color: #3FAE2A;
  transform: scale(0);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.button--outline:hover {
  text-shadow: 0 0 2px #FFFFFF;
  transform: translateY(-3px);
}
.button--outline:hover .icon {
  text-shadow: none;
}
.button--outline:hover .icon:before {
  color: #FFFFFF;
}
.button--outline:hover .icon:after {
  transform: scale(1);
}
.button--outline:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.95);
}
.button--outline-white {
  display: inline-block;
  border: 1px solid #FFFFFF;
  background: #2C2C2C3C;
  color: #FFFFFF;
  border-radius: 6rem;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  transition: 0.1s ease-in-out;
}
html[dir=rtl] .button--outline-white {
  padding: 0.9rem 3rem 0.9rem 1.2rem;
}
.button--outline-white.button--small {
  padding: 0.6rem 0.6rem 0.6rem 3rem;
  font-size: 1.6rem;
}
.button--outline-white.button--small .icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
}
.button--outline-white .icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  margin-left: 2rem;
  vertical-align: middle;
}
html[dir=rtl] .button--outline-white .icon {
  margin-left: 0;
  margin-right: 2rem;
  transform: rotateZ(180deg);
}
.button--outline-white .icon:before {
  position: relative;
  color: #3FAE2A;
  z-index: 1;
}
.button--outline-white .icon:after {
  content: "";
  transition: 0.3s ease-in-out;
  background-color: #3FAE2A;
  transform: scale(0);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.button--outline-white:hover {
  text-shadow: 0 0 1px #FFFFFF;
  transform: translateY(-3px);
}
.button--outline-white:hover .icon {
  text-shadow: none;
}
.button--outline-white:hover .icon:before {
  color: #FFFFFF;
}
.button--outline-white:hover .icon:after {
  transform: scale(1);
}
.button--outline-white:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.95);
}
.button--iconFlying:hover .icon:before {
  animation: flying 0.5s ease-in-out;
}
.button--blue {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  background: linear-gradient(45deg, #00ABC7, #005664);
  border-radius: 6rem;
  padding: 1.4rem 1.2rem 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.1s ease-in-out;
}
html[dir=rtl] .button--blue {
  padding: 1.4rem 3rem 1.2rem 1.4rem;
}
.button--blue .icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  margin-left: 2rem;
  vertical-align: middle;
  overflow: hidden;
}
html[dir=rtl] .button--blue .icon {
  margin-left: 0;
  margin-right: 2rem;
  transform: rotateZ(180deg);
}
.button--blue .icon:before {
  position: relative;
  color: #00ABC7;
  z-index: 1;
}
html[dir=rtl] .button--blue.button--iconFlying .icon {
  transform: rotateZ(0);
  order: -1;
}
.button--blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(44, 44, 44, 0.3);
}
.button--blue:hover .icon {
  text-shadow: none;
}
.button--blue:hover .icon:before {
  animation: sliding 0.3s ease-in-out;
}
.button--blue:hover.button--iconFlying .icon:before {
  animation: flying 0.5s ease-in-out;
}
.button--blue:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.95);
}
.button--green {
  flex-shrink: 0;
  display: inline-block;
  color: #FFFFFF;
  box-shadow: 2px 4px 12px 0px rgba(63, 174, 42, 0.3);
  background: linear-gradient(45deg, #3FAE2A, #205715);
  border-radius: 6rem;
  padding: 1.1rem 1.1rem 1.1rem 2.4rem;
  font-size: 1.4rem;
  transition: 0.1s ease-in-out;
}
html[dir=rtl] .button--green {
  padding: 0.9rem 3rem 0.9rem 1.2rem;
}
.button--green .icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  margin-left: 1.2rem;
  vertical-align: middle;
}
html[dir=rtl] .button--green .icon {
  margin-left: 0;
  margin-right: 1.2rem;
  transform: rotateZ(180deg);
}
.button--green .icon:before {
  position: relative;
  color: #3FAE2A;
  z-index: 1;
}
.button--green .icon:after {
  content: "";
  transition: 0.3s ease-in-out;
  background-color: #3FAE2A;
  transform: scale(0);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.button--green:hover {
  transform: translateY(-3px);
}
.button--green:hover .icon {
  text-shadow: none;
}
.button--green:hover .icon:before {
  color: #FFFFFF;
}
.button--green:hover .icon:after {
  transform: scale(1);
}
.button--green:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.95);
}

@keyframes fly {
  0% {
    bottom: 50%;
    left: 50%;
  }
  50% {
    bottom: 120%;
    left: 120%;
  }
  51% {
    bottom: -20%;
    left: -20%;
  }
  100% {
    bottom: 50%;
    left: 50%;
  }
}
@keyframes sliding {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(150%);
  }
  51% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes flying {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(150%) translateY(-150%);
  }
  51% {
    transform: translateX(-150%) translateY(150%);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
.dropdown {
  position: relative;
  z-index: 10;
  margin-bottom: 0.6rem;
}
.dropdown__title {
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}
.dropdown__title:after {
  content: "\E900";
  font-family: "icomoon", sans-serif;
  margin-left: 6px;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(63, 174, 42, 0.1);
  color: #3FAE2A;
  border-radius: 50%;
  vertical-align: middle;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .dropdown__title:after {
  margin-left: 0;
  margin-right: 6px;
}
.dropdown__list {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  background-color: #F8F8F8;
  padding: 1rem;
  border-radius: 5px;
  font-size: 1.2rem;
}
.dropdown__list li {
  cursor: pointer;
  margin-bottom: 1rem;
}
.dropdown__list li:hover {
  color: #3FAE2A;
}
.dropdown:hover .dropdown__list {
  opacity: 1;
  pointer-events: all;
}

[data-dropdown-values] {
  display: none;
}

.inputRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}
.inputRow .inputWrapper,
.inputRow .inputMaterial {
  flex: 1 1 200px;
  margin-left: 15px;
  margin-right: 15px;
}
html[dir=rtl] .inputRow {
  flex-direction: row-reverse;
}

.inputWrapper {
  color: #2C2C2C;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 3rem;
  display: block;
}
html[dir=rtl] .inputWrapper {
  text-align: right;
}
.inputWrapper input,
.inputWrapper textarea {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1.2rem 0;
  width: 100%;
  border-bottom: 1px solid #B5B5B5;
}
.inputWrapper input:focus,
.inputWrapper textarea:focus {
  border-bottom-color: #3FAE2A;
}
html[dir=rtl] .inputWrapper input,
html[dir=rtl] .inputWrapper textarea {
  direction: RTL !important;
}
.inputWrapper textarea {
  resize: vertical;
  min-height: 4.2rem;
  height: 4.2rem;
  max-height: 30rem;
}

.inputMaterial {
  position: relative;
  width: 100%;
  display: block;
  font-size: 1.6rem;
  color: #2C2C2C;
  transition: 0.1s ease;
  margin-bottom: 3rem;
}
.inputMaterial--focused .inputMaterial__label {
  top: 0px;
  font-size: 1.2rem;
}
.inputMaterial--invalid span {
  color: #83113D;
}
.inputMaterial--invalid input {
  border-color: #83113D;
}
.inputMaterial__label {
  position: absolute;
  display: block;
  white-space: nowrap;
  left: 0;
  top: 15px;
  font-size: 1.6rem;
  color: #555555;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  transform-origin: 0 0;
}
html[dir=rtl] .inputMaterial__label {
  left: unset;
  right: 0;
}
.inputMaterial__acceptance {
  display: block;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.inputMaterial__acceptance a {
  color: #00ABC7;
  font-weight: 700;
  text-decoration: underline;
}
.inputMaterial__acceptance a:hover {
  text-decoration: none;
}
.inputMaterial textarea,
.inputMaterial input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #B5B5B5;
}
.inputMaterial textarea:hover, .inputMaterial textarea:focus,
.inputMaterial input:hover,
.inputMaterial input:focus {
  border-bottom-color: #3FAE2A;
}

html[dir=rtl] .intl-tel-input.allow-dropdown .flag-container,
html[dir=rtl] .intl-tel-input.separate-dial-code .flag-container {
  right: 0;
  left: auto;
}

html[dir=rtl] .intl-tel-input.allow-dropdown input,
html[dir=rtl] .intl-tel-input.allow-dropdown input[type=tel],
html[dir=rtl] .intl-tel-input.allow-dropdown input[type=text],
html[dir=rtl] .intl-tel-input.separate-dial-code input,
html[dir=rtl] .intl-tel-input.separate-dial-code input[type=tel],
html[dir=rtl] .intl-tel-input.separate-dial-code input[type=text] {
  padding-right: 52px;
  padding-left: 6px;
  margin-left: 0;
}

::-webkit-input-placeholder {
  color: #B5B5B5;
}

:-ms-input-placeholder {
  color: #B5B5B5;
}

::-ms-input-placeholder {
  color: #B5B5B5;
}

::placeholder {
  color: #B5B5B5;
}

.menuIcon span:before, .menuIcon:after, .menuIcon:before, .menuIcon span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0.05em;
  background-color: #3FAE2A;
  width: 0.9em;
  height: 0.07em;
  border-radius: 10rem;
}

.menuIcon {
  flex-shrink: 0;
  font-size: 3.5rem;
  width: 1em;
  height: 1em;
  display: inline-block;
  position: relative;
  background-color: transparent;
  border: 0;
  padding: 0;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: manipulation;
  cursor: pointer;
  z-index: 1001;
}
.menuIcon span {
  margin-top: -0.035em;
}
.menuIcon:before {
  content: "";
  margin-top: -0.315em;
}
.menuIcon:after {
  content: "";
  margin-top: 0.245em;
  left: auto;
  right: 0.05em;
}
.menuIcon:before, .menuIcon:after {
  transition: 0.2s ease 0.2s;
}
.menuIcon span {
  transition: 0.2s;
}
.menuIcon span:before {
  content: "";
  transition: inherit;
  left: 0;
  top: 0;
}
.menuIcon--active:before, .menuIcon--active:after {
  transition: 0.2s ease;
  width: 0;
}
.menuIcon--active span {
  transform: rotate(45deg);
  transition: 0.2s ease 0.2s;
}
.menuIcon--active span:before {
  transform: rotate(-90deg);
}

.progressbar {
  height: 18px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #EDEDED;
  position: relative;
}
html[dir=rtl] .progressbar {
  transform: scaleX(-1);
}
.progressbar:before, .progressbar:after {
  content: "";
  height: 42px;
  width: 2px;
  background-color: #EDEDED;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.progressbar:before {
  left: 0;
}
.progressbar:after {
  right: 0;
}
.progressbar__progress {
  background: linear-gradient(90deg, #00ABC7 0%, #3FAE2A 100%) 0% 0% no-repeat padding-box;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 0px 20px 20px 0px;
}
.progressbar__progress[data-progress="100"] {
  border-radius: 0;
}
.progressbar__wrapper {
  margin-bottom: 4rem;
  width: 100%;
}
.progressbar__title {
  text-transform: uppercase;
  margin-bottom: 5px;
}
.progressbar__title, .progressbar__digit {
  font-weight: 800;
  font-size: 2.4rem;
}
.progressbar__subtitle {
  color: #555555;
  font-size: 1.8rem;
}
.progressbar__row {
  display: flex;
  justify-content: space-between;
  margin: 2.4rem -0.5rem 0.5rem;
  overflow: hidden;
}
.progressbar__info {
  display: flex;
  flex-direction: column;
  margin: 0 0.5rem;
}
.progressbar__digit {
  margin: 0 0.5rem;
}

.readmore {
  display: flex;
  align-items: center;
}
.readmore__icon {
  display: flex;
  width: 38px;
  height: 20px;
  overflow: hidden;
  position: relative;
}
html[dir=rtl] .readmore__icon {
  transform: scaleX(-1);
}
.readmore__svg {
  width: 38px;
  height: 20px;
  position: absolute;
  transition: 0.3s ease-in-out;
}
.readmore__svg--normal path {
  stroke: #2C2C2C;
}
.readmore__svg--hover {
  transform: translateX(-100%);
}
html[dir=rtl] .readmore__svg--hover {
  transform: translateX(100%);
}
.readmore__svg--hover path {
  stroke: #00ABC7;
}
.readmore__text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #00ABC7;
  margin-left: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .readmore__text {
  margin-right: 16px;
  margin-left: unset;
  transform: translateX(20px);
}

.readmore:hover:hover .readmore__text,
.newsFifa__itemBox:hover .readmore__text,
.latestNewsFifa__itemBox:hover .readmore__text {
  opacity: 1;
  transform: translateX(0);
}
.readmore:hover:hover .readmore__svg--normal,
.newsFifa__itemBox:hover .readmore__svg--normal,
.latestNewsFifa__itemBox:hover .readmore__svg--normal {
  transform: translateX(100%);
}
html[dir=rtl] .readmore:hover:hover .readmore__svg--normal,
html[dir=rtl] .newsFifa__itemBox:hover .readmore__svg--normal,
html[dir=rtl] .latestNewsFifa__itemBox:hover .readmore__svg--normal {
  transform: translateX(-100%);
}
.readmore:hover:hover .readmore__svg--hover,
.newsFifa__itemBox:hover .readmore__svg--hover,
.latestNewsFifa__itemBox:hover .readmore__svg--hover {
  transform: translateX(0%);
}

.wcag {
  display: flex;
  margin-top: 4px;
}
.wcagItem {
  cursor: pointer;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid rgba(181, 181, 181, 0.5);
}
.wcagItem li {
  list-style: none;
  text-transform: uppercase;
}
.wcagItem--lang {
  display: none;
}
.wcagItem:nth-last-of-type(2), .wcagItem:last-child {
  border: none;
  padding: 0;
}
html[dir=rtl] .wcagItem {
  border-right: none;
  border-left: 1px solid rgba(181, 181, 181, 0.5);
  padding-right: 0;
  margin-right: 0;
  padding-left: 12px;
  margin-left: 12px;
}
html[dir=rtl] .wcagItem:nth-last-of-type(2), html[dir=rtl] .wcagItem:last-child {
  border: none;
  padding: 0;
}
.wcagItem:hover {
  text-shadow: 0.5px 0 0 #2C2C2C;
}
.wcagIcon {
  vertical-align: middle;
}
.wcagIconFill {
  fill: #2C2C2C;
}
.wcagIconStroke {
  stroke: #2C2C2C;
}
.wcagIcon svg {
  height: 1.2rem;
  width: 1.4rem;
}
.wcagText {
  display: inline-flex;
  align-items: center;
}

.alternativeDesign .wcagItem--lang {
  display: inline-block;
}
.alternativeDesign .wcagItem {
  padding-top: 3px;
}
.alternativeDesign .wcagItem:nth-last-of-type(2) {
  border-right: 1px solid rgba(181, 181, 181, 0.5);
  padding-right: 12px;
}
html[dir=rtl] .alternativeDesign .wcagItem:nth-last-of-type(2) {
  padding-right: 0;
  padding-left: 12px;
  border-left: 1px solid rgba(181, 181, 181, 0.5);
}

.youtube {
  position: relative;
  padding-top: 47%;
  background: black;
  cursor: pointer;
}
.youtube__playButton {
  width: 12rem;
  height: 12rem;
  background: rgba(85, 85, 85, 0.4);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.youtube__playButtonIcon {
  transform: translateX(3px);
}
.youtube__playButtonIcon path {
  fill: #FFFFFF;
  transition: 0.3s ease-in-out;
}
.youtube__playButton:before, .youtube__playButton:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  border: 1px solid #FFFFFF;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 0;
}
.youtube__playButton:hover .youtube__playButtonIcon {
  transform: translateX(3px);
}
.youtube__playButton:hover .youtube__playButtonIcon path {
  fill: #3FAE2A;
}
.youtube__playButton:hover:after {
  top: -34px;
  left: -34px;
  bottom: -34px;
  right: -34px;
  opacity: 0.4;
}
.youtube__playButton:hover:before {
  top: -16px;
  left: -16px;
  bottom: -16px;
  right: -16px;
  opacity: 0.6;
}
.youtube img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  transition: 0.6s;
  position: absolute;
  top: 0;
  left: 0;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.alternativeDesign .youtube__playButton:hover .youtube__playButtonIcon path {
  fill: #00ABC7;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container--navbar {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container--custom {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container--fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.container--wide {
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.container--small {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container--fifa {
  width: 100%;
  max-width: 93rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container--middle {
  width: 100%;
  max-width: 160rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.error404 {
  position: relative;
}
.error404__row {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error404__button {
  margin-top: 4.8rem;
}
.error404__digits {
  position: relative;
  font-size: 21.5rem;
  font-weight: 900;
}
.error404__digitsShadow {
  position: relative;
  color: #EDEDED;
}
.error404__digitsBorders {
  position: absolute;
  top: 10px;
  left: 50%;
  color: transparent;
  -webkit-text-stroke-color: #00ABC7;
  -webkit-text-stroke-width: 2px;
  transform: translateX(-52%);
}
.error404__separator {
  width: 200px;
  height: 2px;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
  margin: auto;
  margin-bottom: 3.6rem;
}
.error404__title {
  font-size: 3.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.error404__text {
  max-width: 544px;
  font-size: 1.6rem;
}
.error404__circle {
  position: absolute;
  width: 1568px;
  height: 1568px;
  max-width: 100%;
  background-color: #F8F8F8;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
}

.fifa__number {
  font-size: 2.4rem;
  margin-bottom: 4.8rem;
}
.fifa__number:after {
  content: "";
  display: block;
  margin-top: 1.2rem;
  width: 8rem;
  height: 1px;
  background-color: #FFFFFF;
}
.fifa__h3 {
  font-family: "Qatar2022", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 3rem;
}
.fifa__title {
  position: relative;
}
.fifa__titleDigit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  font-size: 5.4rem;
  color: #B5B5B5;
  transform: translateX(-100%);
  left: -14rem;
}
html[dir=rtl] .fifa__titleDigit {
  left: unset;
  right: -14rem;
  transform: translateX(100%);
}
.fifa__titleDigit:before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 0.4rem;
  background-color: #B5B5B5;
  margin-right: 1rem;
}
html[dir=rtl] .fifa__titleDigit:before {
  margin-right: unset;
  margin-left: 1rem;
}
.fifa__titleText {
  font-family: "Qatar2022", sans-serif;
  font-size: 5.4rem;
  line-height: 1.4;
  font-weight: 900;
  color: #00ABC7;
  background: -webkit-linear-gradient(left, #00ABC7, #005664);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  max-width: 37rem;
  margin-bottom: 2.4rem;
}
.fifa__titleText--blue {
  color: #00ABC7 !important;
  background: -webkit-linear-gradient(left, #00ABC7, #005664) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.fifa__arrows {
  display: flex;
  margin: -1.7rem;
}
.fifa__arrow {
  margin: 1.7rem;
  cursor: pointer;
}
.fifa__arrow:hover {
  transform: scale(1.1);
}
.fifa__arrow:active {
  transform: scale(0.95);
}
.fifa__arrow.swiper-button-disabled {
  filter: brightness(0.8);
}

.fifa__simpleText {
  font-size: 1.6rem;
  line-height: 1.4;
}

.fifa__ball {
  fill: #00ABC7;
}

.fifa__balls {
  display: grid;
  gap: 2.4rem;
}
.fifa__balls--row {
  grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
}

.fifa__dots {
  position: absolute;
  background: url("../../img/fifa/dots-grid.svg");
}
.fifa__dots--vertical {
  width: 22rem;
  height: 30rem;
}
.fifa__dots--horizontal {
  width: 22rem;
  height: 16rem;
}
.fifa__dotsCustom {
  position: absolute;
  background: url("../../img/fifa/dots-custom-grid.svg");
}

.colorStyle--red .fifa__ball {
  fill: #83113D;
}
.colorStyle--red .fifa__dots {
  background: url("../../img/fifa/dots-grid-red.svg");
}
.colorStyle--red .fifa__custom {
  background: url("../../img/fifa/dots-custom-grid.svg");
}
.colorStyle--red .fifa__titleText {
  color: #83113D;
  background: -webkit-linear-gradient(left, #83113D, #42091F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footerInfo__item p {
  line-height: 20px !important;
}

.footerInfo {
  margin-bottom: 40px;
  display: flex;
}
.footerInfo__fifa {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}
.footerInfo__item {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.footerInfo__itemTitle {
  font-size: 23px;
  margin-bottom: 10px;
  font-weight: bold;
}
.footerInfo__item p {
  line-height: 10px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background-color: #2C2C2C;
  color: #FFFFFF;
  line-height: 1.3;
  z-index: 1;
}
.footer__toTopWrapper {
  height: 0;
}
.footer__toTop {
  cursor: pointer;
  margin-left: auto;
  margin-right: 2rem;
  transform: translateY(-130%) rotateZ(-180deg);
  border: 3px solid #3FAE2A;
  background-color: #FFFFFF;
  color: #3FAE2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  box-shadow: -2px 6px 25px rgba(63, 174, 42, 0.2);
  position: relative;
  z-index: 50;
}
html[dir=rtl] .footer__toTop {
  margin-right: auto;
  margin-left: 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 20px;
}
.footer__col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.footer__col--4 {
  lign-self: flex-end;
  justify-self: flex-end;
}
.footer__title {
  font-size: 4.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1;
}
.footer__menu {
  font-size: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.footer__menu li {
  margin: 20px;
}
.footer__menu li > a {
  transition: 0.3s ease-in-out;
}
.footer__menu li > a:hover {
  filter: drop-shadow(0 0 10px #FFFFFF);
}
.footer__logo {
  margin-top: auto;
  filter: saturate(0) contrast(0) brightness(10);
  max-width: 20rem;
  max-height: 10rem;
  transition: 0.3s ease-in-out;
}
.footer__logo img {
  max-width: 100%;
  max-height: 100%;
}
.footer__logo:hover {
  filter: saturate(0) contrast(0) brightness(10) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}
.footer__button {
  font-weight: 400;
}
.footer__button .icon {
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
.footer__copyrightRow {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  padding-top: 14px;
  border-top: 1px solid #FFFFFF;
}
.footer__backgroundShape {
  opacity: 0.3;
  filter: saturate(0);
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
  height: 588%;
}

.footerFifa {
  padding-top: 5.4rem;
  padding-bottom: 5.4rem;
}
.footerFifa__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
.footerFifa__menu li {
  margin-bottom: 1.6rem;
}
.footerFifa__title {
  font-weight: 700;
  font-family: "Qatar2022", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.footerFifa__subtitle {
  max-width: 13rem;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}
.footerFifa__copyright {
  background-color: #555555;
  color: #FFFFFF;
}
.footerFifa__copyrightRow {
  min-height: 4rem;
  font-size: 1.2rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footerFifa__copyrightColumn {
  margin: -15px;
}
.footerFifa__copyrightColumn > * {
  margin: 15px;
}
.footerFifa__button .icon {
  background-color: #FFFFFF;
}
.footerFifa .social {
  color: #FFFFFF;
  max-width: 17rem;
  flex-wrap: wrap;
}
.footerFifa .social__item {
  font-size: 1.4rem;
  width: 3.6rem;
  height: 3.6rem;
  background: linear-gradient(90deg, #00ABC7, #005664);
}

.shareDiv {
  transition: opacity 1s linear;
  opacity: 0;
  background-color: #80808052;
  padding: 4px;
  padding-right: 10px;
  align-items: center;
  border-radius: 15px;
  display: flex;
}

.cusIcon {
  margin-left: 14px;
  width: 14px;
  height: 12px;
  cursor: pointer;
}

.wcagItem {
  padding-top: 3px;
}

.shareIcon {
  border-radius: 10px;
}

.shareDivClass--off {
  transition: opacity 1s linear;
  opacity: 0;
}

.shareDivClass--on {
  transition: opacity 1s linear;
  opacity: 1;
}

.sharButtonClass--on {
  transition: opacity 1s linear;
  opacity: 0;
  display: none;
}

.sharButtonClass--off {
  transition: opacity 1s linear;
  opacity: 1;
  display: block;
}

.headerFifa {
  position: relative;
  color: #FFFFFF;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.headerFifa__background {
  background-color: #2C2C2C;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.headerFifa__background img, .headerFifa__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headerFifa__cover {
  position: absolute;
  z-index: 0;
  background-color: #2C2C2C;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.headerFifa__column {
  padding-top: 14rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.headerFifa__title {
  font-size: 5.4rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  font-family: "Qatar2022", sans-serif;
}
.headerFifa__title sup {
  vertical-align: text-top;
  font-size: 3.4rem;
}
.headerFifa__subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}
.headerFifa__scrollDown {
  display: inline-block;
  text-align: center;
  margin-top: 11rem;
}
.headerFifa__scrollDownShape {
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  width: 30px;
  height: 48px;
  padding: 7px;
  margin: auto;
}
.headerFifa__scrollDownCircle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFFFFF;
  margin: auto;
}
.headerFifa__scrollDownText {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.headerFifa__counter {
  text-transform: uppercase;
  padding-bottom: 4rem;
}
.headerFifa__counterTitle {
  font-size: 3.6rem;
  font-weight: 700;
}
.headerFifa__counterText {
  font-size: 2.4rem;
  font-weight: 600;
}

.headerInnerAltFifa {
  position: relative;
  min-height: 48rem;
}
.headerInnerAltFifa__titleRow {
  position: relative;
}
.headerInnerAltFifa__title {
  font-weight: 900;
  font-size: 5.4rem;
  color: #00ABC7;
  background: -webkit-linear-gradient(left, #00ABC7, #005664);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  max-width: 35rem;
}
.headerInnerAltFifa__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 30rem;
}
.headerInnerAltFifa__background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.headerInnerAltFifa__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headerInnerAltFifa__cover {
  position: absolute;
  z-index: 1;
  background-color: rgba(44, 44, 44, 0.9);
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
}
html[dir=rtl] .headerInnerAltFifa__cover {
  left: 50%;
  right: 0;
}
.headerInnerAltFifa__column {
  color: #FFFFFF;
  position: relative;
  z-index: 3;
  padding: 4.8rem 0 15rem 0;
}
.headerInnerAltFifa__form {
  position: absolute;
  right: 5rem;
  width: 54rem;
  display: flex;
  justify-content: center;
  bottom: 0;
  background-color: #FFFFFF;
  box-shadow: 8px 12px 36px rgba(44, 44, 44, 0.12);
  padding: 8rem 3rem;
  z-index: 3;
  transform: translateY(50%);
}
html[dir=rtl] .headerInnerAltFifa__form {
  right: unset;
  left: 5rem;
}
.headerInnerAltFifa .breadcrumbs {
  color: #FFFFFF;
}
.headerInnerAltFifa .keepInTouch__contentColumnHeaderIcon {
  margin-top: 10px;
  margin-right: 9px;
}
.headerInnerAltFifa .keepInTouch__contentColumnHeaderTitle {
  font-family: "Qatar2022", sans-serif;
  font-size: 3.6rem;
  margin-bottom: 1.4rem;
}
.headerInnerAltFifa .keepInTouch__text {
  margin-bottom: 2.6rem;
}

.colorStyle--red .headerInnerFifa__title {
  color: #83113D;
  background: -webkit-linear-gradient(left, #83113D, #42091F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.colorStyle--blue .headerInnerFifa__title {
  color: #00ABC7;
  background: -webkit-linear-gradient(left, #00ABC7, #005664);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.headerInnerFifa {
  background-color: #EDEDED;
  position: relative;
  z-index: 91;
}
.headerInnerFifa__props {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
  margin-bottom: 2.5rem;
}
.headerInnerFifa__separator {
  margin: 0.5rem;
}
.headerInnerFifa__prop {
  margin: 0.5rem;
}
.headerInnerFifa__prop--primary {
  font-weight: bold;
  color: #00ABC7;
}
.headerInnerFifa--fixedImage {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.headerInnerFifa__background {
  width: 100%;
  height: 48rem;
  margin-bottom: -14rem;
}
.headerInnerFifa__background img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  height: 150%;
}
.headerInnerFifa__card {
  background-color: #FFFFFF;
  padding: 5rem 5rem 3rem 16rem;
  padding-left: 21vw;
  width: 70%;
  z-index: 1;
  position: relative;
}
.headerInnerFifa__title {
  font-size: 5.4rem;
  font-weight: 900;
  max-width: 62rem;
  font-family: "Qatar2022", sans-serif;
  text-transform: uppercase;
}
.headerInnerFifa__title sup {
  vertical-align: text-top;
  font-size: 3.4rem;
}
.headerInnerFifa .breadcrumbs {
  margin-bottom: 3.3rem;
}

.single__fifaContent {
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 66rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}
.single__fifaDots {
  right: -15rem;
  top: 50%;
  transform: translate(100%, -50%);
  width: 14rem;
  height: 42rem;
  max-height: 52%;
}

.afterHeaderScene {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: -35%;
}
.afterHeaderScene__card {
  margin-right: -2rem;
  margin-bottom: -1rem;
  position: relative;
  z-index: 3;
}
html[dir=rtl] .afterHeaderScene__card {
  margin-right: unset;
  margin-left: -2rem;
}

.analystCard {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 3.6rem;
  border-radius: 0.7rem;
  background-size: 100% 100%;
  overflow: hidden;
}
.analystCard__name {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.analystCard__link {
  margin-bottom: 1.5rem;
  color: #3FAE2A;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.analystCard__link--email {
  margin-bottom: 3.5rem;
}
.analystCard__label {
  margin-bottom: 0.5rem;
  color: #B5B5B5;
  font-size: 1.2rem;
  line-height: 1.5;
}
.analystCard *:last-child {
  margin-bottom: 0;
}

.announcement {
  padding: 3.6rem 0;
}
.announcement + .announcement {
  border-top: 1px solid #EDEDED;
}
.announcement--financialReport {
  padding: 0;
}
.announcement--annualReport, .announcement--boardCharter {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 14rem;
  padding: 0;
  border-radius: 0.7rem;
  background-size: 100% 100%;
  overflow: hidden;
}
.announcement--annualReport + .announcement--annualReport, .announcement--annualReport + .announcement--boardCharter, .announcement--boardCharter + .announcement--annualReport, .announcement--boardCharter + .announcement--boardCharter {
  margin-top: 3.2rem;
  border-top: none;
}
.announcement--boardCharter {
  height: unset;
  min-height: 10rem;
}
.announcement--corpoGovReport {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.announcement--corpoGovReport + .announcement--corpoGovReport {
  margin-top: 3.2rem;
  border-top: none;
}
.announcement--boardCharter {
  background-color: #FFFFFF;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
}
.announcement__box {
  max-width: 66rem;
}
.announcement--annualReport .announcement__box, .announcement--boardCharter .announcement__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: unset;
  padding: 2rem 4rem;
  background-color: transparent;
  border-radius: 0.6rem;
}
.announcement--corpoGovReport .announcement__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: unset;
  padding: 0;
}
.announcement__date {
  margin-bottom: 1.1rem;
  color: #B5B5B5;
  font-size: 1.2rem;
  line-height: 1;
}
.announcement__title {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.announcement--financialReport .announcement__title, .announcement--corpoGovReport .announcement__title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.announcement--annualReport .announcement__title {
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.announcement--boardCharter .announcement__title {
  margin-bottom: 0;
  color: #3FAE2A;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.announcement__text {
  position: relative;
  margin-bottom: 1.7rem;
  color: #555555;
  font-size: 1.2rem;
  line-height: 1.5;
  overflow: hidden;
  transition: 0.2s;
}
.announcement__text--heightLimited {
  max-height: 3.6rem !important;
}
.announcement--financialReport .announcement__text, .announcement--corpoGovReport .announcement__text {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
.announcement--annualReport .announcement__text {
  margin-bottom: 0;
}
.announcement--boardCharter .announcement__text {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.announcement__textReadMore {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 1rem;
  background-color: #FFFFFF;
  color: #3FAE2A;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7;
  cursor: pointer;
  opacity: 0;
  transition: 0.2s;
}
.announcement__text--heightLimited .announcement__textReadMore {
  opacity: 1;
}
.announcement__audio {
  max-width: 100%;
  margin-bottom: 1rem;
}
.announcement__file {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.8rem;
  background-color: #3FAE2A;
  border-radius: 0.7rem;
  box-shadow: 0 6px 24px rgba(46, 122, 29, 0);
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  transition: 0.2s;
  flex-shrink: 0;
}
.announcement__file:hover {
  transform: translateY(-0.5rem);
  background-color: #2E7A1D;
  box-shadow: 0 6px 24px rgba(46, 122, 29, 0.4);
}
.announcement__file:active {
  transform: scale(0.9);
}
.announcement--financialReport .announcement__file {
  display: flex;
  justify-content: space-between;
}
.announcement__fileIcon {
  margin-left: 2.3rem;
}
html[dir=rtl] .announcement__fileIcon {
  margin-left: unset;
  margin-right: 2.3rem;
}
.announcement--financialReport .announcement__fileIcon {
  margin-left: 1rem;
}

.bigNews {
  display: flex;
  align-items: stretch;
  position: relative;
  border-radius: 0.8rem;
  transition: 0.2s;
  overflow: hidden;
}
.bigNews__imageCol {
  width: 57%;
  height: 44rem;
  z-index: 1;
  background: url("../../img/post-no-image.svg") center/cover no-repeat;
}
.bigNews__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bigNews__textCol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43%;
  padding: 3rem;
  background-color: #FFFFFF;
  z-index: 1;
}
.bigNews__textBox {
  width: 35rem;
}
.bigNews__date {
  margin-bottom: 1rem;
  color: #B5B5B5;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.bigNews__title {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 2.2rem;
}
.bigNews__text {
  margin-bottom: 2rem;
  color: #555555;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
.bigNews__readMore {
  display: flex;
  align-items: center;
  color: #3FAE2A;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 3rem;
}
.bigNews__readMoreIcon {
  margin-left: 0.5rem;
  transition: 0.2s;
}
html[dir=rtl] .bigNews__readMoreIcon {
  margin-right: 0.5rem;
  margin-left: unset;
  transform: rotate(180deg);
}
.bigNews__readMore:hover .bigNews__readMoreIcon {
  margin-left: 1rem;
}

.border {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E0E0E0;
  margin-bottom: 8rem;
  margin-top: 8rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  color: #3FAE2A;
  font-weight: bold;
}
.breadcrumbs a, .breadcrumbs p, .breadcrumbs__separator {
  color: #FFFFFF;
  font-weight: normal;
}
.breadcrumbs__separator {
  font-size: 0.8rem;
  margin: 0 1rem;
}
.breadcrumbs__wrapper {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.breadcrumbs--light {
  color: #3FAE2A;
}
.breadcrumbs--light a, .breadcrumbs--light p,
.breadcrumbs--light .breadcrumbs__separator {
  color: #CFCFCF;
}

.alternativeDesign .breadcrumbs {
  color: #555555;
}

.physicalCard img,
.digitalCard img {
  border-radius: 8px;
  filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.25));
}

.physicalCard img {
  width: 210px;
  height: 330px;
}

.countdown {
  position: fixed;
  z-index: 10;
  bottom: 2rem;
  left: 4rem;
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  box-shadow: 0 10px 24px 5px rgba(44, 44, 44, 0.4);
  background: linear-gradient(130deg, #83113D, #83113D, #42091F);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Qatar2022", sans-serif;
  color: #FFFFFF;
  line-height: 0.9;
}
.countdown__days {
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.countdown__text {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
.countdown__ball {
  position: absolute;
  width: 100%;
  height: 100%;
}
.countdown__ball svg {
  fill: #83113D;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.decor .decor__elementTop,
.decor .decor__elementMiddle,
.decor .decor__elementBottom {
  position: absolute;
}
.decor__decor .decor__elementTop,
.decor__decor .decor__elementMiddle,
.decor__decor .decor__elementBottom {
  position: absolute;
}
.decor--decorStyle-1 .decor__elementTop {
  top: 20%;
  left: 5%;
}
.decor--decorStyle-1 .decor__elementBottom {
  bottom: 0%;
  right: 18%;
}
.decor--decorStyle-2 .decor__elementTop {
  top: 17%;
  right: 14%;
  transform: rotateZ(180deg);
}
.decor--decorStyle-2 .decor__elementMiddle {
  left: 12%;
  top: 43%;
}
.decor--decorStyle-3 .decor__elementTop {
  top: 20%;
  left: 5%;
  transform: rotateZ(65deg);
}
.decor--decorStyle-3 .decor__elementBottom {
  right: 15%;
  bottom: -5%;
}
.decor--decorStyle-4 .decor__elementTop {
  top: 20%;
  right: 10%;
}
.decor--decorStyle-4 .decor__elementBottom {
  left: 16%;
  bottom: -7%;
}
.decor--decorStyle-5 .decor__elementTop {
  top: -8%;
  right: 25%;
}
.decor--decorStyle-5 .decor__elementBottom {
  left: 5%;
  bottom: 20%;
}
.decor--decorStyle-6 .decor__elementTop {
  top: 15%;
  right: 10%;
  transform: rotateZ(-180deg);
}
.decor--decorStyle-6 .decor__elementMiddle {
  left: 5%;
  bottom: 50%;
}
.decor--decorStyle-6 .decor__elementBottom {
  right: 15%;
  bottom: 20%;
}
.decor--decorStyle-7 .decor__elementMiddle {
  left: 5%;
  bottom: 50%;
}
.decor--decorStyle-7 .decor__elementBottom {
  right: 15%;
  bottom: 20%;
}
.decor--decorStyle-8 .decor__elementTop {
  right: 13%;
  top: 10%;
  transform: rotateZ(-45deg);
}
.decor--decorStyle-8 .decor__elementBottom {
  left: 5%;
  bottom: 10%;
  transform: rotateZ(-90deg);
}
.decor--decorStyle-9 .decor__elementTop {
  right: 23%;
  top: -6%;
}
.decor--decorStyle-9 .decor__elementBottom {
  left: 5%;
  bottom: 40%;
}
.decor--decorStyle-10 .decor__elementTop {
  right: 8%;
  top: 20%;
}
.decor--decorStyle-10 .decor__elementBottom {
  left: 15%;
  bottom: -5%;
}
.decor--decorStyle-11 .decor__elementTop {
  top: 17%;
  right: 5%;
  transform: rotateZ(80deg);
}
.decor--decorStyle-11 .decor__elementMiddle {
  left: 5%;
  bottom: 50%;
}
.decor--decorStyle-11 .decor__elementBottom {
  right: 15%;
  bottom: -5%;
}
.decor--decorStyle-12 .decor__elementTop {
  top: 40%;
  left: 15%;
}
.decor--decorStyle-12 .decor__elementBottom {
  bottom: 0%;
  right: 18%;
}
.decor--decorStyle-13 .decor__elementTop {
  top: 13%;
  right: 5%;
  transform: rotateZ(-180deg);
}
.decor--decorStyle-13 .decor__elementMiddle {
  left: 5%;
  bottom: 50%;
}
.decor--decorStyle-13 .decor__elementBottom {
  right: 15%;
  bottom: -5%;
}
.decor--decorStyle-14 .decor__elementTop {
  top: 15%;
  right: 10%;
  transform: rotateZ(-40deg);
}
.decor--decorStyle-14 .decor__elementBottom {
  left: 10%;
  bottom: 10%;
}
.decor--decorStyle-15 .decor__elementTop {
  top: 44%;
  left: 10%;
  transform: rotateZ(-80deg);
}
.decor--decorStyle-15 .decor__elementBottom {
  right: 10%;
  bottom: 10%;
}
.decor--decorStyle-16 .decor__elementMiddle {
  top: 20%;
  right: 2%;
}
.decor--decorStyle-16 .decor__elementBottom {
  bottom: 25%;
  left: 6%;
}

.directorCard {
  display: flex;
  align-items: flex-end;
  position: relative;
  bottom: 0;
  cursor: pointer;
  transition: 0.2s;
}
.directorCard:hover {
  bottom: 1rem;
}
.directorCard__imageBox {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.directorCard__image {
  width: 100%;
}
.directorCard__gradient {
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #3fae2a 0%, #00abc7 100%);
}
.directorCard__icon {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  opacity: 0;
  transition: 0.2s;
}
html[dir=rtl] .directorCard__icon {
  right: unset;
  left: 1.2rem;
  transform: rotate(180deg);
}
.directorCard:hover .directorCard__icon {
  opacity: 1;
}
.directorCard__textBox {
  position: relative;
  margin-left: 4rem;
  padding: 2.4rem 0 2.4rem 2.4rem;
  background-color: #F8F8F8;
}
html[dir=rtl] .directorCard__textBox {
  margin-right: 4rem;
  margin-left: unset;
  padding: 2.4rem 2.4rem 2.4rem 0;
}
.directorCard__shadowMask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  box-shadow: -20px 10px 60px 0px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.2s;
}
.directorCard:hover .directorCard__shadowMask {
  opacity: 1;
}
.directorCard__name {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
}
.directorCard__position {
  color: #555555;
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.directorCard__grayRect {
  width: 4rem;
  height: 31.7rem;
  background-color: #F8F8F8;
  z-index: 1;
}

.directorPopup {
  display: flex;
  align-items: stretch;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 999999;
  transition: 0.3s ease-in-out;
  visibility: hidden;
}
.directorPopup--active {
  visibility: visible;
}
.directorPopup__imageBox {
  width: 60%;
  position: relative;
  overflow: hidden;
  transform: translateY(100%);
  transition: 0.5s ease-in-out;
}
.directorPopup--active .directorPopup__imageBox {
  transform: translateY(0%);
}
.directorPopup__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}
.directorPopup--active .directorPopup__image {
  animation: imgClose 20s forwards;
}
@keyframes imgClose {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.directorPopup__close {
  width: 4.8rem;
  height: 4.8rem;
  position: absolute;
  top: 4.2rem;
  left: 4.2rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .directorPopup__close {
  right: 4.2rem;
  left: 0;
}
.directorPopup__close:hover {
  opacity: 0.5;
}
.directorPopup__closeIcon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.directorPopup__textBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  padding: 6rem 8rem;
  background-color: #2C2C2C;
  transform: translateY(-100%);
  overflow-y: auto;
  transition: 0.5s ease-in-out;
}
.directorPopup--active .directorPopup__textBox {
  transform: translateY(0%);
}
.directorPopup__position {
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.directorPopup__name {
  margin-bottom: 2.6rem;
  color: #FFFFFF;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 4.2rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.directorPopup__text {
  margin-bottom: 2.9rem;
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.directorPopup__linkedin {
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.directorPopup__linkedin:hover {
  opacity: 0.5;
}
.directorPopup__linkedinIconBox {
  flex-shrink: 0;
  width: 4.2rem;
  height: 4.2rem;
  margin-right: 1.2rem;
}
html[dir=rtl] .directorPopup__linkedinIconBox {
  margin-right: 0;
  margin-left: 1.2rem;
}
.directorPopup__linkedinIcon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.directorPopup__linkedinText {
  color: #B5B5B5;
  font-size: 1.2rem;
  line-height: 2rem;
}
.directorPopup__linkedinLink {
  color: #3FAE2A;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
}
.directorPopup__message {
  margin-bottom: 0.9rem;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 3rem;
  text-transform: uppercase;
}
.directorPopup__readNow {
  display: flex;
  align-items: center;
  color: #3FAE2A;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
}
.directorPopup__readNowIcon {
  margin-left: 1.7rem;
  font-size: 1rem;
  transform: translateY(2px);
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .directorPopup__readNowIcon {
  margin-right: 1.7rem;
  margin-left: 0;
  transform: rotate(180deg) translateY(2px);
}
.directorPopup__readNow:hover .directorPopup__readNowIcon {
  margin-left: 2.5rem;
}
html[dir=rtl] .directorPopup__readNow:hover .directorPopup__readNowIcon {
  margin-right: 2.5rem;
  margin-left: 0;
}
.directorPopup__next {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.directorPopup__next:hover {
  transform: translateY(-1rem);
}
.directorPopup__nextImageBox {
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}
.directorPopup__nextImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.directorPopup__nextButton {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid #3FAE2A;
  border-radius: 2rem;
  transform: translateX(-3.5rem);
}
html[dir=rtl] .directorPopup__nextButton {
  transform: translateX(3.5rem);
}
.directorPopup__nextButtonText {
  margin: 0 2rem 0 4rem;
  color: #3FAE2A;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
}
html[dir=rtl] .directorPopup__nextButtonText {
  margin: 0 4rem 0 2rem;
}
.directorPopup__nextButtonIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #3FAE2A;
  border-radius: 50%;
  transition: 0.2s;
}
html[dir=rtl] .directorPopup__nextButtonIcon {
  transform: rotate(180deg);
}
.directorPopup__next:hover .directorPopup__nextButtonIcon {
  background-color: #3FAE2A;
}
.directorPopup__nextButtonIcon > span {
  color: #3FAE2A;
  font-size: 1rem;
}
.directorPopup__next:hover .directorPopup__nextButtonIcon > span {
  color: #FFFFFF;
}

.emoji:after {
  content: "";
  display: inline-block;
  margin: 0 0.5rem;
  width: 2.3rem;
  height: 2.3rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: bottom;
}
.emoji__congrats:after {
  background-image: url("../../img/icons/congrats-emoji.jpg");
}
.emoji__moneyWithWings:after {
  background-image: url("../../img/icons/money-with-wings-emoji.jpg");
}

.filterOption {
  width: 100%;
  min-height: 6.6rem;
  padding: 0.4rem 2rem;
  color: #000;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
  text-align: left;
}
html[dir=rtl] .filterOption {
  text-align: right;
}
.filterOption + .filterOption {
  border-top: 1px solid rgba(181, 181, 181, 0.18);
}
.filterOption--pure {
  min-height: 4rem;
  padding: 0;
  text-align: center;
}
.filterOption--active {
  background-color: rgba(63, 174, 42, 0.5);
  color: #fff;
}

.filtersDropdown {
  position: relative;
  margin-right: 1.2rem;
}
html[dir=rtl] .filtersDropdown {
  margin-right: unset;
  margin-left: 1.2rem;
}
.filtersDropdown:last-child {
  margin-right: unset;
}
html[dir=rtl] .filtersDropdown:last-child {
  margin-right: unset;
  margin-left: unset;
}
.filtersDropdown__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.6rem;
  min-width: 26.4rem;
  position: relative;
  background-color: #FFFFFF;
  padding: 2rem;
  border: 1px solid rgba(181, 181, 181, 0.18);
  border-radius: 0.7rem;
  overflow: hidden;
  cursor: pointer;
}
.filtersDropdown--small .filtersDropdown__button {
  min-width: unset;
}
.filtersDropdown--pure .filtersDropdown__button {
  min-width: unset;
  min-height: unset;
  padding: 0;
  background-color: unset;
  border: unset;
}
.filtersDropdown--active .filtersDropdown__button {
  border-color: #3FAE2A;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.filtersDropdown__buttonText {
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
  color: #000;
  transition: 0.2s;
  z-index: 1;
}
.filtersDropdown--small .filtersDropdown__buttonText {
  margin-right: 2rem;
}
.filtersDropdown--pure .filtersDropdown__buttonText {
  margin-right: 1rem;
}
.filtersDropdown__buttonIcon {
  transform: rotate(90deg);
}
.filtersDropdown--active .filtersDropdown__buttonIcon {
  transform: rotate(270deg);
}
.filtersDropdown__options {
  display: none;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background-color: #fff;
  border: 1px solid #3FAE2A;
  border-top-color: rgba(181, 181, 181, 0.18);
  border-bottom-right-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
}
.filtersDropdown--pure .filtersDropdown__options {
  border-top-color: #3FAE2A;
  border-radius: 0.7rem;
}
.filtersDropdown--active .filtersDropdown__options {
  display: flex;
}

.mobileMenu {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  min-height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  color: #2C2C2C;
}
.mobileMenu__langs {
  position: absolute;
  top: 4rem;
  right: 7rem;
  list-style: none;
  display: flex;
  margin: -0.5rem;
  text-transform: uppercase;
}
.mobileMenu__langs li {
  margin: 0.5rem;
}
.mobileMenu__langs li.current-lang {
  color: #3FAE2A;
  font-weight: 600;
}
html[dir=rtl] .mobileMenu__langs {
  right: unset;
  left: 8rem;
}
.mobileMenu__foot {
  padding: 1rem 1rem 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobileMenu__body {
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem 0 2rem;
  position: relative;
}
.mobileMenu__menu {
  display: flex;
  flex-direction: column;
}
.mobileMenu__menu li {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.mobileMenu__menu li:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -2rem;
  right: -2rem;
  height: 1px;
  background-color: #E0E0E0;
}
.mobileMenu__menu li > a {
  display: inline-block;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
  margin-bottom: 0.5rem;
  color: #3FAE2A;
  font-size: 22px;
}
.mobileMenu__menu .current_page_item > a,
.mobileMenu__menu .current-menu-ancestor > a,
.mobileMenu__menu .current-menu-parent > a,
.mobileMenu__menu .sub-menu .current-menu-ancestor > a,
.mobileMenu__menu .sub-menu .current-menu-parent > a {
  font-weight: 700 !important;
}
.mobileMenu__menu .sub-menu {
  display: none;
  flex-direction: column;
  padding-left: 20px;
}
html[dir=rtl] .mobileMenu__menu .sub-menu {
  padding-left: 0;
  padding-right: 20px;
}
.mobileMenu__menu .sub-menu li {
  padding-bottom: 0;
  margin-bottom: 0;
}
.mobileMenu__menu .sub-menu li:before {
  display: none;
}
.mobileMenu__menu .sub-menu li a {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: normal;
  color: #2C2C2C;
}
.mobileMenu__menu .sub-menu li.current-menu-item a {
  color: #3FAE2A;
  font-weight: 500;
}
.mobileMenu__menu .menu-item-has-children > a {
  display: inline-block;
}
.mobileMenu__menu .menu-item-has-children > a:after {
  content: "\E900";
  font-family: "icomoon", sans-serif;
  margin-left: 6px;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3FAE2A;
  background-color: rgba(63, 174, 42, 0.1);
  border-radius: 50%;
  vertical-align: middle;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .mobileMenu__menu .menu-item-has-children > a:after {
  margin-left: 0;
  margin-right: 6px;
}
.mobileMenu__menu .menu-item-has-children.sub-menu--active > a {
  color: #3FAE2A;
  text-shadow: 0.5px 0 0 #3FAE2A;
}
.mobileMenu__menu .menu-item-has-children.sub-menu--active > a:after {
  transform: rotateZ(-180deg);
}
.mobileMenu__menu .menu-item-has-children.sub-menu--active > .sub-menu {
  display: flex;
}
.mobileMenu .menuIcon {
  position: absolute;
  top: 25px;
  right: 25px;
}
html[dir=rtl] .mobileMenu .menuIcon {
  right: unset;
  left: 25px;
}

.navbar--fixed .mobileMenu .menuIcon {
  display: block;
  position: absolute;
  right: 2rem;
  top: 1.6rem;
}
html[dir=rtl] .navbar--fixed .mobileMenu .menuIcon {
  right: unset;
  left: 2rem;
}
.navbar--fixed .mobileMenu__langs {
  top: 2.7rem;
}
.navbar--fixed .mobileMenu__body {
  padding-top: 2.7rem;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.5s ease-in-out;
}
.navbar sup {
  font-size: 0.5em;
  vertical-align: super;
}
.navbar__top {
  background-color: #EDEDED;
  font-size: 1.3rem;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  z-index: 102;
  width: 100%;
  top: 0;
  left: 0;
}
.navbar__topRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 3rem;
}
.navbar__topMenu {
  display: flex;
  margin: -1.5rem;
  margin-bottom: -1.7rem;
}
.navbar__topMenu li {
  margin: 1.5rem;
}
.navbar__topMenu li:hover > a {
  text-shadow: 0.5px 0 0 #2C2C2C;
}
.navbar__topMenu .sub-menu {
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  position: absolute;
  left: 0;
  min-width: 20rem;
  background-color: #EDEDED;
  transition: 0.3s ease-in-out;
  z-index: 10;
}
html[dir=rtl] .navbar__topMenu .sub-menu {
  left: unset;
  right: 0;
}
.navbar__topMenu .current-menu-parent > a {
  font-weight: 700;
  text-shadow: none !important;
}
.navbar__topMenu .current-menu-item > a {
  font-weight: 700;
  text-shadow: none !important;
}
.navbar__topMenu .menu-item-has-children {
  position: relative;
}
.navbar__topMenu .menu-item-has-children > a:after {
  content: "\E900";
  font-family: "icomoon", sans-serif;
  margin-left: 6px;
  width: 1.2rem;
  height: 1.2rem;
  font-size: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(181, 181, 181, 0.3);
  border-radius: 50%;
  vertical-align: middle;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .navbar__topMenu .menu-item-has-children > a:after {
  margin-left: 0;
  margin-right: 6px;
}
.navbar__topMenu .menu-item-has-children:hover > a {
  text-shadow: 0.5px 0 0 #2C2C2C;
}
.navbar__topMenu .menu-item-has-children.sub-menu--active > a {
  text-shadow: 0.5px 0 0 #2C2C2C;
}
.navbar__topMenu .menu-item-has-children.sub-menu--active > a:after {
  transform: rotateZ(-180deg);
}
.navbar__topMenu .menu-item-has-children.sub-menu--active > .sub-menu {
  opacity: 1;
  pointer-events: all;
}
.navbar__bottom {
  top: 0;
  width: 100%;
  font-size: 1.4rem;
  background-color: #FFFFFF;
  box-shadow: 0 3px 24px rgba(44, 44, 44, 0.06);
  transition: height 0.3s ease-in-out;
}
.navbar__bottomRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}
html[dir=rtl] .navbar__bottomRow {
  flex-direction: row-reverse;
}
.navbar__bottomMenu {
  position: relative;
  display: flex;
  flex: 1 1 30rem;
  margin-top: 25px;
}
html[dir=rtl] .navbar__bottomMenu {
  flex-direction: row-reverse;
}
.navbar__bottomMenu li {
  margin-right: 3%;
}
.navbar__bottomMenu li:hover > a {
  color: #3FAE2A;
  text-shadow: 0.5px 0 0 #3FAE2A;
}
.navbar__bottomMenu .current-menu-parent > a {
  font-weight: 700;
  text-shadow: none !important;
}
.navbar__bottomMenu .current-menu-item > a {
  font-weight: 700;
  text-shadow: none !important;
}
.navbar__bottomMenu .menu-item-has-children > a {
  display: inline-block;
}
.navbar__bottomMenu .menu-item-has-children > a:after {
  content: "\E900";
  font-family: "icomoon", sans-serif;
  margin-left: 6px;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3FAE2A;
  background-color: rgba(63, 174, 42, 0.1);
  border-radius: 50%;
  vertical-align: middle;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .navbar__bottomMenu .menu-item-has-children > a:after {
  margin-left: 0;
  margin-right: 6px;
}
.navbar__bottomMenu .menu-item-has-children.sub-menu--active > a {
  color: #3FAE2A;
  text-shadow: 0.5px 0 0 #3FAE2A;
}
.navbar__bottomMenu .menu-item-has-children.sub-menu--active > a:after {
  transform: rotateZ(-180deg);
}
.navbar__bottomMenu .menu-item-has-children.sub-menu--active > .sub-menu {
  opacity: 1;
  pointer-events: all;
}
.navbar__bottomMenu .sub-menu {
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  display: grid;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  transform: translateY(100%);
  height: 16rem;
  z-index: -1;
  align-items: center;
  grid-template-rows: repeat(auto-fill, minmax(3rem, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  grid-auto-flow: column;
  gap: 0 2rem;
}
.navbar__bottomMenu .sub-menu:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #fdfdfd;
  top: 0;
  left: -1000rem;
  width: 3000rem;
  height: 100%;
  z-index: -1;
}
.navbar__logo {
  height: 60px;
  margin-right: 4%;
}
.navbar__logo img {
  max-height: 100%;
}
.navbar__couple {
  display: flex;
  margin-top: 4px;
  align-items: center;
}
.navbar__coupleChild:first-child {
  border-right: 1px solid rgba(181, 181, 181, 0.5);
  padding-right: 12px;
  margin-right: 12px;
}
html[dir=rtl] .navbar__coupleChild:first-child {
  border-left: 1px solid rgba(181, 181, 181, 0.5);
  padding-left: 12px;
  margin-left: 12px;
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.navbar__langs {
  display: flex;
  list-style: none;
  text-transform: uppercase;
}
.navbar__langs li:hover {
  text-shadow: 0.5px 0 0 #2C2C2C;
}

.navbarFifa sup {
  font-size: 0.5em;
  vertical-align: super;
}
.navbarFifa__bottomMenu {
  flex: unset;
  margin-left: auto;
}
.navbarFifa__bottomMenu li {
  margin-right: 3rem;
}
.navbarFifa__bottomMenu li.active-menu-item {
  font-weight: 700;
}
.navbarFifa__bottomMenu li > a {
  position: relative;
}
.navbarFifa__bottomMenu li > a:after {
  transition: 0.5s cubic-bezier(0, 0.44, 0.1, 0.98);
  position: absolute;
  left: 0;
  content: "";
  height: 1px;
  width: 0;
  background-color: #00ABC7;
  bottom: -10px;
}
.navbarFifa__bottomMenu li:hover > a {
  color: #00ABC7;
  text-shadow: 0.5px 0 0 #00ABC7;
}
.navbarFifa__bottomMenu li:hover > a:after {
  width: 100%;
}

.newsItem {
  width: 33.3333333333%;
  margin-bottom: 6rem;
  padding: 0 1.8rem;
}

.organizationCell {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
  position: relative;
}
.organizationCell--proportional {
  width: 25%;
}
.organizationCell--hidden {
  visibility: hidden;
}
.organizationCell__line {
  width: 2px;
  height: 4.2rem;
  margin-bottom: 1.5rem;
  background-color: #B5B5B5;
  border-radius: 50%;
}
.organizationCell__dot {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: -10px 10px 40px 0px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: -10px 10px 40px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: -10px 10px 40px 0px rgba(0, 0, 0, 0.6);
}
.organizationCell__dot:before {
  content: "";
  border-radius: inherit;
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(135deg, #00ABC7 0%, #3FAE2A 100%);
  z-index: -1;
}
.organizationCell__text {
  max-width: 20rem;
  margin-top: 2rem;
  color: #555555;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.4rem;
  text-align: center;
}
.organizationCell__longLine {
  width: 2px;
  height: 4.2rem;
  position: absolute;
  top: -4.2rem;
  left: calc(50% - 1px);
  background-color: #B5B5B5;
  border-radius: 50%;
}

.organizationDoubleCell {
  display: flex;
  width: 75%;
  position: relative;
  margin-top: 8rem;
}
.organizationDoubleCell--first {
  margin-top: 11.3rem;
}
.organizationDoubleCell--justifyEnd {
  justify-content: flex-end;
}
.organizationDoubleCell--justifyCenter {
  justify-content: center;
}
.organizationDoubleCell__line {
  width: 2px;
  height: 11.5rem;
  position: absolute;
  top: -10.3rem;
  left: calc(50% - 1px);
  background-color: #B5B5B5;
  border-radius: 50%;
  z-index: -1;
}
.organizationDoubleCell__line--under {
  height: 6rem;
  top: 1.2rem;
}
.organizationDoubleCell__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.organizationDoubleCell__dotBox {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}
.organizationDoubleCell__dotBoxLine {
  width: 50%;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  background-color: #B5B5B5;
  z-index: -2;
}
html[dir=rtl] .organizationDoubleCell__dotBoxLine {
  right: 50%;
  left: unset;
}
.organizationDoubleCell__dotBoxLine--right {
  right: 50%;
  left: unset;
}
html[dir=rtl] .organizationDoubleCell__dotBoxLine--right {
  right: unset;
  left: 50%;
}
.organizationDoubleCell__dot {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: -10px 10px 40px 0px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: -10px 10px 40px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: -10px 10px 40px 0px rgba(0, 0, 0, 0.6);
}
.organizationDoubleCell__dot:before {
  content: "";
  border-radius: inherit;
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: #00ABC7;
  z-index: -1;
}
.organizationDoubleCell__text {
  max-width: 14rem;
  max-height: 5rem;
  margin-top: 1.5rem;
  color: #555555;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.4rem;
  text-align: center;
  word-break: break-word;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination--none {
  display: none;
}
.pagination__box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__arrow {
  display: flex;
  align-items: center;
  height: 4.1rem;
  padding: 1.5rem;
  border: 1px solid rgba(181, 181, 181, 0.18);
  border-radius: 0.7rem;
  cursor: pointer;
  transition: 0.2s;
}
.pagination__arrow:hover {
  border-color: #3FAE2A;
}
.pagination__arrow--prev {
  margin-right: 1.8rem;
}
.pagination__arrow--next {
  margin-left: 1.8rem;
}
.pagination__arrow--disabled {
  opacity: 0;
  cursor: default;
}
.pagination__arrow--disabled:hover {
  border-color: rgba(181, 181, 181, 0.18);
}
.pagination__arrowImage {
  color: #3FAE2A;
  font-size: 1rem;
  transform: translateY(2px);
  transition: 0.2s;
}
.pagination__arrowImage--prev {
  margin-right: 1rem;
}
html[dir=rtl] .pagination__arrowImage--prev {
  margin-right: unset;
  margin-left: 1rem;
  transform: rotate(180deg);
}
.pagination__arrowImage--next {
  margin-left: 1rem;
}
html[dir=rtl] .pagination__arrowImage--next {
  margin-right: 1rem;
  margin-left: unset;
  transform: rotate(180deg);
}
.pagination__arrowText {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
  transition: 0.2s;
}
.pagination__button {
  width: 4.4rem;
  height: 4.1rem;
  margin: 0 0.6rem;
}
.pagination__buttonInner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(181, 181, 181, 0.18);
  border-radius: 0.7rem;
  cursor: pointer;
  transition: 0.2s;
}
.pagination__buttonInner:hover {
  border-color: #3FAE2A;
}
.pagination__buttonInner--current {
  border-color: #3FAE2A;
  color: #3FAE2A;
}
.pagination__buttonInner--hidden {
  display: none;
}
.pagination__buttonText {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
}

.paymentIcons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 2rem -0.5rem 4rem -0.5rem;
}
.paymentIcons__icon {
  margin: 0.5em;
}

.phoneMockup {
  position: relative;
  width: 275px;
  height: 573px;
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  padding: 14px 12px 16px 12px;
  z-index: 1;
}
.phoneMockup > img {
  top: 0;
  left: 0;
  border-radius: 26px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.searchFilter {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 1.3rem;
  color: #B5B5B5;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
  cursor: pointer;
}
.searchFilter--active {
  color: #2C2C2C;
}
.searchFilter__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 1.8rem;
  margin-left: 0.7rem;
  background-color: #F8F8F8;
  border-radius: 2rem;
  color: #B5B5B5;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}
html[dir=rtl] .searchFilter__pill {
  margin-right: 0.7rem;
  margin-left: unset;
}
.searchFilter__pill--active {
  background-color: #E7F5E5;
  color: #3FAE2A;
}
.searchFilter__gradient {
  display: none;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #3fae2a 0%, #00abc7 100%);
}
.searchFilter--active .searchFilter__gradient {
  display: block;
}

.searchform__searchField {
  width: 4rem;
  transition: 0.3s ease-in-out;
}
.searchform__searchField:focus {
  width: 9rem;
  border-bottom: 1px solid #B5B5B5;
}

.searchform__searchField {
  width: 4rem;
  transition: 0.3s ease-in-out;
}
.searchform__searchField:focus {
  width: 9rem;
  border-bottom: 1px solid #B5B5B5;
}

.searchPopup {
  width: 100vw;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 4.8rem 0;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  overflow: scroll;
  transform: translateY(-100%) scale(0);
  transition: 0.2s;
  z-index: 9999;
  /* Hide overflow scrollbar */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.searchPopup::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}
.searchPopup--active {
  transform: translateY(0) scale(1);
}
.searchPopup__inputBox {
  display: flex;
  align-items: center;
  margin-bottom: 3.6rem;
  padding-bottom: 4.4rem;
  border-bottom: 1px solid #B5B5B5;
}
.searchPopup__searchIcon {
  flex-shrink: 0;
  font-size: 2.4rem;
}
.searchPopup__input {
  width: 100%;
  height: 5.6rem;
  padding: 0 0 0 2.4rem;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}
html[dir=rtl] .searchPopup__input {
  padding: 0 2.4rem 0 0;
}
.searchPopup__close {
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.2s;
}
.searchPopup__close:hover {
  opacity: 0.5;
}

.searchSuggestions__title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.01em;
}
.searchSuggestions__suggestions {
  display: flex;
  flex-wrap: wrap;
  margin: -0.9rem;
}
.searchSuggestions__suggestion {
  padding: 0.9rem;
}
.searchSuggestions__suggestionInner {
  padding: 1.3rem 2.4rem;
  background-color: #F8F8F8;
  border-radius: 0.7rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}

.searchTile {
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.searchTile:hover {
  transform: translateY(-0.6rem);
}
.searchTile__imageBox {
  flex-shrink: 0;
  width: 11.6rem;
  height: 11.6rem;
  margin-right: 2.4rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
html[dir=rtl] .searchTile__imageBox {
  margin-right: 0;
  margin-left: 2.4rem;
}
.searchTile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.searchTile__textBox {
  flex-grow: 1;
  max-width: calc(100% - 14rem);
}
.searchTile--noImage .searchTile__textBox {
  max-width: 100%;
}
.searchTile__breadcrumbs {
  display: flex;
  align-items: center;
  margin: 0 -0.5rem 1.2rem;
  color: #CFCFCF;
  font-size: 1.2rem;
  line-height: 1;
}
.searchTile__breadcrumbs > span {
  padding: 0 0.5rem;
}
.searchTile__breadcrumbsType {
  text-transform: capitalize;
}
.searchTile__breadcrumbsTitle {
  color: #2C2C2C;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.searchTile__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.sidebar {
  background-color: #F8F8F8;
  border: 1px solid rgba(181, 181, 181, 0.18);
  border-radius: 0.7rem;
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}
.sidebar--fixed {
  position: fixed;
  top: 15rem;
}
.sidebar__item {
  display: block;
  padding: 2.3rem;
  border-bottom: 1px solid rgba(181, 181, 181, 0.18);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: 0.2s;
}
.sidebar__item:hover {
  color: #3FAE2A;
}
.sidebar__item:last-child {
  border-bottom: none;
}
.sidebar__item--head {
  border-bottom: none;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
}
.sidebar__item--head:hover {
  color: #2C2C2C;
}
.sidebar__item--active {
  background-color: #E7F5E5;
}
.sidebar__gradient {
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #00abc7 0%, #3fae2a 100%);
}

.singleNews {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border-radius: 0.8rem;
  transition: 0.3s ease-in-out;
  background-color: #FFFFFF;
}
.singleNews:hover {
  transform: translateY(-1rem);
}
.singleNews__imageBox {
  height: 21.6rem;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  overflow: hidden;
  background: url("../../img/post-no-image.svg") center/cover no-repeat;
}
.singleNews__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.singleNews__dataBox {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.6rem;
  border: 1px solid rgba(181, 181, 181, 0.18);
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}
.singleNews__category {
  margin-bottom: 1.5rem;
  color: #4452fc;
  font-size: 1rem;
  font-weight: 900;
  line-height: 2.6rem;
  text-transform: uppercase;
}
.singleNews__date {
  margin-bottom: 1rem;
  color: #B5B5B5;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.singleNews__title {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.2rem;
}
.singleNews__text {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.singleNews__more {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.singleNews:hover .singleNews__more {
  opacity: 1;
}
.singleNews:hover .singleNews__more .singleNews__moreIcon {
  transform: none;
}
html[dir=rtl] .singleNews:hover .singleNews__more .singleNews__moreIcon {
  transform: none;
}
.singleNews__moreText {
  color: #3FAE2A;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 3rem;
}
.singleNews__moreIcon {
  margin-bottom: 0.2rem;
  margin-left: 1.1rem;
  transform: translateX(-1rem);
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .singleNews__moreIcon {
  margin-right: 1.1rem;
  margin-left: unset;
  transform: rotate(180deg);
  transform: translateX(1rem);
}
.singleNews__shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.8rem;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.2s;
  z-index: 0;
}
.singleNews:hover .singleNews__shadow {
  opacity: 1;
}

.social {
  display: flex;
  margin: -10px;
}
.social__item {
  margin: 10px;
  border-radius: 50%;
  background-color: #00ABC7;
  padding: 3px;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.social__itemIcon {
  font-size: 1rem;
}
.social__itemIcon:before {
  vertical-align: middle;
}
.social__item:hover {
  filter: drop-shadow(0 0 10px #00ABC7);
}

.sortToggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0;
  border-radius: 0.7rem;
  cursor: pointer;
}
.sortToggle__text {
  position: relative;
  margin-right: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
  color: #2C2C2C;
  transition: 0.2s;
  z-index: 1;
}
.sortToggle__icon {
  transform: rotate(90deg);
}
.sortToggle__icon--rotate {
  transform: rotate(270deg);
}

.section {
  padding-top: 14rem;
  padding-bottom: 14rem;
  position: relative;
}
.section__title {
  font-size: 5.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.section__paragraph {
  font-size: 2.4rem;
  padding-bottom: 2rem;
  max-width: 43rem;
}
.section__circle {
  z-index: -1;
  width: 45vw;
  height: 45vw;
  background-color: #EDEDED;
  border-radius: 50%;
  position: absolute;
  top: 4%;
  left: 4%;
  opacity: 0.5;
}
html[dir=rtl] .section__circle {
  left: unset;
  right: 4%;
}

.analystTabs__tabs {
  display: flex;
  margin: 0 -1.8rem 3.5rem;
}
.analystTabs__tabsCol {
  padding: 0 1.8rem;
}
.analystTabs__tab {
  position: relative;
  padding: 1.7rem 0;
  color: #B5B5B5;
  cursor: pointer;
  transition: 0.2s;
}
.analystTabs__tab--active {
  color: #2C2C2C;
}
.analystTabs__tabGradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #00abc7 0%, #3fae2a 100%);
  opacity: 0;
  transition: 0.2s;
}
.analystTabs__tab--active .analystTabs__tabGradient {
  opacity: 1;
}
.analystTabs__section {
  display: none;
  align-items: stretch;
  flex-wrap: wrap;
  margin: -2rem;
}
.analystTabs__section--active {
  display: flex;
}
.analystTabs__sectionCol {
  width: 50%;
  padding: 2rem;
}

.announcements__year {
  color: #B5B5B5;
  font-size: 2.4rem;
  margin-right: 4rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.announcements__year--active {
  color: #3FAE2A;
  font-weight: 700;
}
.announcements__year--black {
  color: #2C2C2C;
  font-weight: 800;
  cursor: default;
}
.announcements__results {
  padding: 1rem 0;
  border-bottom: 1px solid #EDEDED;
  font-size: 1.6rem;
  line-height: 1;
}
.announcements__sort {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #EDEDED;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.announcements__sortLabel {
  margin-right: 1.4rem;
  color: #555555;
}
.announcements__itemsContainer {
  margin-top: 3rem;
  padding: 3.2rem 0 3.6rem;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}
.announcements--annualReports .announcements__itemsContainer {
  padding-bottom: 0;
  border-bottom: none;
}
.announcements__itemsRow {
  display: flex;
  flex-wrap: wrap;
  margin: -3rem;
}
.announcements__item {
  width: 25%;
  padding: 3rem;
}
.announcements__yearsCol.swiper-slide {
  flex-shrink: unset;
}
.announcements__yearsRow.swiper-container {
  padding-left: 3rem;
  padding-right: 3rem;
}
.announcements .swiper-button-prev,
.announcements .swiper-button-next {
  font-size: 12px;
  width: unset;
  color: #B5B5B5;
}
.announcements .swiper-button-prev:hover:after,
.announcements .swiper-button-next:hover:after {
  color: #3FAE2A;
}
.announcements .swiper-button-prev:after,
.announcements .swiper-button-next:after {
  font-size: 12px;
  color: #B5B5B5;
}

.swiper-button-next {
  background-color: white;
}

.swiper-button-prev {
  background-color: white;
}

.swiper-button-prev, .swiper-button-next {
  width: 30px !important;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
}

.brandsSlider__wrapper {
  justify-content: space-between;
}
.brandsSlider__brand {
  text-align: center;
}
.brandsSlider__brand img {
  max-width: 100%;
  max-height: 10rem;
}
.brandsSlider__title {
  margin-bottom: 11rem;
  text-align: center;
}
.brandsSlider__pagination {
  display: flex;
  justify-content: center;
}
.brandsSlider__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 8rem -1rem -1rem;
}
.brandsSlider__button {
  margin: 1rem;
}

.commonSection--textImage .commonSection__contentColumn {
  order: -1;
}
.commonSection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 3rem;
}
.commonSection__contentColumn {
  max-width: 44rem;
}
.commonSection__title {
  margin-bottom: 3rem;
}
.commonSection__text {
  font-size: 2rem;
  line-height: 1.4;
}
.commonSection__text p {
  margin-bottom: 3rem;
}
.commonSection__imageColumn {
  position: relative;
}
.commonSection__imageColumn img {
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.commonSection__image {
  width: 58rem;
  height: 58rem;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}
.contacts__formHeader {
  margin-bottom: 3rem;
}
.contacts__form {
  display: flex;
  justify-content: flex-end;
}
.contacts__form label {
  font-size: 1.6rem;
}
.contacts__form textarea {
  min-height: 16rem;
}
.contacts__formContainer {
  position: relative;
}
.contacts__formCard {
  margin-right: 3rem;
  border-radius: 8px;
  box-shadow: 8px 12px 24px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  z-index: 10;
  max-width: 66rem;
  padding: 6rem;
  background-color: #FFFFFF;
  margin-top: -31%;
}
html[dir=rtl] .contacts__formCard {
  margin-right: unset;
  margin-left: 3rem;
  right: unset;
  left: 0;
}
.contacts__formCouple .contacts__contentColumnHeaderTitle {
  font-size: 4.2rem;
  font-weight: 700;
  text-transform: none;
}
.contacts__contentColumnHeaderIcon {
  align-self: flex-start;
  margin-top: 8px;
}
.contacts__text {
  max-width: 33rem;
  line-height: 1.4;
  font-size: 1.6rem;
}
.contacts__circle {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #00ABC7;
  width: 130rem;
  height: 130rem;
  z-index: -1;
}
html[dir=rtl] .contacts__circle {
  left: unset;
  right: 40%;
}
.contacts__backgroundShape {
  position: absolute;
  top: 50%;
  filter: saturate(0) brightness(2);
  opacity: 0.1;
  width: 60%;
  transform: translateY(-50%) translateX(-30%);
}
html[dir=rtl] .contacts__backgroundShape {
  transform: translateY(-50%) translateX(30%) scaleX(-1);
}
.contacts__textColumn {
  max-width: 43rem;
}
.contacts__title {
  font-weight: 900;
  font-size: 4.2rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.contacts__description {
  font-size: 1.6rem;
  margin-bottom: 6rem;
}
.contacts__feature {
  display: flex;
  align-items: center;
  margin-bottom: 3.6rem;
}
.contacts__featureIcon {
  width: 5.4rem;
  height: 5.4rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F8F8F8;
  flex-shrink: 0;
}
html[dir=rtl] .contacts__featureIcon {
  margin-right: unset;
  margin-left: 1rem;
}
.contacts__featureSmall {
  font-size: 1.2rem;
  color: #B5B5B5;
  margin-bottom: 0.5rem;
}
.contacts__featureLink {
  color: #3FAE2A;
  font-weight: 600;
  font-size: 1.6rem;
}

.contentOffers {
  padding-top: 10rem;
  padding-bottom: 5.5rem;
}
.contentOffers__row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 7rem;
}
.contentOffers__image img {
  border-radius: 4px;
  max-width: 100%;
}
.contentOffers__content {
  max-width: 55rem;
  line-height: 1.2;
  font-size: 2rem;
}
.contentOffers__title {
  margin-bottom: 2.2rem;
  font-weight: 500;
  font-size: 2.4rem;
}
.contentOffers__smallTitle {
  font-weight: 500;
  margin-top: 4.5rem;
  margin-bottom: 2.2rem;
}
.contentOffers__cards {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}
.contentOffers__card {
  margin: 1rem;
}
.contentOffers__card img {
  max-width: 100%;
  object-fit: contain;
}

.downloadSection {
  margin-top: 10rem;
  margin-bottom: 12rem;
  text-align: center;
}
.downloadSection .appButtons {
  margin: 2rem auto;
  justify-content: center;
}
.downloadSection__title {
  font-size: 2.4rem;
  margin-bottom: 3rem;
}
.downloadSection__title--bold {
  font-size: 3.6rem;
  font-weight: 500;
}
.downloadSection--withBorder, .downloadSection--prefooter {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.downloadSection--withBorder .downloadSection__title, .downloadSection--prefooter .downloadSection__title {
  font-size: 2.4rem;
}
.downloadSection--withBorder {
  margin-top: 10rem;
  border-top: 1px solid #E0E0E0;
  padding-top: 9rem;
}
.downloadSection--common {
  margin-top: 12rem;
  margin-bottom: 10rem;
}
.downloadSection--common .downloadSection__title {
  font-size: 2.4rem;
}

.faq {
  border-top: 1px solid #E5E5E5;
  padding-top: 7rem;
  padding-bottom: 10rem;
}
.faq .container {
  max-width: 120rem;
}
.faq__title {
  margin-bottom: 6rem;
}
.faq__item {
  margin-bottom: 3rem;
  font-size: 2rem;
}
.faq__itemTitle {
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.faq__item {
  margin-bottom: 3rem;
}
.faq__moreButton {
  display: inline-block;
  margin: 10rem auto 0;
}

.form__title {
  margin-bottom: 2rem;
}
.form__subtitle {
  font-size: 2rem;
}
.form__container {
  max-width: 71rem;
}
.form__wrapper {
  margin-top: 5.5rem;
}
.form .button--outline {
  width: 20rem;
  max-width: 100%;
}
.form p {
  position: relative;
}
html[dir=rtl] .form {
  text-align: right;
}
html[dir=rtl] .form textarea,
html[dir=rtl] .form input,
html[dir=rtl] .form select,
html[dir=rtl] .form option {
  text-align: right;
}
html[dir=rtl] .form select {
  direction: rtl;
  unicode-bidi: bidi-override;
}
html[dir=rtl] .form .wpcf7-submit {
  text-align: center;
  order: 1;
}
html[dir=rtl] .form .ajax-loader {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.getInTouchFifa {
  position: relative;
  min-height: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  background-color: #EDEDED;
}
.getInTouchFifa__column {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.getInTouchFifa__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.getInTouchFifa__cover {
  position: absolute;
  left: 0;
  right: 50%;
  height: 100%;
  background: rgba(44, 44, 44, 0.9);
}
html[dir=rtl] .getInTouchFifa__cover {
  left: 50%;
  right: 0;
}
.getInTouchFifa .fifa__titleDigit {
  color: #FFFFFF;
}
.getInTouchFifa .fifa__titleDigit:before {
  background-color: #FFFFFF;
}
.getInTouchFifa .fifa__subtitle {
  max-width: 31rem;
  line-height: 1.4;
  font-size: 1.6rem;
}
.getInTouchFifa__dotsTop {
  position: absolute;
  top: 0;
  transform: translateY(-40%);
  width: 46rem;
  height: 8rem;
}
.getInTouchFifa__dotsBottom {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 46rem;
  height: 23rem;
  filter: brightness(3) saturate(0.5);
}
html[dir=rtl] .getInTouchFifa__dotsBottom {
  right: unset;
  left: 10%;
}
.getInTouchFifa__section {
  background: linear-gradient(90deg, #00ABC7, #005664);
  padding-top: 12rem;
  padding-bottom: 23rem;
  position: relative;
}
.getInTouchFifa__sectionForm {
  background-color: #FFFFFF;
  padding: 7rem 6rem;
  margin-top: -28rem;
  position: relative;
  z-index: 2;
}
.getInTouchFifa__sectionForm textarea {
  height: 9.2rem;
}
.getInTouchFifa__section .inputMaterial textarea,
.getInTouchFifa__section .inputMaterial input {
  padding: 1.1rem 0;
}
.getInTouchFifa__sectionPerson {
  color: #FFFFFF;
}
.getInTouchFifa__sectionPersonAvatar {
  border-radius: 50%;
  margin-bottom: 2rem;
}
.getInTouchFifa__sectionPersonAvatar img {
  border-radius: inherit;
  object-fit: cover;
}
.getInTouchFifa__sectionPersonName {
  font-family: "Qatar2022", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.getInTouchFifa__sectionPersonProfession {
  opacity: 0.7;
  max-width: 24rem;
  font-size: 1.6rem;
  margin-bottom: 4.2rem;
}
.getInTouchFifa__contentColumnHeader {
  margin-bottom: 4rem;
}
.getInTouchFifa__contentColumnHeaderTitle {
  font-family: "Qatar2022", sans-serif;
  margin-bottom: 16px;
}
.getInTouchFifa__sectionRow {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 10px;
}
.getInTouchFifa__sectionWithIcon {
  display: flex;
  align-items: center;
  margin-bottom: 3.6rem;
}
.getInTouchFifa__sectionWithIconImage {
  width: 5.4rem;
  height: 5.4rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00ABC7;
  font-size: 2rem;
}
html[dir=rtl] .getInTouchFifa__sectionWithIconImage {
  margin-right: unset;
  margin-left: 1.2rem;
}
.getInTouchFifa__sectionWithIconSmall {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  opacity: 0.7;
}
.getInTouchFifa__sectionWithIconLink {
  font-weight: 600;
  font-size: 1.6rem;
}
.getInTouchFifa__sectionWithIconLink span {
  font-weight: normal;
}

#homeSlider {
  position: relative;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
#homeSlider .swiper-container {
  padding: 3rem;
}

.iconsSection__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: -0.5rem;
}
.iconsSection__icon {
  margin: 0.5rem;
  opacity: 0.6;
}
.iconsSection__icon img {
  max-width: 100%;
  max-height: 100%;
}

.investorRelationsPage {
  background-position: top 108vh right -25rem;
  background-repeat: no-repeat;
}

.mainFeatures {
  padding-bottom: 20rem;
  position: relative;
}
.mainFeatures__row {
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  gap: 3rem;
  justify-content: space-between;
}
.mainFeatures__item {
  text-align: center;
  max-width: 24rem;
  justify-self: center;
}
.mainFeatures__icon {
  width: 7rem;
  height: 7rem;
  margin-bottom: 3rem;
  margin: auto;
}
.mainFeatures__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mainFeatures__digit {
  font-size: 6.4rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mainFeatures__text {
  font-size: 2rem;
  line-height: 1.4;
}
.mainFeatures__decorations {
  position: absolute;
}
.mainFeatures__decorations--polyline {
  top: 10%;
  left: 25%;
}
.mainFeatures__decorations--square {
  bottom: 10%;
  right: 25%;
}

.map {
  width: 100%;
  height: 62rem;
}

.news__head {
  padding: 5rem 0 11.5rem;
  background-color: #F8F8F8;
}
.news__breadcrumbs {
  padding-bottom: 3.2rem;
}
.news__body {
  position: relative;
  padding-bottom: 8rem;
  background-color: #F8F8F8;
}
.news__bodyBg {
  width: 100%;
  height: 33.6rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F8F8F8;
}

.newsFifa {
  padding-top: 12rem;
}
.newsFifa__section {
  background-color: #F8F8F8;
  padding-top: 12rem;
  padding-bottom: 12rem;
  margin-top: 7rem;
}
.newsFifa__row {
  display: grid;
  gap: 8rem 0;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.newsFifa__item {
  padding-top: 2rem;
  padding-bottom: 6rem;
  position: relative;
}
.newsFifa__itemBox {
  width: 43rem;
  max-width: 100%;
  padding: 4rem;
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.newsFifa__itemBox:hover {
  background-color: #FFFFFF;
  box-shadow: 0 3px 60px rgba(85, 85, 85, 0.06);
  transform: translateY(-10px);
}
.newsFifa__itemBox:hover .newsFifa__itemImage {
  opacity: 1;
}
.newsFifa__itemHeader {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}
.newsFifa__itemHeaderCategory {
  font-weight: 600;
  color: #00ABC7;
}
.newsFifa__itemTitle {
  font-size: 3rem;
  font-family: "Qatar2022", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.newsFifa__itemImage {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 70%);
  opacity: 0;
  width: 35rem;
  height: 23rem;
  transition: 0.3s ease-in-out;
}
.newsFifa__itemImage img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
html[dir=rtl] .newsFifa__itemImage {
  right: unset;
  left: 0;
  transform: translate(-50%, 70%);
}
.newsFifa__itemExcerpt {
  font-size: 1.6rem;
  line-height: 1.4;
}
.newsFifa__itemLink {
  margin-top: 3rem;
}
.newsFifa__item:nth-child(even) {
  justify-self: end;
}
.newsFifa__item:nth-child(odd) {
  border-right: 1px solid #00ABC7;
}
html[dir=rtl] .newsFifa__item:nth-child(odd) {
  border-right: none;
  border-left: 1px solid #00ABC7;
}
.newsFifa__buttonMore {
  margin-top: 12rem;
}
.newsFifa__inTouch {
  padding-top: 12rem;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
}
.newsFifa__inTouchTitle {
  font-family: "Qatar2022", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 3.6rem;
  max-width: 32rem;
}
.newsFifa__inTouchDots {
  position: static;
  width: 32rem;
  height: 11rem;
  justify-self: end;
}

.newsList {
  position: relative;
}
.newsList__container {
  z-index: 1;
}
.newsList__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5.4rem;
  z-index: 100;
}
.newsList__optionsBox {
  display: flex;
  align-items: center;
  margin: 0 -1.2rem;
  z-index: 99;
}
.newsList__optionsBox--first {
  margin-bottom: 0;
}
.newsList__optionsItem {
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
}
.newsList__optionsItemBox {
  display: flex;
  align-items: center;
}
.newsList__optionsItemText {
  margin-right: 2.5rem;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 3.6rem;
}
.newsList__optionsLabel {
  margin-right: 1.2rem;
  color: #555555;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.4rem;
}
html[dir=rtl] .newsList__optionsLabel {
  margin-right: unset;
  margin-left: 1.2rem;
}
.newsList__result {
  color: #555555;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.4rem;
}
.newsList__result--mobile {
  display: none;
  margin-top: 3rem;
  font-size: 2rem;
}
.newsList__news {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.newsList__newsRow {
  display: flex;
  flex-wrap: wrap;
  min-width: 100%;
  margin: 0 -1.8rem;
}
.newsList__pagination {
  position: relative;
  z-index: 1;
}

.offersList__title {
  text-align: center;
  margin-bottom: 8rem;
}
.offersList__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 7rem;
}

.prefooter {
  border-top: 1px solid #E0E0E0;
  padding-top: 9rem;
  padding-bottom: 9rem;
  text-align: center;
}
.prefooter--hideBorder {
  border-top: none;
  padding-top: 4rem;
}

.searchList__inputBox {
  display: flex;
  align-items: center;
  margin-bottom: 5.2em;
  padding: 2.2rem 3rem;
  background-color: #F8F8F8;
  border-radius: 0.8rem;
}
.searchList__searchIcon {
  flex-shrink: 0;
  font-size: 2.4rem;
}
.searchList__input {
  width: 100%;
  height: 5.6rem;
  padding: 0 0 0 2.4rem;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}
html[dir=rtl] .searchList__input {
  padding: 0 2.4rem 0 0;
}
.searchList__filters {
  display: flex;
  flex-wrap: wrap;
  margin: -1.8rem -1.8rem 5.2rem;
  border-bottom: 1px solid #F8F8F8;
}
.searchList__filter {
  padding: 1.8rem 1.8rem 0;
}
.searchList__listWrapper {
  min-height: 80vh;
}
.searchList__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -1.8rem -3.6rem;
  padding-bottom: 5.4rem;
}
.searchList__item {
  width: 50%;
  padding: 0 1.8rem 3.6rem;
}
.searchList__pagination {
  margin-bottom: 8rem;
}
.searchList__pagination--none {
  display: none;
}

.searchPage {
  padding-top: 5.4rem;
  overflow: hidden;
}
.searchPage__inputBox {
  display: flex;
  align-items: center;
  margin-bottom: 5.2em;
  padding: 2.2rem 3rem;
  background-color: #F8F8F8;
  border-radius: 0.8rem;
}
.searchPage__searchIcon {
  flex-shrink: 0;
  font-size: 2.4rem;
}
.searchPage__input {
  width: 100%;
  height: 5.6rem;
  padding: 0 0 0 2.4rem;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.smallFeaturesGrid__title {
  text-align: center;
  margin-bottom: 8rem;
}
.smallFeaturesGrid__features {
  display: grid;
  justify-content: center;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 6rem 7.3%;
}
.smallFeaturesGrid__featureImage {
  margin-bottom: 1.5rem;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  line-height: 0;
}
.smallFeaturesGrid__featureImage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.smallFeaturesGrid__featureText {
  font-size: 2rem;
  line-height: 1.4;
  min-height: 3.5rem;
}

.smartPayments {
  padding: 0;
  margin: 3rem 0 10rem;
}
.smartPayments__row {
  display: grid;
  grid-template-columns: 25fr 75fr;
  gap: 6rem;
}
.smartPayments__row .container {
  padding: 0;
}

.team .container {
  max-width: 130rem;
}
.team__title {
  margin-bottom: 6rem;
}
.team__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 5.5rem;
  justify-content: space-between;
}
.team__sliderPagination {
  text-align: center;
}
.team__item {
  max-width: 20rem;
  line-height: 1.4;
  font-size: 2rem;
  margin: 0 auto;
  text-align: center;
}
.team__itemImage {
  margin-bottom: 2rem;
}
.team__itemName {
  font-weight: 500;
}
.team__itemName span {
  display: block;
}

.textSectionAltFifa {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.textSectionAltFifa__dots {
  z-index: 2;
  right: 5%;
  width: 16rem;
  height: 25rem;
}
html[dir=rtl] .textSectionAltFifa__dots {
  right: unset;
  left: 5%;
}
.textSectionAltFifa__container {
  position: relative;
}
.textSectionAltFifa__row {
  display: flex;
  margin: -1.5rem -1.5rem 7rem -1.5rem;
}
.textSectionAltFifa__column {
  margin: 1.5rem;
  max-width: 31rem;
  font-size: 1.6rem;
  line-height: 1.4;
}
.textSectionAltFifa__dots--top {
  top: 0;
  right: -15%;
}
.textSectionAltFifa__dots--bottom {
  bottom: 0;
  left: 0;
  z-index: 2;
}
.textSectionAltFifa__balls {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
}
html[dir=rtl] .textSectionAltFifa__balls {
  right: unset;
  left: 0;
}
.textSectionAltFifa__boxed {
  display: flex;
  margin-top: 8rem;
}
.textSectionAltFifa__boxedText {
  position: relative;
  z-index: 1;
  width: 77rem;
  max-width: 80%;
  margin: 33rem 0 -10rem -20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 9.4rem 10rem;
  background-color: rgba(44, 44, 44, 0.9);
  color: #FFFFFF;
}
.textSectionAltFifa__boxedHeading, .textSectionAltFifa__boxedContent {
  max-width: 43rem;
}
.textSectionAltFifa__boxedHeading {
  font-family: "Qatar2022", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 2.4rem;
}
.textSectionAltFifa__boxedContent {
  font-size: 1.6rem;
  margin-bottom: 5rem;
  align-items: flex-start;
}
.textSectionAltFifa__boxedImage img {
  width: 120%;
  margin-left: -20%;
  max-width: unset;
  object-fit: cover;
  object-position: bottom;
}
.textSectionAltFifa__boxedBall {
  position: absolute;
  bottom: -9%;
  left: 33%;
  z-index: -1;
  width: 23rem;
  height: 23rem;
}

.textSectionFifa {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #FFFFFF;
}
.textSectionFifa__dots--style1 {
  width: 54rem;
  height: 14rem;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
html[dir=rtl] .textSectionFifa__dots--style1 {
  right: unset;
  left: 0;
  transform: translate(-50%, -50%);
}
.textSectionFifa__balls--style2 {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, 50%);
}
html[dir=rtl] .textSectionFifa__balls--style2 {
  right: unset;
  left: 0;
  transform: translate(-50%, 50%);
}
.textSectionFifa__container {
  position: relative;
  margin-top: 7rem;
}
.textSectionFifa__row {
  display: flex;
  flex-wrap: wrap;
  margin: -1.5rem -1.5rem;
}
.textSectionFifa__column {
  margin: 1.5rem;
  max-width: 31rem;
  font-size: 1.6rem;
  line-height: 1.4;
}
.textSectionFifa__dots--top {
  top: 0;
  right: -15%;
}
html[dir=rtl] .textSectionFifa__dots--top {
  right: unset;
  left: -15%;
}
.textSectionFifa__dots--bottom {
  bottom: 0;
  left: 0;
  z-index: 2;
}
html[dir=rtl] .textSectionFifa__dots--bottom {
  left: unset;
  right: 0;
}
.textSectionFifa__boxed {
  display: flex;
  align-items: center;
}
.textSectionFifa__boxedText {
  position: relative;
  z-index: 1;
  width: 77rem;
  max-width: 80%;
  margin-left: 10rem;
  margin-right: -20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9.4rem 10rem;
  background-color: rgba(44, 44, 44, 0.9);
  color: #FFFFFF;
  font-family: "Qatar2022", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
}
.textSectionFifa__boxedText p {
  max-width: 55rem;
}
html[dir=rtl] .textSectionFifa__boxedText {
  margin-left: -20%;
  margin-right: 10rem;
}
.textSectionFifa__boxedImage img {
  width: 120%;
  max-width: unset;
  object-fit: cover;
  object-position: bottom;
}

.tripleCards__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.tripleCards__columnContent {
  max-width: 45rem;
  justify-self: center;
}
.tripleCards__columnCards {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 57rem;
  justify-content: center;
  gap: 3rem;
  line-height: 0;
  position: relative;
}
.tripleCards .columnCards__card {
  filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.2));
  border-radius: 14px;
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.tripleCards .columnCards__card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.tripleCards .columnCards__card-1 {
  transform: rotate(-7.73deg);
  justify-self: flex-end;
}
.tripleCards .columnCards__card-2 {
  transform: rotate(5.43deg);
  justify-self: flex-start;
}
.tripleCards .columnCards__card-3 {
  transform: rotate(15.87deg);
  justify-self: flex-end;
}
.tripleCards__title {
  margin-bottom: 3rem;
}
.tripleCards__title span {
  display: block;
}
.tripleCards__title small {
  font-weight: normal;
  font-size: 2.4rem;
}
.tripleCards__text {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 2rem;
  line-height: 1.5;
}
.tripleCards__decor {
  position: absolute;
}
.tripleCards__decorMiddle {
  bottom: 15%;
  left: 15%;
}
.tripleCards__decorBottom {
  bottom: -15%;
  right: -5%;
}

.withRotatedImage {
  position: relative;
  overflow: hidden;
}
.withRotatedImage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  min-height: 58rem;
  gap: 3rem;
}
.withRotatedImage__contentColumn {
  max-width: 33rem;
  position: relative;
  z-index: 1;
}
.withRotatedImage__title {
  margin-bottom: 2rem;
}
.withRotatedImage__text {
  font-size: 2rem;
  line-height: 1.4;
}
.withRotatedImage__imageColumn {
  position: absolute;
  left: 45%;
  bottom: -15%;
}
.withRotatedImage__imageColumn img {
  transform: rotateZ(-20deg);
  object-fit: contain;
}
html[dir=rtl] .withRotatedImage__imageColumn {
  left: unset;
  right: 45%;
}

.withSidebar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 10rem;
}
.withSidebar__sidebar {
  position: relative;
  width: 25%;
}
.withSidebar__content {
  width: 75%;
  padding-left: 8rem;
}
html[dir=rtl] .withSidebar__content {
  padding-left: unset;
  padding-right: 8rem;
}
.withSidebar__tabs {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 5rem;
}
.withSidebar__tabsGradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3fae2a;
  background: linear-gradient(90deg, #00abc7 0%, #3fae2a 100%);
}
.withSidebar__tab {
  position: relative;
  padding: 1.7rem 2.4rem;
  color: #9FD694;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: 0.2s;
}
.withSidebar__tab.withSidebar__tab--active {
  color: #3FAE2A;
  text-shadow: 0.5px 0 0 #3FAE2A;
}
.withSidebar__tab:hover {
  color: #3FAE2A;
}
.withSidebar__tabGradient {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3fae2a;
  background: linear-gradient(90deg, #00abc7 0%, #3fae2a 100%);
  opacity: 0;
  transition: 0.2s;
}
.withSidebar__tab--active .withSidebar__tabGradient {
  opacity: 1;
}
.withSidebar__section {
  display: none;
  padding-bottom: 8rem;
}
.withSidebar__section--active {
  display: block;
}
.withSidebar__gradient {
  width: 20rem;
  height: 2px;
  margin-top: 11.5rem;
  margin-bottom: 3rem;
  background: #3fae2a;
  background: linear-gradient(90deg, #00abc7 0%, #3fae2a 100%);
}

.accordion {
  padding-bottom: 12rem;
}
.accordion__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: -1rem;
}
.accordion__image {
  flex: 2 1 30rem;
  margin: 1rem;
}
.accordion__image img {
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.accordion__content {
  flex: 3 1 30rem;
  max-width: 54rem;
  margin: 1rem;
}
.accordion__item--active .accordion__itemHeaderIcon:after {
  transform: rotate(0deg);
}
.accordion__itemHeader {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion__itemHeaderTitle {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.accordion__itemHeaderIcon {
  position: relative;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.accordion__itemHeaderIcon:before, .accordion__itemHeaderIcon:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #3FAE2A;
  position: absolute;
  top: calc(50% - 1.5px);
  transition: 0.3s ease-in-out;
}
.accordion__itemHeaderIcon:after {
  transform: rotate(-90deg);
}
.accordion__itemBody {
  font-size: 1.6rem;
  line-height: 1.4;
  height: 0;
  overflow: hidden;
}
.accordion__item:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: linear-gradient(90deg, #3FAE2A 0%, #00ABC7 100%);
}

.awards {
  padding-top: 11rem;
}
.awards__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 300%;
  height: 2px;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
}
html[dir=rtl] .awards__line {
  left: unset;
  right: 0;
}
.awards__gradient {
  height: 2px;
  width: 200px;
  margin-bottom: 3.6rem;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
}
.awards__title {
  font-size: 5.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 7rem;
}
.awards__scrollArea {
  background-color: #F8F8F8;
  padding-top: 25rem;
  padding-bottom: 25rem;
  overflow-x: scroll;
  overflow-y: hidden;
  position: relative;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.awards__scrollArea::-webkit-scrollbar {
  display: none;
}
.awards__row {
  display: flex;
  width: 100%;
}
.awards__item {
  margin-right: 10rem;
  position: relative;
}
.awards__item:nth-child(even) .awards__itemDot::after {
  content: url("../../img/award-bottom.svg");
  transform: translateY(40%);
}
html[dir=rtl] .awards__item:nth-child(even) .awards__itemDot::after {
  transform: scaleX(-1) translateY(40%);
}
.awards__item:nth-child(even) .awards__itemText {
  max-width: 33.6rem;
  margin-top: 8rem;
  margin-left: 10rem;
}
.awards__item:nth-child(odd) .awards__itemDot::after {
  content: url("../../img/award-top.svg");
  transform: translateY(-100%);
}
html[dir=rtl] .awards__item:nth-child(odd) .awards__itemDot::after {
  transform: scaleX(-1) translateY(-100%);
}
.awards__item:nth-child(odd) .awards__itemText {
  transform: translateY(-100%);
  margin-top: -8rem;
}
.awards__itemYear {
  font-size: 36rem;
  font-weight: 900;
  color: #3FAE2A;
  background: -webkit-linear-gradient(top, #3FAE2A, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
}
.awards__itemContent {
  position: absolute;
  top: 50%;
  right: 8%;
  margin-top: -2rem;
}
.awards__itemDot {
  position: relative;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  box-shadow: -8px 10px 28px rgba(44, 44, 44, 0.3);
}
.awards__itemDot:before {
  border-radius: inherit;
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  background-color: #FFFFFF;
  box-shadow: -2px 2px 6px rgba(44, 44, 44, 0.1);
}
.awards__itemDot:after {
  display: inline-block;
  margin-left: 1.55rem;
}
html[dir=rtl] .awards__itemDot:after {
  margin-left: unset;
  margin-right: 1.55rem;
}
.awards__itemText {
  max-width: 33.6rem;
  margin-top: 3.5rem;
  margin-left: 10rem;
}
html[dir=rtl] .awards__itemText {
  margin-left: unset;
  margin-right: 10rem;
}
.awards__itemTextYear {
  font-size: 5.4rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.awards__itemTextTitle {
  font-size: 2.4rem;
  font-weight: 600;
  color: #3FAE2A;
  margin-bottom: 1.2rem;
}
.awards__itemTextButton {
  background-color: #F8F8F8;
}

.boardsOfDirectors {
  position: relative;
  padding: 4.6rem 0 11.5rem;
  overflow: hidden;
}
.boardsOfDirectors__row {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  margin: 0 -2rem;
  padding-top: 3rem;
}
.boardsOfDirectors__col {
  width: 50%;
  margin-bottom: 16rem;
  padding: 0 2rem;
}
.boardsOfDirectors__col--even {
  transform: translateY(16rem);
}
.boardsOfDirectors__fixed {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #F8F8F8;
  z-index: -1;
}
html[dir=rtl] .boardsOfDirectors__fixed {
  right: unset;
  left: 0;
}
.boardsOfDirectors__textBox {
  width: 60%;
  max-width: 46rem;
  padding-left: 11rem;
  padding-top: 10rem;
  margin-right: 15%;
}
html[dir=rtl] .boardsOfDirectors__textBox {
  padding-left: unset;
  padding-right: 11rem;
}
.boardsOfDirectors__title {
  margin-bottom: 3rem;
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 6rem;
  letter-spacing: 0.01em;
}
.boardsOfDirectors__text {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.boardsOfDirectors {
  position: relative;
  padding: 4.6rem 0 11.5rem;
  overflow: hidden;
}
.boardsOfDirectors__row {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  margin: 0 -2rem;
  padding-top: 3rem;
}
.boardsOfDirectors__col {
  width: 50%;
  margin-bottom: 16rem;
  padding: 0 2rem;
}
.boardsOfDirectors__col--even {
  transform: translateY(16rem);
}
.boardsOfDirectors__fixed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40.7%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #F8F8F8;
  z-index: -1;
}
.boardsOfDirectors__textBox {
  width: 60%;
  margin: unset;
  padding: unset;
  padding-top: 10rem;
  text-align: center;
}
.boardsOfDirectors__title {
  margin-bottom: 3rem;
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 6rem;
  letter-spacing: 0.01em;
}
.boardsOfDirectors__text {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.border {
  height: 2px;
  background: linear-gradient(90deg, #3FAE2A 0%, #00ABC7 100%);
  margin: auto;
}
.border--medium {
  max-width: 1124px;
}
.border--small {
  max-width: 66rem;
}

.cardAboveImage {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cardAboveImage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.cardAboveImage__card {
  background-color: rgba(44, 44, 44, 0.9);
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 55rem;
  padding-top: 8.8rem;
  padding-bottom: 8.8rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.cardAboveImage__cardContent {
  max-width: 35.2rem;
}
.cardAboveImage__title {
  font-family: "Qatar2022", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 4.8rem;
}

.cardImage {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
}
.cardImage--left .cardImage__row {
  grid-template-columns: 8fr 6fr;
}
.cardImage--left .cardImage__image {
  order: -1;
  margin-left: -10rem;
}
.cardImage--left .cardImage__card {
  margin-left: -17.5rem;
}
.cardImage--left .cardImage__dotsTop--style2 {
  position: absolute;
  z-index: -3;
  transform: translate(-30%, -15%);
  top: 0;
  left: 50%;
  width: 40%;
  height: 27rem;
}
.cardImage--right .cardImage__row {
  grid-template-columns: 6fr 8fr;
}
.cardImage--right .cardImage__image {
  order: 1;
  margin-right: -10rem;
}
.cardImage--right .cardImage__card {
  margin-right: -17.5rem;
  justify-self: flex-end;
}
.cardImage__row {
  display: grid;
  position: relative;
}
.cardImage__image {
  position: relative;
  line-height: 0;
  display: inline-block;
}
.cardImage__imageWrapper {
  position: relative;
}
.cardImage__image img {
  width: 100%;
  object-fit: contain;
}
.cardImage__card {
  position: relative;
  z-index: 1;
  margin-top: 18rem;
  padding-top: 6.6rem;
  padding-bottom: 8.4rem;
  background-color: rgba(44, 44, 44, 0.9);
  color: #FFFFFF;
  width: 66rem;
}
.cardImage__cardContent {
  max-width: 43rem;
  margin: auto;
  position: relative;
  z-index: 1;
}
.cardImage__dotsTop--style1 {
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
  width: 76%;
  height: 12rem;
}
.cardImage__dotsTop--style2 {
  position: absolute;
  z-index: -3;
  transform: translate(-84%, -15%);
  top: 0;
  left: 50%;
  width: 40%;
  height: 27rem;
}
.cardImage__dotsBottom--style1 {
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -65%);
  bottom: 0;
  left: 50%;
  width: 76%;
  height: 12rem;
}
.cardImage__balls--style2 {
  justify-content: center;
  transform: rotate(-90deg);
}

.certificates {
  padding: 11rem 0;
}
.certificates__heading {
  margin-left: 230px;
}
html[dir=rtl] .certificates__heading {
  margin-left: unset;
  margin-right: 230px;
}
.certificates__gradient {
  width: 200px;
  height: 2px;
  margin-bottom: 3.6rem;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
}
.certificates__title {
  font-size: 5.4rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 11rem;
}
.certificates__slider {
  padding-left: 3rem;
}
.certificates__card {
  border-radius: 8px;
  border: 2px solid #3FAE2A;
  text-align: center;
  position: relative;
  max-width: 31.2rem;
  padding: 7.5rem 2rem 3.6rem 2rem;
}
.certificates__cardIcon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.certificates__cardTitle {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3FAE2A;
  min-height: 7.5rem;
  display: inline-flex;
  align-items: center;
  margin-bottom: 2.4rem;
}
.certificates__cardText {
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.certificates__cardTextMain {
  min-height: 7.1rem;
}
.certificates__cardSeparator {
  width: 96px;
  height: 2px;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
  margin: 3.6rem auto;
}
.certificates__download {
  color: #3FAE2A;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}
.certificates__download:hover .certificates__downloadIcon {
  background-color: #2E7A1D;
}
.certificates__download:hover .downloadIcon__arrow {
  transform: translateY(-2px);
}
.certificates__downloadText {
  margin-bottom: 6px;
}
.certificates__downloadIcon {
  margin: auto;
  width: 30px;
  height: 30px;
  background-color: #3FAE2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emptySpace {
  background-color: #FFFFFF;
}
.emptySpace--1 {
  padding-top: 1rem;
}
.emptySpace--2 {
  padding-top: 2rem;
}
.emptySpace--3 {
  padding-top: 3rem;
}
.emptySpace--4 {
  padding-top: 4rem;
}
.emptySpace--5 {
  padding-top: 5rem;
}
.emptySpace--6 {
  padding-top: 6rem;
}
.emptySpace--7 {
  padding-top: 7rem;
}
.emptySpace--8 {
  padding-top: 8rem;
}
.emptySpace--9 {
  padding-top: 9rem;
}
.emptySpace--10 {
  padding-top: 10rem;
}

.featuresSliderFifa {
  position: relative;
  background-color: #555555;
  background-size: cover;
  color: #FFFFFF;
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.featuresSliderFifa__leftPadding {
  padding-left: 25vw !important;
}
html[dir=rtl] .featuresSliderFifa__leftPadding {
  padding-left: unset !important;
  padding-right: 25vw !important;
}
.featuresSliderFifa__title {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Qatar2022", sans-serif;
  margin-top: 7rem;
  margin-bottom: 4rem;
  max-width: 31rem;
}
.featuresSliderFifa__sliderFeature {
  background-color: #FFFFFF;
  max-width: 23rem;
  border-radius: 2px;
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}
.featuresSliderFifa__sliderIcon {
  height: 5.4rem;
}
.featuresSliderFifa__sliderIcon img {
  max-height: 100%;
}
.featuresSliderFifa__sliderTitle {
  margin-top: auto;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Qatar2022", sans-serif;
  color: #83113D;
  background: -webkit-linear-gradient(left, #83113D, #42091F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.featuresSliderFifa__sliderArrows {
  position: absolute;
  left: 25vw;
  z-index: 5;
  transform: translateY(-100%);
}
html[dir=rtl] .featuresSliderFifa__sliderArrows {
  left: unset;
  right: 25vw;
  flex-direction: row-reverse;
}

.files {
  margin-top: 5.4rem;
  margin-bottom: 5.4rem;
}
.files__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 3rem;
}
.files__item {
  max-width: 20rem;
  min-height: 10rem;
  background-color: #3FAE2A;
  border-radius: 8px;
  padding: 16px 18px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}
.files__item:hover {
  transform: translateY(-5px);
  background-color: #369423;
  box-shadow: 0 6px 24px rgba(46, 122, 29, 0.4);
}
.files__item:active {
  transform: scale(0.9);
}
.files__itemFoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.files__itemIcon {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: #2E7A1D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.files__itemIcon svg {
  width: 100%;
  height: 100%;
  position: absolute;
}
.files__itemInfo {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.floatingNavbar {
  background-color: #EDEDED;
  position: relative;
  z-index: 100;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .floatingNavbar {
  background-color: #B5B5B5;
}
.floatingNavbar__row {
  display: flex;
}
.floatingNavbar__progress {
  background-color: #B5B5B5;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 100%;
}
html[dir=rtl] .floatingNavbar__progress {
  background-color: #EDEDED;
}
.floatingNavbar__toTop {
  color: #FFFFFF;
  margin-right: 30px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .floatingNavbar__toTop {
  transform: scaleX(-1);
  margin-right: 0;
  margin-left: 30px;
}
.floatingNavbar__menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.floatingNavbar__menuLink {
  position: relative;
  padding: 17px 15px;
}
.floatingNavbar__menuLink:last-child .floatingNavbar__menuLinkProgress {
  transition: 0.3s ease-in-out;
}
.floatingNavbar__menuLinkProgress {
  background-color: #B5B5B5;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}
html[dir=rtl] .floatingNavbar__menuLinkProgress {
  left: unset;
  right: 0;
}
.floatingNavbar--sticky {
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
}
.floatingNavbar--sticky .floatingNavbar__toTop {
  transform: rotateZ(-90deg);
  cursor: pointer;
}
html[dir=rtl] .floatingNavbar--sticky .floatingNavbar__toTop {
  transform: scaleX(-1) rotateZ(-90deg);
}
.floatingNavbar--bottom .floatingNavbar__menuLinkProgress {
  width: 10000% !important;
  transition: 1s ease-in-out !important;
}

.floatSidebar {
  position: fixed;
  display: flex;
  align-self: flex-end;
  justify-content: center;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: auto;
  top: 14rem;
  width: 8rem;
  bottom: 2rem;
  right: 4rem;
  z-index: 90;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.floatSidebar::-webkit-scrollbar {
  display: none;
}
html[dir=rtl] .floatSidebar {
  right: unset;
  left: 4rem;
}
.floatSidebar__menu {
  display: flex;
}
.floatSidebar__link {
  height: 16rem;
  width: 6rem;
  padding: 1rem 2.4rem;
  background-color: #F8F8F8;
  border: 1px solid rgba(181, 181, 181, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: rotateZ(-180deg);
  position: relative;
}
.floatSidebar__link:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-color: #B5B5B5;
  height: 100%;
  width: 6px;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.floatSidebar__link:hover:after {
  opacity: 1;
  transform: translate(100%);
}
.floatSidebar__linkNumber {
  font-size: 1.8rem;
}
.floatSidebar__linkTitle {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.floatSidebar__item {
  margin-bottom: 0.6rem;
}
.floatSidebar__itemTop {
  width: 6rem;
  height: 2.4rem;
  padding: 1rem;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(181, 181, 181, 0.16);
  cursor: pointer;
}

.getInTouch {
  background: linear-gradient(90deg, #00ABC7, #005664);
  padding-bottom: 15rem;
  position: relative;
  z-index: 1;
}
.getInTouch__form {
  margin-top: -45rem;
  position: relative;
  z-index: 2;
}
.getInTouch__formCard {
  background-color: #FFFFFF;
  padding: 7rem 6rem;
}
.getInTouch__form textarea {
  height: 9.2rem;
}
.getInTouch .inputMaterial textarea,
.getInTouch .inputMaterial input {
  padding: 1.1rem 0;
}
.getInTouch__person {
  color: #FFFFFF;
  margin-top: -6rem;
}
.getInTouch__personAvatar {
  width: 11.6rem;
  height: 11.6rem;
  border-radius: 50%;
  margin-bottom: 2rem;
}
.getInTouch__personAvatar img {
  border-radius: inherit;
  object-fit: cover;
}
.getInTouch__personName {
  font-family: "Qatar2022", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.getInTouch__personProfession {
  opacity: 0.7;
  max-width: 24rem;
  font-size: 1.6rem;
  margin-bottom: 4.2rem;
}
.getInTouch__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.getInTouch__cover {
  position: absolute;
  left: 0;
  right: 50%;
  height: 100%;
  background: rgba(44, 44, 44, 0.9);
}
.getInTouch .fifa__titleDigit {
  color: #FFFFFF;
}
.getInTouch .fifa__titleDigit:before {
  background-color: #FFFFFF;
}
.getInTouch .fifa__subtitle {
  max-width: 31rem;
  line-height: 1.4;
  font-size: 1.6rem;
}
.getInTouch__dotsBottom {
  position: absolute;
  bottom: 26%;
  right: 8%;
  width: 46rem;
  height: 23rem;
  filter: brightness(3) saturate(0.5);
}
html[dir=rtl] .getInTouch__dotsBottom {
  right: unset;
  left: 10%;
}
.getInTouch__contentColumnHeader {
  margin-bottom: 4rem;
}
.getInTouch__contentColumnHeaderTitle {
  font-family: "Qatar2022", sans-serif;
  margin-bottom: 16px;
}
.getInTouch__row {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 10px;
}
.getInTouch__withIcon {
  display: flex;
  align-items: center;
  margin-bottom: 3.6rem;
}
.getInTouch__withIconImage {
  width: 5.4rem;
  height: 5.4rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00ABC7;
  font-size: 2rem;
}
html[dir=rtl] .getInTouch__withIconImage {
  margin-right: 0;
  margin-left: 1.2rem;
}
.getInTouch__withIconSmall {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  opacity: 0.7;
}
.getInTouch__withIconLink {
  font-weight: 600;
  font-size: 1.6rem;
}
.getInTouch__withIconLink span {
  font-weight: normal;
}

.getMoreParagraph {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.getMoreParagraph__title {
  font-size: 3.6rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 2.4rem;
}
.getMoreParagraph__text {
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 31.5rem;
}
.getMoreParagraph__files {
  margin-top: 5.4rem;
  display: grid;
  gap: 3.6rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.getMoreParagraph__wrapper {
  max-width: 45rem;
  margin-left: 12rem;
}
html[dir=rtl] .getMoreParagraph__wrapper {
  margin-left: unset;
  margin-right: 12rem;
}

.gwcFeatures {
  padding-bottom: 5rem;
  z-index: 2;
  overflow: hidden;
}
.gwcFeatures__circle {
  z-index: -2;
}
.gwcFeatures__title {
  text-transform: uppercase;
}
.gwcFeatures__paragraph {
  color: #B5B5B5;
}
.gwcFeatures__features {
  margin-top: 76px;
  display: flex;
  flex-wrap: wrap;
}
.gwcFeatures__featuresLogo {
  width: 180px;
  height: 180px;
  margin-right: 10px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: -10px 10px 30px 15px rgba(44, 44, 44, 0.1);
}
html[dir=rtl] .gwcFeatures__featuresLogo {
  margin-right: 0;
  margin-left: 10px;
}
.gwcFeatures__featuresLogoLine {
  text-align: center;
}
.gwcFeatures__featuresLogo img {
  max-width: 70%;
  max-height: 70%;
  transform: translateX(10%);
}
.gwcFeatures__featuresLogo:before {
  content: "";
  border-radius: inherit;
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #00ABC7 0%, #3FAE2A 100%);
  z-index: -1;
}
.gwcFeatures__featuresLogo:after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #3FAE2A;
  display: inline-block;
  position: absolute;
  right: 0;
  transform: translateX(100%);
}
html[dir=rtl] .gwcFeatures__featuresLogo:after {
  right: unset;
  left: 0;
  transform: translateX(-100%);
}
.gwcFeatures__feature {
  display: flex;
  text-align: center;
  margin-top: 48px;
  margin-left: 60px;
  position: relative;
}
html[dir=rtl] .gwcFeatures__feature {
  margin-left: 0;
  margin-right: 60px;
}
.gwcFeatures__feature:nth-child(5):after {
  content: "";
  position: absolute;
  right: -55px;
  top: 19%;
  height: 284px;
  width: 2px;
  background-color: #3FAE2A;
}
html[dir=rtl] .gwcFeatures__feature:nth-child(5):after {
  right: unset;
  left: -55px;
}
.gwcFeatures__feature:nth-child(6), .gwcFeatures__feature:nth-child(7), .gwcFeatures__feature:nth-child(8), .gwcFeatures__feature:nth-child(9) {
  margin-top: 68px;
}
.gwcFeatures__feature:nth-child(6) .gwcFeatures__featureBefore, .gwcFeatures__feature:nth-child(7) .gwcFeatures__featureBefore, .gwcFeatures__feature:nth-child(8) .gwcFeatures__featureBefore, .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureBefore {
  order: 1;
  margin-left: -20px;
  margin-right: 10px;
}
html[dir=rtl] .gwcFeatures__feature:nth-child(6) .gwcFeatures__featureBefore, html[dir=rtl] .gwcFeatures__feature:nth-child(7) .gwcFeatures__featureBefore, html[dir=rtl] .gwcFeatures__feature:nth-child(8) .gwcFeatures__featureBefore, html[dir=rtl] .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureBefore {
  margin-right: -20px;
  margin-left: 10px;
}
.gwcFeatures__feature:nth-child(6) .gwcFeatures__featureIcon:after, .gwcFeatures__feature:nth-child(7) .gwcFeatures__featureIcon:after, .gwcFeatures__feature:nth-child(8) .gwcFeatures__featureIcon:after, .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureIcon:after {
  right: -124px;
}
html[dir=rtl] .gwcFeatures__feature:nth-child(6) .gwcFeatures__featureIcon:after, html[dir=rtl] .gwcFeatures__feature:nth-child(7) .gwcFeatures__featureIcon:after, html[dir=rtl] .gwcFeatures__feature:nth-child(8) .gwcFeatures__featureIcon:after, html[dir=rtl] .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureIcon:after {
  right: unset;
  left: -124px;
}
.gwcFeatures__feature:nth-child(9) .gwcFeatures__featureIcon:after {
  right: -103px;
  width: 144px;
}
html[dir=rtl] .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureIcon:after {
  width: 138px;
}
.gwcFeatures__featureBox {
  width: 150px;
  position: relative;
}
.gwcFeatures__featureBefore {
  margin-top: 34px;
  margin-right: -20px;
  margin-left: 10px;
}
html[dir=rtl] .gwcFeatures__featureBefore {
  margin-left: -20px;
  margin-right: 10px;
}
.gwcFeatures__featureIcon {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  position: relative;
}
.gwcFeatures__featureIcon:after {
  content: "";
  width: 90px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #3FAE2A;
  transform: translateX(100%);
}
html[dir=rtl] .gwcFeatures__featureIcon:after {
  right: unset;
  left: 0;
  transform: translateX(-100%);
}
.gwcFeatures__featureTitle {
  color: #3FAE2A;
  font-size: 30px;
  font-weight: 600;
  position: relative;
}
.gwcFeatures__featureTitle sub, .gwcFeatures__featureTitle sup {
  font-size: 12px;
  color: #2C2C2C;
  font-weight: normal;
  position: absolute;
}
html[dir=rtl] .gwcFeatures__featureTitle sub, html[dir=rtl] .gwcFeatures__featureTitle sup {
  margin-right: 5px;
}
.gwcFeatures__featureTitle sup {
  vertical-align: top;
}
.gwcFeatures__featureText {
  margin-top: 10px;
  height: 80px;
  font-size: 18px;
}

.gwcServices {
  padding: 11rem 0;
  background-color: #F8F8F8;
}
.gwcServices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6rem;
}
.gwcServices__item {
  overflow: hidden;
  max-width: 544px;
  min-height: 156px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: -20px 23px 54px rgba(44, 44, 44, 0.1);
  display: grid;
  grid-template-columns: 156px 1fr;
  align-items: center;
  transition: 0.3s ease-in-out;
  position: relative;
}
.gwcServices__itemIcon {
  background-color: #F8F8F8;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gwcServices__itemIcon img {
  transition: 0.3s ease-in-out;
  filter: saturate(0) brightness(0.8);
}
.gwcServices__itemTitle {
  color: #3FAE2A;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  max-width: 27rem;
  text-transform: uppercase;
}
.gwcServices__itemText {
  font-size: 1.4rem;
  max-width: 27rem;
}
.gwcServices__itemContent {
  padding: 4rem;
}
.gwcServices__itemButton {
  background-color: rgba(63, 174, 42, 0.1);
  border-radius: 50%;
  width: 4.2rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3FAE2A;
  position: absolute;
  right: 12px;
  bottom: 12px;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}
.gwcServices__item:hover {
  transform: translateY(-10px);
}
.gwcServices__item:hover .gwcServices__itemIcon img {
  filter: saturate(1);
}
.gwcServices__item:hover .gwcServices__itemButton {
  transform: scale(1);
}

.gwcServicesSlider {
  background-color: #F8F8F8;
}
.gwcServicesSlider__title {
  text-transform: uppercase;
  color: #2C2C2C;
  font-size: 5.4rem;
  font-weight: 900;
  margin-bottom: 5rem;
}
.gwcServicesSlider__sliderContainer {
  padding-left: 20.5vmax;
  padding-right: 3rem;
}
html[dir=rtl] .gwcServicesSlider__sliderContainer {
  padding-left: 3rem;
  padding-right: 14vmax;
}
.gwcServicesSlider__serviceRow {
  margin-top: 1.5rem;
  justify-content: space-between;
  align-items: stretch;
}
.gwcServicesSlider__arrows {
  display: none;
}
.gwcServicesSlider__service {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease-in-out;
  max-width: 31.5rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #2C2C2C;
  cursor: pointer;
}
.gwcServicesSlider__serviceIcon {
  margin-bottom: 1.8rem;
  width: 7.2rem;
  height: 7.2rem;
}
.gwcServicesSlider__serviceTitle {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #3FAE2A;
}
.gwcServicesSlider__serviceText {
  text-align: left;
  margin-bottom: 2.4rem;
  line-height: 1.4;
  min-height: 13rem;
}
html[dir=rtl] .gwcServicesSlider__serviceText {
  text-align: right;
}
.gwcServicesSlider__serviceButton {
  margin-top: auto;
}
.gwcServicesSlider__service:hover {
  background-color: white;
  transform: translateY(-10px);
}

.headerDottedBackground {
  position: relative;
  padding: 4.5rem 0 8rem;
  background-color: #FFFFFF;
  background-position: bottom 3.8rem right 4.2rem;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 55rem;
}
html[dir=rtl] .headerDottedBackground {
  background-position: bottom 3.8rem left 4.2rem;
}
.headerDottedBackground--grayBg {
  background-color: #F8F8F8;
}
.headerDottedBackground__gradient {
  margin-top: 4.8rem;
  margin-bottom: 3.6rem;
  height: 2px;
  width: 200px;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
}
.headerDottedBackground__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.headerDottedBackground__col {
  width: 50%;
  padding: 0 1rem;
}
.headerDottedBackground__title {
  max-width: 43rem;
  margin: 3rem 0 1.2rem;
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.headerDottedBackground__textRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.7rem;
  margin-top: 3.7rem;
  margin-bottom: 4.2rem;
}
.headerDottedBackground__textRow p {
  max-width: 66rem;
}
.headerDottedBackground__text {
  max-width: 43rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
.headerDottedBackground__scrollDown {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  color: #3FAE2A;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.headerDottedBackground__scrollDownIcon {
  margin-left: 0.7rem;
  transition: 0.3s;
}
html[dir=rtl] .headerDottedBackground__scrollDownIcon {
  margin-right: 0.7rem;
  margin-left: unset;
}
.headerDottedBackground__scrollDown:hover .headerDottedBackground__scrollDownIcon {
  transform: translateY(0.5rem);
}
.headerDottedBackground__card {
  float: right;
  margin-top: 3.5rem;
  padding: 3.2rem 4.7rem;
  background-color: #FFFFFF;
  border-radius: 0.7rem;
  box-shadow: -10px 10px 40px 0px rgba(0, 0, 0, 0.3);
}
html[dir=rtl] .headerDottedBackground__card {
  float: left;
}
.headerDottedBackground__cardTitle {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.01em;
}
.headerDottedBackground__cardGradient {
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #00abc7 0%, #3fae2a 100%);
}
.headerDottedBackground__cardSubtitle {
  margin-top: 2.8rem;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.headerDottedBackground__cardText {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.headerDottedBackground__cardText--green {
  color: #3FAE2A;
}

.headerImageText {
  display: flex;
  justify-content: flex-end;
}
.headerImageText__image {
  flex: 3 1 300px;
  overflow: hidden;
}
.headerImageText__imageBox {
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
}
.headerImageText__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.headerImageText__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headerImageText__info {
  margin-top: -1.2rem;
  color: #F8F8F8;
  margin-bottom: 2.4rem;
}
.headerImageText--light .headerImageText__textBox {
  background: #F8F8F8;
  color: #555555;
}
.headerImageText--light .headerImageText__info {
  color: #555555;
}
.headerImageText--light .headerImageText__title {
  color: #2C2C2C;
}
.headerImageText__textBox {
  flex: 2 1 300px;
  min-height: 40rem;
  padding: 5.8rem 15.8rem 8.8rem 16vw;
  background-color: #2C2C2C;
  color: #FFFFFF;
  background-image: url("../../../public/img/quote-white.svg");
  background-position: left 12.2rem bottom 8.6rem;
  background-repeat: no-repeat;
}
html[dir=rtl] .headerImageText__textBox {
  left: unset;
  right: 0;
}
.headerImageText__title {
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 5.4rem;
}
.headerImageText__text {
  font-size: 2.4rem;
  margin-bottom: 1.8rem;
  line-height: 2.8rem;
}
.headerImageText__gradient {
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #3fae2a;
  background: linear-gradient(90deg, #3fae2a 0%, #00abc7 100%);
}

.headingSlider {
  position: relative;
  color: #FFFFFF;
  background-color: #2C2C2C;
}
.headingSlider__slide {
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  min-height: 87vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.headingSlider__slide--left .headingSlider__title {
  max-width: 62rem;
}
.headingSlider__slide--center {
  justify-content: center;
  text-align: center;
}
.headingSlider__slide--center .headingSlider__title {
  max-width: 63rem;
  margin-left: auto;
  margin-right: auto;
}
.headingSlider__slide--center .headingSlider__buttons {
  justify-content: center;
}
.headingSlider__slide--center .headingSlider__content {
  max-width: 100%;
}
.headingSlider__slide--right {
  justify-content: flex-end;
  text-align: right;
}
.headingSlider__slide--right .headingSlider__title {
  max-width: 62rem;
}
.headingSlider__slide--right .headingSlider__buttons {
  justify-content: flex-end;
}
.headingSlider__content {
  position: relative;
}
.headingSlider__title {
  font-size: 4.2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.headingSlider__subtitle {
  max-width: 31rem;
  font-size: 1.8rem;
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 3.5rem;
}
.headingSlider__background, .headingSlider__backgroundMobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  pointer-events: none;
}
.headingSlider__buttons {
  display: flex;
  align-items: center;
  margin: -3rem;
}
.headingSlider__button {
  margin: 3rem;
}
.headingSlider__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  font-size: 2.4rem;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.headingSlider__arrow.swiper-button-disabled {
  transform: scale(0) !important;
}
.headingSlider__arrowPrev {
  left: 5%;
}
html[dir=rtl] .headingSlider__arrowPrev {
  left: unset;
  right: 5%;
  transform: rotateZ(180deg);
}
.headingSlider__arrowNext {
  right: 5%;
}
html[dir=rtl] .headingSlider__arrowNext {
  right: unset;
  left: 5%;
  transform: rotateZ(180deg);
}
.headingSlider__arrow:hover {
  color: #3FAE2A;
}
.headingSlider__arrow:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.9);
}
.headingSlider__sliderPagination {
  position: absolute;
  bottom: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: translateY(-100%);
}
.headingSlider__sliderPagination .swiper-pagination-bullet {
  width: 1.8rem;
  height: 1.8rem;
  background-color: #FFFFFF;
  opacity: 0.3;
  margin: 0.6rem;
}
.headingSlider__sliderPagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.headingSlider__sliderPagination .swiper-button-disabled {
  display: none;
}

.headingText {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #FFFFFF;
}
.headingText--center .headingText__row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.headingText__line {
  width: 196px;
  height: 2px;
  background: #3FAE2A;
  background: linear-gradient(90deg, #3FAE2A 0%, #00ABC7 100%);
  margin-bottom: 36px;
}
.headingText__title {
  font-size: 5.4rem;
  font-weight: 900;
  margin-bottom: 3rem;
  text-transform: uppercase;
  max-width: 78rem;
}
.headingText__text {
  line-height: 1.4;
  max-width: 66rem;
  font-size: 2.4rem;
}

.hoverParagraphs {
  padding: 11rem 0;
}
.hoverParagraphs__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.hoverParagraphs__item {
  max-width: 31rem;
}
.hoverParagraphs__title {
  color: #3FAE2A;
  font-size: 3.6rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 2.4rem;
  transition: 0.3s ease-in-out;
}
.hoverParagraphs__gradient {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
  margin-bottom: 2.4rem;
  transition: 0.5s ease-in-out;
}
.hoverParagraphs__hoverContent {
  transition: 0.5s ease-in-out;
}
.hoverParagraphs__text {
  font-size: 1.6rem;
  line-height: 1.5;
  transition: 0.5s ease-in-out;
}

.iconsRow {
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}
.iconsRow__row {
  max-width: 1124px;
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 3rem;
  margin: auto;
}
.iconsRow__item {
  margin: 1rem 0;
}
.iconsRow__box {
  max-width: 24rem;
  min-height: 27rem;
  height: 100%;
  border: 2px solid #3FAE2A;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.iconsRow__icon {
  width: 8rem;
  height: 8rem;
  margin: -6rem auto 2.4rem auto;
  text-align: center;
}
.iconsRow__digit {
  font-size: 4rem;
  font-weight: 700;
  color: #3FAE2A;
}
.iconsRow__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3FAE2A;
  margin-bottom: 2rem;
}
.iconsRow__text {
  margin-top: auto;
  min-height: 40px;
  font-size: 2rem;
}

.imageSlider {
  margin: 5rem 0;
}
.imageSlider__wrapper {
  position: relative;
}
.imageSlider__wrapper--small {
  max-width: 1124px;
  margin: auto;
}
.imageSlider__arrow {
  position: absolute;
  top: calc(50% - 3.6rem);
  z-index: 3;
}
.imageSlider__arrowPrev {
  left: 1rem;
}
.imageSlider__arrowNext {
  right: 1rem;
}

.imageTextBox--style1 {
  background-color: #FFFFFF;
}
.imageTextBox--style2 {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.imageTextBox--style2 .imageTextBox__text {
  order: -1;
  max-width: 66rem;
  margin-bottom: -10rem;
}
.imageTextBox--style2 .imageTextBox__image {
  margin-top: -10rem;
  margin-left: -20rem;
  z-index: -1;
}
html[dir=rtl] .imageTextBox--style2 .imageTextBox__image {
  margin-left: unset;
  margin-right: -20rem;
}
.imageTextBox__row {
  display: flex;
  flex-wrap: wrap;
}
.imageTextBox__image {
  flex: 1 1 30rem;
  line-height: 0;
}
.imageTextBox__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imageTextBox__text {
  background-color: #F8F8F8;
  flex: 3 1 46rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  font-size: 2.4rem;
}
.imageTextBox__textArea {
  max-width: 43rem;
}
.imageTextBox__textTitle {
  font-size: 3.4rem;
  font-weight: 700;
}

.imageWithScroll {
  padding-bottom: 10rem;
}
.imageWithScrollWrapper {
  text-align: center;
  overflow-x: auto;
}
.imageWithScrollWrapper img {
  min-width: 800px;
}

.insideGwc {
  padding: 11rem 0;
  background-color: #F8F8F8;
}
.insideGwc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6rem;
}
.insideGwc__item {
  overflow: hidden;
  max-width: 544px;
  min-height: 156px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: -20px 23px 54px rgba(44, 44, 44, 0.1);
  display: grid;
  grid-template-columns: 156px 1fr;
  align-items: center;
  transition: 0.3s ease-in-out;
  position: relative;
}
.insideGwc__itemIcon {
  background-color: #F8F8F8;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.insideGwc__itemIcon img {
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.insideGwc__itemTitle {
  color: #3FAE2A;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  max-width: 27rem;
  text-transform: uppercase;
}
.insideGwc__itemText {
  font-size: 1.4rem;
  max-width: 27rem;
}
.insideGwc__itemContent {
  padding: 1rem 4rem;
}
.insideGwc__itemButton {
  background-color: rgba(63, 174, 42, 0.1);
  border-radius: 50%;
  width: 4.2rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3FAE2A;
  position: absolute;
  right: 12px;
  bottom: 12px;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}
.insideGwc__item:hover {
  transform: translateY(-10px);
}
.insideGwc__item:hover .insideGwc__itemIcon img {
  transform: scale(1.1);
}
.insideGwc__item:hover .insideGwc__itemButton {
  transform: scale(1);
}

.keepInTouch {
  display: grid;
  grid-template-columns: 4fr 6fr;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.keepInTouch__text {
  color: #555555;
}
html[dir=rtl] .keepInTouch__text {
  text-align: right;
}
.keepInTouch__imageColumn {
  position: relative;
  color: #2C2C2C;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.keepInTouch__imageColumnImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.keepInTouch__imageColumnText {
  color: #FFFFFF;
  font-weight: 900;
  font-size: 9.6rem;
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 45rem;
  margin-bottom: 1rem;
}
.keepInTouch__contentColumn {
  padding: 5rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  margin: auto;
}
.keepInTouch__contentColumnHeader {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.keepInTouch__contentColumnHeaderIcon {
  margin-right: 6px;
  height: 2.4rem;
}
.keepInTouch__contentColumnHeaderIcon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
html[dir=rtl] .keepInTouch__contentColumnHeaderIcon {
  margin-left: 6px;
  margin-right: unset;
}
.keepInTouch__contentColumnHeaderTitle {
  font-size: 3.6rem;
  font-weight: 900;
  text-transform: uppercase;
}
.keepInTouch__backgroundShape {
  position: absolute;
  filter: saturate(0);
  opacity: 0.08;
  width: 90%;
  z-index: -1;
  pointer-events: none;
}
html[dir=rtl] .keepInTouch__backgroundShape {
  transform: scaleX(-1);
}
.keepInTouch__links {
  display: flex;
  flex-wrap: wrap;
  margin: 15px -15px;
}
.keepInTouch__link {
  margin: 15px;
  color: #3FAE2A;
  white-space: nowrap;
  display: inline-flex;
}
.keepInTouch__linkIcon {
  margin-right: 6px;
}
html[dir=rtl] .keepInTouch__linkIcon {
  margin-right: 0;
  margin-left: 6px;
}
.keepInTouch__form {
  margin-top: 70px;
}

.latestNews {
  background-color: #F8F8F8;
  min-height: 100vh;
}
.latestNews .container--wide {
  padding-left: 14vmax;
  padding-right: 3rem;
}
html[dir=rtl] .latestNews .container--wide {
  padding-left: 3rem;
  padding-right: 14vmax;
}
.latestNews .latestNews__slider {
  padding-left: 12.5vmax;
}
html[dir=rtl] .latestNews .latestNews__slider {
  padding-left: 0;
  padding-right: 12.5vmax;
}
.latestNews__title {
  text-transform: uppercase;
  margin-bottom: 0rem;
}
.latestNews__arrows {
  display: flex;
  justify-content: flex-end;
  margin: -0.5rem;
  margin-bottom: 0.5rem;
}
.latestNews__arrow {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background-color: rgba(63, 174, 42, 0.1);
  color: #3FAE2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0.5rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
html[dir=rtl] .latestNews__arrow {
  transform: scaleX(-1);
}
.latestNews__arrow.swiper-button-disabled {
  transform: scale(0) !important;
}
.latestNews__arrow:hover {
  background-color: rgba(63, 174, 42, 0.3);
}
.latestNews__arrow:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.9);
}
.latestNews__slider {
  margin: -10px;
}
.latestNews__slider .swiper-wrapper {
  padding: 10px;
}
.latestNews__sliderWrapper {
  position: relative;
  padding-right: 30px;
  padding-left: 30px;
}
.latestNews__slider .latestNews__slide {
  width: 40rem;
  border-radius: 8px;
  background-color: #FFFFFF;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.latestNews__slider .latestNews__slideBody {
  padding: 35px;
}
.latestNews__slider .latestNews__slideImage {
  height: 24rem;
}
.latestNews__slider .latestNews__slideImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latestNews__slider .latestNews__slideDate {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #B5B5B5;
}
.latestNews__slider .latestNews__slideTitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.latestNews__slider .latestNews__slideText {
  font-size: 1.4rem;
  line-height: 1.4;
}

.latestNewsFifa {
  position: relative;
  z-index: 2;
  padding-top: 12rem;
}
.latestNewsFifa__balls {
  position: absolute;
  display: flex;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  margin: -1.2rem;
}
.latestNewsFifa__balls svg {
  margin: 1.2rem;
}
html[dir=rtl] .latestNewsFifa__balls {
  right: unset;
  left: 3rem;
}
.latestNewsFifa__section {
  background-color: #F8F8F8;
  padding-top: 7rem;
  padding-bottom: 7rem;
  margin-top: 7rem;
}
.latestNewsFifa__row {
  display: grid;
  justify-items: stretch;
  justify-items: space-between;
  gap: 8rem 0;
  grid-template-columns: 1fr 1fr 1fr;
}
.latestNewsFifa__item {
  border-right: 1px solid #00ABC7;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
html[dir=rtl] .latestNewsFifa__item {
  border-right: none;
  border-left: 1px solid #00ABC7;
}
.latestNewsFifa__itemBox {
  width: 43rem;
  max-width: 100%;
  padding: 4rem;
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.latestNewsFifa__itemBox:hover {
  background-color: #FFFFFF;
  box-shadow: 0 3px 60px rgba(85, 85, 85, 0.06);
  transform: translateY(-10px);
}
.latestNewsFifa__itemBox:hover .latestNewsFifa__itemImage {
  opacity: 1;
}
.latestNewsFifa__itemHeader {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}
.latestNewsFifa__itemHeaderCategory {
  font-weight: 600;
  color: #00ABC7;
}
.latestNewsFifa__itemTitle {
  font-size: 3rem;
  font-family: "Qatar2022", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.latestNewsFifa__itemExcerpt {
  font-size: 1.6rem;
  line-height: 1.4;
}
.latestNewsFifa__itemImage {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 70%);
  opacity: 0;
  width: 35rem;
  height: 23rem;
  transition: 0.3s ease-in-out;
}
.latestNewsFifa__itemImage img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
html[dir=rtl] .latestNewsFifa__itemImage {
  right: unset;
  left: 0;
  transform: translate(-50%, 70%);
}
.latestNewsFifa__itemLink {
  margin-top: 3rem;
}
.latestNewsFifa__item:first-child {
  margin-left: 0;
}
.latestNewsFifa__item:last-child {
  border: none;
}
html[dir=rtl] .latestNewsFifa__item:last-child {
  border: none;
}

.leaders__titleText {
  max-width: unset;
  margin-bottom: unset;
}
.leaders__subtitle {
  max-width: 31rem;
  margin-bottom: 8rem;
}
.leaders__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  gap: 26px;
}
.leaders__leader {
  text-align: center;
  cursor: pointer;
}
.leaders__leaderAvatar {
  position: relative;
  border-radius: 50%;
  display: inline-block;
  margin: auto;
  margin-bottom: 2.4rem;
  line-height: 0;
  width: 20rem;
  height: 20rem;
  transition: 0.3s ease-in-out;
}
.leaders__leaderAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}
.leaders__leaderTitle {
  font-family: "Qatar2022", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: auto;
  margin-bottom: 1.8rem;
  max-width: 17rem;
  transition: 0.3s ease-in-out;
}
.leaders__leaderPosition {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 19rem;
  margin: auto;
  line-height: 1.5;
  transition: 0.3s ease-in-out;
}
.leaders__leader:hover .leaders__leaderAvatar,
.leaders__leader:hover .leaders__leaderTitle,
.leaders__leader:hover .leaders__leaderPosition {
  transform: translateY(-10px);
}
.leaders__leader:hover .leaders__leaderAvatar {
  box-shadow: 0px 5px 10px 4px rgba(44, 44, 44, 0.4);
}
.leaders__leader:hover .leaders__leaderTitle {
  color: #00ABC7;
}
.leaders__section {
  display: none;
  position: absolute;
  left: 0;
  background: #F8F8F8;
  z-index: 6;
  padding-top: 6.6rem;
  padding-bottom: 6.6rem;
  text-align: left;
}
html[dir=rtl] .leaders__section {
  text-align: right;
}
.leaders__sectionTriangle {
  display: none;
  width: 0px;
  height: 0px;
  border-left: 5rem solid transparent;
  border-right: 5rem solid transparent;
  border-bottom: 5rem solid #F8F8F8;
  margin: 2.5rem auto -2rem;
}
.leaders__sectionAvatar {
  border-radius: 50%;
  width: 20rem;
  height: 20rem;
  margin-right: 3.8rem;
  margin-bottom: 3rem;
  flex-shrink: 0;
}
html[dir=rtl] .leaders__sectionAvatar {
  margin-right: unset;
  margin-left: 3.8rem;
}
.leaders__sectionAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.leaders__sectionTitle {
  font-family: "Qatar2022", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.leaders__sectionPosition {
  max-width: 24rem;
  line-height: 1.5;
}
.leaders__sectionLink {
  position: absolute;
  right: 0;
  top: 0;
}
html[dir=rtl] .leaders__sectionLink {
  right: unset;
  left: 0;
  transform: rotateZ(180deg);
}
.leaders__sectionHeader {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 4.5rem;
}
.leaders__sectionHeaderCouple {
  display: flex;
  flex-direction: column;
}
.leaders__sectionBody {
  margin-bottom: 3.5rem;
}
.leaders__sectionBodyTitle {
  font-family: "Qatar2022", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00ABC7;
}
.leaders__sectionBodySubtitle {
  font-size: 2.4rem;
  max-width: 43rem;
  color: #555555;
  line-height: 1.3;
}
.leaders__sectionContent {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
}
.leaders__sectionContentText {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 3.6rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.leaders__sectionContentContact {
  display: flex;
  align-items: center;
  margin-bottom: 3.6rem;
}
.leaders__sectionContentContactIcon {
  width: 5.4rem;
  height: 5.4rem;
  margin-right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #00ABC7;
  flex-shrink: 0;
  color: #FFFFFF;
  font-size: 18px;
}
html[dir=rtl] .leaders__sectionContentContactIcon {
  margin-right: unset;
  margin-left: 1.2rem;
}
.leaders__sectionContentContactIcon img {
  filter: contrast(0) brightness(3);
}
.leaders__sectionContentContactSmall {
  color: #555555;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.leaders__sectionContentContactLink {
  display: flex;
  color: #00ABC7;
  font-weight: 600;
}
.leaders__sectionContentContactSeparator {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}
.leaders__sectionContentContactSeparator:last-child {
  display: none;
}
.leaders--active .leaders__section {
  display: block;
}
.leaders--active .leaders__sectionTriangle {
  display: inline-block;
}
.leaders--active .leaders__leaderAvatar::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 5px #00ABC7;
  z-index: 0;
  border-radius: 50%;
}

.list {
  background-color: #F8F8F8;
  padding: 8.4rem 0;
  font-size: 2.4rem;
}
.list__ul {
  display: grid;
  gap: 40px 30px;
  grid-template-columns: 1fr 1fr;
  margin-left: 54px;
}
.list__ul li {
  position: relative;
  max-width: 374px;
  line-height: 1.4;
}
.list__ul li:before {
  content: "";
  background: url("../../img/logo-arrow.svg") center/contain no-repeat;
  width: 17px;
  height: 24px;
  position: absolute;
  margin-left: -35px;
  top: 4px;
}
.list__ul--5columns {
  grid-template-columns: repeat(5, 1fr);
}
.list__ul--5columns li {
  max-width: 200px;
  max-height: 20px;
}
html[dir=rtl] .list__ul {
  margin-left: unset;
  margin-right: 35px;
}
html[dir=rtl] .list__ul li:before {
  margin-right: -35px;
  margin-left: unset;
}

.mediaGallery3Items {
  padding: 7rem 0;
}
.mediaGallery3Items__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 30px;
}
.mediaGallery3Items__item {
  display: block;
  position: relative;
}
.mediaGallery3Items__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newsContent {
  padding-top: 7.2rem;
  overflow: hidden;
}
.newsContent__box {
  max-width: 78rem;
  min-height: 15rem;
}
.newsContent--last .newsContent__box {
  padding-bottom: 7.2rem;
}
.newsContent__title, .newsContent h2 {
  margin-bottom: 3.5rem;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 4.8rem;
  text-transform: uppercase;
  word-break: break-all;
}
.newsContent__subtitle, .newsContent h4 {
  margin-bottom: 3rem;
  font-size: 2.4rem;
  line-height: 2.8rem;
}
.newsContent__text, .newsContent p {
  margin-bottom: 3rem;
  font-size: 2rem;
  line-height: 1.5;
}
.newsContent *:last-child {
  margin-bottom: 0;
}
.newsContent__image, .newsContent img {
  width: 100%;
  height: auto;
}
.newsContent__gradient {
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #3fae2a 0%, #00abc7 100%);
}

.organizationChart {
  position: relative;
  padding: 4.6rem 0 10.5rem;
  overflow: hidden;
}
.organizationChart__bg {
  width: 100%;
  min-width: 1024px;
  position: absolute;
  top: 23rem;
  left: 0;
  z-index: -2;
}
html[dir=rtl] .organizationChart__bg {
  right: 0;
  left: unset;
}
.organizationChart__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 1024px;
}
.organizationChart__topRow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5.8rem;
}
.organizationChart__imageBox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18rem;
  height: 18rem;
  position: relative;
  margin-bottom: 3rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: -20px 20px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: -20px 20px 40px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -20px 20px 40px 0px rgba(0, 0, 0, 0.15);
}
.organizationChart__imageBox:before {
  content: "";
  border-radius: inherit;
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #00ABC7 0%, #3FAE2A 100%);
  z-index: -1;
}
.organizationChart__image {
  max-width: 80%;
  max-height: 80%;
  margin-top: -6%;
}
.organizationChart__title {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.organizationChart__row {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.organizationChart__row--first {
  width: 60%;
  margin-top: 4.2rem;
}
.organizationChart__row--second {
  width: 94%;
  margin-top: 3rem;
}
.organizationChart__row--third {
  width: 100%;
  margin-top: 5rem;
}
.organizationChart__row--fourth {
  width: 100%;
  margin-top: 5rem;
}
.organizationChart__row--fifth {
  width: 100%;
  margin-top: 1rem;
}
.organizationChart__rowVerticalLine {
  width: 2px;
  height: 4.2rem;
  position: absolute;
  top: -4.2rem;
  left: calc(50% - 1px);
  background-color: #B5B5B5;
  border-radius: 50%;
}
.organizationChart__rowVerticalLine--under {
  height: 20rem;
  top: 0;
}
.organizationChart__row--fourth .organizationChart__rowVerticalLine {
  left: calc(37.5% - 1px);
}
html[dir=rtl] .organizationChart__row--fourth .organizationChart__rowVerticalLine {
  right: calc(37.5% - 1px);
  left: unset;
}
.organizationChart__rowHorizontalLine {
  width: calc(100% - 20rem);
  height: 2px;
  position: absolute;
  top: 0;
  left: 10rem;
  background-color: #B5B5B5;
  border-radius: 50%;
}
.organizationChart__row--third .organizationChart__rowHorizontalLine {
  width: 50%;
  right: 12.5%;
  left: unset;
}
html[dir=rtl] .organizationChart__row--third .organizationChart__rowHorizontalLine {
  right: unset;
  left: 12.5%;
}
.organizationChart__row--fourth .organizationChart__rowHorizontalLine {
  width: 50%;
  left: 12.5%;
}
html[dir=rtl] .organizationChart__row--fourth .organizationChart__rowHorizontalLine {
  right: 12.5%;
  left: unset;
}
.organizationChart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}
.organizationChart__colLine {
  width: 2px;
  height: 8.4rem;
  margin-bottom: 1rem;
  background-color: #B5B5B5;
  border-radius: 50%;
}
.organizationChart__colLine--under {
  margin-top: 1rem;
  margin-bottom: 0;
}
.organizationChart__division {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19.6rem;
  height: 4.8rem;
  background-color: #B5B5B5;
  border-radius: 0.8rem;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.4rem;
}

.personalData__gradient {
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #3fae2a 0%, #00abc7 100%);
}
.personalData__card {
  display: flex;
  align-items: center;
  margin: 7.2rem 0;
  background-color: #F8F8F8;
}
.personalData__image {
  height: auto;
}
.personalData__textBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.7rem 11.6rem 6.2rem 15.2rem;
  background-color: #F8F8F8;
}
.personalData__textBox--tablet {
  display: none;
}
.personalData__name {
  margin-bottom: 2rem;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 2.2rem;
}
.personalData__position {
  margin-bottom: 3.3rem;
  font-size: 1.6rem;
  line-height: 1.5rem;
}
.personalData__text {
  font-size: 1.6rem;
  line-height: 1.4;
  max-width: 54rem;
}

.personalMessage {
  padding: 0 0 7.2rem;
  background-color: #FFFFFF;
}
.personalMessage__gradient {
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #3fae2a 0%, #00abc7 100%);
}
.personalMessage__header {
  margin: 7.2rem 0 4.2rem;
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 6rem;
  letter-spacing: 0.01em;
}
.personalMessage__card {
  display: flex;
  align-items: stretch;
  background-color: #F8F8F8;
}
.personalMessage__imageBox {
  width: 50%;
}
.personalMessage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.personalMessage__image--mobile {
  display: none;
}
.personalMessage__textBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  justify-content: center;
  padding: 5.7rem 11.6rem 6.2rem 15.2rem;
}
.personalMessage__title {
  margin-bottom: 2rem;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 2.2rem;
}
.personalMessage__text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2.2rem;
  max-width: 31rem;
}

.personQuote {
  background: #2C2C2C url("../../img/gradient.jpg") center/cover no-repeat;
  color: #FFFFFF;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}
.personQuote__wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
}
.personQuoteWhiteScreen {
  display: flex;
  text-align: center;
  justify-content: center;
}
.personQuoteWhiteScreen__row {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.personQuoteWhiteScreen__logo {
  margin-bottom: 3rem;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}
html[dir=rtl] .personQuoteWhiteScreen__logo {
  flex-direction: row-reverse;
}
.personQuoteWhiteScreen__logoText {
  color: #3FAE2A;
  font-size: 10rem;
}
.personQuoteWhiteScreen__logoIcon {
  height: 74px;
  margin-top: -74px;
}
.personQuoteWhiteScreen__logoIcon img {
  max-height: 100%;
}
.personQuoteWhiteScreen__title {
  font-size: 3.6rem;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 44rem;
}
.personQuote__column {
  max-width: 43%;
  text-align: left;
}
html[dir=rtl] .personQuote__column {
  text-align: right;
}
.personQuote__quote {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  position: relative;
  z-index: 0;
}
.personQuote__quote:before {
  content: "\201C";
  pointer-events: none;
  font-size: 550px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-30%, -30%);
  opacity: 0.3;
  color: #3FAE2A;
  z-index: -1;
}
html[dir=rtl] .personQuote__quote:before {
  right: 0;
  left: unset;
  transform: translate(30%, -30%);
}
.personQuote__author {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.personQuote__image {
  position: absolute;
  left: 50%;
  bottom: 0;
  top: 0;
  right: 0;
  line-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.personQuote__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom;
}
html[dir=rtl] .personQuote__image {
  left: 0;
  right: 50%;
}
html[dir=rtl] .personQuote__image img {
  transform: scaleX(-1);
}
.personQuote__position {
  font-size: 1.2rem;
}
.personQuote__buttons {
  margin: -1rem;
  display: flex;
  margin-top: 2rem;
}
.personQuote__button {
  margin: 1rem;
  flex-grow: 0;
  flex-shrink: 0;
}
.personQuote__button .icon {
  background: none;
  border: 1px solid #FFFFFF;
}

.schematicImage__row {
  display: grid;
  grid-template-columns: 43rem 1fr;
  gap: 3rem;
}
.schematicImage__gradient {
  width: 200px;
  height: 2px;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
  margin-bottom: 3.6rem;
}
.schematicImage__title {
  font-size: 5.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3.6rem;
}
.schematicImage__subtitle {
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 31rem;
}
.schematicImage__columnScheme {
  margin-top: 14rem;
  justify-self: center;
}
.schematicImage__scheme {
  position: relative;
}
.schematicImage__schemeBackground {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 120rem;
  height: 120rem;
  background-color: #F8F8F8;
  z-index: -1;
}

.separator {
  width: 196px;
  height: 2px;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
  margin-top: 11rem;
  margin-bottom: 3.5rem;
}

.services {
  position: relative;
  color: #FFFFFF;
  background-color: #B5B5B5;
  z-index: 1;
}
.services__sectionWrapper {
  position: relative;
  overflow: hidden;
}
.services__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #FFFFFF;
}
.services__coverScreen {
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__coverTitle {
  font-size: 12rem;
  max-width: 96rem;
  margin: auto;
  font-weight: 900;
  color: #2C2C2C;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  transition: 0.5s ease-in-out;
}
.services.section {
  padding-top: 25%;
}
.services__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.services__title {
  max-width: 48rem;
}
.services__paragraph {
  font-size: 1.8rem;
}
.services__serviceRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  justify-content: space-between;
  justify-items: center;
  gap: 2rem;
  margin-top: 7rem;
}
.services__serviceRow.swiper-wrapper {
  display: flex;
  margin-top: 2rem;
  gap: 0;
}
.services__arrows {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
}
.services__arrow {
  margin: 0 1rem;
}
.services__service {
  margin: auto;
  min-height: 390px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease-in-out;
  max-width: 31.5rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #2C2C2C;
  cursor: pointer;
}
.services__serviceIcon {
  margin-bottom: 1.8rem;
  width: 7.2rem;
  height: 7.2rem;
}
.services__serviceTitle {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #3FAE2A;
}
.services__serviceText {
  text-align: left;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}
html[dir=rtl] .services__serviceText {
  text-align: right;
}
.services__serviceButton {
  margin-top: auto;
}
.services__service:hover {
  background-color: white;
  transform: translateY(-10px);
}

.colorStyle--blue .sharePrintButtons svg path {
  fill: #00ABC7;
}
.colorStyle--blue .sharePrintButtons__button {
  background-color: rgba(0, 171, 199, 0.1);
}
.colorStyle--blue .sharePrintButtons__button:hover {
  background-color: rgba(0, 171, 199, 0.3);
}

.sharePrintButtons {
  height: 0;
}
.sharePrintButtons--sticky {
  position: fixed;
  width: 100%;
}
.sharePrintButtons__row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -7rem;
  position: relative;
}
.sharePrintButtons__column {
  display: flex;
  flex-direction: column;
  margin: -0.6rem;
  position: absolute;
  transform: translateY(100%);
}
.sharePrintButtons__button {
  cursor: pointer;
  margin: 0.6rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: rgba(63, 174, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  position: relative;
}
.sharePrintButtons__buttonRow {
  opacity: 0;
  display: flex;
  align-items: center;
  position: absolute;
  padding-right: 3.6rem;
  padding-left: 1.6rem;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(63, 174, 42, 0.1);
  border-radius: 40px;
  transition: 0.3s ease-in-out;
}
.sharePrintButtons__buttonRow svg {
  margin: 0.6rem;
  width: 1.6rem;
  height: 1.6rem;
}
html[dir=rtl] .sharePrintButtons__buttonRow {
  padding-right: 1.6rem;
  padding-left: 3.6rem;
  right: unset;
  left: 0;
}
.sharePrintButtons__button:hover {
  background-color: rgba(63, 174, 42, 0.3);
}
.sharePrintButtons__button:hover .sharePrintButtons__buttonRow {
  opacity: 1;
}
.sharePrintButtons__button:focus {
  transition: 0.1s ease-in-out;
  transform: scale(0.9);
}

.singleImage {
  margin: 5rem 0;
}
.singleImage__image--small {
  max-width: 1124px;
  margin: auto;
}

.text {
  max-width: 66rem;
  line-height: 1.4;
  margin: 2rem auto 5rem auto;
  font-size: 2.4rem;
}
.text a {
  color: #3FAE2A;
  font-weight: 600;
  text-decoration: underline;
}
.text a:hover {
  text-decoration: none;
}

.textAboveImage {
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 8.4rem;
}
.textAboveImage__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.textAboveImage__cover {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(44, 44, 44, 0.9);
  bottom: 0;
  right: 55%;
  z-index: 2;
}
html[dir=rtl] .textAboveImage__cover {
  left: 55%;
  right: 0;
}
.textAboveImage__content {
  color: #FFFFFF;
  max-width: 43rem;
  position: relative;
  z-index: 3;
}
.textAboveImage__dots--style1 {
  position: absolute;
  top: -4rem;
  bottom: -4.3rem;
  width: 19rem;
  z-index: 0;
  right: 25%;
}

.textFile__gradient {
  width: 20rem;
  height: 2px;
  margin-bottom: 3rem;
  background: #3fae2a;
  background: linear-gradient(90deg, #00abc7 0%, #3fae2a 100%);
}
.textFile__gradient--additional {
  margin-top: 11.5rem;
}
.textFile__title {
  margin-bottom: 3.8rem;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.textFile__title--big {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.2;
}
.textFile__text {
  max-width: 66rem;
  margin-bottom: 5rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
.textFile__text--additional {
  margin-bottom: 0;
}
.textFile__filesRow {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: -1.8rem;
}
.textFile__fileCol {
  width: 25%;
  padding: 1.8rem;
  min-width: 177px;
}
.textFile__file {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 10rem;
  padding: 1.6rem 1.8rem;
  background-color: #3FAE2A;
  border-radius: 0.8rem;
  box-shadow: 0 6px 24px rgba(46, 122, 29, 0);
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
}
.textFile__file:hover {
  transform: translateY(-5px);
  background-color: #369423;
  box-shadow: 0 6px 24px rgba(46, 122, 29, 0.4);
}
.textFile__file:active {
  transform: scale(0.9);
}
.textFile__fileName {
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.textFile__fileFoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.textFile__fileIcon {
  width: 3rem;
  height: 3rem;
  background-color: #2E7A1D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.textFile__fileInfo {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.titleButton {
  padding-top: 11.4rem;
  padding-bottom: 11.4rem;
}
.titleButton--red .titleButton__button {
  background: linear-gradient(45deg, #83113D, #42091F);
}
.titleButton--red .titleButton__button .icon:after {
  background-color: #83113D;
}
.titleButton--red .titleButton__button .icon:before {
  color: #83113D;
}
.titleButton--red .titleButton__button:hover .icon:before {
  color: #FFFFFF;
}
.titleButton--red .titleButton__dots--style1 {
  background-image: url("../../img/fifa/dots-grid-red.svg");
}
.titleButton__row {
  position: relative;
}
.titleButton__column {
  max-width: 55rem;
}
.titleButton__title {
  font-family: "Qatar2022", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 3.6rem;
}
.titleButton__dots--style1 {
  width: 24rem;
  height: 54rem;
  max-height: 148%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
html[dir=rtl] .titleButton__dots--style1 {
  right: unset;
  left: 0;
}

.titleParagraphs {
  padding: 5rem 0;
}
.titleParagraphs__gradient {
  width: 196px;
  height: 2px;
  background: linear-gradient(to right, #00ABC7, #3FAE2A);
  margin-bottom: 3.6rem;
}
.titleParagraphs__title {
  font-size: 5.4rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 3.6rem;
}
.titleParagraphs__columns {
  display: grid;
  gap: 3.6rem;
  grid-template-columns: 1fr 1fr;
  max-width: 62rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.titleTextButton {
  padding-top: 4rem;
  padding-bottom: 5rem;
  text-align: center;
}
.titleTextButton__title {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.titleTextButton__paragraph {
  margin-left: auto;
  margin-right: auto;
  max-width: 55rem;
  color: #B5B5B5;
}

.twitterTweets__row {
  display: flex;
  flex-wrap: wrap;
}
.twitterTweets__col {
  width: 33.3333333333%;
}

.videoSection {
  position: relative;
}

.visualResults {
  padding-bottom: 1rem;
}
.visualResults--withSidebar {
  padding-top: 0;
  padding-bottom: 0;
}
.visualResults__gradient {
  width: 20rem;
  height: 2px;
  margin-bottom: 3rem;
  background: #3fae2a;
  background: linear-gradient(90deg, #00abc7 0%, #3fae2a 100%);
}
.visualResults--withSidebar .visualResults__circle {
  display: none;
}
.visualResults--withSidebar .visualResults__container {
  padding: 0;
}
.visualResults__supTitle {
  color: #555555;
  font-size: 2.4rem;
}
.visualResults__title {
  text-transform: uppercase;
  margin-bottom: 8rem;
}
.visualResults--withSidebar .visualResults__title {
  margin-bottom: 4rem;
  font-size: 3.6rem;
  line-height: 1.4;
}

.welcomeToGwc {
  padding: 7.2rem 0 11.3rem;
  background: #FFFFFF;
}
.welcomeToGwc__box {
  height: 500px;
  background-color: red;
}
.welcomeToGwc__title {
  margin-bottom: 2.4rem;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  max-width: 80%;
}
.welcomeToGwc__subtitle {
  margin-bottom: 2rem;
  max-width: 90%;
  font-size: 2rem;
  line-height: 1.5;
}
.welcomeToGwc__imageRow {
  display: flex;
  align-items: center;
  padding-top: 5.1rem;
}
.welcomeToGwc__imageBox {
  position: relative;
}
.welcomeToGwc__image {
  max-width: unset;
  height: auto;
}
.welcomeToGwc__imageText {
  position: absolute;
  bottom: -2.3rem;
  left: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.welcomeToGwc__rowTextBox {
  padding: 0 11.5rem 0 15.2rem;
  font-size: 2rem;
  line-height: 1.5;
}
.welcomeToGwc__textBox {
  padding: 7.2rem 0;
  max-width: 66rem;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.5;
}
.welcomeToGwc__textBox--pb0 {
  padding-bottom: 0;
}
.welcomeToGwc__quoteGradient {
  height: 2px;
  background: #3fae2a;
  background: linear-gradient(90deg, #3fae2a 0%, #00abc7 100%);
}
.welcomeToGwc__quoteBox {
  padding: 11.5rem;
  background-color: #F8F8F8;
  background-image: url("../../../public/img/quote-top.svg"), url("../../../public/img/quote-bot.svg");
  background-position: top 6.6rem left 8rem, right 11.6rem bottom 6.8rem;
  background-repeat: no-repeat;
}
.welcomeToGwc__quote {
  color: #555555;
  font-size: 3rem;
  line-height: 3.6rem;
}
.welcomeToGwc__signature {
  margin-top: 2rem;
  margin-right: 23.2rem;
  padding-right: 6.8rem;
  font-size: 2.4rem;
  line-height: 2.8rem;
  text-align: right;
}
html[dir=rtl] .welcomeToGwc__signature {
  margin-right: 0;
  padding-right: 0;
  margin-left: 23.2rem;
  padding-left: 6.8rem;
  text-align: left;
}
.welcomeToGwc__subSignature {
  margin-top: 2rem;
  padding-right: 23.2rem;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: right;
}
html[dir=rtl] .welcomeToGwc__subSignature {
  padding-right: 0;
  padding-left: 23.2rem;
  text-align: left;
}
@media (max-width: 1600px) {
  .headerInnerFifa__card {
    padding-left: 12vw;
  }
  .visualResults .section__circle {
    width: 57vw;
    height: 57vw;
  }
  .featuresSliderFifa__leftPadding {
    padding-left: 15vw !important;
  }
  html[dir=rtl] .featuresSliderFifa__leftPadding {
    padding-left: unset !important;
    padding-right: 15vw !important;
  }
  .featuresSliderFifa__sliderArrows {
    left: 15vw;
  }
  html[dir=rtl] .featuresSliderFifa__sliderArrows {
    left: unset;
    right: 15vw;
  }
  .gwcServicesSlider__sliderContainer {
    padding-left: 10vmax;
  }
  html[dir=rtl] .gwcServicesSlider__sliderContainer {
    padding-right: 7vmax;
  }
  .headerImageText__textBox {
    padding: 5.8rem 15.8rem 8.8rem;
  }
  .latestNews .container--wide {
    padding-left: 7vmax;
  }
  html[dir=rtl] .latestNews .container--wide {
    padding-right: 7vmax;
  }
  .latestNews .latestNews__slider {
    padding-left: 5vmax;
  }
  html[dir=rtl] .latestNews .latestNews__slider {
    padding-right: 5vmax;
  }
}
@media (max-width: 1366px) {
  .afterHeaderScene {
    margin-top: -40%;
  }
  .directorPopup__imageBox {
    width: 50%;
  }
  .directorPopup__textBox {
    width: 50%;
  }
  .directorPopup__name {
    font-size: 3.2rem;
  }
  .newsFifa__itemImage {
    transform: scale(0.8) translate(50%, 70%);
  }
  html[dir=rtl] .newsFifa__itemImage {
    transform: scale(0.8) translate(-50%, 70%);
  }
  .latestNewsFifa__itemImage {
    transform: scale(0.8) translate(50%, 70%);
  }
  html[dir=rtl] .latestNewsFifa__itemImage {
    transform: scale(0.8) translate(-50%, 70%);
  }
}
@media (max-width: 1300px) and (max-width: 600px) {
  .gwcFeatures__featureBefore {
    background-color: #FFFFFF;
    margin: 0;
  }
}
@media (max-width: 1300px) {
  .commonSection__image {
    width: 100%;
    height: auto;
  }
  .gwcFeatures__feature {
    flex-direction: column;
    align-items: center;
    margin: 10px 10px 20px 10px !important;
  }
  html[dir=rtl] .gwcFeatures__feature {
    margin: 10px 10px 20px 10px !important;
  }
  .gwcFeatures__feature__featuresLogo:after {
    display: none;
  }
  .gwcFeatures__feature:nth-child(6) .gwcFeatures__featureBefore, .gwcFeatures__feature:nth-child(7) .gwcFeatures__featureBefore, .gwcFeatures__feature:nth-child(8) .gwcFeatures__featureBefore, .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureBefore {
    order: 0;
    margin-left: unset;
    margin-right: unset;
  }
  html[dir=rtl] .gwcFeatures__feature:nth-child(6) .gwcFeatures__featureBefore, html[dir=rtl] .gwcFeatures__feature:nth-child(7) .gwcFeatures__featureBefore, html[dir=rtl] .gwcFeatures__feature:nth-child(8) .gwcFeatures__featureBefore, html[dir=rtl] .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureBefore {
    margin-right: unset;
    margin-left: unset;
  }
  .gwcFeatures__feature:nth-child(6) .gwcFeatures__featureIcon:after, .gwcFeatures__feature:nth-child(7) .gwcFeatures__featureIcon:after, .gwcFeatures__feature:nth-child(8) .gwcFeatures__featureIcon:after, .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureIcon:after {
    right: unset;
  }
  html[dir=rtl] .gwcFeatures__feature:nth-child(6) .gwcFeatures__featureIcon:after, html[dir=rtl] .gwcFeatures__feature:nth-child(7) .gwcFeatures__featureIcon:after, html[dir=rtl] .gwcFeatures__feature:nth-child(8) .gwcFeatures__featureIcon:after, html[dir=rtl] .gwcFeatures__feature:nth-child(9) .gwcFeatures__featureIcon:after {
    right: unset;
    left: unset;
  }
  .gwcFeatures__feature:after {
    display: none;
  }
  .gwcFeatures__featureBefore {
    padding: 10px 0;
  }
  html[dir=rtl] .gwcFeatures__featureBefore {
    padding: 10px 0;
  }
  .gwcFeatures__featureIcon:after {
    display: none;
  }
  .gwcFeatures__featureText {
    height: unset;
  }
}
@media (max-width: 1280px) {
  .directorPopup__textBox {
    padding: 4rem 6rem;
  }
  .directorPopup__name {
    margin-bottom: 2rem;
    font-size: 3rem;
    line-height: 3.6rem;
  }
  .directorPopup__nextButtonText {
    font-size: 1.2rem;
    line-height: 1;
  }
  .newsFifa__itemImage {
    right: 20%;
    left: 20%;
    transform: translateY(90%);
  }
  .gwcServicesSlider__sliderContainer {
    padding-left: 3rem;
  }
  html[dir=rtl] .gwcServicesSlider__sliderContainer {
    padding-right: 3rem;
  }
  .headerImageText__textBox {
    width: 46%;
    padding: 4rem 7rem 5rem;
    background-position: left 4rem bottom 4.8rem;
  }
  .headerImageText__title {
    font-size: 4rem;
    line-height: 4.4rem;
  }
  .headerImageText__text {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .latestNews {
    min-height: unset;
  }
  .latestNews .container--wide {
    padding-left: 3rem;
  }
  html[dir=rtl] .latestNews .container--wide {
    padding-right: 3rem;
  }
  .latestNews .latestNews__slider {
    padding-left: 0rem;
  }
  html[dir=rtl] .latestNews .latestNews__slider {
    padding-right: 0rem;
  }
  .personalData__textBox {
    padding: 3rem 7rem;
  }
  .personalData__position {
    margin-bottom: 2.4rem;
  }
  .personalMessage__header {
    font-size: 4.4rem;
    line-height: 5rem;
  }
  .personalMessage__textBox {
    padding: 4rem 8rem 4.4rem;
  }
  .personalMessage__title {
    line-height: 3.6rem;
  }
  .welcomeToGwc__imageRow {
    padding-top: 3rem;
  }
  .welcomeToGwc__rowTextBox {
    padding: 0 8rem;
    font-size: 1.6rem;
  }
  .welcomeToGwc__textBox--pb0 {
    padding-bottom: 0;
  }
  .welcomeToGwc__signature {
    margin-right: 12rem;
    padding-right: 3.6rem;
  }
  html[dir=rtl] .welcomeToGwc__signature {
    margin-right: 0;
    padding-right: 0;
    margin-left: 12rem;
    padding-left: 3.6rem;
  }
  .welcomeToGwc__subSignature {
    padding-right: 12rem;
  }
  html[dir=rtl] .welcomeToGwc__subSignature {
    padding-right: 0;
    padding-left: 12rem;
  }
}
@media (max-width: 1024px) {
  .navbar .wcagText {
    display: none;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footerFifa__grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .headerInnerAltFifa__cover {
    left: 0;
    right: 0;
  }
  .headerInnerAltFifa__form {
    position: relative;
    transform: translateY(10%);
    padding: 4rem 3rem;
    right: unset;
    max-width: 100%;
  }
  html[dir=rtl] .headerInnerAltFifa__form {
    left: unset;
  }
  .afterHeaderScene {
    margin-top: -20%;
    justify-content: center;
  }
  .physicalCard img {
    width: 130px;
    height: 205px;
  }
  .directorPopup__textBox {
    padding: 2rem 3rem;
  }
  .directorPopup__name {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .directorPopup__text {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .directorPopup__linkedinLink {
    font-size: 1.4rem;
  }
  .directorPopup__message {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .directorPopup__readNow {
    font-size: 1.4rem;
  }
  .navbar__topMenu {
    margin: -0.9rem;
  }
  .navbar__topMenu li {
    margin: 0.9rem;
  }
  .newsItem {
    width: 50%;
  }
  .paymentIcons {
    justify-content: center;
  }
  .phoneMockup {
    width: 170px;
    height: 355px;
    padding: 8px;
  }
  .singleNews__dataBox {
    padding: 3.5rem 2.4rem;
  }
  .contacts__formCard {
    position: relative;
    margin-top: unset;
    margin-bottom: -10rem;
  }
  .mainFeatures__row {
    grid-template-columns: repeat(2, 4fr);
  }
  .newsList__optionsLabel {
    display: none;
  }
  .searchList__filter--all {
    width: 100%;
  }
  .boardsOfDirectors__row {
    width: 60%;
    margin: 0 -1rem;
  }
  .boardsOfDirectors__col {
    padding: 0 1rem;
  }
  .boardsOfDirectors__textBox {
    width: 80%;
  }
  .boardsOfDirectors__title {
    margin-bottom: 2rem;
    font-size: 3.6rem;
    line-height: 4rem;
  }
  .boardsOfDirectors__row {
    width: 60%;
    margin: 0 -1rem;
  }
  .boardsOfDirectors__col {
    padding: 0 1rem;
  }
  .boardsOfDirectors__textBox {
    width: 80%;
  }
  .boardsOfDirectors__title {
    margin-bottom: 2rem;
    font-size: 3.6rem;
    line-height: 4rem;
  }
  .featuresSliderFifa__leftPadding {
    padding-left: 3rem !important;
  }
  html[dir=rtl] .featuresSliderFifa__leftPadding {
    padding-left: unset !important;
    padding-right: 3rem !important;
  }
  .featuresSliderFifa__title {
    margin-top: 0rem;
  }
  .featuresSliderFifa__sliderArrows {
    left: 3rem;
  }
  html[dir=rtl] .featuresSliderFifa__sliderArrows {
    left: unset;
    right: 3rem;
  }
  .headerImageText {
    flex-direction: column;
  }
  .headerImageText__image {
    width: 100%;
    height: unset;
  }
  .headerImageText__imageBox {
    width: 100%;
    height: 30rem;
    transform: none;
    background-size: cover;
    background-attachment: local;
  }
  .headerImageText__video {
    object-fit: contain;
    background-color: black;
  }
  .headerImageText__textBox {
    order: -1;
    width: 100%;
    position: static;
    min-height: unset;
  }
  .imageTextBox__image {
    max-height: 30rem;
  }
  .keepInTouch {
    grid-template-columns: 1fr;
  }
  .organizationChart {
    overflow: scroll;
  }
  .personalData__textBox {
    padding: 3rem;
  }
  .personalData__name {
    margin-bottom: 1rem;
    font-size: 3rem;
  }
  .personalData__position {
    margin-bottom: 1.8rem;
    font-size: 1.5rem;
  }
  .personalData__text {
    font-size: 1.5rem;
  }
  .personalMessage__card {
    flex-direction: column;
  }
  .personalMessage__imageBox {
    width: 100%;
  }
  .personalMessage__image--desktop {
    display: none;
  }
  .personalMessage__image--mobile {
    display: block;
  }
  .personalMessage__textBox {
    width: 100%;
    padding: 6rem 5rem;
  }
  .personalMessage__text {
    max-width: unset;
  }
  .welcomeToGwc__subtitle {
    font-size: 1.6rem;
  }
  .welcomeToGwc__imageRow {
    flex-direction: column;
    align-items: flex-start;
  }
  .welcomeToGwc__imageBox {
    order: 1;
  }
  .welcomeToGwc__imageText {
    font-size: 1.6rem;
  }
  .welcomeToGwc__rowTextBox {
    padding: 0 0 3rem;
  }
  .welcomeToGwc__textBox {
    font-size: 1.6rem;
  }
  .welcomeToGwc__quoteBox {
    padding: 6rem;
    background-position: top 1rem left 3rem, right 5.5rem bottom 1rem;
  }
}
@media (max-height: 910px) {
  .headingSlider__slide {
    min-height: 56rem;
  }
}
@media (max-width: 768px) {
  .sliderArrow {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
  .commonArrows__arrow {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
  .banner__closeLine {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.4rem;
    background-color: #FFFFFF;
    border-radius: 20px;
  }
  .banner {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 3.8rem 1rem 2.4rem;
    text-align: center;
    position: fixed;
    bottom: 0;
  }
  .banner__title {
    margin-bottom: 18px;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }
  .banner__button.button {
    flex: 1 1 10rem;
    max-width: 19rem;
    font-size: 1.6rem;
    padding: 14px 25px;
    margin-left: auto;
    margin-right: auto;
  }
  .button--minimized span {
    display: inline-block;
    padding: 0 1rem;
  }
  .button--outline {
    padding: 0.7rem 1rem 0.7rem 2rem;
    font-size: 1.4rem;
  }
  html[dir=rtl] .button--outline {
    padding: 0.7rem 2rem 0.7rem 1rem;
  }
  .button--outline .icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 1rem;
    font-size: 1.2rem;
  }
  html[dir=rtl] .button--outline .icon {
    margin-left: 0;
    margin-right: 1rem;
  }
  .button--outline-white {
    padding: 0.7rem 1rem 0.7rem 2rem;
    font-size: 1.4rem;
  }
  html[dir=rtl] .button--outline-white {
    padding: 0.7rem 2rem 0.7rem 1rem;
  }
  .button--outline-white .icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 1rem;
    font-size: 1.2rem;
  }
  html[dir=rtl] .button--outline-white .icon {
    margin-left: 0;
    margin-right: 1rem;
  }
  .button--blue {
    padding: 0.7rem 1rem 0.7rem 2rem;
    font-size: 1.4rem;
  }
  html[dir=rtl] .button--blue {
    padding: 0.7rem 2rem 0.7rem 1rem;
  }
  .button--blue .icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 1rem;
    font-size: 1.2rem;
  }
  html[dir=rtl] .button--blue .icon {
    margin-left: 0;
    margin-right: 1rem;
  }
  .button--green {
    padding: 0.7rem 1rem 0.7rem 2rem;
    font-size: 1.4rem;
  }
  html[dir=rtl] .button--green {
    padding: 0.7rem 2rem 0.7rem 1rem;
  }
  .button--green .icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 1rem;
    font-size: 1.2rem;
  }
  html[dir=rtl] .button--green .icon {
    margin-left: 0;
    margin-right: 1rem;
  }
  .inputWrapper {
    margin-bottom: 2rem;
  }
  .progressbar__title, .progressbar__digit {
    font-size: 1.6rem;
  }
  .progressbar__subtitle {
    font-size: 1.4rem;
  }
  .youtube__playButton {
    width: 8rem;
    height: 8rem;
  }
  .youtube__playButtonIcon {
    width: 4rem;
    height: 4rem;
  }
  .youtube__playButton:hover:after {
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
  }
  .youtube__playButton:hover:before {
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
  }
  .fifa__h3 {
    font-size: 2.8rem;
  }
  .fifa__titleText {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .fifa__balls {
    display: none;
  }
  .fifa__dotsCustom {
    display: none;
  }
  .fifa__dots {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 2fr 1fr;
  }
  .footer__menu {
    flex-direction: column;
  }
  .footerFifa__grid {
    grid-template-columns: 1fr;
  }
  .footerFifa .footer__col--4 {
    justify-self: stretch;
  }
  .footerFifa__copyrightRow {
    font-size: 0.9rem;
  }
  .footerFifa__copyrightColumn {
    margin: -3px;
  }
  .footerFifa__copyrightColumn > * {
    margin: 3px;
  }
  .footerFifa .social {
    max-width: 100%;
  }
  .headerFifa__column {
    padding-top: 4rem;
  }
  .headerFifa__title {
    font-size: 2.8rem;
  }
  .headerFifa__title sup {
    vertical-align: text-top;
    font-size: 1.6rem;
  }
  .headerFifa__subtitle {
    font-size: 1.4rem;
  }
  .headerFifa__scrollDown {
    margin-top: 6rem;
  }
  .headerFifa__counter {
    margin-top: 4rem;
    text-align: center;
  }
  .headerFifa__counterTitle {
    font-size: 2rem;
  }
  .headerFifa__counterText {
    font-size: 1.8rem;
  }
  .headerInnerAltFifa__title {
    font-size: 4rem;
  }
  .headerInnerAltFifa__subtitle {
    font-size: 1.4rem;
  }
  .headerInnerAltFifa__column {
    padding-bottom: 10rem;
  }
  .headerInnerFifa__card {
    padding-left: 3rem;
    width: 90%;
  }
  .headerInnerFifa__title {
    font-size: 2.4rem;
  }
  .headerInnerFifa__title sup {
    vertical-align: text-top;
    font-size: 1.6rem;
  }
  .single__fifaContent {
    max-width: 90%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .announcement--annualReport .announcement__box, .announcement--boardCharter .announcement__box {
    flex-wrap: wrap;
    padding: 2rem;
  }
  .announcement--boardCharter .announcement__title {
    font-size: 2rem;
  }
  .announcement__file {
    margin-top: 1rem;
  }
  .border {
    margin-bottom: 3rem;
    margin-top: 3rem;
    background-color: transparent;
  }
  .directorPopup {
    flex-direction: column;
  }
  .directorPopup__imageBox {
    width: 100%;
    height: 45%;
    transform: translate(-100%, 0);
  }
  .directorPopup--active .directorPopup__imageBox {
    transform: translate(0%, 0);
  }
  .directorPopup__close {
    top: 2.2rem;
    left: 2.2rem;
  }
  html[dir=rtl] .directorPopup__close {
    right: 2.2rem;
    left: 0;
  }
  .directorPopup__textBox {
    width: 100%;
    height: 55%;
    padding: 2rem;
    transform: translate(100%, 0);
  }
  .directorPopup--active .directorPopup__textBox {
    transform: translate(0%, 0);
  }
  .filtersDropdown {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .filtersDropdown__button {
    width: 100%;
  }
  .navbar__topMenu {
    display: none;
  }
  .navbar__bottomRow {
    justify-content: space-between;
  }
  .navbar__bottomMenu {
    display: none;
  }
  .navbarFifa__topMenu {
    display: block;
  }
  .navbarFifa .navbar__button {
    display: none;
  }
  .navbarFifa .navbarFifa__logo {
    max-width: 180px;
  }
  .newsItem {
    width: 100%;
  }
  .searchTile__textBox {
    max-width: calc(100% - 9.6rem);
  }
  .sidebar--fixed {
    position: static;
    width: 100%;
  }
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section__title {
    font-size: 3rem;
  }
  .section__paragraph {
    font-size: 1.8rem;
  }
  .section__circle {
    width: 80vw;
    height: 80vw;
  }
  .visualResults .section__circle {
    width: 87vw;
    height: 87vw;
  }
  .announcements__item {
    width: 100%;
  }
  .brandsSlider__title {
    margin-bottom: 5rem;
  }
  .brandsSlider__buttons {
    margin-top: 4rem;
  }
  .commonSection__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .commonSection__contentColumn {
    order: -1;
  }
  .commonSection__imageColumn {
    order: -1;
  }
  .commonSection__imageColumn img {
    height: auto;
  }
  .commonSection .decor {
    display: none;
  }
  .contacts__formCard {
    padding: 2rem;
    margin-right: 0;
  }
  html[dir=rtl] .contacts__formCard {
    margin-left: 0;
  }
  .contacts__formCouple .contacts__contentColumnHeaderTitle {
    font-size: 3rem;
  }
  .contacts__circle {
    opacity: 0.5;
  }
  .contentOffers {
    padding-top: 0;
  }
  .contentOffers__row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contentOffers__content {
    font-size: 1.7rem;
  }
  .contentOffers__card {
    width: 4rem;
  }
  .contentOffers__card img {
    height: auto;
  }
  .downloadSection {
    margin: 7rem 0;
  }
  .downloadSection__title--bold {
    font-size: 2.4rem;
  }
  .downloadSection--withBorder, .downloadSection--prefooter {
    margin-top: 5rem;
    padding-top: 5rem;
    margin-bottom: 0;
  }
  .downloadSection--withBorder .downloadSection__title, .downloadSection--prefooter .downloadSection__title {
    font-size: 1.7rem;
  }
  .downloadSection--hideOnMobile {
    display: none;
  }
  .downloadSection--common {
    margin-top: 4rem;
    margin-bottom: 0;
  }
  .downloadSection--common .downloadSection__title {
    font-size: 2.4rem;
  }
  .faq__title {
    margin-bottom: 3rem;
  }
  .faq__item {
    font-size: 1.7rem;
  }
  .faq__itemTitle {
    margin-bottom: 0.5rem;
  }
  .faq__moreButton {
    margin-top: 4rem;
  }
  .faq {
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-top: none;
  }
  .faq--prefooter {
    padding-top: 0;
  }
  .getInTouchFifa {
    min-height: 28rem;
  }
  html[dir=rtl] .getInTouchFifa__cover {
    left: 0;
    right: 0;
  }
  .getInTouchFifa__sectionForm {
    margin: 0;
    padding: 4rem 3rem;
  }
  .getInTouchFifa__section {
    padding: 6rem 0;
  }
  .getInTouchFifa__sectionRow {
    grid-template-columns: 1fr;
  }
  .iconsSection__row {
    justify-content: flex-start;
  }
  .iconsSection__icon {
    width: 10rem;
  }
  .mainFeatures {
    padding-bottom: 7rem;
  }
  .mainFeatures__decorations {
    display: none;
  }
  .mainFeatures__icon {
    width: 3rem;
    height: 3rem;
    margin: auto;
  }
  .mainFeatures__digit {
    font-size: 4.8rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .mainFeatures__text {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
  .map {
    height: 50rem;
  }
  .newsFifa {
    padding-top: 6rem;
  }
  .newsFifa__section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 4rem;
  }
  .newsFifa__row {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .newsFifa__itemBox {
    width: 100%;
    padding: 0;
  }
  .newsFifa__itemBox:hover {
    background-color: unset;
    box-shadow: none;
    transform: none;
  }
  .newsFifa__itemImage {
    display: none;
  }
  .newsFifa__item {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 0;
  }
  .newsFifa__itemTitle {
    font-size: 2.6rem;
  }
  .newsFifa__item:nth-child(odd) {
    border: none;
  }
  html[dir=rtl] .newsFifa__item:nth-child(odd) {
    border: none;
  }
  .newsFifa__buttonMore {
    margin-top: 2rem;
  }
  .newsFifa__inTouch {
    padding-top: 6rem;
    grid-template-columns: 1fr;
  }
  .newsFifa__inTouchTitle {
    font-size: 2.4rem;
  }
  .newsList__options {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsList__optionsBox {
    justify-content: space-between;
    width: 100%;
  }
  .newsList__optionsBox--first {
    z-index: 100;
  }
  .newsList__optionsItem {
    flex-wrap: wrap;
  }
  .newsList__result {
    display: none;
  }
  .newsList__result--mobile {
    display: block;
  }
  .prefooter {
    border-top: none;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .searchList__item {
    width: 100%;
  }
  .smallFeaturesGrid__featureText {
    font-size: 1.6rem;
  }
  .smartPayments__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .smartPayments {
    margin: 0;
  }
  .smartPayments .sectionWithPhoneScreen__badge {
    display: none;
  }
  .team__row {
    display: none;
  }
  .textSectionAltFifa {
    padding-top: 3rem;
  }
  .textSectionAltFifa__row {
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }
  .textSectionAltFifa__balls {
    transform: translate(50%, -50%);
  }
  .textSectionAltFifa__boxed {
    flex-wrap: wrap;
    margin-top: 4rem;
  }
  .textSectionAltFifa__boxedText {
    margin: 0;
    max-width: 100%;
    padding: 3rem;
  }
  .textSectionAltFifa__boxedImage img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .textSectionFifa {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .textSectionFifa__container {
    margin-top: 3rem;
  }
  .textSectionFifa__boxed {
    margin-top: 4rem;
    flex-wrap: wrap;
  }
  .textSectionFifa__boxedText {
    max-width: 100%;
    font-size: 2.4rem;
    padding: 3rem;
  }
  html[dir=rtl] .textSectionFifa__boxedText {
    margin: 0;
  }
  .textSectionFifa__boxedImage img {
    width: 100%;
    height: auto;
    max-width: unset;
    object-fit: cover;
    object-position: bottom;
  }
  .tripleCards__grid {
    grid-template-columns: 1fr;
  }
  .tripleCards__columnContent {
    order: -1;
  }
  .tripleCards__columnCards {
    grid-template-columns: repeat(3, 1fr);
  }
  .tripleCards .columnCards__card {
    border-radius: 6px;
  }
  .tripleCards__decor {
    display: none;
  }
  .withRotatedImage__grid {
    text-align: center;
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .withRotatedImage__imageColumn {
    position: static;
    max-width: 100%;
    margin-top: 5rem;
    margin-left: -7rem;
    margin-bottom: -25rem;
  }
  .withRotatedImage__imageColumn img {
    width: 130%;
    height: auto;
  }
  .withSidebar__sidebar {
    width: 100%;
  }
  .withSidebar__content {
    width: 100%;
    padding-left: unset;
  }
  html[dir=rtl] .withSidebar__content {
    padding-left: unset;
    padding-right: unset;
  }
  .withSidebar__tab {
    font-size: 1.4rem;
    padding: 1.7rem 1.5rem;
  }
  .accordion {
    padding-bottom: 6rem;
  }
  .accordion__image img {
    max-height: 40rem;
  }
  .awards {
    padding-top: 5rem;
  }
  .awards__gradient {
    margin-bottom: 2rem;
  }
  .awards__title {
    font-size: 3.2rem;
    margin-bottom: 4rem;
  }
  .awards__scrollArea {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
  .awards__item:nth-child(odd) .awards__itemContent {
    transform: scale(0.7);
    margin-top: -4rem;
  }
  .awards__itemYear {
    font-size: 15rem;
  }
  .awards__itemContent {
    transform: scale(0.7);
    margin-top: -5.8rem;
  }
  .boardsOfDirectors__row {
    width: auto;
  }
  .boardsOfDirectors__fixed {
    width: 100%;
    height: unset;
    position: static;
    background-color: unset;
  }
  .boardsOfDirectors__textBox {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  html[dir=rtl] .boardsOfDirectors__textBox {
    padding-right: 0;
  }
  .boardsOfDirectors__row {
    width: auto;
  }
  .boardsOfDirectors__fixed {
    display: none;
  }
  .cardAboveImage__card {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .cardAboveImage__title {
    font-size: 2.8rem;
  }
  .cardImage {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .cardImage--left .cardImage__row {
    grid-template-columns: 1fr;
  }
  .cardImage--left .cardImage__image {
    margin: 0;
  }
  .cardImage--left .cardImage__card {
    margin: 0;
  }
  .cardImage--right .cardImage__row {
    grid-template-columns: 1fr;
  }
  .cardImage--right .cardImage__image {
    margin: 0;
    order: -1;
  }
  .cardImage--right .cardImage__card {
    margin: 0;
  }
  .cardImage__image img {
    height: auto;
  }
  .cardImage__card {
    width: 100%;
    padding: 3rem;
  }
  .cardImage__balls--style2 {
    display: none;
  }
  .certificates {
    padding: 6rem 0;
  }
  html[dir=rtl] .certificates__heading {
    margin-right: 0;
  }
  .certificates__heading {
    margin-left: 0;
  }
  .certificates__gradient {
    margin-bottom: 2rem;
  }
  .certificates__title {
    font-size: 3.2rem;
    margin-bottom: 8rem;
  }
  .emptySpace--3 {
    padding-top: 1.5rem;
  }
  .emptySpace--4 {
    padding-top: 2rem;
  }
  .emptySpace--5 {
    padding-top: 2.5rem;
  }
  .emptySpace--6 {
    padding-top: 3rem;
  }
  .emptySpace--7 {
    padding-top: 3.5rem;
  }
  .emptySpace--8 {
    padding-top: 4rem;
  }
  .emptySpace--9 {
    padding-top: 4.5rem;
  }
  .emptySpace--10 {
    padding-top: 5rem;
  }
  .featuresSliderFifa__title {
    font-size: 2.4rem;
  }
  .featuresSliderFifa__sliderFeature {
    min-height: 26rem;
  }
  .featuresSliderFifa__sliderTitle {
    font-size: 1.8rem;
  }
  .floatingNavbar {
    display: none;
  }
  .floatSidebar {
    display: none;
  }
  .getInTouch {
    padding-bottom: 6rem;
  }
  .getInTouch__form {
    margin: 0;
  }
  .getInTouch__formCard {
    padding: 4rem 3rem;
  }
  .getInTouch__row {
    grid-template-columns: 1fr;
  }
  .getMoreParagraph__title {
    font-size: 3.2rem;
  }
  .getMoreParagraph__text {
    font-size: 1.4rem;
  }
  .getMoreParagraph__files {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  html[dir=rtl] .getMoreParagraph__wrapper {
    margin-left: unset;
    margin-right: 0;
  }
  .getMoreParagraph__wrapper {
    margin-left: 0;
  }
  .gwcServices {
    padding: 6rem 0;
  }
  .gwcServices__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .gwcServices__item {
    grid-template-columns: 1fr;
  }
  .gwcServicesSlider__serviceRow {
    justify-content: unset;
  }
  .gwcServicesSlider__arrows {
    display: flex;
  }
  .headerDottedBackground {
    padding: 2rem 0 4rem;
    min-height: unset;
  }
  .headerDottedBackground__gradient {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
  .headerDottedBackground__col {
    width: 100%;
  }
  .headerDottedBackground__title {
    font-size: 3.2rem;
  }
  .headerDottedBackground__textRow {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .headerDottedBackground__text {
    font-size: 1.4rem;
  }
  .headerDottedBackground__card {
    float: left;
  }
  html[dir=rtl] .headerDottedBackground__card {
    float: right;
  }
  .headerImageText__textBox {
    top: 9.6rem;
    padding: 4rem 5rem 5rem;
    background-position: left 2rem bottom 4.8rem;
  }
  .headerImageText__title {
    margin-bottom: 1.2rem;
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
  .headerImageText__text {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .headingSlider__slide {
    align-items: flex-start;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .headingSlider__content {
    max-width: 80%;
  }
  .headingSlider__subtitle {
    font-size: 1.6rem;
  }
  .headingSlider__background--hide, .headingSlider__backgroundMobile--hide {
    display: none;
  }
  .headingSlider__buttons {
    margin: -1rem;
  }
  .headingSlider__button {
    margin: 1rem;
  }
  .headingSlider__sliderPagination {
    bottom: -1rem;
  }
  .headingText {
    margin-top: 6rem;
    margin-bottom: 4rem;
  }
  .headingText__title {
    font-size: 2.8rem;
    max-width: 90%;
  }
  .headingText__text {
    font-size: 2rem;
    max-width: 90%;
  }
  .hoverParagraphs {
    padding: 5rem 0;
  }
  .hoverParagraphs__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hoverParagraphs__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  .hoverParagraphs__text {
    font-size: 1.4rem;
  }
  .iconsRow__box {
    padding: 16px;
    min-height: unset;
  }
  .iconsRow__digit {
    font-size: 3rem;
  }
  .iconsRow__title {
    font-size: 2.2rem;
  }
  .iconsRow__text {
    font-size: 1.6rem;
  }
  .imageTextBox--style2 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .imageTextBox__text {
    font-size: 2rem;
  }
  .imageTextBox__textTitle {
    font-size: 2.8rem;
  }
  .insideGwc {
    padding: 6rem 0;
  }
  .insideGwc__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .insideGwc__item {
    grid-template-columns: 1fr;
  }
  .keepInTouch__links {
    margin: 5px -5px;
  }
  .keepInTouch__link {
    font-size: 1.2rem;
    margin: 5px;
  }
  .keepInTouch__form {
    margin-top: 30px;
  }
  .latestNews__arrow {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
  .latestNews__slider {
    margin: 0;
  }
  .latestNews__slider .swiper-wrapper {
    padding: 0;
  }
  .latestNews__sliderWrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .latestNews__slider .latestNews__slideBody {
    padding-right: 20px;
    padding-left: 20px;
  }
  .latestNewsFifa {
    padding-top: 6rem;
  }
  .latestNewsFifa__balls {
    display: none;
  }
  .latestNewsFifa__section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 4rem;
  }
  .latestNewsFifa__row {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .latestNewsFifa__itemBox {
    width: 100%;
    padding: 0;
  }
  .latestNewsFifa__itemBox:hover {
    background-color: unset;
    box-shadow: none;
    transform: none;
  }
  .latestNewsFifa__itemImage {
    display: none;
  }
  .latestNewsFifa__item {
    border: none;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 0;
  }
  html[dir=rtl] .latestNewsFifa__item {
    border: none;
  }
  .latestNewsFifa__itemTitle {
    font-size: 2.6rem;
  }
  .latestNewsFifa__item:nth-child(odd) {
    border: none;
  }
  html[dir=rtl] .latestNewsFifa__item:nth-child(odd) {
    border: none;
  }
  .leaders__sectionAvatar {
    width: 10rem;
    height: 10rem;
  }
  .leaders__sectionTitle {
    font-size: 2rem;
  }
  .leaders__sectionPosition {
    font-size: 1.2rem;
  }
  .leaders__sectionLink {
    transform: translateY(-100%);
  }
  html[dir=rtl] .leaders__sectionLink {
    transform: translateY(-100%) rotate(180deg);
  }
  .leaders__sectionContent {
    grid-template-columns: 1fr;
  }
  .list {
    font-size: 2rem;
  }
  .list__ul li:before {
    top: 2px;
  }
  .list__ul--5columns li {
    max-width: unset;
    max-height: unset;
  }
  .list__ul {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mediaGallery3Items {
    padding: 3rem 0;
  }
  .mediaGallery3Items__row {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 20px;
  }
  .personalData__card {
    flex-wrap: wrap;
    padding: 4rem 6rem;
  }
  .personalData__image {
    width: 38%;
  }
  .personalData__textBox {
    width: 62%;
    padding: 0 0 0 3rem;
  }
  .personalData__textBox--tablet {
    display: flex;
    width: 100%;
    padding: 3rem 0 0;
  }
  .personalData__name {
    margin-bottom: 1.6rem;
  }
  .personalData__position {
    margin-bottom: 0;
  }
  .personalData__text--desktop {
    display: none;
  }
  .personQuoteWhiteScreen__logo {
    margin-bottom: 1rem;
  }
  .personQuoteWhiteScreen__logoText {
    font-size: 6rem;
  }
  .personQuoteWhiteScreen__logoIcon {
    margin-top: -54px;
    height: 54px;
  }
  .personQuoteWhiteScreen__title {
    font-size: 2.2rem;
  }
  .personQuote__column {
    max-width: 100%;
  }
  .personQuote__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .schematicImage__row {
    grid-template-columns: 1fr;
  }
  .schematicImage__gradient {
    margin-bottom: 2rem;
  }
  .schematicImage__title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .schematicImage__subtitle {
    font-size: 1.4rem;
  }
  .schematicImage__columnScheme {
    margin-top: 0;
  }
  .separator {
    margin-top: 5rem;
    margin-bottom: 2rem;
  }
  .services__coverTitle {
    font-size: 12vw;
  }
  .text {
    font-size: 2rem;
  }
  .textAboveImage__cover {
    right: 0;
  }
  html[dir=rtl] .textAboveImage__cover {
    left: 0;
    right: 0;
  }
  .textFile__title {
    font-size: 2.8rem;
  }
  .textFile__title--big {
    font-size: 3.4rem;
  }
  .textFile__fileCol {
    padding: 0.5rem;
  }
  .titleButton {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .titleButton--red .titleButton__dots--style1 {
    display: none;
  }
  .titleParagraphs {
    padding: 3rem 0;
  }
  .titleParagraphs__gradient {
    margin-bottom: 2rem;
  }
  .titleParagraphs__title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
  .titleParagraphs__columns {
    grid-template-columns: 1fr;
    font-size: 1.4rem;
  }
  .twitterTweets__col {
    width: 100%;
  }
  .welcomeToGwc__title {
    line-height: 4.8rem;
    font-size: 3rem;
  }
  .welcomeToGwc__imageRow {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .welcomeToGwc__image {
    max-width: 100%;
  }
  .welcomeToGwc__textBox--pb0 {
    padding-bottom: 0;
  }
  .welcomeToGwc__quoteBox {
    padding: 4rem;
    background-position: top 0.5rem left 0.5rem, right 0.5rem bottom 0.5rem;
  }
  .welcomeToGwc__quote {
    font-size: 2rem;
    line-height: 1.4;
  }
  .welcomeToGwc__signature {
    margin-right: 0;
    padding-right: 3rem;
  }
  html[dir=rtl] .welcomeToGwc__signature {
    padding-right: 0;
    margin-left: 3rem;
    padding-left: 0;
  }
  .welcomeToGwc__subSignature {
    padding-right: 0;
  }
  html[dir=rtl] .welcomeToGwc__subSignature {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .bigNews {
    flex-direction: column;
  }
  .bigNews__imageCol {
    width: 100%;
    height: 25rem;
  }
  .bigNews__textCol {
    width: 100%;
  }
  .bigNews__textBox {
    width: unset;
  }
  .directorPopup__imageBox {
    height: 40%;
  }
  .directorPopup__textBox {
    height: 60%;
  }
  .gwcFeatures__circle {
    top: -10%;
    left: -20%;
    width: 130vw;
    height: 130vw;
  }
  .gwcFeatures__paragraph {
    margin: auto;
  }
  .gwcFeatures__features {
    justify-content: center;
    margin-top: 40px;
    margin: 0 -10px;
  }
  .gwcFeatures__featuresLogoWrapper {
    flex: 1 1 100%;
    margin-top: 40px;
  }
  .gwcFeatures__featuresLogo {
    margin-left: auto;
    margin-right: auto;
  }
  .gwcFeatures__featuresLogo:after {
    display: none;
  }
  .gwcFeatures__feature:nth-last-child(1) .gwcFeatures__featureBox:before, .gwcFeatures__feature:nth-last-child(2) .gwcFeatures__featureBox:before {
    display: none;
  }
  .gwcFeatures__featureBox {
    background-color: #FFFFFF;
    padding-bottom: 10px;
  }
  .gwcFeatures__featureBox:before {
    content: "";
    position: absolute;
    background-color: #3FAE2A;
    height: 330px;
    width: 2px;
    z-index: -1;
  }
  .gwcServicesSlider__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .keepInTouch__imageColumnText {
    font-size: 5rem;
  }
  .keepInTouch__imageColumn {
    display: none;
  }
  .organizationChart__imageBox {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  #accessibilityBar {
    position: fixed;
    top: initial;
    bottom: 0;
    transform: translateX(100%);
  }

  #accessibilityBar.active {
    transform: translateX(0);
  }

  #accessibilityBar #universalAccessBtn {
    top: initial;
    transform: translateX(-120%);
    bottom: 16px;
    border-radius: 50%;
  }
}
@media (max-width: 480px) {
  .headerInnerFifa__background {
    height: 21rem;
  }
  .directorPopup__imageBox {
    height: 30%;
  }
  .directorPopup__textBox {
    height: 70%;
  }
  .filtersDropdown__button {
    min-width: 20rem;
  }
  .pagination__arrow--prev {
    margin-right: 1rem;
  }
  .pagination__arrow--next {
    margin-left: 1rem;
  }
  .pagination__arrowImage--prev {
    margin-right: 0;
  }
  .pagination__arrowImage--next {
    margin-left: 0;
  }
  .pagination__arrowText {
    display: none;
  }
  .searchform__searchField:focus {
    width: 7rem;
  }
  .searchform__searchField:focus {
    width: 7rem;
  }
  .searchTile {
    align-items: flex-start;
  }
  .searchTile__imageBox {
    width: 8rem;
    height: 8rem;
    margin-right: 1.6rem;
  }
  html[dir=rtl] .searchTile__imageBox {
    margin-right: 0;
    margin-left: 1.6rem;
  }
  .boardsOfDirectors__col {
    width: 100%;
    margin-bottom: 6rem;
  }
  .boardsOfDirectors__col--even {
    transform: unset;
  }
  .boardsOfDirectors__col {
    width: 100%;
    margin-bottom: 6rem;
  }
  .boardsOfDirectors__col--even {
    transform: unset;
  }
  .gwcServicesSlider__service {
    max-width: 100%;
  }
  .headerImageText__textBox {
    padding: 2.5rem 3rem 3rem;
    background-position: left 0.5rem bottom 2.8rem;
  }
  .headerImageText__title {
    font-size: 2.6rem;
    line-height: 3rem;
  }
  .headerImageText__text {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .personalData__card {
    flex-direction: column;
    padding: 2.5rem;
  }
  .personalData__image {
    width: 100%;
  }
  .personalData__textBox {
    width: 100%;
    padding: 3rem 0 1rem;
  }
  .personalData__textBox--tablet {
    display: none;
  }
  .personalData__position {
    margin-bottom: 3rem;
  }
  .personalData__text--desktop {
    display: block;
  }
  .personalMessage__header {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
  .personalMessage__textBox {
    padding: 3rem 2.5rem;
  }
  .personalMessage__title {
    font-size: 2.8rem;
    line-height: 2.8rem;
  }
  .services__service {
    max-width: 100%;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
@media (max-width: 360px) {
  .headerDottedBackground__cardTitle {
    line-height: 1.5;
  }
}
@media (min-width: 601px) {
  .gwcFeatures__featuresLogoLine {
    display: none;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }

  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }

  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }

  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }

  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }

  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }

  .gslide-image img.zoomable {
    cursor: zoom-in;
  }

  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }

  .gslide-inline {
    max-height: 95vh;
  }

  .gslide-external {
    max-height: 100vh;
  }

  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }

  .glightbox-open {
    height: auto;
  }

  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }

  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }

  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }

  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }

  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  .glightbox-clean .gprev {
    top: 45%;
  }

  .glightbox-clean .gnext {
    top: 45%;
  }
  .menuIcon {
    display: none;
  }
  .brandsSlider__pagination {
    display: none;
  }
  .team__mobileWrapper {
    display: none;
  }
  .headingSlider__backgroundMobile {
    display: none;
  }
  .hoverParagraphs__item:not(:first-child) .hoverParagraphs__title {
    color: #B5B5B5;
  }
  .hoverParagraphs__item:not(:first-child) .hoverParagraphs__text {
    transform: translateY(-4rem);
  }
  .hoverParagraphs__item:not(:first-child) .hoverParagraphs__gradient {
    width: 0;
  }
  .hoverParagraphs__item:not(:first-child) .hoverParagraphs__hoverContent {
    opacity: 0;
  }
  .hoverParagraphs__item:hover .hoverParagraphs__title {
    color: #3FAE2A;
  }
  .hoverParagraphs__item:hover .hoverParagraphs__gradient {
    width: 80px;
  }
  .hoverParagraphs__item:hover .hoverParagraphs__text {
    transform: translateY(0);
  }
  .hoverParagraphs__item:hover .hoverParagraphs__hoverContent {
    opacity: 1;
  }
  .latestNews__slider .latestNews__slide:hover {
    transform: translateY(-10px);
    box-shadow: -2px 2px 20px 0px rgba(44, 44, 44, 0.2);
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media (min-width: 1599px) {
  .headerInnerAltFifa__form {
    right: 15vw;
  }
  html[dir=rtl] .headerInnerAltFifa__form {
    right: unset;
    left: 15vw;
  }
  .certificates__slider {
    padding-left: 15vw;
  }
  html[dir=rtl] .certificates__slider {
    padding-left: unset;
    padding-right: 15vw;
  }
  .sharePrintButtons__column {
    transform: translateY(85%) translateX(150%);
  }
}
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJwdWJsaWMvYnVpbGQvY3NzL3N0eWxlcy5jc3MiLCJzb3VyY2VSb290IjoiIn0=*/