@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --header-height-desktop: 98px;
  --header-height-mobile: 75px;
  --footer-height-desktop: 437px;
  --footer-height-tablet: 650px;
  --footer-height-mobile: 770px;
}

/*==BASIC-SETUP==*/
body {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

/* scroll-bar */
.scrolltotop {
  width: 40px;
  height: 40px;
  border-radius: 100px 100px 0 0;
  background: #333333;
  text-align: center;
  padding-top: 8px;
  font-size: 20px;
  color: #ffffff;
  position: fixed;
  right: 8px;
  bottom: 10px;
  display: none;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  border: none;
  outline: none;
}

.scrolltotop:hover {
  color: #fff;
  background: rgba(51, 51, 51, 0.7);
}

.scrolltotop:focus {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}

/*==THIS IS START==*/
.header-area {
  padding: 32px 0;
  background: #000000;
  width: 100%;
  z-index: 1000;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: goDown 0.5s ease-in-out forwards;
}

@keyframes goDown {
  0% {
    top: -100px;
  }
  100% {
    transform: translateY(0);
  }
}

.logo-item img {
  max-width: 256px;
}

.main-nav ul {
  text-align: right;
}

.main-nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 80px;
}

.main-nav ul li:last-child {
  margin-right: 0;
}

.main-nav ul li a,
.main-nav-submenu-trigger {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  padding-bottom: 10px;
  transition: 0.2s all ease;
  text-transform: uppercase;
}

.main-nav-submenu-trigger {
  border: none;
  outline: none;
  background-color: transparent;
}

.main-nav ul li a:hover,
.sub-item.active-menu,
.active-menu {
  color: #0dd074 !important;
}

.sub-menu .active-menu2 {
  color: #0dd074 !important;
}

.submenu {
  position: absolute;
  left: 0;
  top: 30px;
  min-width: 190px;
  opacity: 0;
  z-index: 10;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
  background: #000000;
  text-align: left !important;
  padding: 11px 18px 18px 18px;
}

.submenu li {
  margin-right: 0 !important;
  margin-top: 20px;
}

.submenu li:first-child {
  margin-top: 20px;
}

.submenu li::after {
  content: "";
  display: block;
  width: 158px;
  background: #0dd074;
  height: 2px;
  margin-top: 10px;
}

.main-nav ul li:hover .submenu,
.submenu:focus-within {
  opacity: 1;
}

.submenu li:last-child::after {
  display: none;
}

/* MOBIL-MENU-START*/
.sidebar-menu {
  backdrop-filter: blur(15px);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -100%;
  overflow-y: auto;
  transition: 0.6s ease;
  transition-property: left;
  background: #000000;
  z-index: 9999;
}

