/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #6695c3;
  --color-secondary: #f85a40;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.slogan {
  font-style: italic;
  font-size: 28px;
  color: #008000;
  text-align: center;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: #2450A3;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #48b7d8;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #2450A3;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: var(--color-primary);
  /* background-image: radial-gradient(circle at top right,#00ffd8 0%,#0029e2 100%)!important; */
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 63px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: var(--color-primary);
  padding: 60px 0 0 0;
}


.hero h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 30px;
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.hero .icon-boxes {
  /* padding-bottom: 60px; */
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /*height: calc(50% + 20px); */
    background-color: #fff;
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: #48b7d8;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.hero .icon-box:hover {
  background: #2450A3;
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-primary);
  padding: 20px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

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

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}


/* ------------------------------------- */
/* New */
/* ------------------------------------- */

#topbar {
  overflow: unset;
}
#langage-selector .dropdown-menu {
  min-width: 70px !important;
}

.hero_bg_wrap {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero_frame_bg {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-picture, #img-hero-picture {
  width: 100%;
}

#striped-band {
  background-image: linear-gradient(180deg,#3cd1ff 0%,#1ca5ff 100%)!important;
  border-radius: 8px;
  box-shadow: 0px 45px 135px -45px rgba(28,165,255,0.76);
  margin-bottom: 100px;
}

#choose-gdpr {
  background-size: contain;
  background-position: left top;
  /* background-image: url(https://zaib.sandbox.etdevs.com/divi/wp-content/uploads/sites/2/2020/06/robotics-12.png),linear-gradient(180deg,#001b56 0%,#2450A3 100%)!important; */
  background-image:
  linear-gradient(
          180deg,
          #001b56 0%,
          #2450A3 100%
  )
  !important;
  background-repeat: no-repeat;

  /* padding-right: 10vw; */
  margin-bottom: 100px;
  margin-left: auto !important;
  margin-right: 0px !important;
  width: 100%;
}

#choose-gdpr-heading-wrapper {
  padding: 2% 0;
  width: 80%;
  /* max-width: 1080px; */
  max-width: 980px;
  margin: auto;
  position: relative
}

.criteria-link {
  color: white;
}

.criteria-link:hover {
  color: #00b6a1;
}

.obtain-gdpr-wrapper {
  background-color: #d8e7ff;
  border-radius: 15px;
  margin-bottom: 100px;
}

.obtain-gdpr-h2, .online-resources-h2 {
  font-weight: 600;
}

#gdpr-benefits, #faq-gdpr {
  background-color: #f7f8f9;
}

#gdpr-benefits .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

#gdpr-benefits .icon-box:hover {
  border-bottom: 8px solid #2450A3;
}

#gdpr-benefits .icon-box .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: #0a53be;
  font-weight: 400;
}

.icon-box .description {
  line-height: 28px;
}

.faq-gdpr-h2 {
  /* text-transform: uppercase; */
  font-weight: 700;
  color: #37517e;
}

.accordion-button.collapsed {
  color: #47b2e4 !important;
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  color: #495057 !important;
}

.hero-main-picture {
  justify-content: flex-end;
}

#img-hero-picture, #img-hero-picture-mobile {
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}

.striped-band-h1 {
  font-weight: 700;
}

.choose-gdpr-band {
  background-image: url('../img/gdpr_band.jpg');
  background-size: cover;
  background-position: center;
  height: 200px;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 20px;
  border-radius: 4px;
}

#langage-selector ul.dropdown-menu {
  transform: translate3d(19px, 45.6px, 0px) !important;
}

#dropdownMenuButton1.dropdown-toggle::after {
  color: white;
}


/* ------------------------------------------------------------ */
/*                        Before Laptop                         */
/* ------------------------------------------------------------ */

