@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
  margin: 0;
  padding: 0;
}
input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  padding: 7px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  margin-left: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.gdpr-main * {
  box-sizing: border-box;
  font-family: Roboto;
}
.gdpr-main p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  color: #131212;
  width: 100%;
}
.gdpr-main p strong,
.gdpr-main p b {
  font-weight: 700;
}
.gdpr-main a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.gdpr-main h1,
.gdpr-main h2,
.gdpr-main h3,
.gdpr-main h4 {
  margin: 0;
}
.gdpr-main h2 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}
.gdpr-main ul,
.gdpr-main li {
  padding: 0;
  margin: 0;
  color: #131212;
}
.gdpr-main .container {
  width: 100%;
}
.gdpr-main .flex-container {
  display: flex;
  margin: auto;
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes private-img {
  0% {
    transform: rotate(90deg) scale(1);
  }
  50% {
    transform: rotate(0deg) scale(1.02);
  }
  100% {
    transform: rotate(90deg) scale(1);
  }
}
@keyframes circleMover {
  from {
    transform: rotate(0deg) translate(-20px, 10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate(-20px, 10px) rotate(-360deg);
  }
}
@keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(2px);
  }
}
@keyframes faq {
  0% {
    transform: translate(30px) rotate(0deg);
  }
  50% {
    transform: translate(-30px) rotate(180deg);
  }
  100% {
    transform: translate(30px) rotate(360deg);
  }
}
@keyframes move {
  0% {
    transform: translate(0px);
  }
  50% {
    transform: translate(180px);
  }
  80% {
    transform: rotate(40deg);
  }
  100% {
    transform: translate(0px);
  }
}
.gdpr-main .form {
  display: flex;
  flex-direction: column;
}
.gdpr-main .form .main-input {
  display: flex;
  flex-direction: column;
}
.gdpr-main .form .main-input .input-container {
  display: flex;
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}
.gdpr-main .form .main-input .input-container .input-field,
.gdpr-main .form .main-input .input-container textarea {
  width: 100%;
  border: none;
  padding: 0.5rem;
  outline: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  color: #000000;
  overflow: auto;
  border-radius: 5px;
}
.gdpr-main .form .main-input .input-container textarea {
  resize: none;
  height: 75px;
}
.gdpr-main .form .main-input .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #95989A;
}   

.gdpr-main .form .main-input .input-container :-ms-input-placeholder { 
  /* IE 10+ */
  color: #95989A;
   }

   .gdpr-main .form .main-input .input-error  {
     border: 1px solid red;
     border-radius: 5px;
   }
.gdpr-main .form .main-input .input-error :-ms-input-placeholder{
  color: red;
}

.gdpr-main .form .main-input .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.gdpr-main .form .form-consent {
  display: flex;
  color: #FFF;
  font-size: 11px;
  margin-bottom: 0.4rem;
}
.gdpr-main .form .form-consent label {
  margin-left: 0.3rem;
  width: 90%;
  display: flex;
  align-items: center;
}
.gdpr-main .form .form-consent p {
  color: #FFF;
  line-height: 1.4;
  font-size: 11px;
}
.gdpr-main .form .form-consent a {
  color: #FF8000;
  font-weight: bold;
}
.gdpr-main .form .form-consent:last-child {
  margin-bottom: 0;
}
.gdpr-main .form .consent-error {
  margin-bottom: 0.5rem;
}
.gdpr-main .form .consent-error p {
  color: red;
  line-height: 1.4;
  font-size: 11px;
}
.gdpr-main .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.gdpr-main .buttons img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.gdpr-main .buttons .btn-orange,
.gdpr-main .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  text-decoration: none;
  outline: none;
  min-width: 150px;
  border-radius: 7px;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.gdpr-main .buttons .btn-orange::after,