.sidebar-menu::-webkit-scrollbar {
  width: 0px;
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-menu .menu-wrap {
  width: 100%;
  margin-top: 30px;
}

.sidebar-menu .menu-wrap .menu-item {
  position: relative;
  cursor: pointer;
}

.sidebar-menu .menu-wrap .menu-item a {
  font-weight: 600;
  font-size: 27px;
  color: #ffffff;
  display: block;
  margin-top: 45px;
  padding-left: 95px;
  transition: 0.2s all ease;
}

.sidebar-menu .menu-wrap .menu-item a:hover {
  color: #0dd074;
}

.sidebar-menu .menu-wrap .menu-item i {
  margin-right: 15px;
}

.sidebar-menu .menu-wrap .menu-item a .dropdown {
  position: absolute;
  right: 10px;
  transition: 0.3s ease;
}

.sub-menu {
  opacity: 0;
  height: 0;
}

.sub-menu:focus-within,
.sub-menu.visible {
  opacity: 1;
  height: auto;
}

.rotate {
  transform: rotate(180deg);
}

.sub-menu a {
  font-weight: 400;
  color: #ffffff !important;
  font-size: 14px !important;
  opacity: 0.7;
  margin-top: 10px !important;
}

.sub-menu a:hover {
  color: #0dd074 !important;
}

.sidebar-menu .menu-header {
  position: relative;
  background: #000000;
  padding: 22px 20px;
  border-bottom: 1px solid #b2b2b2;
}

.close-icon {
  width: 25px;
  height: 25px;
  display: block;
  position: relative;
  cursor: pointer;
}

.close-icon::before,
.close-icon::after {
  content: "";
  background: #ffffff;
  position: absolute;
  height: 100%;
  width: 4px;
  border-radius: 3px;
}

.close-icon::before {
  transform: rotate(45deg);
}

.close-icon::after {
  transform: rotate(-45deg);
}

.sub-btn {
  color: white;
}

.close-btn {
  background-color: black;
  background-color: black;
  outline: none;
  border: none;
  padding: 5px;
}

.close-btn > .close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn {
  width: 40px;
  cursor: pointer;
  margin-left: auto;
  background-color: black;
  outline: none;
  border: none;
  padding-bottom: 5px;
}

.menu-btn:focus,
.close-btn:focus,
.main-nav-submenu-trigger:focus {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 4px;
  background: #ffffff;
  margin: 5px 0 0 0;
  transition: 0.2s all ease;
}

.menu-btn:hover span {
  background: #0dd074;
}

.mobil-brand img {
  max-width: 140px;
}

/* MOBIL-MENU-END*/
.channel-area {
  padding: 47px 0 90px 0;
}

.channel-left {
  max-width: 620px;
}

.box {
  position: relative;
}

.box h2 {
  font-weight: 700;
  font-size: 44px;
  color: #000000;
}

.box h2:nth-of-type(2) {
  margin-top: 50px;
}

.word {
  display: block;
}

.word span {
  position: absolute;
  top: 100px;
  left: 0;
  overflow: hidden;
  animation: animate 8s linear infinite;
  opacity: 0;
  font-weight: 700;
  font-size: 44px;
  color: #0dd074;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  2% {
    opacity: 1;
    transform: translateX(0px);
  }

  18% {
    opacity: 1;
    transform: translateX(0px);
  }

  18% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 0;
    transform: translateX(50px);
  }
}

.word span:nth-child(1) {
  animation-delay: 0s;
}

.word span:nth-child(2) {
  animation-delay: 2s;
}

.word span:nth-child(3) {
  animation-delay: 4s;
}

.word span:nth-child(4) {
  animation-delay: 6s;
}
*/ .channel-pg {
  max-width: 400px;
}

.channel-left p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 30px;
}

.channel-right img {
  width: 100%;
}

/* markating-area-start */
.markating-area {
  background: #f9f9f9;
  padding: 53px 0 92px 0;
}

.markating-title {
  max-width: 660px;
  margin: auto;
  text-align: center;
}

.markating-title h2 {
  font-weight: 700;
  font-size: 38px;
  color: #000000;
}

.markating-area .col-lg-2 {
  width: 20%;
  flex: 20%;
}

.markating-item {
  text-align: center;
  background: #ffffff;
  box-shadow: 3px 7.5px 7.5px rgba(0, 0, 0, 0.25);
  padding: 30px 15px 59px 15px;
  min-height: 318px;
  margin-top: 43px;
}

.markating-item-img img {
  max-width: 63px;
}

.markating-item-cnt h5 {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  /*! margin-top: 20px; */
}

.markating-item-cnt p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 10px;
}

/* markating-area-end */

/* reach-area-start */
.reach-area {
  padding: 70px 0 135px 0;
  background: #ffffff;
}

.reach-left-cnt h6 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #000000;
  margin-top: 18px;
}

.reach-left-cnt p {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  text-align: center;
  margin-top: 10px;
}

.reach-left-cnt p a {
  color: #000000;
  text-decoration: underline;
}

.reach-right {
  max-width: 694px;
}