@media (max-width: 1199px) {
  .hero h2 {
    font-size: 25px;
  }

  #choose-gdpr {
    background: linear-gradient(180deg,#001b56 0%,#2450A3 100%)!important;
    margin-left: 0 !important;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
  }

  .img-about-gdpr-compliance {
    width: 300px;
    float: left;
    margin: 0 15px 10px 0;
  }

  .img-gdpr-links {
    width: 300px;
    height: auto;
    float: right;
    margin: 0 0 20px 20px;
    border-radius: 4px;
  }
}



/* --------------------------------------------- */
/* ----------- iPhone 6, 6S, 7 and 8 ----------- */
/* --------------------------------------------- */

/* Portrait and Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 667px)
/* and (-webkit-min-device-pixel-ratio: 2) */ {

}

/* Portrait */
@media only screen and (min-device-width: 320px) and (max-device-width: 667px) and (orientation: portrait) {

}

/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {

}


/* ------------------------------------------ */
/* ----------- until iPhone X --------------- */
/* ------------------------------------------ */

/* Portrait and Landscape until iPhone X */
@media only screen and (min-device-width: 320px) and (max-device-width: 932px)
/* and (-webkit-min-device-pixel-ratio: 3) */ {
  #header h1 {
    font-size: 24px;
  }

  .hero-main-picture {
    margin-top: 0;
  }

  .hero_content {
    margin-top: 25px;
  }

  .hero_content h2 {
    font-weight: 600;
  }

  .hero-intro-text {
    font-size: 18px;
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero .icon-boxes {
    padding-bottom: 30px;
  }

  .hero .icon-box {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero .icon-box .title {
    font-size: 20px;
    font-weight: 500;
  }

  section#about {
    padding: 40px 20px 30px;
  }

  .img-about-gdpr-compliance {
    width: 100%;
    margin-bottom: 35px;
  }

  .about-content-text {
    text-align: justify;
    font-size: 16px !important;
  }

  #striped-band {
    border-radius: 0;
    margin-left: 10px;
    margin-right: 10px;
    width: unset;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
  }

  .striped-band-h1 {
    font-weight: 600;
  }

  .striped-band-p {
    font-size: 18px !important;
  }

  .striped-band-h1, .striped-band-p {
    text-align: center;
  }

  .btn-striped {
    font-size: 16px;
  }

  #choose-gdpr {
    background: linear-gradient(180deg,#001b56 0%,#2450A3 100%)!important;
    margin-left: 0 !important;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }

  #choose-gdpr-heading-wrapper {
    width: 100%;
  }

  .choose-gdpr-bloc {
    text-align: center;
  }

  .choose-gdpr-p {
    font-size: 17px !important;
  }

  #obtain-gdpr {
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }

  #gdpr-investment {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .gdpr-investment-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  #gdpr-benefits {
    padding-top: 50px;
  }

  .gdpr-benefits-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .img-gdpr-links {
    height: 50px;
    width: auto;
    float: left;
    margin: 0 10px 10px 0;
  }

  #online-resources {
    padding-bottom: 40px;
  }

  .official-schemes p {
    font-size: 16px !important;
  }

  #faq-gdpr {
    margin-top: 40px;
  }

  .accordion-button .h4 {
    font-size: 18px;
  }

  .page-credit {
    font-size: 12px;
    padding-bottom: 15px;
  }

  .copyright {
    font-size: 12px;
  }

}

/* Portrait until iPhone X */
@media only screen and (min-device-width: 320px) and (max-device-width: 932px)
/* and (-webkit-min-device-pixel-ratio: 3) */
and (orientation: portrait) {

}

/* Landscape until iPhone X */
@media only screen and (min-device-width: 320px) and (max-device-width: 932px)
/* and (-webkit-min-device-pixel-ratio: 3) */
and (orientation: landscape) {
  #gdpr-benefits .icon-box {
    width: 100%;
  }
}


/* ----------- iPad Mini ----------- */

