@font-face {font-family: "Ogg";
  src: url("/assets/fonts/2596224269750e00c3ad5356299a3b9f.eot"); /* IE9*/
  src: url("/assets/fonts/2596224269750e00c3ad5356299a3b9f.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("/assets/fonts/2596224269750e00c3ad5356299a3b9f.woff2") format("woff2"), /* chrome firefox */
  url("/assets/fonts/2596224269750e00c3ad5356299a3b9f.woff") format("woff"), /* chrome firefox */
  url("/assets/fonts/2596224269750e00c3ad5356299a3b9f.ttf") format("truetype"), /* chrome firefox opera Safari, Android, iOS 4.2+*/
  url("/assets/fonts/2596224269750e00c3ad5356299a3b9f.svg#Ogg") format("svg"); /* iOS 4.1- */
}

:root {
  --containerWidth: 1920px;
  --contentWidth: 1200px;
  --gutter: 1rem;

  --openSans: 'Open Sans', sans-serif;
  --ogg: 'Ogg';

  --white: #ffffff;
  --black: #000000;
  --black2: #191919;
  --grey: #F1F1F1;
  --grey2: #979797;
  --grey3: #5F5E5E;
  --yellow: #FFED4E;
  --blu: #A6E4F8;
}
body {
  font-family: var(--openSans);
  font-weight: 400;
  color: var(--black2);
}
.ogg {
  font-family: var(--ogg);
}
strong {
  font-weight: 700;
}
body * {
  box-sizing: border-box;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
h1 {
  font-size: 3.5rem;
  line-height: 1.125;
}
h2 {
  font-size: 3.9375rem;
  line-height: 1.125;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.5;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}
h1, h2 {
  font-family: var(--ogg);
  font-weight: 400;
}
h1 strong, h2 strong {
  font-family: var(--openSans);
  font-weight: 700;
}
h2 strong {
  font-weight: 700;
}
h2 {
  --circleHeight: 17.125rem;
  min-height: var(--circleHeight);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.content-int h2::before {
  content: "";
  width: var(--circleHeight);
  height: var(--circleHeight);
  background-color: var(--blu);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
p {
  line-height: 1.5625;
  margin-bottom: 1.5625rem;
}
a {
  color: inherit;
}
.container {
  max-width: var(--containerWidth);
  margin-left: auto;
  margin-right: auto;
}
.content {
  max-width: var(--contentWidth);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}
.bg-white {
  background-color: var(--white);
}
.bg-grey {
  background-color: var(--grey);
}
.nav {
  height: 6.25rem;
  display: flex;
  align-items: center;
}
.nav .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav a {
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}
.nav img {
  display: inline-block;
}
.logo {
  max-width: 5.125rem;
  display: inline-block;
}
.ico-arrow {
  width: 15px;
  height: 12px;
}
.ico-share {
  width: 20px;
  height: 19.67px;
}
.ico-home {
  width: 16px;
  height: 16px;
}
.divider {
  width: 1px;
  height: 26px;
  background-color: var(--grey2);
  margin: 0 28px;
  display: block;
}
.menu {
  display: flex;
  align-items: center;
}
.footer {
  font-size: .875rem;
  line-height: 1.85;
  color: var(--grey3);
  background-color: var(--black2);
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.footer a {
  text-decoration: none;
}
.footer p {
  line-height: 1.85;
  margin-bottom: 0;
}
.footer p span {
  color: var(--yellow);
}
.footer ul {
  --circleWidth: 5px;
}
.footer ul li {
  padding-left: calc(var(--circleWidth) + 4px);
  margin-right: calc(var(--circleWidth) * 2);
  position: relative;
}
.footer ul li::before {
  content: "";
  width: var(--circleWidth);
  height: var(--circleWidth);
  background-color: var(--yellow);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
}
.hero picture,
.hero img {
  width: 100%;
}
.hero:first-of-type + div .content {
  position: relative;
}
.content-int {
  max-width: 100%;
  padding-top: 6.5%;
  padding-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.hero:first-of-type + .bg-grey .content-int {
  padding-bottom: 2rem;
}
.hor-divider {
  width: 100%;
  height: 1px;
  background-color: var(--grey2);
  margin: 4% 0 3%;
  display: block;
}
.map-wrapper {
  margin-top: 3rem;
}
.map-wrapper > div:first-child {
  padding: 1.25rem;
}
.map-wrapper > .map img {
  width: 100%;
}
.map-wrapper h4 {
  margin-top: 2rem;
}
.map-wrapper p {
  line-height: 1.5;
}
.map-wrapper a {
  text-decoration: none;
}
.ico-wrapper {
  display: flex;
}
.ico-wrapper > * {
  flex: 1;
}
.ico-contact {
  border: 1px solid #6f7880;
  border-radius: .375rem;
  padding: .5rem .25rem;
}
.ico-contact + .ico-contact {
  margin-left: .375rem;
}
.content-int h2 + p {
  margin-top: 1.5rem;
}
.content-int ul li {
  padding-left: 1.75rem;
  margin-bottom: 1.5625rem;
  position: relative;
}
.content-int ul li::before {
  content: "";
  width: .25rem;
  height: .25rem;
  background-color: var(--black2);
  border-radius: 50%;
  position: absolute;
  top: .5rem;
  left: .5rem;
}
.btn {
  width: 23.75rem;
  max-width: 100%;
  height: 3.5rem;
  line-height: 1.75rem;
  text-decoration: none;
  color: var(--white);
  background-color: var(--black2);
  border-radius: .375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.6875rem;
}
.btn .ico-arrow {
  margin-left: 2.75rem;
}
.ico-right {
  transform: rotate(180deg);
}
@media (max-width: 767.98px) {
  .desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  :root {
    --gutter: .625rem;
  }
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4.9375rem;
  }
  .logo {
    max-width: 15.125rem;
  }
  .ico-share {
    width: 16.67px;
    height: 16.39px;
  }
  .mobile {
    display: none;
  }
  .divider {
    height: 53px;
    margin: 0 50px;
  }
  .footer {
    padding-top: 2.625rem;
    padding-bottom: 3.0625rem;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .hero:first-of-type + div {
    margin-top: -11%;
  }
  .content-int {
    padding-left: 7.75%;
    padding-right: 7.75%;
    padding-bottom: 5.625rem;
  }
  .map-wrapper {
    display: flex;
  }
  .map-wrapper > div:first-child {
    width: calc(100% / 3);
  }
  .map-wrapper > .map {
    width: calc(100% / 3 * 2);
    padding-left: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  .footer p {
    margin-top: 1.25rem;
  }
}
@media (min-width: 992px) {
  .footer {
    display: flex;
    justify-content: space-between;
  }
  .footer p {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .footer ul {
    display: flex;
  }
}
@media screen AND (min-width: 768px)
{
  .logo img{
    max-height: 6.25rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}

.wrapper-semitiche {
  direction: rtl;
}