.reach-right h3 {
  font-weight: 700;
  font-size: 38px;
  color: #000000;
}

.reach-right p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 20px;
}

.reach-right p:nth-of-type(2) {
  margin-top: 10px;
}

.reach-right a {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  background: #0dd074;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25);
  padding: 9px 90px;
  display: inline-block;
  margin-top: 40px;
  transition: 0.2s all ease;
  text-transform: uppercase;
}

.reach-right a:hover {
  background: #e7fae8;
  color: #000000;
}

.skill-box img {
  max-width: 308px;
  margin: auto;
  display: block;
}

/* reach-area-end */

/*user-area-start*/
.users-area {
  padding: 1px 0 150px 0;
}

.user-mobil img {
  width: 100%;
}

.users-left {
  max-width: 710px;
  padding-left: 40px;
}

.user-left-title {
  max-width: 441px;
}

.user-left-title h3 {
  font-weight: 700;
  font-size: 38px;
  color: #000000;
  position: relative;
  z-index: 1;
}

.user-left-title h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 203px;
  height: 203px;
  background: url("images/playon.png") no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  z-index: -1;
}

.users-left p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 10px;
}

.users-left p:nth-of-type(1) {
  margin-top: 40px;
}

.users-left a {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  padding: 9px 90px;
  background: #0dd074;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin-top: 50px;
  transition: 0.2s all ease;
}

.users-left a:hover {
  background: #e7fae8;
  color: #000000;
}

.users-right img {
  max-width: 100%;
}

/*user-area-end*/

/*device-area-start*/
.device-area {
  padding: 1px 0 150px 0;
}

.device-mobil img {
  width: 100%;
}

.device-left img {
  max-width: 100%;
}

.device-right {
  padding-left: 70px;
  max-width: 705px;
}

.device-right h3 {
  font-weight: 700;
  font-size: 38px;
  color: #000000;
  position: relative;
  z-index: 1;
}

.device-right h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 203px;
  height: 203px;
  background: url("images/playon.png") no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  z-index: -1;
}

.device-right p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 15px;
}

.device-right p:nth-of-type(1) {
  margin-top: 60px;
}

.device-right a {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  background: #0dd074;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25);
  padding: 9px 90px;
  display: inline-block;
  margin-top: 60px;
  transition: 0.2s all ease;
}

.device-right a:hover {
  background: #e7fae8;
  color: #000000;
}

/*device-area-end*/

/*privacy-area-start*/
.privacy-area {
  background: #ffffff;
  padding: 1px 0 150px 0;
}

.privacy-mobil img {
  width: 100%;
}

.privacy-left {
  padding-left: 40px;
  max-width: 710px;
}

.privacy-title {
  max-width: 412px;
}

.privacy-left h3 {
  position: relative;
  font-weight: 700;
  font-size: 38px;
  color: #000000;
  z-index: 1;
}

.privacy-left h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 203px;
  background: url("images/playon.png") no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  z-index: -1;
}

.privacy-left p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 40px;
}

.privacy-right img {
  max-width: 100%;
}

/*privacy-area-end*/

/*about-area-start*/
.about-area {
  background: url("images/about-bg.png") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 75px 0 250px 0;
}

.about-cnt {
  max-width: 1040px;
  margin: auto;
  text-align: center;
}

.about-cnt h3 {
  font-weight: 700;
  font-size: 45px;
  color: #ffffff;
}

.about-cnt p {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-top: 30px;
}

.about-cnt a {
  font-weight: 700;
  font-size: 18px;
  color: #0dd074;
  padding: 9px 90px;
  background: #ffffff;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin-top: 30px;
  transition: 0.2s all ease;
}

.about-cnt a:hover {
  opacity: 0.8;
}

/*about-area-end*/

/*footer-area-start*/
.footer-area {
  background: #000000;
  padding: 78px 0 100px 0;
}

.footer-item1 h4 {
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
}

.footer-item1 ul li {
  margin-top: 10px;
}