/* Portrait and Landscape iPad Mini */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px)
/* and (-webkit-min-device-pixel-ratio: 2) */ {
  .img-about-gdpr-compliance {
    width: 300px;
    float: left;
    margin: 0 15px 10px 0;
  }

  #striped-band {
    margin: 0 auto;
    margin-bottom: 50px;
  }

  #choose-gdpr {
    margin-bottom: 40px;
  }

  .gdpr-investment-img-wrapper {
    text-align: center;
  }

  .gdpr-investment-img-wrapper img {
    width: 300px;
  }

  .official-schemes img {
    width: 200px;
    height: auto;
    float: left;
    margin: 0 15px 10px 0;
  }

  #choose-gdpr {
    background: linear-gradient(180deg,#001b56 0%,#2450A3 100%)!important;
    margin-left: 0 !important;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
  }

  #choose-gdpr-heading-wrapper {
    width: 100%;
  }
}

/* Portrait iPad Mini */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait)
/* and (-webkit-min-device-pixel-ratio: 2) */ {

}

/* Landscape iPad Mini */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape)
/* and (-webkit-min-device-pixel-ratio: 2) */ {
  .hero-btn-wrapper.justify-content-lg-start {
    justify-content: center !important;
  }

  .gdpr-investment-img-wrapper {
    text-align: center;
  }

  .gdpr-investment-img-wrapper img {
    width: 300px;
  }
}


/* ----------- iPad Air ----------- */

/* Portrait and Landscape iPad Air */
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px)
/* and (-webkit-min-device-pixel-ratio: 2) */ {
  #choose-gdpr {
    background: linear-gradient(180deg,#001b56 0%,#2450A3 100%)!important;
    margin-left: 0 !important;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
  }

  #choose-gdpr {
    margin-bottom: 50px;
  }
}

/* Portrait iPad Air */
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: portrait)
/* and (-webkit-min-device-pixel-ratio: 2) */ {

}

/* Landscape iPad Air */
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape)
/* and (-webkit-min-device-pixel-ratio: 2) */ {

}



/* ----------- iPad Pro + Surface Pro ----------- */

/* Portrait and Landscape iPad Pro + Surface Pro */
@media only screen and (min-device-width: 920px) and (max-device-width: 1366px)
/* and (-webkit-min-device-pixel-ratio: 2) */ {

}

/* Portrait iPad Pro + Surface Pro */
@media only screen and (min-device-width: 920px) and (max-device-width: 1366px) and (orientation: portrait)
/* and (-webkit-min-device-pixel-ratio: 2) */ {

}

/* Landscape iPad Pro + Surface Pro */
@media only screen and (min-device-width: 920px) and (max-device-width: 1366px) and (orientation: landscape)
/* and (-webkit-min-device-pixel-ratio: 2) */ {

}



/* ------------------------------------------------------------------- */
/*                        Medium Laptop + PC                           */
/* ------------------------------------------------------------------- */

@media (min-width: 1200px) {

  .hero h2 {
    font-size: 48px;
  }

  .img-about-gdpr-compliance {
    width: 500px;
    float: right;
    margin: 0 0 20px 20px;
  }

  .img-gdpr-links {
    width: 300px;
    height: auto;
    float: right;
    margin: 0 0 20px 20px;
    border-radius: 4px;
  }

  .obtain-gdpr-wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }

  .obtain-gdpr, .gdpr-investment-text {
    font-size: 20px;
  }

  #faq-accordion .accordion-body {
    font-size: 18px;
    letter-spacing: 0.5px;
    padding-bottom: 30px;
  }

  #img-hero-picture, #img-hero-picture-mobile {
    height: auto;
    max-height: 300px
  }

}
/*                        Fin Medium Laptop + PC                           */
/* ----------------------------------------------------------------------- */


/* ------------------------------------------------------------------- */
/*                        Large Laptop + PC                           */
/* ------------------------------------------------------------------- */
@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}
/*                        Fin Large Laptop + PC                           */
/* ---------------------------------------------------------------------- */