.gdpr-main .buttons .btn-white::after {
  content: "";
  position: absolute;
  background: none repeat scroll 0 0 #CDD0DA;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 100%;
  z-index: -1;
  transition: all 0.3s ease 0s;
  width: 0%;
  border-radius: 50%;
  opacity: 0.5;
  transform: translateX(-50%) translateY(-50%);
}
.gdpr-main .buttons .btn-orange:hover::after,
.gdpr-main .buttons .btn-white:hover::after {
  height: 450%;
  width: 110%;
  opacity: 0.3;
}
.gdpr-main .buttons .btn-orange {
  color: #FFF;
  background-color: #FF8000;
}
.gdpr-main .buttons .btn-white {
  background-color: #FFF;
  color: #000000;
}
.gdpr-main .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.gdpr-main .heading h2 {
  font-size: 22px;
  color: #000000;
  position: relative;
  z-index: 1;
}
.gdpr-main .heading h2::before {
  content: none ;
  background-image: url('/_public/images/gdpr/heading-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  position: absolute;
  top: -13px;
  left: -9px;
  animation: bounce 5s linear infinite;
  z-index: -1;
}
.gdpr-main .center-heading {
  justify-content: center;
  align-items: center;
}
.gdpr-main .center-heading h2 {
  text-align: center;
  width: 100%;
}
.gdpr-main .white-heading {
  justify-content: center;
}
.gdpr-main .white-heading h2 {
  color: #FFF;
}
.gdpr-main .white-heading h2::before {
  background-image: url('/_public/images/gdpr/heading-white.svg');
}
.gdpr-main .banner {
  display: flex;
  flex-direction: column;
  background-color: #00003F;
}
.gdpr-main .banner .logo-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.gdpr-main .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 1rem 1.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  background-color: #FFF;
}
.gdpr-main .banner .logo-container .container .tka-logo {
  display: flex;
  max-width: 200px;
}
.gdpr-main .banner .logo-container .container .tka-logo .logo-white {
  display: none;
}
.gdpr-main .banner .logo-container .container .tka-logo .logo-blue {
  display: flex;
}
.gdpr-main .banner .logo-container .container .tka-logo img {
  width: 100%;
}
.gdpr-main .banner .logo-container .container .menu {
  display: flex;
  z-index: 1;
  margin-left: auto;
}
.gdpr-main .banner .logo-container .container .menu img {
  width: 22px;
  height: 23px;
}
.gdpr-main .banner .logo-container .container .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.098);
}
.gdpr-main .banner .logo-container .container .menu-links .menu-toggle {
  color: #00003F;
}
.gdpr-main .banner .logo-container .container .menu-links .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.gdpr-main .banner .logo-container .container ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.gdpr-main .banner .logo-container .container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px solid #00003F;
  border-bottom-style: dotted;
}
.gdpr-main .banner .logo-container .container ul .links-li:first-child{
  padding-top: 0;
}
.gdpr-main .banner .logo-container .container ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.gdpr-main .banner .logo-container .container ul .links-li:last-child {
  display: none;
  padding-bottom: 0;
}
.gdpr-main .banner .logo-container .container ul .links-li .link {
  font-size: 14px;
  color: #00003F;
  text-decoration: none;
}
.gdpr-main .banner .logo-container .container ul .buttons {
  display: none;
}
.gdpr-main .banner .logo-container .container .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.gdpr-main .banner .logo-container .container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.gdpr-main .banner .logo-container .container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items:center;
}
.gdpr-main .banner .sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  box-shadow: 0 0 10px grey;
  background-color: #00003F;
  transition: 1s;
}
.gdpr-main .banner .sticky .container {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.gdpr-main .banner .sticky .container .tka-logo {
  display: flex;
}
.gdpr-main .banner .sticky-up {
  top: -100px;
}
.gdpr-main .banner .sticky-down {
  top: 0;
  left: 0;
}
.gdpr-main .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}
.gdpr-main .banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
}
.gdpr-main .banner .banner-container .banner-content h1 {
  display: flex;
  color: #FFF;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 24px;
}
.gdpr-main .banner .banner-container .banner-content h1 img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.gdpr-main .banner .banner-container .banner-content p {
  color: #FFF;
}
.gdpr-main .banner .banner-container .banner-content h3 {
  display: flex;
  flex-direction: row;
  color: #FFF;
  align-items: center;
  margin: 1rem 0;
}
.gdpr-main .banner .banner-container .banner-content h3 img {
  margin-right: 7px;
  width: 40px;
  height: 40px;
}
.gdpr-main .banner .banner-container .banner-content .countdown {
  display: flex;
  flex-direction: row;
  width: fit-content;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer {
  display: flex;
  flex-direction: column;
  margin-right: 1.5rem;
  position: relative;
  align-items: center;
  z-index: 0;
  width: 52px;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/gdpr/colon.svg);
  width: 11px;
  height: 42px;
  right: -18px;
  top: -2px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer::after {
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  top: 22px;
  right: 23px;
  background-color: #FF8000;
  z-index: 1;
  border-radius: 50%;
  animation: circleMover 4s linear infinite;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer:last-child {
  margin-right: 0;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer:last-child::before {
  content: none;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  border: 3px solid #FFF;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer span::before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 19px;
  right: 18px;
  background-color: #FF8000;
  z-index: -1;
  border-radius: 50%;
  animation: circleMover 6s linear infinite;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer span::after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 19px;
  right: 18px;
  background-color: #FF8000;
  z-index: -1;
  border-radius: 50%;
  animation: circleMover 8s linear infinite;
}
.gdpr-main .banner .banner-container .banner-content .countdown .timer p {
  color: #FFF;
  font-weight: 500;
  margin-top: 7px;
  text-align: center;
}
.gdpr-main .banner .banner-container .banner-content .buttons {
  justify-content: flex-start;
}
.gdpr-main .banner .banner-container .banner-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gdpr-main .banner .banner-container .banner-info img {
  width: 100%;
  height: 100%;
}
.gdpr-main .facts-fig {
  padding: 3rem 1.5rem;
  padding-bottom: 0;
}
.gdpr-main .facts-fig .facts-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .facts-fig .facts-container .amazing {
  display: flex;
  flex-direction: column;
}
.gdpr-main .facts-fig .facts-container .amazing .heading {
  margin-bottom: 5px;
}
.gdpr-main .facts-fig .facts-container .facts-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 2rem;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts:last-child {
  margin-bottom: 0;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-img {
  max-width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #00003F;
  padding: 0.5rem;
  border: 7px solid #5B5B88;
  position: relative;
  z-index: 1;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-img::before {
  content: '';
  width: 74px;
  height: 74px;
  position: absolute;
  z-index: -1;
  border: 1px solid #00003F;
  top: -10px;
  left: -10px;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-img img {
  width: 100%;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-content {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  width: 77%;
  padding-left: 2.6rem;
  transform: skew(30deg) translateX(-32px);
  position: relative;
  z-index: 0;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-content::before {
  content: '';
  width: 4px;
  height: 35px;
  background-color: #FF8000;
  position: absolute;
  top: 0;
  right: -3px;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-content .count {
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: skew(-30deg);
  margin-left: 14px;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-content .count h2 {
  color: #00003F;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-content .count span {
  color: #00003F;
  background-color: transparent;
  font-weight: 700;
  font-size: 22px;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts .facts-content p {
  transform: skew(-30deg);
}
.gdpr-main .facts-fig .facts-container .facts-list .facts:hover .facts-content span {
  color: #FFF;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts:hover .facts-content::before {
  transition: 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts:hover .count h2 {
  color: #FFF;
  transition: 0.5s ease-in-out;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts:hover .count span {
  color: #FFF;
  transition: 0.5s ease-in-out;
}
.gdpr-main .facts-fig .facts-container .facts-list .facts:hover p {
  color: #FFF;
  transition: 0.5s ease-in-out;
}
.gdpr-main .overview {
  padding: 3rem 1.5rem;
}
.gdpr-main .overview .overview-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .overview .overview-container .overview-delivery {
  display: flex;
  flex-direction: column;
}
.gdpr-main .overview .overview-container .overview-delivery .courses-overview {
  display: flex;
  flex-direction: column;
}
.gdpr-main .overview .overview-container .overview-delivery .courses-overview .buttons {
  justify-content: flex-start;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .heading {
  margin-bottom: 2rem;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods {
  display: flex;
  flex-direction: column;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 15px;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:last-child {
  margin-bottom: 0;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods span {
  background-color: #FFF;
  display: flex;
  margin-right: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid #00003f;
  position: relative;
  z-index: 1;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods span::before {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  border: 1px dashed #FF8000;
  border-radius: 50%;
  animation: rotate 10s linear infinite;
  z-index: -1;
  top: -11px;
  left: -11px;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods span img {
  width: 100%;
  height: 100%;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:hover span {
  transition: 0.8s ease;
  border: 5px solid #FF8000;
}
.gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:hover span::before {
  transition: 0.8s ease;
  border: 1px dashed #00003F;
}
.gdpr-main .overview .overview-container .privacy-img {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  height: 100%;
}
.gdpr-main .overview .overview-container .privacy-img img {
  width: 100%;
  height: 100%;

}
.gdpr-main .challenge {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #F1F1F1;
}
.gdpr-main .challenge .challenge-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .challenge .container{
  height: 100%;
}
.gdpr-main .challenge .challenge-container .challenge-left {
  display: flex;
  flex-direction: column;
  display: none;
}
.gdpr-main .challenge .challenge-container .challenge-left img {
  width: 100%;
  height: 100%;
}
.gdpr-main .challenge .challenge-container .challenge-right {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 0;
  background-color: #FFF;
}
.gdpr-main .challenge .challenge-container .challenge-right p {
  color: #00003F;
  font-weight: bold;
}
.gdpr-main .challenge .challenge-container .challenge-right::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/gdpr/challenge-top.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  z-index: -1;
}
.gdpr-main .challenge .challenge-container .challenge-right::after {
  content: '';
  position: absolute;
  background-image: url(/_public/images/gdpr/challenge-bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
  width: 98px;
  height: 40px;
  z-index: -1;
}
.gdpr-main .challenge .challenge-container .challenge-right span {
  width: 200px;
  height: 54px;
  align-self: center;
}
.gdpr-main .challenge .challenge-container .challenge-right span img {
  width: 100%;
}
.gdpr-main .challenge .challenge-container .challenge-right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.gdpr-main .challenge .challenge-container .challenge-right ul li {
  font-size: 14px;
  margin-top: 10px;
  color: #131212;
  padding-left: 20px;
  position: relative;
}
.gdpr-main .challenge .challenge-container .challenge-right ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/gdpr/benefit-star.svg);
  height: 18px;
  width: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -5px;
  top: 2px;
  animation: rotate 5s linear infinite;
}
.gdpr-main .courses {
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
}
.gdpr-main .courses .courses-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .courses .courses-container .heading {
  margin-bottom: 0.5rem;
}
.gdpr-main .courses .courses-container .headline {
  margin-bottom: 1.5rem;
  text-align: center;
}
.gdpr-main .courses .courses-container .headline span {
  color: #FF8000;
  font-weight: 700;
}
.gdpr-main .courses .courses-container .course-list {
  display: flex;
  flex-direction: column;
}
.gdpr-main .courses .courses-container .course-list .courses-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: 0.8s ease;
}
.gdpr-main .courses .courses-container .course-list .courses-name::before {
  position: absolute;
  content: '';
  background-image: url(/_public/images/gdpr/course-top.png);
  top: 0;
  left: 0;
  width: 120px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.gdpr-main .courses .courses-container .course-list .courses-name::after {
  position: absolute;
  content: '';
  background-image: url(/_public/images/gdpr/course-bottom.png);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-repeat: no-repeat;
  background-size: 100% 75%;
  background-position: bottom;
  z-index: -1;
}
.gdpr-main .courses .courses-container .course-list .courses-name:last-child {
  margin-bottom: 0;
}
.gdpr-main .courses .courses-container .course-list .courses-name .image {
  display: flex;
  width: 55px;
  height: 55px;
}
.gdpr-main .courses .courses-container .course-list .courses-name .image img {
  width: 100%;
}
.gdpr-main .courses .courses-container .course-list .courses-name .contents {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  width: 100%;
}
.gdpr-main .courses .courses-container .course-list .courses-name .contents h3 {
  text-align: center;
  font-weight: 500;
  min-height: 130px;
  font-size: 17px;
}
.gdpr-main .courses .courses-container .course-list .courses-name .contents p {
  text-align: center;
  color: #FFF;
  font-weight: 600;
}
.gdpr-main .courses .courses-container .course-list .courses-name .contents p span {
  font-weight: initial;
}
.gdpr-main .courses .courses-container .course-list .courses-name:hover {
  transition: 0.8s ease;
  transform: scale(1.04);
}
.gdpr-main .courses .courses-container .course-list .courses-name:hover .image {
  transition: 1s ease;
  transform: rotate(360deg);
}
.gdpr-main .timeline {
  display: none;
}
.gdpr-main .benefits {
  padding: 3rem 1.5rem;
}
.gdpr-main .benefits .benefits-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .benefits .benefits-container .benefits-left {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  padding: 2rem 1rem;
  position: relative;
  z-index: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.gdpr-main .benefits .benefits-container .benefits-left::before {
  position: absolute;
  content: '';
  background-image: url(/_public/images/gdpr/benefits-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
  z-index: -1;
}
.gdpr-main .benefits .benefits-container .benefits-left ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.gdpr-main .benefits .benefits-container .benefits-left ul li {
  margin-top: 15px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  font-weight: bold;
  z-index: 0;
}
.gdpr-main .benefits .benefits-container .benefits-left ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/gdpr/benefit-star.svg);
  height: 18px;
  width: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -5px;
  top: 2px;
  animation: rotate 5s linear infinite;
  z-index: -1;
}
.gdpr-main .benefits .benefits-container .benefits-right {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  background-color: #00003F;
  padding: 2rem 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 0;
}
.gdpr-main .benefits .benefits-container .benefits-right::before {
  position: absolute;
  content: '';
  background-image: url(/_public/images/gdpr/why-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 77px;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.gdpr-main .benefits .benefits-container .benefits-right p {
  color: #FFF;
}
.gdpr-main .benefits .benefits-container .benefits-right .buttons {
  justify-content: flex-start;
}
.gdpr-main .steps {
  display: none;
}
.gdpr-main .packages {
  padding: 3rem 1.5rem;
  background-color: #00003F;
}
.gdpr-main .packages .packages-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.gdpr-main .packages .packages-container .heading {
  margin-bottom: 2rem;
}
.gdpr-main .packages .packages-container .packages-list {
  display: flex;
  flex-direction: column;
}
.gdpr-main .packages .packages-container .packages-list .packages-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: #FFF;
  margin-bottom: 2rem;
}
.gdpr-main .packages .packages-container .packages-list .packages-content:last-child {
  margin-bottom: 0;
}
.gdpr-main .packages .packages-container .packages-list .packages-content h3 {
  text-align: center;
}
.gdpr-main .packages .packages-container .packages-list .packages-content p {
  text-align: center;
  color: #FF8000;
  margin: 10px 0;
  margin-top: 4px;
}
.gdpr-main .packages .packages-container .packages-list .packages-content ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}
.gdpr-main .packages .packages-container .packages-list .packages-content ul li {
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  padding-left: 1.3rem;
}
.gdpr-main .packages .packages-container .packages-list .packages-content ul li::before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  top: 3px;
  left: 0;
  background-image: url(/_public/images/gdpr/star-package.svg);
  background-repeat: no-repeat;
  background-size: contain;
  animation: rotate 6s linear infinite;
  z-index: -1;
}
.gdpr-main .packages .packages-container .packages-list .packages-content ul li:last-child {
  margin-bottom: 0;
}
.gdpr-main .packages .packages-container .packages-list .packages-content:hover {
  transition: 0.5s ease;
  transform: translateY(-15px);
}
.gdpr-main .limited-choose {
  padding: 3rem 1.5rem;
}
.gdpr-main .limited-choose .choose-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .limited-choose .choose-container .limited-budget {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  order: 2;
  margin-top: 3rem;
}
.gdpr-main .limited-choose .choose-container .limited-budget .heading h2::before {
  content: none;
}
.gdpr-main .limited-choose .choose-container .limited-budget ul {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
  list-style: none;
}
.gdpr-main .limited-choose .choose-container .limited-budget ul li {
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 13px;
  line-height: 1.6;
  padding-left: 0.5rem;
  text-align: left;
  z-index: 1;
}
.gdpr-main .limited-choose .choose-container .limited-budget ul li::before {
  content: '';
  background-image: url('/_public/images/gdpr/arrow.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 10px;
  height: 13px;
  position: absolute;
  top: 6px;
  left: -7px;
  z-index: -1;
  animation: bounceLeft 2s infinite;
}
.gdpr-main .limited-choose .choose-container .limited-budget .count {
  font-weight: bold;
  font-size: 16px;
}
.gdpr-main .limited-choose .choose-container .limited-budget .buttons {
  justify-content: flex-start;
}
.gdpr-main .limited-choose .choose-container .choose-us {
  display: flex;
  flex-direction: column;
  order: 1;
}
.gdpr-main .limited-choose .choose-container .choose-us p {
  text-align: center;
}
.gdpr-main .limited-choose .choose-container .choose-us .choose-list {
  display: flex;
  flex-direction: column;
}
.gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose {
  display: flex;
  flex-direction: column;
  background-image: url(/_public/images/gdpr/blue-layer.png), linear-gradient(#fff, #f1f1f1);
  background-size: contain;
  background-position: center top 52%;
  width: 265px;
  align-self: center;
  background-repeat: no-repeat;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
  padding: 1rem;
  align-items: center;
}
.gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose span {
  background-image: url('/_public/images/gdpr/blue-bg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  padding: 1.5rem;
  width: 77px;
  height: 70px;
}
.gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose span img {
  width: 100%;
}
.gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose h3 {
  margin-bottom: 3rem;
  text-align: center;
  min-height: 46px;
  width: 100%;
}
.gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose:hover {
  transition: 1s all ease;
  background-image: url(/_public/images/gdpr/orange-layer.png), linear-gradient(#fff, #f1f1f1);
  background-position: center top 52%;
}
.gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose:hover span {
  transition: 1s all ease;
  background-image: url('/_public/images/gdpr/orange-bg.svg');
}
.gdpr-main .testimonial {
  padding: 3rem 1.5rem;
  background-color: #F1F1F1;
}
.gdpr-main .testimonial .testimonial-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list {
  display: flex;
  flex-direction: column;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 7px;
  background-color: #00003F;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  align-items: center;
  width: 90%;
  margin: auto;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner .client-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner .client-name .client {
  display: flex;
  flex-direction: column;
  background-color: #F9F9F9;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50px;
  padding: 1rem;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner .client-name .client img {
  width: 100%;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner .client-name .stars {
  display: flex;
  width: 100px;
  height: 21px;
  margin: 5px 0;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner .client-name .stars img {
  width: 100%;
  height: 100%;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner .client-name h3 {
  color: #FFF;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner .client-name p {
  color: #FF8000;
  margin-top: 0;
  font-weight: 500;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner p {
  color: #FFF;
  text-align: center;
  margin-top: 5px;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 70px;
  margin: 0 auto;
  margin-top: 1.5rem;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav .owl-prev {
  background-image: url(/_public/images/gdpr/left-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  outline: 0;
  width: 32px;
  height: 32px;
  top: 0;
  left: -10px;
  opacity: 0.5;
  height: 32px;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav .owl-prev span {
  display: none;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav .owl-next {
  background-image: url(/_public/images/gdpr/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  outline: none;
  width: 32px;
  height: 32px;
  top: 0;
  right: -10px;
  opacity: 0.5;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav .owl-next span {
  display: none;
}
.gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav .btn-active {
  opacity: 1;
}
.gdpr-main .faq {
  padding: 3rem 1.5rem;
}
.gdpr-main .faq .faq-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .faq .faq-container .heading {
  margin-bottom: 0;
}
.gdpr-main .faq .faq-container .heading h2 {
  font-size: 21px;
}
.gdpr-main .faq .faq-container .faq-list {
  display: flex;
  flex-direction: column;
}
.gdpr-main .faq .faq-container .faq-list .faq-content {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  background-color: #FFF;
  height: fit-content;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .question {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
  border-top: 2px solid transparent;
  align-items: center;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .question h3 {
  font-size: 14px;
  width: 90%;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .question span {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24px;
  height: 25px;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .question span img {
  width: 100%;
  height: 100%;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .question span .up-arrow {
  display: none;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .question span .down-arrow {
  display: flex;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .answer {
  width: 90%;
  display: none;
  padding: 1rem;
  padding-top: 0;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .answer p {
  line-height: 1.6;
  font-size: 13px;
  color: #666666;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .answer ul {
  margin-bottom: 0;
  padding-left: 18px;
}
.gdpr-main .faq .faq-container .faq-list .faq-content .answer ul li {
  font-size: 13px;
  line-height: 1.5;
}

  

.gdpr-main .faq .faq-container .faq-list .faq-content.active .question {
  transition: 0.2s ease;
  border-top: 2px solid #FF8000;
}
.gdpr-main .faq .faq-container .faq-list .faq-content.active .question span .down-arrow {
  display: none;
}
.gdpr-main .faq .faq-container .faq-list .faq-content.active .question span .up-arrow {
  display: flex;
}
.gdpr-main .form-footer {
  padding: 3rem 1.5rem;
  background-color: #00003F;
}
.gdpr-main .form-footer .footer-container {
  display: flex;
  flex-direction: column;
}
.gdpr-main .form-footer .footer-container .form {
  margin-bottom: 2rem;
}
.gdpr-main .form-footer .footer-container .contact-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(/_public/images/gdpr/contact-bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 5rem;
  padding-top: 2.5rem;
}
.gdpr-main .form-footer .footer-container .contact-us h2 {
  color: #FFF;
  margin-bottom: 1rem;
}
.gdpr-main .form-footer .footer-container .contact-us .contact-info {
  display: flex;
  flex-direction: column;
  width: 190px;
}
.gdpr-main .form-footer .footer-container .contact-us .contact-info .contact {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
}
.gdpr-main .form-footer .footer-container .contact-us .contact-info .contact span {
  display: flex;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
.gdpr-main .form-footer .footer-container .contact-us .contact-info .contact span img {
  width: 100%;
  height: 100%;
}
.gdpr-main .form-footer .footer-container .contact-us .contact-info .contact .contact-content {
  display: flex;
  flex-direction: column;
}
.gdpr-main .form-footer .footer-container .contact-us .contact-info .contact .contact-content a {
  font-size: 12px;
  color: #FFF;
  width: 128px;
}
.gdpr-main .form-footer .footer-container .contact-us .contact-info .contact .contact-content p {
  font-size: 18px;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.gdpr-main .form-footer .footer-container .contact-us .contact-info .contact:last-child {
  margin-bottom: 0;
}
.gdpr-main .popup {
  display: none;
  background-color: rgba(221, 221, 221, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 16;
}
.gdpr-main .popup .popup-container {
  margin: auto;
  width: 287px;
  position: relative;
}
.gdpr-main .popup .popup-container .close-btn {
  width: 31px;
  position: absolute;
  top: 5px;
  right: -9px;
  z-index: 3;
  cursor: pointer;
}
.gdpr-main .popup .popup-container .form {
  width: auto;
  background-color: #FFF;
  margin-top: 18px;
  flex-direction: column;
  background-size: 37% 8%;
  padding: 1.5rem 1.5rem;
  background-image: url(/_public/images/gdpr/form-top.png), url(/_public/images/gdpr/form-bottom.png);
  background-repeat: no-repeat;
  background-position: top left, bottom right;
}
.gdpr-main .popup .popup-container .form h2 {
  text-align: center;
  font-size: 22px;
  width: 78%;
  margin: auto;
  margin-bottom: 1rem;
}
.gdpr-main .popup .popup-container .form .input-section {
  display: flex;
  flex-direction: column;
}
.gdpr-main .popup .popup-container .form .input-section .input-container input,
.gdpr-main .popup .popup-container .form .input-section .input-container textarea {
  color: #131212;
}
.gdpr-main .popup .popup-container .form .form-section {
  display: flex;
  flex-direction: column;
}
.gdpr-main .popup .popup-container .form .form-section .form-consent label,
.gdpr-main .popup .popup-container .form .form-section .form-consent p {
  color: #131212;
}
.gdpr-main .popup .popup-container .form .form-section .form-consent a {
  font-weight: 700;
}
/* scroll */
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFF;
}
::-webkit-scrollbar-thumb {
  background: #00003F;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF8000;
}
@media (min-width : 768px) {
  .gdpr-main .buttons .btn-orange,
  .gdpr-main .buttons .btn-white {
    font-size: 16px;
  }
  .gdpr-main .heading h2::before {
    content: '';
  }
  .gdpr-main .center-heading h2{
    width: auto;
  }
  .gdpr-main .banner {
    padding: 3rem 2rem;
    padding-top: 1rem;
  }
  .gdpr-main .banner .logo-container {
    width: 100%;
  }
  .gdpr-main .banner .logo-container .container .menu.active + .menu-links {
    width: 50%;
  }
  .gdpr-main .banner .banner-container {
    width: 100%;
    padding: 0;
  }
  .gdpr-main .banner .banner-container .banner-content {
    padding-top: 2rem;
  }
  .gdpr-main .banner .banner-container .banner-info {
    display: none;
  }
  .gdpr-main .facts-fig {
    padding: 3rem 2rem;
  }
  .gdpr-main .facts-fig .facts-container .amazing .heading {
    align-items: center;
  }
  .gdpr-main .facts-fig .facts-container .amazing p {
    text-align: center;
  }
  .gdpr-main .facts-fig .facts-container .facts-list {
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
  }
  .gdpr-main .facts-fig .facts-container .facts-list .facts {
    width: 39%;
  }
  .gdpr-main .facts-fig .facts-container .facts-list .facts:last-child {
    margin: auto;
  }
  .gdpr-main .overview {
    padding: 3rem 2rem;
    padding-top: 0;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .heading {
    margin-bottom: 2rem;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    background-image: url(/_public/images/gdpr/doted-line.svg);
    background-repeat: no-repeat;
    background-size: 72% 64%;
    background-position: center top -4px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods {
    flex-direction: column;
    width: 25%;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods::before {
    position: absolute;
    content: '';
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #FF8000;
    animation: pulse 3s linear infinite;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods::after {
    position: absolute;
    border-radius: 50%;
    content: '';
    width: 15px;
    height: 15px;
    background-color: #00003F;
    animation: pulse 3s linear infinite;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(1)::before,
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(3)::before {
    top: 5px;
    right: 10px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(1)::after,
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(3)::after {
    top: 9px;
    right: -25px;
    opacity: 0.5;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(2)::before {
    width: 10px;
    height: 10px;
    bottom: 60px;
    right: 21px;
    background-color: #00003F;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(2)::after {
    width: 15px;
    height: 15px;
    bottom: 57px;
    right: -12px;
    opacity: 0.5;
    background-color: #FF8000;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(3)::before {
    top: 11px;
    right: 10px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(3)::after {
    top: 9px;
    right: -25px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(4)::before {
    content: none;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(4)::after {
    content: none;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods span {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .gdpr-main .overview .overview-container .privacy-img {
    width: 60%;
    margin: auto;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }
  .gdpr-main .overview .overview-container .privacy-img::before {
    content: '';
    width: 450px;
    height: 450px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/_public/images/gdpr/privacy-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    animation: private-img 4s linear infinite;
  }
  .gdpr-main .challenge {
    padding: 3rem 2rem;
  }
  .gdpr-main .challenge .challenge-container {
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .gdpr-main .challenge .challenge-container::before {
    position: absolute;
    content: '';
    background-image: url(/_public/images/gdpr/course-box.svg);
    background-size: contain;
    width: 50px;
    height: 200px;
    bottom: 0;
    left: 66px;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    z-index: -1;
  }
  .gdpr-main .challenge .challenge-container::after {
    position: absolute;
    content: '';
    background-image: url(/_public/images/gdpr/course-box.svg);
    background-size: contain;
    width: 50px;
    height: 200px;
    top: 0;
    right: -20px;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .gdpr-main .challenge .challenge-container .challenge-left {
    display: flex;
    margin-bottom: 2rem;
    width: 100%;
    height: 100%;
  }
  .gdpr-main .challenge .challenge-container .challenge-right {
    width: 48%;
  }
  .gdpr-main .courses {
    padding: 3rem 2rem;
    background-color: transparent;
  }
  .gdpr-main .courses .courses-container {
    position: relative;
    z-index: 0;
  }
  .gdpr-main .courses .courses-container .headline {
    margin-bottom: 0;
  }
  .gdpr-main .courses .courses-container .heading {
    margin-bottom: 0.5rem;
  }
  .gdpr-main .courses .courses-container::before {
    content: '';
    background-image: url(/_public/images/gdpr/course-circle.svg);
    background-size: contain;
    width: 100px;
    height: 100px;
    top: 60px;
    left: 0;
    position: absolute;
    z-index: -1;
    animation: bounce 2s linear infinite;
  }
  .gdpr-main .courses .courses-container .course-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    position: relative;
    z-index: 0;
  }
  .gdpr-main .courses .courses-container .course-list::before {
    content: '';
    background-image: url(/_public/images/gdpr/course-box.svg);
    background-size: contain;
    width: 62px;
    height: 200px;
    top: -85px;
    right: 0;
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
  }
  .gdpr-main .courses .courses-container .course-list::after {
    content: '';
    background-image: url(/_public/images/gdpr/course-dots.svg);
    background-size: contain;
    width: 200px;
    height: 200px;
    bottom: -54px;
    right: 0;
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name {
    width: 45%;
    margin-right: 2rem;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(2) {
    margin-right: 0;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(4) {
    margin-right: 0;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(6) {
    margin-right: 0;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(7) {
    margin-bottom: 0;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(8) {
    margin-bottom: 0;
    margin-right: 0;
  }
  .gdpr-main .timeline {
    display: flex;
    padding: 3rem 2rem;
    background-color: #F1F1F1;
  }
  .gdpr-main .timeline .timeline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gdpr-main .timeline .timeline-container span {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .gdpr-main .timeline .timeline-container span::before {
    content: '';
    background-image: url('/_public/images/gdpr/reactangle-dots.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 92px;
    height: 104px;
    position: absolute;
    top: -16px;
    right: 12px;
    z-index: -1;
    animation: bounce 5s linear infinite;
  }
  .gdpr-main .timeline .timeline-container span img {
    width: 100%;
    height: 100%;
  }
  .gdpr-main .benefits {
    padding: 3rem 2rem;
    padding-bottom: 2rem;
  }
  .gdpr-main .benefits .benefits-container .benefits-left {
    padding: 2.5rem;
  }
  .gdpr-main .benefits .benefits-container .benefits-right {
    padding: 2.5rem;
  }
  .gdpr-main .benefits .benefits-container .benefits-right ul li {
    width: 26%;
  }
  .gdpr-main .steps {
    display: flex;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
  }
  .gdpr-main .steps::before,
  .gdpr-main .steps::after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    height: 115px;
    position: absolute;
    z-index: -1;
  }
  .gdpr-main .steps::before {
    background-image: url(/_public/images/gdpr/dots-circle.svg);
    background-position: left;
    width: 115px;
    top: 0;
    left: 0;
    animation: rotate 5s linear infinite;
  }
  .gdpr-main .steps::after {
    background-image: url(/_public/images/gdpr/dots-circle.svg);
    background-position: bottom;
    width: 75px;
    bottom: 85px;
    right: 46px;
    animation: bounce 5s linear infinite;
  }
  .gdpr-main .steps .steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gdpr-main .steps .steps-container span {
    display: flex;
    width: 100%;
    margin: 1.5rem 0;
    height: 100%;
  }
  .gdpr-main .steps .steps-container span::before {
    content: '';
    background-image: url(/_public/images/gdpr/dots-circle.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 115px;
    position: absolute;
    bottom: 159px;
    right: 78px;
    animation: bounce 5s linear infinite;
  }
  .gdpr-main .steps .steps-container span img {
    width: 100%;
    height: 100%;
  }
  .gdpr-main .packages {
    padding: 3rem 2rem;
  }
  .gdpr-main .packages .packages-container .heading {
    margin-bottom: 2rem;
  }
  .gdpr-main .packages .packages-container .packages-list {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .gdpr-main .packages .packages-container .packages-list .packages-content {
    width: 47%;
  }
  .gdpr-main .packages .packages-container .packages-list .packages-content h3 {
    min-height: 50px;
  }
  .gdpr-main .packages .packages-container .packages-list .packages-content ul {
    min-height: 195px;
  }
  .gdpr-main .limited-choose {
    padding: 3rem 2rem;
  }
  .gdpr-main .limited-choose .choose-container .limited-budget {
    width: 80%;
    align-self: center;
    padding: 2rem;
    background-image: url('/_public/images/gdpr/left-budget.svg'), url('/_public/images/gdpr/right-budget.svg'), url('/_public/images/gdpr/dots-box.svg');
    background-repeat: no-repeat;
    background-size: 100% 20%;
    background-position:bottom -1px left -203px,top right -211px,top left -291px;

  }
  .gdpr-main .limited-choose .choose-container .limited-budget .heading h2::before {
    content: '';
  }
  .gdpr-main .limited-choose .choose-container .choose-us .choose-list {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose {
    width: 46%;
  }
  .gdpr-main .testimonial {
    padding: 3rem 2rem;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner {
    min-height: 476px;
  }
  .gdpr-main .faq {
    padding: 3rem 2rem;
  }
  .gdpr-main .faq .faq-container .heading h2 {
    font-size: 22px;
  }
  .gdpr-main .faq .faq-container .faq-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .gdpr-main .faq .faq-container .faq-list .faq-content {
    width: 48%;
  }
  .gdpr-main .form-footer {
    padding: 3rem 2rem;
  }
  .gdpr-main .form-footer .footer-container {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .gdpr-main .form-footer .footer-container .form {
    width: 55%;
    margin-bottom: 0;
  }
  .gdpr-main .form-footer .footer-container .form .main-input {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gdpr-main .form-footer .footer-container .form .main-input .input-container {
    width: 48%;
  }
  .gdpr-main .form-footer .footer-container .form .main-input .input-container:last-child {
    width: 100%;
  }
  .gdpr-main .form-footer .footer-container .contact-us {
    width: 38%;
    padding: 2rem;
    align-items: flex-start;
    height: 275px;
    align-self: center;
  }
  .gdpr-main .popup .popup-container {
    width: auto;
  }
  .gdpr-main .popup .popup-container .close-btn {
    top: 4px;
    right: -14px;
  }
  .gdpr-main .popup .popup-container .form {
    padding: 2rem;
    width: 340px;
    background-size: 35% 12%;
  }
}
@media (min-width:768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods {
    background-position: center top 0px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(1).methods::after{
    top: 0px;
    right: -15px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(1).methods::before{
    top: -5px;
    right: 22px;
  }

  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(2).methods::before{
    bottom: 42px;
    right: 16px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(2).methods::after{
    bottom: 41px;
    right: -12px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(3).methods::before{
    top: 5px;
    right: 10px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(3).methods::after{
    top: 0px;
    right: -25px;
  }
  .gdpr-main .limited-choose .choose-container .limited-budget{
    background-size:100% 43% ;
    background-position: bottom left -115px, top right -115px,top left -38px;
  }
}
@media (min-width : 1024px) {
  .gdpr-main p {
    line-height: 1.6;
  }
  .gdpr-main .heading h2 {
    font-size: 26px;
  }
  .gdpr-main .banner {
    background-color: transparent;
    background-image: url(/_public/images/gdpr/banner-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .gdpr-main .banner .logo-container .container {
    padding: 0;
    position: relative;
    z-index: 0;
    background-color: transparent;
  }
  .gdpr-main .banner .logo-container .container .tka-logo .logo-white {
    display: flex;
  }
  .gdpr-main .banner .logo-container .container .tka-logo .logo-blue {
    display: none;
  }
  .gdpr-main .banner .logo-container .container .menu {
    display: none;
  }
  .gdpr-main .banner .logo-container .container .menu-links {
    width: 78%;
    display: flex;
    align-items: center;
    background: 0 0;
    max-height: unset;
    overflow: unset;
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
  }
  .gdpr-main .banner .logo-container .container .menu-links .menu-toggle {
    display: none;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul .links-li {
    border-bottom: none;
    border-bottom-style: none;
    margin-right: 1rem;
    padding: 0;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul .links-li:last-child {
    display: flex;
    margin-top: 0;
    margin-right: 0;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul .links-li .link {
    font-weight: 600;
    transition: none;
    color: #FFF;
    padding: 3px;
    position: relative;
    z-index: 1;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul .links-li .link::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -6px;
    width: 10px;
    height: 10px;
    z-index: -1;
    background-color: transparent;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul .links-li .link::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 10px;
    right: -6px;
    bottom: -1px;
    height: 10px;
    background-color: transparent;

  }
  .gdpr-main .banner .logo-container .container .menu-links ul .links-li .link:hover::before {
    transition: 0.2s ease;
    border-left: 2px solid #FF8000;
    border-top: 2px solid #FF8000;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul .links-li .link:hover::after {
    transition: 0.2s ease;
    border-right: 2px solid #FF8000;
    border-bottom: 2px solid #FF8000;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul .buttons .btn-white {
    margin-right: 1rem;
  }
  .gdpr-main .banner .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
    box-shadow: 0 0 10px grey;
    padding: 0 1.5rem;
    transition: 1s;
  }
  .gdpr-main .banner .sticky .container {
    position: relative;
    padding: 1rem 0;
  }
  .gdpr-main .banner .sticky .container::before {
    content: none;
  }
  .gdpr-main .banner .sticky .container::after {
    content: none;
  }
  .gdpr-main .banner .container{
    height: 100%;
  }
  .gdpr-main .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 3rem;
  }
  .gdpr-main .banner .banner-container .banner-content {
    width: 45%;
    padding-top: 0;
  }
  .gdpr-main .banner .banner-container .banner-info {
    display: flex !important;
    flex-direction: column;
    margin-top: 0;
    width: 50%;
  }
  .gdpr-main .banner .banner-container .banner-info img {
    width: 100%;
  }
  .gdpr-main .facts-fig .facts-container .facts-list .facts {
    width: 30%;
    margin-bottom: 0;
  }
  .gdpr-main .facts-fig .facts-container .facts-list .facts:last-child {
    margin: 0;
  }
  .gdpr-main .overview {
    padding-top: 1.5rem;
  }
  .gdpr-main .overview .overview-container {
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .gdpr-main .overview .overview-container:before {
    content: '';
    background-image: url(/_public/images/gdpr/lines-circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    animation: progress 3s infinite linear;
    z-index: -1;
    position: absolute;
    top: -28px;
    right: 80px;
    width: 100px;
    height: 100px;
    animation: faq 3s linear infinite;
    opacity: 0.5;
  }
  .gdpr-main .overview .overview-container .overview-delivery {
    width: 64%;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(1)::before {
    top: 9px;
    right: 13px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(1)::after {
    top: 11px;
    right: -18px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(2)::before {
    bottom: 62px;
    right: 10px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(2)::after {
    bottom: 61px;
    right: -21px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(3)::before {
    top: 14px;
    right: 10px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods .methods:nth-child(3)::after {
    top: 11px;
    right: -23px;
  }
  .gdpr-main .overview .overview-container .privacy-img {
    width: 34%;
    margin: 0;
    margin-left: auto;
  }
  .gdpr-main .overview .overview-container .privacy-img::before {
    width: 355px;
    height: 348px;
    animation: none;
  }
  .gdpr-main .challenge .challenge-container {
    flex-direction: row;
    justify-content: space-around;
  }
  .gdpr-main .challenge .challenge-container .challenge-left {
    width: 50%;
  }
  .gdpr-main .challenge .challenge-container .challenge-right {
    width: 38%;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name {
    width: 31%;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(2) {
    margin-right: 2rem;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(3) {
    margin-right: 0;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(4) {
    margin-right: 2rem;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(6) {
    margin-right: 0;
  }
  .gdpr-main .benefits {
    padding-bottom: 5rem;
  }
  .gdpr-main .benefits .benefits-container {
    flex-direction: row;
    position: relative;
  }
  .gdpr-main .benefits .benefits-container .benefits-left {
    width: 72%;
    position: relative;
  }
  .gdpr-main .benefits .benefits-container .benefits-left ul {
    width: 60%;
  }
  .gdpr-main .benefits .benefits-container .benefits-left::after {
    top: 75px;
    position: absolute;
    content: '';
    background-image: url(/_public/images/gdpr/benefits-circle.png);
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    right: -103px;
    z-index: -1;
  }
  .gdpr-main .benefits .benefits-container .benefits-right {
    position: absolute;
    width: 55%;
    right: 0;
    bottom: -37px;
    margin-top: 0;
    justify-content: center;
  }
  .gdpr-main .benefits .benefits-container .benefits-right ul {
    justify-content: flex-start;
  }
  .gdpr-main .benefits .benefits-container .benefits-right ul li {
    width: 40%;
  }
  .gdpr-main .packages .packages-container .packages-list .packages-content {
    padding: 2rem;
    width: 31%;
    margin-bottom: 0;
  }
  .gdpr-main .packages .packages-container .packages-list .packages-content ul {
    min-height: 215px;
  }
  .gdpr-main .limited-choose {
    background-image: url('/_public/images/gdpr/limited-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gdpr-main .limited-choose .choose-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .gdpr-main .limited-choose .choose-container .limited-budget {
    align-self: flex-start;
    order: 1;
    width: 35%;
    position: sticky;
    top: 70px;
    margin-top: 0;
    background-position: bottom right 81px, top left 81px, top left -122px;
  }
  .gdpr-main .limited-choose .choose-container .choose-us {
    width: 60%;
  }
  .gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose {
    align-self: initial;
  }
  .gdpr-main .testimonial {
    background-image: url('/_public/images/gdpr/testimonial-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    padding-top: 10rem;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner {
    background-color: #FFF;
    background-image: url('/_public/images/gdpr/client-bg.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 83%;
    min-height: 388px;
  }
  .gdpr-main .testimonial .testimonial-container .heading h2 {
    z-index: 2;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list {
    position: relative;
    z-index: 1;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list::before,
  .gdpr-main .testimonial .testimonial-container .testimonial-list::after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    animation: bounce 5s linear infinite;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list::before {
    background-image: url('/_public/images/gdpr/grey-bg.svg');
    top: -96px;
    display: flex;
    right: 46%;
    width: 109px;
    height: 123px;
    background-position: center;

  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list::after {
    background-image: url('/_public/images/gdpr/grey-bg.svg');
    top: -32px;
    left: 4px;
    width: 104px;
    height: 71px;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav  .owl-prev{
    left: -16px;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list .owl-nav  .owl-next{
    right: -16px;
  }
  .gdpr-main .faq {
    padding-bottom: 0;
  }
  .gdpr-main .form-footer {
    background-image: url('/_public/images/gdpr/footer-bg.png');
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: transparent;
  }
  .gdpr-main .form-footer .footer-container {
    background-image: url('/_public/images/gdpr/form-bg.png');
    background-size: 100% 99%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3rem 2rem;
    border-top: 3px solid #FF8000;
    padding-left: 3rem;
  }
  .gdpr-main .form-footer .footer-container .form {
    width: 58%;
  }
  .gdpr-main .form-footer .footer-container .contact-us {
    background-position: center;
    background-size: 100% 75%;
    padding: 4rem;
    height: 390px;
  }
  .gdpr-main .form-footer .footer-container .contact-us .contact-info .contact span {
    width: 25px;
    height: 25px;
  }
}
@media (min-width:1024px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {

  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(1).methods::after{
    top: 0px;
    right: -18px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(1).methods::before{
    top: -4px;
    right: 13px;
  }

  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(2).methods::before{
    bottom: 41px;
    right: 10px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(2).methods::after{
    bottom: 42px;
    right: -21px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(3).methods::before{
    top: 4px;
    right: 10px;
  }
  .gdpr-main .overview .overview-container .overview-delivery .delivery .delivery-methods :nth-child(3).methods::after{
    top: 1px;
    right: -22px;
  }

  .gdpr-main .form-footer .footer-container .contact-us{
    background-size: 90% 75%;
  }
}
@media (min-width : 1366px) {
  .gdpr-main .container {
    width: 1200px;
    margin: 0 auto;
  }
  .gdpr-main .heading h2 {
    font-size: 30px;
  }
  .gdpr-main .buttons .btn-orange,
  .gdpr-main .buttons .btn-white {
    font-size: 18px;
  }
  .gdpr-main .banner {
    padding-bottom: 6rem;
  }
  .gdpr-main .banner .logo-container .container .menu-links ul .links-li {
    margin-right: 2rem;
  }
  .gdpr-main .facts-fig {
    padding: 2rem 0;
  }
  .gdpr-main .facts-fig .facts-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .gdpr-main .facts-fig .facts-container .amazing {
    width: 24%;
  }
  .gdpr-main .facts-fig .facts-container .amazing .heading {
    align-items: flex-start;
  }
  .gdpr-main .facts-fig .facts-container .amazing .heading h2{
    width: 100%;
  }
  .gdpr-main .facts-fig .facts-container .amazing p {
    text-align: left;
  }
  .gdpr-main .facts-fig .facts-container .facts-list {
    width: 72%;
    margin-top: 0;
  }
  .gdpr-main .facts-fig .facts-container .facts-list .facts {
    width: 32%;
  }
  .gdpr-main .overview {
    padding: 4rem 0rem;
    padding-top: 1rem;
  }
  .gdpr-main .overview .overview-container:before {
    top: -48px;
    right: 280px;
    width: 120px;
    height: 120px;
  }
  .gdpr-main .overview .overview-container .overview-delivery {
    width: 52%;
  }
  .gdpr-main .overview .overview-container .privacy-img {
    width: 40%;
  }
  .gdpr-main .overview .overview-container .privacy-img::before {
    width: 420px;
    height: 420px;
    animation: private-img 4s linear infinite;
  }
  .gdpr-main .challenge {
    padding: 4rem 0rem;
  }
  .gdpr-main .challenge .challenge-container::before {
    bottom: -46px;
    animation: rotate 10s linear infinite;
  }
  .gdpr-main .challenge .challenge-container::after {
    right: 7px;
    animation: rotate 10s linear infinite;
  }
  .gdpr-main .challenge .challenge-container .challenge-right {
    width: 28%;
  }
  .gdpr-main .courses {
    padding: 4rem 0rem;
  }
  .gdpr-main .courses .courses-container .course-list::before {
    animation: rotate 5s linear infinite;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name {
    width: 22%;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(5) {
    margin-bottom: 0;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(6) {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(3) {
    margin-right: 2rem;
  }
  .gdpr-main .courses .courses-container .course-list .courses-name:nth-child(4) {
    margin-right: 0;
  }
  .gdpr-main .timeline {
    padding: 4rem 0rem;
  }
  .gdpr-main .benefits {
    padding: 4rem 0rem;
  }
  .gdpr-main .benefits .benefits-container .benefits-left::after {
    top: 115px;
    animation: move 20s linear infinite;
  }
  .gdpr-main .steps {
    padding: 4rem 0rem;
  }
  .gdpr-main .packages {
    padding: 4rem 0rem;
    padding-bottom: 9rem;
    background-color: transparent;
    background-image: url(/_public/images/gdpr/packages-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .gdpr-main .packages .packages-container .packages-list .packages-content ul {
    min-height: 195px;
  }
  .gdpr-main .limited-choose {
    padding: 4rem 0rem;
    background-size: 100% 100%;
  }
  .gdpr-main .limited-choose .choose-container .limited-budget {
    width: 30%;
    background-position: bottom right 98px, top left 98px, top left -131px;
  }
  .gdpr-main .limited-choose .choose-container .choose-us {
    width: 64%;
  }
  .gdpr-main .limited-choose .choose-container .choose-us .choose-list {
    justify-content: space-between;
  }
  .gdpr-main .limited-choose .choose-container .choose-us .choose-list .choose {
    width: 30%;
  }
  .gdpr-main .testimonial .testimonial-container .testimonial-list .testimonial-inner {
    min-height: 344px;
  }
  .gdpr-main .faq {
    padding: 4rem 0rem;
    padding-bottom: 0;
  }
  .gdpr-main .faq .faq-container {
    position: relative;
    z-index: 1;
  }
  .gdpr-main .faq .faq-container:before {
    content: '';
    background-image: url(/_public/images/gdpr/lines-circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    animation: progress 3s infinite linear;
    z-index: -1;
    position: absolute;
    top: -90px;
    right: 40px;
    width: 118px;
    height: 123px;
    animation: faq 3s linear infinite;
  }
  .gdpr-main .faq .faq-container .heading h2 {
    font-size: 30px;
  }
  .gdpr-main .form-footer {
    padding: 4rem 0rem;
  }
  .gdpr-main .form-footer .footer-container {
    padding-left: 5rem;
  }
  .gdpr-main .form-footer .footer-container .form {
    width: 60%;
  }
  .gdpr-main .form-footer .footer-container .contact-us {
    background-size: 100% 78%;
    padding: 7rem;
  }
  .gdpr-main .popup .popup-container .form {
    width: 420px;
  }
}
@media (min-width:1366px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gdpr-main .form-footer .footer-container .contact-us{
    background-size: 77% 78%;
  }
}