.footer-item1 ul li:first-child {
  margin-top: 0;
}

.footer-item1 ul {
  margin-top: 20px;
}

.footer-item1 ul li {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  opacity: 0.9;
  transition: 0.2s all ease;
}

.footer-item2 ul li a {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  opacity: 0.9;
  transition: 0.2s all ease;
}

.footer-item2 ul li a:hover {
  color: #0dd074;
}

.footer-item2 ul li {
  margin-top: 15px;
}

.footer-item2 ul li:first-child {
  margin-top: 0;
}

.footer-item3 ul {
  display: flex;
  align-items: center;
}

.footer-item3 ul li {
  margin-right: 24px;
}

.footer-item3 ul li:last-child {
  margin-right: 0;
}

.footer-item3 ul li:nth-child(1) a img {
  max-width: 54px;
}

.footer-item3 ul li:nth-child(2) a img {
  max-width: 80px;
}

.footer-item3 ul li a img {
  transition: 0.2s all ease;
}

.footer-item3 ul li a img:hover {
  opacity: 0.8;
}

.footer-item-inner img {
  max-width: 280px;
  margin-top: 22px;
}

.footer-logo img {
  max-width: 150px;
  display: block;
  /*! margin: auto; */
}

.footer-item2 h4 {
  font-weight: 600;
  font-size: 27.6px;
  color: #ffffff;
  display: none;
}

/*==CTV-DATA-PAGE-START==*/
.maximize-area {
  padding: 80px 0 90px 0;
}

.maximize-pg {
  max-width: 505px;
}

.maximize-left a {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  padding: 9px 90px;
  background: #0dd074;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin-top: 40px;
  transition: 0.2s all ease;
}

.maximize-left a:hover {
  background: #e7fae8;
  color: #000000;
}

.maximize-mobil-img img {
  width: 100%;
}

/*world-wide-start*/
.world-wide-title {
  max-width: 912px;
}

.world-wide-title p {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin-top: 20px;
}

.reach-markating .markating-item {
  min-height: 395px;
}

.billion-area {
  padding: 183px 0 213px 0;
  background: #ffffff;
}

.billion-main {
  background: #f9f9f9;
  box-shadow: 3.59326px 8.98316px 8.98316px rgba(0, 0, 0, 0.25);
}

.billion-left {
  background: #0dd074;
  box-shadow: 7.18653px 0px 8.98316px rgba(0, 0, 0, 0.25);
  max-width: 510px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.billion-left2 {
  max-width: 410px;
}

.billion-left3 {
  max-width: 380px;
}

.billion-lft-cnt h3 {
  font-weight: 700;
  font-size: 60px;
  color: #ffffff;
}

.billion-lft-cnt p {
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
}

.billion-right p {
  font-weight: 700;
  font-size: 25px;
  color: #000000;
  padding-left: 100px;
}

.sports-area {
  padding: 1px 0 120px 0;
  background: #ffffff;
}

.sports-mobil img {
  width: 100%;
}

.sports-left-title {
  max-width: 848px;
}

.sports-left {
  max-width: 900px;
}

.sports-pg {
  max-width: 667px;
}

.about-area2 {
  padding: 74px 0 145px 0;
}

.provide-area {
  background: #ffffff;
  padding: 100px 0 160px 0;
}

.provide-title {
  max-width: 940px;
  margin: auto;
  text-align: center;
}

.provide-title h3 {
  font-weight: 700;
  font-size: 40px;
  color: #000000;
}

.provide-title p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 15px;
}

.provide-item {
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 4px 46px -7px rgba(0, 0, 0, 0.25);
  padding: 53px 54px 50px 54px;
  margin-top: 80px;
}

.provide-item1 {
  padding-right: 40px;
}

.provide-item2 {
  padding-left: 40px;
}

.provide-item h4 {
  font-weight: 700;
  font-size: 40px;
  color: #000000;
  margin-top: 67px;
}

.provide-item p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 10px;
}

.ctv-area {
  background: #ffffff;
  padding: 1px 0 100px 0;
}

.ctv-right {
  max-width: 805px;
}

.ctv-mobil img {
  width: 100%;
}

.maximize-area2 {
  padding-top: 60px;
}

/*==AUDIENCE-PAGE-START==*/
.audience-left a {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  background: #0dd074;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25);
  padding: 9px 90px;
  display: inline-block;
  margin-top: 32px;
  transition: 0.2s all ease;
  text-transform: uppercase;
}

.audience-left a:hover {
  background: #e7fae8;
  color: #000000;
}

.business-area .markating-item {
  min-height: 335px;
  max-width: 391px;
}

.markating-area .markating-item-img {
  min-height: 79px;
}

.business-title {
  max-width: 983px;
}

.business-pg {
  max-width: 846px;
  margin: auto;
}

.business-pg p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 20px;
}

.hundreds-area {
  background: #ffffff;
  padding-top: 100px;
}

.hundreds-main {
  max-width: 1266px;
  margin: auto;
}

.hundreds-left {
  max-width: 542px;
}

.hundreds-item {
  text-align: center;
  background: #ffffff;
  border: 3px solid #0dd074;
  box-shadow: 7.14818px 5.71855px 10.0075px rgba(0, 0, 0, 0.25);
  max-width: 257px;
  padding: 20px;
}

.hundreds-item img {
  max-width: 60px;
}

.hundreds-item2 img {
  max-width: 55px;
}

.hundreds-item h5 {
  font-weight: 700;
  font-size: 20.0149px;
  color: #000000;
  margin-top: 15px;
}

.hundreds-item4 {
  margin-top: 20px;
}

.hundreds-right {
  max-width: 521px;
}

.hundreds-right h3 {
  font-weight: 700;
  font-size: 38px;
  color: #000000;
}

.hundreds-right p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 30px;
}

.billion-area {
  padding: 115px 0 140px 0;
}

.billion-area .col-lg-5 {
  width: 40%;
  flex: 40%;
}

.billion-area .col-lg-7 {
  width: 60%;
  flex: 60%;
}

.billion-area11 .col-lg-5 {
  width: 33%;
  flex: 33%;
}

.billion-area11 .col-lg-7 {
  width: 67%;
  flex: 67%;
}

.billion-area10 .col-lg-5 {
  width: 33%;
  flex: 33%;
}

.billion-area10 .col-lg-7 {
  width: 67%;
  flex: 67%;
}

.billion-right10 {
  padding-left: 28px;
}

.billion-right10 p {
  padding-left: 0;
  font-size: 25px;
}

.billion-right10 span {
  font-weight: 400;
  font-size: 22px;
  color: #000000;
  display: block;
}

.billion-right10 span a {
  color: #000000;
  text-decoration: underline;
}

.billion-right11 {
  padding-left: 11px;
}

.billion-right11 p {
  padding: 0;
}

.billion-right11 span {
  font-weight: 400;
  font-size: 26px;
  color: #000000;
  display: block;
}

.billion-right11 span a {
  color: #000000;
  text-decoration: underline;
}

.cookieless-title {
  max-width: 650px;
}

/*==GRAPH-PAGE-START==*/
.various-area .col-lg-2 {
  width: 25%;
  flex: 25%;
}

.various-area .markating-item {
  min-height: 365px;
}

.billion-area20 {
  padding: 185px 0 175px 0;
}

.globally-left-title {
  max-width: 515px;
}

/*==ABOUt-PAGE-START==*/
.focused-left {
  max-width: 682px;
}

.years-area {
  background: #f9f9f9;
  padding: 62px 0 86px 0;
}

.years-item {
  background: #ffffff;
  box-shadow: 3px 7.5px 7.5px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 24px;
}

.years-item h3 {
  font-weight: 700;
  font-size: 40px;
  color: #0dd074;
}

.years-item p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 10px;
}

.glov-area {
  padding: 150px 0 145px 0;
}

/*GDPR-CCPA-PAGE-START*/
.collect-area {
  background: #f9f9f9;
  padding: 64px 0 89px 0;
}

.collect-title h3 {
  font-weight: 700;
  font-size: 38px;
  color: #000000;
}

.collect-title-pg {
  max-width: 1000px;
  margin: auto;
}

.collect-title p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 20px;
}

.collect-main {
  max-width: 1280px;
  margin: auto;
}

.collect-item {
  background: #ffffff;
  box-shadow: 3px 7.5px 7.5px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 27px;
  min-height: 225px;
  margin-top: 65px;
}

.collect-item img {
  max-width: 69px;
}

.collect-item p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 20px;
}

.collect-item2 p {
  margin-top: 25px;
}

.collect-item3 p {
  margin-top: 40px;
}

.ccpa-left-title {
  max-width: 540px;
}

.laws-area {
  padding: 100px 0 110px 0;
}

.laws-title h3 {
  font-weight: 700;
  font-size: 38px;
  color: #000000;
}

.laws-title {
  max-width: 905px;
  margin: auto;
}

.laws-main {
  max-width: 880px;
  margin: auto;
}

.laws-item {
  background: #ffffff;
  box-shadow: 3px 7.5px 7.5px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 27px;
  margin-top: 44px;
  min-height: 243px;
}

.laws-item p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 20px;
}

.laws-item img {
  max-width: 53px;
}

/*==PRIVACY-POLICY-PAGE-START==*/

.privacy-policy-area {
  padding: 94px 0 143px 0;
  background: url("images/privacy-bg.png") no-repeat;
  background-position: center;
  background-size: cover;
}

.privacy-cnt h3 {
  font-weight: 700;
  font-size: 55px;
  color: #ffffff;
}

.privacy-cnt p {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  margin-top: 15px;
}

.privacy10-area {
  padding: 100px 0 100px 0;
  background: #ffffff;
}

.privacy10-area ul {
  margin-top: 20px;
}

.data-categories-list ul li {
  display: flex;
}

.privacy10-area h4 {
  font-weight: 600;
  font-size: 22px;
  color: #0e080a;
  margin-bottom: 20px;
}

.privacy10-area p {
  font-weight: 300;
  font-size: 18px;
  color: #0e080a;
}

.control-2-list-wrap-left p {
  font-weight: 600;
}

.control-2-list-wrap-left p a {
  color: #0e080a;
  font-weight: 300;
}

.data-categories-list ul li {
  margin-top: 15px;
}

.data-categories-list ul li:first-child {
  margin-top: 0;
}

.all-item {
  margin-top: 20px;
}

.all-pg {
  margin-top: 20px;
}

.data-categories-list ul li span img {
  max-width: 39px;
  margin-right: 12px;
}

.language-box {
  background: #f9f9f9;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  max-width: 390px;
  margin-left: auto;
  padding: 33px 45px 52px 43px;
}

.language-box h4 {
  font-weight: 600;
  font-size: 22px;
  color: #0e080a;
}

.language-box ul li {
  margin-top: 23px;
  border-bottom: 1px solid #000000;
  padding-bottom: 18px;
}

.language-box ul li:first-child {
  margin-top: 33px;
}

.language-box ul li a {
  font-weight: 300;
  font-size: 18px;
  color: #0e080a;
  transition: 0.2s all ease;
}

.language-box ul li a:hover {
  color: #0dd074;
}

.form-header {
  padding: 92px 0 93px 0;
  min-height: calc(
    100dvh - var(--header-height-desktop) - var(--footer-height-desktop)
  );
}

.form-error .privacy-cnt h3,
.form-error .privacy-cnt p {
  color: #0e080a;
}

.form-success {
  background: url("images/otp-bg.png") no-repeat;
  background-position: center;
  background-size: cover;
}

#ccc-icon {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .form-header {
    min-height: calc(
      100dvh - var(--header-height-desktop) - var(--footer-height-tablet)
    );
  }
}

@media screen and (max-width: 767.98px) {
  #optOutEmail {
    margin-bottom: 20px;
  }
  .opt-form-control {
    margin-bottom: 20px;
  }
  .form-header {
    min-height: calc(
      100dvh - var(--header-height-mobile) - var(--footer-height-mobile)
    );
  }
}

/*==OPT-OUT-PAGE-START==*/
.privacy-policy-area2 {
  background: url("images/otp-bg.png") no-repeat;
  background-position: center;
  background-size: cover;
}

.otp-area {
  background: #ffffff;
  padding: 112px 0 140px 0;
}

.otp-area h4 {
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  margin-bottom: 20px;
}

.otp-area p,
.otp-area strong {
  font-size: 20px;
  color: #000000;
}

.otp-area p {
  font-weight: 400;
}

.opt-out-form {
  margin-top: 20px;
}

.opt-out-form form > div {
  display: inline-block;
}

.opt-form-control {
  font-size: 20px;
  margin-right: 20px;
}

.opt-form-control input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-left: 20px;
}

.opt-out-form form input[type="email"],
.opt-out-form form input[type="text"] {
  display: inline-block;
  width: 290px;
  height: 49px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.opt-out-form form input[type="email"] {
  margin-right: 20px;
}

.opt-out-form form button {
  min-width: 290px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  background: #0dd074;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25);
  padding: 9px 85px;
  display: inline-block;
  transition: 0.2s all ease;
  text-transform: uppercase;
}

.opt-out-form form button:hover {
  background: #e7fae8;
  color: #000000;
}

.desktop-item-list ul li {
  display: flex;
  margin-top: 15px;
}

.desktop-item-list ul {
  margin-top: 20px;
}

.desktop-item-list ul li:first-child {
  margin-top: 0;
}

.desktop-item-list ul li span img {
  max-width: 39px;
  margin-right: 9px;
}

.out-information-item h4:nth-of-type(2) {
  margin-top: 20px;
}

.desktop-item-list ul li p {
  margin-top: 0;
}

.mobile-device-item {
  margin-top: 20px;
}

.mobile-device-item p:nth-of-type(2) {
  margin-top: 20px;
}

/*==CONTACT-AREA-START==*/
.contact-area {
  background: #ffffff;
  padding: 100px 0 100px 0;
}

.contact-main {
  max-width: 950px;
  margin: auto;
}

.address-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #ffffff;
  border: 2px solid #0dd074;
  box-shadow: 3px 7.5px 7.5px rgba(0, 0, 0, 0.25);
  padding: 49px 113px 65px 163px;
  margin-top: 80px;
}

.address-right {
  padding-left: 109px;
}

.contact-main h3 {
  font-weight: 700;
  font-size: 50px;
  color: #000000;
}

.contact-main p {
  font-weight: 400;
  font-size: 50px;
  color: #000000;
}

.address-box h4 {
  font-weight: 700;
  font-size: 50px;
  color: #000000;
}

.address-box ul li {
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  transition: 0.2s all ease;
}

.address-left ul {
  margin-top: 20px;
}

.address-right ul li {
  margin-top: 10px;
}

.address-right ul li:first-child {
  margin-top: 0;
}

.address-right ul li span img {
  max-width: 35px;
  margin-right: 15px;
}

.changebox {
  color: #ff5722;
  overflow: hidden;
  transition: 0.5s;
  white-space: nowrap;
}

.otp-area p.optOutStatus--in {
  color: #008000;
}

.otp-area p.optOutStatus {
  font-weight: 700;
}

.otp-area p.optOutStatus--out {
  color: #ff6060;
}

.relative {
  position: relative;
}

.optOut__pixel {
  display: block;
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}
