.nav-container {
  padding: 0 46px !important;
}

.full-screen-menu {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 999;
  display: block;
  border-bottom: 1px solid #ccc;
  box-shadow: 1px 1px 20px 1px #12122440;
  font-family: "Roboto", sans-serif !important;
}

.full-screen-menu .navbar-brand {
  margin: 1.5% 0;
}

.top-menubar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menubar li {
  display: inline-block;
}

.menubar li a i {
  margin-left: 6px;
  color: #000;
  font-weight: 700;

}

.menubar li a {
  padding: 0px 20px;
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  height: 28px;
}

.topbar-btn a {
  padding: 5px 20px;
  height: 37px;
  line-height: 22px;
  background: #ff2d55;
  color: #fff;
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px;
  border-bottom-left-radius: 20px;
  right: 0;
  top: 0;
}

.menubar li a:hover,
.menubar li:hover a i {
  color: #c61000;
}

.mobile_header {
  height: 50px;
  display: none;
  font-size: 1.5rem;
  line-height: 50px;
  background: #fff;
  position: fixed;
  z-index: 100;
  top: 0px;
  width: 100%;
}

.mobile_menu {
  position: absolute;
  right: 0px;
  color: #000;
  width: 50px;
}

.toggle-button {
  z-index: 1000;
}

.mobile-nav {
  display: none;
  font-size: 1.5rem;
  line-height: 50px;
  background: #fff;
  position: fixed;
  z-index: 100;
  top: 0px;
  width: 100%;
}

.mobile_menu i.menu {
  color: #000;
  padding: 0px 10px;
}

.mobile_menu i.hamburger {
  display: inline-block;
}

.menu-wrap {
  background-color: #111;
  position: fixed;
  top: 0;
  height: 100%;
  width: 280px;
  right: -280px;
  font-size: 1em;
  font-weight: 700;
  overflow: auto;
  transition: 0.15s;
  z-index: 10;
}

.menu-sidebar {
  margin: 0px;
  position: relative;
  top: 50px;
}

.menu {
  margin: 0px;
  padding: 0px;
}

main {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  box-shadow: 0 0 50px #000;
  transition: transform 0.5s;
}

.nav-open main {
  transform: scale(0.8);
}

/* h1 {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 45px;
    color: white;
} */

.nav-trigger {
  position: fixed;
  z-index: 4;
  top: 35px;
  right: 10px;
  height: 44px;
  width: 44px;
  overflow: hidden;
  color: transparent;
  white-space: nowrap;
  text-indent: 100%;
}

.nav-trigger span,
.nav-trigger span::before,
.nav-trigger span::after {
  position: absolute;
  height: 2.8px;
  width: 30px;
  background: #000;
}

.nav-trigger span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
  background: #000;
}

.nav-trigger span::before,
.nav-trigger span::after {
  content: "";
  top: 0;
  left: 0;
  transition: background 0.3s, transform 0.3s;
}

.nav-trigger span::before {
  transform: translateY(-8px);
}

.nav-trigger span::after {
  transform: translateY(8px);
}

.nav-trigger:hover span,
.nav-trigger:hover span::before,
.nav-trigger:hover span::after {
  background: #c61000;
}

.nav-open .nav-trigger span {
  background: transparent;
}

.nav-open .nav-trigger span::before,
.nav-open .nav-trigger span::after {
  background: #1f2b3d;
}

.nav-open .nav-trigger span::before {
  transform: rotate(-45deg);
}

.nav-open .nav-trigger span::after {
  transform: rotate(45deg);
}

.overlay {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1c1d21;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}

.nav-open .overlay {
  opacity: 0.6;
  visibility: visible;
}

.nav-container {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 570px;
  padding: 0 60px;
  background: #000;
  overflow: auto;
  transform: translateZ(0);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
}

.nav-open .nav-container {
  transform: translateX(0);
}

.nav-container h2 {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #f44336;
  margin: 1.5em 0;
}

.mobile-menu a {
  display: block;
  padding: 5px 0;
  font-size: 40px;
  font-weight: bold;
  font-family: serif;
  text-decoration: none;
  color: #fff;
  transform: translateZ(0);
}

.mobile-menu a:hover {
  color: #c61000;
}

.nav-open .mobile-menu a {
  animation: slide-in 0.4s 0.2s backwards;
}

.nav-open .mobile-menu li:nth-of-type(2) a {
  animation-delay: 0.3s;
}

.nav-open .mobile-menu li:nth-of-type(3) a {
  animation-delay: 0.4s;
}

.nav-open .mobile-menu li:nth-of-type(4) a {
  animation-delay: 0.5s;
}

.nav-open .mobile-menu li:nth-of-type(5) a {
  animation-delay: 0.6s;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu li a i {
  margin-left: 10px;
  font-size: 21px;
}

.mobile-menu li .submenu {
  margin-left: 30px;
}

.mobile-menu li .submenu li {
  border-bottom: 1px solid #cccccc4d;
  padding: 5px 0;
}

.mobile-menu li .submenu li .submenu li:last-child {
  border-bottom: transparent;
  padding: 0px 0;
}

.mobile-menu li .submenu li a {
  font-size: 28px;
  font-weight: 100;
}

.mobile-menu li .submenu li .submenu a {
  font-size: 24px;
}

.mobile-menu li .submenu li .submenu a i {
  margin-right: 10px;
  font-size: 8px;
}

.tp-mb-contact {
  margin-top: 100px;
}

.tp-mb-contact a {
  font-size: 20px;
  color: #fff;
  display: block;
}

.tp-mb-contact a i {
  margin-right: 10px;
  color: red;
}

img {
  max-width: 100%;
}

.hero-bg {
  background: url(../img/hero2.jpg);
}

.bg-btn {
  background-color: #c61000;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 3.1px;
  border: 1px solid #c61000;
  text-transform: uppercase;
}

.navbar-nav a i {
  font-size: 18px;
  margin: 0 5px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.navbar-nav a:hover i {
  transform: rotate(180deg);
}

.menubar .dropdown .submenu {
  position: absolute;
  background-color: #f9f9f9;
  min-width: 980px;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
  padding: 18px 16px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  margin-top: 19px;
  /* border-radius: 10px; */

  border: 1px solid #ccc;
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);


  left: -300%;
  top: 127%
}

.submenu-flex {
  display: flex;
  justify-content: end;
}

.submenu-box1 {
  width: 40%;
}

.submenu-box2 {
  width: 35%;
}

.submenu-box3 {
  width: 23%;
}

.submenu h5 {
  font-size: 1.2em;
  margin-bottom: 3%;

  color: #c61000;
  letter-spacing: 0.3px;
}

.submenu ul li {
  line-height: 10px !important;
}

.submenu .mt-4 {
  margin-top: 2rem !important;
}

.submenu ul {
  padding: 0;
  margin: 0;
}

.submenu a {
  padding: 0 !important;
}

.submenu li a {
  font-size: 14.0px !important;
  font-weight: 400;
}

.mobile-submenu-box1 h5 {
  font-size: 18px;
  color: #c61000;
  margin-bottom: 1%;
  margin-top: 7%;
}

.mobile-submenu-box1 a {
  font-size: 15px !important;
  font-weight: 400;
  font-family: 'Roboto', sans-serif !important;
  margin: 0 !important;
  letter-spacing: 0.5px;
}

.mobile-submenu-box1 li {
  line-height: 30px !important;
}

.menubar .dropdown .submenu li {
  width: 100%;

}



.menubar .dropdown .submenu li:hover {
  color: #000;
}

.menubar .dropdown .submenu a {
  text-transform: capitalize;
  display: flex;
  align-items: center;
  letter-spacing: 0.4px;
  line-height: 20px;
}

.menubar .dropdown .submenu a:hover {
  color: #596c85;
  text-decoration: none;
}

.menubar .dropdown .submenu .submenu-img {
  background: #e8e8e8;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 40px;
  line-height: 50px;
  margin-right: 10px;
}

.menubar .dropdown:hover .submenu {
  visibility: visible;
  opacity: 1;
}

.menubar .dropdown .submenu>.dropdown .submenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 290px;
  top: 0px;
  border-radius: 0;
  width: 308px;
  padding: 0;
  margin: 0;
}

.menubar .dropdown .submenu>.dropdown .submenu:before {
  content: "";
  position: absolute;
  /* background: red; */
  border: 10px solid;
  border-color: transparent white transparent transparent;
  left: -20px;
}

.menubar .dropdown .submenu>.dropdown .submenu:before {
  border-width: 14px;
  border-left-color: transparent;
  border-left-width: 0;
  border-top-color: transparent;
  border-right-color: #f9f9f9;
  margin: -20px 0 0;
  left: -11px;
  right: auto;
  top: 30%;
  bottom: auto;
  content: "";
  position: absolute;
}

.menubar .dropdown .submenu>.dropdown:hover .submenu {
  visibility: visible;
  opacity: 1;
}

.menubar .dropdown .submenu>.dropdown .submenu li {
  border-bottom: 1px solid #ccc;
  padding: 18px 0;
}

.menubar .dropdown .submenu>.dropdown .submenu li a i {
  font-size: 7px;
  color: red;
  margin-right: 10px;
}

.home-contact-info {
  border-bottom: 1px solid #ccc;
  padding: 9px 0;
  text-align: right;
}

.home-contact-info a {
  padding: 10px 15px;
  color: black;
}

.home-contact-info a i {
  margin-right: 12px;
  color: #d8042a;
}

.our-main-feature .section-title {
  margin-bottom: 40px;
  text-transform: capitalize;
}

.feature_inner {
  background: url(../img/img-1.webp) no-repeat right, #dad4b4;
  border-radius: 20px;
  box-shadow: 18px 20px 16px 1px #dad4b45e;
}

.our-main-feature {
  padding: 30px 40px;
}

.box-container {
  background: url(../img/wave_bg_1.webp) center center no-repeat;
  background-size: cover;
  padding-top: 150px;
}

.inner-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.inner-feature li h4 {
  font-size: 28px;
  margin: 12px 0 0;
  font-family: "Montserrat", sans-serif !important;
}

.inner-feature li p {
  color: #000;
  margin-top: 12px;
  font-size: 17px;
}

.inner-feature li i {
  font-size: 40px;
  color: #65614c;
  margin-bottom: 12px;
}

.features-btn {
  display: flex;
  align-items: center;
}

.features-btn a {
  color: #000;
  /* font-weight: 600; */
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.features-btn a:first-child {
  margin-right: 20px;
  border-color: #000;
  font-family: "Montserrat", sans-serif !important;

}

.box-item-main-cnt {
  /* height: 658px; */
  /* width: 35%; */
  /* float: right; */
  background-color: #00222e;
  background: -moz-linear-gradient(90deg,
      rgba(1, 1, 1, 0) 0%,
      rgba(11, 11, 29, 0.27) 27%,
      rgb(20, 20, 56) 100%);
  background-image: -webkit-linear-gradient(98deg,
      rgba(1, 1, 1, 0) 0%,
      rgba(11, 11, 29, 0.27) 27%,
      rgb(56 1 14) 100%);
  box-shadow: 0px 0px 32px 0px rgb(1 1 1 / 15%);
  position: relative;
  top: -60px;
  padding: 100px 50px;
  border-radius: 10px;
}

.box-item-main-cnt h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 40px;
  font-family: "Montserrat", sans-serif !important;

}

.box-item-main-cnt p {
  font-size: 19px;
  color: #fff;
  line-height: 28px;
  font-family: "Montserrat", sans-serif !important;
}

.inner-box-container {
  display: flex;
}

.box-item {
  position: relative;
  /* -webkit-backface-visibility: hidden; */
  width: 385px;
  margin-bottom: 35px;
  margin-right: 20px;
  max-width: 100%;
}

.news-section {
  padding: 30px 0 40px 0;
  /* background: url(../img/content_bg_2.jpg) center center no-repeat; */
  background-size: cover;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-list {
  text-align: left;
  margin-top: 10px;
}

.flip-list li {
  color: #fff;
  list-style: disc;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 475px;
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}

.flip-box .inner i {
  color: #fff;
  font-size: 22px;
}

.flip-box-header {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif !important;
}

.flip-box p {
  font-size: 20px;
  line-height: 1.5em;
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
}

.flip-box-img {
  margin-top: 25px;
  width: 20px;
  height: 20px;
}

.btn-white a {
  border: 1px solid #fff;
  margin-top: 20px;
  color: #fff;
  text-transform: uppercase;
}

.btn-white a:hover {
  background: #fff;
  color: #000;
}

.news-section .section-title h4 {
  /* font-size: 80px; */
  color: #000;
  line-height: 29px;
  font-family: "Montserrat", sans-serif !important;
}

.news-box {
  padding: 30px;
  box-shadow: 1px 1px 20px 1px #dbdada;
  background: linear-gradient(0deg, #8d99af61 0%, rgba(255, 255, 255, 0) 100%);
  /*height: 561px*/
  border-radius: 20px !important;

}

.news-box .date {
  /* margin-bottom: 30px; */
  display: block;
}

.news-box .date i {
  margin-right: 10px;
}

.news-box h3 {
  margin: 25px 0 10px 0;
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  color: #d8042a;
}

.news-box a i {
  font-size: 10px;
  margin-left: 10px;
}

.b-space {
  margin-bottom: 22% !important;
}

.news-highlights .testimonial-area .owl-controls {
  margin-top: 24px !important;
}

.live-section {
  box-shadow: 1px 1px 20px 1px #e9e5e5;
  margin-bottom: 30px;
}

.twitter {
  display: flex;
  padding: 30px;
}

.twitter span {
  color: #2196f3;
  font-size: 19px;
  font-weight: 500;
  margin-right: 10px;
  display: inline-block;
}

.twitter p {
  font-size: 13px;
  margin: 0;
}

.left-contact-info p a {
  color: red;
}

.judgments-section {
  background: url(../img/home-page/judgments-section-bg.jpg)top left no-repeat;
  background-size: cover;
  position: relative;

}

.judgments-section:before {
  background: linear-gradient(128deg, #000000e3, #12122400);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.judgments-main-bx {
  display: flex;
  justify-content: space-around;
}

.judgments-info {
  height: 718px;
  border-left: 1px solid #616161;
  text-align: center;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  padding-top: 20%;
}

.judgments-info:hover {
  background: #121224;
  transform: scale(1.1);
  border-left: 1px solid #121224;
  z-index: 11;
}

.judgments-info:last-child {
  border-right: 1px solid #616161;
}

.judgments-info h3 {
  font-size: 14.5px;
  color: #fff;
  line-height: 25px;
  letter-spacing: 2.0px;
  position: relative;
  text-transform: uppercase;
  width: 200px;
  margin: 0 auto;

  padding-bottom: 256px;
  font-family: "Montserrat", sans-serif !important;
}

.judgments-info h3:before {
  content: url(../img/graphicdetail.png);
  position: absolute;
  top: 217px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.practice-area-dots-hover {
  position: absolute;
  /* opacity: 0; */
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 480px;
}



.join-us {
  background: url(../img/join-us.webp) no-repeat center center;
  background-size: cover;
  position: relative;
}

.join-us:before {
  content: "";
  background: #16191eab;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.join-us-heading h2 {
  color: #fff;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif !important;
}

.join-us-info p {
  color: #fff;
  margin: 30px;
  font-size: 18px;
}

.contact-sec {
  position: relative;
  padding: 80px 0;
  background-color: #000;
}

.expertise_cnt {
  margin: 50px 0;
}

.list-expertise {
  display: flex;
}

.list-expertise li {
  padding: 15px 0;

  max-width: 530px;
  color: #000;
  width: 100%;
}

.list-expertise li a:hover,
.list-expertise li:hover {
  color: #c61000;
}

.list-expertise li:last-child {
  border-bottom: 1px solid transparent;
}

.get-touch-small {
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  margin-bottom: 5%;
}

.list-expertise li a {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.list-expertise li a i {
  margin-right: 13px;
  background: #d8042a;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 100px;
  color: #fff;
}

.crypto-defi-banner {
  padding-top: 270px;
}

.get-left-content h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif !important;
  line-height: 56px;
  letter-spacing: 0.5px;
}

.get-left-content p,
.expertise_cnt p {
  color: #f1f1f1;
}

.expertise_cnt h3 {
  color: #d8042a;
  font-size: 2em;
  margin-bottom: 2%;
}

.contact-info-detail {
  background-color: #121224;
  padding: 30px;
}

.finjury-form input,
.finjury-form select,
.finjury-form textarea {
  background: #ffffff26;
  border: 1px solid transparent;
  padding: 20px 13px;
  border-radius: 5px;
  font-size: 14px;
}

.finjury-form input:focus,
.finjury-form textarea:focus,
.finjury-form .nice-select:focus {
  background: transparent;
  box-shadow: 0 0 5px 0rem #000000;
  border-color: #ffffff3d;
  color: #fff;
}

.finjury-form .nice-select,
.request-demo-form .nice-select {
  width: 100%;
  line-height: 30px;
  background-color: #252540;
  border: solid 1px transparent;
  border-radius: 5px;
  color: #9e9e9e;
  font-size: 14px;
  padding: 5px 13px;
}

.finjury-form .nice-select .list,
.request-demo-form .nice-select .list {
  width: 100%;
  overflow: auto;
  height: 150px;
  color: #000;
}

.form-head-section h4 {
  font-size: 25px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  position: relative;
  color: #d8042a !important;
}



.footer-social a {
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border: 1px solid;
  border-radius: 50px;
  flex: 0 0 60px;
  margin: 0 10px;
  line-height: 60px;
}

.tax-services-bx:hover h2,
.footer-social a:hover {
  color: #d8042a;
}

.footer-nav {
  padding: 30px 0;
}

.footer-nav a:hover {
  color: #d8042a;
}

.footer-nav a {
  padding: 0px 36px;
  color: #fff;
}

/* International Business Expansion style  */

.intro {
  position: relative;
}

.intro:before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #cccccc69;
  width: 100%;
  height: 1px;
  bottom: 71px;
}

.entering-mrk-info {
  text-align: center;

  padding: 30px;
  height: 100%;
}

.entering-mrk-info img {
  filter: contrast(0.5);
}

.entering-mrk-info h3 {
  margin: 30px 0 15px 0;
  color: #d0cfcf;
}

.we-offer {
  background: #000 url(../img/we-offer-bg.gif) no-repeat center center;

  background-size: cover;
  position: relative;
}

.we-offer h2 {
  color: #000 !important;
}

.we-offer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 238, 238, 0.87);

  top: 0;
}

.offer-list li {
  color: #fff;
  padding: 13px 30px;
  font-size: 17px;
  display: flex;
  background-color: #ffffff4f;
  margin: 30px 0;
  border-radius: 0 30px 30px 30px;

  box-shadow: 0 0 10px 0 #00000036;
}

.offer-list li i {
  margin-right: 10px;
  margin-top: 3px;
}

.main-sentence {
  background-size: cover;
  width: 55%;
  background: #000;

  display: inline-block;

  clip-path: polygon(0 0, 100% 0%, calc(100% - 90px) 100%, 0% 100%);
}

.main-sentence-wrap {
  background: url(../img/growth2.jpg) top right no-repeat;
  background-size: 68%;
}

.main-sentence-box {
  padding: 20% 20% 20% 15%;
}

.main-sentence-box a {
  width: 200px;
  height: 50px;
  background-color: #c8171d;
  display: block;
  text-align: center;
  color: #fff;
  margin: auto;
  line-height: 50px;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
  margin-top: 5%;
}

.main-sentence h1 {
  max-width: 670px;
  margin: 0 auto;
  color: #fff;
  width: 100%;
  font-size: 3.5em;
  line-height: 70px;
}

.benefits {
  background: #efefef;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
  box-shadow: 8px 8px 0 0 #000;
  border-radius: 40px;
}

.benefits h3 {
  margin-bottom: 20px;
}

.fin-tech-bx h2 {
  margin: 20px 0;
  font-size: 25px;
}

.fintech-team {
  display: flex;
  justify-content: space-around;
}

.fintech-team li {
  border: 1px solid #ccc;
  padding: 50px 30px;
  text-align: center;
}

.fintech-team li img {
  margin-bottom: 20px;
}

.tax-advisory::before {
  content: '';
  position: absolute;
  background: #f2f2f2;
  min-width: 380px;
  height: 100%;
  top: 0;
  max-width: 100%;
}

.tax-advisory .section-title h1 {
  margin-bottom: 20px;
  display: block;
  color: #263a4e;
  text-align: right;
}

.tax-advisory-list li {
  list-style: decimal-leading-zero;
  padding: 13px 0;
}

.inner-list {
  margin-left: 30px;
}

.inner-list li {
  list-style: circle;
}

.tax-advisory {
  position: relative;
}

.tax-advisory-list {
  margin-left: 30px;
}

.tax-advisory .section-title {
  padding: 0px 70px;
}

.tax-advisory h1 {
  margin-bottom: 3%;
  display: block;
  text-align: center;
  color: #000;
}

.tax-advisory p {
  text-align: left;
}

.tax-advisory-content {
  margin-left: 0;
}

.tax-advisory-content h4 {
  color: #ed1b23;
}

.tax-services {
  display: flex;
  justify-content: space-between;
}

.difc-crowdfunding {
  padding: 3% 0 7%;
  background: url(../img/difc-crowdfunding-bg.jpg) top left no-repeat;
  background-size: cover;
}

.difc-crowdfunding h1 {
  color: #000;
  text-align: center;
  margin-bottom: 3%;
}

.difc-crowdfunding h3 {
  text-align: center;
  margin-bottom: 1%;
  color: #000;
}

.difc-crowdfunding p {
  color: rgb(61, 61, 61);
}

.difc-crowdfunding-list {
  display: flex;
  justify-content: space-between;
}

.dcl {
  height: auto;
  border: 5px solid #dcdcdc;
  margin: 20px;
  padding: 20px;
  text-align: center;
  display: grid;
  justify-items: center;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.5px;
  font-size: 1.2em;
}

.difc-crowdfunding-list-icon {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  line-height: 100px;
  border: none !important;
  background: rgb(219, 29, 33);
  background: linear-gradient(0deg,
      rgba(219, 29, 33, 1) 0%,
      rgba(158, 25, 29, 1) 99%);
  margin: 0 0 15px 0 !important;
  box-shadow: 1px 4px 0 0 rgb(49, 49, 49);
}

.difc-crowdfunding-list-icon img {
  margin-bottom: 5%;
  width: 45%;
}

.uae-free-zone {
  padding: 3% 0;
}

.uae-free-zone h1 {
  color: #000;
}

.conclusion {
  background-color: #f1f1f1;
  padding: 4% 0 9%;
}

.conclusion-wrap {
  background-color: #fff;
  padding: 40px;
  border-radius: 50px;
  box-shadow: 0 0 50px 0 #0000001c;
}

.conclusion-wrap h1 {
  color: #000;
  margin-bottom: 15px;
}

.tax-services-bx {
  width: 300px;
  height: 170px;
  border: 1px solid #0e142417;
  text-align: center;
  padding: 30px;
}

.tax-services-bx img {
  filter: drop-shadow(-12px 2px 6px #999);
}

.tax-services-bx h2 {
  font-size: 15px;
  margin: 20px 0;
}

.characteristics-p2p {
  border: 1px solid #ccc;
  padding: 30px;
  height: 100%;
}

.characteristics-p2p span {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.faq-section {
  background: url(../img/content_bg_2.jpg) center bottom no-repeat;
  background-size: cover;
}

.centerplease {
  margin: 0 auto;
  max-width: 270px;
  font-size: 40px;
}

/*Question*/

.question {
  color: #fff;
  font-weight: 500;
  position: relative;
  background: #0e1424;
  margin: 0;
  padding: 16px 20px;
  display: block;
  width: 100%;
  cursor: pointer;
}

/*Answer*/

.answers {
  padding: 0px 15px;
  margin: 5px 0;
  width: 100% !important;
  height: 0;
  overflow: hidden;
  z-index: 1;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.answers ol {
  list-style: decimal;
  margin-left: 20px;
}

.questions:checked~.answers {
  height: auto;
  opacity: 1;
  padding: 15px;
}

/*FAQ Toggle*/

.plus {
  position: absolute;
  right: 40px;
  z-index: 5;
  font-size: 2em;
  line-height: 45px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.questions:checked~.plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.questions {
  display: none;
}

.contact-tab {
  background: #343a40 url(../images/landing-christmas-day-bg-decor.png) no-repeat;
  padding: 60px 0 0 30px;
  height: 100%;
  border-radius: 5px;
  background-position: center 95%;
  max-height: 100%;
  margin-bottom: 60px;
}

.contact-tab .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  /* background: #fff; */
  text-decoration: none;
  color: #2f2f2f;
  background: #f7f7f7;
  border-radius: 40px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  padding: 20px;
  margin: 10px 0 20px;
}

.contact-tab .nav-pills .nav-link img {
  margin-right: 10px;
}

.contact-tab .nav-pills .nav-link {
  /* color: #000; */
  border-radius: 0.25rem;
  color: white;
  font-size: 16px;
  margin: 10px 0;
  text-transform: capitalize;
  font-weight: 600;
}

.left-contact-info h3 {
  font-size: 60px;
  font-weight: 800;
  color: #ccc;
}

.left-contact-info small {
  color: #000;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 30px;
  display: block;
}

.contact-us-form-1 {
  background: #222431;
  padding: 54px;
  box-shadow: 1px 1px 20px #00000070;
}

form.contact-us-form-1 input,
.contact-us-form-1 textarea,
.contact-us-form-1 select {
  background: #1d1e25;
  border: none;
}

.connect-btn {
  background: #ed1c24;
  border-radius: 3px;
  padding: 12px 50px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
  border: transparent;
  width: 100%;
  letter-spacing: 2px;
}

.inner-call-content a {
  display: flex;
  line-height: 40px;
  color: #000;
  font-weight: 700;
}

.inner-call-content a i {
  background: #2224310d;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #343a40;
  line-height: 40px;
  margin-right: 20px;
}

.contact-social-media .inner-smedia {
  display: flex;
}

.contact-map-address a button {
  background: #42484d;
  border: none;
  padding: 10px 25px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  width: 100%;
}

.contact-map-address a button:hover {
  background: red;
}

.contact-social-media .inner-smedia li a {
  color: #343a40;
}

.contact-social-media .inner-smedia li {
  background: #d8d3d3;
  width: 40px;
  margin: 15px 10px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #ed1c24;
  border-radius: 40px;
}

.about-us {
  position: relative;
}

.about-banner-main i {
  font-size: 40px;
}

.about-banner-main h1 {
  text-align: left;
  color: #000;
  font-size: 40px;
  line-height: 50px;
}

.about-banner-main p {
  color: #000;
  font-size: 1.1em;
  margin-top: 15px;
  text-align: left !important;
}

.about-content img {
  margin-bottom: 30px;
}

.about-content p {
  font-size: 19px;
  color: #000;
}

.about-cnt h2 {
  margin-bottom: 30px;
}

.about-cn h1 {
  margin-bottom: 3%;
}

.our-strength {
  text-align: center;
}

.our-strength img {
  box-shadow: 1px 1px 12px 9px #e9ecef;
  height: 200px;
  margin-bottom: 30px;
}

.our-strength_content p {
  color: red;
  margin-top: 10px;
  font-weight: 500;
}

.inner-care-sec {
  background: #f3f3f3;
  text-align: center;
  margin-bottom: 20px;
  padding: 40px;
  position: relative;
}

.inner-care-sec:before {
  background: #e91e63;
  content: "";
  width: 30%;
  height: 2%;
  position: absolute;
  bottom: 0;
  left: 35%;
}

.inner-care-sec h3 {
  font-size: 18px;
  margin: 20px;
  font-weight: 500;
  line-height: 25px;
}

.request-demo-form {
  background: #121224;
  padding: 54px;
}

.request-demo-form input,
.request-demo-form textarea {
  background: #252540;
  border: none;
  color: #fff;
  padding: 26px 20px;
  border: 1px solid #353535;
  border-radius: 0;
}

.form-se-title h6 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 100;
}

.privacy-sec {
  padding-top: 180px;
}

.privacy-sec h3 {
  margin-bottom: 20px;
  margin-top: 40px;
}

.copyright a {
  color: #9e9e9e;
}

.ft-secur {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.ft-secur li {
  margin: 14px 10px 20px;
}

@media (min -width: 1199px) {
  .flip-box .inner {
    padding: 10px;
  }

  .flip-box .inner {}
}

@media (max-width: 991px) {

  .feature_inner {
    background: #dad4b4;
  }

  .inner-feature li h4 {
    font-size: 30px;
  }

  .features-btn a {
    font-size: 16px;
  }

  .list-expertise li {
    width: 100%;
  }

  .inner-box-container {
    display: block;
  }

  .flip-box-header {
    font-size: 20px;
  }

  .full-screen-menu {
    display: none;
  }

  .mobile-nav {
    display: block;
    border-bottom: 2px solid #ccc;
  }

  .about-us:before {
    width: 100%;
  }

  .judgments-main-bx {
    display: block;
  }

  .judgments-info {
    height: 240px;
    border-left: transparent;
    border-bottom: 1px solid #cccccc4d;
  }

  .judgments-info h3 {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
  }

  .judgments-info h3 {
    padding-top: 110px;
    width: 100%;
  }

  .judgments-info h3:before {
    top: 30px;
  }

  .practice-area-dots-hover {
    top: 180px;
  }

  .judgments-info:last-child {
    border-right: 1px solid transparent;
  }

  .box-item-main-cnt {
    padding: 40px;
    top: 0;
    margin-bottom: 40px;
  }

  .tax-services {
    display: inline-block;
  }
}

@media (max-width: 767px) {



  .inner-box-container {
    display: block;
  }

  .box-item {
    width: 100%;
  }

  .judgments-main-bx {
    display: block;
  }

  .judgments-info {
    height: 240px;
    border-left: transparent;
    border-bottom: 1px solid #cccccc4d;
  }

  .judgments-info h3 {
    padding-top: 110px;
    width: 100%;
  }

  .judgments-info h3:before {
    top: 30px;
  }

  .practice-area-dots-hover {
    top: 180px;
  }

  .judgments-info:last-child {
    border-right: 1px solid transparent;
  }

  .twitter {
    display: block;
    text-align: center;
  }

  .box-item-main-cnt h2 {
    font-size: 25px;
  }

  .flip-box .inner {
    padding: 20px;
  }

  .tax-services {
    display: block;
  }

  .tax-services-bx {
    width: 100%;
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .anti-money {
    background: #eee url(../img/aml/anti-money.png)top left no-repeat !important;
    background-size: cover !important;
  }

  .aml-banner {
    padding-top: 21% !important;
  }

  .aml-banner p {
    background-color: #17182ac7;
    text-align: center;
    font-size: 1.2em !important;
  }

  .aml-banner h1 {
    font-size: 2em !important;
    text-align: center;
    line-height: 47px !important;
  }

  .aml-banner {
    background: url(../img/aml/aml-banner.jpg) top left no-repeat !important;

  }

  .comprehensive-aml-Services-box2,
  .comprehensive-aml-Services-box {

    height: auto !important;
    margin-bottom: 5% !important;

  }

  .step-towards-compliance {

    background: #272a2f url(../img/aml/step-towards-compliance.png)top left no-repeat !important;

  }

  .start-your-journey h3 {
    font-size: 1.5em !important;
    line-height: 45px !important;
    text-align: center !important;
  }

  .our-services-aml {
    margin-bottom: 4% !important;
    height: auto !important;

  }

  .list-expertise li {
    padding: 0 !important;
  }

  .list-expertise li a {
    font-size: 17px !important;
  }

  .list-expertise li a i {
    margin-right: 7px !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 31px !important;

  }

  .expertise_cnt {
    margin: 27px 0 !important;
  }

  .get-left-content h2 {

    font-size: 1.5em !important;
    margin-bottom: 10px !important;
    line-height: 31px !important;

  }

  .grow-with-us-img {
    display: none !important;
  }

  .brands-area p {
    text-align: center;
    margin-bottom: 5%;
  }

  .brands-area h2 {
    font-size: 1.5em !important;
    text-align: center;
    margin-bottom: 0 !important;
  }

  .thumb {
    margin-left: 0 !important;
  }

  .single-testimonial .thumb img {
    width: 52px !important;
  }

  .judgments-section-flex {

    padding: 19px !important
  }

  .judgments-section-flex-text p {
    font-size: 1.1em !important;
    line-height: 26px !important;
  }

  .judgments-section-flex-img {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    line-height: 50px !important;

  }

  .home-services-box li::before {

    margin-left: -5.5% !important;
  }

  .home-services-box li {

    padding-left: 8% !important;
  }

  .home-services-box h5 {
    width: auto !important;
  }

  .home-services-box-flex .col-lg-6:nth-child(4) .home-services-box {

    padding-left: 12% !important;

  }

  .home-services-box-flex .col-lg-6:nth-child(2) .home-services-box {
    padding-left: 11% !important
  }

  .home-services-box {
    height: auto !important;
  }

  .home-services-box-flex .col-lg-6:nth-child(1) .home-services-box p {
    line-height: 34px !important;
  }

  .home-services-box h3 {
    font-size: 1.7em !important;
    letter-spacing: 0.5px;
  }

  .home-services-box-flex .col-lg-6:nth-child(1) .home-services-box {

    padding-left: 11% !important
  }

  .presence-in-flag-box h5 {
    font-size: 1.1em !important;
  }

  .presence-in-flag-box img {

    width: 80px !important;
    height: 80px !important;

  }

  .presence-in-flag-box {
    width: 33.33% !important;
    padding: 20px 0 !important;
  }

  .presence-in h2 {
    margin-top: 3% !important;
    font-size: 1.5em !important;
    letter-spacing: 0.5px;
    margin-bottom: 5%;

  }

  .presence-in {

    padding-top: 9% !important;

  }

  .free-call a {
    padding: 15px 15px !important;
    font-size: 1em !important;
  }

  .free-legal-advice {

    padding: 30px 16px !important;
  }

  .world-class-service-text-box {
    margin-bottom: 1% !important;
  }

  .world-class-service-text-box-img {
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    flex: 0 0 50px !important;
  }

  .world-class-service-text-box h3 {

    font-size: 1.3em !important;
  }


  .world-class-service h2 {
    font-size: 1.5em !important;
    margin-top: 3% !important;
    line-height: 35px !important;
    margin-bottom: 5% !important;

  }

  .world-class-service-text small {
    margin-left: 7% !important;
  }

  .world-class-service-img img {
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 5%;
  }

  .combat-cybercrime-box-img {
    width: 100% !important;

    flex: 0 0 100% !important;
    margin-right: 0px !important;
  }

  .our-cybercrime-experts h5 {

    width: 92% !important;

  }

  .our-cybercrime-experts {
    padding: 20px !important;
  }

  .cyber-crime-professionals-assist-b {
    height: auto !important;
  }

  .combat-cybercrime-box h5 {
    margin-top: 20px;
  }

  .combat-cybercrime-box {
    padding: 26px !important;
  }

  .combat-cybercrime-box h5,
  .combat-cybercrime-box p {
    text-align: center !important;
  }

  .combat-cybercrime-box {
    display: flex;
    flex-wrap: wrap;

  }

  .combat-cybercrime h2,
  .cyber-crime-professionals-assist h2 {

    font-size: 2em !important;
    line-height: 38px !important;
  }

  .cyber-crime-we-help-you h3 {
    padding-top: 0 !important;
    margin-bottom: 5%;
    text-align: center !important;
    font-size: 1.5em !important;
  }

  .cyber-crime-we-help-you {
    padding: 20px !important;
    height: auto !important;

  }

  .what-is-cyberc {
    padding-top: 5%;
    padding-bottom: 105% !important;
    background: #221b19 url(../img/cyber-crime/what-is-cyberc.jpg)bottom center no-repeat !important;
  }

  .digitally-connected {
    background: none !important;
    text-align: center;
  }

  .cybercrime-lawyers-banner p {
    text-align: center;
  }

  .cybercrime-lawyers-banner {
    padding-top: 20% !important;
    padding-bottom: 6%;
  }

  .cybercrime-lawyers-banner h1 {
    line-height: 50px !important;
    font-size: 3em !important;
    text-align: center !important;
    letter-spacing: 0.8px !important;
    font-weight: 700 !important;
  }

  .mbr-slider .carousel-control:hover {
    background: transparent !important;

  }


  .mbr-slider .carousel-control {
    top: 48% !important
  }

  .mbr-gallery .mbr-gallery-item {
    width: 32% !important;

  }

  .program-name-box h5 {

    margin-top: 40% !important;

  }

  .program {
    margin-bottom: 16% !important
  }

  .event-banner {
    padding-top: 25% !important;

  }

  .event-banner h1 {
    text-align: center !important;
    font-size: 2.5em !important;
    line-height: 40px !important;

  }

  .event-banner p {
    text-align: center;
    line-height: 31px !important;
  }

  .rak-dao-banner .metaverse-bnr-connectus {
    position: relative;
    z-index: 5;
    margin-top: 36% !important;
  }

  .types-of-st-box {
    padding: 30px 20px !important;
    height: auto !important;
    margin-bottom: 20px !important;
  }

  .our-expert {
    width: 556px !important;
    position: relative !important;
  }

  .rak-dao-banner h1,
  .rak-dao-banner h2 {
    text-align: center !important;
  }

  .rak-dao-banner {
    padding-top: 20% !important;
    height: 727px !important;
    background: url(../img/digital-assets/mobile-digital-assets-banner.jpg?v=2.0)top center no-repeat !important;
  }

  .our-expert {
    top: -44px !important
  }

  .rak-contact-our-team-btn {
    margin-top: 9% !important;
  }

  .rak-contact-our-team h4,
  .rak-contact-our-team h3 {
    text-align: center;
  }

  .elements-of-metaverse2 .elements-of-metaverse-box::after {
    height: 479px !important;
  }

  .difc-why-choose2 .difc-why-choose-box {
    height: auto !important;
  }

  .leading-legal-advisory {
    padding-bottom: 55% !important;
  }

  .leading-legal-advisory {
    padding-top: 10% !important;
  }

  .vara-licensed-box-h {
    height: 538px !important;


  }

  .vara-faq .btn {
    height: auto !important;
    line-height: 25px !important;
    padding: 15px 10px !important;
  }


  .list-of-financial h2 {
    font-size: 2.5em !important;
    line-height: 50px !important;
  }

  .difc h2 {
    line-height: 44px !important;
  }

  .difc-text {

    padding: 36px !important;

  }

  .abu-dhabi-market P {
    text-align: center !important;
  }

  .abu-dhabi-market h2 {
    text-align: center;
  }

  .setting-the-uae {

    background-size: cover !important;
  }

  .list-of-financial-flag-text .modal-dialog {
    max-width: 100% !important;
  }

  .list-of-financial-flag {
    padding-top: 16px !important;
    height: 236px !important;
    overflow: auto !important;
  }

  .list-of-financial {

    background: url(../img/forex/flag/flags-bg.jpg)top center no-repeat !important;
    background-size: cover !important;
  }

  .forex-regulatory {
    background: url(../img/forex/forex-regulatory.jpg)50% 0 no-repeat !important;
    background-size: cover !important;
  }

  .forex-business h3 {

    margin: 9% auto 9% !important;
    width: 90% !important;
    line-height: 30px !important;
    padding: 20px 0 !important;

  }

  .forex-business-list div {
    margin: 0% 1.5% 4% 0 !important;
  }

  .forex-business-list {
    display: inline-flex !important;

    flex-wrap: wrap !important;
  }

  .forex-business {
    padding-top: 20% !important;
    padding-bottom: 2%;

    background: #000 url(../img/forex/forex-banner4.png) top center no-repeat !important;

    background-size: 100%;
    text-align: center;
    height: 720px !important;
  }

  .mobile-nav a img {
    width: 55%;
    margin-left: 15px;
  }

  .nav-trigger {
    top: 15px;
  }

  .section-gap {
    padding: 30px 0;
  }

  .mobile-menu a {
    font-size: 25px;
    padding: 0;
    margin: -6px;
  }

  .mobile-menu li .submenu li a {
    font-size: 17px;
    padding: 0;
  }

  .mobile-menu li .submenu>li .submenu {
    margin-left: 10px;
  }

  .mobile-menu li .submenu li .submenu a {
    font-size: 13px;
  }

  .tp-mb-contact {
    margin-top: 10px;
  }

  .our-main-feature {
    padding: 20px;
  }

  .inner-feature {
    display: block;
    text-align: center;
  }

  .inner-feature li {
    display: block;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 30px;
    border-bottom: 1px solid #263a4e70;
  }

  .features-btn a:first-child {
    padding: 10px;
  }

  .form-head-section h4:before {
    top: 60px;
  }

  .footer-nav a {
    display: block;
    padding: 13px 0;
  }

  .intro:before {
    bottom: 20px;
  }

  .main-sentence h1 {
    font-size: 20px;
    padding: 20px;
  }

  .fintech-team {
    display: block;
  }

  .about-banner-main h1 {
    font-size: 20px;
  }

  .question p {
    max-width: 240px;
  }

  .plus {
    line-height: 30px;
    background: red;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    margin: 20px 0px;
    border-radius: 100%;
    font-size: 21px;
    right: 30px;
  }

  .tax-advisory .section-title {
    padding: 10px;
  }

  .tax-advisory-content {
    margin-left: 0;
  }

  .privacy-sec {
    padding-top: 110px;
  }
}

//* blockchain page*//
/*=============================
	home banner
============================*/

.banner-sec {
  position: relative;
}

.banner-item {
  min-height: 1226px;
  padding-top: 242px;
  position: relative;
}

.banner-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: url(../images/banner/banner_shapes.png) no-repeat center center/cover;
}

.banner-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.banner-content .banner-title {
  font-size: 70px;
  /* font-family: 'Open Sans', sans-serif; */
  font-weight: 600;
  letter-spacing: -1.75px;
  margin-bottom: 40px;
}

.banner-content p {
  font-size: 18px;
  line-height: 32px;
  color: #fff;
  padding: 0 64px;
  margin-bottom: 20px;
}

.banner-img-item {
  position: relative;
  margin: 0 -50px;
}

.banner-ico {
  position: absolute;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: bounce 1s ease-in-out 0s infinite alternate;
  animation: bounce 1s ease-in-out 0s infinite alternate;
}

.banner-ico.banner-ico-1 {
  left: 20.8%;
  top: 38%;
}

.banner-ico.banner-ico-2 {
  left: 30%;
  right: inherit;
  top: 6%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.banner-ico.banner-ico-3 {
  top: 22%;
  left: 51%;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.banner-ico.banner-ico-4 {
  left: inherit;
  right: 32.2%;
  top: 10%;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.banner-ico.banner-ico-5 {
  left: inherit;
  right: 15.8%;
  top: 32%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  to {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  to {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

/*---------- banner v2 -----*/

.banner-v2 .banner-item {
  height: 768px;
  min-height: 0;
  padding-top: 0;
  position: relative;
  height: auto;
  padding: 90px 0 50px;
}

.banner-v2 .banner-item:before {
  z-index: 1;
}

.banner-v2 .banner-item .banner-content {
  text-align: left;
}

.banner-v2 .banner-item .banner-content p {
  padding: 0;
}

.banner-v2 .banner-title {
  font-size: 39px;
  font-weight: 700;
  margin-bottom: 33px;
  color: #fff;
}

.banner-v2 .banner-v2-img .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-v2 .banner-v2-img .banner-ico.banner-ico-1 {
  right: 26.6%;
  left: inherit;
  top: 35%;
}

/*----------- banner v3 ---------*/

.banner-v3 {
  background: #26b780;
}

.banner-table {
  display: table;
  width: 100%;
  height: 100%;
}

.banner-table .banner-table-cell {
  display: table-cell;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.banner-higlight {
  position: relative;
  z-index: 1;
}

.banner-main-line {
  display: flex;
  justify-content: space-around;
  color: #fff;
  margin: 34px 0;
  font-family: "Poppins", sans-serif;
}

.banner-main-line li i {
  margin-right: 10px;
}

.banner-higlight li {
  padding: 17px 21px;
  background: #ffffffe6;
  margin: 10px 0px;
  border-left: 8px solid #d50b13;
}

.banner-higlight li h3 {
  font-size: 18px;
  margin: 0;
  color: #000;
  font-weight: 500;
}

.Experts-line h2 {
  position: relative;
  display: block;
  font-size: 34px;
  font-weight: 500;
  line-height: 44px;
  color: #fff;
}

.Experts-line {
  margin: 42px 0;
  position: relative;
}

/* flag */

.flag-sec {
  background: url(../images/blockchain/mappatt.jpg) no-repeat center center;
}

.top-banner-flag {
  margin-top: -190px;
}

.flag {
  margin-bottom: 20px;
  text-align: center;
  border: 1px dashed #009688;
  padding: 30px 0;
  background: #fff;
  transition: all 0.5s ease;
  box-shadow: 8px 7px 17px #0000000a;
}

.flag:hover {}

.flag h5 {
  border-left: 8px solid #cccccc36;
  font-weight: 700;
  margin: 30px 0;
  transition: all 0.5s ease;
  color: #2bc387;
}

.flag:hover h5 {
  border-left: 8px solid#d8042a;
}

/*------------------ blockcain top -----------*/

.blockcain-top-sec {}

.blockcain-top {
  padding-right: 80px;
  position: relative;
  z-index: 1;
}

.blockcain-top:before {
  position: absolute;
  right: -15px;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: #353371;
}

.blockcain-top .column-title {
  font-weight: 700;
}

.blockcain-top-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.blockcain-top-content p {
  font-size: 18px;
  line-height: 32px;
}

.hidden-title {
  font-size: 130px;
  font-family: "Roboto", sans-serif;
  color: rgb(3 112 93 / 8%);
  font-weight: 700;
  line-height: 0.13;
  text-align: center;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  margin: auto;
}

.flag {
  margin-bottom: 20px;
  text-align: center;
  border: 1px dashed #009688;
  padding: 30px 0;
  background: #fff;
  transition: all 0.5s ease;
  box-shadow: 8px 7px 17px #0000000a;
}

/* ---- particles.js container ---- */

#particles-js,
#particles-js1 {
  position: relative;
  width: 100%;
  height: 100%;
}

.particles-js-canvas-el {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.section-title-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.fetured-main-title span {
  color: #e61921;
  font-weight: 800;
}

.single-list-services {
  margin: 0 auto;
}

.single-list-services li .services-img {
  background: #1d7e5a;
  border-radius: 100%;
}

.feature-title {
  font-size: 17.5px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 0.5px;
}

.fetured-main-title {
  display: inline-block;
  margin: 50px 0 50px;
  font-size: 40px;
  font-weight: 500;
}

/*------------------ roadmap v3 ----------------*/

.roadmap-v3 {
  background: #1b1c4a;
  padding-bottom: 115px;
  position: relative;
}

.roadmap-v3 .xs-section-title {
  color: #fff;
}

.roadmap-v3 .single-roadmap-timeline p {
  color: #fff;
}

.section-title-item .section-title {
  font-size: 41px;
  letter-spacing: 0.1px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 70px;
  color: #fff;
}

.single-list-services {
  margin: 0 auto;
}

.single-list-services li {
  z-index: 1;
  position: relative;
  background: rgb(237, 27, 35);
  background: -moz-linear-gradient(90deg,
      rgba(237, 27, 35, 0.51) 0%,
      rgba(149, 0, 6, 0.16) 100%);
  background: -webkit-linear-gradient(90deg,
      rgba(237, 27, 35, 0.51) 0%,
      rgba(149, 0, 6, 0.16) 100%);
  background: linear-gradient(90deg,
      rgba(237, 27, 35, 0.51) 0%,
      rgba(149, 0, 6, 0.16) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ed1b23", endColorstr="#950006", GradientType=1);
  padding: 30px 0 30px 17px;
  margin-bottom: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  height: 100%;
  width: 30%;
  float: left;
  margin: 0 1.6% 3%;
}

.single-list-services li .services-cnt {
  width: 74%;
  margin: 0 0 0 4%;
}

.single-list-services li .services-img {
  background: #7d0b10;
  border-radius: 100%;
  width: 16%;
}

.single-roadmap-timeline h3 {
  line-height: 22px;
  background: #ee232a;
  width: 40%;
  margin: 0 auto 20px;
  color: #fff;
  font-weight: 700;
  padding: 8px;
  text-transform: uppercase;
}

.feature-bx {
  z-index: 1;
  position: relative;
}

/*==============================================
    roadmap
 =============================================*/

.roadmap-sec {
  position: relative;
}

.roadmap-timeline {
  position: relative;
}

.roadmap-timeline img {
  width: 100%;
}

.roadmap-timeline-item {
  padding: 0 70px;
  position: relative;
  z-index: 1;
}

.roadmap-timeline-item .xs-roadmap {
  position: relative;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(1) {
  margin-top: -17px;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(2) {
  margin-top: -31px;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(2):before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  top: -190px;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(3) {
  margin-top: -69px;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  top: -229px;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(4) {
  margin-top: -67px;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(4):before {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  top: -226px;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(5) {
  margin-top: -8px;
}

.roadmap-timeline-item .xs-roadmap:nth-of-type(5):before {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  top: -168px;
}

.single-roadmap-timeline {
  text-align: center;
  position: relative;
  padding-top: 45px;
  margin-top: -45px;
  min-height: 134px;
}

.single-roadmap-timeline:before {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #fff;
  content: "";
  left: 0;
  top: 6px;
  right: 0;
  margin: auto;
}

.single-roadmap-timeline:after {
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  left: 0;
  top: 0px;
  right: 0;
  margin: auto;
}

.single-roadmap-timeline b {
  position: absolute;
  top: -118px;
  left: 0px;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 30px;
  width: 30px;
  background: #ee232a;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-animation: loader-6-1 2s infinite;
  animation: loader-6-1 2s infinite;
}

.single-roadmap-timeline h3 {
  font-size: 12px;
  line-height: 22px;
}

.single-roadmap-timeline p {
  margin-bottom: 0;
  padding: 0 5px;
}

@-webkit-keyframes loader-6-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1.8);
    opacity: 0;
  }
}

@keyframes loader-6-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1.8);
    transform: translate3d(0, 0, 0) scale(1.8);
    opacity: 0;
  }
}

.blockcain-img {
  text-align: center;
}

.blockcain-img img {
  -webkit-animation: bounce 2s ease-in-out 0s infinite alternate;
  animation: bounce 2s ease-in-out 0s infinite alternate;
}

.blockcain-content strong {
  color: #000;
  margin-bottom: 30px;
  display: block;
  font-size: 23px;
  line-height: 33px;
  letter-spacing: 0.4px;
  font-weight: 500;
}

.blockcain-content {
  position: relative;
}

.blockcain-content i {
  position: absolute;
  font-size: 110px;
  color: #cccccc47;
  top: -60px;
}

.blockcain-content .quote {
  color: #0a575047;
  font-size: 70px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10px;
}

.btn {
  font-size: 14px;
  line-height: 55px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  height: 55px;
  padding: 0 55px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  display: inline-block;
  letter-spacing: 1.5px;
}

.btn.btn-v3:hover {
  background: #000;
  color: #fff;
  -webkit-box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.15);
}

.btn.btn-v3 {
  background: #ec1921;
}

/*------------ blockcain v3 --------*/

.blockcain-v3 {
  padding: 114px 0 129px;
  position: relative;
}

.blockcain-v3:before {
  position: absolute;
  left: 10%;
  top: 0;
  width: 50%;
  height: 100%;
  content: "";
  background: url(../images/blockchain/blockcain_dot.png) no-repeat center center/cover;
}

.blockcain-v3 .blockcain-top:before {
  background: #cce2df;
}

.blockcain-v3 .column-title {
  color: #000;
}

.blockcain-v3 .blockcain-top-content p {
  color: #606060;
}

.blockcain-business-v3 {
  position: relative;
  padding: 120px 0;
}

.Experts-line h2 span {
  font-family: "iconfont";
  color: #cccccc47;
  left: -10px;
  top: 10px;
  font-size: 140px;
  position: absolute;
}

.percent h1 {
  color: #000;
  text-align: center;
  font-weight: 800;
}

.project-failed li {
  list-style: none;
  list-style-image: none;
  font-size: 15px;
  list-style-image: url("../images/checked.png");
  margin-bottom: 6%;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5%;
}

.project-failed i {
  position: absolute;
  font-size: 70px;
  color: #cccccc47;
  top: -120%;
  left: 18%;
}

.project-failed ul {
  margin-left: 7% !important;
  margin-top: 6%;
}

.project-failed p {
  line-height: 27px;
  margin-top: 5%;
}

.section-decor-2::before {
  right: 52% !important;
  border-bottom-right-radius: 80px;
}

.section-decor-2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #1b1c4a;
}

.icon-box-classic {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 15px 35px 17px;
  background-color: #ffffff;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  height: 219px;
  margin-top: 8%;
}

.icon-box-classic__icon {
  min-height: 63px;
  width: 50px;
  display: block;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.icon-box-classic__icon .icon {
  color: #4f50e9;
  font-size: 40px;
}

.section-decor-2 {
  position: relative;
  font-size: 16px;
}

.project-success h1 {
  color: #000;
  margin-bottom: 30px;
}

.project-success-img img {
  width: 5%;
  margin-right: 6px;
}

.banner-top-text h2 {
  color: #f7242c !important;
  display: block !important;
  text-align: center;
  margin-bottom: 2%;
  font-weight: 600;
  font-size: 3em;
  margin-top: 5%;
}

.banner-top-text h3 {
  font-size: 2.5em;
  margin-bottom: 2%;
}

.banner-top-text p {
  letter-spacing: 0.7px;
}

.banner-higlight {
  margin-bottom: 0rem !important;
}

.status-area {
  text-align: left;
  background: #d4e1ff;
  padding: 30px;
  height: 100%;
  border-bottom: 5px solid #f00000;
  box-shadow: 7px 6px 20px 0px #00000024;
}

.status-area li {
  font-size: 16px;
}

#Status {
  background: url(../images/6-1.png) no-repeat center;
  background-color: rgba(0, 0, 0, 0);
  background-color: #f0f4f7;
  text-align: center;
}

.structuring-list2 ul {
  margin-left: 5% !important;
  margin-top: 6%;
}

.structuring-list2 li {
  list-style: none;
  list-style-image: none;
  font-size: 15px;
  list-style-image: url("../images/checked.png");
  margin-bottom: 6%;
  color: #424242;
}

.structuring-list2 h4 {
  color: #000;
}

.get-in-touch {
  background-color: rgba(237, 26, 34, 0.7);
  padding: 1% 0;
  width: 43%;
  margin: 0 auto 40px;
  border-radius: 110px;
}

.get-in-touch .banner-title {
  color: #fff;
  font-family: "Nunito", sans-serif !important;
  font-size: 1.5em;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  text-align: center;
  font-weight: 500;
}

.get-in-touch p {
  text-align: center;
  font-size: 2.5em;
  margin-top: 3%;
  font-weight: 900;
}

.h-one-blockchain {
  text-align: right;
  font-size: 2.5em;
  color: #ed1b23;
  font-weight: 900;
}

.news-box a {
  color: #000;
  display: block;
  margin-top: 5%;
}

.section-title-item.v3 .xs-section-title {
  color: #e61921;
  font-size: 16px;
}

.bg-tra {
  background-color: transparent !important;
  border: 1px solid !important;
}

.bg-tra h3 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff !important;
}

.bg-tra a {
  color: #fff;
}

@media (max-width: 480px) {
  .comprehensive-aml-Services-box2 {
    height: auto !important;
    margin-bottom: 5%;
  }

  .typical-roles-box {

    height: auto !important;
    margin-bottom: 17px !important;
  }

  .gaming-employee-license2-nu {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    line-height: 40px !important;
    font-size: 1.2em !important;

  }

  .gaming-employee-license2 {
    background: none !important;
  }

  .individual-gaming li {
    font-size: 1em !important;
  }

  .individual-gaming li::before {
    flex: 0 0 40px !important;
  }

  .individual-gaming h3 {
    width: 68% !important;
  }

  .what-gaming-operator {

    background: rgb(11, 12, 33) url(../img/gaming-operator/what-gaming-operator.png?v=82)-46% 0 no-repeat !important;
  }

  .gaming-employee-licenses p {
    margin-bottom: 0 !important;
  }

  .gaming-employee-licenses-box img {
    width: 14% !important;
    margin-bottom: 3% !important;
  }

  .gaming-employee-licenses-box {
    height: auto !important;
    margin-bottom: 3% !important;
    padding: 30px 15px !important;
  }

  .gaming-employee-licenses h3 {
    width: 50% !important;
  }

  .gaming-operator-licenses-icon {

    margin: 5% auto !important;

  }

  .gaming-operator-licenses {
    padding: 0 33px !important;
  }

  .differences-operator {
    padding: 5% 5% 82% 5% !important;
    background: #cec3b3 url(../img/gaming-operator/differences-operator.png)bottom right no-repeat !important;
  }

  .importance-gaming-operator-box img {
    width: 14% !important;
  }

  .importance-gaming-operator-box {
    margin-bottom: 20px !important
  }

  .compliance-meets p,
  .importance-gaming-operator p,
  .gaming-supplier-licenses p,
  .gaming-employee-licenses p,
  .typical-roles p,
  .application-process p {
    font-size: 1.1em !important;
    line-height: 23px !important;
  }

  .introduction-gaming-operator h2,
  .introduction-gaming-operator p,
  .differences-operator h3,
  .differences-operator p {
    text-align: center !important;
  }

  .introduction-gaming-operator {

    padding-bottom: 47% !important;
    background: #cec3b3 url(../img/gaming-operator/introduction-gaming-operator.png)bottom center no-repeat !important;
    background-size: 69% !important;
  }

  .compliance-meets h3 {

    width: 82% !important;

  }

  .compliance-meets h2,
  .importance-gaming-operator h2,
  .gaming-supplier-licenses h2,
  .gaming-employee-licenses h2,
  .individual-gaming h2,
  .key-person-gaming h2,
  .typical-roles h2,
  .application-process h2,
  .introduction-gaming-operator h2 {
    line-height: 38px !important;
    font-size: 2em !important
  }

  .gaming-operator-banner p {
    font-size: 2em !important;
    text-align: center;
  }

  .gaming-operator-banner h3 {

    margin: 3% auto !important;
    width: 80% !important;
    text-align: center;
    background: linear-gradient(90deg, rgb(9, 171, 205) 50%, rgba(193, 188, 107, 0) 100%) !important;

  }

  .gaming-operator-banner h2 {
    font-size: 1.2em !important;
    line-height: 26px !important;
    text-align: center;
  }

  .gaming-operator-banner {
    background: #0b0c21 url(../img/gaming-operator/gaming-operator-banner.jpg) bottom left no-repeat !important;
    background-size: cover !important;
    padding-top: 18% !important
  }

  .gaming-operator-banner h1 {

    font-size: 2em !important;
    text-align: center;
    line-height: 43px !important;
  }

  .ready-to-take-wrapper2 h2,
  .ready-to-take-wrapper2 h2 {

    font-size: 1.6em !important;
  }

  .appropriate h5 {
    font-size: 1.2em !important;
    line-height: 27px !important;
    letter-spacing: 0.4px !important;
  }

  .casino-contact-us button {
    display: grid;
    margin: 0 auto 5%;
  }

  .casino-understanding-online h3,
  .casino-understanding-online2 h3 {
    text-align: center !important;
  }

  .online-key-benefits-box {
    height: auto !important;
  }

  .o-licensing-process-box-icon,
  .casino-understanding-online-icon {
    width: 70px !important;
    height: 70px !important;
    flex: 0 0 70px !important;

  }

  .ready-to-take-wrapper,
  .casino-understanding-online,
  .casino-understanding-online2,
  .ready-to-take-wrapper2 {
    background-image: none !important;
  }

  .introduction-online-gaming p,
  .exploring-internet-gaming p {
    text-align: center !important;
  }

  .introduction-online-gaming h2,
  .exploring-internet-gaming h2,
  .online-key-benefits h2,
  .multiple-types-licenses h2,
  .o-licensing-process h2,
  .casino-understanding-online h2,
  .role-online-gaming h2,
  .casino-contact-us h2 {
    font-size: 2em !important;
    text-align: center !important;
    line-height: 38px !important;
  }

  .online-casino-banner p,
  .casino-contact-us p {
    text-align: center !important;
  }

  .online-casino-banner h3 {
    background: linear-gradient(90deg, rgba(226, 108, 255, 0) 0%, rgba(253, 50, 33, 1) 50%, rgba(0, 255, 246, 0) 100%) !important;
    text-align: center !important;
    margin: 4% 0 1% !important;
    width: 100% !important;
    font-size: 1.1em !important;
  }

  .online-casino-banner h2 {
    font-size: 1.3em !important;
    line-height: 31px !important;
    text-align: center !important;
  }

  .online-casino-banner {
    background: #0b0c21 url(../img/online-casino-gaming/online-casino-gaming-banner.jpg)83px 0 no-repeat !important;
    background-size: cover !important;
    padding-top: 21% !important;

  }

  .online-casino-banner h1 {

    font-size: 2em !important;
    text-align: center !important;
    line-height: 40px !important;

  }

  .uae-federal h3 {
    width: 100% !important;

  }

  .g-application-process-flex li {
    font-size: 1em !important;
  }

  .gcgra-faq .card-body {

    padding: 1.25rem 30px !important;
  }

  .gcgra-faq .btn {
    line-height: 25px !important;
    padding: 0 4px !important;
  }

  .why-is-critical h2 {
    font-size: 1.5em !important;
    text-align: center !important;
    line-height: 35px !important;
    margin-bottom: 2% !important;
  }

  .the-role-gaming {
    padding-top: 60% !important;

  }

  .the-role-gaming h2 {
    font-size: 2em !important;
    line-height: 40px !important;
  }

  .laws-for-players-box {
    height: auto !important;
    margin-bottom: 4% !important;
  }

  .uae-federal-box p {
    font-size: 1em !important;
  }

  .gaming-licensesin-uae-box {
    margin-bottom: 10%;
  }

  .entity-licenses-list li {
    width: 100% !important;
  }

  .entity-licenses-list ul {
    display: block !important;
  }

  .pros-and-cons-box h5 {
    margin-bottom: 1% !important;
  }

  .pros-and-cons h3 {
    width: auto !important;
  }

  .g-application-process p {
    font-size: 1em !important;
  }

  .gcgra-gaming-license-wrap-box p {
    text-align: left !important;
  }

  .adherence-img {
    height: auto !important;
    width: auto !important;
  }

  .adherence-wrap h2 {
    padding-top: 0 !important;
  }

  .adherence-img img {
    padding-top: 9% !important;
  }

  .gaming-license p,
  .adherence-wrap p,
  .gcgra-gaming-license p,

  .pros-and-cons-box p,
  .why-is-critical p {
    text-align: center !important;

  }

  .gaming-license h2,
  .adherence-wrap h2,
  .gcgra-gaming-license h2,
  .g-application-process h2,
  .pros-and-cons h2,
  .how-to-apply h2,
  .gcgra-faq h2,
  .entity-licenses h2,
  .gaming-licensesin-uae h2,
  .uae-federal h2,
  .laws-for-players h2 {
    font-size: 2em !important;
    text-align: center !important;
    line-height: 35px !important;
    margin-bottom: 2% !important;
  }

  .crypto-virtual-asset-venture-banner p {
    font-size: 2em !important;
    text-align: center !important;
  }

  .crypto-virtual-asset-venture-banner h3 {
    background: linear-gradient(90deg, rgba(226, 108, 255, 0) 0%, rgba(253, 50, 33, 1) 50%, rgba(0, 255, 246, 0) 100%) !important;
    margin: 4% 0 1% !important;
    width: 100% !important;
    font-size: 1.05em !important;

  }

  .g-application-process-flex {
    display: block !important;
  }

  .crypto-virtual-asset-venture-banner h2 {
    font-size: 1em !important;
    line-height: 26px !important;
    text-align: center !important;
  }

  .crypto-virtual-asset-venture-banner {
    background: url(../img/gcgra-commercial/gcgra-commercial-banner.jpg )top right no-repeat !important;
    padding-top: 30% !important;
    background-size: cover !important;

  }

  .crypto-virtual-asset-venture-banner::before {
    width: 100%;
    height: 352px;
    background: rgb(2, 0, 36);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 0.8319661116399685) 36%);
    display: block;
    content: '';
    position: absolute;
  }



  .crypto-virtual-asset-venture-banner h1 {
    font-size: 2em !important;
    line-height: 40px !important;
    text-align: center;
  }

  .crypto-journey h3 {

    font-size: 1.4em !important;

  }

  .crypto-journey {

    padding: 9% 5% 5% 5% !important;
    margin-bottom: 5%;
  }

  .crypto-journey h5 {

    font-size: 1.1em !important;

  }

  .crypto-journey hr {
    width: 100% !important
  }

  .crypto-journey p {

    font-size: 1.2em !important;

  }

  .crypto-journey-plan {
    width: 100% !important;
    padding: 9px 15px !important;
    margin: 5% auto 5% !important;
  }

  .crypto-journey h4 {
    font-size: 1.1em !important;
    margin-bottom: 3% !important;
    letter-spacing: 0.5px;

  }

  .crypto-journey h2 {
    margin-bottom: 7% !important;
    font-size: 1.5em !important;
  }

  .cvav-legal-consultant-box {
    height: auto !important;
    margin-bottom: 4% !important;

  }

  .cvav-legal-consultant h4 {
    padding: 3% 0 7% 14% !important;
    color: #fff !important;
    line-height: 22px !important;
    font-size: 1.1em !important;
  }

  .cvav-legal-consultant-circle::before {
    width: 360px !important;
    height: 360px !important;

  }


  .cvav-legal-consultant-circle h2 {

    padding: 26% 0 0 14% !important;
    font-size: 1.7em !important;
    margin-bottom: 0% !important;
  }


  .crypto-vav-question {

    background: #202020 url(../img/crypto-virtual-Asset/crypto-vav-question-bg.jpg)top left no-repeat !important;
  }

  .crypto-virtual-asset-banner-list {

    padding: 2.5% 2% !important;
    width: 100% !important;
    margin-bottom: 2% !important;

  }

  .crypto-virtual-asset-banner-list-flex {

    flex-wrap: wrap;
  }

  .crypto-virtual-asset-banner .metaverse-bnr-connectus {
    margin-bottom: 6%;
    margin-top: 0%;
  }

  .crypto-virtual-asset-banner .metaverse-bnr-connectus div::after {
    width: 250px !important;
  }

  .crypto-virtual-asset-banner .metaverse-bnr-connectus div::after {
    left: 21% !important;
  }

  .crypto-virtual-asset-banner h2 {

    font-size: 1.3em !important;
    line-height: 30px !important;
  }

  .crypto-virtual-asset-banner h1 {
    line-height: 40px !important;
    font-size: 2em !important;
  }

  .crypto-virtual-asset-banner h1,
  .crypto-virtual-asset-banner h2 {
    text-align: center;

  }

  .crypto-virtual-asset-banner {

    padding-top: 21% !important;

  }

  .web3-banner .metaverse-bnr-connectus small {
    margin-left: 6.5% !important;
  }

  .focus-area-box h5 {
    font-size: 1.2em !important;
  }

  .focus-area-box {

    margin-bottom: 6% !important;
    height: auto !important;
  }

  .focus-area h2 {
    font-size: 1.1em !important;
    line-height: 22px !important;
  }

  .web-services {
    padding-top: 6% !important;
    padding-bottom: 6% !important;
  }

  .web-services h2 {
    font-size: 1.3em !important;
    margin-bottom: 5% !important;
  }

  .committing-mistake-points {

    margin-top: 9% !important;

  }

  .committing-mistake-points-img img {
    width: 70% !important;
  }

  .committing-mistake-points-img {
    margin-right: 1%;
    flex: 0 0 42px !important;
  }

  .committing-mistake-points p {

    font-size: 1.1em !important;

  }

  .committing-mistake h5 {

    font-size: 1.2em !important;
    line-height: 28px !important;

  }

  .committing-mistake h2 {
    font-size: 1.3em !important;
    line-height: 32px !important;
    margin-bottom: 6.5% !important;
  }

  .or-bottom-text {

    padding: 20px 11px !important;
  }

  .or-bottom-text p {
    font-size: 1.3em !important;
    line-height: 30px !important;
    text-align: center !important;
  }

  .fundamental-que {

    height: 224px !important;
  }

  .fundamental-que h3 {
    font-size: 1.2em !important;
    line-height: 24px !important;

  }

  .fundamental-que1 h2 {

    font-size: 1.3em !important;
    line-height: 27px !important;
  }

  .fundamental-que1 {

    padding: 5% 5% 6% !important;

  }

  .web-or-elements h3 {
    font-size: 1.3em !important;
    line-height: 28px !important;
  }

  .or-circle img {
    width: 30% !important;
  }

  .web3-banner h4 {
    font-size: 1em !important;
    line-height: 40px !important;
    height: 40px !important;
    box-shadow: 2px 2px 0 0 #8f51f1 !important;
  }

  .web3-banner h2 {
    font-size: 1.2em !important;
    line-height: 24px !important;
    text-align: center;

  }

  .web3-banner-bottom h2 {
    font-size: 1.2em !important;
    line-height: 25px !important;
  }

  .web3-banner h1 {

    font-size: 1.5em !important;
    line-height: 31px !important;
    text-align: center;

  }

  .web3-banner {
    background: url(../img/web/web-banner.jpg) 50% 0 no-repeat !important;
    padding-top: 22% !important;
    background-size: cover !important;
  }

  .combat-cybercrime-box-img {
    width: 100% !important;

    flex: 0 0 100% !important;
    margin-right: 0 !important;
  }

  .our-cybercrime-experts h5 {

    width: 92% !important;

  }

  .our-cybercrime-experts {
    padding: 20px !important;
    height: auto !important;
  }

  .cyber-crime-professionals-assist-b {
    height: auto !important;
  }

  .combat-cybercrime-box h5 {
    margin-top: 20px;
  }

  .combat-cybercrime-box {
    padding: 26px !important;
  }

  .combat-cybercrime-box h5,
  .combat-cybercrime-box p {
    text-align: center !important;
  }

  .combat-cybercrime-box {
    display: flex;
    flex-wrap: wrap;

  }

  .combat-cybercrime h2,
  .cyber-crime-professionals-assist h2 {

    font-size: 2em !important;
    line-height: 38px !important;
  }

  .cyber-crime-we-help-you h3 {
    padding-top: 0 !important;
    margin-bottom: 5%;
    text-align: center !important;
    font-size: 1.5em !important;
  }

  .cyber-crime-we-help-you {
    padding: 20px !important;

  }

  .what-is-cyberc {
    padding-top: 5%;
    padding-bottom: 105% !important;
    background: #221b19 url(../img/cyber-crime/what-is-cyberc.jpg)bottom center no-repeat !important;
  }

  .digitally-connected {
    background: none !important;
    text-align: center;
  }

  .cybercrime-lawyers-banner p {
    text-align: center;
  }

  .cybercrime-lawyers-banner {
    padding-top: 20% !important;
    padding-bottom: 6%;
  }

  .cybercrime-lawyers-banner h1 {
    line-height: 50px !important;
    font-size: 2.5em !important;
    text-align: center;
    letter-spacing: 0.8px !important;
    font-weight: 700 !important;
  }

  .inner-event-banner h5 {
    text-align: center !important;
    font-size: 1em !important;
    font-weight: 600 !important;
    line-height: 30px !important;
  }

  .inner-event-banner {
    padding-top: 16% !important
  }

  .inner-event-banner h1 {
    font-size: 2em !important;
    line-height: 43px !important;
    text-align: center !important;
  }

  .program-name-box h5 {
    padding: 0 10px !important;
    margin-bottom: 3% !important;
  }

  .program-name-box::after {

    height: 420px !important;

  }

  .program {
    margin-bottom: 16% !important
  }

  .event-banner {
    padding-top: 25% !important;

  }

  .event-banner h1 {
    text-align: center !important;
    font-size: 2.5em !important;
    line-height: 40px !important;

  }

  .event-banner p {
    text-align: center;
    line-height: 31px !important;
  }

  .rak-dao-why-choose img {
    margin-bottom: 10%;
  }

  .rak-contact-our-team-btn {

    margin-top: 11% !important;

  }

  .rak-contact-our-team h4,
  .rak-contact-our-team h3 {
    text-align: center !important;
  }

  .leading-legal-advisory {

    padding-bottom: 61% !important;

  }

  .leading-legal-advisory h2 {

    line-height: 39px !important;
    font-size: 1.3em !important;
    letter-spacing: 0.5px;

  }

  .wel-finjuris-rak-dao .our-expert h4 {
    text-align: left !important;
  }

  .rak-dao-banner h1 {
    font-size: 2em !important;
  }



  .our-services-box {
    height: auto !important;
  }

  .techno-legal-firms h2 {
    text-align: center !important;
    margin-top: 5% !important;
  }

  .techno-legal-firms p,
  .our-services-bottom h5 {
    text-align: center !important;
  }

  .features-of-st-img img {
    margin-bottom: 10% !important;
  }

  .types-of-st-box {

    height: auto !important;
    margin-bottom: 5% !important;
  }

  .what-is-st {

    padding-bottom: 30% !important;
    background-size: 100% !important;
  }

  .security-tokens-banner h5::after {

    top: 77px !important;
  }

  .security-tokens-banner h2,
  .security-tokens-banner h5 {
    text-align: center !important;
  }

  .security-tokens-banner h1 {

    font-size: 2.5em !important;
    line-height: 50px !important;
    text-align: center;

  }

  .security-tokens-banner {
    padding-bottom: 15% !important;
    padding-top: 25% !important;

  }


  .need-to-know-more h2 {

    line-height: 29px !important;
    font-size: 1.3em !important;
  }

  .stablecoin-faq #main #faq .card .card-header .btn-header-link {
    padding: 10px 30px !important;
  }

  .stablecoin-faq .btn {
    line-height: 25px !important;
  }

  .finjuris-assist-businesses h2 {

    font-size: 1.5em !important;
    line-height: 30px !important;
    letter-spacing: 0.5px !important;
  }

  .key-features-sat button {
    font-size: 1.1em !important;
    line-height: 20px !important;
  }

  .vara-stablecoin h2 {

    font-size: 1.5em !important;
    line-height: 31px !important;
  }

  .features-of-stablecoin-box {
    margin-bottom: 4% !important;
    height: auto !important;
  }

  .detail-required h3 {

    line-height: 34px !important;

  }

  .detail-required span {
    font-size: 18px !important;
  }

  .stablecoins-function p {

    text-align: center !important;
  }

  .what-stablecoins2 {

    height: 508px !important;
    right: 0px !important;
    top: -50px !important;

  }

  .what-stablecoins {
    padding-top: 5% !important;


  }

  .our-expert img {
    width: 50%;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .our-expert h4 {

    line-height: 28px !important;
    font-size: 0.6em !important;
    text-align: center !important;
  }

  .our-expert {
    position: static !important;
    width: auto !important;
    margin: 20px;
    padding: 30px 0 !important;
  }

  .stablecoins-banner h2 {

    font-size: 1.1em !important;
    line-height: 29px !important;
    text-align: center !important;

  }

  .stablecoins-banner {

    background-size: cover;
    padding-top: 23% !important;

  }

  .stablecoins-banner h1 {
    font-size: 2em !important;
    text-align: center;
    line-height: 43px !important;

  }

  .adgm-free-zone h4::after {
    width: 60px !important;
    left: 200px !important;
    top: 615px !important;
  }

  .adgm-free-zone2 {
    margin-bottom: 5%;
  }

  .adgm-features-box {
    height: auto !important;
  }

  .about-adgm {

    padding-bottom: 33% !important;
    background: url(../img/adgm/adgm-about.png)bottom right no-repeat !important;
    background-size: contain !important;
  }

  .adgm-banner h2 {
    font-size: 1.5em !important;
    line-height: 33px !important;
    font-weight: 600 !important;

  }

  .adgm-banner {
    padding-top: 19% !important;
  }

  .adgm-banner h1 {
    font-size: 2.7em !important;
    line-height: 53px !important;

  }

  .difc-why-choose-box {
    height: auto !important;
  }

  .difc-office {

    background: url(../img/difc/difc-office.jpg)top left no-repeat !important;
    background-size: cover !important;
  }

  .difc-accordion .btn {
    padding: 25px 30px !important;
    height: auto !important;
    line-height: 23px !important;

  }

  .licensing-categories h2 {

    font-size: 1.5em !important;
    line-height: 33px !important;

  }

  .metaverse-bnr-connectus div::after {

    left: 31% !important;

  }

  .difc-banner {
    background: url(../img/difc/dubai_international_financial_centre.jpg )top left no-repeat !important;
    background-size: cover;
    padding-top: 21% !important;

  }

  .difc-banner h1 {

    font-size: 2.5em !important;
    line-height: 47px !important;

  }

  .home-banner-area {
    background-size: cover;
    background: url(../img/dubai-bnr-final.webp);
  }


  .vara-licensed-box-h,
  .vara-licensed-box {
    height: auto !important
  }

  .residents-conducting p {

    font-size: 1.2em !important;
    line-height: 29px !important;

  }

  .vara-required-box h5 {

    font-size: 1.1em !important;
    line-height: 23px !important;

  }

  .vara-will-help-box-img {
    margin-bottom: 0 !important;
  }

  .vara-why-choose-us h2 {

    font-size: 2.0em !important;

  }

  .vara-why-choose-us2-box p {
    font-size: 1.1em !important;

    line-height: 25px !important;

  }

  .vara-why-choose-us2 h2 {

    font-size: 2.2em !important;

  }

  .vara-authorization-icon p {

    font-size: 1.1em !important;
    line-height: 25px !important;

  }

  .vara-why-choose-us p {
    font-size: 1.1em !important;
    line-height: 33px !important;
  }

  .vara-banner h2 {
    font-size: 1.3em !important;
    line-height: 32px !important;
  }

  .vara-banner h1 {
    font-size: 1.8em !important;
    line-height: 39px !important;
  }

  .vara-banner .metaverse-bnr-connectus div::after {
    width: 239px !important;
  }

  .vara-banner .metaverse-bnr-connectus div::before {
    width: 150px !important;
  }

  .vara-banner .metaverse-bnr-connectus small {
    margin-left: 13px !important;
  }

  .vara-banner .metaverse-bnr-connectus h3 {

    padding-left: 0px !important
  }

  .residents-conducting h2 {

    font-size: 2em !important;
    line-height: 45px !important;

  }

  .vara-required h2 {

    font-size: 1.5em !important;
    line-height: 36px !important;

  }

  .vara-will-help-box {
    width: 100% !important;
    margin: 0 0 5% 0 !important;
    height: 162px !important
  }

  .vara-why-choose-us2-box {

    padding: 50px 20px 23px !important
  }

  .vara-why-choose-us {
    background: url(../img/vara/why-choose.png)top center no-repeat !important;
    background-size: cover !important;
  }

  .vara-heaven-innovators h2 {
    margin-top: 24% !important;
    font-size: 1.5em !important;
    line-height: 36px !important;
  }

  .vara-arrow {
    top: 49.2% !important;
    left: 34.2% !important;
  }

  .vara-heaven-innovators h3 {
    line-height: 34px !important;
    font-size: 1.1em !important;
  }

  .vara-banner {
    padding-top: 23% !important;
    text-align: center !important;
  }

  .ret-arrow {
    display: none;
  }

  .several-ret h2 {
    font-size: 2em !important;
    line-height: 42px !important;
  }

  .beneficial-ret-box {
    height: auto !important;
    margin-bottom: 17px !important;
  }

  .beneficial-ret h2 {
    margin-bottom: 7.5% !important;
    line-height: 37px !important;
    text-align: center !important;
  }

  .beneficial-ret {
    padding-top: 30px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .process-of-ret h2 {
    font-size: 2.0em !important;
  }

  .primary-challenges-btn {
    margin: 6% auto 0 !important;
  }

  .primary-challenges h3 {
    text-align: center !important;
    font-size: 1.4em !important;
  }

  .primary-challenges p {
    text-align: center !important;
  }

  .realestate-sector {
    background-size: cover !important;
  }

  .realestate-sector p {

    font-size: 1.2em !important;

    line-height: 27px !important;
    text-align: center !important;
  }

  .tokenization-potential-text p {

    margin-left: 0 !important;
    text-align: center !important;
  }

  .tokenization-potential-text p::before {

    left: 40% !important;
    top: -38% !important
  }

  .tokenization-potential {
    background-color: #012245;
    padding-top: 22% !important;
    padding-bottom: 13% !important;
  }

  .real-estate-tokenization-bnr1 h4 {

    float: none !important;
    text-align: center !important;
    margin-top: 7% !important;
  }

  .real-estate-tokenization-bnr1 h1 {

    font-size: 2.5em !important;
    line-height: 48px !important;
    letter-spacing: 1px !important;

    float: none !important;
    text-align: center !important;
  }

  .real-estate-tokenization-bnr1 hr {
    float: none !important;
    margin: 5% auto !important;
  }

  .real-estate-tokenization-bnr1 h3 {
    font-size: 1.5em !important;
    text-align: center;
  }

  .real-estate-tokenization-bnr1 {
    padding-top: 20% !important;
    background: #000f29 url(../img/real-estate-tokenization-new/real-estate-tokenization1-banner.jpg)center 50px no-repeat !important;
    background-size: cover !important;
    padding-bottom: 6% !important;
  }



  .dubai-crypto-license1 {
    padding-top: 13%;
    padding-bottom: 8%;
    background: url(../img/dubai-crypto-license/dubai-crypto-bg-right.png)right center no-repeat, url(../img/dubai-crypto-license/dubai-crypto-bg-white.jpg)right bottom no-repeat !important;
    background-size: 50%, cover !important;
  }

  .why-need-text p {
    font-size: 1.1em !important;
    line-height: 30px !important;
    font-weight: 600;
  }

  .legal-development-services-text {

    height: 170px !important;
    margin-bottom: 10px !important;

  }

  .acronym-of-nft h2,
  .legal-development-services h2,
  .hiring-a-nft h2,
  .nft-sale h2,
  .aml-compliance h2,
  .aml-measures h2,
  .marketplace-consulting h2 {

    font-size: 2em !important;
    line-height: 41px !important;

  }

  .acronym-of-nfth {
    margin-top: 0 !important;
  }

  .legal-issue h1 {
    font-size: 2em !important;
    line-height: 45px !important;
  }

  why-need-text p,
  .incc-nft p {

    font-size: 1.2em !important;
    line-height: 31px !important;
  }

  .why-you-need li {

    line-height: 37px !important;
    font-size: 1.2em !important;
    font-weight: 500;
  }

  .why-you-need h1 {
    font-size: 2em !important;
  }

  .international-nft-bnrr h1 {

    font-size: 2em !important;
    text-align: center !important;
    line-height: 53px !important;
  }

  .international-nft-bnrr {
    margin-top: 14% !important;
    padding-top: 6% !important;
  }

  .international-nft-bnrr h2 {

    font-size: 1.5em !important;
    text-align: center !important;
    line-height: 41px !important;

  }

  .knowledge-base-btn .nav-tabs .nav-link {

    padding: 13px !important;
    font-size: 18px !important;

    margin: 0 1px !important;
    width: auto !important;

  }

  .knowledge-base-banner h1 {
    font-size: 2em !important;
  }

  .knowledge-base-banner {
    background: #96a0ac url(../img/knowledge-base.jpg)center center no-repeat !important;
    height: 220px !important;
    padding-top: 25% !important;
  }

  .difc-text {
    padding: 19px !important;
  }

  .difc h2 {
    font-size: 1.5em !important;

    line-height: 35px !important;

  }

  .list-of-financial h2 {
    font-size: 2em !important;
    line-height: 40px !important;

  }

  .forex-business h1 {
    font-size: 2em !important;
    line-height: 41px !important;

  }

  .crypto-lawyer-blockchain-lawyer-connectus h5 {
    padding: 20px !important;
  }

  .crypto-lawyer-blockchain-lawyer-connectus h2 {
    font-size: 2em !important;
    padding-bottom: 6% !important;
    margin-top: 0 !important;
  }

  .crypto-lawyer-blockchain-lawyer-service h3 {
    margin-top: 6% !important;
    margin-bottom: 8% !important;
  }

  .crypto-lawyer-blockchain-lawyer-service div::before {
    width: 80% !important;
    margin-right: 0;
  }

  .crypto-lawyer-blockchain-lawyer-service div {

    width: 80% !important;
    margin-bottom: 9%;
    margin-right: 0% !important;
  }

  .importance-blockchain h2 {
    margin: 7% 0 !important;
  }

  .role {
    height: auto !important;
  }

  .blockchain-cryptocurrency {
    padding: 5%;
  }

  .blockchain-lawyers::before {

    left: -14.5% !important;

  }

  .clbl-offers-wrap h3 {

    margin-bottom: 5% !important;
    text-align: center;

  }

  .clbl-offers {
    width: 100% !important;
  }

  .clbl-offers-box {
    display: grid !important;
  }

  .what-is-blockchain-icon {

    justify-content: center !important;
  }

  .what-is-blockchain-icon h3 {
    margin-bottom: 0% !important;
  }

  .what-is-blockchain-box {
    margin-top: 7% !important;
    height: auto !important;
  }

  .crypto-lawyer-blockchain-lawyer {
    text-align: center !important;
    background: none !important;
  }

  .crypto-lawyer-blockchain-lawyer h1 {
    font-size: 2em !important;
    text-align: center;
    line-height: 46px;
  }

  .banner-top-text h2 {
    font-size: 2.7em;
    margin-top: 0%;
  }

  .banner-top-text h3 {
    font-size: 2em;
    margin-bottom: 2%;
    font-weight: 500;
  }

  .get-in-touch {
    background-color: rgba(237, 26, 34, 0.7);
    padding: 2% 0;
    width: 100%;
    margin: 0 auto 17px;
    border-radius: 110px;
  }

  .Experts-line {
    margin: 16px 0;
  }

  .Experts-line h2 {
    position: relative;
    display: block;
    font-size: 29px;
    font-weight: 500;
    line-height: 37px;
    color: #fff;
  }

  .banner-higlight img {
    width: 93%;
  }

  .news-box {
    margin-bottom: 15px;
  }

  .section-decor-2 .text-white {
    color: #000 !important;
  }

  .h-one-blockchain {
    text-align: left !important;
  }

  .icon-box-classic {
    height: 171px;
    margin-top: 4%;
    padding: 15px 15px 0px 17px;
  }

  .status-area {
    margin-bottom: 20px;
  }

  .fetured-main-title {
    font-size: 31px;
  }

  .single-list-services li {
    width: 100%;
    margin: 0 0% 2%;
  }

  .section-title-item .section-title {
    font-size: 33px;
  }

  .roadmap-timeline img {
    display: none;
  }

  .roadmap-timeline-item {
    padding: 0 0;
  }

  .single-roadmap-timeline {
    min-height: 134px !important;
    margin-top: 73px !important;
  }

  .blockcain-business-v3 {
    padding: 58px 0;
  }

  .roadmap-v3 {
    padding-bottom: 42px;
  }

  .footer-nav a {
    display: inline-block;
    padding: 13px 7px;
  }

  .footer-nav {
    padding: 20px 0;
  }

  .single-list-services li {
    padding: 20px 0 20px 17px;
  }
}

/** blockchain page end**/

.our-strength h4 {
  text-transform: uppercase;
}

/**real-estate-tokenization**/
.real-estate-tokenization-bnr {
  background: url(../img/real-estate-tokenization/real-estate-tokenization-banner-bg.webp?v=2.0) top center no-repeat;
  padding-top: 12%;
  padding-bottom: 6%;
}

.real-estate-tokenization-bnr h1 {
  color: #fff;
  font-size: 2em;
  font-weight: 400;
  margin-top: 7%;
  letter-spacing: 0.5px;

}

.real-estate-tokenization-bnr span {
  font-size: 1.3em;
}

.real-estate-tokenization-bnr h2 {
  color: #fff;
  font-size: 3em;
  font-weight: 300;
  margin-top: 3%;
}

.real-estate-tokenization-bnr h3 {
  color: #ebc676;
  font-size: 4em;
  margin-top: 5%;
  font-weight: 800;
  letter-spacing: 0.5px;

}

.real-estate-tokenization-bnr p {
  font-size: 2em;
  letter-spacing: 0.2px;
  color: #fff;
  line-height: 40px;
  font-weight: 300;
  margin-top: 3%;


}

.real-estate-tokenization-bnr {
  color: #fff;
  font-size: 1.1em;

  font-weight: 500;
}

.real-estate-tokenization-btn {
  width: 557px;
  border: 2px solid #fff;
  display: flex;
  padding: 7px;
  margin-top: 5%;
}

.real-estate-tokenization-no {

  height: 45px;
  text-align: center;
  width: 61%;
}

.real-estate-tokenization-no h4 {
  line-height: 45px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  font-size: 1.8em;
  letter-spacing: 1.5px;
}

.real-estate-tokenization-connect-now {
  width: 211px;
  height: 45px;
  text-align: center;
  background-color: #ebc676;
  color: #000;
  padding: 0 43px;
  line-height: 45px;
  font-size: 1.1em;
  float: right;
}

.ret-banner-bottom-wrapper {
  padding-top: 6%;
  padding-bottom: 4%;
}

.ret-banner-bottom {
  border: 5px solid #4d4d4d;
  padding: 20px;
  height: 230px;
  margin-bottom: 5%;
  border-radius: 8px;
}

.advantages-ret {
  background: #000 url(../img/real-estate-tokenization/pattern-bg-1.webp?v=2.0) top left;
  height: auto;
  padding-top: 6%;
  padding-bottom: 7%;
}

.advantages-ret h2 {
  text-align: center;
  font-size: 3em;
  color: #fff;
  margin-bottom: 5%;
}

.advantages-ret-box {
  text-align: center;
  border: 1px solid #ffffff6e;
  padding: 15px;
  height: 428px;
}

.advantages-ret-box h5 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.3em;
}

.advantages-ret-box img {
  width: 20%;
  margin-bottom: 25px;
  margin-top: 10px;
}

.country-blockchain {
  padding-top: 2%;
  padding-bottom: 2%;
}

.country-blockchain-p1,
.country-blockchain-p2 {
  border-bottom: 1px solid #ccc;
}

.country-blockchain-p1 p {
  padding-top: 13%;
  line-height: 30px;
  color: rgb(27, 27, 27);

  padding-bottom: 20px;
}

.country-blockchain-p2 p {
  padding-top: 20%;
  line-height: 30px;
  color: rgb(27, 27, 27);
}

.country-blockchain-p3 p {
  padding-top: 17%;
  line-height: 30px;
  color: rgb(27, 27, 27);
}

.several-real-estate {
  margin-top: 5%;
  border-top: 5px solid #0e1424;
}

.several-real-estate-blk {
  background-color: #0e1424;
  min-height: 400px;
  padding: 10% 10% 10% 8%;
}

.several-real-estate img {
  padding-top: 10%;
}

.several-real-estate h2 {
  padding-top: 5%;
  line-height: 50px;
  font-size: 2.5em;
  color: #242424;
}

.several-real-estate-blk li {
  font-size: 1.2em;
  color: #fff;
  margin-bottom: 10%;
}

.several-real-estate-blk li::before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #aa0e14;
  border-radius: 100px;
  display: inline-block;
  position: absolute;
  left: -1%;
  font-family: FontAwesome;
  content: "\f00c";
  text-align: center;
  line-height: 50px;
}

.companies-interested {
  background-color: #f1f1f1;
  padding-top: 6%;
  padding-bottom: 7%;
  background: url(../img/real-estate-tokenization/companies-interested-bg.webp?v=2.0) center left no-repeat;
  background-size: 100%;
}

.companies-interested h3 {
  text-align: center;
  line-height: 40px;
  border: 5px solid #000;
  padding: 40px;
  font-size: 2em;
  color: #000;
  font-weight: 200;
}

.important-topics {
  padding-top: 6%;
  padding-bottom: 7%;
  text-align: center;
}

.important-topics h3 {
  margin-bottom: 5%;
  font-size: 2em;
}

.important-topics-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.important-topics-box div {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 23px;
  height: 150px;
  text-align: center;

  width: 19%;
  display: grid;

  color: #000;
  align-items: center;
  font-size: 1.1em;
}

.important-topics-box i {
  font-size: 1.3em;
  color: #aa0e14;
}

.important-topics p {
  font-size: 1.5em;
  color: #000;
}

@media (max-width: 480px) {
  .change-citizenship h3 {
    font-size: 1.5em !important;
    line-height: 29px !important;
    padding: 10px 13px !important;

  }

  .citi-how-do-we-help p {
    font-size: 1.3em !important;
    line-height: 36px !important;

  }

  .type-of-visa-box {
    height: auto !important;
  }

  .country-citizenship-rounded-wrap-box {
    height: auto !important;
    margin-bottom: 16px !important;
  }

  .advantages-citizenship li,
  .concerns-citizenship li {
    padding-left: 30px !important;
    background-size: 6% !important;
  }

  .advantages-citizenship h2,
  .concerns-citizenship h2,
  .country-citizenship-rounded-wrap h2,
  .citi-how-do-we-help h2 {
    font-size: 1.9em !important;
    text-align: center !important;
  }

  .change-citizenship-box {
    height: auto !important;
    margin-bottom: 19px !important;
  }

  .change-citizenship i {
    top: 43% !important;

  }

  .what-citizenship h2 {
    font-size: 2em !important;
  }

  .having-lawyer {
    background: #0e1424 url(../img/citizenship/having-lawyer.jpg)top left no-repeat !important;
    background-size: cover !important;
  }

  .big-legal-trouble h2 {
    font-size: 1.8em !important;
    line-height: 38px !important;
    text-align: center !important;
  }

  .road-map-seeking-box-img img {
    width: 30px !important;
  }

  .road-map-seeking-box {
    align-items: center !important;

  }

  .road-map-seeking h2 {
    line-height: 39px !important;
    font-size: 1.8em !important;
    text-align: center !important;
    margin-top: 5% !important;
  }

  .citizenship-golden-banner h4 {
    font-size: 1.2em !important;
    line-height: 26px !important;
    padding-right: 0 !important;
  }

  .citizenship-golden-banner p::after {
    width: 183px !important;
    height: 20px !important;
    right: 5% !important;
    top: 83% !important;
  }

  .citizenship-golden-banner h3 {
    font-size: 1.3em !important;
    line-height: 25px !important;

  }

  .citizenship-golden-banner {
    padding-top: 19.5% !important;
  }

  .citizenship-golden-banner h1 {
    font-size: 2em !important;
    line-height: 39px !important;

  }


  .finjuris-help h2 {
    font-size: 1.7em !important;
    line-height: 38px !important;

  }

  .finjuris-help-text {

    padding: 5% 8% !important;
  }

  .first-legal-consultancy {

    padding-bottom: 0 !important;

    background-size: cover !important;

  }

  .first-legal-consultancy h2 {

    font-size: 2em !important;
    line-height: 50px !important;
  }


  .metaverse-infigraphic {

    padding-top: 6% !important;
  }

  .metaverse-infigraphic h2 {
    text-align: center !important;
    margin-bottom: 5% !important;
    line-height: 32px !important
  }

  .metaverse-consultants h2 {
    text-align: center !important;

    font-size: 1.7em !important;
    line-height: 41px !important;

  }

  .metaverse-consultants {

    height: 596px !important;
  }

  .hexa-middle-img {
    display: none;
  }


  .hexagon-shape:before {

    border-left: 226px solid transparent !important;
    border-right: 226px solid transparent !important;

  }

  .hexagon-shape:after {

    border-left: 226px solid transparent !important;
    border-right: 226px solid transparent !important;
  }

  .hexagon-shape2 {
    margin-left: 0% !important;
    margin-bottom: 39% !important;
  }

  .hexagon-shape {
    width: 100% !important;
  }

  .hexagon-shape1 {
    margin-left: 0% !important;
    margin-bottom: 39% !important;
  }

  .hexagon {

    padding: 23% 0 0% 0 !important
  }

  .metaverse-bnr img {
    margin-top: 0 !important;
  }

  .metaverse-bnr h1,
  .metaverse-bnr h4,
  .metaverse-bnr p {
    text-align: center !important;
  }

  .metaverse-bnr span {
    font-size: 1.2em !important
  }

  .metaverse-bnr {
    background: url(../img/metaverse/metaverse-banner.jpg) left center no-repeat !important;

    padding-top: 10%;
    background-size: cover !important;
    padding-bottom: 0% !important;
  }

  .real-estate-tokenization-bnr {
    margin-top: 16%;
    text-align: center;
  }

  .real-estate-tokenization-bnr h1 {
    font-size: 3.6em;
    line-height: 72px;

    margin-top: 3%;
    letter-spacing: 1px;
  }

  .real-estate-tokenization-bnr span {
    font-size: 1em;
  }

  .real-estate-tokenization-bnr h2 {
    font-size: 2.5em;
  }

  .real-estate-tokenization-btn {
    display: grid;
    width: auto;
    margin-top: 18%;
  }

  .real-estate-tokenization-no {
    margin-right: 0;
    width: auto;
  }

  .real-estate-tokenization-bnr img {
    padding-top: 4%;
  }

  .ret-banner-bottom {
    height: auto;
  }

  .advantages-ret-box {
    margin-bottom: 10px;
  }

  .several-real-estate h2 {
    padding-top: 5%;
    line-height: 36px;
    font-size: 2em;

    text-align: center;
    margin-bottom: 25px;
  }

  .several-real-estate img {
    padding-top: 10%;
    margin: 0 auto;
    width: 74px;
    height: auto;
    display: block;
  }

  .several-real-estate-blk {
    background-color: #0e1424;
    min-height: 400px;
    padding: 10% 10% 2% 18%;
  }

  .several-real-estate-blk li::before {
    width: 40px;
    height: 40px;

    left: 30px;

    line-height: 40px;
  }

  .several-real-estate-blk li {
    margin-bottom: 15%;
  }

  .companies-interested h3 {
    line-height: 35px;

    padding: 16px 20px;
    font-size: 1.6em;
  }

  .companies-interested {
    background-size: cover;
    margin-top: 10%;
  }

  .important-topics-box div {
    width: 49.2%;
    background-color: #f1f1f1;
    margin: 1px;
    border: none;
  }

  .important-topics {
    padding-top: 8%;
  }

  .important-topics h3 {
    margin-bottom: 9%;
    font-size: 2em;
    font-size: 1.5em;
    font-weight: normal;
  }

  .advantages-ret h2 {
    text-align: center;
    font-size: 2em;
    color: #fff;
    margin-bottom: 8%;
    font-weight: inherit;
    line-height: 43px;
  }

  .important-topics p {
    font-size: 1.2em;
    color: #000;
  }
}



@media screen and (max-width:912px) and (min-width: 481px) {
  .typical-roles-box {

    height: auto !important;
    margin-bottom: 17px !important;
  }

  .gaming-employee-license2-nu {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    line-height: 40px !important;
    font-size: 1.2em !important;

  }

  .gaming-employee-license2 {
    background: none !important;
  }

  .individual-gaming li {
    font-size: 1em !important;
  }

  .individual-gaming li::before {
    flex: 0 0 40px !important;
  }

  .individual-gaming h3 {
    width: 68% !important;
  }

  .what-gaming-operator {

    background: rgb(11, 12, 33) url(../img/gaming-operator/what-gaming-operator.png?v=82)-46% 0 no-repeat !important;
  }

  .gaming-employee-licenses p {
    margin-bottom: 0 !important;
  }

  .gaming-employee-licenses-box img {
    width: 14% !important;
    margin-bottom: 3% !important;
  }

  .gaming-employee-licenses-box {
    height: auto !important;
    margin-bottom: 3% !important;
    padding: 30px 15px !important;
  }

  .gaming-employee-licenses h3 {
    width: 50% !important;
  }

  .gaming-operator-licenses-icon {

    margin: 5% auto !important;

  }

  .gaming-operator-licenses {
    padding: 0 33px !important;
  }

  .differences-operator {
    padding: 5% 5% 82% 5% !important;
    background: #cec3b3 url(../img/gaming-operator/differences-operator.png)bottom right no-repeat !important;
  }

  .importance-gaming-operator-box img {
    width: 14% !important;
  }

  .importance-gaming-operator-box {
    margin-bottom: 20px !important
  }

  .compliance-meets p,
  .importance-gaming-operator p,
  .gaming-supplier-licenses p,
  .gaming-employee-licenses p,
  .typical-roles p,
  .application-process p {
    font-size: 1.1em !important;
    line-height: 23px !important;
  }

  .introduction-gaming-operator h2,
  .introduction-gaming-operator p,
  .differences-operator h3,
  .differences-operator p {
    text-align: center !important;
  }

  .introduction-gaming-operator {

    padding-bottom: 47% !important;
    background: #cec3b3 url(../img/gaming-operator/introduction-gaming-operator.png)bottom center no-repeat !important;
    background-size: 69% !important;
  }

  .compliance-meets h3 {

    width: 82% !important;

  }

  .compliance-meets h2,
  .importance-gaming-operator h2,
  .gaming-supplier-licenses h2,
  .gaming-employee-licenses h2,
  .individual-gaming h2,
  .key-person-gaming h2,
  .typical-roles h2,
  .application-process h2,
  .introduction-gaming-operator h2 {
    line-height: 38px !important;
    font-size: 2em !important
  }

  .gaming-operator-banner p {
    font-size: 2em !important;
    text-align: center;
  }

  .gaming-operator-banner h3 {

    margin: 3% auto !important;
    width: 80% !important;
    text-align: center;
    background: linear-gradient(90deg, rgb(9, 171, 205) 50%, rgba(193, 188, 107, 0) 100%) !important;

  }

  .gaming-operator-banner h2 {
    font-size: 1.2em !important;
    line-height: 26px !important;
    text-align: center;
  }

  .gaming-operator-banner {
    background: #0b0c21 url(../img/gaming-operator/gaming-operator-banner.jpg) 240px 0 no-repeat !important;
    background-size: cover !important;
    padding-top: 18% !important
  }

  .gaming-operator-banner h1 {

    font-size: 2em !important;
    text-align: center;
    line-height: 43px !important;
  }

  .ready-to-take-wrapper2 h2,
  .ready-to-take-wrapper2 h2 {
    font-size: 1.6em !important;
  }

  .appropriate h5 {
    font-size: 1.2em !important;
    line-height: 27px !important;
    letter-spacing: 0.4px !important;
  }

  .casino-contact-us button {
    display: grid;
    margin: 0 auto 5%;
  }

  .role-online-gaming-box {
    background: #000000 url(../img/online-casino-gaming/blur-bg1.png)center top no-repeat !important;

  }

  .casino-understanding-online h3,
  .casino-understanding-online2 h3 {
    text-align: center !important;
  }

  .o-licensing-process-box-icon,
  .casino-understanding-online-icon {
    width: 70px !important;
    height: 70px !important;
    flex: 0 0 70px !important;

  }

  .ready-to-take-wrapper,
  .casino-understanding-online {
    background-image: none !important;
  }

  .casino-contact-us h2 {
    font-size: 2em !important;
    text-align: center !important;
    line-height: 38px !important;
  }

  .casino-contact-us p {
    text-align: center !important;
  }

  .introduction-online-gaming h2,
  .exploring-internet-gaming h2,
  .online-key-benefits h2,
  .multiple-types-licenses h2,
  .o-licensing-process h2,
  .casino-understanding-online h2,
  .role-online-gaming h2 {
    font-size: 2em !important;
    line-height: 38px !important;
  }

  .online-casino-banner p {
    text-align: center !important;
  }

  .online-casino-banner h3 {
    background: linear-gradient(90deg, rgba(226, 108, 255, 0) 0%, rgba(253, 50, 33, 1) 50%, rgba(0, 255, 246, 0) 100%) !important;
    text-align: center !important;
    margin: 4% 0 1% !important;
    width: 100% !important;
    font-size: 1.1em !important;
  }

  .online-casino-banner h2 {
    font-size: 1.3em !important;
    line-height: 31px !important;
    text-align: center !important;
  }

  .online-casino-banner {
    background: #0b0c21 url(../img/online-casino-gaming/online-casino-gaming-banner.jpg)83px 0 no-repeat !important;
    background-size: cover !important;
    padding-top: 18% !important;

  }

  .online-casino-banner h1 {

    font-size: 2em !important;
    text-align: center !important;
    line-height: 40px !important;

  }


  .pros-and-cons-box {
    margin-bottom: 5% !important;
  }

  .gcgra-faq .card-body {
    padding: 1.25rem 30px !important;
  }

  .gcgra-faq .btn {
    line-height: 25px !important;
    padding: 0 4px !important;
  }

  .why-is-critical h2 {
    font-size: 1.5em !important;
    line-height: 40px !important;
    margin-bottom: 2% !important;
  }

  .the-role-gaming {
    padding-top: 55% !important;

  }

  .laws-for-players-box {
    height: auto !important;
    margin-bottom: 4%;
  }

  .gaming-license h2,
  .adherence-wrap h2,
  .gcgra-gaming-license h2,
  .g-application-process h2,
  .pros-and-cons h2,
  .how-to-apply h2,
  .gcgra-faq h2,
  .entity-licenses h2,
  .gaming-licensesin-uae h2,
  .uae-federal h2,
  .laws-for-players h2 {
    font-size: 2em !important;

    line-height: 35px !important;
    margin-bottom: 2% !important;
  }

  .adherence-img {
    height: auto !important;
    width: auto !important;
  }

  .crypto-virtual-asset-venture-banner p {
    font-size: 2em !important;
    text-align: center !important;
  }

  .crypto-virtual-asset-venture-banner h3 {
    background: linear-gradient(90deg, rgba(226, 108, 255, 0) 0%, rgba(253, 50, 33, 1) 50%, rgba(0, 255, 246, 0) 100%) !important;
    margin: 4% 0 1% !important;
    width: 100% !important;
    font-size: 1.1em !important;
    text-align: center;

  }

  .crypto-virtual-asset-venture-banner h2 {
    font-size: 1em !important;
    line-height: 26px !important;
    text-align: center !important;
  }

  .crypto-virtual-asset-venture-banner {
    background: url(../img/gcgra-commercial/gcgra-commercial-banner.jpg )top left no-repeat !important;
    padding-top: 18% !important;
    background-size: cover !important;

  }

  .crypto-virtual-asset-venture-banner h1 {
    font-size: 2em !important;
    line-height: 40px !important;
    text-align: center;
  }

  .crypto-journey h3 {

    font-size: 1.4em !important;

  }

  .crypto-journey {

    padding: 9% 5% 5% 5% !important;
    margin-bottom: 5%;
  }

  .crypto-journey h5 {

    font-size: 1.1em !important;

  }

  .crypto-journey hr {
    width: 100% !important
  }

  .crypto-journey p {

    font-size: 1.2em !important;

  }

  .crypto-journey-plan {
    width: 100% !important;
    padding: 9px 15px !important;
    margin: 3% auto 3% !important;
  }

  .crypto-journey h4 {
    font-size: 1.1em !important;
    margin-bottom: 3% !important;
    letter-spacing: 0.5px;

  }

  .crypto-journey h2 {
    margin-bottom: 7% !important;
    font-size: 1.7em !important;
  }

  .cvav-legal-consultant-box {
    height: 251px !important;
    margin-bottom: 4% !important;

  }

  .cvav-legal-consultant h4 {
    padding: 3% 10% 7% 14% !important;
    color: #fff !important;
    line-height: 22px !important;
    font-size: 1em !important;
  }

  .cvav-legal-consultant-circle::before {
    width: 520px !important;
    height: 520px !important;

  }


  .cvav-legal-consultant-circle h2 {

    padding: 20% 15% 0 14% !important;
    font-size: 2em !important;
    margin-bottom: 0% !important;
  }


  .crypto-vav-question {

    background: #202020 url(../img/crypto-virtual-Asset/crypto-vav-question-bg.jpg)50% 0 no-repeat !important
  }

  .crypto-virtual-asset-banner-list {

    padding: 2.5% 2% !important;
    width: 247px !important;
    margin-bottom: 2% !important;

  }

  .crypto-virtual-asset-banner-list-flex {

    flex-wrap: wrap;
  }

  .crypto-virtual-asset-banner .metaverse-bnr-connectus {
    margin-bottom: 6%;
    margin-top: 0%;
  }

  .crypto-virtual-asset-banner .metaverse-bnr-connectus div::after {
    width: 342px !important;
  }

  .crypto-virtual-asset-banner .metaverse-bnr-connectus div::after {
    left: 21% !important;
  }

  .crypto-virtual-asset-banner h2 {

    font-size: 1.3em !important;
    line-height: 30px !important;
  }

  .crypto-virtual-asset-banner h1 {
    line-height: 40px !important;
    font-size: 2em !important;
  }

  .crypto-virtual-asset-banner h1,
  .crypto-virtual-asset-banner h2 {
    text-align: center;

  }

  .crypto-virtual-asset-banner {

    padding-top: 14% !important;

  }

  .list-expertise li {
    padding: 0 !important;
    margin-bottom: 4%;
  }

  .list-expertise li a {
    font-size: 17px !important;
  }

  .list-expertise li a i {
    margin-right: 7px !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 31px !important;

  }

  .expertise_cnt {
    margin: 27px 0 !important;
  }

  .get-left-content h2 {

    font-size: 1.5em !important;
    margin-bottom: 10px !important;
    line-height: 31px !important;

  }

  .list-expertise {
    display: flex;
    flex-wrap: wrap !important;
  }

  .grow-with-us-bg {

    height: 472px !important;
  }

  .grow-with-us-img::before {
    width: 92px !important;
    left: 101px !important;
    height: 42% !important;
  }

  .grow-with-us-img::after {
    display: none !important;

  }

  .grow-with-us-img {
    background: url(../img/home-page/grow-with-us-img.png)top center no-repeat !important;
    background-size: cover !important;
    height: 471px !important;

  }

  .brands-area p {
    text-align: left;
    margin-bottom: 5%;
  }

  .brands-area h2 {
    font-size: 1.5em !important;
    text-align: left;
    margin-bottom: 0 !important;
  }

  .thumb {
    margin-left: 0 !important;
  }

  .single-testimonial .thumb img {
    width: 52px !important;
  }

  .judgments-section-flex {

    padding: 19px !important
  }

  .judgments-section-flex-text p {
    font-size: 1.1em !important;
    line-height: 26px !important;
  }

  .judgments-section-flex-img {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    line-height: 50px !important;

  }

  .home-services-box li::before {

    margin-left: -5.5% !important;
  }

  .home-services-box li {

    padding-left: 8% !important;
  }

  .home-services-box h5 {
    width: auto !important;
  }

  .home-services-box-flex .col-lg-6:nth-child(4) .home-services-box {

    padding-left: 12% !important;

  }

  .judgments-section {
    background: url(../img/home-page/judgments-section-bg.jpg)top right no-repeat !important;
    background-size: cover !important;

  }

  .home-services-box-flex .col-lg-6:nth-child(2) .home-services-box {
    padding-left: 11% !important
  }



  .home-services-box-flex .col-lg-6:nth-child(1) .home-services-box p {
    line-height: 34px !important;
  }

  .home-services-box h3 {
    font-size: 1.7em !important;
    letter-spacing: 0.5px;
  }

  .home-services-box-flex .col-lg-6:nth-child(1) .home-services-box {

    padding-left: 11% !important
  }

  .presence-in-flag-box h5 {
    font-size: 1.1em !important;
  }

  .presence-in-flag-box img {

    width: 70px !important;
    height: 70px !important;

  }

  .presence-in-flag-box {
    width: 16.33% !important;
    padding: 20px 0 !important;
  }

  .presence-in h2 {
    margin-top: 3% !important;
    font-size: 1.5em !important;
    letter-spacing: 0.5px;
    margin-bottom: 5%;

  }

  .presence-in {

    padding-top: 6% !important;

  }

  .free-mboile-nu {
    width: 300px !important;
  }

  .free-call a {
    padding: 15px 15px !important;
    font-size: 1em !important;
    width: 245px !important;
  }

  .free-legal-advice {

    padding: 20px 16px !important;
  }

  .world-class-service-text-box {
    margin-bottom: 1% !important;
  }

  .world-class-service-text-box-img {
    width: 40px !important;
    height: 40px !important;
    line-height: 36px !important;
    flex: 0 0 40px !important;
  }

  .free-legal-advice-contact {

    flex-wrap: wrap !important;
  }

  .world-class-service-text-box h3 {

    font-size: 1.2em !important;
    font-weight: 600 !important;
    line-height: 22px !important;
  }

  .free-legal-advice-wrap {
    margin-top: 15% !important;
  }

  .world-class-service h2 {
    font-size: 1.5em !important;
    margin-top: 3% !important;
    line-height: 29px !important;
    margin-bottom: 7% !important;

  }

  .world-class-service-text small {
    margin-left: 7% !important;
  }

  .world-class-service-img img {
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 5%;
  }

  .cyber-crime-professionals-assist-bh {
    height: auto !important;
    margin-bottom: 5% !important;
  }

  .cyber-crime-we-help-you {
    height: 120px;
  }

  .digitally-connected {

    background-size: 50% !important;
  }

  .mbr-gallery .modal .close {

    top: 21.5rem !important;

  }

  .mbr-gallery .mbr-slider .carousel-control {

    top: 50% !important;

  }

  .rak-dao-banner h1 {
    font-weight: 800 !important;
    margin-bottom: 4%;
    line-height: 70px;
    font-family: "Montserrat", sans-serif !important;
    color: #fff;
    font-size: 3.4em !important;
  }


  .rak-dao-why-choose img {
    margin-top: 10% !important;
    margin-bottom: 10% !important;
  }

  .elements-of-metaverse2 .elements-of-metaverse-box::after {
    height: 573px !important;
  }

  .elements-of-metaverse2 .elements-of-metaverse-box {
    position: relative;
    height: 573px !important;
    margin-bottom: 30px;
  }

  .difc-why-choose2 .difc-why-choose-box {

    height: 456px !important;
  }

  .leading-legal-advisory {

    padding-bottom: 32% !important;

  }

  .leading-legal-advisory {

    padding-top: 18% !important;
  }



  .features-of-st .container {
    max-width: 100% !important;
  }


  .what-is-st {

    padding-bottom: 30% !important;
  }

  .stablecoins-banner .metaverse-bnr-connectus div::after {
    background-color: transparent !important;
    z-index: -2 !important;
  }

  .flex-column button:nth-child(2) {
    padding-right: 58px;
  }

  .key-features-sat .nav-pills .nav-link.active::after {
    margin-top: -15px !important
  }

  .key-features-sat .nav-pills .nav-link.active::after {
    margin-top: -15px !important
  }

  .features-of-stablecoin-box {
    height: 558px !important;
  }

  .what-stablecoins2 {
    background: url(../img/stablecoins/what-stablecoins.png?v=2.0)0px 50px no-repeat !important;
    height: 474px !important;
    right: 0px !important;

  }

  .our-expert h4 {

    line-height: 35px !important;
    font-size: 0.8em !important;
  }



  .licensing-categories {

    background: url(../img/difc/licensing-categories.png)0px 100px no-repeat !important;
    background-size: cover !important;
  }

  .difc-why-choose-box h4 {
    line-height: 25px !important;
    margin-bottom: 9% !important;

  }

  .difc-why-choose-box {

    padding: 30px 15px !important;
    height: 560px !important;
  }

  .difc-office {

    background: url(../img/difc/difc-office.jpg)80% 0% no-repeat !important;
    background-size: cover !important;
  }

  .difc-accordion .btn {
    padding: 8px 20px !important;
    height: auto;
    line-height: 25px;

  }

  .licenses-offered-box {

    height: 390px !important;

  }

  .difc-banner {
    background: url(../img/difc/dubai_international_financial_centre.jpg )top left no-repeat !important;
    background-size: cover !important;

  }

  .difc-banner .metaverse-bnr-connectus small {

    margin-left: 15.5% !important;
  }

  .difc-banner .metaverse-bnr-connectus h3 {
    line-height: 47px !important;

  }

  .vara-licensed-box-h {
    height: 700px !important;
    margin-bottom: 6%;
  }

  .vara-faq .btn {
    padding: 10px 15px !important;
    line-height: 24px;
    background: #26262b !important;
    height: auto !important;

  }

  .vara-banner .metaverse-bnr-connectus small {

    margin-left: 15.5% !important;
  }

  .vara-banner .metaverse-bnr-connectus h3 {
    font-size: 1.3em !important;
    line-height: 50px !important;

  }

  .vara-will-help-box {
    width: auto !important;
    height: 220px !important;

  }

  .vara-why-choose-us {
    background: url(../img/vara/why-choose.png)top center no-repeat !important;
    background-size: cover !important;
  }

  .vara-arrow {
    top: 37.2% !important;
  }

  .vara-heaven-innovators h2 {
    margin-top: 16% !important;
  }

  .aml-faq .accordion {
    margin-top: 7% !important;
  }

  .start-your-journey i {
    font-size: 50px !important;
    margin-top: 3% !important;
    margin-left: 15% !important;

  }


  .aml-services {
    border: 1px solid #c4802e;
    padding: 30px 6px !important;
    border-radius: 4px;
    margin-bottom: 8%;
  }

  .aml-banner {

    padding-bottom: 5% !important;

  }

  .metaverse-bnr-connectus div::after {
    background-color: #111729d6;
    z-index: -2 !important;

  }

  .aml-banner .metaverse-bnr-connectus small {
    margin-left: 15.5% !important;
  }

  .aml-banner h3 {

    line-height: 48px !important;
  }

  .aml-banner p {
    background-color: #17182ac7;

    font-size: 1.2em !important;
  }

  .aml-banner h2 {

    font-size: 1.5em !important;
    line-height: 60px !important;
    padding: 0px 16px !important;
    letter-spacing: 0.5px !important;
    font-weight: 700 !important;

  }



  .type-of-visa-box p {

    padding: 0 25px 25px 25px !important;
    letter-spacing: 0.3px !important;
  }

  .type-of-visa-box {

    height: 1040px !important;
  }

  .country-citizenship-rounded-wrap-box h5 {
    font-size: 1.05em !important;
  }

  .country-citizenship-rounded-wrap-box {
    height: 183px !important;
    padding: 20px 6px !important;

  }

  .advantages-citizenship li,
  .concerns-citizenship li {
    font-size: 1.1em !important;
    line-height: 26px !important;
    padding-left: 40px !important;
    background-size: 7.6% !important
  }

  .advantages-citizenship h2,
  .concerns-citizenship h2 {
    font-size: 2.0em !important;
    margin-bottom: 7% !important;
  }

  .change-citizenship-box p {
    font-size: 1.05em !important;
  }

  .change-citizenship-box img {
    margin-bottom: 6% !important;
    filter: drop-shadow(2px 2px 2px #22222287);
  }

  .change-citizenship-box {
    height: 197px !important;
    padding: 30px 9px !important;
    margin-bottom: 30px !important;
    border-radius: 17px !important;

  }

  .change-citizenship h3 {
    padding: 15px 0 !important;
    line-height: 30px !important;
  }

  .change-citizenship i {
    top: 50% !important
  }

  .having-lawyer-btn {
    margin: 25% auto 0 !important;
  }

  .having-lawyer {
    padding: 39px 20px !important;

  }

  .big-legal-trouble h2 {
    color: #000;
    font-size: 2.0em !important;
  }

  .road-map-seeking-box-img img {
    width: 28px !important;
  }

  .road-map-seeking-box {
    align-items: center !important;

  }

  .road-map-seeking h2 {
    font-size: 1.8em !important;
    margin-bottom: 7% !important;
    line-height: 37px !important;
  }

  .citizenship-golden-banner h4 {
    font-size: 1.2em !important;
    line-height: 27px !important;
    padding-right: 0 !important;
  }

  .citizenship-golden-banner p::after {
    right: 9% !important;
    top: 85% !important;
  }


  h3 {
    font-size: 1.3em !important;
    line-height: 27px !important;
  }

  .citizenship-golden-banner h1 {
    font-size: 2em !important;
    line-height: 42px !important;

  }

  .beneficial-ret {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .realestate-sector {

    background: url(../img/real-estate-tokenization-new/rea-estate-sector-bg.jpg)top left no-repeat !important;
    background-size: cover !important;
  }

  .tokenization-potential-text p::before {

    left: -30px !important;
    top: -10%;
  }

  .ret-arrow {
    width: 200px !important;
    height: 300px !important;
    bottom: -20% !important;
    left: 58% !important;
  }

  .real-estate-tokenization-bnr1 {
    background: #000f29 url(../img/real-estate-tokenization-new/real-estate-tokenization1-banner.jpg)center 70px no-repeat !important;
    background-size: cover !important;

  }

  .dubai-crypto-license1 {
    padding-top: 13%;
    padding-bottom: 8%;
    background: url(../img/dubai-crypto-license/dubai-crypto-bg-right.png)right center no-repeat, url(../img/dubai-crypto-license/dubai-crypto-bg-white.jpg)right bottom no-repeat !important;
    background-size: 50%, cover !important;
  }

  .our-knowledge-box {
    padding: 16px !important;
    height: 280px !important;
    word-break: break-word !important;
  }

  .main-offices-comma h2 {
    font-size: 1.5em !important;
  }

  .main-offices-comma::before {

    width: 100px !important;
    height: 100px !important;
    top: -26% !important;

  }

  .main-offices h3 {
    line-height: 34px !important;
  }

  .main-offices {
    padding-top: 29% !important;
    padding-bottom: 5%;
  }

  .understanding-analysing-text h3 {
    font-size: 1.5em !important;
    line-height: 37px !important;
  }

  .understanding-analysing-img {
    width: 359px !important;
    height: 270px !important;
  }

  .international-taxation h4 {
    margin: 16% auto 0 !important;
  }

  .international-taxation h4::before {
    right: 42% !important;
    bottom: 32% !important;
  }

  .international-taxation h1 {

    line-height: 55px !important;
  }

  .legal-development-services-text {
    margin-bottom: 15px !important;
    height: 190px !important;
  }

  .knowledge-base-banner {
    padding-top: 13% !important;

    height: 240px !important;

  }

  .law-icon::before {

    width: 283px !important;
  }

  .law-icon::after {
    width: 287px !important;
  }

  .license-available-box {

    padding: 30px 8px !important;
    height: 640px !important;

  }

  .license-available {
    padding-top: 32% !important;
  }

  .dubai-crypto-li-list li {
    clear: both !important;
  }

  .how-eat-que {

    margin-bottom: 15.5% !important;
  }


  .forex-business h3 {

    padding: 20px 0 !important;
    line-height: 34px !important;
  }

  .forex-business-list div {

    margin: 0% 1.5% 3% 0 !important;
  }

  .forex-business-list {

    flex-wrap: wrap;
  }

  .list-of-financial-flag-text .modal-dialog {
    max-width: 56% !important;
    top: 80px !important;
  }

  .difc-text {

    padding: 40px !important;
  }

  .abu-dhabi-space {
    margin-top: 0% !important;
  }

  .forex-trading-dmcc,
  .setting-the-uae {
    background-size: cover !important;
  }

  .forex-trading1 {
    background: url(../img/forex/forex-trading1.jpg)top left no-repeat !important;
    background-size: cover !important;
  }

  .list-of-financial {

    background: url(../img/forex/flag/flags-bg.jpg)top left no-repeat !important;
    background-size: cover !important;
  }

  .forex-regulatory {
    background: url(../img/forex/forex-regulatory.jpg)70% 0 no-repeat !important;
    background-size: cover !important;
  }

  .forex-business {
    background-size: cover !important;
    height: 700px !important;
  }

  .crypto-lawyer-blockchain-lawyer-connectus h2 {

    padding-bottom: 6% !important;
    margin-top: 2% !important;
  }

  .crypto-lawyer-blockchain-lawyer-service h3 {
    margin-bottom: 4% !important;
  }

  .crypto-lawyer-blockchain-lawyer-service div::before {
    width: 47% !important;
  }

  .crypto-lawyer-blockchain-lawyer-service div {
    width: 47% !important;
    margin-bottom: 5% !important;
  }

  .finjuris-help-text {

    padding: 5% 6% !important;
  }

  .first-legal-consultancy h2 {
    font-size: 2.9em !important;
    line-height: 59px !important;

  }

  .first-legal-consultancy {
    background-size: cover !important;
  }

  .first-legal-consultancy h2 {
    font-size: 2.5em;
    line-height: 59px;
  }

  .hexagon {
    padding: 15% 0 10% 0 !important;
  }

  .metaverse-consultants h2 {
    font-size: 1.6em !important;
    line-height: 38px !important;
  }

  .hexagon-shape2 {
    margin-bottom: 25% !important;
  }

  .hexagon-shape::before {
    border-left: 165px solid transparent !important;
    border-right: 165px solid transparent !important;
  }

  .hexagon-shape::after {
    border-left: 165px solid transparent !important;
    border-right: 165px solid transparent !important;
  }

  .hexagon-shape1 {
    margin-left: 0 !important;

  }

  .hexagon-shape {
    height: 302px !important;
    width: 100% !important;
  }

  .metaverse-bnr img {
    margin-top: 0 !important;

  }

  .metaverse-bnr {
    background: url(../img/metaverse/metaverse-banner.jpg) left top no-repeat !important;

    padding-top: 8% !important;
    background-size: cover !important;
    padding-bottom: 0% !important;
  }

  .role {
    height: auto !important;
  }

  .cryptocurrency-lawyers {
    margin-top: 5%;
  }

  .cryptocurrency-lawyers::before {

    left: -9.1% !important;
    top: 55% !important;

  }

  .blockchain-lawyers p {
    margin-left: 0 !important;
  }

  .what-is-blockchain-box {

    height: 264px !important;
    margin-top: 11% !important;

  }

  .crypto-lawyer-blockchain-lawyer {

    background: #000 url(../img/crypto-lawyer-blockchain-lawyer/crypto-lawyer-blockchain-lawyer-img5.webp) 90% 15% no-repeat !important;

    background-size: 41% !important;
  }

  .real-estate-tokenization-bnr {
    text-align: center;
  }

  .real-estate-tokenization-btn {
    width: 582px;
    border: 2px solid #fff;
    display: flex;
    padding: 7px;
    margin-top: 5%;
    margin: 5% auto 0;
  }

  .real-estate-tokenization-bnr img {
    padding-top: 4%;
  }

  .ret-banner-bottom {
    height: 370px;
  }

  .advantages-ret-box {
    margin-bottom: 10%;
  }

  .several-real-estate h2 {
    padding-top: 5%;
    line-height: 44px;
    font-size: 2em;
  }

  .several-real-estate-blk li::before {
    width: 40px;
    height: 40px;

    line-height: 38px;
  }

  .several-real-estate-blk {
    background-color: #0e1424;
    min-height: 374px;
    padding: 10% 3% 0% 11%;
  }

  .companies-interested {
    padding-top: 0;
  }

  .important-topics-box div {
    padding: 9px;
    height: 150px;

    width: 20%;
  }

  .important-topics p {
    font-size: 1.3em;
    color: #000;
  }
}

/*Start Blockchain Crypto Legal Consulting*/

.crypto-legal-consulting {
  padding-top: 15%;
  padding-bottom: 5%;

  background: #1b1b1d url(../img/blockchain-crypto-legal-consulting/bclc-banner.gif?v=2.0) center right no-repeat;
  background-size: 65%;
}

.crypto-legal-consulting h1 {
  font-size: 2.5em;
  color: #fff;
  line-height: 58px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif !important;
}

.crypto-legal-consulting h2 {
  color: #fff;
  font-weight: 300;
  margin-top: 3%;
  font-size: 1.8em;
  line-height: 41px;
  font-family: "Montserrat", sans-serif !important;
}

.crypto-legal-consulting h5 {
  color: #dc8838;
  border: 1px solid #ffffff73;
  padding: 5px 10px;
  margin-top: 7%;
  font-size: 1.4em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
}

.need-our-services {
  padding-top: 4%;
  padding-bottom: 5%;
  background-color: #1b1b1d;
}

.need-our-services h2 {
  font-size: 3em;
  color: rgb(255, 255, 255);
  margin-bottom: 4%;
  text-align: center;
  margin-top: 5%;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 900;
}

.need-our-services p {
  color: #fff;
  font-size: 1.7em;
  line-height: 40px;
  text-align: center;
  font-weight: 200;
  font-family: "Montserrat", sans-serif !important;
}

.need-our-services-logo {
  background-color: #111;
  border-radius: 10px;
  height: 100px;
  width: 100%;
  margin-bottom: 5%;
  border: 1px solid #fff;
}

.need-our-services-logo div {
  display: inline-block;
  width: 198px;
  margin: 0 10px;
  line-height: 101px;
  opacity: 0.9;
}

.service-areas {
  padding-bottom: 5%;
  background-color: #1b1b1d;
}

.service-areas h4 {
  text-align: center;
  color: #fff;
  font-size: 1.6em;
  font-family: "Montserrat", sans-serif !important;
}

.service-areas-box {
  margin: 7% 2% 2% 2%;
  padding: 15px;
  border-radius: 30px;
  text-align: center;
}

.service-areas-box h5 {
  font-size: 1.5em;
  color: #000;
  line-height: 130px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif !important;
}

.service-areas-box:nth-child(even) {
  background-color: #faf5ed;
  height: 150px;
}

.service-areas-box:nth-child(odd) {
  background-color: #455a64;
  height: 150px;
}

.service-areas-box-c {
  height: 60px;
  width: 60px;
  border-radius: 100px;
  color: #d68538;
  text-align: center;
  position: absolute;
  top: -16%;
  left: 39%;
  line-height: 60px;
  font-size: 2em;
  font-weight: 900;
}

.blockchain-project {
  color: #000;

  padding-bottom: 5%;
  background-color: #1b1b1d;
}

.blockchain-project-box {
  background-color: #fff;
  border-radius: 25px 25px 0px 25px;
  height: auto;
  padding: 5%;
}

.blockchain-project-box h2 {
  color: #000;
  font-size: 2.2em;
  font-weight: 900;

  font-family: "Montserrat", sans-serif !important;
  line-height: 45px;
}

.blockchain-project-box p {
  margin-top: 5%;
  letter-spacing: 0.3px;
}

.blockchain-project-bottom img {
  margin: 5% 0% 0% 6%;
  width: 15%;
}

.blockchain-project-bottom-white {
  background-color: #fff;
  height: 100px;
  border-radius: 0 0 25px 25px;
  padding: 0 50px;
}

.blockchain-project-bottom-white ul {
  position: absolute;
  top: -45%;
}

.blockchain-project-bottom-white li {
  font-size: 1.3em;
  margin-bottom: 2%;
  font-weight: 600;
}

.navigate-through {
  padding-top: 5%;
  padding-bottom: 10%;

  background: #1b1b1d url(../img/blockchain-crypto-legal-consulting/navigate-through-bottom.png) bottom center no-repeat;
}

.navigate-through h2 {
  color: #fff;
  font-size: 2.1em;
  font-weight: 900;

  font-family: "Montserrat", sans-serif !important;
  line-height: 45px;
  text-align: center;
  margin-bottom: 3%;
}

.navigate-through-points p {
  text-align: center !important;
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 1.1em !important;
}

.navigate-through-points .col {
  padding: 25px;
}

.navigate-through-points img {
  width: 55%;
}

.navigate-through p {
  text-align: center;
  font-weight: 700;
  color: #d68538;
  font-size: 1.3em;
}

.navigate-through h5 {
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  color: #ffcd9e;
  font-weight: 500;
  line-height: 30px;
  padding: 0 40px;
  margin-top: 5%;
  letter-spacing: 0.5px;
}

.blockchain-vector {
  padding-top: 5%;
  padding-bottom: 7%;
  background-color: #1b1b1d;
}

.need-to-know {
  padding-top: 7%;
  padding-bottom: 7%;
  background: #1b1b1d url(../img/blockchain-crypto-legal-consulting/need-to-know-bg.gif?v=2.0) center top no-repeat;
  background-size: 100%;
  position: relative;
}

.overlay {
  background: url(../img/blockchain-crypto-legal-consulting/overlay.png) bottom left repeat-x;
  position: absolute;
  background-size: contain;
}

.need-to-know-box {
  width: 100%;
  height: 140px;
  padding: 20px 18px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15%;
}

.need-to-know-box p {
  color: #000;
  line-height: 23px;
}

.need-to-know h4 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 38px;
  font-weight: 900;
}

.few-more-pointers h2 {
  text-align: center;
  color: #fff;
  font-size: 2.5em;
  font-weight: 900;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 7%;
  line-height: 50px;
}

.few-more-pointers h3 {
  text-align: center;
  color: #ff9635;
  font-size: 1.8em;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 3%;
  line-height: 35px;
  padding: 0 20%;
}

.talk-with-expert a {
  width: 400px;
  height: 60px;
  background-color: #fff;
  color: #000;
  font-weight: 800;
  font-size: 2em;
  text-align: center;
  margin: 5% auto 0;
  border-radius: 10px;
  line-height: 60px;
  display: block;
}

.talk-with-expert a:hover {
  background-color: transparent;
  outline: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  transition: all 0.3s linear;
}

.ideation {
  background-color: #26262b;
  padding-top: 8%;
  padding-bottom: 8%;
  display: flex;
}

.ideation-box div {
  width: 250px;
  height: 150px;
  border-radius: 30px;
  background: #26262b;
  box-shadow: 22px 22px 44px #1d1d21, -22px -22px 44px #2f2f35;

  padding: 20px;

  margin: 2% 1%;
  display: inline-block;
  text-align: center;
}

.ideation-box div p {
  color: #fff;
  font-size: 1.1em;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
}

.ideation-box div img {
  width: 20%;
  margin-bottom: 5%;
}

.ideation-box div:nth-child(9) {
  margin: 2% auto;
  display: block;
}

.crypto-legal-consulting-form {
  background-color: #191919;
  padding-top: 5%;
  padding-bottom: 8%;
}

.crypto-legal-consulting-form h2 {
  font-size: 3em;
  text-align: center;
  color: rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  margin-top: 4%;
  margin-bottom: 2%;
  letter-spacing: 0.5px;
}

.crypto-legal-consulting-form h3 {
  text-align: center;
  color: #d81313;
  font-weight: 300;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
}

.crypto-legal-consulting-form p {
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-top: 2%;
  line-height: 28px;
  margin-bottom: 5%;
}

.form-head-section h5 {
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 1px;
  margin: 2% auto 5%;
}

.crypto-legal-consulting-form input,
.crypto-legal-consulting-form select,
.crypto-legal-consulting-form textarea {
  background: #ffffff17;
  border: transparent;
  color: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 10px 1px #211f1f3d;
  height: 50px;
}

.crypto-legal-consulting-form textarea {
  height: 100px;
}

.contact-info-detail {
  padding: 35px 60px;
  width: 509px;
  margin: 0 auto 0 45px;

  max-width: 100%;
  border-radius: 7px;
  background: linear-gradient(to top, #8d99af 0, rgb(58 123 213 / 0));

  padding: 20px;
}

.crypto-legal-consulting-form button {
  width: 100%;
  background: #ed1b23;
  background-color: rgb(237, 27, 35);
  border: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
}

.banner-icon .fa-paper-plane {
  background-color: #1c9be9;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
}

.banner-icon .fa-whatsapp {
  background-color: #42be50;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
  font-size: 1.2em;
}



@media screen and (min-width:540px) and (max-width:481px) {



  .mbr-gallery .modal .close {
    top: 7rem !important
  }



  .rak-dao-banner hr {

    width: 100% !important;
    margin-top: 4% !important;
    margin-bottom: 4% !important;
  }

  .leading-legal-advisory img {
    margin-top: 50%;
  }

  .difc-why-choose2 .difc-why-choose-box {
    height: auto !important;
  }

  .rak-dao-banner h3 {
    text-align: center;
    margin-top: 5% !important;
  }

  .rak-dao-banner h1 {
    font-size: 2.9em !important;
    line-height: 60px !important;
    text-align: center;
  }

  .rak-dao-banner {
    padding-top: 25% !important;
    height: 650px !important;
    background: url(../img/digital-assets/mobile-digital-assets-banner.jpg?v=2.0)bottom center no-repeat !important;
  }

  .our-services-box {
    height: auto !important;
    margin-bottom: 3% !important;
  }

  .techno-legal-firms {
    text-align: center !important;
  }

  .techno-legal-firms h2 {
    margin-top: 5% !important;
    text-align: center !important;
  }

  .features-of-st-img img {

    width: 300px !important;
    margin: 0 auto 5% !important;
    display: block !important;
  }

  .types-of-st-box {
    padding: 30px 20px !important;
    height: auto !important;
  }

  .types-of-st-box {
    height: auto !important;
    margin-bottom: 5%;
  }

  .what-is-st {

    background-size: 100% !important;
  }

  .security-tokens-banner h5::after {

    top: 85px !important;
  }

  .security-tokens-banner h1,
  .security-tokens-banner h2,
  .security-tokens-banner h5 {
    text-align: center;
  }

  .security-tokens-banner {

    padding-top: 16% !important;

  }

  .need-to-know-more {

    padding: 33px !important;

  }

  .key-features-sat .nav-pills .nav-link.active::after {
    margin-top: 1px !important;
  }

  .features-of-stablecoin-box {
    height: auto !important;
    background-size: cover !important;
    margin-bottom: 3% !important;
  }

  .what-stablecoins2 {
    background: url(../img/stablecoins/what-stablecoins.png?v=2.0)-200px 50px no-repeat !important;
    top: 160px !important
  }

  .what-stablecoins {
    padding-top: 330px !important
  }

  .our-expert img {
    width: 50% !important;
    margin: 0 auto !important;
    display: block;
  }

  .our-expert {
    width: auto !important;
    margin: 20px;
    top: -80px !important
  }

  .adgm-free-zone h4::after {
    display: none !important;
  }

  .adgm-free-zone2 {
    margin-bottom: 5%;
  }

  .adgm-features-box {
    height: auto !important;
  }

  .about-adgm {

    padding-bottom: 45% !important;

  }

  .adgm-banner h1 {

    font-size: 3.5em !important;

  }

  .licenses-offered-box {
    height: auto !important;
  }

  .difc-why-choose-box {

    height: auto !important;
  }

  .our-services-aml {
    margin-bottom: 3% !important;
    height: auto !important;

  }

  .anti-money {

    background: none !important;
    background-color: #f1f1f1 !important;

  }

  .aml-services {

    margin-bottom: 3% !important;
  }

  .type-of-visa-box {
    height: auto !important;
  }

  .country-citizenship-rounded-wrap-box {
    height: auto !important;
    padding: 20px 6px !important;
  }

  .advantages-citizenship li,
  .concerns-citizenship li {

    background-size: 5.2% !important;
  }

  .change-citizenship-box {
    height: auto !important;
  }

  .having-lawyer-btn {
    margin: 5% auto 0 !important;
  }

  .having-lawyer {

    background: #0e1424 url(../img/citizenship/having-lawyer.jpg)top left no-repeat !important;
    background-size: cover !important;
  }

  .road-map-seeking h2 {
    margin-top: 5% !important;
  }

  .tokenization-potential-text p {
    margin-left: 0 !important;
    text-align: center;
  }

  .tokenization-potential-text p::before {

    position: static !important;
    margin: 0 auto !important;
  }

  .tokenization-potential {
    background-color: #012245;
    padding-top: 9% !important;
    padding-bottom: 9% !important;
  }

  .real-estate-tokenization-bnr1 {
    background: #000f29 url(../img/real-estate-tokenization-new/real-estate-tokenization1-banner.jpg)-160px 10px no-repeat !important;
    background-size: cover !important;
  }

  .beneficial-ret-box {
    height: auto !important;
  }

  .dubai-crypto-license1 {
    padding-top: 17% !important;
    padding-bottom: 48% !important;
    background: url(../img/dubai-crypto-license/dubai-crypto-bg-right.png)52% 100% no-repeat, url(../img/dubai-crypto-license/dubai-crypto-bg-white.jpg)right bottom no-repeat !important;
    background-size: 40%, cover !important;
  }

  .professionals-tax {
    position: relative !important;
  }

  .our-knowledge-box {
    padding: 35px !important;
    height: auto !important;

  }

  .main-offices {
    padding-top: 55% !important;
    padding-bottom: 5%;
  }

  .understanding-analysing-text h3 {
    font-size: 2em !important;
    line-height: 40px !important;
    text-align: center !important;
    padding: 8% !important;
  }

  .understanding-analysing-img {
    width: 100% !important;
    height: 410px !important;
    position: static !important;
  }

  .knowledge-base-banner h1 {
    font-size: 2em !important;
  }

  .knowledge-base-banner {
    height: 190px !important;
    padding-top: 17% !important;
  }

  .knowledge-base-btn .nav-tabs .nav-link {
    padding: 15px 37px !important;
    width: auto !important;
  }

  .virtual-asset-box {
    height: 380px !important;
  }

  .license-available-box {

    height: auto !important;
  }

  .why-you-need-box div {
    width: 100% !important;
    margin: 0 1% 2%;
  }

  .why-you-need-box {
    display: grid !important;

  }

  .law-icon::before {
    width: 203px !important;
  }

  .law-icon::after {
    width: 205px !important;
  }

  .crypto-lawyer-blockchain-lawyer {
    background: none !important;
  }

  .crypto-lawyer-blockchain-lawyer {
    background: none !important;
  }

  .crypto-lawyer-blockchain-lawyer-service h5 {
    margin-right: 0 !important;
  }

  .crypto-lawyer-blockchain-lawyer-connectus h5 {
    padding: 20px !important;
  }

  .crypto-lawyer-blockchain-lawyer-connectus h2 {
    font-size: 2em !important;
    padding-bottom: 6% !important;
    margin-top: 0 !important;
  }

  .crypto-lawyer-blockchain-lawyer-service h3 {
    margin-top: 6% !important;
    margin-bottom: 8% !important;
  }

  .crypto-lawyer-blockchain-lawyer-service div::before {
    width: 100% !important;
    margin-right: 0 !important;
  }

  .crypto-lawyer-blockchain-lawyer-service div {

    width: 100% !important;
    margin-bottom: 9% !important;
    margin-right: 0% !important;
  }

}

@media (max-width: 480px) {

  .comprehensive-aml-Services-box {
    margin-bottom: 5% !important;
  }

  .aml-banner .metaverse-bnr-connectus div::after {
    left: 28% !important;
  }

  .aml-banner {
    background: url(../img/aml/aml-banner.jpg)top left no-repeat !important
  }

  .aml-services {

    margin-bottom: 3% !important;
  }

  .comprehensive-aml-Services-box {
    height: auto !important;
  }

  .step-towards-compliance {

    background: #272a2f url(../img/aml/step-towards-compliance.png) top left no-repeat !important;

  }

  .rak-dao-banner .metaverse-bnr-connectus div::after {
    background-color: #00000063;
    z-index: -2;
    left: 34% !important;
  }

  .rak-dao-banner .metaverse-bnr-connectus {

    margin-top: 63% !important;
  }

  .rak-dao-banner h1 {
    font-size: 2.3em !important;
    text-align: center;
    line-height: 50px !important;
  }

  .rak-dao-banner h2 {
    text-align: center !important;
  }

  .our-services-aml {
    margin-bottom: 4% !important;
    height: auto !important;

  }

  .aml-faq .accordion {
    margin-top: 7%;
  }

  .start-your-journey h3 {
    font-size: 1.6em !important;
    line-height: 37px !important;
    text-align: center !important;
  }

  .anti-money {
    background: #eee url(../img/aml/anti-money.png)top left no-repeat !important;
    background-size: cover !important;
  }

  .aml-banner p {
    background-color: #17182ac7;
    padding: 10px;
    text-align: center;
    font-size: 1em !important;
  }

  .aml-banner h2 {
    font-size: 1.3em !important;
    line-height: 30px !important;
    padding: 11px 48px !important;
    font-weight: 700 !important;
    text-align: center;
  }

  .aml-banner {

    padding-top: 21% !important;

  }

  .aml-banner h1 {

    font-size: 1.6em !important;
    text-align: center;
    line-height: 35px !important;

  }

  .aml-banner h1 span {
    font-size: 0.9em !important;
    font-weight: 500;
    padding: 0 17px;

  }

  .dubai-crypto-license1 h1 {
    font-size: 2em;
    text-align: center;
    line-height: 37px !important;
  }

  .dubai-crypto-license1 {
    padding-top: 21% !important;
    padding-bottom: 50% !important;
    background: url(../img/dubai-crypto-license/dubai-crypto-bg-right.png)bottom center no-repeat, url(../img/dubai-crypto-license/dubai-crypto-bg-white.jpg)right bottom no-repeat !important;
    background-size: 45%, cover !important;
  }

  .dubai-crypto-license1 h3 {
    font-size: 1.2em !important;
    line-height: 26px !important;

    margin-top: 4% !important;
    color: #000;
    text-align: center;
  }

  .dubai-crypto-license1 h2 {
    text-align: center;
  }

  .our-knowledge-box {

    padding: 30px !important;
    margin-bottom: 16px !important;
    height: auto !important;
  }

  .our-knowledge {
    padding-top: 8% !important;
    padding-bottom: 8% !important;
  }

  .main-offices-comma {

    margin-top: 26% !important;
  }

  .main-offices {
    padding-top: 67% !important;

  }

  .professionals-tax h2 {
    font-size: 1.3em !important;
    line-height: 33px !important;

  }

  .professionals-tax {
    position: static !important;
    padding: 24px !important;


  }

  .taxation-legal p {
    font-size: 1.4em !important;
    line-height: 36px !important;
    font-weight: 600 !important;

  }

  .understanding-analysing-text h3 {
    font-size: 1.5em !important;
    line-height: 31px !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 7% !important;
    height: auto !important;

  }

  .understanding-analysing-img {
    width: 100% !important;
    height: 280px !important;
    position: static !important;

  }

  .challenges p:nth-child(1) {
    margin-top: 0% !important;
  }

  .international-taxation {

    height: 660px !important;
  }

  .international-taxation h3 {
    font-size: 1.3em !important;
    line-height: 25px !important;
    font-weight: 600 !important;

  }

  .international-taxation h4::before {
    right: 38% !important;
    bottom: 26% !important;
    width: 90px !important;
    height: 90px !important;
  }

  .international-taxation h4 {
    font-size: 1.5em !important;
    font-weight: 600 !important;
    padding: 5% !important;
    width: 100% !important;
    margin: 23% auto 0 !important;
    line-height: 31px !important;

  }

  .international-taxation {
    padding-top: 21% !important;
  }

  .international-taxation h1 {
    font-size: 2em !important;

    line-height: 38px !important;
    margin-bottom: 4% !important;
  }

  .dubai-crypto-li-list li {
    clear: both !important;
  }

  .law-icon::before {

    width: 139px !important;

  }

  .law-icon::after {

    width: 142px !important;

  }

  .dubai-crypto-license {
    padding-top: 25% !important;
  }

  .virtual-asset p {
    text-align: left !important;
  }

  .virtual-asset-box {
    height: auto !important;
  }

  .virtual-asset {

    padding: 50px 20px 70px 20px !important;
  }

  .license-available-box {
    height: auto !important;
  }

  .honestly-speaking-bg {
    padding: 40px 17px !important;
  }

  .license-available h2 {
    line-height: 39px !important
  }

  .license-available {
    padding-top: 70% !important;
  }

  .dubai-crypto-li-list li {
    clear: both !important;
  }

  .why-you-need-box p {
    margin-top: 4% !important;
  }

  .why-you-need-box {
    display: grid !important;

  }

  .why-you-need-box div {
    width: 100% !important;

  }

  .dubai-crypto-license-que h4 {
    font-size: 1.2em !important;
    line-height: 24px !important;
    padding: 4% !important
  }

  .dubai-crypto-license h3 {
    font-size: 1.2em !important;
    line-height: 33px !important;
  }

  .dubai-crypto-license h1 {
    font-size: 2em !important;
    line-height: 47px !important;
  }

  .talk-with-expert a {
    width: 100%;
    font-size: 1em;
  }

  .crypto-legal-consulting {
    text-align: center;
    padding-top: 25%;
  }

  .crypto-legal-consulting h1 {
    font-size: 1.5em;

    line-height: 35px;
    font-weight: 800;
  }

  .crypto-legal-consulting h2 {
    font-weight: 400;
    margin-top: 5%;
    font-size: 1.2em !important;
    line-height: 27px;
    padding: 0 10px;
  }

  .crypto-legal-consulting h5 {
    font-size: 1.1em;
    line-height: 26px;
  }

  .need-our-services-logo {
    height: auto;
    padding: 3% 0;
  }

  .need-our-services-logo div {
    width: 143px;
    margin: 0 10px;
    line-height: 62px;
    opacity: 0.9;
    text-align: center;
  }

  .need-our-services-logo div:nth-child(5) {
    margin: 0 auto;
    display: block;
  }

  .need-our-services h2 {
    font-size: 1.8em;
    font-weight: 800;
    line-height: 36px;
  }

  .need-our-services p {
    font-size: 1.3em;
    line-height: 30px;
    font-weight: 300;
  }

  .service-areas h4 {
    margin-bottom: 5%;
  }

  .service-areas-box {
    margin: 7% 4% 7% 2%;
    padding: 0 6%;
  }

  .blockchain-project-box {
    text-align: center;
    padding: 8% 5%;
    border-radius: 25px;
  }

  .blockchain-project-box h2 {
    font-size: 1.3em;
    font-weight: 800;

    line-height: 30px;
  }

  .blockchain-project-bottom-white {
    padding: 10px;
    height: auto;
    margin-top: 5%;
    border-radius: 25px;
  }

  .blockchain-project-bottom-white li {
    font-size: 1em;
    margin-bottom: 1%;
    font-weight: 600;
  }

  .blockchain-project-bottom-white ul {
    top: 0;
    position: static;
  }

  .navigate-through h2 {
    font-size: 1.8em;
    font-weight: 800;
    line-height: 35px;
    margin-top: 10%;
  }

  .navigate-through-points .col {
    padding: 25px 43px;
  }

  .navigate-through-points img {
    width: 31%;
  }

  .navigate-through {
    padding-bottom: 23%;
  }

  .navigate-through h5 {
    padding: 0;
    line-height: 27px;
  }

  .blockchain-vector {
    padding-bottom: 10%;
  }

  .need-to-know {
    text-align: center;
  }

  .need-to-know h4 {
    font-size: 1.8em;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 7%;
  }

  .need-to-know-box {
    width: 100%;
    height: auto;
    padding: 20px 18px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 2%;
  }

  .few-more-pointers h2 {
    font-size: 1.8em;
    font-weight: 700;

    line-height: 38px;
  }

  .few-more-pointers h3 {
    font-size: 1.3em;
    font-weight: 400;

    line-height: 30px;
    padding: 0 5%;
  }

  .talk-with-expert {
    width: 100%;

    font-weight: 700;
    font-size: 1.5em;
  }

  .ideation-box div {
    width: 100%;
    height: auto;
    margin: 4% 1%;
  }

  .ideation-box div img {
    width: 14%;
    margin-bottom: 2%;
  }

  .crypto-legal-consulting-form h2 {
    font-size: 1.8em;
  }

  .crypto-legal-consulting-form h3 {
    font-size: 1.7em;
  }

  .contact-info-detail {
    margin: 0;
  }

  .crypto-legal-consulting-form p {
    font-size: 16px;
  }
}

@media screen and (max-width:1700px) and (min-width:110px) {

  .menubar .dropdown .submenu {

    overflow-y: scroll !important;
    overflow-x: hidden !important;
    max-height: 510px !important;
  }
}

@media screen and (max-width:912px) and (min-width: 768px) {
  .step-towards-compliance {

    background: #272a2f url(../img/aml/step-towards-compliance.png)74% 0 no-repeat !important;

  }

  .gaming-employee-license2 {

    background: url(../img/gaming-operator/gaming-employee-license2.jpg)bottom right no-repeat !important;
    background-size: 65% !important;
  }

  .differences-operator h3,
  .differences-operator p {
    text-align: left !important;
  }

  .differences-operator {
    padding: 5% !important;
    background: #cec3b3 url(../img/gaming-operator/differences-operator.png)80px 0 no-repeat !important;
    background-size: cover !important;
  }

  .rak-dao-banner .metaverse-bnr-connectus {
    position: relative;
    z-index: 5;
    margin-top: 36% !important;
  }


  .rak-dao-banner {
    height: 744px !important;
    background: url(../img/digital-assets/digital-assets-banner.jpg)-400px 0 no-repeat !important;
    background-size: cover;
    padding-top: 15%;
    padding-bottom: 6%;
  }

  .our-expert {
    width: 749px !important;
  }

  .types-of-st-box {
    padding: 30px 20px !important;
    height: 1040px !important
  }
}

@media screen and (max-width:912px) and (min-width: 481px) {
  .focus-area-box {
    margin-bottom: 7% !important;
    height: 270px !important;
  }

  .focus-area h2 {

    font-size: 1.7em !important;
    line-height: 32px !important;

  }

  .committing-mistake-points {

    margin-top: 9% !important;

  }

  .committing-mistake-points-img img {
    width: 70% !important;
  }

  .committing-mistake-points-img {
    margin-right: 1%;
    flex: 0 0 42px !important;
  }

  .committing-mistake h5 {

    font-size: 1.4em !important;
    line-height: 28px !important;

  }

  .committing-mistake h2 {
    font-size: 1.7em !important;
    line-height: 35px !important;
    margin-bottom: 6.5% !important;

  }

  .or-bottom-text {

    padding: 20px 11px !important;
  }

  .or-bottom-text p {
    font-size: 1.7em !important;
    line-height: 36px !important;
    text-align: center !important;
  }

  .fundamental-que {

    height: 264px !important;
  }

  .fundamental-que h3 {
    font-size: 1.4em !important;
    line-height: 26px !important;

  }

  .fundamental-que1 h2 {

    font-size: 1.7em !important;
    line-height: 35px !important;
  }

  .fundamental-que1 {

    padding: 5% 5% 6% !important;

  }

  .web-or-elements h3 {
    font-size: 1.5em !important;
    line-height: 30px !important;
  }

  .web3-banner h4 {
    font-size: 1em !important;
    line-height: 40px !important;
    height: 40px !important;
    box-shadow: 2px 2px 0 0 #8f51f1 !important;
  }

  .web3-banner h2 {

    font-size: 1.7em !important;
    line-height: 33px !important;


  }

  .web3-banner h1 {

    font-size: 2em !important;
    line-height: 42px !important;


  }

  .web3-banner {
    padding-top: 15% !important;
    background: url(../img/web/web-banner.jpg) 40% 0 no-repeat !important;
    padding-top: 17% !important;
    background-size: cover !important;
  }

  .adgm-free-zone h4::after {

    left: 125px !important;
    top: 676px !important;
  }



  .adgm-free-zone2::before {
    height: 51% !important;

  }

  .adgm-features-box {
    height: 390px !important;

  }

  .about-adgm {
    background: url(../img/adgm/adgm-about.png)bottom right no-repeat !important;
    background-size: contain !important;
  }

  .head-bottom-meta {
    bottom: 20px;
  }

  .banner-list h5 {
    font-size: 1.1em !important;

  }

  .knowledge-base-btn .nav-tabs .nav-link {
    width: auto !important;
  }

  .metaverse-bnr-connectus small {

    margin-left: 15.5% !important;
  }

  .metaverse-bnr-connectus h3 {
    margin-bottom: 5% !important;
    line-height: 47px !important;
  }

  .metaverse-bnr-connectus div::after {

    left: 26% !important;
    width: 340px !important;
  }

  .crypto-legal-consulting {
    padding-top: 19%;

    text-align: center;
  }

  .crypto-legal-consulting h5 {
    margin-top: 3%;
  }

  .need-our-services-logo div {
    width: 114px;
  }

  .need-our-services-logo {
    height: 70px;

    margin-bottom: 3%;
  }

  .need-our-services-logo div {
    line-height: 64px;
  }

  .need-our-services h2 {
    font-size: 2.5em;
  }

  .blockchain-project-bottom-white ul {
    position: absolute;
    top: -39%;
    left: 11%;
  }

  .blockchain-project-bottom-white li {
    font-size: 1.1em;
  }

  .navigate-through-points p {
    font-size: 1em;
  }

  .navigate-through h2 {
    margin-bottom: 6%;
    margin-top: 7%;
    padding: 0 5%;
  }

  .need-to-know h4 {
    color: #fff;
    font-family: "Montserrat", sans-serif !important;
    font-size: 1.4em;
    line-height: 30px;
    font-weight: 600;
  }

  .need-to-know-box {
    width: 100%;
    height: 136px;
    padding: 20px 6px;
  }

  .few-more-pointers h3 {
    padding: 0 6%;
  }

  .ideation-box div:nth-child(9) {
    margin: 2% auto;
    display: inline-block;
  }

  .ideation-box div {
    width: 213px !important;
    height: 150px;
  }

  .contact-info-detail {
    margin: 0;
  }
}

/*End Blockchain Crypto Legal Consulting*/

/*start cryptocurrency license consulting*/

.clc-bnr-bottom-points {
  padding: 30px;
  border: 1px solid #272f35;
  border-radius: 20px;
  background-color: #1d2226;
  margin-bottom: 20%;
  height: 440px;
}

.clc-bnr-bottom-points h3 {
  color: #fff;
  margin-bottom: 5%;
  color: #dbae87;
  line-height: 30px;
}

.clc-bnr-bottom-points p {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  color: #dfdede;
}

.clc {
  background-color: #000;
  font-family: "Montserrat", sans-serif !important;
}

.cryptocurrency-license-consulting {
  padding-top: 15%;
  padding-bottom: 2%;

  background: #000 url(../img/cryptocurrency-license-consulting/cryptocurrency-license-consulting4.webp?v=2.0) 85% 30% no-repeat;
  background-size: 40%;
}

@media screen and (max-width:2000px) and (min-width: 768px) {

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }
}

@media screen and (max-width: 1980px) and (min-width: 1950px) {
  .rak-dao-banner {

    background: url(../img/digital-assets/digital-assets-banner.jpg)200px 0 no-repeat !important;
    background-size: cover;

  }
}

@media screen and (max-width: 1600px) and (min-width: 1366px) {
  .rak-dao-banner {
    height: 833px !important;
    background: url(../img/digital-assets/digital-assets-banner.jpg)-170px 0 no-repeat !important;

  }
}

@media screen and (max-width: 1980px) and (min-width: 1368px) {
  citizenship-golden-banner p::after {

    right: 9% !important;
    top: 79% !important;
  }

  .citizenship-golden-banner p {
    font-size: 1.5em !important;
    letter-spacing: 0.8px !important;
    line-height: 32px !important;
  }

  .citizenship-golden-banner h3 {
    margin-top: 2% !important;
    font-size: 1.7em !important;
    line-height: 34px !important;
  }


  .citizenship-golden-banner img {}

  .citizenship-golden-banner h1 {
    font-size: 3.8em !important;
    line-height: 69px !important;
  }

  .citizenship-golden-banner {
    padding-top: 10.5% !important;
    padding-bottom: 3% !important;

  }

  .cryptocurrency-license-consulting {
    padding-top: 15%;
    padding-bottom: 2%;
    background: #000 url(../img/cryptocurrency-license-consulting/cryptocurrency-license-consulting4.webp?v=2.0) 71% 40% no-repeat;
    background-size: auto;
    background-size: 28%;
  }
}

.banner-list-clc-wrap {
  margin-top: 10%;
}

.banner-list-clc {
  display: flex;
  align-items: baseline;
  border: 1px solid #000;
  margin-bottom: 25px;
  padding: 5px 15px 0;
  background-color: #202020;
  box-shadow: 5px 5px 0 0 #f8c59a3d;
}

.banner-list-clc i {
  color: #fff;
  font-size: 22px;
  margin-right: 9.9px;
  color: #f8c59a;
}

.banner-list-clc p {
  font-size: 17px !important;

  color: #fff;
  font-weight: 600 !important;
}

.cryptocurrency-license-consulting h1 {
  font-size: 3em;
  color: #fff;
  line-height: 60px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
}

.cryptocurrency-license-consulting p {
  color: #fff;
  font-weight: 300;
  margin-top: 3%;
  font-size: 1.4em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.6px;
}

.cryptocurrency-license-consulting h5 {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 8px 10px;
  margin-top: 5%;
  font-size: 1.2em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;

  width: 88%;
  letter-spacing: 0.6px;
}

.banner-socail-icon {
  display: flex;
  margin-top: 5%;
}

.banner-socail-icon a {
  font-size: 2em;
  color: #000;
  width: 60px;
  height: 60px;

  display: block;
  text-align: center;
  border-radius: 80px;
  line-height: 60px;
  margin-right: 3%;
  box-shadow: 0 0 30px 0 #000;
  background-color: #fff;
}

.banner-socail-icon a:nth-child(1) {
  font-size: 2.5em;
}

.cryptocurrency-license-consulting .need-our-services-logo {
  margin-top: 2%;
}

.start-cryptocurrency {
  padding-bottom: 7%;
}

.start-cryptocurrency h2 {
  color: #f2f2ec;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 45px;
}

.start-cryptocurrency p {
  font-size: 1.3em;
  color: #f2f2f2;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.4px;
}

.start-cryptocurrency-comma {
  display: flex;
  margin-left: 5%;
  margin-top: 5%;
}

.start-cryptocurrency-comma i {
  font-size: 3em;
  color: #c8daea;
}

.start-cryptocurrency-comma h5 {
  font-size: 1.4em;
  color: #f8c59a;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-style: italic;
  margin-left: 2%;
  line-height: 30px;
  margin-top: 3%;
  letter-spacing: 0.5px;
}

.step-guide {
  margin-top: 5%;
}

.step-guide li {
  padding: 1.2% 0;
  font-size: 1.2em;
  color: #f2f2f2;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.step-guide li span {
  margin-right: 1%;
  color: #000;
  border-radius: 50px 50px 50px 0;
  width: 40px;
  height: 40px;
  background-color: #c8daea;
  display: inline-block;
  text-align: center;
  font-weight: 800;
  line-height: 40px;
  box-shadow: 1px 5px 0px 1px #c8daea4f;
}

.get-cryptocurrency {
  background-color: #0a0a0a;
  padding-top: 7%;
  padding-bottom: 7%;
  font-size: 1.2em;
  color: #cacaca;
}

.get-cryptocurrency p {
  line-height: 30px;

  letter-spacing: 0.5px;
}

.get-cryptocurrency h2 {
  color: #f2f2ec;
  font-size: 2em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  font-weight: 900;
  letter-spacing: 1px;
}

.get-cryptocurrency-points-wrap {
  margin-top: 5%;
}

.get-cryptocurrency-points {
  margin-bottom: 5%;

  height: 380px;
  padding: 30px;
  background-color: #252526;
}

/* The animation starts here */
.animated-box {
  position: relative;
}

.animated-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  background: linear-gradient(120deg, #ac917b, #000, #a78465);
  background-size: 300% 300%;
  clip-path: polygon(0% 100%,
      3px 100%,
      3px 3px,
      calc(100% - 3px) 3px,
      calc(100% - 3px) calc(100% - 3px),
      3px calc(100% - 3px),
      3px 100%,
      100% 100%,
      100% 0%,
      0% 0%);
}

.animated-box.in:after {
  animation: frame-enter 0.3s forwards ease-in-out reverse,
    gradient-animation 5s ease-in-out infinite;
}

/* motion */
@keyframes gradient-animation {
  0% {
    background-position: 15% 0%;
  }

  50% {
    background-position: 85% 100%;
  }

  100% {
    background-position: 15% 0%;
  }
}

@keyframes frame-enter {
  0% {
    clip-path: polygon(0% 100%,
        3px 100%,
        3px 3px,
        calc(100% - 3px) 3px,
        calc(100% - 3px) calc(100% - 3px),
        3px calc(100% - 3px),
        3px 100%,
        100% 100%,
        100% 0%,
        0% 0%);
  }

  50% {
    clip-path: polygon(0% 100%,
        3px 100%,
        3px 3px,
        calc(100% - 3px) 3px,
        calc(100% - 3px) 3px,
        calc(100% - 3px) 3px,
        calc(100% - 3px) 3px,
        calc(100% - 3px) 3px,
        100% 0%,
        0% 0%);
  }

  100% {
    -webkit-clip-path: polygon(0% 100%,
        3px 100%,
        3px 100%,
        3px 100%,
        3px 100%,
        3px 100%,
        3px 100%,
        3px 100%,
        3px 100%,
        0% 100%);
  }
}

.get-cryptocurrency-points h3 {
  margin-bottom: 2%;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  color: #dbae87;
}

.get-cryptocurrency-points p {
  font-size: 1em !important;
}

.get-cryptocurrency-points li {
  list-style: disc;
  margin-left: 5%;
  margin-bottom: 3%;
}

.why-choose-finjuris {
  padding-top: 7%;
  padding-bottom: 7%;
  font-size: 1.2em;
  color: #cacaca;
}

.why-choose-finjuris h2 {
  color: #f2f2ec;
  font-size: 2em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 3%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 50px;
}

.why-choose-finjuris-comma {
  display: flex;
  margin-left: 5%;
  margin-top: 5%;
}

.why-choose-finjuris-comma i {
  font-size: 3em;
  color: #c8daea;
}

.why-choose-finjuris-comma h5 {
  font-size: 1.6em;
  color: #f8c59a;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-style: italic;
  margin-left: 2%;
  line-height: 43px;
  margin-top: 2%;
  letter-spacing: 0.5px;
}

.why-choose-finjuris p {
  line-height: 30px;
  letter-spacing: 0.5px;
}

.why-choose-finjuris hr {
  border: 1px solid rgb(29, 29, 29);
  margin-top: 6%;
  margin-bottom: 6%;
}

.get-cryptocurrency h4 {
  font-size: 1.3em;
  color: #f8c59a;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  margin-bottom: 3%;
  letter-spacing: 0.5px;
}

.get-cryptocurrency hr {
  border: 1px solid rgb(29, 29, 29);
  margin-top: 6%;
  margin-bottom: 6%;
}

.things-wrap {
  display: flex;
}

.things {
  margin-top: 10%;

  width: 23%;
  margin: 10px;
  padding: 2%;
  color: #000;
  border-radius: 10px;
}

.things-wrap .things:nth-child(3) {
  background-color: #cbf1de;
}

.things-wrap .things:nth-child(4) {
  background-color: #fef8dd;
}

.things-wrap .things:nth-child(5) {
  background-color: #acddde;
}

.things-wrap .things:nth-child(6) {
  background-color: #dce9f7;
}

/*.things::before {
    font-family: FontAwesome;
    content: "\f040 ";
    font-size: 1.2em;
    color: #f8c59a;
}*/

.exchange-license-dubai {
  padding-top: 6%;
  padding-bottom: 6%;
}

.exchange-license-dubai h2,
.assisting-crypto h2 {
  color: #f2f2ec;
  font-size: 2.5em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 3%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 50px;
}

.exchange-license-dubai p,
.assisting-crypto p {
  font-size: 1.2em;
  color: #cacaca;
  letter-spacing: 0.4px;
  line-height: 31px;
}

.assisting-crypto {
  padding-top: 6%;
  padding-bottom: 6%;

  background: #0a0a0a url(../img/cryptocurrency-license-consulting/crypto-assets.webp) top right no-repeat;
  background-size: contain;
}

.dubai-the-hotspot {
  background-color: #26262b;
  padding-top: 5%;
  padding-bottom: 5%;
}

.dubai-the-hotspot h5 {
  width: 100%;
  height: auto;
  border-radius: 30px;
  background: #26262b;
  box-shadow: 22px 22px 44px #1d1d21, -22px -22px 44px #2f2f35;
  padding: 50px 30px;

  text-align: center;
  color: #f2f2ec;
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  line-height: 35px;
  display: grid;
  letter-spacing: 0.5px;
}

.dubai-the-hotspot h5 img {
  padding-bottom: 2%;
}

.cryptocurrency-exchange-legal {
  padding-top: 6%;
}

.cryptocurrency-exchange-legal h2 {
  color: #f2f2ec;
  font-size: 2.5em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 50px;
}

.cryptocurrency-exchange-legal p {
  font-size: 1.2em;
  color: #cacaca;
  line-height: 31px;
  letter-spacing: 0.5px;
}

.cryptocurrency-license-consulting-btn h3 {
  color: #acddde;
}

.cryptocurrency-license-consulting-btn h5 {
  color: #acddde;
}

.cryptocurrency-license-consulting-btn button {
  background-color: #acddde;
  color: #000;
}

.crypto-legal-consulting-form2 h3 {
  color: #80a7b9;
}

.crypto-legal-consulting-form2 h5 {
  color: #80a7b9;
}

.crypto-legal-consulting-form2 button {
  background-color: #80a7b9;
  color: rgb(255, 255, 255);
}

.cryptocurrency-license-consulting-blog h2 {
  color: #f2f2ec;
  font-family: "Montserrat", sans-serif !important;
}

.cryptocurrency-license-consulting-blog h4,
.cryptocurrency-license-consulting-blog h3 {
  color: #f2f2ec !important;
  font-family: "Montserrat", sans-serif !important;
}

.cryptocurrency-license-consulting-blog p {
  color: #f2f2ec;
  font-family: "Montserrat", sans-serif !important;
}

.cryptocurrency-license-consulting-blog a {
  color: #f2f2ec;
}

.cryptocurrency-exchange-legal hr {
  border: 1px solid rgb(29, 29, 29);
  margin-top: 6%;
}

@media screen and (max-width:393px) and (min-width: 400px) {
  .vara-arrow {
    top: 46.2% !important;
    left: 34.2% !important;
  }


}



@media screen and (max-width:360px) and (min-width: 359px) {
  .aml-banner h1 {
    font-size: 1.5em !important;

    line-height: 37px !important;
  }

  .crypto-virtual-asset-banner-list {

    width: 100% !important;
  }

  .cvav-legal-consultant-circle::before {
    width: 350px !important;
    height: 350px !important;
  }

  .web3-banner h4 {
    font-size: 1em !important;
    line-height: 21px !important;
    height: 52px !important;
    box-shadow: 2px 2px 0 0 #8f51f1 !important;
    padding: 6px 10px !important;
  }

  .metaverse-bnr-connectus small {
    margin-left: 2.5% !important;
  }

  .adgm-banner h1 {
    font-size: 2.5em !important;

  }

  .vara-faq .btn {
    height: auto !important;
    line-height: 25px !important;
    padding: 15px 10px !important;
  }

  .vara-banner .metaverse-bnr-connectus div::after {
    width: 220px !important;
  }

  .vara-banner .metaverse-bnr-connectus div::before {
    width: 125px !important;
  }

  .dubai-crypto-license1 {

    background: url(../img/dubai-crypto-license/dubai-crypto-bg-right.png)right center no-repeat, url(../img/dubai-crypto-license/dubai-crypto-bg-white.jpg)right bottom no-repeat !important;

  }


  .main-offices {
    padding-top: 102% !important;
  }

  .main-offices-comma {
    margin-top: 34% !important;
  }

  .main-offices-comma::before {
    width: 161px !important;
  }

  .main-offices-comma h2 {
    font-size: 1.7em !important;
  }
}

@media screen and (max-width:414px) and (min-width: 359px) {



  .hexagon-shape1,
  .hexagon-shape2 {

    margin-bottom: 54% !important;
  }

  .hexagon-shape:before {
    border-left: 11.5em solid transparent !important;
    border-right: 12.5em solid transparent !important;
  }

  .hexagon-shape:after {
    border-left: 11.5em solid transparent !important;
    border-right: 12.5em solid transparent !important;
  }
}

@media screen and (max-width: 367px) and (min-width: 300px) {
  .knowledge-base-btn .nav-tabs .nav-link {
    padding: 11px !important;
  }
}

@media screen and (max-width: 362px) and (min-width: 300px) {
  .program {
    margin-bottom: 36% !important;
  }

  .citizenship-golden-banner-btn button {
    width: 328px !important;
    font-size: 1.7em !important;
    letter-spacing: 0.5px !important;
  }

  .license-available {
    padding-top: 94% !important;
  }

  .hexagon {
    padding: 31% 0 0% 0 !important;
  }

  .hexagon-shape2 {
    margin-left: 0.5% !important;
    margin-bottom: 58% !important;
  }

  .hexagon-shape {

    height: 306px !important;
  }

  .hexagon-shape::after {

    border-left: 164px solid transparent !important;
    border-right: 166px solid transparent !important;
  }

  .hexagon-shape::before {

    border-left: 164px solid transparent !important;
    border-right: 165px solid transparent !important;

  }

  .hexagon-shape1 {
    margin-left: 0% !important;
    margin-bottom: 58% !important;
  }

  .hexagon-shape {
    width: 99% !important;
  }

  .metaverse-bnr {

    padding-top: 19% !important;
  }

  .metaverse-bnr h1 {
    color: #fff;
    font-size: 1.8em !important;
    line-height: 44px !important;
  }

  .metaverse-bnr span {
    font-size: 1.9em !important;
  }

  .clbl-social img {
    width: 14%;
    margin-top: -10%;
  }

  .blockchain-lawyers::before {

    width: 314px !important;

    left: -43.5% !important;
    top: 46% !important;
  }

  .cryptocurrency-lawyers::before {

    width: 270px !important;

    left: -36.5% !important;
    top: 49% !important;
  }

  .cryptocurrency-lawyers p {
    padding-left: 14px !important;
  }

  .crypto-lawyer-blockchain-lawyer h1 {

    line-height: 44px !important;

    margin-top: 10%;
  }

  .get-msg .modal-dialog {
    margin: 0 0 0 1.5%;
    position: fixed;
    bottom: 11% !important;
    text-align: center;
  }

  .step-guide li span {
    line-height: 33px;
  }

  .step-guide li:nth-child(1) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 17.2%;
    left: 45px;
  }

  .step-guide li:nth-child(2) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 29%;
    left: 45px;
  }

  .step-guide li:nth-child(3) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 38%;
    left: 45px;
  }

  .step-guide li:nth-child(4) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 47%;
    left: 45px;
  }

  .step-guide li:nth-child(5) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 56.2%;
    left: 45px;
  }

  .step-guide li:nth-child(6) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 63.2%;
    left: 45px;
  }

  .step-guide li:nth-child(7) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;

    content: "-";
    display: block;
    position: absolute;
    top: 70%;
    left: 45px;
  }

  .step-guide li:nth-child(8) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 77%;
    left: 45px;
  }

  .step-guide li:nth-child(9) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 86%;
    left: 45px;
  }

  .step-guide li:nth-child(10) span::after {
    width: 290px;
    height: 1px;
    background-color: #c8daea5e;
    content: "-";
    display: block;
    position: absolute;
    top: 93%;
    left: 45px;
  }

  .step-guide li span::after {
    width: 290px;
    height: 1px;
    background-color: #cdd1d517;
    content: "-";
    display: block;
    position: absolute;
    top: 17%;
    left: 45px;
  }

  .step-guide li span {
    width: 30px;
    height: 30px;

    font-weight: 700;

    margin-bottom: 2%;
  }

  .step-guide li {
    display: grid !important;
  }

  .dubai-the-hotspot h5 {
    font-size: 1.3em;
  }

  .cryptocurrency-license-consulting {
    padding-top: 26%;
  }

  .cryptocurrency-license-consulting h1 {
    font-size: 2em !important;
    line-height: 45px;
  }

  .need-our-services-logo div {
    width: 131px !important;
  }

  .start-cryptocurrency h2 {
    text-align: center;
    font-size: 1.7em !important;
    line-height: 42px !important;
  }

  .get-cryptocurrency h2 {
    font-size: 1.7em;
  }

  get-cryptocurrency h2 {
    font-size: 1.5em;
  }

  .things {
    width: 43.5% !important;
  }

  .exchange-license-dubai h2,
  .assisting-crypto h2 {
    line-height: 43px;
  }
}

@media (max-width: 480px) {
  .our-services-aml {
    margin-bottom: 3% !important;
    height: auto !important;

  }

  .why-choose-us-dfl .compliance-meets-flex-box {
    margin-bottom: 3%;
  }

  .microfinance-license2 li {

    margin-bottom: 7% !important
  }

  .list-expertise li {
    padding: 0 !important;
  }

  .list-expertise li a {
    font-size: 17px !important;
  }

  .list-expertise li a i {
    margin-right: 7px !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 31px !important;

  }

  .expertise_cnt {
    margin: 27px 0 !important;
  }

  .get-left-content h2 {

    font-size: 1.5em !important;
    margin-bottom: 10px !important;
    line-height: 31px !important;

  }

  .grow-with-us-img {
    display: none !important;
  }

  .brands-area p {
    text-align: center;
    margin-bottom: 5%;
  }

  .brands-area h2 {
    font-size: 1.5em !important;
    text-align: center;
    margin-bottom: 0 !important;
  }

  .thumb {
    margin-left: 0 !important;
  }

  .single-testimonial .thumb img {
    width: 52px !important;
  }

  .judgments-section-flex {

    padding: 19px !important
  }

  .judgments-section-flex-text p {
    font-size: 1.1em !important;
    line-height: 26px !important;
  }

  .judgments-section-flex-img {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    line-height: 50px !important;

  }

  .home-services-box li::before {

    margin-left: -5.5% !important;
  }

  .home-services-box li {

    padding-left: 8% !important;
  }

  .home-services-box h5 {
    width: auto !important;
  }

  .home-services-box-flex .col-lg-6:nth-child(4) .home-services-box {

    padding-left: 12% !important;

  }

  .home-services-box-flex .col-lg-6:nth-child(2) .home-services-box {
    padding-left: 11% !important
  }

  .home-services-box {
    height: auto !important;
  }

  .home-services-box-flex .col-lg-6:nth-child(1) .home-services-box p {
    line-height: 34px !important;
  }

  .home-services-box h3 {
    font-size: 1.7em !important;
    letter-spacing: 0.5px;
  }

  .home-services-box-flex .col-lg-6:nth-child(1) .home-services-box {

    padding-left: 11% !important
  }

  .presence-in-flag-box h5 {
    font-size: 1.1em !important;
  }

  .presence-in-flag-box img {

    width: 80px !important;
    height: 80px !important;

  }

  .presence-in-flag-box {
    width: 33.33% !important;
    padding: 20px 0 !important;
  }

  .presence-in h2 {
    margin-top: 3% !important;
    font-size: 1.5em !important;
    letter-spacing: 0.5px;
    margin-bottom: 5%;

  }

  .presence-in {

    padding-top: 9% !important;

  }

  .free-call a {
    padding: 15px 7px !important;
    font-size: 0.85em !important;
  }

  .free-legal-advice {

    padding: 30px 16px !important;
  }

  .world-class-service-text-box {
    margin-bottom: 1% !important;
  }

  .world-class-service-text-box-img {
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    flex: 0 0 50px !important;
  }

  .world-class-service-text-box h3 {

    font-size: 1.3em !important;
  }


  .world-class-service h2 {
    font-size: 1.5em !important;
    margin-top: 3% !important;
    line-height: 35px !important;
    margin-bottom: 5% !important;

  }

  .world-class-service-text small {
    margin-left: 7% !important;
  }

  .world-class-service-img img {
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 5%;
  }

  .home-banner-area .banner-content {
    margin-top: 25%;

  }

  .banner-list-box {

    width: 50% !important;
  }

  .banner-list {
    flex-wrap: wrap;
  }

  .desktop {
    display: none
  }

  .mobile {
    display: block;
  }

  .get-msg .modal-dialog {
    margin: 0 0 0 1.5%;
    position: fixed;
    bottom: 11% !important;
    text-align: center;
  }

  .cryptocurrency-license-consulting span {
    font-size: 1em !important;
  }

  .cryptocurrency-license-consulting h1 {
    font-size: 2.6em;
  }

  .cryptocurrency-license-consulting {
    background: none;
    text-align: center;
  }

  .cryptocurrency-license-consulting p {
    font-size: 1.3em;
  }

  .cryptocurrency-license-consulting h5 {
    width: 80%;
    margin: 6% auto;
  }

  .need-our-services-logo div {
    width: 180px;
  }

  .start-cryptocurrency h2 {
    text-align: center;
    font-size: 1.9em;
  }

  .start-cryptocurrency p {
    text-align: center;
    font-size: 1.3em;
  }

  .step-guide li {
    display: flex;
  }

  .step-guide li span {
    margin-right: 3%;
  }

  .get-cryptocurrency h2 {
    font-size: 1.7em;
    margin-bottom: 2%;
    text-align: center;
  }

  .get-cryptocurrency p {
    text-align: center;
  }

  .why-choose-finjuris h2 {
    font-size: 1.5em;

    margin-bottom: 3%;

    line-height: 37px;
    text-align: center;
  }

  .why-choose-finjuris-comma h5 {
    font-size: 1.2em;
    color: #f8c59a;

    line-height: 30px;

    letter-spacing: 0.5px;
  }

  .why-choose-finjuris p {
    text-align: center;
  }

  .get-cryptocurrency h4 {
    text-align: center;
    font-weight: 300;
  }

  .things {
    width: 45.5%;
  }

  .exchange-license-dubai h2,
  .assisting-crypto h2 {
    font-size: 1.9em;
    text-align: center;
  }

  .exchange-license-dubai p,
  .assisting-crypto p {
    text-align: center;
  }

  .assisting-crypto {
    background: none;
  }

  .dubai-the-hotspot h5 {
    padding: 50px 15px;
  }

  .cryptocurrency-exchange-legal h2 {
    font-size: 1.9em;
    text-align: center;
  }

  .cryptocurrency-exchange-legal p {
    text-align: center;
  }

  .cryptocurrency-license-consulting img {
    width: 10%;
  }

  .need-our-services-logo img {
    width: 100%;
  }
}

@media screen and (max-width:539px) and (min-width:360px) {
  .rak-dao-banner {
    padding-top: 25% !important;
    height: 650px !important;
    background: url(../img/digital-assets/mobile-digital-assets-banner.jpg?v=2.0)bottom center no-repeat !important;
  }



}

@media screen and (max-width: 768px) and (min-width: 481px) {


  .crypto-lawyer-blockchain-lawyer {

    background: #000 url(../img/crypto-lawyer-blockchain-lawyer/crypto-lawyer-blockchain-lawyer-img5.webp) 90% 15% no-repeat !important;
    background-size: 43% !important;

  }

  .cryptocurrency-license-consulting {
    background: none;
  }

  .step-guide li {
    display: flex;
  }

  .get-cryptocurrency h2 {
    line-height: 50px;
  }

  .things {
    width: 22.2%;
  }

  .assisting-crypto {
    background: none;
  }

  .get-msg .modal-dialog {
    margin: 0 0 0 1.5%;
    position: fixed;
    bottom: 10% !important;
    text-align: center;
  }
}

/*end cryptocurrency license consulting*/

/**start get msg**/
.get-msg {
  position: relative;
  margin-left: 1.5%;
}

.get-msg .get-msg-call {
  position: fixed;
  bottom: 2%;
  width: 221px;
  height: 65px;
  background-color: #fff;
  border-radius: 100px;
  line-height: 21px;
  border: none;
  padding: 0 0 0 11px;
  display: flex;
  text-align: left;
  letter-spacing: 0.5px;
  z-index: 2;
  color: #000;
  font-size: 0.6em;
  align-items: center;
  left: 14px;
}

.get-msg .order-call-icon {
  margin-right: 6%;
  width: 49px;
  height: 49px;
  border-radius: 100px;
  background-color: #30a447;
  text-align: center;
  line-height: 50px;
}

.get-msg .order-call-icon i {
  color: #fff;
  font-size: 28px;
}

.get-msg h6 {
  font-size: 1.6em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700;
  margin-bottom: 2px;
  color: #000;
}

.get-msg p {
  font-size: 9.5px;
  margin-top: 0;
  line-height: 15px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  color: #424040;
  text-transform: uppercase;
}

.get-msg .modal-dialog {
  margin: 0 0 0 1.5%;
  position: fixed;
  bottom: 18%;
  text-align: center;
}

.get-msg .modal-header {
  padding: 0;
}

.get-msg .modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  position: absolute;
  right: 11px;
  top: 5px;
}

.close {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #fff;
}

.modal-title {
  color: #000;
  font-weight: 600;
  font-size: 0.9em;
}

.get-msg .modal-header {
  border: none;
  padding-bottom: 0;
  background-color: #095e54;
  border-radius: 11px;
}

.get-msg .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: transparent;
  outline: none;
  box-shadow: none;
  border-top: 1px solid #f5111b;
  border-left: 1px solid #f5111b;
  border-bottom: 1px solid #f5111b;
  border-right: 1px solid #f5111b !important;
}

.get-msg .input-group-text {
  border-right: 1px solid #fff !important;
  border-top: 1px solid #f5111b !important;
  border-bottom: 1px solid #f5111b !important;
  border-left: 1px solid #f5111b !important;
  background-color: transparent;
  padding: 0 0 0 11px;
  border-radius: 13px 0 0 13px;
}

.get-msg .input-group>.form-control {
  border-top: 1px solid #f5111b;
  border-left: 1px solid transparent !important;
  border-bottom: 1px solid #f5111b;
  border-right: 1px solid #f5111b;
  border-radius: 0 13px 13px 0;
}

.get-msg .call-me {
  font-size: 14px;
  line-height: 41px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  height: 42px;
  padding: 0 29px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  display: inline-block;
  letter-spacing: 1.5px;
  width: 100%;
  border-radius: 34px;
  background-color: #30a447;
  border: none;
}

.get-msg .call-me:hover {
  background-color: #34c751;
}

.modal-content {
  border-radius: 1em;
}

.get-msg .modal-dialog {
  max-width: 400px;
}

.modal-body i {
  transform: rotate(90deg);
  color: #f5111b;
}

.get-msg select {
  width: 50px;
  background-color: transparent;
  border-right: none !important;
  border-top: 1px solid #f5111b !important;
  border-bottom: 1px solid #f5111b !important;
  border-left: none !important;
  font-size: 16px;
}

.wrap button {
  box-shadow: 0 0 20px 0px #0000003d;
}

.modal-content {
  padding: 0 !important;
}

.form-control::placeholder {
  color: #fff !important;
  opacity: 1;
}

/**end get msg**/
.b-flag {
  display: flex;
  flex-wrap: wrap;
}

.b-flag span {
  margin-right: 6%;
}

.b-flag p {
  margin: 5px 0 10px 0 !important;
  text-align: center;
  font-weight: 800;
  font-family: "Roboto Condensed", sans-serif;
  color: #263a4e !important;
}

.b-flag img {
  border: 2px solid #fff;
}

.why-you-text {
  text-align: center;
}

.why-you-text p {
  margin-top: 5%;
}

.why-you-text span {
  width: 80px;
  height: 80px;

  border-radius: 100px;
  display: block;
  margin: 0 auto;
  line-height: 80px;
  background-color: #000;
  box-shadow: 4px 4px 0 0 #0000004a;
}

.why-you-text img {
  width: 60%;
}

.eop-box {
  background-color: #000;
  border-radius: 30px;
  padding: 20px;
  height: 145px;
  margin-bottom: 5%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.315);
}

.eop-box p {
  color: #fff;
}

.eop-box-bottom-wrap {
  display: flex;
  margin-top: 10%;
}

.eop-box-bottom {
  width: 60px !important;
  height: 60px !important;
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 60px;
  border-radius: 100px;
  margin-right: 5%;
  display: block;
}

.eop-box-bottom-wrap p {
  color: #000;
  width: 260px;
}

.eop-box-bottom-wrap2 {
  display: flex;
  margin-top: 10%;
}

.eop-box-bottom-wrap2 p {
  color: #000;
}

.we-offer-middle {
  margin: 10% 0;
}

.international-business {
  background: url(../img/common-banner-i.jpg) top left no-repeat;
  height: 610px;
  background-size: cover;
  background-color: #ccc;
}

.international-business h1 {
  padding-top: 40% !important;
  font-size: 3em;
}

.international-business {
  letter-spacing: 0.5px;
}

.international-business img {
  padding-top: 28.5%;
  width: 100% !important;
}

.about-banner-main-social {
  display: flex;
}

.about-banner-main-social img {
  width: 80% !important;
  padding-top: 35% !important;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.349));
}

.crowdfunding-legal-consulting-bnr {
  background: url(../img/crowdfunding-legal-consulting-bnr.jpg) 40% -100% no-repeat;
  height: 610px;
  background-size: 100%;
  background-color: #ccc;
}

.crowdfunding-legal-consulting-bnr h1 {
  padding-top: 35% !important;
  margin-bottom: 5%;
  font-size: 3em;
}

.crowdfunding-legal-consulting-bnr {
  letter-spacing: 0.5px;
}

.crowdfunding-legal-consulting-bnr img {
  padding-top: 30% !important;
  width: 80% !important;
}

/**start Crypto Lawyer Blockchain lawyer**/

.crypto-lawyer-blockchain-lawyer-connectus h5 {
  color: #fff;
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;

  text-align: center;
  margin-top: 1%;
  background-color: #d8042a;
  padding: 20px 0;


}

.crypto-lawyer-blockchain-lawyer-connectus h2 {
  color: #dbae87;
  font-size: 3em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700;
  padding-bottom: 2%;
  text-align: center;
  margin-top: 5%;

}

.crypto-lawyer-blockchain-lawyer-service div::before {

  border: 2px solid #dbae87;
  transform: skew(-20deg);
  content: "";
  display: block;
  position: absolute;
  width: 23%;
  height: 50px;
  margin-right: 2%;



}

.crypto-lawyer-blockchain-lawyer-service div {
  display: inline-flex;
  width: 23%;
  justify-content: center;
  align-items: center;
  margin-right: 2%;
}

.crypto-lawyer-blockchain-lawyer-service h3 {


  color: #dbae87;
  font-size: 2em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  margin-top: 4%;
  margin-bottom: 3%;
  border-bottom: 1px solid #fff;
  padding-bottom: 1.5%;

}

.crypto-lawyer-blockchain-lawyer-service h5 {
  color: #fff;
  font-size: 1.3em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  margin-right: 6.2%;

}



.what-is-blockchain-icon {
  display: flex;
  margin-bottom: 5%;
}

.what-is-blockchain-box {
  border: 1px solid #dbae87;
  padding: 20px;
  margin-top: 20%;
  height: 320px;
  border-radius: 0 30px 0 0;
}

.what-is-blockchain-icon h3 {
  font-family: "Montserrat", sans-serif !important;
  color: #dbae87;
  margin-bottom: 6%;
  margin-top: 2%;
}

.what-is-blockchain-icon i {
  font-size: 30px;
  color: #dbae87;
  margin-right: 4%;
  margin-top: 2%;
}

.what-is-blockchain-icon p {
  line-height: 30px;
}

.clbl .need-our-services-logo {
  margin-top: 6%;
}

.crypto-lawyer-blockchain-lawyer {
  padding-top: 15%;
  padding-bottom: 2%;

  background: #000 url(../img/crypto-lawyer-blockchain-lawyer/crypto-lawyer-blockchain-lawyer-img5.webp) 85% 22% no-repeat;
  background-size: 40%;
}

.crypto-lawyer-blockchain-lawyer h1 {
  font-size: 3em;
  color: #fff;
  line-height: 60px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
}

.crypto-lawyer-blockchain-lawyer p {
  color: #fff;
  font-weight: 300;
  margin-top: 3%;
  font-size: 1.4em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.6px;
}

.clbl-offers-box {
  margin: 0 0 2% 0%;

  color: #fff;
  padding: 10px;
  font-weight: 600;
  gap: 20px;
  display: flex;
}

.clbl-offers {
  background-color: #455a64;
  padding: 30px;
  width: 50%;
  text-align: center;
  margin-bottom: 5%;
  position: relative;
  margin-top: 3%;
}

.clbl-offers p {
  margin-bottom: 0;
  margin-top: 5%;
}

.clbl-offers-wrap h3 {
  color: #fff;

  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  margin-top: 5%;
}

.clbl-offers-icon {
  position: absolute;
  background-color: #faf5ed;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  color: #bb895d;
  line-height: 50px;
  top: -13%;
  right: 41%;
}

.blockchain-cryptocurrency {
  margin-top: 5%;
  padding-top: 5%;
  border-top: 1px solid #fff;
  position: relative;
}

.blockchain-lawyers::before {
  content: "";
  height: 10px;
  background-color: #004aad;
  display: block;
  width: 149px;
  transform: rotate(90deg);
  position: absolute;
  left: -11.5%;
  top: 43%;
}

.blockchain-lawyers p {
  margin-left: 3%;
}

.cryptocurrency-lawyers::before {
  content: "";
  height: 10px;
  background-color: #9e508a;
  display: block;
  width: 115px;
  transform: rotate(90deg);
  position: absolute;
  left: -11.5%;
  top: 34%;
}

.blockchain-lawyers-demand-left {
  background-color: #fff;
  padding: 8.2%;
  color: #000;
  font-size: 1.1em;
}

.blockchain-lawyers-demand-left h2 {
  color: #000;
  font-size: 2em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  font-weight: 900;
  letter-spacing: 1px;
}

.blockchain-lawyers-demand .col-lg-6,
.blockchain-lawyers-demand .col-sm-6 {
  padding: 0;
  margin: 0;
}

.blockchain-lawyers-demand img {
  width: 100%;
}

.role-blockchain {
  padding-top: 7%;
  padding-bottom: 7%;
  font-size: 1.2em;
  color: #cacaca;
}

.role-blockchain h2 {
  color: #fff;
  font-size: 2em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  font-weight: 900;
  letter-spacing: 1px;
}

.role {
  margin-top: 9%;
  background-color: #fff;
  border: 5px solid #fff;
  height: 1270px;
}

.role-text h2 {
  color: #000;
  margin-top: 1%;
  padding: 30px 30px 20px 30px;
  font-size: 1.5em;
  line-height: 33px;
}

.role-text ul {
  padding: 0 50px 40px;
}

.role-text li {
  list-style: disc !important;
  color: #000;
  font-size: 1em;
  margin-bottom: 4%;
}

.importance-blockchain {
  padding-bottom: 5%;
  font-size: 1.2em;
  color: #cacaca;
}

.importance-blockchain h2 {
  color: #fff;
  font-size: 2em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  font-weight: 900;
  letter-spacing: 1px;
}

.bc-compliance {
  margin-top: 7%;
}

.bc-compliance img {
  border-radius: 50px;
  margin-top: 5%;
}

.new-crypto-hub {
  margin-top: 7%;
}

.lawyer-in-dubai {
  color: #000;
  font-size: 1.9em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 50px;
  text-align: left;
}

.lawyer-in-dubai-text h5 {
  text-align: left !important;
  background-color: #fff;
  padding: 5%;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 35px;
}

.crypto-projects-businesses {
  margin-top: 2%;
  border: 1px solid #cacaca;
  padding: 3%;

}

.crypto-projects-businesses h2 {
  color: #fff;
  font-size: 2em;
  font-family: "Montserrat", sans-serif !important;

  font-weight: 900;
  letter-spacing: 1px;
  line-height: 40px;
  text-align: left;
  margin-bottom: 3%;
}

.crypto-projects-businesses p {
  font-size: 1.2em;
  color: #cacaca;
  line-height: 28px;

}

/**end Crypto Lawyer Blockchain lawyer**/




.international-business1 {
  background: url(../img/common-banner-i.jpg) top left no-repeat;
  height: 640px;
  background-size: cover;
  background-color: #ccc;
}

.international-business1 h1 {
  padding-top: 40% !important;
  font-size: 3em;
}

/*.international-business1 {
  letter-spacing: 0.5px;
}*/

.international-business1 img {
  padding-top: 28.5%;
  width: 100% !important;
}


/*metaverse page*/
.banner-bottom-text-circle {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin: 0 auto 5%;
}

.metaverse-banner-bottom-text {
  background-color: #03060d;
  padding-top: 5%;


}

.metaverse-banner-bottom-text img {
  display: grid;
  align-items: center;
  justify-content: center;

}

.metaverse-banner-bottom-text h4 {
  text-align: center;
  font-family: 'Montserrat', sans-serif !important;
  color: #9b60eb;
  font-size: 1.5em;
  line-height: 40px;
  letter-spacing: 0.6px;
  font-weight: 600;
}

.metaverse-bnr-connectus {
  position: relative;
  z-index: 5;
  margin-top: 6%;
}

.metaverse-bnr-connectus h3 {
  line-height: 47px;
  font-family: 'Montserrat', sans-serif !important;
  padding-left: 30px;
  color: #000;
}

.metaverse-bnr-connectus small {
  font-size: 1.2em;
  color: #fff;
  font-weight: 800;
  margin-left: 5.5%;

}

.metaverse-bnr-connectus div::before {
  content: "";
  display: block;
  width: 200px;
  height: 50px;

  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: -1;
  transform: skew(0deg);

}

.metaverse-bnr-connectus div::after {
  content: "";
  display: block;
  width: 311px;
  height: 50px;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 33%;
  z-index: -1;
  transform: skew(20deg);
}

.clr {
  clear: both;
}

.metaverse-bnr-list div {
  width: auto;
  float: left;
  margin: 0% 2% 2% 0;
  padding: 10px 12px;
  border: 1px solid #9f52b2;
  box-shadow: 0px 0 20px 0 #445df7;
  position: relative;
  border-radius: 20px;
}


.metaverse-bnr-list h5 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.2em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.metaverse-bnr {
  background: url(../img/metaverse/metaverse-banner.jpg) center center no-repeat;
  padding-top: 10%;
  padding-bottom: 5%;
  background-size: 100%;

}

.metaverse-bnr h1 {

  color: #fff;
  font-size: 3em;
  line-height: 60px;
  font-weight: 300;
  margin-top: 13%;
  text-align: left;
  font-family: "Montserrat", sans-serif !important;

}

.metaverse-bnr span {
  font-size: 2em;
  font-weight: 800;
  background: #FC466B;
  background: -webkit-linear-gradient(to right, #3F5EFB, #FC466B);
  background: linear-gradient(to right, #3F5EFB, #FC466B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.metaverse-bnr h2 {
  color: #000;
  font-size: 4.2em;
  font-weight: 300;
  margin-top: 3%;
  font-family: "Montserrat", sans-serif !important;
}

.metaverse-bnr img {
  margin-top: 13%;
}

.metaverse-bnr h4 {
  color: #fff;
  font-size: 1.4em;
  margin-top: 5%;
  padding: 10px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.8px;
  background: #FC466B;
  background: -webkit-linear-gradient(to left, #3F5EFB, #FC466B);
  background: linear-gradient(to left, #3F5EFB, #FC466B);
  text-align: left;
  margin-bottom: 5%;
}

.metaverse-bnr p {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 2%;
  font-size: 1em;
  letter-spacing: 0.5px;
  padding-bottom: 6%;
  text-align: left;
}

.hexagon {
  background-color: #03060d;
  padding: 12% 0;
}

.hexagon-shape {
  margin-top: 30px;
  width: 70%;
  height: 245px;
  background-color: #1c2028;
  border-color: #1c2028;
  position: relative;
  display: inline-block;
  text-align: center;
  word-wrap: break-word;
  padding: 0 20px;
}

.hexagon-shape:before {
  right: 0;
  content: " ";
  width: 0;
  height: 0;
  border-bottom: 100px solid;
  border-color: inherit;
  border-left: 189px solid transparent;
  border-right: 189px solid transparent;
  position: absolute;
  top: -100px;
}

.hexagon-shape:after {
  content: "";
  width: 0;
  position: absolute;
  right: 0;
  bottom: -100px;
  border-top: 100px solid;
  border-color: inherit;
  border-left: 189px solid transparent;
  border-right: 189px solid transparent;
}

.hexagon-shape p {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  margin-top: -13%;
}

.hexagon-shape1 {
  margin-left: 30%;
  margin-bottom: 8%;
}


.hexagon-shape2 {
  margin-left: 0%;
  margin-bottom: 0%;
}

.hexa-img {
  position: relative;
  top: -25%;
  left: 40%;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  margin-bottom: 0;
  display: grid;
  align-items: center;
  background-color: #03060d;
  box-shadow: 0px 2px 0 1px #ebb4da;
}

.hexagon-shape img {
  width: 65%;
}

.metaverse-consultants-wapper {
  background-color: #03060d;

}

.metaverse-consultants {
  position: relative;
  height: 300px;
  background: rgb(48, 60, 83);
  background: radial-gradient(circle, rgba(48, 60, 83, 1) 0%, rgba(14, 17, 22, 1) 83%);
  margin-bottom: 6%;
  display: block;


}


.metaverse-consultants:hover {

  background: #252f40;
  transition: all 0.3s linear;


}

.mata-c-border-top {
  width: 25%;
  height: 6px;
  background: rgb(255, 255, 255);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(235, 180, 218, 1) 100%);

}

.mata-c-border-left {
  width: 6px;
  height: 60%;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(235, 180, 218, 1) 100%);
  position: absolute;

}

.mata-c-border-bottom {
  width: 20%;
  height: 6px;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(179, 113, 255, 1) 100%);
  position: absolute;
  right: 0;
  bottom: 0;

}

.mata-c-border-right {
  width: 6px;
  height: 60%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(179, 113, 255, 1) 100%);
  position: absolute;
  right: 0;
  bottom: 0;

}

.metaverse-consultants h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.4em;
  line-height: 44px;
  letter-spacing: 0.5px;
  text-align: left;

}

.metaverse-consultants-text {
  padding: 30px;
  background: url(../img/metaverse/metaverse-consultants.png)right top no-repeat;
  height: 285px;
  background-size: 70%;

}

.metaverse-infigraphic {
  background-color: #03060d;
  padding-top: 2%;

}


.metaverse-infigraphic h2 {

  color: #eee;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  line-height: 35px;
  letter-spacing: 0.7px;
  font-size: 1.6em;
  font-weight: 600;
  text-align: left;
}


.metaverse-infigraphic p {

  color: #eee;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  font-size: 1.3em;
  letter-spacing: 0.6px;
  text-align: center;
}

.first-legal-consultancy {

  padding-top: 5%;
  padding-bottom: 2%;
  background: #03060d url(../img/metaverse/first-legal-consultancy.jpg)left bottom no-repeat;

  background-size: cover;
  display: grid;
  align-items: center;
}

.first-legal-consultancy h2 {

  color: #eee;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3em;
  letter-spacing: 0.6px;
  text-align: center;
  line-height: 70px;
  background: rgb(3, 6, 13);
  background: linear-gradient(0deg, rgba(3, 6, 13, 0.74831931063441) 0%, rgba(255, 255, 255, 0) 99%);

  padding: 30px 0;
}

.newspaper-wrapper {
  padding-top: 7%;

  background-color: #03060d
}

.newspaper {
  border-radius: 50px;

  padding: 5% 0;

  background-size: contain;
}

.first-legal span {
  width: auto;
  padding: 0 10px;
  background: #FC466B;
  background: -webkit-linear-gradient(to right, #3F5EFB, #FC466B);
  background: linear-gradient(to right, #3F5EFB, #FC466B);
}

.own-metaverse {
  background-color: #03060d;
  padding-top: 7%;
  padding-bottom: 5%;
  font-family: "Montserrat", sans-serif !important;
}

.own-metaverse h2 {
  color: #f2f2ec;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 5%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 45px;
  text-align: center;

}



.own-metaverse-number-bg {
  width: 100px;
  height: 100px;
  background: rgb(167, 77, 173);
  background: linear-gradient(300deg, rgba(167, 77, 173, 1) 35%, rgba(75, 90, 243, 1) 92%);
  border-radius: 18px;
  display: block;
  float: left;
  margin-right: 20px;
  text-align: center;
  color: #fff;
  display: grid;
  align-items: center;
  font-size: 3em;
  font-weight: 600;
  box-shadow: 0 0 50px 0 #6926b6;

  font-family: "Montserrat", sans-serif !important;
}

.own-metaverse p {
  font-size: 1.1em;
  color: #f2f2ec;
}

.finjuris-help {
  background-color: #03060d;

  padding-bottom: 5%;

}

.finjuris-help h2 {
  color: #f2f2ec;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;

  font-weight: 900;
  letter-spacing: 1px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 4%;
}

.finjuris-help-text {
  background: url(../img/metaverse/finjuris-help-bg.jpg) top center no-repeat;

  padding: 5% 13%;
  border-radius: 50px;
  box-shadow: 0 0 50px 0 #582c5b;

}

.finjuris-help-text img {
  margin-bottom: 4%;
}

.finjuris-help-text p {
  font-size: 1.1em;
  color: #f2f2ec;
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  line-height: 30px;
}

.metaverse-flag {
  background-color: #03060d;
  padding-bottom: 5%;
  padding-top: 5%;
}

.metaverse-flag h2 {
  color: #f2f2ec;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 3%;
}

/*Start Forex Business Page*/
.forex-business {
  padding-top: 15%;
  padding-bottom: 2%;
  /*background: #000 url(../img/forex/forex-banner.png) 85% 22% no-repeat;*/
  background: #000 url(../img/forex/forex-banner4.png) center bottom no-repeat;
  background-size: auto;
  background-size: 100%;
  text-align: center;
  height: 800px;
}

.forex-business h1 {
  font-size: 2.5em;
  color: #000;
  line-height: 50px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  text-shadow: -1px 2px 0px #ccc
}

.forex-business h3 {
  font-size: 1.5em;
  color: #fff;
  line-height: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  border: 1px solid #bbb7b7;
  text-align: center;

  width: 60%;
  color: #fff;
  margin: 2% auto 6%;
  background-color: #000;
}

.forex-business-list {
  display: flex;
  justify-content: center;
}

.forex-business-list div {
  width: auto;
  float: left;
  margin: 0% 1.5% 10% 0;
  padding: 10px 40px;
  font-weight: 600;
  background-color: #ed1b23;
  position: relative;
  border-radius: 50px;
  color: #fff;
  font-size: 1.3em;
  box-shadow: -1.5px 3px 0px 0px #000;
}

.forex-exchange {
  padding-top: 6%;
  padding-bottom: 6%;
  background: url(../img/forex/forex-exchange-map.png)top center no-repeat;
  background-size: contain;
}

.forex-exchange h2 {
  font-size: 2em;
  color: #000;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  text-align: center;
}

.forex-exchange-text {
  margin: 0 0 4% 0;

  padding: 25px 17px;
  background-color: #2e2939;
  border-radius: 30px;

}

.forex-exchange-text p {
  font-size: 1.1em;
  color: #fff;
  font-weight: 600;
  line-height: 28px;

  margin: 0;



}

.forex-regulatory {
  background: url(../img/forex/forex-regulatory.jpg)top right no-repeat;
  background-size: 100%;


}

.forex-regulatory h2 {
  font-size: 2em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  margin-bottom: 6%;


}

.forex-regulatory {
  color: #fff;
  font-size: 1.1em;
}

.forex-regulatory-gradiant {

  padding: 5% 6.8% 6.8%;
  background-size: cover
}

.how-eat {
  padding-top: 5%;
  padding-bottom: 5%;


}

.how-eat-que {
  border-radius: 30px 0;
  padding: 15px;
  background-color: #2e2939;
  margin-bottom: 2.5%;
}

.how-eat-que h3 {
  font-size: 1.2em;
  color: #ebc676;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  margin-bottom: 1%;

}

.how-eat-que p {
  font-size: 1.1em;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0%;
  font-weight: 600;
}

.how-eat-text p {
  color: #333;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.list-of-financial {

  padding-top: 5%;
  padding-bottom: 7%;
  background: url(../img/forex/flag/flags-bg.jpg)center center no-repeat;
  background-size: 100%;
}

.list-of-financial h2 {
  font-size: 3em;
  color: #fff;
  line-height: 60px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  margin-bottom: 6%;
  text-align: center;
  text-shadow: -1px 1px 0px #000;

}

.list-of-financial-flag {
  border: 1px solid #ccc;
  background-color: #fff;
  display: flex;
  flex-flow: wrap;
  justify-content: center;

  padding-top: 30px;
  padding-bottom: 30px;

  box-shadow: 0 0 50px 0 #000;
}

.list-of-financial-flag button {
  background: transparent;
  border: none;
  margin: 1%;
  width: 60px;
  height: 60px;
  border: 2px solid #dbdbdb;
  border-radius: 100px;

}

.list-of-financial-flag button:hover {
  filter: drop-shadow(0px 0px 5px red)
}

.list-of-financial-flag-text .close {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: #fff !important;
  text-shadow: 0 1px 0 #fff;
  width: 30px;
  height: 30px;
  background-color: red;
  border-radius: 100px;
  position: absolute;
  right: 2%;
  top: 7%;
}

.list-of-financial-flag-text .modal-dialog {
  max-width: 56% !important;
  top: 20%;

}

.list-of-financial-flag-text p {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 0;
}

.list-of-financial-flag-text li {
  text-align: left;
  list-style: disc;
  font-size: 1.1em;
  color: #000;
  margin-bottom: 1%;
  letter-spacing: 0.2px;
  margin-left: 2.5%;

}

.list-of-financial-flag-text h3 {
  text-align: left !important;
  font-size: 1.7em;
  margin-bottom: 2%;
  color: #f70607;

  font-family: "Montserrat", sans-serif !important;


}

.list-of-financial-flag-text .modal-content {
  min-height: 200px;


}

.list-of-financial-flag-text .modal-body {
  padding: 50px;
}

.list-of-financial-flag .owl-carousel .owl-item {
  width: 100% !important;
  margin: 0 !important;
}

.forex-infographic {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/forex/dubai-uae.png)center bottom no-repeat;
}

.forex-infographic h2 {
  font-size: 2em;
  color: #000;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.3px;
  margin-bottom: 8%;
  text-align: center;
}

.forex-trading1 {
  background: url(../img/forex/forex-trading1.jpg)100% 45% no-repeat;

  background-size: 80%;
}

.forex-trading-gradiant {
  background: url(../img/forex/forex-regulatory-gradiant.jpg)top left no-repeat;
  padding: 5% 6.8% 6.8%;
  background-size: cover;
  color: #fff;
  font-size: 1.1em;
}

.forex-trading-gradiant h2 {
  font-size: 2em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  margin-bottom: 6%;
}

.setting-the-uae {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/forex/setting-the-uae.jpg)top center no-repeat;
  background-size: 100%;

}

.setting-the-uae h2 {
  font-size: 2em;
  color: #000;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 3%;
  text-align: center;
}

.setting-the-uae P {
  font-size: 1.05em;
  color: #000;
  text-align: justify;
  letter-spacing: 0.5px;
  font-weight: 500;

}

.forex-trading-dmcc {
  background: url(../img/forex/dmcc.jpg)0 50% no-repeat;

  background-size: 60%;
}

.forex-trading-dmcc-gradiant {
  background: url(../img/forex/forex-regulatory-gradiant.jpg)top left no-repeat;
  padding: 5% 6.8% 6.8%;
  background-size: cover;
  color: #fff;
  font-size: 1.1em;
}

.forex-trading-dmcc-gradiant h2 {
  font-size: 2em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  margin-bottom: 6%;
}

.abu-dhabi-market {
  padding-top: 5%;
  padding-bottom: 5%;
}

.abu-dhabi-market h2 {
  font-size: 2em;
  color: #d50021;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 3%;
}


.abu-dhabi-market P {
  font-size: 1.05em;
  color: #000;
  text-align: justify;
  letter-spacing: 0.5px;
}

.abu-dhabi-space {
  margin-top: 10%;
}


.difc {
  background: url(../img/forex/difc.jpg)top left no-repeat;
  background-size: cover;
  padding-top: 5%;
  padding-bottom: 5%;
}

.difc h2 {
  font-size: 2em;
  color: #000;
  line-height: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: center;
}

.difc-text {
  background-color: #ffffffe0;
  padding: 80px;
  color: #000;
  font-size: 1.3em;
  text-align: center;
  line-height: 35px;
  font-weight: 500;
}

/*End Forex Business Page*/


/**Start Dubai Crypto License page**/

.dubai-crypto-license1 {
  padding-top: 13%;
  padding-bottom: 8%;
  background: url(../img/dubai-crypto-license/dubai-crypto-bg-right.png)90% 100% no-repeat, url(../img/dubai-crypto-license/dubai-crypto-bg-white.jpg)right bottom no-repeat;
  background-size: 40%, cover
}

.dubai-crypto-license1 h1 {
  font-size: 2.0em;
  color: #000;
  line-height: 45px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;

}

.dubai-crypto-license1 span {
  color: #a78636
}

.dubai-crypto-license1 h3 {
  font-size: 1.4em;
  line-height: 30px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  margin-top: 3%;
  color: #000;
}

.dubai-crypto-license1 h2 {
  font-size: 1.5em;
  color: #000;
  line-height: 30px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  margin-top: 7%;


}

.dcl-padding {
  padding-top: 6%;
  padding-bottom: 6%;
}

.dubai-crypto-license {
  padding-top: 15%;
  padding-bottom: 8%;
  background: #000 url(../img/dubai-crypto-license/dubai-crypto-license-banner-1.jpg) top center no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;

}

.dubai-crypto-license h1 {
  font-size: 2.5em;
  color: #fff;
  line-height: 60px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  text-shadow: -1px 2px 0px #000;
  text-transform: uppercase;

  border-bottom: 2px solid #fff;
  padding: 0px 0px 20px 0px;
}

.dubai-crypto-license h3 {
  font-size: 1.4em;
  line-height: 40px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  margin-top: 3%;
  text-align: center;
  color: #fff;
}


.dubai-crypto-license-que h4 {
  font-size: 1.4em;
  line-height: 30px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  margin-top: 3%;
  text-align: center;
  color: #000;
  background-color: #fff;
  padding: 2% 8%;
  width: 75%;
  justify-content: center;
  display: inline-flex;
  border-radius: 20px;
}

.law-icon::before {
  content: '';
  width: 409px;
  height: 2px;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 8%;
}


.law-icon::after {
  content: '';
  width: 409px;
  height: 2px;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 8%
}

.why-you-need {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/dubai-crypto-license/dubai-crypto-bg.png)bottom left no-repeat;
}

.why-you-need h2 {
  font-size: 2em;
  color: #000;
  line-height: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: center;
}

.why-you-need-box {
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.why-you-need-box div {
  width: 19%;
  margin: 0 1% 2%;
}

.why-you-need-box p {
  color: #000;
  font-size: 1.1em;
  letter-spacing: 0.4px;
  font-weight: 500;
  margin-top: 10%;
}

.why-you-need-box span {
  width: 100px;
  height: 100px;
  border: 1px solid #d5d5d5;
  border-radius: 100px;
  margin: 0 auto;
  display: flex;
  line-height: 100px;
  background-color: #fff;
  box-shadow: -2.5px 5px 0px 0px #d7d7d7;
}

.dubai-crypto-li-list {
  margin-top: 2.5%;
}

.dubai-crypto-li-list li {
  color: #000;
  font-size: 1.1em;
  letter-spacing: 0.4px;
  font-weight: 500;
  margin-bottom: 3%;



}

.dubai-crypto-li-list li::before {
  content: "";
  display: block;
  background: url(../img/dubai-crypto-license/bullet-point.png)0px 6px no-repeat;
  width: 36px;
  height: 40px;
  float: left;
}

.dubai-crypto-li-list img {
  margin-top: 4%;

}

.honestly-speaking {
  position: relative;
  margin-top: 8%;
}

.honestly-speaking h3 {
  font-size: 1.6em;
  color: #fff;
  line-height: 35px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  text-align: left;
  margin-bottom: 2%;
}

.honestly-speaking span {
  font-size: 1.2em;
  color: #fff;
  letter-spacing: 0.4px;
  line-height: 30px !important;
  font-weight: 500;
}

.honestly-speaking-bg {
  padding: 40px 50px;
  border-radius: 20px;
  background: #ed1b23 url(../img/dubai-crypto-license/honestly-speaking.png)top right no-repeat;
  position: absolute;
  top: -100px;
  box-shadow: 0 0 40px 0 #000000b5
}

.license-available {
  background: url(../img/dubai-crypto-license/license-available-uae.jpg)top left no-repeat;
  padding-top: 15%;
  padding-bottom: 5%;
  background-size: cover;
}

.license-available-box {
  background-color: #00000096;
  padding: 30px 25px;
  border-radius: 10px;
  height: 450px;
  margin-bottom: 7%;
}

.license-available-box h3 {
  font-size: 1.4em;
  color: #ebc676;
  line-height: 30px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  text-align: left;
  margin-bottom: 4%;
  text-align: center;
  letter-spacing: 0.4px;
}

.license-available-box p {
  font-size: 1.05em;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
}

.license-available-box ul {
  margin: 2% 0 0 0;
  padding: 0 0 0 4%;
}

.license-available-box li {
  font-size: 1.05em;
  color: #fff;
  margin-bottom: 1.2%;
  list-style-type: disc;
  letter-spacing: 0.3px;

}

.license-available h2 {
  font-size: 2em;
  color: #fff;
  line-height: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: center;
  margin-top: 4%;
}

.dubai-crypto-license-adgm {
  padding-top: 6%;
  padding-bottom: 1%;
}

.dubai-crypto-license-adgm h2 {
  font-size: 2em;
  color: #000;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  text-align: left;
  margin-top: 10%;

}

.dubai-crypto-license-adgm p {
  font-size: 1.1em;
  color: #000;
  line-height: 30px;
  text-align: left;

}

.virtual-asset {

  background-color: #f1f1f1;
  padding: 50px 50px 70px 50px;
  border-radius: 30px;
  background: #f1f1f1 url(../img/dubai-crypto-license/virtual-asset-bg.jpg)top center no-repeat;
  background-size: cover;
}

.virtual-asset h2 {
  font-size: 2em;
  color: #000;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: center;


}

.virtual-asset h4 {
  font-size: 1.2em;
  color: #ebc676;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 1%;
  text-align: center;
  letter-spacing: 0.5px;


}

.virtual-asset p {
  font-size: 1.1em;
  color: #fff;
  line-height: 30px;
  text-align: justify;

}

.virtual-asset-box {
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 30px;
  height: 320px;
  background-color: #2e2939;
  margin-bottom: 5%;
}

.vasp {

  background-color: #01478c;

}

.vasp h2 {
  font-size: 2em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: left;


}

.vasp p {
  font-size: 1.1em;
  color: #fff;
  line-height: 30px;
  text-align: left;

}



.dubai-crypto-text h2 {
  font-size: 1.5em;
  color: #000;

  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 1%;
  text-align: left;


}

.dubai-crypto-text p,
.dubai-crypto-text li {
  font-size: 1.1em;
  color: #000;
  line-height: 30px;
  text-align: left;

}

.dubai-crypto-text ol {

  list-style-type: decimal;
  margin-left: 5%;
  margin-bottom: 2%;
}

.dubai-crypto-text ul {

  list-style-type: upper-latin;
  margin-left: 5%;
  margin-bottom: 2%;
}

.dubai-crypto-text h4 {
  font-size: 1.3em;
  color: #000;
  line-height: 30px;

  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 1%;
  text-align: left;
  margin-bottom: 4%;


}

.dcl-pt {
  margin-top: 3%;
}

.dot-list li {
  list-style-type: disc;
}

.staffing-wrap {
  background-color: #2e2939;
}

.staffing {
  border: 1px solid #ebc676;
  padding: 20px;
  margin-bottom: 8%;
  border-radius: 10px;

}


.staffing-wrap h2 {
  font-size: 2em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  text-align: left;

}

.staffing-wrap p {
  font-size: 1.1em;
  color: #fff;
  line-height: 30px;
  text-align: left;
}

.staffing h5 {
  font-size: 1.2em;
  color: #ebc676;
  line-height: 30px;

  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 4%;
  text-align: center;

}

.staffing p {
  font-size: 1.1em;
  color: #fff;
  line-height: 28px;
  text-align: center;
}

.mlro {
  margin-top: 7%;
}

.mlro h5 {
  font-size: 1.1em;
  color: #ebc676;
  line-height: 30px;

  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 1%;
  text-align: center;

}

.mlro p {
  text-align: center;
}

.mlro-icon {
  text-align: center;
  width: 50px;
  height: 50px;
  color: #ebc676;
  border: 2px solid #fff;
  margin: auto;
  line-height: 48px;
  border-radius: 100px;
  box-shadow: -4px 3px 0 0 #ebc6769c;
  margin-bottom: 5%;
}

.fsra-img img {
  margin-top: 30%;
}

.fsra-img h5 {
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  margin-bottom: 4%;
}

.data-protection {
  background-color: #2e2939;
  padding: 20px 10px;
  text-align: center;
  margin-bottom: 10%;

}

.data-protection h3 {
  color: #ebc676;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
}

.data-protection p {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.hr-space {
  margin: 3% 0;
}

.multilateral {
  background: url(../img/dubai-crypto-license/multilateral.jpg?v=2.0)top left no-repeat;

}

.multilateral h2 {
  font-size: 2em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: left;

}

.multilateral p {
  font-size: 1.1em;
  color: #fff;
  line-height: 30px;
  text-align: left;
}

.multilateral-text {
  padding: 20px 30px;
  background-color: #fff;
}

.multilateral-text h4 {
  font-size: 1.5em;
  color: #000;
  line-height: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;

  text-align: left;
}

.multilateral-text p {
  color: #000;
  line-height: 27px;
  letter-spacing: 0.3px;
}

.token-issuers h2,
.regulatory-approvals h2,
.process h2,
.fsra h2,
.d-cost h2,
.office-spaces h2 {
  font-size: 2em;
  color: #000;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  text-align: left;
}

.token-issuers p,
.regulatory-approvals p,
.process p,
.d-cost p,
.office-spaces p {
  font-size: 1.1em;
  color: #000;
  line-height: 30px;
  text-align: left;
}

.regulatory-approvals {
  background: url(../img/dubai-crypto-license/regulatory-approvals.jpg)top left no-repeat;
  background-size: cover
}

.key-requirements p {
  font-size: 1.1em;
  color: #000;
  line-height: 30px;
  text-align: justify;
}

.key-requirements h2 {
  font-size: 2em;
  color: #000;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  text-align: center;
}

.specific-advantages {
  background-color: #eaf0f3;
}

.specific-advantages h2 {
  font-size: 2em;
  color: #000;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  text-align: center;
}

.specific-advantages p {
  font-size: 1.1em;
  color: #000;

  text-align: center;
}

.specific-advantages h4 {
  font-size: 1.2em;
  color: #000;
  line-height: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 3%;
  text-align: center;
}

.process img {
  margin-top: 5%;
}

.d-cost {
  background-color: #f1f1f1;
}

.d-cost ul {
  margin-left: 3%;
}

.d-cost li {
  font-size: 1.1em;
  color: #000;
  line-height: 30px;
  text-align: left;
  list-style: upper-latin;
  margin-bottom: 3%;
}

.d-cost b {
  color: red;
}

.office-spaces-text {
  border-right: 2px solid #ccc;
}

.office-spaces-text h4 {
  font-size: 1.2em;
  color: red;
  line-height: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;

  text-align: left;
}

.office-spaces .table-bordered {
  border: 1px solid #fff;
}

/**End Dubai Crypto License  page**/
/**Start Knowledge Base page**/

.knowledge-base-banner {
  background: #96a0ac url(../img/knowledge-base.jpg?v=2.0)center left no-repeat;
  height: 350px;
  background-size: cover;
  padding-top: 15%;
}

.knowledge-base-banner h1 {
  font-size: 3em;
  color: #fff;
  line-height: 60px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
}

.knowledge-base-btn {
  border-bottom: 1px solid #ccc;
  text-align: center;
  margin-bottom: 4%;
}

.knowledge-base-btn .nav-tabs .nav-link {
  border: none !important;
  background-color: #ed1b23;
  color: #fff !important;
  padding: 15px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px 10px 0 0 !important;
  margin: 0 5px;
  width: 230px;
  display: grid;

}

.knowledge-base-btn .nav-tabs .nav-link:hover {
  background-color: #ca1c23 !important;
}

.knowledge-base-btn .nav-tabs .nav-link.active {
  background-color: #000 !important;
}

.knowledge-base-btn i {
  margin-bottom: 5%;
}

.knowledge-base .news-box {
  margin-bottom: 8%;
}

.knowledge-base .news-box:hover {
  box-shadow: none;
  outline: 1px solid #ccc;
  transition: all 0.3s linear;
}

/**End Knowledge Base page**/



/**start international nft consultant**/

.international-nft-bnrr {


  background: #e7e7e7 url(../img/incc/international-nft-bnrr-bg.jpg) center right no-repeat;
  padding-top: 14%;
  padding-bottom: 6%;
  background-size: contain;
}

.international-nft-bnrr h1 {
  color: #000;
  font-size: 4.5em;
  line-height: 85px;
  font-weight: 800;

  font-family: "Montserrat", sans-serif !important;
}

.international-nft-bnrr h2 {
  color: #000;
  font-size: 2.4em;
  line-height: 90px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
}

.international-nft-bnrr img {
  margin-top: 5%;
}

.why-you-need2 {
  padding-top: 6.5%;
  background-color: #f1f5fb;
  border-top: 1px solid #ffffff42;
}

.why-you-need2 h1 {
  font-size: 3em;
  color: #000;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center !important;
  margin-bottom: 1.5%;
  text-transform: uppercase;

  font-family: "Montserrat", sans-serif !important;
}

.why-you-need2 ul {
  width: auto;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5%;
}

.why-you-need2 li {
  color: #000;
  line-height: 50px;
  font-size: 1.8em;
  letter-spacing: 0.6px;
  font-family: "Montserrat", sans-serif !important;
}

.why-need-text {
  background-color: #fff;
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
}

.why-need-text p {
  color: #000;
  font-size: 1.5em;
  line-height: 40px;
}

.incc-nft {
  background-color: #f1f1f1;
  padding-top: 5%;
  padding-bottom: 4%;
  background: url(../img/incc/incc-nft-bg.png)top left no-repeat;
  background-size: cover;
}

.incc-nft p {
  color: #000;
  font-size: 1.5em;
  line-height: 40px;
  text-align: center;
}

.why-need-text span {
  font-weight: 800 !important;
  color: #ed1b23;
  font-family: 'Spartan', sans-serif
}

.legal-issue {
  background-color: #000;
  padding-bottom: 5%;
  padding-top: 5%;
}

.legal-issue h1 {
  font-size: 2.5em;
  color: #fff;
  font-weight: 700;
  text-align: center !important;
  margin-bottom: 1.5%;
  text-transform: uppercase;
  margin-bottom: 10%;
  line-height: 59px;

  font-family: "Montserrat", sans-serif !important;
}

.quick-expansion {
  background-color: #fff;
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
  color: #fff;
  line-height: 30px;
}

.quick-expansion p {
  font-size: 1.1em;
  color: #000;
}

.nfts {
  background-color: #ed1b23;
  padding: 5%
}

.inc-form {
  background: #000 url(../img/incc/waves2.png?v=2.0)top center no-repeat;
  background-size: cover;
}

.banner-icon {
  position: relative;
  z-index: 5;
}

.banner-icon .fa-telegram-plane {
  background-color: #1c9be9;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
}

.banner-icon .fa-whatsapp {
  background-color: #42be50;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
}

.acronym-of-nft-wrapper {
  background-color: #f1f1f1;
  border-top: 1px solid #ccc;
  padding-top: 5%;
  padding-bottom: 2%;
}

.acronym-of-nft h2 {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.4em;
  line-height: 49px;
  margin-bottom: 2%;
}

.acronym-of-nft p {
  color: #000;
  font-size: 1.1em;
  letter-spacing: 0.5px;
}

.acronym-of-nfth {
  margin-top: 20%;
}

.acronym-of-nft-heading {
  height: 100px;
  border-radius: 45px 45px 0 0;
  padding: 30px;
}

.acronym-of-nft-heading h5 {
  color: #fff;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 800;

  font-family: "Montserrat", sans-serif !important;
}

.acronym-of-nft2 {
  height: auto;
  border-width: 1px;
  border-radius: 50px;
  border: 2px solid #26d6ef;

}

.acronym-of-nft-heading2 {
  height: 100px;
  background: linear-gradient(90deg, #26d6ef 0%, #245ac4 100%);
  border-radius: 45px 45px 0 0;
  padding: 30px;
}

.acronym-of-nft-heading2 h5 {
  color: #fff;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 800;
}

.legal-development-services {
  padding-top: 6%;
  padding-bottom: 7%;
  background: url(../img/incc/waves.png) center bottom no-repeat;
}

.legal-development-services h2 {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  line-height: 55px;
  margin-bottom: 2%;

}

.legal-development-services h5 {
  color: #000;
  line-height: 33px;
  margin-bottom: 7%;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.legal-development-services-text {
  padding-left: 15px;
  color: #fff;
  background-color: #2e2939;
  text-align: center;
  padding: 20px;
  height: 220px;
  border: 1px solid #ffffff4f;
  border-radius: 10px;
}

.legal-development-services li {
  text-align: left;
  color: #fff;
  line-height: 69px;
}

.legal-development-services i {
  font-size: 10px;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: 1px solid #ebc676;
  text-align: center;
  line-height: 28px;
  margin-right: 15px;
  margin-bottom: 13px;
  color: #ebc676;
}

.design-circle {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 100px;
  margin-top: 5% !important;
  text-align: center;
  line-height: 60px;
  color: #fff;
}

.hiring-a-nft {
  background: #000 url(../img/incc/hiring-nft.jpg)top left no-repeat;
  padding-top: 5%;
  padding-bottom: 5%;
  background-size: cover;
}

.hiring-a-nft h2 {

  color: #000;
  font-weight: 700;
  text-align: center !important;
  line-height: 70px;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: 1px;
  font-size: 3em;
  font-family: "Montserrat", sans-serif !important;
}

.hiring-a-nft-text {

  border-left: 3px solid #ebc676;
  height: auto;
  padding: 20px;
  margin-bottom: 3%;
  line-height: 26px;
  letter-spacing: 0.1px;
  background-color: #2e2939;

}

.hiring-a-nft-text p {
  color: #fff;
  font-size: 1.1em;
}

.nft-sale {
  background: #000 url(../img/incc/nft-sale.jpg)top left no-repeat;
  background-size: 100%;
  padding-top: 7%;
  padding-bottom: 2%;
  color: #fff;
  font-size: 1.1em;
}

.nft-sale h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.2em;
  line-height: 50px;
  margin-bottom: 3%;
}

.aml-compliance {
  background-color: #fff;
  text-align: center;
  color: #000;
  font-size: 1.1em;
  padding-top: 5%;
  padding-bottom: 5%;
}

.aml-compliance h2 {
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  line-height: 50px;
  margin-bottom: 3%;
}

.aml-measures {
  background-color: #f1f1f1;
  border-top: 1px solid #ffffff26;
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/incc/aml-bg.jpg)top left no-repeat;
  background-size: cover;
}

.aml-measures h2 {
  color: #000;
  font-size: 3em;
  margin-bottom: 3%;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
}

.aml-measures p {
  font-size: 1.1em;
  letter-spacing: 0.4px;
  color: #000;

}

.aml-measures-box {
  border: 1px solid #000;
  padding: 30px;
  border-radius: 50px 0 0 0;
  min-height: 235px;
  margin-bottom: 10%;
  color: #c1c1c1;
  background-color: #fff;
  box-shadow: 7px 7px 0 0 #ccc;
}

.aml-measures-box h5 {
  color: #000;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.5em;
  margin-bottom: 2.5%;
}

.marketplace-consulting {
  background-color: #111;
  color: #fff;
  padding-top: 5%;
  padding-bottom: 5%;
}

.marketplace-consulting h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  font-size: 2.5em;
  line-height: 46px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 3%;
}

.marketplace-consulting p {
  font-size: 1.1em;
}


/**end international nft consultant**/

/**start international taxation page**/
.international-taxation {
  padding-top: 15%;
  padding-bottom: 2%;
  background: url(../img/international-taxation/international-taxation-banner.jpg)top center;
  background-size: cover;
  text-align: center;
  height: 750px;
}

.international-taxation h1 {
  font-size: 2.6em;
  color: #fff;
  line-height: 70px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  text-shadow: -1px 2px 0px #000;
  margin-bottom: 1.5%;
}

.international-taxation h3 {
  font-size: 1.5em;
  color: #fff;
  line-height: 30px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;


}

.international-taxation h4::before {
  display: block;
  content: "";
  background: url(../img/international-taxation/comma.png)center center no-repeat;
  width: 110px;
  height: 110px;
  background-size: 100%;
  position: absolute;
  right: 45%;
  bottom: 24%;

}

.international-taxation h4 {
  font-size: 1.7em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  background-color: #ed1b23;
  padding: 5% 5% 3% 5%;

  border-radius: 30px;
  width: 80%;
  margin: 10% auto 0;
  box-shadow: -6px 6px 0 0 #000;
}

.challenges {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/international-taxation/assets.euromoneydigital.jpg)bottom center no-repeat;
  background-size: cover;
}

.challenges p {
  font-size: 1.2em;
  color: #000;
  line-height: 28px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
}

.challenges p:nth-child(1) {
  margin-top: 15%;
}

.understanding-analysing {
  padding-top: 10%;
  padding-bottom: 10%;
  background-color: #2e2939;
  position: relative;
  background: url(../img/international-taxation/analysing-bg.png)bottom center no-repeat;
  background-size: cover;

}

.understanding-analysing-img {

  width: 450px;
  height: 400px;
  background: url(../img/international-taxation/analysing.png)top left no-repeat;
  background-size: 100%;
  position: absolute;
  left: 15%;
  top: 10%;
  z-index: 1;

}

.understanding-analysing-text h3 {
  font-size: 2em;
  color: #000;
  line-height: 45px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.1px;
  text-align: right;
  background-color: #fff;
  padding: 10% 5% 5% 16%;
  height: 380px;
  border-radius: 10px;

}

.taxation-legal {
  padding-top: 7%;
  padding-bottom: 5%;
  background: url(../img/international-taxation/taxation-legal.jpg)top left no-repeat;
  background-size: cover;
  position: relative;
  height: 500px;
}

.taxation-legal p {
  font-size: 1.5em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 5%;
}

.professionals-tax {

  position: absolute;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 50px 0 #000;
  background: #ed1b23 url(../img/international-taxation/waves.png)bottom center no-repeat;

}

.professionals-tax h2 {
  font-size: 1.4em;
  color: #fff;
  line-height: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.6px;
  text-align: center;
  text-transform: uppercase;
}

.main-offices {
  padding-top: 16%;
  padding-bottom: 5%;
}

.main-offices h3 {
  font-size: 1.4em;
  color: #000;
  line-height: 40px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.4px;
  margin-top: 7%;


}

.main-offices img {
  margin-top: 15%;
}

.main-offices-comma {
  position: relative;
  margin-top: 15%;
}

.main-offices-comma::before {
  content: '';
  display: block;
  background: url(../img/international-taxation/comma-red.png)center left no-repeat;
  width: 200px;
  height: 200px;
  background-size: 100%;
  position: absolute;
  top: -60%;
  z-index: -1;


}

.main-offices-comma h2 {
  font-size: 1.8em;
  color: #ed1b23;
  line-height: 40px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-left: 8%;


}

.main-offices span {
  color: #fff;
  background-color: #ed1b23;
  padding: 4px;
}

.our-knowledge {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #f4f4f9;
  position: relative;
}

.our-knowledge:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 15px 15px;
  background-image: -webkit-radial-gradient(rgba(77, 67, 92, .04) 15%, transparent 0), -webkit-radial-gradient(rgba(77, 67, 92, .04) 15%, transparent 0);
  background-image: radial-gradient(rgba(77, 67, 92, .04) 15%, transparent 0), radial-gradient(rgba(77, 67, 92, .04) 15%, transparent 0);
}

.our-knowledge p {
  font-size: 1.4em;
  color: #000;
  line-height: 35px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.4px;
  text-align: center;
}

.our-knowledge h2 {
  font-size: 2em;
  color: #000;
  line-height: 35px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 4%;
  margin-bottom: 3%;

}

.our-knowledge-box {
  border: 1px solid #ccc;
  padding: 30px;
  background-color: #ffffff42;
  margin-bottom: 30px;
  height: 250px;
}

.kb-box {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 1px solid #ed1b23;
  line-height: 50px;
  margin: 0 auto 3%;
  background-color: #ed1b23;
  box-shadow: 0 0 10px 0 #00000029
}

.our-knowledge-box img {
  margin-top: 23%;
}

.our-knowledge-box p {
  font-size: 1.1em;
  letter-spacing: 0.5px;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 500;
}

/**end international taxation page**/

/**new real-estate-tokenization1**/
.real-estate-tokenization-bnr1 {
  background: #000f29 url(../img/real-estate-tokenization-new/real-estate-tokenization1-banner.jpg)center 120px no-repeat;

  background-size: 77%;
  padding-top: 15%;
  padding-bottom: 6%;


}

.real-estate-tokenization-bnr1 h3 {
  font-family: 'Montserrat', sans-serif !important;
  color: #fff;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 2px;
  font-weight: 800;
  position: relative;
  z-index: 1;

}

.real-estate-tokenization-bnr1 h3 span {
  font-weight: 400;
  letter-spacing: 3px;
}

.real-estate-tokenization-bnr1 hr {
  background-color: #fff;
  width: 63%;
  float: left;
  display: block;
  margin-bottom: 7%;
}

.real-estate-tokenization-bnr1 h1 {

  font-family: 'Montserrat', sans-serif !important;
  background: rgb(216, 216, 216);
  background: linear-gradient(90deg, rgba(216, 216, 216, 1) 0%, rgba(255, 255, 255, 1) 56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.9em;
  line-height: 68px;
  letter-spacing: 2px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  float: left;



}

.real-estate-tokenization-bnr1 h1 span {
  font-weight: 400;
}

.real-estate-tokenization-bnr1 h4 {
  font-family: 'Montserrat', sans-serif !important;
  color: #fff;
  font-size: 1.4em;
  line-height: 35px;
  letter-spacing: 0.5px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  float: left;
  margin-top: 7%;
}

.real-estate-tokenization-bnr1 h4 span {
  font-weight: 300;
}

.tokenization-highlight {
  padding-top: 7%;
  padding-bottom: 10%;
  background: url(../img/real-estate-tokenization-new/tokenization-highlight-bg.png)top left no-repeat;
  background-size: 100%;
  position: relative;
  z-index: -3;
}

.tokenization-highlight h3 {
  text-align: center;
  font-family: 'Montserrat', sans-serif !important;
  color: #fff;
  font-size: 1.6em;
  line-height: 40px;
  letter-spacing: 0.6px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-shadow: -0.9px 1px 0 #000;

}

.tokenization-highlight h3::before {

  content: "";
  display: block;
  background: url(../img/real-estate-tokenization-new/comma.png)center center no-repeat;
  width: 180px;
  height: 180px;
  background-size: 100%;
  position: absolute;
  z-index: -1;
  left: 39%;
  top: -68%
}

.tokenization-highlight-text {
  background-color: #111d31;
  padding: 130px 50px 50px 50px;
  border-radius: 15px;
  position: relative;


}

.tokenization-highlight-text::after {
  width: 863px;
  height: 70px;
  background-color: #d7d7d7;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  text-align: center;
  margin-block: 0 auto;
  left: 3%;
  border-radius: 15px;
  box-shadow: 0 0 10px #00000085
}

.tokenization-highlight-text::before {
  width: 828px;
  height: 70px;
  background-color: #e8e8e8;
  content: "";
  display: block;
  position: absolute;
  z-index: -3;
  text-align: center;
  margin-block: 0 auto;
  left: 5%;
  bottom: -40px;
  border-radius: 15px;
  box-shadow: 0 0 10px #00000085
}

.tokenization-highlight-text-btn {
  padding: 10px 20px;
  background-color: #fcd24f;
  width: 200px;
  margin: 0 auto;
  display: block;
  margin-top: 5%;
  border: none;
  border-radius: 100px;
  border: 3px solid #202d46;
  font-weight: 700;
  letter-spacing: 0.9px;
  box-shadow: 0 4px 0 #fcd24f;
  font-size: 1.1em;
}

.ret-arrow {
  background: url(../img/real-estate-tokenization-new/arrow.gif)bottom left no-repeat;
  width: 300px;
  height: 300px;
  background-size: 100%;
  position: absolute;
  transform: rotate(-100deg);
  bottom: -10%;
  left: 60%;
}

.tokenization-potential {
  background-color: #012245;
  padding-top: 3%;
  padding-bottom: 3%;
}

.tokenization-potential-text {
  display: flex;
}

.tokenization-potential-text p {
  margin-left: 2%;
  font-family: 'Montserrat', sans-serif !important;
  color: #fff;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-left: 9%;
}

.tokenization-potential-text p::before {

  content: "";
  display: block;
  background: url(../img/real-estate-tokenization-new/comma.png)center center no-repeat;
  width: 70px;
  height: 70px;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: -10%;


}

.tokenization-potential-text-btn {
  padding: 10px 20px;
  background-color: #fcd24f;
  width: 200px;
  margin: 0 auto;
  display: block;
  margin-top: 5%;
  border: none;
  border-radius: 100px;
  border: 3px solid #202d46;
  font-weight: 700;
  letter-spacing: 0.9px;
  box-shadow: 0 3px 0 #fcd24f;
  font-size: 1.1em;
}

.tokenization-potential-text-btn:hover {

  background-color: #fcd24f;

  box-shadow: none;
  transition: box-shadow 0.3s linear;
  margin-top: 5.5%;

}

.realestate-sector {
  padding-top: 6%;
  padding-bottom: 6%;
  background: url(../img/real-estate-tokenization-new/rea-estate-sector-bg.jpg)center center no-repeat;
  background-size: contain;
}

.realestate-sector img {
  margin-top: 7%;
}

.realestate-sector p {

  font-family: 'Montserrat', sans-serif !important;
  color: #000;
  font-size: 1.5em;
  letter-spacing: 0.5px;
  line-height: 38px;

}

.ret-points {
  background-color: #f5f6f9;
  padding-top: 7%;
  padding-bottom: 7%;
}


.ret-points-box p {
  color: #000;
  font-size: 1.1em;
  text-align: center;
  font-weight: 500;
  margin-top: 6%;
  padding: 0% 10% 0 10%;
  margin-bottom: 0;

}

.services-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.service2 {}

.flip-box2 {

  width: auto;
  height: 300px;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  perspective: 1000px;
  margin-bottom: 5.5%;

}

.flip-box-inner2 {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;

  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-box2:hover .flip-box-inner2 {
  transform: rotateY(180deg);

  transition: all 0.3s linear;
}

.flip-box-front2,
.flip-box-back2 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flip-box-front2 {
  background-color: #fff;
  color: black;
  border-radius: 10px;
  box-shadow: 0px 16px 49px 0px rgba(5, 13, 66, 0.08);
}

.flip-box-front2 img {
  height: 50px;
  width: 50px;
}

.flip-box-back2 {
  background-color: #ffffff;
  color: #000;
  transform: rotateY(180deg);
  border-radius: 10px;
  padding: 16px;

}

.flip-box-back2 p {
  margin-top: 0;


}

.ret-points-btn {
  padding: 10px;
  background-color: #2a336e;
  width: 180px;
  margin: 0 auto;
  margin-top: 0px;
  display: block;
  margin-top: 5%;
  border: none;
  border-radius: 100px;
  color: #fff;
  font-weight: 600;
  box-shadow: -3px 3px #44b46e;

}

.ret-points-btn-w {
  padding: 10px;
  background-color: #fff;
  width: 180px;
  margin: 0 auto;
  margin-top: 0px;
  display: block;
  margin-top: 5%;
  border: none;
  border-radius: 100px;
  color: #2a336e;
  font-weight: 600;
  box-shadow: -3px 3px #44b46e;
}

.primary-challenges {
  padding-top: 7%;
  padding-bottom: 7%;
  background: url(../img/real-estate-tokenization-new/primary-challenges.jpg)top center no-repeat;
  background-size: cover;
}

.primary-challenges h3 {

  font-family: 'Montserrat', sans-serif !important;
  color: #fff;
  font-size: 1.6em;
  line-height: 35px;
  letter-spacing: 0.6px;
  font-weight: 700;
  position: relative;
  z-index: 1;

}

.primary-challenges p {
  color: #fcd24f;
  font-size: 1.0em;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 5%;
}

.primary-challenges h3 span {
  font-weight: 300;
}

.primary-challenges-btn {
  padding: 10px 20px;
  background-color: #fcd24f;
  width: 200px;

  margin-top: 10%;
  display: block;

  border: none;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.9px;
  box-shadow: 0 3px 0 #fff;
  font-size: 1.1em;
}

.primary-challenges-btn:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.3s linear;
}

.process-of-ret {
  padding-top: 7%;
  padding-bottom: 7%;
}

.process-of-ret h2 span {
  font-weight: 400;
}

.process-of-ret h2 {
  color: #000;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2.5%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 45px;
  text-align: center;
}

.process-of-ret hr {
  width: 50%;
  background-color: #ccc;
  margin-bottom: 10%;
}

.beneficial-ret {
  padding-top: 100px;
  padding-bottom: 60px;
  margin-top: 24px;
  margin-right: 24px;
  margin-bottom: 24px;
  margin-left: 24px;
  border-radius: 24px 24px 24px 24px;
  background: url(../img/real-estate-tokenization-new/beneficial-ret-bg.jpg)top left no-repeat;
  background-size: cover;
  margin-top: 10%;
}

.beneficial-ret h2 {
  color: #000;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 1.5%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 45px;
  text-align: center;
}

.beneficial-ret p {
  color: #000;
  text-align: center;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 5%;

}



.beneficial-ret h3 {
  color: #2a336e;
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif !important;

  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 3%;
  margin-top: 5%;
}

.beneficial-ret-box {
  background-color: #fff;
  border-radius: 24px;
  padding: 30px 20px;
  height: 420px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px #0000000a
}

.beneficial-ret-box:hover {
  box-shadow: none;
  transition: all 0.3s linear;
  cursor: pointer;
}

.beneficial-ret-box p {
  color: #1c1c1c;
  text-align: center;
  font-size: 1.05em;
  font-weight: 500;
}

.several-ret {
  background-color: #f5f6f9;
  padding-top: 7%;

}

.several-ret h2 {
  color: #000;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 10%;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 45px;

}

.several-ret-list li {
  font-size: 1.2em;
  color: #000;
  margin-bottom: 5%;
  padding: 25px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  box-shadow: 5px 5px 0 #000;
  align-items: center;

}

.several-ret-list li:nth-child(odd) {
  background: #2a336e url(../img/real-estate-tokenization-new/finance4-home-column-bg3.png)top left no-repeat;

  background-size: cover;
  color: #fff;


}

.several-ret-list li:nth-child(even) {
  background: #607fe1 url(../img/real-estate-tokenization-new/finance4-home-column-bg3.png)top left no-repeat;
  background-size: 100%;

  color: #fff;

}

.several-ret-list-icon {
  margin-right: 3%;
  width: 50px;
  height: 50px;
  background-color: #000;
  text-align: center;
  line-height: 45px;
  border-radius: 100px;
  display: block;
}

.several-ret-list-icon img {
  width: 50%;
}

.several-ret-img img {
  margin-top: 0%;
}

.organizations-interested h3 {
  color: #000;
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 10%;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 33px;
  text-align: center;
  margin-top: 5%;
  border: 10px groove #ccc;
  padding: 40px 20px;
  border-radius: 20px;
}

.organizations-interested h3:hover {
  background-color: #6e8ae3;
  color: #fff;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

/**end real-estate-tokenization1**/

/**start citizenship-golden-pr-advisory**/
.citizenship-golden-banner {
  padding-top: 13.5%;
  padding-bottom: 5%;
  background: url(../img/citizenship/citi-banner.jpg)top left no-repeat;
  background-size: cover;
}


.citizenship-golden-banner h1 {
  font-size: 3.3em;
  color: #000;
  line-height: 60px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.citizenship-golden-banner h1 span {
  color: #ed1b23;

}

.citizenship-golden-banner p span {
  font-weight: 700;
  color: #ed1b23;
}



.citizenship-golden-banner h3 {
  font-size: 1.6em;
  color: #000;
  line-height: 30px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  margin-top: 3%;

}

.citizenship-golden-banner p {
  font-size: 1.2em;
  color: #000;
  margin-top: 5%;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.8px;
  position: relative;

}

.citizenship-golden-banner p::after {
  background: url(../img/citizenship/citizenship.png) top right no-repeat;
  width: 200px;
  height: 50px;
  content: '';
  display: block;
  background-size: 100%;
  position: absolute;
  right: 25%;
  top: 110%;
}

.citizenship-golden-banner h4 {
  font-size: 1.4em;
  color: #000;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.3px;
  line-height: 32px;
  margin-top: 7%;
  padding-right: 15%;
}

.road-map-seeking {
  padding-top: 5%;
  padding-bottom: 5%;
}

.road-map-seeking h2 {
  color: #000;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 6%;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 45px;

}

.road-map-seeking-box {
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  border-radius: 10px;
  align-items: baseline;
  box-shadow: inset 0 0 10px #00000073
}

.road-map-seeking-box h4 {
  color: #e3af73;
  font-size: 1.3em;
  font-family: "Montserrat", sans-serif !important;

}

.road-map-seeking-box-img {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 100px;
  text-align: center;
  line-height: 65px;
  margin-right: 15px;
  box-shadow: -3px 3px 0 #000;
}

.road-map-seeking-box-img img {
  width: 40px;
}

.big-legal-trouble {
  padding-top: 6%;
  padding-bottom: 6%;
  background-color: #f0f1f5;

}

.big-legal-trouble h2 {
  color: #000;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 50px;
  text-align: center;

}

.having-lawyer {

  padding: 50px 30px;
  border-radius: 30px;
  margin-top: 3%;
  background: #0e1424 url(../img/citizenship/having-lawyer.jpg)top right no-repeat;
}

.having-lawyer h3 {
  color: #fff;
  font-size: 1.4em;
  font-family: "Montserrat", sans-serif !important;
  line-height: 40px;
  letter-spacing: 0.4px;
}

.having-lawyer-btn {
  border: none;
  background-color: #f7bc4b;
  color: #0e1424;
  width: 200px;
  height: 50px;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin: 13% auto 0;
  font-family: "Montserrat", sans-serif !important;
  border-radius: 5px;
}

.having-lawyer-btn:hover {
  background-color: #fff;
  color: #0e1424;
  transition: all 0.3s linear;

}

.what-citizenship {

  padding-top: 6%;
  padding-bottom: 6%;
  font-family: "Montserrat", sans-serif !important;
  position: relative;
  background: #0e1424 url(../img/citizenship/map.png)top left no-repeat;
  background-size: 100%;
}

.what-citizenship img {
  margin-bottom: 3%;
  width: 12%;
}

.what-citizenship h2 {
  color: #fff;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 2%;

}

.change-citizenship {
  padding-top: 6%;
}

.change-citizenship h3 {
  color: #0e1424;
  font-size: 1.6em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  text-align: center;
  background-color: #f7bc4b;
  padding: 10px 0;
  border-radius: 5px;

}

.what-citizenship-icon {
  margin-bottom: 7%;
}

.change-citizenship i {
  color: #f7bc4b;
  font-size: 70px;
  position: absolute;
  top: 30%;
  left: 46%;
}

.what-citizenship p {
  color: #fff;
  text-align: center;
  font-size: 1.3em;
  line-height: 30px;
}

.change-citizenship p {
  text-align: center;
}

.change-citizenship-box {
  background-color: #f0f1f5;
  height: 170px;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px #00b7ff42;
  border: 1px solid #0e142412;
}


.change-citizenship-box p,
.change-citizenship-box1 p {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  text-align: center;
  font-size: 1.1em;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.change-citizenship-box img {
  margin-bottom: 3%;
  filter: drop-shadow(2px 2px 2px #22222287)
}

.advantages-citizenship {
  margin-top: 6%;
  padding-bottom: 6%;
}

.advantages-citizenship h2 {
  color: #000;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 6%;


}

.advantages-citizenship li {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  font-size: 1.2em;
  line-height: 28px;
  letter-spacing: 0.4px;
  margin-bottom: 6%;
  font-weight: 500;
  background: url(../img/citizenship/tick.png)center left no-repeat;
  padding-left: 40px;
  background-size: 5.5%;
}

.advantages-citizenship i {
  color: #d8042a;
  width: 32px;
  height: 32px;
  border: 2px solid#d8042a;
  border-radius: 100px;
  text-align: center;
  line-height: 31px;
  font-size: 0.7em;
}



.concerns-citizenship {

  padding-bottom: 4%;
}

.concerns-citizenship h2 {
  color: #000;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 6%;
}

.concerns-citizenship li {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  font-size: 1.2em;
  line-height: 28px;
  letter-spacing: 0.4px;
  margin-bottom: 6%;
  font-weight: 500;
  background: url(../img/citizenship/tick.png)center left no-repeat;
  padding-left: 40px;
  background-size: 5.5%;
}

.concerns-citizenship i {
  color: #d8042a;
  width: 32px;
  height: 32px;
  border: 2px solid#d8042a;
  border-radius: 100px;
  text-align: center;
  line-height: 31px;
  font-size: 0.7em;
}

.country-citizenship {
  padding-bottom: 6%;

}

.country-citizenship-rounded-wrap {
  background-color: #f0f1f5;
  padding: 5%;
  border-radius: 40px;
}

.country-citizenship-rounded-wrap h2 {
  color: #000;
  font-size: 2.0em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 6%;
  text-align: center;


}

.country-citizenship-rounded-wrap-box {
  height: 170px;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  padding: 20px;
  border-bottom: 3px solid #e91415;
  border-radius: 10px;


}

.country-citizenship-rounded-wrap-box img {
  margin-bottom: 10px;
}

.country-citizenship-rounded-wrap-box h5 {
  color: #000;
  font-size: 1.1em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 20px;
}

.type-of-visa {

  padding-bottom: 6%;
}

.type-of-visa-box {
  background-color: #2e2939;
  box-shadow: 0 0 20px #1591ff42;
  margin-bottom: 30px;
  height: 790px;

}

.type-of-visa-box:hover {
  box-shadow: none;
  transition: all 0.3s linear;
  cursor: pointer;

}

.type-of-visa-box h5 {
  color: #e3af73;
  font-size: 1.6em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.5px;

  line-height: 30px;

  padding: 35px 35px 15px 35px
}

.type-of-visa-box p {
  font-size: 1.1em;
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  padding: 0 35px 35px 35px;
}

.type-of-visa-box ul {
  padding: 0 35px 35px 55px;
  font-size: 1.1em;
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
}

.type-of-visa-box li {
  list-style: circle;
  margin-bottom: 2%;
}

.citi-how-do-we-help {
  background: url(../img/citizenship/law.jpg)top center no-repeat;
  background-size: cover;
  padding-top: 7%;
  padding-bottom: 7%;
}

.citi-how-do-we-help h2 {
  color: #e3af73;

  font-size: 2.5em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 2%;
}

.citi-how-do-we-help p {
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  color: #fff;
  line-height: 40px;
  text-align: center;
}

.citi-how-do-we-help img {
  margin-bottom: 2%;
}

.citi-how-do-we-help-btn {
  border: none;
  background-color: #e3af73;
  color: #0e1424;
  width: 200px;
  height: 50px;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin: 5% auto 0;
  font-family: "Montserrat", sans-serif !important;
  border-radius: 5px;
}

.citi-how-do-we-help-btn:hover {
  background-color: #fff;
  color: #0e1424;
  transition: all 0.3s linear;

}


/**start logo slider**/


.slider {
  height: 60px;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

citizenship-flag slider::before,
citizenship-flag slider::after {
  position: absolute;
  background-image: linear-gradient(to right, rgba(240, 241, 245, 1) 0%, rgba(240, 241, 245, 0) 100%);
  content: '';
  height: 100%;
  width: 25%;
  z-index: 2;
  pointer-events: none;
}

.citizenship-flag .slider::before {
  left: 0;
  top: 0;
}

.citizenship-flag .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

/*  IMPORTANT CODE BELOW */

.citizenship-flag .slide-track {
  width: calc(150px * 20);
  display: flex;
  animation: scroll 20s linear infinite;
  justify-content: space-between;
}

.citizenship-flag .slide-track2 {
  width: calc(150px * 15);
  display: flex;
  animation: scroll2 15s linear infinite;
  justify-content: space-between;
}

.citizenship-flag .slide {
  width: auto;
  height: 60px;

  display: grid;
  place-items: center;
  transition: 0.5s;
  cursor: pointer;
  margin: 0 15px;
}

.citizenship-flag .slide:hover {
  transform: scale(0.8)
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-150px * 10));
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-150px * 5));
  }
}

@media screen and (max-width: 768px) {
  .citizenship-flag .slide-track {
    width: calc(80px * 20);
  }

  .citizenship-flag .slide-track2 {
    width: calc(80px * 15);
  }

  .citizenship-flag .slide {
    width: 80px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }

    100% {
      transform: translateX(calc(-80px * 10));
    }
  }

  @keyframes scroll2 {
    0% {
      transform: translateX(0px);
    }

    100% {
      transform: translateX(calc(-80px * 5));
    }
  }
}

/** ens logo slider **/

.citizenship-flag {}

.citizenship-flag .logos {
  background-color: #2e2939;
  padding-top: 2%;
  padding-bottom: 2%;

  margin-top: 1.5%;
  margin-bottom: 1.5%;
}



.citizenship-golden-banner-btn i {
  margin-right: 1%;
  width: 62px;
  height: 64px;
  border-radius: 50px 0 0 50px;
  background-color: #30a447;
  text-align: center;
  line-height: 64px;
  font-size: 30px;
  margin-left: -28px;
}

.citizenship-golden-banner-btn button {
  width: 360px;
  height: 64px;
  background-color: #2e2939;
  color: #fff;
  border: none;
  font-size: 1.2em;
  margin-top: 5%;
  border-radius: 50px;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 2%;
  padding: 0;
}

.citizenship-golden-banner-btn button:hover {
  background-color: #30a447;
  transition: all 0.3s linear;
}

/**end citizenship-golden-pr-advisory**/


/**Start page Money Recovery Law Suit**/
.money-recovery-banner {
  padding-top: 13%;
  padding-bottom: 6%;
  background: url(../img/money-recovery/money-recovery-banner2.jpg)top left no-repeat;

  background-size: cover;


}

.money-recovery-banner h1 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
}

.money-recovery-banner-small h1 {
  font-size: 2.4em;
  margin-bottom: 5%;
  line-height: 45px;
  letter-spacing: 0.5px;
  text-shadow: -1px 1px 0 #000;
}

.money-recovery-banner-small h1::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 32%;
  top: 22.5%
}

.money-recovery-banner-big h1 {
  font-size: 3.5em;
  margin-bottom: 10%;
  font-weight: 800;
  color: #fff;
  text-shadow: -1px 1px 0 #000;
}

.money-recovery-banner h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  font-size: 1.7em;
  margin-bottom: 5%;
  line-height: 35px;
  letter-spacing: 0.4px;
  font-weight: 500;
}

.money-recovery-banner span {

  color: #ddb477;
}

.money-recovery-banner-form {
  position: relative;
  background: #f8faff;
  max-width: 540px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 50px 40px;
  box-shadow: 0 20px 30px rgba(0, 22, 84, 0.15);
}

.money-recovery-banner .form-control::placeholder {
  color: #868e96 !important;
  opacity: 1;
  font-size: 0.9em;
  font-weight: 500;
}

.money-recovery-banner .form-control {
  height: 55px;
  margin-bottom: 0%;
  border: none;
  -webkit-box-shadow: 0 0 6px 1px rgba(62, 28, 131, 0.1);
  border-radius: 7px;
  font-weight: 500;
}

.money-recovery-banner button {
  width: 100%;
  height: 50px;
  border: 0;
  background-color: #ed1b23;
  color: #fff;
  font-weight: 600;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.money-recovery-banner button:hover {
  background-color: #000;
  transition: all 0.3s linear;
}

.scam-type {
  background-color: #ddb477;
  padding-top: 2%;
  padding-bottom: 2%;
}

.scam-type-icon {
  width: 60px;
  height: 60px;
  background-color: #081619;
  border-radius: 100px;
  text-align: center;
  line-height: 58px;

}

.scam-type-icon img {
  width: 60%;
}

.scam-type h3 {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  font-size: 1.5em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
}

.how-do-work-moneny {
  padding-top: 6%;
  padding-bottom: 6%;
}

.how-do-work-moneny h2 {
  color: #fff;
  font-size: 2.3em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 8%;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 45px;
}

.how-do-work-moneny-full {
  background-color: #2e2939;
  padding: 60px 50px;
}

.how-do-work-moneny-full img {
  margin-bottom: 5%;
}

.how-do-work-moneny-full p {
  color: #f1f1f1;
  font-size: 1.2em;
  line-height: 30px;
  font-weight: 500;
  margin-top: 7%;
}

.how-do-work-moneny-full hr {
  background-color: #fff;
}

.how-do-work-moneny-small-box {
  border: 2px solid #ccccccab;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.how-do-work-moneny-small-box span {
  background-color: #ddb477;
  color: #000;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 100px;
  letter-spacing: 0.4px;
  box-shadow: -1px 3px 0 #00000094;

}

.how-do-work-moneny-small-box h5 {
  color: #000;
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.4px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 7%;

}

.how-do-work-moneny-small-box p {
  color: #000;
  font-size: 1.05em;
  line-height: 25px;
  font-weight: 500;
  margin-top: 4%;
  margin-bottom: 0;
}

/**End page Money Recovery Law Suit**/

/**Start AML Page**/
.aml-banner {
  background: url(../img/aml/aml-banner.jpg)top right no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 7%;
  position: relative;
}

.aml-banner h1 {
  background: linear-gradient(90deg, rgb(207, 103, 76) 0%, rgb(197, 131, 47) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3em;
  line-height: 60px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.aml-banner h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.9em;
  line-height: 60px;
  background: rgb(159, 51, 23);
  background: linear-gradient(90deg, rgba(159, 51, 23, 1) 0%, rgba(197, 131, 47, 1) 100%);
  padding: 0px 20px;
  letter-spacing: 0.7px;
  font-weight: 800;
}

.aml-banner p {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  margin-top: 3%;
  letter-spacing: 0.5px;
  margin-bottom: 2%;
  line-height: 31px;
  margin-top: 3%;
  font-weight: 400;
}

.aml-banner i {
  font-size: 2em;
  position: absolute;

}

.aml-services-wrapper h2 {
  color: #c4802e;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  text-align: center;
  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;
}

.aml-services-wrapper {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #17182a;
}

.aml-services h3 {
  text-align: center;
  color: #f1f1f1;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.4em;
}

.aml-services img {
  margin-bottom: 3%;
}

.aml-services {
  border: 1px solid #c4802e;
  padding: 30px 0;
  border-radius: 4px;
  margin-bottom: 8%;

}

.anti-money {
  padding-top: 7%;
  padding-bottom: 7%;
  color: #000;
  background: #eee url(../img/aml/anti-money.png)top right no-repeat;
  background-size: contain;
}

.anti-money h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;

  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;
}

.across-globe {
  padding-top: 5%;
  padding-bottom: 7%;
  background: url(../img/aml/map.png)top right no-repeat;
  background-size: contain;
}

.across-globe h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  text-align: center;
  margin-bottom: 3%;
  letter-spacing: 0.7px;
  font-weight: 800;
  line-height: 40px;
}

.across-globe p {
  text-align: center;
  color: #000;
  font-size: 1.3em;
  line-height: 34px;
  letter-spacing: 0.4px;
}

.compliance-uae {
  padding-top: 7%;
  padding-bottom: 6%;
  background: url(../img/aml/compliance-uae.jpg)top right no-repeat;
  background-size: cover;
}

.compliance-uae h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  text-align: center;
  margin-bottom: 3%;
  letter-spacing: 0.7px;
  font-weight: 800;
  line-height: 40px;
  text-shadow: -1px 1px #000;
}

.compliance-uae p {
  text-align: center;
  color: #fff;
  font-size: 1.2em;
  line-height: 26px;
  font-weight: 500;
  text-shadow: -1px 1px #353535
}

.our-services-aml-wrapper {
  padding-top: 6%;
  padding-bottom: 4%;

}

.our-services-aml-wrapper h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  text-align: center;
  margin-bottom: 4%;
  letter-spacing: 0.7px;
  font-weight: 800;

}

.our-services-aml h5 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 22px;
  font-weight: 500;
}

.our-services-aml {
  margin-bottom: 10%;
  background-color: #f1f1f1;
  padding: 30px;
  height: 190px;
  border-radius: 7px;
  box-shadow: -5px 5px #f2e2ce;
  cursor: pointer;
  text-align: center;
}

.our-services-aml i {
  width: 35px;
  height: 35px;
  background-color: #455a64;
  border-radius: 100px;
  margin: 0 auto;
  line-height: 35px;
  color: #fff;
  margin-bottom: 3%;
}

.our-services-aml:hover {
  box-shadow: none;
  transition: all 0.3s linear;

}

.aml-why-choose-wrapper {
  padding-top: 4%;
  padding-bottom: 6%;

}

.aml-why-choose-wrapper h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;

}

.aml-why-choose-wrapper p {

  color: #000;
  font-size: 1.08em;
  line-height: 26px;
  letter-spacing: 0.5px;
  border-radius: 0 20px 50px 0px;
  padding: 30px 20px;
  color: #fff;
  background-color: #455a64;
  border-left: 7px solid #c4802e;
  font-weight: 500;
}

.aml-why-choose-wrapper img {
  margin-bottom: 7%;
}

.aml-why-choose-wrapper {
  padding-top: 4%;
  padding-bottom: 6%;

}

.aml-why-choose-wrapper h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;

}

.start-your-journey {
  padding-top: 4%;
  padding-bottom: 6%;

  background: #272a2f url(../img/aml/metaverse-consultants.png)top right no-repeat;

}

.start-your-journey h3 {
  color: #f2e2ce;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;

  letter-spacing: 0.7px;
  font-weight: 800;
  line-height: 55px;
  text-align: right;

}

.start-your-journey i {
  font-size: 60px;
  margin-top: 13%;
  margin-left: 5%;
  color: #f2e2ce;
}

.start-your-journey span {
  background-color: #f2e2ce;
  color: #272a2f;
  padding: 0 10px;
}

.aml-faq {
  padding-top: 7%;
  padding-bottom: 7%;
  font-family: "Montserrat", sans-serif !important;

}

.aml-faq h5 {
  color: #f2e2ce;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  text-align: left;
  letter-spacing: 0.7px;
  font-weight: 700;
  line-height: 55px;


}

.aml-faq .card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgb(39, 42, 47);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.aml-faq .btn {
  padding: 0 20px;
  height: auto;
  line-height: 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize
}

.aml-faq .btn-link:hover {
  color: #f2e2ce;
  text-decoration: underline;
}

.aml-faq h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3em;
  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-align: center;

}

.understanding-aml {
  background-color: #f1f1f1;
  padding-top: 5%;
  padding-bottom: 5%;
  color: #000;
}

.understanding-aml h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-align: center;

}


.understanding-aml-flex {
  display: flex;

}

.understanding-aml-icon {
  width: 60px;
  height: 60px;
  background-color: #c4802e;
  border-radius: 50px;
  text-align: center;
  flex: 0 0 60px;
  line-height: 60px;
  margin-right: 10px;
  font-size: 1.5em;
  font-weight: 2em;
  font-weight: 800;
  color: #fff;

}

.understanding-aml-text h5 {
  color: #c4802e;
  margin-bottom: 1.5%;
  font-size: 1.2em;
}

.combating-money {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-top: 4%;
  box-shadow: 0 10px 0 #c4802e;
}


.combating-money h5 {
  color: #c4802e;
  margin-bottom: 1%;
  font-size: 1.4em;
}

.combating-money p {
  margin-bottom: 0;
  font-size: 1.1em;
}

.alm-compliance-matters {
  padding-top: 5%;
  padding-bottom: 5%;
  color: #000;
  letter-spacing: 0.4px;
  background: url(../img/aml/alm-compliance-matters.png)top right no-repeat;
  background-size: contain;
  border-top: 2px solid #263a4e;

}

.alm-compliance-matters h2 {
  margin-bottom: 3%;
}

.apart {
  color: #c4802e;
  margin: 5% 0;
  font-size: 2em;
  text-align: center;
}

.uae-aml .g-application-process-nu {
  background: transparent !important;
}

.uae-aml b {
  color: #fff;
}

.across-globe hr {
  height: 1px;
  width: 100%;
  background-color: #c4802e;
  border: none;
}

.comprehensive-aml-Services-box {
  background-color: #17182a;
  padding: 30px;
  border-radius: 10px;
  height: 430px;
  margin-bottom: 7%;
  box-shadow: 5px 5px 0 #ccc;
}

.comprehensive-aml-Services-box h5 {
  font-size: 1.2em;
  letter-spacing: 0.5px;
  text-align: center;
  color: #c4802e;
  margin-bottom: 3%;
  line-height: 27px;
}

.comprehensive-aml-Services-box p {
  font-size: 1em;
  line-height: 27px;
  letter-spacing: 0.5px;
  color: #ccc3c3;
}

.comprehensive-aml-Services-box2 {
  background-color: #c4802e;
  padding: 30px;
  border-radius: 10px;
  height: 370px;

  box-shadow: 5px 5px 0 #ccc;
}

.comprehensive-aml-Services-box2 h5 {
  font-size: 1.2em;
  letter-spacing: 0.5px;
  text-align: center;
  color: #17182a;
  margin-bottom: 3%;
  line-height: 25px;
}

.comprehensive-aml-Services-box2 p {
  font-size: 1em;
  line-height: 27px;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 500;
}

.c-aml-box-icon2 {
  width: 60px;
  height: 60px;
  margin: 0 auto 3%;
  background-color: #17182a;
  border-radius: 100px;
  display: flex;
  align-items: center;

}

.c-aml-box-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 3%;
  background-color: #c4802e;
  border-radius: 100px;
  display: flex;
  align-items: center;

}

.c-aml-box-icon img,
.c-aml-box-icon2 img {
  width: 60%;
}

.step-towards-compliance {

  padding-top: 5%;
  padding-bottom: 5%;
  color: #f1f1f1;
  background: #272a2f url(../img/aml/step-towards-compliance.png)top right no-repeat;
  background-size: cover;

}

.step-towards-compliance h2 {
  color: #fff;
  margin-bottom: 2%;
  color: #c4802e;
  font-size: 2.5em;
}

.step-towards-compliance p {
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 5%;
  line-height: 30px;

}

.step-towards-compliance-btn {
  background-color: #fff;
  color: #000;
  width: 220px;
  padding: 13px 12px;
  font-size: 1.6em;
  text-align: center;
  border-radius: 50px;
  margin: 7% 0 9%;
  letter-spacing: 0.5px;
}

.step-towards-compliance-btn a {
  color: #000;
}

.step-towards-compliance-number h5 {
  font-size: 1.7em;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2%;
  letter-spacing: 0.5px;
}

.step-towards-compliance-number i {
  color: #fff;
  width: 50px;
  height: 50px;
  background-color: #c4802e;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
}

.step-towards-compliance h6 {
  font-size: 1.5em;
  color: #fff;
  line-height: 35px;
  font-weight: 500;
  margin-top: 2%;
}

.step-towards-compliance h6,
.step-towards-compliance b {
  color: #fff;
  letter-spacing: 0.5px;
}

/**End AML Page**/

/**Start VARA Consulting**/
.vara-banner {
  background: url(../img/vara/vara.webp?v=2.0 )top left no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 7%;
  position: relative;
}

.vara-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.6em;
  line-height: 55px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 2%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;
}

.vara-banner h1 span {
  color: #e8b883
}

.vara-banner h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  font-weight: 500;
  margin-bottom: 5%;
}

.vara-banner p {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  margin-top: 3%;
  letter-spacing: 0.5px;
  margin-bottom: 2%;
  line-height: 31px;
  margin-top: 5%;
  font-weight: 400;
}

.vara-heaven-innovators {
  padding-top: 5%;
  padding-bottom: 7%;
  position: relative;
}

.vara-heaven-innovators h3 {
  text-align: center;
  font-family: 'Montserrat', sans-serif !important;
  color: #cea06c;
  font-size: 1.5em;
  line-height: 40px;
  letter-spacing: 0.6px;
  font-weight: 600;

}

.vara-heaven-innovators h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 45px;
  letter-spacing: 0.7px;
  font-weight: 500;
  text-align: center;
  margin-top: 10%;

}

.vara-heaven-innovators hr {
  background-color: #fff;
  margin-top: 5%;

}

.vara-arrow {
  width: 130px;
  height: 70px;
  background: #C33764;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #1D2671, #C33764);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #1D2671, #C33764);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  position: absolute;
  font-size: 2.8em;
  color: #fff;
  top: 51.1%;
  left: 44.2%;
  border-radius: 0 0 70px 70px;
  text-align: center;
  line-height: 63px;
}

.vara-will-help {

  padding-bottom: 5%;
  padding-top: 5%;
  background-color: #26262b
}

.vara-will-help h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-align: center;

}

.vara-will-help-box {

  width: 250px;
  height: 180px;
  border-radius: 30px;
  background: #26262b;
  box-shadow: 22px 22px 44px #1d1d21, -22px -22px 44px #2f2f35;
  padding: 20px;
  margin: 2% 1% 10%;
  display: inline-block;
  text-align: center;
  display: grid;


}

.vara-will-help-box-img {
  background: rgb(36, 39, 112);
  background: linear-gradient(132deg, rgba(36, 39, 112, 1) 0%, rgba(188, 54, 101, 1) 100%);
  width: 70px;
  height: 70px;
  border-radius: 100px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  margin-bottom: 5%;
}

.vara-will-help-box-img img {
  width: 50%;
}

.vara-will-help-box h5 {
  color: #fff;
  font-size: 1.1em;

  letter-spacing: 0.7px;
  line-height: 25px;
  text-align: center;
  font-weight: 500;
  font-family: "Montserrat", sans-serif !important;
}

.vara-will-help h3 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  margin-top: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-align: center;
  line-height: 50px;

}

.vara-will-help h3 span {
  color: #cea06c
}


.vara-why-choose-us {
  background: url(../img/vara/why-choose.webp?v=2.0)top right no-repeat;
  padding-bottom: 5%;
  padding-top: 5%;
  background-size: cover;

}

.vara-why-choose-us h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  margin-bottom: 3%;
  letter-spacing: 0.7px;
  font-weight: 800;


}

.vara-why-choose-us p {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  line-height: 40px;
}

.vara-why-choose-us button {
  width: 200px;
  height: 50px;
  background: #cea06c;
  color: #fff;
  border-radius: 100px;
  border: none;
  margin-top: 3%;
  font-size: 1.1em;
  font-weight: 700;
  box-shadow: -3px 3px 0 #dbcbb8
}

.vara-why-choose-us button:hover {
  box-shadow: none;
  transition: all 0.3s linear;
  background-color: #fff;
  color: #000;

}

.vara-authorization {
  padding-top: 5%;
}

.vara-authorization::after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: rgb(36, 39, 112);
  background: linear-gradient(132deg, rgba(36, 39, 112, 1) 0%, rgba(188, 54, 101, 1) 100%);
}

.vara-authorization h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-align: center;
  line-height: 50px;


}

.vara-authorization-icon {
  display: flex;
}

.vara-authorization-icon2 {
  width: 100%;
  height: 100%;
  flex: 0 0 92px;

}


.vara-authorization-icon p {
  color: #fff;
  font-size: 1.2em;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-bottom: 5%;


}

.vara-authorization .vara-authorization-icon:last-child {
  margin-bottom: 7%;
}

.vara-authorization2 {
  margin-top: 3%;
}

.vara-authorization2 p {

  font-size: 1.2em;
  letter-spacing: 0.5px;
  line-height: 30px;
  color: #fff;
}

.vara-why-choose-us2 {

  padding-bottom: 9%;
  padding-top: 5%;

}

.vara-why-choose-us2 h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  margin-bottom: 5%;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-align: center;

}

.vara-why-choose-us2-box {
  background: url(../img/vara/why-choose2.webp?v=2.0)top center no-repeat;
  background-size: cover;
  padding: 50px 50px 90px;
  border-radius: 50px;
}

.vara-why-choose-us2-box p {

  font-size: 1.2em;
  letter-spacing: 0.5px;
  line-height: 36px;
  color: #fff;
  text-align: center;
}

.vara-required {

  padding-bottom: 5%;
  padding-top: 5%;

}

.vara-required h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  margin-bottom: 8%;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-align: center;
  line-height: 50px;

}

.vara-required-box {
  display: flex;
  margin-bottom: 5%;
  background: rgb(73, 73, 73);
  background: linear-gradient(90deg, rgba(73, 73, 73, 1) 0%, rgba(0, 0, 0, 1) 100%);
  padding: 20px;
  border-radius: 100px 0 0 100px;
}

.vara-required-box h5 {
  color: #f1f1f1;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.2em;

  letter-spacing: 0.5px;
  line-height: 30px;
  font-weight: 500;
  padding-left: 4%;

}

.vara-required-box::before {
  content: "";
  display: block;
  background: url(../img/vara/arrow-right.png)center left no-repeat;
  width: 50px;
  height: 50px;
  background-size: 100%;
  flex: 0 0 45px;
}

.residents-conducting {
  background: #40296f url(../img/vara/residents-conducting-bg2.webp?v=2.1)top center no-repeat;
  padding-top: 30%;
  padding-bottom: 5%;
  background-size: cover;
}

.residents-conducting p {
  color: #f1f1f1;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.2em;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-weight: 500;
  padding-left: 4%;

}

.residents-conducting h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3em;

  letter-spacing: 0.5px;
  line-height: 55px;
  font-weight: 800;
  padding-left: 4%;
  text-align: center;

}

.residents-conducting hr {
  background-color: #fff;
  margin: 3% 0;
}

.vara-faq {

  padding-top: 6%;
  padding-bottom: 5%;

}


.vara-faq h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3em;

  letter-spacing: 0.5px;
  line-height: 55px;
  font-weight: 800;

  text-align: center;

}

.vara-faq .accordion a {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 1.03em;

}

.vara-faq {
  margin: 50px 0;
}

#faq {
  margin-top: 5%;
}

.vara-faq #faq .card {
  margin-bottom: 7px;
  border: 0;
  border-radius: 6px;
}

.vara-faq #faq .card .card-header {
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 0;
}

.vara-faq #faq .card .card-header .btn-header-link {

  display: block;
  text-align: left;
  background: #26262b;
  color: #fff;
}

.vara-faq #faq .card .card-header .btn-header-link:after {
  content: "\f106";
  font-family: FontAwesome;
  font-weight: 900;
  float: right;
}

.btn #faq .card .card-header .btn-header-link.collapsed {
  background: #fff;
  color: #000;
}

.vara-faq #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f107";
}

.vara-faq #faq .card .collapsing {
  background: #F9F9F9;
  line-height: 30px;
}

.vara-faq #faq .card .collapse {
  border: 0;
}

.vara-faq #faq .card .collapse.show {
  background: #F9F9F9;
  line-height: 30px;
  color: #222;
}

.vara-faq .btn {
  padding: 0 7px;
}

.vara-faq ul li {
  list-style: disc;
}

.vara-faq ul {
  margin-left: 5%;
}

.vara-faq ol {
  list-style: upper-alpha;
  margin-left: 5%;
}

.vara-licensed {

  padding-top: 6%;
  padding-bottom: 5%;

}


.vara-licensed h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;

  letter-spacing: 0.5px;
  line-height: 55px;
  font-weight: 800;
  margin-bottom: 5%;

  text-align: center;

}

.vara-licensed-box h5 {
  color: #cea06c;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.5em;
  margin-bottom: 4%;


}

.vara-licensed-box {
  background-color: #0d0d0d;
  padding: 40px;
  position: relative;
  margin-bottom: 3%;

}

.vara-licensed-box-h {
  height: 480px;
  margin-bottom: 6%;

}

.vara-licensed-box p {

  font-size: 1.1em;
  letter-spacing: 0.5px;
  line-height: 30px;
  color: #fff;
}

.vara-licensed-box ul {
  font-size: 1.1em;
  color: #fff;
  margin-left: 5%;
  letter-spacing: 0.5px;
}

.vara-licensed-box li {
  list-style: lower-alpha;
  margin-bottom: 2%;
}

.vara-licensed-box-no {
  position: absolute;
  background-color: #cea06c;
  color: #000;
  width: 50px;
  height: 65px;
  top: 0;
  right: 0;
  border-radius: 0 0 0 50px;
  text-align: center;
  line-height: 50px;
  font-size: 2em;
  font-weight: 800;
}

.proprietary-trading {}

.proprietary-trading h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;

  letter-spacing: 0.5px;
  line-height: 55px;
  font-weight: 800;
  margin-bottom: 5%;


}

.proprietary-trading p {

  font-size: 1.1em;
  letter-spacing: 0.5px;
  line-height: 30px;
  color: #fff;
}

.proprietary-trading img {
  margin-bottom: 20%;
  filter: drop-shadow(5px 5px 0px #cea06c);
}

/**End VARA Consulting**/

/**Start DIFC Financial License**/
.difc-banner {
  background: url(../img/difc/dubai_international_financial_centre.jpg )top right no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 7%;
  position: relative;
}

.difc-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 4em;
  line-height: 70px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 2%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;
}

.difc-banner h1 span {
  color: #e8b883
}

.difc-banner h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  font-weight: 500;
  margin-bottom: 5%;
}

.difc-banner p {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  margin-top: 3%;
  letter-spacing: 0.5px;
  margin-bottom: 2%;
  line-height: 31px;
  margin-top: 5%;
  font-weight: 400;
}

.licensing-categories {
  padding-top: 3%;
  padding-bottom: 20%;
  background: url(../img/difc/licensing-categories.png)top center no-repeat;
  background-size: cover;
}

.licensing-categories h2 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 50px;
  text-align: center;
  color: #000;
  padding-top: 10%;
}

.licensing-categories span {
  color: #a78636;
}

.licenses-offered {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #f7f7f7;
}

.licenses-offered h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  text-align: center;
  margin-bottom: 1%;

}

.licenses-offered p {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  text-align: center;
  line-height: 25px;
  margin-bottom: 5%;
}

.licenses-offered-box {
  background-color: #fff;
  padding: 28px;
  box-shadow: 0 15px 20px 0 rgb(0 10 70/10%);
  border-radius: 7px;
  margin-bottom: 10%;
  height: 300px;
  cursor: pointer;

}

.licenses-offered-box img {
  width: 18%;
  margin-bottom: 10%;
}

.licenses-offered-box:hover {
  box-shadow: none;
  transition: all 0.3s linear;
}

.licenses-offered-box h5 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.2em;
  margin-bottom: 5%;
  font-weight: 7 00;
}

.licenses-offered-box p {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  text-align: left;
  line-height: 25px;
}

.authorities-difc {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/difc/authorities-difc-bg.png)bottom left no-repeat;
  background-size: cover;


}

.authorities-difc h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  margin-bottom: 1%;

}

.authorities-difc ul {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  color: #000;
  font-weight: 600;
  margin: 4% 0;
}

.authorities-difc li {
  line-height: 40px;
  color: #a78636;
  background: url(../img/difc/arrow-right.png)left center no-repeat;
  padding-left: 4.5%;
  background-size: 3.5%;

}

.authorities-difc p {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.05em;
  text-align: left;
  line-height: 25px;
}

.difc-accordion {
  padding-top: 5%;
  padding-bottom: 5%;
}

.difc-accordion h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  margin-bottom: 1%;
  text-align: center;

}

.difc-accordion h3 {
  color: #a78636;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.4em;
  line-height: 30px;
  letter-spacing: 0.7px;
  margin-top: 5%;


}

.difc-accordion .card-body h5 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  margin-bottom: 2%;
}

.difc-accordion .card-body p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;

}

.difc-accordion .accordion a {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 1.03em;

}

.difc-accordion .btn {
  padding: 0 30px;
}



#faq {
  margin-top: 5%;
}

.difc-accordion #faq .card {
  margin-bottom: 7px;
  border: 0;
  border-radius: 6px;
}

.difc-accordion #faq .card .card-header {
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 0;
}

.difc-accordion #faq .card .card-header .btn-header-link {

  display: block;
  text-align: left;
  background: #26262b;
  color: #fff;
  border-radius: 100px;
}

.difc-accordion #faq .card .card-header .btn-header-link:after {
  content: "\f106";
  font-family: FontAwesome;
  font-weight: 900;
  float: right;
}

.btn #faq .card .card-header .btn-header-link.collapsed {
  background: #fff;
  color: #000;
}

.difc-accordion #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f107";
}

.difc-accordion #faq .card .collapsing {
  background: #F9F9F9;
  line-height: 30px;
}

.difc-accordion #faq .card .collapse {
  border: 0;
}

.difc-accordion #faq .card .collapse.show {
  background: #FFF;
  line-height: 25px;
  color: #222;

}

.difc-office {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/difc/difc-office.jpg)top right no-repeat;
  background-size: cover;
}

.difc-office h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  line-height: 40px;
  letter-spacing: 0.7px;
  margin-bottom: 5%;
  text-align: left;

}

.difc-office p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  color: #fff;
  letter-spacing: 0.5px;

}

.difc-office h6 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  color: #fff;
  font-weight: 600;
  line-height: 25px;

}

.difc-office h3 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.5em;
  color: #fff;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 5%;
  margin-top: 5%;
  color: #cea06c;


}

.difc-office hr {
  background-color: #fff;
  letter-spacing: 0.5px;
}



.difc-why-choose {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/difc/difc-why-choose-bg.png)bottom left no-repeat;
  background-size: contain;


}

.difc-why-choose h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  margin-bottom: 1%;
  text-align: center;

}

.difc-why-choose p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  color: #000;
  letter-spacing: 0.5px;
  text-align: center;

}

.difc-why-choose hr {
  margin: 3% 0;
}

.difc-why-choose-box {
  background-color: #fdfaf2;
  padding: 30px 28px;
  border: 1px solid #d9cdaf;
  margin-top: 30px;
  border-radius: 10px;
  height: 400px;
}



.difc-why-choose-box:hover {
  background-color: #fff;
  transition: all 03.s linear;
}

.difc-why-choose-box-icon {
  background-color: #a78636;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  line-height: 50px;
  margin-bottom: 5%;
}

.difc-why-choose-box h4 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;

  line-height: 40px;
  letter-spacing: 0.7px;
  margin-bottom: 1%;
  text-align: center;

}

.difc-why-choose-box p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1em;
  color: #000;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-align: center;

}

.crowdfunding-retail-l {
  padding-top: 0%;
  padding-bottom: 3%;

}

.crowdfunding-retail-l h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.7em;
  line-height: 40px;
  letter-spacing: 0.7px;
  margin-bottom: 1%;
  text-align: left;

}

.crowdfunding-retail-l p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1em;
  color: #000;
  letter-spacing: 0.5px;

}

.why-choose-us-dfl .compliance-meets-flex-box-text h5 {
  color: #000;
  font-weight: 500;
  font-size: 1.2em;
}

.why-choose-us-dfl .compliance-meets-flex-box-icon {
  background: transparent;
  line-height: 0;
}

.why-choose-us-dfl-h3 {
  font-size: 1.3em;
  color: #cea06c;
  font-weight: 600;
  line-height: 30px;
}

.microfinance-license {
  padding-top: 5%;
  padding-bottom: 5%;
}

.microfinance-license h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  margin-bottom: 1%;
  text-align: center;

}

.microfinance-license p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.2em;
  color: #000;
  letter-spacing: 0.5px;
  text-align: center;

}

.microfinance-license2 {
  background: #f1f1f1 url(../img/difc/difc-why-choose-bg.png) right bottom no-repeat;
  background-size: auto;

  padding-bottom: 5%;
  padding-top: 5%;
}

.microfinance-license2 h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;

  margin-bottom: 1%;


}

.microfinance-license2 p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  color: #000;
  letter-spacing: 0.5px;


}

.microfinance-license2 h3 {
  font-size: 1.4em;
  margin-bottom: 1%;
}

.microfinance-license2 li {
  color: #000;
  font-size: 1.1em;
  margin-bottom: 2%;
  letter-spacing: 0.4px;
}

.microfinance-license2 li::before {
  content: "";
  display: inline-block;
  background: url(../img/difc/verify2.png)center left no-repeat;
  width: 20px;
  height: 20px;
  background-size: 100%;
  margin-right: 1%;
}

.how-we-can-helpdifl .difc-why-choose-box h4 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  line-height: 24px;
  letter-spacing: 0.7px;
  margin-bottom: 1%;
  text-align: center;
  font-weight: 400;
  font-size: 1.1em;
}

.how-we-can-helpdifl .difc-why-choose-box {
  background-color: #fdfaf2;
  padding: 30px 28px;
  border: 1px solid #d9cdaf;
  margin-top: 30px;
  border-radius: 10px;
  height: 240px;
}

.chat-lawyer a {
  background: rgb(11, 12, 33);
  background: linear-gradient(137deg, rgba(11, 12, 33, 1) 0%, rgba(27, 30, 90, 1) 100%);
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  margin-top: 5%;
  font-size: 1.3em;
  letter-spacing: 0.5px;
  box-shadow: 3px 3px 0 #000;
  color: #fff !important;
  display: inline-block;

}

.chat-lawyer a:hover {
  background: #a78636;
  transition: all 0.2s linear;
  box-shadow: 2px 2px 0 #000;
}

.chat-lawyer i {
  font-size: 1.2em;

}

/**End DIFC Financial License**/

/** start ADGM Financial License**/
.adgm-banner {
  background: url(../img/adgm/adgm-banner.jpg )top left no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 7%;
  position: relative;
}

.adgm-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 4em;
  line-height: 70px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 2%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;
}

.adgm-banner h1 span {
  color: #e8b883
}

.adgm-banner h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  font-weight: 500;
  margin-bottom: 5%;
}

.about-adgm {
  padding-top: 10%;
  padding-bottom: 15%;
  background: url(../img/adgm/adgm-about.png)top right no-repeat;
  background-size: contain;
}

.about-adgm h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  font-weight: 500;
  margin-bottom: 3%;
  font-weight: 800;
}

.about-adgm p {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;

  line-height: 25px;
  margin-bottom: 5%;
}

.adgm-features {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #f7f7f7;
}

.adgm-features h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  text-align: center;
  margin-bottom: 5%;

}


.adgm-features-box {

  padding: 28px;
  box-shadow: 0 15px 20px 0 rgb(0 10 70/10%);
  border-radius: 7px;
  margin-bottom: 5%;
  height: 320px;
  cursor: pointer;
  border-bottom: 5px solid #a78636;
  text-align: center;
  background: #fff url(../img/adgm/finance4-home-column-bg3.png)top center no-repeat;

}

.adgm-features-box img {
  width: 10%;
  margin-bottom: 6%;
}

.adgm-features-box:hover {
  box-shadow: none;
  transition: all 0.3s linear;
}

.adgm-features-box h5 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.2em;
  margin-bottom: 5%;
  font-weight: 700;
}

.adgm-features-box p {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  text-align: center;
  line-height: 25px;
}

.adgm-free-zone {
  padding-top: 5%;
  padding-bottom: 7%;
  background-color: #fff;
}



.adgm-free-zone2 img {
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0% 0%, 100% 0%, 90% 0%, 210% 100%, 10% 100%, 0% 90%);
}

.adgm-free-zone2::before {
  content: "";
  width: 90%;
  height: 90%;
  position: absolute;
  top: -13px;
  right: 3px;
  background-color: #333339;
  z-index: 0;
  clip-path: polygon(0% 0%, 100% 0%, 90% 0%, 210% 100%, 10% 100%, 0% 90%);
}

.adgm-free-zone h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;

  margin-bottom: 10%;

}



.adgm-free-zone-box {
  display: flex;
  margin-bottom: 5%;
  border-bottom: 1px dashed #000;
  padding-bottom: 4%;
  align-items: center;
}

.adgm-free-zone-box h3 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500;
  line-height: 30px;
  font-size: 1.4em;
  letter-spacing: 0.7px;


}

.adgm-free-zone-box-img {
  background-color: #ed1b23;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  text-align: center;
  line-height: 60px;
  margin-right: 3%;
  flex: 0 0 60px;
}

.adgm-free-zone h4 {
  line-height: 40px;
  font-size: 1.9em;

}

.adgm-free-zone h4::after {
  content: "";
  display: block;
  background: url(../img/adgm/comma.png)top right no-repeat;
  background-size: 80%;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 405px;
  top: 595px;
}

.adgm-financial {
  padding-top: 5%;
  padding-bottom: 5%;

  background: #f1f1f1 url(../img/dubai-crypto-license/virtual-asset-bg.jpg)top center no-repeat;
  background-size: cover;
}

.adgm-financial h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  text-align: center;
  margin-bottom: 2%;

}

.adgm-financial p {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  text-align: center;
  line-height: 25px;
}

.adgm-financial img {
  border-radius: 20px;
  box-shadow: 0px 0px 25px 0 #00000021;
  margin-top: 3%;
}

.adgm-procedure {
  padding-top: 5%;
  padding-bottom: 5%;

  background: #000
}

.adgm-procedure h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  text-align: center;
  margin-bottom: 5%;

}

.adgm-procedure h3 {
  color: #cea06c;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.5em;
  line-height: 35px;
  letter-spacing: 0.7px;
  text-align: center;
  margin-top: 5%;

}

/** end ADGM Financial License**/

/*Exploring Digital Assets: Stablecoins
start*/


.stablecoins-banner {
  background: url(../img/stablecoins/stable-coin-banner.jpg?v=2.0 )center left no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 18%;
  position: relative;
}

.stablecoins-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3.5em;
  line-height: 70px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 3%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;
  text-transform: uppercase;
}

.stablecoins-banner span {
  background: #fc00ff;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #00dbde, #fc00ff);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #00dbde, #fc00ff);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  font-size: 1.4em;
}

.stablecoins-banner h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.5em;
  line-height: 35px;
  letter-spacing: 0.7px;
  font-weight: 500;
  margin-bottom: 5%;
}

.our-expert {
  position: absolute;
  padding-top: 3%;
  padding-bottom: 3%;
  background: #fff url(../img/metaverse/metaverse-consultants.png)top right no-repeat;
  top: -120px;
  z-index: 2;
  border-radius: 50px;
  width: 1150px;
  box-shadow: 0 0 50px #0000004f
}

.our-expert h4 {
  font-family: "Montserrat", sans-serif !important;
  color: #001149;
  line-height: 45px;
  font-size: 1em;
}

.what-stablecoins {
  padding-top: 250px;
  padding-bottom: 5%;

  background: url(../img/stablecoins/what-stablecoins2.png)top center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.what-stablecoins2 {
  background: url(../img/stablecoins/what-stablecoins.png?v=2.0)-200px 50px no-repeat;
  background-size: cover;
  height: 550px;
  position: absolute;
  right: 100px;
  top: 40px;
  z-index: -1;

}

.what-stablecoins h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 3%;

}

.what-stablecoins p {
  color: #000;
  line-height: 30px;
  letter-spacing: 0.5px;
  font-size: 1.2em;
}

.stablecoins-function {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/stablecoins/stablecoins-function.png )bottom right no-repeat;
  background-size: cover;

}

.stablecoins-function h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  margin-bottom: 1%;
}

.stablecoins-function p {
  color: #001149;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: justify;
}

.detail-required {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/stablecoins/detail-required.jpg)center center no-repeat;
  background-size: cover;
}

.detail-required h3 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0.5px;
}



.detail-required-icon {
  text-align: center;
  font-size: 4em;
  color: #fff;
  margin-bottom: 2.5%;
}

.detail-required span {
  background-color: #fff;
  color: #000;
}

.detail-required h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  margin-bottom: 2%;
  letter-spacing: 0.5px;
}

.detail-required p {
  text-align: center;
  font-size: 1.2em;
}

.detail-required p span {
  color: #fff;

  background-color: #00000061;
  line-height: 30px;
}

.detail-required hr {
  background-color: #fff;
  margin: 5% 0;
}

.features-of-stablecoin {
  padding-top: 5%;
  padding-bottom: 5%;
  color: #000;
}

.features-of-stablecoin h2 {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  color: #000;
  margin-bottom: 2%;
}

.features-of-stablecoin-box {
  border: 1px solid #ccc;
  padding: 20px;
  height: 450px;
  margin-bottom: 13%;
  background: url(../img/stablecoins/features-of-stablecoin-box.jpg)top center no-repeat;
  border-radius: 20px;
  box-shadow: 0 0 20px #00000014
}

.features-of-stablecoin-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #001149;
  border-radius: 100px;
  border-radius: 100px;
  margin: 0 auto 7%;
  text-align: center;
  color: #fff;
}

.features-of-stablecoin h5 {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  font-size: 1.2em;
  color: #001149;
  margin-bottom: 7%;
  line-height: 20px;
}

.features-of-stablecoin p {
  text-align: center;
  letter-spacing: 0.5px;
}

.vara-stablecoin {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #f1f1f1;
  background: url(../img/stablecoins/key-features-sat.jpg)top center no-repeat;
  background-size: cover;
}

.vara-stablecoin h2 {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  color: #000;
  margin-bottom: 2%;
  line-height: 40px;
}

.vara-stablecoin p {
  text-align: center;
  font-size: 1.2em;
  color: #000;
}

.key-features-sat button {
  width: auto;
  text-align: left;
  font-weight: 600;
  font-size: 1.3em;
  height: 60px;
  color: #fff;

  background: url(../img/stablecoins/detail-required.jpg)top center no-repeat;
  margin-bottom: 1%;
  border-left: 5px solid #c79b63;
  border-bottom: none;
  border-top: none;
  border-right: none;
}

.key-features-sat .tab-content {

  padding: 40px;
  height: 380px;
  background: #fff;
  box-shadow: 0 0 10px #00000024
}



.key-features-sat .tab-content img {
  width: 45%;
  margin-bottom: 3%;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.397);


}

.key-features-sat .tab-content p {
  font-size: 1.1em;
  font-weight: 500;

  color: #000;
  text-align: left;
  letter-spacing: 0.5px;
  line-height: 30px;

}

.key-features-sat .tab-content li {
  margin-bottom: 2%;
  color: #000;
  letter-spacing: 0.5px;
}

.key-features-sat .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: rgb(206, 162, 104);


}

.key-features-sat .nav-pills {
  position: relative;
}

.key-features-sat .nav-link:focus,
.key-features-sat .nav-link:hover {
  background: rgb(206, 162, 104);
  color: #fff;
  transition: all 0.4s linear;
}

.key-features-sat button:hover::after {
  content: "\f0da";
  font-family: FontAwesome;
  /* margin: 0px 0px 0px 10px; */
  text-decoration: none;
  position: absolute;
  color: rgb(206, 162, 104);
  font-size: 5em;
  right: -28px;
  margin-top: 0px;
}

.key-features-sat .nav-pills .nav-link.active::after {
  content: "\f0da";
  font-family: FontAwesome;
  /* margin: 0px 0px 0px 10px; */
  text-decoration: none;
  position: absolute;
  color: rgb(206, 162, 104);
  font-size: 5em;
  right: -28px;
  margin-top: 0px;
}

.finjuris-assist-businesses {
  padding-top: 5%;
  padding-bottom: 5%;
}

.finjuris-assist-businesses h2 {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  color: #fff;
  margin-bottom: 5%;
  line-height: 40px;
}

.finjuris-assist-businesses {
  background: url(../img/stablecoins/finjuris-assist-businesses.jpg)top left no-repeat;
  background-size: cover;
}

.finjuris-assist-businesses-box {
  display: flex;
  margin-bottom: 3%;
  padding: 0 5% 0 0;
}

.finjuris-assist-businesses-box-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(-90deg, rgba(206, 162, 104, 1) 0%, rgba(160, 116, 73, 1) 100%);
  flex: 0 0 60px;
  color: #fff;
  margin-right: 5%;
  border-radius: 10px;
  font-size: 2em;
  margin-top: 1%;
}



.finjuris-assist-businesses-box-text h5 {
  font-family: "Montserrat", sans-serif !important;
  color: rgb(206, 162, 104);
  font-size: 1.3em;
  margin-bottom: 2%;
  line-height: 30px;
  letter-spacing: 0.5px;

}

.finjuris-assist-businesses-box-text p {
  color: #fff;
  letter-spacing: 0.6px;
  font-size: 1.1em;
}

.stablecoin-faq {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/stablecoins/map.png)top right no-repeat;
  background-size: cover;
}

.stablecoin-faq h2 {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  color: #000;
  margin-bottom: 5%;

}

.stablecoin-faq .card-header {
  padding: 0rem 1.25rem;
}

.stablecoin-faq button {
  color: #000;
  height: auto;
  padding: 0 20px;
}

.stablecoin-faq .card-body {
  color: #fff;
  letter-spacing: 0.6px;
  line-height: 26px;
  background: #3e3a48;
}

#main {
  margin: 50px 0;
}

#main #faq .card {
  margin-bottom: 30px;
  border: 0;
}

#main #faq .card .card-header {
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 0;
}

#main #faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  background: rgb(42, 38, 50);
  background: linear-gradient(98deg, rgba(42, 38, 50, 1) 10%, rgba(62, 58, 72, 1) 77%);
  color: #fff;
  padding: 20px;
}

#main #faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
}

#main #faq .card .card-header .btn-header-link.collapsed {
  background: rgb(42, 38, 50);
  background: linear-gradient(98deg, rgba(42, 38, 50, 1) 0%, rgba(62, 58, 72, 1) 49%);
  color: #fff;
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
}

#main #faq .card .collapsing {
  background: #2e2939;
  line-height: 30px;
}

#main #faq .card .collapse {
  border: 0;
}

#main #faq .card .collapse.show {
  background: #2e2939;
  line-height: 30px;
  color: #222;
}

.stablecoin-faq #main #faq .card {
  margin-bottom: 10px;
  border: 0;
}

.stablecoin-faq #main #faq .card .card-header .btn-header-link {

  padding: 0px 30px;

}

.stablecoin-faq .btn {
  height: auto;
}

.need-to-know-more {
  background: #fff url(../img/stablecoins/coin.png)bottom center no-repeat;
  height: 350px;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 0 30px #00000054
}

.need-to-know-more h2 {
  color: #000;
  line-height: 40px;
}

.need-to-know-more i {
  width: 70px;
  height: 70px;
  background-color: #0000001c;
  margin: 0 auto 20px;
  text-align: center;
  border-radius: 100px;
  color: #fff;
  font-size: 1.8em;
  line-height: 70px;
  background: url(../img/stablecoins/stable-coin-banner.jpg)top center no-repeat;

}

/*Exploring Digital Assets: Stablecoins
end*/

/*Security Tokens start*/
.security-tokens-banner {
  background: url(../img/security-tokens/security-tokens-banner.jpg?v=2.1
)center left no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 8%;
  position: relative;
}

.security-tokens-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3.5em;
  line-height: 80px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 3%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;
  text-transform: uppercase;
}

.security-tokens-banner h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.2em;
  line-height: 29px;
  letter-spacing: 0.7px;
  font-weight: 500;
  margin-bottom: 6%;
}

.security-tokens-banner span {
  background: #fc00ff;
  /* fallback for old browsers */
  background: #fff;
  color: #000;
  text-shadow: none;
}

.security-tokens-banner .metaverse-bnr-connectus div::after {

  width: 314px;

}

.security-tokens-banner h5 {
  text-transform: uppercase;
  line-height: 35px;
  color: #f0a52a;
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 8%;

}

.security-tokens-banner h5::after {
  background: url(../img/security-tokens/citizenship.png) top right no-repeat;
  width: 200px;
  height: 50px;
  content: '';
  display: block;
  background-size: 100%;
  position: absolute;
  right: 25%;
  top: 35px;
}

.what-is-st {
  padding-top: 5%;
  padding-bottom: 20%;
}

.what-is-st h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 2%;
}

.what-is-st {
  text-align: center;

  background: #f1f1f1 url(../img/security-tokens/what-is-st.jpg) bottom center no-repeat;
}

.what-is-st p {
  color: #000;
  line-height: 30px;
  font-size: 1.2em;
  letter-spacing: 0.5px;
}

.what-is-st-icon {
  font-size: 3em;
  margin-bottom: 3%;
  color: #ff733a;
}

.st-utilized {
  padding-top: 5%;
  padding-bottom: 5%;
}

.st-utilized h2 {

  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 1.2%;
}

.st-utilized p {
  color: #000;
  line-height: 25px;
  font-size: 1em;
  letter-spacing: 0.5px;
}

.st-utilized h3 {

  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 5%;
  font-size: 1.6em;
  letter-spacing: 0.5px;
}

.benefits-of-st-text h5 {
  font-family: "Montserrat", sans-serif !important;
  color: #412f9d;
  font-size: 1.3em;
  margin-bottom: 2%;
  letter-spacing: 0.5px;

}

.benefits-of-st-box {
  display: flex;
  margin-bottom: 3%;
}

.benefits-of-st-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #ff00cc;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #333399, #ff00cc);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #333399, #ff00cc);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  flex: 0 0 70px;
  text-align: center;
  margin-right: 3%;
  font-size: 1.5em;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 0 10px #0000004f
}

.benefits-of-st-icon2 {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #ff00cc;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #333399, #ff00cc);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #333399, #ff00cc);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari  7+ */

  flex: 0 0 70px;
  text-align: center;
  margin-right: 3%;
  font-size: 2em;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 0 10px #0000004f
}

.st-utilized hr {
  margin: 3% 0;
}

.types-of-st {
  padding-top: 5%;
  padding-bottom: 7%;
  background: url(../img/security-tokens/types-of-st.jpg)top center no-repeat;
}

.types-of-st h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 5%;
}

.types-of-st-box {
  background-color: #fff;
  padding: 30px 40px;
  box-shadow: 0 30px 20px #0000004f;
  height: 700px;
}

.types-of-st-box p {
  color: #000;
  line-height: 24px;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-align: center;
  font-weight: 500;
}



.types-of-st-box h5 {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  font-size: 1.3em;
  margin-bottom: 6%;
  letter-spacing: 0.5px;
  text-align: center;

}

.types-of-st-box-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #253d58;

  text-align: center;

  font-size: 2em;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px #0000004f;
  margin: 0 auto 7%;
}

.features-of-st {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #f1f1f1;
}

.features-of-st h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 10%;
}

.features-of-st-left-box {
  display: flex;

  flex-direction: row-reverse;
  margin-bottom: 5%;
}

.features-of-st-left-text h5 {
  font-family: "Montserrat", sans-serif !important;
  color: #253d58;
  font-size: 1.3em;
  margin-bottom: 2%;
  letter-spacing: 0.5px;
  text-align: left;
}

.features-of-st-left-text p {
  color: #000;
  line-height: 23px;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-align: left;

}

.features-of-st-left-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #12c2e9;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  flex: 0 0 50px;
  text-align: center;
  margin-right: 3%;
  font-size: 1.6em;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 0 10px #0000004f;
}


.features-of-st-right-box {
  display: flex;
  margin-bottom: 5%;
}

.features-of-st-right-text h5 {
  font-family: "Montserrat", sans-serif !important;
  color: #253d58;
  font-size: 1.3em;
  margin-bottom: 2%;
  letter-spacing: 0.5px;
  text-align: left;
}

.features-of-st-right-text p {
  color: #000;
  line-height: 23px;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-align: left;

}

.features-of-st-right-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #12c2e9;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  flex: 0 0 50px;
  text-align: center;
  margin-right: 3%;
  font-size: 1.6em;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 0 10px #0000004f;
}

.features-of-st-img img {
  border-radius: 50px;
  padding: 10px;
  box-shadow: 0 0 30px #0000004f;
  background-color: #f1f1f1;
}

.st-3-text {
  padding-top: 5%;
  padding-bottom: 5%;
  background: #000 url(../img/security-tokens/st-3-text.jpg)bottom right no-repeat;
  background-size: cover;

}

.st-3-text-row {
  background: #ddd6f3;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #faaca8, #ddd6f3);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #faaca8, #ddd6f3);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  padding: 30px;
  margin-bottom: 3%;
  border-radius: 50px 50px 0 50px;
}

.st-3-text-row h5 {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.5px;

  line-height: 28px;


}

.techno-legal-firms {
  padding-top: 5%;
  padding-bottom: 7%;

}

.techno-legal-firms h2 {

  font-family: "Montserrat", sans-serif !important;
  color: #253d58;
  margin-bottom: 3%;
  font-size: 1.9em;
  line-height: 40px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4%;
}

.techno-legal-firms p {
  color: #000;
  font-size: 1.2em;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.our-services {
  padding-top: 5%;
  padding-bottom: 7%;
  background-color: #edf6ff;
  background: #edf6ff url(../img/security-tokens/metaverse-consultants.png)top right no-repeat;
  background-size: cover;

}

.our-services h2 {

  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 3%;
  font-size: 1.9em;
  line-height: 40px;
  letter-spacing: 0.3px;
  text-align: center;

}

.our-services-box {
  margin-bottom: 8%;
  border: 2px solid #9686ec;
  padding: 20px;
  height: 335px;
  border-radius: 10px;

}

.our-services-box h5 {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  font-size: 1.3em;
  margin-bottom: 4%;
  letter-spacing: 0.5px;
  text-align: left;
}

.our-services-box li {
  color: #000;
  font-size: 1.1em;
  margin-bottom: 1%;
  list-style: decimal;
  margin-left: 7%;
}

.our-services-box p {
  color: #000;
  font-size: 1.1em;
  letter-spacing: 0.5px;
}

.our-services-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 100px;
  margin-bottom: 7%;
  box-shadow: 0 2px 2px #000;
}

.our-services-bottom {
  margin-top: 10%;
}

.our-services-bottom h5 {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  font-size: 1.3em;
  margin-bottom: 4%;
  letter-spacing: 0.5px;
  text-align: left;
  line-height: 30px;
}

/*Security Tokens end*/

/*RAK DAO start*/


.rak-dao-banner {
  height: 903px;
  background: url(../img/digital-assets/digital-assets-banner.jpg)top left no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 6%;
}

.rak-dao-banner h1 {
  font-weight: 900;
  margin-bottom: 4%;
  line-height: 70px;
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  font-size: 4em;
}

.wel-finjuris-rak-dao .our-expert {
  box-shadow: 0 10px 20px #38e9ee87;
  background: url(../img/digital-assets/experience.jpg)center center no-repeat;
  background-size: cover !important;
  padding-left: 30px;
}

.rak-dao-banner h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  line-height: 45px;
  font-size: 2.2em;
  text-align: left;
  float: left;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.rak-dao-banner span {
  font-weight: 900 !important;
  background: linear-gradient(80deg, #EC6EAD, #3494E6);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.rak-dao-banner .metaverse-bnr-connectus {
  position: relative;
  z-index: 5;
  margin-top: 27%;
}

.rak-dao-banner .metaverse-bnr-connectus div::after {

  left: 30%;

}

.wel-finjuris-rak-dao .our-expert h4 {
  color: #4c0d75;
  font-size: 0.7em;
}

.leading-legal-advisory {
  background: #000 url(../img/digital-assets/leading-legal-advisory.png)bottom center no-repeat;
  padding-bottom: 15%;
  padding-top: 13%;

}

.leading-legal-advisory hr {
  background-color: #ffffff4a;
}

.leading-legal-advisory h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  line-height: 45px;
  font-size: 1.5em;
  text-align: center;
}

.leading-legal-advisory img {
  margin-bottom: 5%;
  -webkit-filter: drop-shadow(0px 0px 15px #38e9ee87);
  filter: drop-shadow(0px 0px 15px #38e9ee87);
}

.licenses-rak {
  padding-top: 5%;
  padding-bottom: 7%;
  background-color: #edf6ff;
  background: #edf6ff url(../img/security-tokens/metaverse-consultants.png)top right no-repeat;
  background-size: cover;

}

.licenses-rak h2 {

  font-family: "Montserrat", sans-serif !important;
  color: #000;

  font-size: 1.9em;
  line-height: 40px;
  letter-spacing: 0.3px;
  text-align: center;

}

.licenses-rak p {
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
}

.licenses-rak img {
  margin-top: 5%;
}

.Key-features-opportunities {
  background: #171442 url(../img/digital-assets/Key-features-opportunities.png)top left no-repeat;
  background-size: cover;

}

.Key-features-opportunities h2 {
  color: #fff;
}

.Key-features-opportunities .difc-why-choose-box {
  height: 350px;
  background-color: #fdfaf214;
  border: 1px solid #d9cdaf26;
  color: #fff !important;
}

.Key-features-opportunities .difc-why-choose-box p {
  color: #fff;
}

.Key-features-opportunities .difc-why-choose-box h4 {
  color: #00fdae;
  font-family: "Montserrat", sans-serif !important;
  line-height: 24px;
  letter-spacing: 0.7px;
  margin-bottom: 3%;
  text-align: center;
}

.Key-features-opportunities .difc-why-choose-box-icon {
  background: linear-gradient(300deg, rgba(167, 77, 173, 1) 35%, rgba(75, 90, 243, 1) 92%);
}

.elements-of-metaverse {
  background-color: #f1f1f1;
  position: relative;
  padding-top: 5%;
  padding-bottom: 5%;
}

.elements-of-metaverse h2 {

  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 5%;
  font-size: 3em;
  line-height: 40px;
  letter-spacing: 0.3px;
  text-align: center;

}

.elements-of-metaverse-box {
  position: relative;
  height: 525px;
  margin-bottom: 30px;
}

.elements-of-metaverse-text {
  position: absolute;
  top: 25%;
  margin: 30px;
  z-index: 1;
}

.elements-of-metaverse-text h5 {
  font-size: 1.4rem;
  background: linear-gradient(80deg, #EC6EAD, #3494E6);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 5%;
  border-bottom: 1px solid #EC6EAD;
  padding-bottom: 20px;
  font-family: "Montserrat", sans-serif !important;
}

.elements-of-metaverse-text p {
  color: #fff;
  font-size: 1.1em;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;

}

.elements-of-metaverse-box::after {
  content: "";
  display: block;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 5) 60%, rgba(252, 70, 107, 0) 100%);
  height: 525px;
  width: 100%;
  top: 0;
  position: absolute;
}

.rak-dao-why-choose {
  padding-top: 5%;
  padding-bottom: 7%;
  background: url(../img/digital-assets/rak-dao-why-choose.jpg)top center no-repeat;
  background-size: cover;
}

.rak-dao-why-choose h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  margin-bottom: 8%;
  font-size: 2em;
  letter-spacing: 0.3px;
  text-align: center;

}

.rak-dao-why-choose-box {
  display: flex;
  margin-bottom: 3%;
}

.rak-dao-why-choose img {
  margin-top: 15%;
}

.rak-dao-why-choose-icon {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  flex: 0 0 80px;
  margin-right: 5%;
  text-align: center;
  line-height: 88px;
  margin-top: 1%;
  background: linear-gradient(300deg, rgba(167, 77, 173, 1) 35%, rgba(75, 90, 243, 1) 92%);
}

.rak-dao-why-choose-icon i {
  color: #fff;
  font-size: 2em;
}

.rak-dao-why-choose-text h5 {
  color: #00fdae;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 3%;
  line-height: 30px;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.5px;
}

.rak-dao-why-choose-text p {
  line-height: 28px;
  letter-spacing: 0.5px;
  font-size: 1.1em;
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
}

.rak-contact-our-team {
  padding-top: 5%;
  padding-bottom: 7%;
  background-color: #000;

}

.rak-contact-our-team h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  margin-bottom: 8%;
  font-size: 2em;
  letter-spacing: 0.3px;
  text-align: center;

}

.rak-contact-our-team h4 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  margin-bottom: 5%;
  line-height: 30px;
  font-size: 1.5em;
  letter-spacing: 0.5px;
}

.rak-contact-our-team h3 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  line-height: 40px;
  font-size: 2em;
  letter-spacing: 0.5px;
  background: linear-gradient(80deg, #EC6EAD, #3494E6);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.rak-contact-our-team-btn {
  padding: 10px 20px;
  background: linear-gradient(80deg, #EC6EAD, #3494E6);
  width: 280px;
  margin: 0 auto;
  display: block;
  margin-top: 21%;
  border: none;
  border-radius: 100px;
  border: 3px solid #202d46;
  font-weight: 700;
  letter-spacing: 0.9px;
  box-shadow: 0 3px 0 #fff;
  font-size: 1.1em;
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  padding: 15px 0;
}

.rak-contact-our-team-btn:hover {
  background-color: #fcd24f;
  box-shadow: none;
  transition: box-shadow 0.3s linear;

}

/*RAK DAO end*/


/**start event Page**/
.event-banner {
  padding-top: 14%;
  padding-bottom: 6%;
  background: url(../img/event/event-banner.jpg)center center no-repeat;

  background-size: auto;
  background-size: cover;
}

.event-banner h1 {
  text-align: left;
  color: #fff;
  font-size: 4.5em;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 3%;
  line-height: 80px;
  font-family: "Montserrat", sans-serif;

}

.event-banner .real-estate-tokenization-connect-now {
  width: 250px;
  font-family: "Montserrat", sans-serif;
  height: 45px;
  text-align: center;
  background-color: #ebc676;
  color: #000;
  padding: 0 15px;
  line-height: 45px;
  font-size: 1em;
  float: right;
}

.event-banner p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 1.2em;
  line-height: 35px;
  font-weight: 500;
  margin-bottom: 7%;
  letter-spacing: 0.5px;
}

.program {
  margin-bottom: 6%;
  padding-top: 5%;
  padding-bottom: 2%;
}

.program-name-box {
  border: 1px solid #fff;
  position: relative;
  margin-bottom: 30%;


}

.program-name-box::after {
  content: "";
  display: block;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 20%, rgba(252, 176, 69, 0) 100%);
  top: 0;
  position: absolute;
  box-shadow: 0 0 20px #59b9e8;
  height: 541px;
  width: 100%;
}

.program-name-box h5 {
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.8em;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 70%;
  text-transform: uppercase;
  text-align: center;
  line-height: 35px;
  margin-bottom: 3%;
  padding: 0 5%;


}



.program-name-box p {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.program-name-box p:nth-child(2) {
  background-color: #bf385b;
  color: #fff;
  width: 219px;
  border-radius: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto 10px;
}

.program-btn {
  position: relative;
  z-index: 2;
  border: 0;
  width: 250px;
  height: 50px;
  background: #DA4453;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #89216B, #DA4453);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #89216B, #DA4453);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: #000;
  margin: 10% auto 0;
  display: block;
  color: #fff;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  text-transform: uppercase;
  border-radius: 2px;
}

.program-btn:hover {
  background: #fff;
  transition: all 0.3s linear;
  color: #000;
  border-radius: 30px;
}

/**End event Page**/

/**start inner event banner Page**/
.mbr-gallery {
  padding-top: 5%;
  padding-bottom: 5%;
}

.inner-event-banner {
  padding-top: 13%;
  padding-bottom: 0%;

}

.mbr-gallery .mbr-gallery-item {
  width: 33.0% !important;
}

.money-expo {
  background: url(../img/event/money-expo.jpg)top center no-repeat;
  background-size: cover;
}

.blockchain-life {
  background: url(../img/event/inner-banner-blockchain-life.jpg)top center no-repeat;
  background-size: cover;
}

.forex-traders-summit {
  background: url(../img/event/inner-banner-forex-traders-summit.jpg)top right no-repeat;
  background-size: cover;
}

.money-expo2024 {
  background: url(../img/event/money-expo-india-2024/inner-banner-money-expo-event2-2024.jpg)top center no-repeat;
  background-size: cover;
}

.ifx-expo-2025 {
  background: url(../img/event/ifx-expo-2025/ifx-expo-2025.jpg)top center no-repeat;
  background-size: cover;
}

.inner-event-banner h1 {
  color: #fff;
  font-size: 4em;
  font-weight: 800;
  letter-spacing: 0.8px;
  background: linear-gradient(80deg, #cca0bb, #712ed5);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat", sans-serif;
  line-height: 73px;

}


.inner-event-banner h5 {
  text-align: left;
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 3%;
  margin-bottom: 5%;
  font-family: "Montserrat", sans-serif;
  line-height: 35px;


}


.inner-event-banner h2 {
  text-align: left;
  color: #fff;
  font-size: 2.1em;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1%;
  font-family: "Montserrat", sans-serif;
  background: #DA4453;
  background: -webkit-linear-gradient(to right, #89216B, #DA4453);
  background: linear-gradient(to right, #89216B, #DA4453);
  padding: 2px 20px;

}

.inner-event-banner-date-time {
  display: flex;
}

.inner-event-banner-date-time div {
  margin-right: 2%;
  margin-top: 2%;
  background: #fff;
  color: #89216B;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;

}

.m-name {
  background-color: #000;
  padding: 10px 20px 10px 0;
  margin-top: 10%;
  clip-path: polygon(64px 1px, 100% 0%, 100.44% 97.25%, 1.78% 100.00%);
}

.m-name p {
  color: #DA4453;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: right;
  font-size: 1.5em;
  margin-bottom: 0;
  margin-top: 0%;
  letter-spacing: 0.5px;
}

.m-name p:nth-child(2) {
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-align: right;
  font-size: 0.9em;
  margin-bottom: 0;
  margin-top: 0;
  letter-spacing: 0.5px;
}

/**End inner event banner Page**/


/*start Cybercrime Lawyers in UAE*/

.cybercrime-lawyers-banner {

  background: url(../img/cyber-crime/cyber-crime-banner.jpg)bottom center no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 6%;
}

.cybercrime-lawyers-banner h1 {
  font-weight: 900;
  margin-bottom: 4%;
  line-height: 70px;
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  font-size: 4em;
  text-align: left;
}

.cybercrime-lawyers-banner p {
  font-weight: 500;
  margin-bottom: 4%;
  line-height: 35px;
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 1.5em;
}

.cybercrime-lawyers-banner .metaverse-bnr-connectus {
  position: relative;
  z-index: 2;
  margin-top: 6%;
}

.cybercrime-lawyers-banner .metaverse-bnr-connectus div::after {
  content: "";
  display: block;
  width: 314px;
  height: 50px;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 26%;
  z-index: 1;
  transform: skew(20deg);
}

.digitally-connected {
  padding-top: 4%;
  padding-bottom: 4%;
  background: #f0f0f0 url(../img/cyber-crime/digitally-connected.png)center right no-repeat;
}

.digitally-connected p {
  font-weight: 500;
  margin-bottom: 2%;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
  color: #2d2d2d;
  letter-spacing: 0.5px;
  font-size: 1.1em;
}

.what-is-cyberc {
  padding-top: 5%;
  padding-bottom: 15%;
  background: #221b19 url(../img/cyber-crime/what-is-cyberc.jpg)top center no-repeat;
}

.what-is-cyberc h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #e2b176;
  margin-bottom: 2%;
  font-size: 2.5em;
  letter-spacing: 0.3px;
  text-align: center;

}

.what-is-cyberc p {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  color: #fff;
  font-size: 1.3em;
  line-height: 35px;
  letter-spacing: 0.5px;
  margin-bottom: 5%;

}

.what-is-cyberc h3 {
  color: #46cfee;
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  border: 2px solid #ffffff57;
  padding: 30px 20px;
  letter-spacing: 0.5px;
  line-height: 35px;
  background-color: #0000005c;
}

.types-of-cybercrime {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/cyber-crime/types-of-cybercrime.png)top center repeat-y;
  background-size: 100%;

}

.types-of-cybercrime h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 2%;
  font-size: 2.5em;
  letter-spacing: 0.3px;
  text-align: center;

}

.types-of-cybercrime p {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  color: #000;
  font-size: 1.1em;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 4%
}

.types-of-cybercrime-warp {
  display: flex;
  border-top: 1px solid #bfb7b7;
  padding-top: 40px;
}

.types-of-cybercrime-icon {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  background-color: #254e9a;
  border-radius: 100px;
  margin-right: 20px;
  text-align: center;
  line-height: 80px;
}

.types-of-cybercrime-icon img {
  width: 50%;
}

.types-of-cybercrime-warp p {
  text-align: left;
  line-height: 28px;
  font-size: 1.05em;
  letter-spacing: 0.7px;
}

.types-of-cybercrime-warp h5 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #254e9a;
  letter-spacing: 0.5px;
}

.cyber-crime-we-help-you {
  padding: 0 0 0 5%;
  border-radius: 20px;
  background: linear-gradient(-90deg, rgb(10, 11, 13) 0%, rgb(11, 12, 14) 100%);
  margin-top: 5%;
  box-shadow: 0 0 20px 0 #00000080;


}

.cyber-crime-we-help-you img {
  width: 100%;
  border-radius: 0 20px 20px 0;
}

.cyber-crime-we-help-you h3 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  color: #fff;
  letter-spacing: 0.5px;
  padding-top: 4%;

}

.combat-cybercrime {
  padding-top: 4%;
  padding-bottom: 4%;

}

.combat-cybercrime h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  margin-bottom: 7%;
  font-size: 2.5em;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 50px;

}

.combat-cybercrime-box {
  display: flex;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 3%;
}

.combat-cybercrime-box-img {
  width: 300px;
  height: auto;
  flex: 0 0 300px;
  margin-right: 20px;


}

.combat-cybercrime-box h5 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #000;
  letter-spacing: 0.5px;
}

.combat-cybercrime-box p {
  text-align: left;
  line-height: 25px;
  font-size: 1.05em;
  letter-spacing: 0.7px;
  color: #000;
  font-weight: 400;
  font-family: "Montserrat", sans-serif !important;
}

.cyber-crime-professionals-assist {
  background-color: #20293a;
  padding-top: 5%;
  padding-bottom: 5%;
}


.cyber-crime-professionals-assist h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  margin-bottom: 1%;
  font-size: 2.5em;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 50px;

}

.cyber-crime-professionals-assist p {
  text-align: center;
  line-height: 25px;
  font-size: 1.05em;
  letter-spacing: 0.7px;
  color: #fff;
  font-weight: 400;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 5%;
}

.cyber-crime-professionals-assist-b {
  border: 1px solid #ffffff45;
  padding: 28px;
  height: 380px;
  margin-bottom: 9%;
  border-radius: 10px;

}

.cyber-crime-professionals-assist-b h5 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #e2b176;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 28px;
}

.cyber-crime-professionals-assist-icon {
  text-align: center;
  width: 15%;
  display: block;
  margin: 0 auto 15px;
}

.our-cybercrime-experts {
  background: url(../img/cyber-crime/our-cybercrime-experts.png)top left no-repeat;
  padding: 50px 0 50px 50px;
  background-size: cover;
}

.our-cybercrime-experts h5 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 0.7px;
  text-align: left;
  line-height: 33px;
  width: 50%;
  font-weight: 500;
}

/*end Cybercrime Lawyers in UAE*/

/* 404error */

.error404 {
  width: 100%;
  height: auto;
  float: left;
  background: #fff;
  margin-top: 5%;
  margin-bottom: 4%;
  padding-bottom: 125px;
  background: url(../img/error-bg.jpg)top center no-repeat;
  background-size: cover;
}

.error404 img {
  margin-top: 12%;
  margin-bottom: 4%;

}

.error404 h2 {
  font-size: 56px;
  font-family: montserrat, sans-serif !important;
  color: rgba(219, 29, 33, 1);
}

.error404 p {
  font-size: 16px;
  font-family: montserrat, sans-serif !important;
  color: #152e54;
  font-weight: 600;
  padding: 18px 0px 28px 0;
}

.error404 a {
  font-size: 14px;
  font-family: montserrat, sans-serif !important;
  color: #fff;
  background: rgb(219, 29, 33);
  background: linear-gradient(-90deg,
      rgba(219, 29, 33, 1) 0%,
      rgba(158, 25, 29, 1) 99%);
  padding: 15px 28px;
  border-radius: 26px;
  font-weight: 600;
}

.error404 a:hover {
  background: none;
  border: 1px solid #152e54;
  color: #152e54;
}

/* end 404error */

/*web 3.0 start*/


.web3-banner {
  background: url(../img/web/web-banner.jpg )top left no-repeat;
  background-size: cover;
  padding-top: 13%;
  padding-bottom: 7%;
  position: relative;
}

.web3-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.5em;
  line-height: 55px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 3%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;
  text-transform: uppercase;
}

.web3-banner h1 span {
  color: #e1afcc
}

.web3-banner h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.7em;
  line-height: 35px;
  letter-spacing: 0.7px;
  font-weight: 500;

  margin-bottom: 7%;
}

.web3-banner h4 {
  color: #8f51f1;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.8em;
  line-height: 40px;
  letter-spacing: 0.7px;
  font-weight: 800;
  background-color: #fff;
  width: auto;
  height: 60px;
  padding: 0 10px;
  border-radius: 100px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 5%;
  box-shadow: 3px 4px 0 0 #8f51f1
}

.web3-banner-bottom {
  background: rgb(143, 81, 241);
  background: linear-gradient(260deg, rgba(143, 81, 241, 1) 0%, rgba(225, 175, 204, 1) 100%);
  padding-top: 30px;
  padding-bottom: 30px;
}

.web3-banner-bottom h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.7em;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px #000;
}

.web-or {
  padding: 4%;
  padding-bottom: 4%;
  background: url(../img/web/web-or-bg.jpg)left center no-repeat;
  background-size: cover;



}

.web-or-elements {
  display: grid;
  justify-content: center;

  padding-bottom: 4%;
}

.web-or-elements h3 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  text-align: center;
  font-weight: 500;
  text-shadow: 1px 1px #0000002b;
  letter-spacing: 0.4px;
  text-align: center;


}

.web-or-elements span {
  font-weight: 800;
}

.or-circle {
  margin: 4% 0;
}

or-circle {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50px;
  background: #000;
  margin: 4% auto;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  color: #fff;
  font-weight: 800;
  text-shadow: 1px 1px #000;
  box-shadow: 1px 0px 10px 0 #1c0be170;
  position: relative;
}

or-circle::after {
  display: block;
  width: 300px;
  height: 3px;
  background: #8f51f1;
  content: "";
  position: absolute;
  top: 50%;
  z-index: -5;
}

or-circle::before {
  display: block;
  width: 300px;
  height: 3px;
  background: #8f51f1;
  content: "";
  position: absolute;
  top: 50%;
  z-index: -5;
  right: 0;
}

.fundamental-que {
  margin-top: 5%;
  padding: 10% 10% 0% 10%;
  background-color: #f1f1f1;
  border-radius: 35px;
  height: 304px;


}

.fundamental-que1 {
  background: url(../img/web/fundamental-bg.jpg)top center no-repeat;
  background-size: cover;
  padding: 5% 12% 6%;
  border-radius: 50px;
}

.fundamental-que1 h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 2%;

  text-align: center;





}

.fundamental-que h3 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.8em;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-top: 5%;
  line-height: 35px;
  text-align: center;



}


.or-bottom-text {
  margin-top: 5.5%;
  padding: 20px 30px;
  background: rgb(143, 81, 241);
  background: linear-gradient(260deg, rgba(143, 81, 241, 1) 0%, rgba(225, 175, 204, 1) 100%);
  border-radius: 30px;
  box-shadow: 1px 0px 10px 0 #1c0be170;

}

.or-bottom-text p {
  font-size: 2em;
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  line-height: 45px;
  font-weight: 400;
  text-shadow: 0 1px #000;
  letter-spacing: 0.5px;
}

.or-bottom-text span {
  font-weight: 800;
}

.fun-img {
  width: 95px;
  height: 95px;
  text-align: center;
  line-height: 95px;
  border-radius: 50px;
  background: rgb(143, 81, 241);
  background: linear-gradient(260deg, rgba(143, 81, 241, 1) 0%, rgba(225, 175, 204, 1) 100%);
  margin: 0 auto;
}

.fun-img img {
  width: 75%;
  padding-top: 13%;
}

.committing-mistake {
  background: rgb(27, 34, 56);
  background: radial-gradient(circle, rgba(27, 34, 56, 1) 0%, rgba(18, 22, 36, 1) 100%);
  padding-top: 5%;
  padding-bottom: 5%;
}

.committing-mistake h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 35px;
  letter-spacing: 0.7px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5%;

  text-transform: uppercase;
}

.committing-mistake h5 {
  color: #dbdbdf;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.7em;
  line-height: 35px;
  letter-spacing: 0.7px;
  font-weight: 500;
  text-align: center;
  padding: 0 5% 5% 0;
  border-bottom: 1px solid #ffffff3d
}

.committing-mistake-points {
  display: flex;
  margin-top: 4%;
  align-items: center;
}

.committing-mistake-points-img {
  margin-right: 1%;
}

.committing-mistake-points-img img {
  width: 80%;
}

.committing-mistake-points p {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  font-size: 1.2em;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}

.committing-mistake-points span,
.committing-mistake span {
  text-transform: uppercase;
}

.web-services {
  padding-top: 4%;
  padding-bottom: 4%;
  background: url(../img/dubai-crypto-license/virtual-asset-bg.jpg)top center no-repeat;
  background-size: cover;
}

.web-services h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 35px;
  letter-spacing: 0.7px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6%;

  text-transform: uppercase;
}

.web-services span {
  font-weight: 500;
}

.focus-area {
  padding-top: 4%;
  padding-bottom: 4%;
  background-color: #fff;
}

.focus-area h2 {
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2em;
  line-height: 40px;
  letter-spacing: 0.7px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6%;

  text-transform: uppercase;
}

.focus-area-box {
  padding: 20px 20px;
  background: rgb(143, 81, 241);
  background: linear-gradient(0deg, rgba(143, 81, 241, 1) 0%, rgba(225, 175, 204, 1) 100%);
  border-radius: 20px;
  box-shadow: 1px 0px 10px 0 #1c0be170;
  margin-bottom: 12%;
  height: 250px;
}

.focus-area-box h5 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  line-height: 28px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;

}

.focus-area-box-img {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #fff;
  margin: 0 auto 7%;
  border-radius: 100px;
  display: grid;
  align-items: center;
}

.focus-area-box-img img {
  width: 50%;
}

.focus-area-box-img2 {
  width: 130px;
  height: 130px;
  line-height: 130px;
  background-color: #fff;
  margin: 19% auto 7%;
  border-radius: 100px;
  display: grid;
  align-items: center;
}

.video-mb {
  margin-bottom: 2%;
}


/*web 3.0 end*/

/*start under-construction*/
.under-construction {

  text-align: center;
  padding-bottom: 1%;
}

.under-construction h1 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.8em;
  color: #000;

  margin-bottom: 1%;
  margin-top: 5%;
}

.under-construction h1 span {
  font-weight: 400;
}

.under-construction h2 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.5em;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 3%;
}

.under-construction p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.0em;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 25px;
  margin-top: 4%;
  margin-bottom: 10%;
}

.under-construction .btn {
  font-family: "Montserrat", sans-serif !important;
  font-size: 15px;
  line-height: 35px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  height: 35px;
  padding: 0 30px;
  border: none;
  display: inline-block;
  letter-spacing: 1px;
  border-radius: 50px;
  background: linear-gradient(260deg, rgba(143, 81, 241, 1) 0%, rgb(243, 95, 101) 100%);
}

.under-construction .btn:hover {
  background: linear-gradient(260deg, rgb(243, 95, 101) 0%, rgba(143, 81, 241, 1) 100%);
  transition: all 0.3s ease;
}

.uc-social-media a {
  width: 35px;
  height: 35px;
  background-color: #000;
  color: #fff;
  border-radius: 35px;
  margin: 3% 0.5%;

  line-height: 35px;
  font-size: 1.2em;
  display: inline-block;
}

.uc-social-media a:hover {
  background-color: transparent;
  outline: 1px solid #000;
  color: #000;
}

/*end under-construction*/

/*start thank you page*/
.thank-you-sec {
  padding-top: 12% !important;
  padding-bottom: 10% !important;
  text-align: center;
}

.thank-you-sec h1 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.9em;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 3%;
}

.thank-you-sec p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.1em;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-top: 1%;

}

.thank-you-sec .btn {
  font-family: "Montserrat", sans-serif !important;
  font-size: 15px;
  line-height: 35px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  height: 35px;
  padding: 0 30px;
  border: none;
  display: inline-block;
  letter-spacing: 1px;
  border-radius: 50px;
  background: linear-gradient(260deg, rgba(143, 81, 241, 1) 0%, rgb(243, 95, 101) 100%);
  margin-top: 5%;
  margin-bottom: 5%;
}

.thank-social-media a {
  width: 35px;
  height: 35px;
  background-color: #000;
  color: #fff;
  border-radius: 35px;
  margin: 0% 0.5%;

  line-height: 35px;
  font-size: 1.2em;
  display: inline-block;
}

.thank-social-media a:hover {
  background-color: transparent;
  outline: 1px solid #000;
  color: #000;
}

/*end thank you page*/

/* start footer-menu*/

.footer-menu {
  margin-bottom: 4%;
  border-bottom: 1px solid #202d50;
  padding-top: 3%;
  padding-bottom: 3%;
}

.footer-menu h5 {
  font-size: 1.2em;
  margin-bottom: 5%;
  color: #b28350;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-menu li {
  margin-bottom: 6%;
  line-height: 24px;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
}

.footer-menu a {
  color: #e9ecef;
  letter-spacing: 0.6px;
  display: block;
}

.footer-menu a:hover {
  color: #8d99af;

  transition: all 0.3s linear;
}

/* end footer-menu*/

/*start new home page design*/
.world-class-service {
  padding-top: 5%;
  padding-bottom: 5%;
}

.world-class-service-img img {
  border-radius: 100px 0 100px 0;
  margin-top: 6%;
  width: 90%;
}

.world-class-service h2 {
  font-size: 2.5em;
  margin-top: 3%;
  line-height: 45px;
  letter-spacing: 0.6px;
  font-weight: 700;
  color: #000;
  margin-bottom: 3%;
}



.world-class-service-text small {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: 5px;
  color: #d8042a;
  margin-left: 5%;
  position: relative;

}

.world-class-service-text small::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 15%;
  left: -15%;
  height: 13px;
  width: 20px;
  transition: 0.4s;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  background: linear-gradient(to right, #d8042a, rgb(184 151 128 / 6%));
}

.world-class-service-text span {
  color: #d8042a;
}

.world-class-service-text-box {
  display: flex;
  margin-bottom: 5%;
}

.world-class-service-text-box h3 {
  margin: 1% 0 5% 0;
  letter-spacing: 0.4px;
  font-weight: 500;
  color: #000;
  font-size: 1.8em;
}

.world-class-service-text-box-img {
  width: 70px;
  height: 70px;
  border: 2px solid #8d99af;
  margin-right: 4%;
  text-align: center;
  line-height: 65px;
  border-radius: 100px;
  box-shadow: 0 0px 10px 0 #00000029;
  flex: 0 0 70px;
}

.world-class-service-text-box-img img {
  width: 60%;
}

.free-legal-advice-wrap {
  position: relative;
  z-index: 1;
}

.free-legal-advice {
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 85%;
  margin: 0 0 0 7%;
  position: absolute;
  bottom: -25%;
  border-radius: 50px 0 50px 0;
  padding: 40px 30px;

}

.free-legal-advice h3 {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #d8042a;
  text-transform: uppercase;
  margin-bottom: 7%;

}

.free-legal-advice-wrap {
  margin-top: 5%;
}

.free-legal-advice h2 {
  font-size: 2em;
  line-height: 30px;
}

.free-legal-advice-contact {
  display: flex;
  justify-content: center;
  color: #fff;
}



.free-call a {
  color: #fff;
  background-color: #d8042a;
  font-weight: 600;
  display: block;
  padding: 15px 15px;
  border-radius: 15px 0 0 0;
  text-transform: uppercase;
}

.free-call a:hover {
  background-color: #0b162d;
  border-radius: 15px 0 15px 0;
}

.free-mboile-nu {
  background-color: #0b162d;
  padding: 15px 15px;
  border-radius: 0 0 15px 0;
}

.free-mboile-nu:hover {
  background-color: #d8042a;
  border-radius: 15px 0 15px 0;
  transition: all 0.2s linear;
}

.free-mboile-nu h4 {
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
}

.presence-in {
  text-align: center;
  padding-top: 4%;
  padding-bottom: 2%;
  background-color: #F7F7F7;
  margin-top: 5%;

}

.presence-in small {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: 5px;
  color: #d8042a;
  position: relative;

}

.presence-in small::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 15%;
  left: -17%;
  height: 13px;
  width: 20px;
  transition: 0.4s;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  background: linear-gradient(to right, #d8042a, rgb(184 151 128 / 6%));
}

.presence-in small::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 15%;
  right: -14%;
  height: 13px;
  width: 20px;
  transition: 0.4s;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  background: linear-gradient(to left, #d8042a, rgb(184 151 128 / 6%));
}

.presence-in h2 {
  margin-top: 1%;
  font-size: 2.5em;
  color: #000;
  margin-bottom: 2%;
}

.presence-in-flag {
  display: flex;
  flex-wrap: wrap;
}

.presence-in-flag-box {
  width: 16.33%;

  padding: 40px 30px;


}

.presence-in-flag-box h5 {
  margin-top: 13%;
  font-size: 1.5em;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 600;

}

.presence-in-flag-box:hover {
  box-shadow: 0 0 50px 0 #0003;
  transition: all 0.3s linear;
  cursor: pointer;
  border-radius: 50px 0 50px 0;
  background-color: #fff;
}

.presence-in-flag-box img {
  border-radius: 100px;
  width: 100px;
  height: 100px;
  border: 5px solid #fff;
  box-shadow: 0 0 20px 0 #c3bebe;
}



.presence-in-flag .presence-in-flag-box::before {
  content: "";
  width: 33.33%;
  height: 300px;
  background-color: red;
}


.home-services-box-wrap .col-lg-6,
.home-services-box-wrap .col-sm-6 {
  padding-left: 0;
  padding-right: 0;
}

.home-services-box {
  padding: 6% 5%;
  color: #fff;
  height: 520px;

}

.home-services-box h3 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 2%;
  line-height: 45px;
  text-shadow: 2px 2px 0 #00000030
}

.home-services-box p {
  font-size: 1.1em;
  line-height: 28px;
  letter-spacing: 0.5px;
  font-weight: 500;

}

.home-services-box h5 {
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 2%;
  letter-spacing: 0.5px;
  margin-top: 5%;
  background: rgb(29, 35, 49);
  background: linear-gradient(129deg, rgba(29, 35, 49, 1) 0%, rgba(255, 255, 255, 0) 100%);
  width: 45%;
  padding: 1%;
}

.home-services-box-flex .col-lg-6:nth-child(4) .home-services-box h5 {
  background: rgb(186, 153, 130);
  background: linear-gradient(129deg, #8d99af 0%, rgba(255, 255, 255, 0) 100%);
}

.home-services-box-flex .col-lg-6:nth-child(1) .home-services-box p {
  line-height: 40px;

}

.home-services-box-flex .col-lg-6:nth-child(1) .home-services-box {
  background: url(../img/home-page/legal-licensing.jpg)top left no-repeat;
  background-size: cover;
  padding-left: 11%;
  padding-right: 10%;
  border-radius: 0 30px 0 0;
}

.home-services-box-flex .col-lg-6:nth-child(2) .home-services-box {
  background: url(../img/home-page/international-expansion.jpg)top left no-repeat;
  background-size: cover;
  padding-left: 15%;
  border-radius: 30px 0 0 0;

}

.home-services-box-flex .col-lg-6:nth-child(3) .home-services-box {
  background: url(../img/home-page/legal-experts.jpg)top left no-repeat;
  background-size: cover;
  padding-left: 11%;
  padding-right: 10%;
}

.home-services-box-flex .col-lg-6:nth-child(4) .home-services-box {
  background: url(../img/home-page/international-taxation.jpg)top left no-repeat;
  background-size: cover;
  padding-left: 15%;
  padding-right: 10%;
}

.home-services-box ul {
  padding: 0;
  margin: 0;
}

.home-services-box li {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.5px;
  padding-left: 5%;

}

.home-services-box li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/home-page/verify.png)center left no-repeat;
  background-size: 68%;
  position: absolute;

  margin-top: 1%;
  margin-left: -3.5%;
}

.home-services-box-btn {
  background-color: #fff;
  padding: 10px 30px;
  border: none;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4%;
  letter-spacing: 0.5px;
}

.home-services-box-btn:hover {
  background-color: transparent;
  outline: 2px solid #fff;
  color: #fff;
  transition: all 0.3s linear;

}


.section-gap2 {
  padding-top: 5%;
  padding-bottom: 5%;
}

.testimonial-area small {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: 5px;
  color: #d8042a;
  position: relative;
}

.testimonial-area small::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 15%;
  left: -17%;
  height: 13px;
  width: 20px;
  transition: 0.4s;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  background: linear-gradient(to right, #d8042a, rgb(184 151 128 / 6%));
}

.testimonial-area small::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 15%;
  right: -14%;
  height: 13px;
  width: 20px;
  transition: 0.4s;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  background: linear-gradient(to left, #d8042a, rgb(184 151 128 / 6%));
}

.desc .bottom {
  background-color: #8d99af4d;
  padding: 2px 10px;
  display: block;
  /* width: auto; */
  width: 62%;
  border-radius: 20px;
  margin-top: 5%;
}

.desc .bottom p {
  font-weight: 800;
  font-size: 0.9em;
  letter-spacing: 1px;
}

.single-testimonial {
  position: relative;
}

.single-testimonial::before {
  font-family: FontAwesome;
  content: "\f10d ";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  font-size: 2.5em;
  position: absolute;

  top: 10%;
  color: #ef233c;

}

.news-section .single-testimonial {
  background-color: #fff;
  padding: 30px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  min-height: 280px;
  border-radius: none;
}

.news-section .single-testimonial p {
  margin-bottom: 0px;
  color: #4d4d4d;
}

.news-section .single-testimonial::before {
  display: none;
}

.thumb {
  margin-left: 16%;
}

.judgments-section {
  padding-top: 5%;
  padding-bottom: 5%;
}

.judgments-section-flex {
  display: flex;
  align-items: center;
  margin-bottom: 3%;
  padding: 25px;
  background: linear-gradient(80deg, #d8042aab 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50px 0 0 0px;
}

.judgments-section-flex-img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border: 1px solid #735c5c;
  line-height: 80px;
  border-radius: 100px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 20px 0 #0000004f;
  flex: 0 0 80px;
  margin-right: 3%;
}

.judgments-section-flex-text p {
  font-size: 1.5em;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0.4px;
  line-height: 30px;
}

.judgments-section-flex-img img {
  width: 60%;
}

.single-brand-flex {
  display: flex;
  flex-wrap: wrap;
}

.single-brand2 a {

  background-color: #ffffff26;

  padding: 0 3%;
  display: block;
  height: 150px;
  line-height: 150px;
}

.single-brand2 {
  width: 32%;
  filter: contrast(0%) brightness(2);
  margin-left: 1%;
  margin-bottom: 1%;
}

.single-brand2:hover {
  filter: contrast(90%) brightness(1.5) saturate(90%);
  transition: all 0.3s linear;
  outline: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
}

..single-brand-flex .single-brand2:nth-child(4) {
  filter: contrast(100%) brightness(2);
}

.single-brand-flex .single-brand2:nth-child(4):hover {
  filter: contrast(100%) brightness(1) saturate(100%);
}

.brands-area h2 {
  font-size: 1.9em;
  color: #d8042a;
  margin-bottom: 5%;
  line-height: 35px;
}

.brands-area p {
  color: #000;
}

.brands-area {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/home-page/logo-bg.jpg)center center no-repeat;
  background-size: cover;
}


.brands-area p {
  color: #fff;
}

.grow-with-us-wrap {
  margin-top: 5%;
  margin-bottom: 5%;
}

.grow-with-us-bg {
  background: rgb(14, 14, 33);
  background: linear-gradient(90deg, rgba(14, 14, 33, 1) 0%, rgba(37, 37, 67, 1) 100%);
  height: 372px;

}

.grow-with-us-text {
  padding: 30px 30px;
}

.grow-with-us-bg h2 {
  color: #fff;
  font-size: 2em;
  line-height: 40px;
  margin-bottom: 3%;
  letter-spacing: 0.5px;
  margin-top: 3%;
}

.grow-with-us-bg p {
  color: #fff;
  font-size: 1.2em;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.grow-with-us-bg button {
  background-color: #d8042a;
  padding: 15px 20px;
  text-align: center;
  border: none;
  color: #fff;
  font-weight: 700;
  margin-top: 4%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px 0 20px 0;
}

.grow-with-us-bg button:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.3s linear;
}

.grow-with-us-img {
  background: url(../img/home-page/grow-with-us-img.png)top right no-repeat;
  background-size: contain;
  height: 390px;
  position: relative;
}


.grow-with-us-img::before {
  content: "";
  position: absolute;
  height: 72%;
  width: 132px;
  left: -7px;
  top: 0;
  opacity: 1;
  transform: skew(-31deg, 0);
  background: linear-gradient(to bottom, #d8042a 0, rgb(58 123 213 / 0));
}

.grow-with-us-img::after {
  content: "";
  width: 159px;
  height: 500px;
  position: absolute;
  right: -50px;
  transform: rotate(29deg);
  top: -16px;
  z-index: 9;
  clip-path: polygon(85.32% 260px, -1.76% 2.07%, -6.32% 91.45%, 90.32% 74.02%);
  background: linear-gradient(to top, #d8042a 0, rgb(58 123 213 / 0));
}

.small-content-1 {
  letter-spacing: 0.5px;
  margin-bottom: 5%;
}

.finjury-form button {
  background-color: #ffff;
  border: none;
  color: #000;
}

.finjury-form button:hover {
  background-color: #000;
  color: #fff;
}

/*start new home page design*/


/*start crypto-virtual-asset-venture-in-india*/

.crypto-virtual-asset-banner {
  background: url(../img/crypto-virtual-Asset/crypto-virtual-asset-banner.jpg )top left no-repeat;
  background-size: cover;
  padding-top: 11%;
  padding-bottom: 5%;
  position: relative;
}

.crypto-virtual-asset-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3.2em;
  line-height: 55px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 3%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;

}

.crypto-virtual-asset-banner h1 span {

  font-weight: 800;
  background: rgb(155, 90, 245);
  background: linear-gradient(90deg, rgba(155, 90, 245, 1) 0%, rgba(213, 161, 211, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: none;
}

.crypto-virtual-asset-banner h2 {
  color: #fff;
  font-weight: 500;
  font-size: 2.2em;
  line-height: 42px;
  letter-spacing: 0.5px;
  margin: 5% 0;
}

.crypto-virtual-asset-banner-list-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
}

.crypto-virtual-asset-banner-list {
  background: rgb(194, 241, 235);
  background: linear-gradient(90deg, rgba(194, 241, 235, 1) 0%, rgba(238, 241, 235, 1) 100%);

  border-radius: 10px;
  border: 2px solid #fff;
  padding: 1.5% 1%;
  width: 200px;
  box-shadow: 5px 2px 9px #4efdfe73
}

.crypto-virtual-asset-banner-list h5 {
  color: #000;
  font-size: 1.2em;
  display: flex;
}

.crypto-virtual-asset-banner-list h5::before {
  display: inline-block;
  content: '';
  background: url(../img/crypto-virtual-Asset/arrow.png)left top no-repeat;
  width: 21px;
  height: 21px;
  background-size: 100%;
  margin-right: 3%;
}

.crypto-vav-question {
  padding-top: 5%;
  padding-bottom: 5%;
  background: #202020 url(../img/crypto-virtual-Asset/crypto-vav-question-bg.jpg)top right no-repeat;

}

.crypto-vav-question h2 {
  color: #fff;
  margin-bottom: 9%;
  line-height: 40px;
  letter-spacing: 0.3px;
}

.crypto-vav-question h2 span {
  color: rgb(155, 90, 245);
}

.crypto-vav-question-flex {
  display: flex;
  margin: 4% 0;
  align-items: center;
}

.crypto-vav-question-flex p {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  font-weight: 600;
  font-size: 1.3em;
  letter-spacing: 0.4px;
}

.crypto-vav-question-number {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  background: rgb(155, 90, 245);
  background: linear-gradient(90deg, rgba(155, 90, 245, 1) 0%, rgba(213, 161, 211, 1) 100%);
  line-height: 50px;
  flex: 0 0 50px;
  margin-right: 3%;
  font-size: 1.5em;
}

.cvav-legal-consultant {
  padding-top: 5%;
  padding-bottom: 5%;

}

.cvav-legal-consultant-circle::before {
  width: 600px;
  height: 600px;
  background-color: #000;
  display: block;
  content: '';
  border-radius: 500px;
  position: absolute;
  z-index: -1;
}

.cvav-legal-consultant-circle h2 {
  color: #fff;
  padding: 25% 0 0 19%;
  font-size: 3em;
  margin-bottom: 12%;
}

.cvav-legal-consultant h4 {
  padding: 25% 0 0 15%;
  color: #000;
  font-weight: 500;
  line-height: 30px;
  font-size: 1.5em;
}

.cvav-legal-consultant-box {
  background: rgb(194, 241, 235);
  background: linear-gradient(90deg, rgba(194, 241, 235, 1) 0%, rgba(238, 241, 235, 1) 100%);
  padding: 30px;
  border-radius: 30px;
  height: 220px;
  margin-bottom: 8%;
  box-shadow: 5px 5px 10px #c9d5f19c;

}

.cvav-legal-consultant-box p {
  font-size: 1.1em;
  color: #000;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500;
  line-height: 25px;
  margin-top: 5%;
  letter-spacing: 0.5px;

}

.crypto-journey {
  text-align: center;
  background: #151a2b url(../img/crypto-virtual-Asset/crypto-journey-bg.png)bottom center no-repeat;
  padding: 5%;
  border-radius: 50px;
  height: 800px;
  background-size: cover;
  margin-bottom: 5%;

}

.crypto-journey h2 {
  color: #fff;
  margin-bottom: 3%;
  font-size: 2.5em;
}

.crypto-journey h4 {
  color: #fff;
  font-size: 1.9em;
  margin-bottom: 2.5%;
  font-weight: 600;
}

.crypto-journey h3 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 1.5%;
  font-weight: 400;
  margin-top: 2%;
}

.crypto-journey hr {
  width: 500px;
  height: 1px;
  background-color: #ffffff57;
  border: none;
}

.crypto-journey-icon {
  width: 50px;
  height: 50px;
  background: rgb(155, 90, 245);
  background: linear-gradient(85deg, rgba(155, 90, 245, 1) 0%, rgba(213, 161, 211, 1) 100%);
  line-height: 50px;
  margin: 0 auto 1%;
  border-radius: 100px;
  font-size: 1.5em;
  color: #fff;
}

.crypto-journey-plan {
  background-color: #ff0b11;
  width: 500px;
  padding: 15px 0;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 0 0 20px #ff0b1170;
}

.crypto-journey p {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: 0.4px;
  margin-bottom: 0;

}

.crypto-journey h5 {
  color: #fff;
  font-size: 1.8em;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 3.5%;
}

/*end crypto-virtual-asset-venture-in-india*/

/*start gcgra-commercial-gaming-license-uae*/

.crypto-virtual-asset-venture-banner {
  background: url(../img/gcgra-commercial/gcgra-commercial-banner.jpg )center bottom no-repeat;
  background-size: cover;
  padding-top: 11%;
  padding-bottom: 5%;
  position: relative;
}

.crypto-virtual-asset-venture-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3.3em;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 3%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;

}

.crypto-virtual-asset-venture-banner h1 span {

  font-weight: 800;
  background: rgb(155, 90, 245);
  background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(246, 241, 160) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  text-transform: uppercase;
}

.crypto-virtual-asset-venture-banner h2 {
  color: #fff;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin: 3% 0 0 0;
}

.crypto-virtual-asset-venture-banner h3 {
  color: #fff;
  font-weight: 500;
  font-size: 1.3em;
  line-height: 35px;
  letter-spacing: 0.5px;
  margin: 9% 0 1%;
  background: linear-gradient(90deg, rgb(255, 13, 27) 0%, rgba(193, 188, 107, 0) 100%);
  width: 68%;
  border-radius: 50px;
  padding: 0.5% 3%;
  font-family: "Montserrat", sans-serif !important;
}

.crypto-virtual-asset-venture-banner p {
  color: #fff;
  font-weight: 800;
  font-size: 2.7em;
  line-height: 35px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 3%;

}

.gaming-license {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #000000;
}

.gaming-license h2 {
  color: #fff;
  margin-bottom: 1%;
  font-size: 2.5em;
  font-family: "Montserrat", sans-serif !important;
}

.gaming-license p,
.adherence-wrap p,
.gcgra-gaming-license p,
.how-to-apply p {
  font-size: 1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  margin-top: 2%;
  letter-spacing: 0.5px;

}

.adherence-wrap {
  padding-top: 0%;
  padding-bottom: 5%;
  background-color: #171717;
}

.adherence-wrap h2 {
  color: #fff;
  margin-bottom: 3%;
  font-size: 2.5em;
  line-height: 45px;
  font-family: "Montserrat", sans-serif !important;
  padding-top: 15%;
}

.adherence-img {

  width: 500px;
  height: 500px;
  background: rgb(2, 14, 64);
  background: radial-gradient(circle, rgba(2, 14, 64, 1) 10%, rgba(238, 241, 235, 0) 70%);
}

.adherence-img img {
  padding-top: 19%;
}

.gcgra-gaming-license {
  padding-top: 0%;
  padding-bottom: 5%;
  background: url(../img/gcgra-commercial/gcgra-gaming-license-wrap.jpg)top center no-repeat;
  background-size: cover;
}

.gcgra-gaming-license h2 {
  color: #fff;

  font-size: 2.5em;
  line-height: 45px;
  font-family: "Montserrat", sans-serif !important;
  padding-top: 5%;
}

.gcgra-gaming-license h3 {
  color: #fff;
  margin-bottom: 3%;
  font-size: 1.4em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 2%;

}

.gcgra-gaming-license-wrap-box {
  display: flex;
  align-items: center;
  margin-bottom: 1.5%;
  background-color: #ffffff36;
  padding: 0.5% 4%;
  border-radius: 50px;

}

.gcgra-gaming-license-wrap-box p {
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
}

.gcgra-gaming-li-img img {
  width: 60%;
}


.g-application-process,
.how-to-apply,
.gcgra-faq {
  background-color: #000;
  padding-top: 5%;
  padding-bottom: 5%;
}

.g-application-process h2,
.pros-and-cons h2,
.how-to-apply h2,
.gcgra-faq h2 {
  color: #fff;
  font-size: 2.5em;
  line-height: 45px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: center;
}

.g-application-process-flex {
  display: flex;
  align-items: center;
  margin-bottom: 3%;
  border-radius: 10px;

  background-color: #ffffff29;
  padding: 20px;
  box-shadow: 1px 1px 20px #ca87fa97
}

.g-application-process-nu {
  width: 40px;
  height: 40px;
  background: rgb(255, 255, 255);
  background: linear-gradient(100deg, rgb(198, 122, 252) 0%, rgb(238, 241, 235) 100%);
  color: #000;
  text-align: center;
  line-height: 40px;
  flex: 0 0 40px;
  border-radius: 50px;
  margin-right: 1.5%;
  font-weight: 700;
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif !important;
}

.g-application-process p {
  font-size: 1.2em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 0;

}

.g-application-process-flex ul {
  margin-left: 4%;
}

.g-application-process-flex li {
  font-size: 1.1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: 0.4px;
  list-style-type: disc;
}

.pros-and-cons,
.gaming-licensesin-uae {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #171717;
}

.pros-and-cons h3 {
  width: 20%;
  background: rgb(226, 108, 255);
  background: linear-gradient(90deg, rgba(226, 108, 255, 0) 0%, rgba(226, 108, 255, 1) 37%, rgba(0, 255, 246, 1) 61%, rgba(0, 255, 246, 0) 100%);
  margin: 0 auto 5%;
  color: #000;
  text-align: center;
  padding: 1% 0;

}



.pros-and-cons-box h5 {
  color: rgb(205, 142, 249);
  font-size: 1.2em;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: center;
  margin-top: 4%;
}

.pros-and-cons-box p,
.entity-licenses p,
.individual-licenses p,
.uae-federal p {
  font-size: 1em;
  color: #c9c3c3;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 500;
  text-align: center;

}

.pros-and-cons-box img {
  width: 13%;
}

.entity-licenses {
  background: #040b11 url(../img/gcgra-commercial/entity-licenses-ng.jpg)top left no-repeat;
  padding-top: 5%;
  padding-bottom: 5%;
  background-size: cover;
}


.entity-licenses h2,
.gaming-licensesin-uae h2,
.uae-federal h2,
.laws-for-players h2,
.why-is-critical h2 {
  color: #fff;
  font-size: 2.5em;
  line-height: 45px;
  font-family: "Montserrat", sans-serif !important;

  text-align: center;
}

.entity-licenses h3,
.individual-licenses h3 {
  color: #fff;
  margin: 5% 0;
  font-size: 1.4em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 1% 2%;
  background: linear-gradient(90deg, rgb(255, 13, 27) 0%, rgba(193, 188, 107, 0) 50%);
}

.entity-licenses-flex {
  display: flex;
  align-items: flex-start;


}

.entity-licenses-flex p {
  text-align: left;
  letter-spacing: 0.4px;
}

.entity-licenses-flex h5 {
  font-size: 1.2em;

  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: rgb(231, 155, 100);
  margin-bottom: 1.5%;
}

.entity-licenses-flex-number {
  width: 35px;
  height: 35px;
  background: rgb(255, 255, 255);
  background: linear-gradient(100deg, rgb(231, 155, 100) 0%, rgb(238, 241, 235) 100%);
  color: #000;
  text-align: center;
  line-height: 35px;
  flex: 0 0 35px;
  border-radius: 50px;
  margin-right: 1.5%;
  font-weight: 700;
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif !important;
}

.entity-licenses-list ul {
  margin-left: 10%;
  display: flex;
  margin-bottom: 6%;
}

.entity-licenses-list li {
  font-size: 1em;
  color: #c9c3c3;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 20px;
  font-weight: 500;
  list-style-type: disc;
  letter-spacing: 0.5px;
  width: 41%;
  margin-right: 7%;
  margin-bottom: 2%;
}

.individual-licenses {
  background: #040b11 url(../img/gcgra-commercial/individual-licenses-bg.jpg)top right no-repeat;
  padding-top: 2%;
  padding-bottom: 3%;
  background-size: cover;
}

.entity-licenses-list ol {
  margin: 1% 0 3% 3%
}

.entity-licenses-list u {
  color: #fff;
  color: rgb(231, 155, 100);
}

.gaming-licensesin-uae h2 {
  margin-bottom: 4%;
}

.gaming-licensesin-uae-box {
  background-color: #000;
  height: 200px;
  padding: 20px 30px;
  border-radius: 10px;

}

.gaming-licensesin-uae-box h5 {
  color: #fff;
  font-size: 1.2em;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 5%;
  text-align: center;
  line-height: 22px;

}

.how-to-apply {

  background: #000 url(../img/gcgra-commercial/how-to-apply-bg.png)top left no-repeat;
  background-size: cover;
}

.how-to-apply h3 {
  color: rgb(231, 155, 100);
  margin-bottom: 3%;
  font-size: 1.4em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 2%;

}

.how-to-apply li {
  font-size: 1em;
  color: #c9c3c3;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 30px;
  font-weight: 500;
  list-style-type: disc;
  letter-spacing: 0.5px;
  margin-left: 5%;

}

.how-to-apply u {
  color: #cea06c;

}

.uae-federal {
  background-color: #1f1f1f;
  padding-top: 5%;
  padding-bottom: 5%;
}

.uae-federal h3 {
  color: #fff;
  margin: 1% auto 7%;
  padding: 0.6% 0;
  font-size: 1.4em;
  background: rgb(226, 108, 255);
  background: linear-gradient(90deg, rgba(226, 108, 255, 0) 0%, rgba(253, 50, 33, 1) 50%, rgba(0, 255, 246, 0) 100%);
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;
  width: 50%;


}

.uae-federal-box {
  display: flex;
  margin-bottom: 3%;
  background-color: #000;
  padding: 30px;
  box-shadow: 0 0 20px rgb(0, 0, 0);
  border-radius: 30px;
}

.uae-federal-icon {
  width: 40px;
  height: 40px;
  margin-right: 1%;
  flex: 0 0 40px;
}

.uae-federal-box p {
  text-align: left;
  font-size: 1.1em;
  line-height: 25px;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
}

.uae-federal-box span {
  color: #fff;
  font-weight: 600;
}

.uae-federal-box h5 {
  font-size: 1.3em;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #e1bbfb;
  margin-bottom: 1%;
}

.laws-for-players {
  background-color: #000;
  padding-top: 5%;
  padding-bottom: 5%;
}

.laws-for-players p {
  text-align: center;
  font-size: 1.1em;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 1.5% 0 5% 0;
}

.laws-for-players-box {
  margin-bottom: 9%;
  border: 1px dashed rgb(231, 155, 100);
  padding: 25px;
  height: 350px;
}

.laws-for-players-box h5 {
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: rgb(231, 155, 100);
  margin: 2% 0 2% 0;
  text-align: center;
  line-height: 25px;
}

.laws-for-players-box p {
  text-align: center;
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  color: #c9c3c3;
}

.laws-for-players-boxicon {
  width: 60px;
  height: 60px;
  background-color: #464646;
  border-radius: 50px;
  line-height: 60px;
  text-align: center;
  margin: 0 auto 5%;
  display: grid;
  align-items: center;
}

.laws-for-players-boxicon img {
  width: 55%;
}

.the-role-gaming {
  padding-top: 25%;
  padding-bottom: 5%;
  background: #000 url(../img/gcgra-commercial/the-role-gaming.png)top center no-repeat;

}

.the-role-gaming p {
  text-align: center;
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  color: #fff;
}

.the-role-gaming h2 {

  font-size: 2.5em;
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  background: #FC466B;

  background: linear-gradient(128deg, rgba(226, 108, 255, 1) 31%, rgba(226, 108, 255, 1) 32%, rgba(40, 228, 247, 1) 86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1%;
  line-height: 50px;
}

.why-is-critical {
  background: #02042d;
  padding-top: 5%;
  padding-bottom: 5%;

}

.why-is-critical h2 {
  margin-bottom: 2%;
  text-align: left;
}

.why-is-critical p {
  font-size: 0.9em;
  color: #c9c3c3;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 500;
  text-align: left;

}

.why-is-critical h3 {
  color: rgb(231, 155, 100);
  margin-bottom: 3%;
  font-size: 1.4em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 3%;

}

.why-is-critical {
  font-size: 1.3em;
  color: #c9c3c3;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 40px;
  font-weight: 500;
  list-style-type: disc;
  letter-spacing: 0.5px;


}

.gcgra-faq .card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgb(41, 41, 41) !important;
  border: 1px solid rgba(0, 0, 0, 0.63);
  font-family: "Montserrat", sans-serif !important;
  display: block;
}

.gcgra-faq .card {
  border: 1px solid rgba(0, 0, 0, 0.63) !important;
}

.gcgra-faq .card-header:first-child {
  border-radius: 0px;
}

.gcgra-faq #faq .card .card-header .btn-header-link.collapsed::after {
  content: "\f107";
  color: #fff
}

.gcgra-faq #faq .card .card-header .btn-header-link::after {
  content: "\f106";
  font-family: FontAwesome;
  font-weight: 900;
  float: right;
  color: #fff
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.gcgra-faq .card-header a {
  display: block;
  text-align: left;
}

.gcgra-faq btn {
  padding: 0 14px;
}

.gcgra-faq .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem 80px;
}

.gcgra-faq li {
  font-size: 1em;
  color: #404040;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 30px;
  font-weight: 500;
  list-style-type: disc;
  letter-spacing: 0.5px;
  margin-left: 1%;

}

.gcgra-faq p {
  font-size: 1em;
  color: #404040;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 500;
  text-align: left;

}

.gcgra-faq span {

  color: #cea06c;
  font-weight: 800;

}

/*end gcgra-commercial-gaming-license-uae*/

/*start Online Casino Gaming License in UAE*/


.online-casino-banner {
  background: #0b0c21 url(../img/online-casino-gaming/online-casino-gaming-banner.jpg)top right no-repeat;
  background-size: contain;
  padding-top: 11%;
  padding-bottom: 5%;
  position: relative;
}

.online-casino-banner h1 {
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.9em;
  line-height: 55px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 4%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;

}

.online-casino-banner h1 span {

  font-weight: 800;
  background: rgb(155, 90, 245);
  background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(246, 241, 160) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  text-transform: uppercase;
}

.online-casino-banner h2 {
  color: #e5e5e5;
  font-weight: 500;
  font-size: 1.7em;
  line-height: 40px;
  letter-spacing: 0.4px;
  margin: 3% 0 0 0;
}

.online-casino-banner h3 {
  color: #e5e5e5;
  font-weight: 500;
  font-size: 1.3em;
  line-height: 35px;
  letter-spacing: 0.5px;
  margin: 9% 0 1%;
  background: linear-gradient(90deg, rgb(255, 13, 27) 0%, rgba(193, 188, 107, 0) 100%);
  width: 68%;
  border-radius: 50px;
  padding: 0.5% 3%;
  font-family: "Montserrat", sans-serif !important;
}

.online-casino-banner p {
  color: #e5e5e5;
  font-weight: 800;
  font-size: 2.7em;
  line-height: 35px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 3%;

}

.introduction-online-gaming,
.exploring-internet-gaming,
.online-key-benefits {
  background-color: #000000;
  padding-top: 5%;
  padding-bottom: 5%;
}

.introduction-online-gaming h2,
.exploring-internet-gaming h2,
.online-key-benefits h2 {
  color: #e5e5e5;
  font-size: 2.5em;
  line-height: 45px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 5%;
  text-align: left;
}

.introduction-online-gaming p,
.exploring-internet-gaming p {
  font-size: 1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.5px;

}


.multiple-types-licenses {
  background-color: #0b0c21;
  padding-top: 5%;
  padding-bottom: 5%;
}

.multiple-types-licenses h2 {
  color: #e5e5e5;
  font-size: 2.5em;
  line-height: 50px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 5%;
  text-align: center;
}

.multiple-type-li-box h5,
.online-key-benefits-box h5 {
  color: rgb(205, 142, 249);
  font-size: 1.2em;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 4%;
  text-align: center;
  margin-top: 4%;
}

p .multiple-type-li-box p,
.online-key-benefits-box p,
.multiple-type-li-box p,
.role-online-gaming p {
  font-size: 1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5px;

}

.multiple-type-li-img {
  width: 100px;
  height: 100px;
  border: 2px solid #e5e5e5;
  margin: 0 auto;
  border-radius: 50px;
  display: grid;
  align-items: center;

}

.multiple-types-licenses-p {
  font-size: 1.2em;
  color: #aa77d2;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  margin-top: 3%;
}

.ready-to-take-wrapper {
  background: #1c283e url(../img/online-casino-gaming/ready-to-take-wrapper.jpg)top right no-repeat;
  background-size: 70%;
  padding: 30px;
  margin-top: 5%;
  border-radius: 30px;
  box-shadow: 5px 5px 0 rgb(246, 241, 160);
}

.ready-to-take-wrapper h2 {

  font-size: 1.6em;
  line-height: 30px;
  background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(246, 241, 160) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ready-to-take-wrapper p {
  font-size: 1.1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  line-height: 25px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.5px;
  margin-top: 2%;
}

.o-licensing-process {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #171717;
}

.o-licensing-process h2,
.casino-understanding-online h2,
.role-online-gaming h2 {
  color: #e5e5e5;
  font-size: 2.5em;
  line-height: 45px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 1%;
  text-align: center;
}

.o-licensing-process h3 {
  color: #e5e5e5;
  font-size: 1.3em;
  line-height: 28px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  text-align: center;
  font-weight: 600;
}

.o-licensing-process p,
.casino-understanding-online p {
  font-size: 1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5px;

}

.o-licensing-process-box h5 {
  color: rgb(231, 155, 100);
  font-size: 1.2em;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  text-align: left;

}

.o-licensing-process-box {
  display: flex;
  margin-bottom: 4%;
  border-bottom: 1px solid #ffffff1f;
  padding-bottom: 2%;
}

.o-licensing-process-box p {
  font-size: 1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.5px;

}

.o-licensing-process-box-icon {
  width: 100px;
  height: 100px;
  border: 2px solid rgb(231, 155, 100);
  border-radius: 100px;
  flex: 0 0 100px;
  margin-right: 2%;
  display: grid;
  align-items: center;
}

.o-licensing-process-box-icon img {
  width: 50%;
}

.online-key-benefits-box {
  border: 2px dashed #c689f157;
  padding: 20px;
  height: 280px;
  border-radius: 30px;
}

.online-key-benefits .col-lg-3,
.online-key-benefits .col-sm-4 {
  padding-right: 0;
  padding-left: 0;
}

.online-key-benefits-box img {
  width: 15%;
}


.casino-understanding-online h3,
.casino-understanding-online2 h3 {

  background: rgb(226, 108, 255);
  background: linear-gradient(90deg, rgba(226, 108, 255, 0) 0%, rgba(226, 108, 255, 1) 0%, rgba(0, 255, 246, 1) 61%, rgba(0, 255, 246, 0) 100%);
  margin: 5% 0 8%;
  color: #000;
  text-align: left;
  padding: 1% 5%;
}

.casino-understanding-online {

  padding-top: 5%;
  padding-bottom: 0;
  background: #0b0c21
}

.casino-understanding-online2 {
  background: #0b0c21;
  ;
  padding-top: 0;
  padding-bottom: 5%;
}

.casino-understanding-online-box {
  display: flex;
  margin-bottom: 4%;
  border-bottom: 1px solid #ffffff1f;
  padding-bottom: 2%;
}

.casino-understanding-online-box p,
.role-online-gaming-box p {
  font-size: 1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.5px;

}

.casino-understanding-online-icon {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(226, 108, 255, 1);
  border-radius: 100px;
  flex: 0 0 100px;
  margin-right: 2%;
  display: grid;
  align-items: center;
}

.casino-understanding-online-icon img {
  width: 50%;
}

.casino-understanding-online-box h5 {
  color: rgba(226, 108, 255, 1);
  font-size: 1.2em;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 2%;
  text-align: left;
}

.role-online-gaming {
  background: #000000;
  padding-top: 5%;
  padding-bottom: 5%;
}

.role-online-gaming-box {
  background: #000000 url(../img/online-casino-gaming/blur-bg1.png)center center no-repeat;
  padding: 25px;
  border-radius: 30px 0 0 0;
}

.role-online-gaming-box span {
  font-size: 3em;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif !important;

  font-weight: 900;
  color: #fff;
}

.role-online-gaming-box h5 {
  color: rgba(226, 108, 255, 1);
  font-size: 1.3em;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif !important;
  margin: 5% 0 3% 0;
  text-align: left;
  line-height: 28px;
}



.ready-to-take-wrapper2 {
  background: #1c283e url(../img/online-casino-gaming/overview-casino-gaming.jpg)top right no-repeat;
  background-size: 70%;
  padding: 30px;
  margin-top: 5%;
  border-radius: 30px;
  box-shadow: 5px 5px 0 rgb(246, 241, 160);
}

.ready-to-take-wrapper2 h2,
.ready-to-take-wrapper h2 {
  text-align: left;
  font-size: 1.6em !important;
  line-height: 30px !important;
  background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(246, 241, 160) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;

  font-weight: 700;
  letter-spacing: 0.5px;
}

.ready-to-take-wrapper2 p {
  font-size: 1.1em;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  line-height: 25px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.5px;
  margin-top: 2%;
}

.appropriate {
  background: #070a19 url(../img/online-casino-gaming/appropriate.jpg?v=2.0) top center no-repeat;
  padding-top: 5%;
  padding-bottom: 5%;
  background-size: 55%;
}

.appropriate h5 {
  font-size: 1.4em;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

.appropriate2 {
  margin-top: 22%;
}

.casino-contact-us {
  background: rgb(226, 108, 255);
  background: linear-gradient(128deg, rgba(226, 108, 255, 1) 0%, rgba(40, 228, 247, 1) 100%);
  padding: 50px 25px;
  margin-top: 5%;
  border-radius: 30px;
  box-shadow: 5px 5px 0 #fff;
}

.casino-contact-us h2 {
  color: #fff;
  margin-bottom: 2%;
  font-size: 3em;
  text-shadow: 2px 2px 0 #00000038;
  margin-top: 2%;
}

.casino-contact-us p {
  font-size: 1.2em;
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  line-height: 25px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.5px;

}

.casino-contact-us button {
  font-family: "Montserrat", sans-serif !important;
  background-color: #fff;
  border: none;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 1.2em;
  border-radius: 30px;
  margin-top: 3%;
  box-shadow: 5px 5px 0 #00000038
}

.casino-contact-us img {
  filter: drop-shadow(0 0 2rem #00000057)
}

.o-licensing-process a {
  color: rgb(231, 155, 100);
}

/*end Online Casino Gaming License in UAE*/



/*start Gaming Operator & Supplier License */


.gaming-operator-banner {
  background: #0b0c21 url(../img/gaming-operator/gaming-operator-banner.jpg)bottom right no-repeat;
  background-size: contain;
  padding-top: 11%;
  padding-bottom: 5%;
  position: relative;
}

.gaming-operator-banner h1 {
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif !important;
  font-size: 2.9em;
  line-height: 55px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 2%;
  text-shadow: 0 10px #000;
  text-shadow: -2px 2px 0px #000;
  text-transform: uppercase;

}

.gaming-operator-banner h1 span {

  font-weight: 800;
  background: rgb(155, 90, 245);
  background: linear-gradient(90deg, rgb(9, 171, 205) 0%, rgb(246, 241, 160) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  text-transform: uppercase;
}

.gaming-operator-banner h2 {
  color: #e5e5e5;
  font-weight: 500;
  font-size: 1.7em;
  line-height: 40px;
  letter-spacing: 0.4px;
  margin: 2% 0 0 0;
}

.gaming-operator-banner h3 {
  color: #e5e5e5;
  font-weight: 500;
  font-size: 1.3em;
  line-height: 35px;
  letter-spacing: 0.5px;
  margin: 9% 0 1%;
  background: linear-gradient(90deg, rgb(9, 171, 205) 0%, rgba(193, 188, 107, 0) 100%);
  width: 68%;
  border-radius: 50px;
  padding: 0.5% 3%;
  font-family: "Montserrat", sans-serif !important;
}

.gaming-operator-banner p {
  color: #e5e5e5;
  font-weight: 800;
  font-size: 2.7em;
  line-height: 35px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 3%;

}

.compliance-meets,
.gaming-supplier-licenses,
.individual-gaming,
.application-process {
  padding-top: 5%;
  padding-bottom: 5%;
  background: rgb(240, 241, 235);
  background: linear-gradient(340deg, rgba(240, 241, 235, 1) 30%, rgba(217, 255, 250, 1) 100%);
  font-family: "Montserrat", sans-serif !important;
}

.compliance-meets h2,
.importance-gaming-operator h2,
.gaming-supplier-licenses h2,
.gaming-employee-licenses h2,
.individual-gaming h2,
.key-person-gaming h2,
.typical-roles h2,
.application-process h2 {
  color: #173861;
  font-size: 2.5em;
  line-height: 45px;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 1%;
  text-align: center;
}

.compliance-meets p,
.importance-gaming-operator p,
.gaming-supplier-licenses p,
.gaming-employee-licenses p,
.typical-roles p,
.application-process p {
  font-size: 1.3em;
  color: #000;
  margin-bottom: 5%;
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  line-height: 28px;
}

.compliance-meets-flex-box {
  display: flex;
}

.compliance-meets h3 {
  margin-bottom: 5%;
  margin-left: 9%;
  background: #355C7D;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #C06C84, #6C5B7B, #355C7D);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #C06C84, #6C5B7B, #355C7D);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  width: 42%;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  text-align: center;
  font-size: 1.5em;
}

.compliance-meets-flex-box-icon {
  width: 50px;
  height: 50px;
  background: #355C7D;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #C06C84, #6C5B7B, #355C7D);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #C06C84, #6C5B7B, #355C7D);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  border-radius: 50px;
  margin-right: 10px;
  flex: 0 0 50px;
  text-align: center;
  line-height: 50px;
}

.compliance-meets-flex-box-icon img {
  width: 50%;
}

.compliance-meets-flex-box-text p {
  font-size: 1em;
  text-align: left;
}

.compliance-meets-flex-box-text h5 {
  font-size: 1.3em;
  margin-bottom: 1%;
  color: #C06C84;
}

.introduction-gaming-operator {
  padding-top: 7%;
  padding-bottom: 7%;
  background: #cec3b3 url(../img/gaming-operator/introduction-gaming-operator.png)top right no-repeat;
}

.introduction-gaming-operator h2 {
  margin-bottom: 3%;
  line-height: 40px;
}

.introduction-gaming-operator p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000000bf;
  letter-spacing: 0.3px;
}

.importance-gaming-operator {
  padding-top: 5%;
  padding-bottom: 5%;
  background: rgb(211, 213, 215);
  background: linear-gradient(0deg, rgba(211, 213, 215, 1) 0%, rgba(255, 255, 255, 1) 37%);
}

.importance-gaming-operator h2 {
  margin-bottom: 1%;
}

.importance-gaming-operator-box {
  background: rgb(192, 108, 132);
  background: linear-gradient(0deg, rgba(192, 108, 132, 1) 0%, rgba(53, 92, 125, 1) 100%);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #0006
}

.importance-gaming-operator-box h5 {
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 5%;
  color: #fff;
}

.importance-gaming-operator-box p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  line-height: 22px;
  letter-spacing: 0.3px;
}

.importance-gaming-operator-box img {
  margin-bottom: 5%;
  width: 20%;
}

.differences-operator {

  padding: 30px;
  margin: 4% 0;
  border-radius: 20px;
  background: #cec3b3 url(../img/gaming-operator/differences-operator.png)top right no-repeat;
}

.differences-operator h3 {
  line-height: 35px;
  margin-bottom: 1%;
}

.differences-operator p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000000bf;
  line-height: 25px;
  letter-spacing: 0.3px;
  text-align: left;
}

.gaming-operator-licenses {

  padding: 0 3px;
}

.gaming-operator-licenses-icon {
  background: rgb(192, 108, 132);
  background: linear-gradient(0deg, rgba(192, 108, 132, 1) 0%, rgba(53, 92, 125, 1) 100%);
  width: 70px;
  height: 70px;
  margin: 5% auto 7%;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
  box-shadow: 3px 3px 5px #00000030
}

.gaming-operator-licenses h5 {
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 3%;
  color: #b26a83;
}

.gaming-operator-licenses p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  line-height: 22px;
  letter-spacing: 0.3px;
}

.gaming-supplier-licenses h3 {
  margin-bottom: 5%;
}

.gaming-supplier-licenses-flex-box {
  display: flex;
}

.gaming-supplier-licenses-flex-box-icon {
  margin-right: 2%;
  flex: 0 0 50px;
}

.gaming-supplier-licenses-flex-box p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  line-height: 22px;
  letter-spacing: 0.3px;
  text-align: left;
}

.gaming-supplier-licenses-flex-box h5 {
  color: #000;
  font-size: 1.3em;
  margin-bottom: 1.5%;
}

.gaming-employee-licenses {
  padding-top: 5%;
  padding-bottom: 5%;
}

.gaming-employee-licenses h3 {
  text-align: center;
  background-color: #cec3b3;
  padding: 10px 5px;
  width: 20%;
  border-radius: 30px;
  margin: 0 auto;
  font-size: 1.3em;
  letter-spacing: 0.5px;
  margin-bottom: 2.5%;
}

.gaming-employee-licenses p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  line-height: 22px;
  letter-spacing: 0.3px;
}

.gaming-employee-licenses h5 {
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 3.5%;
  color: #b26a83;
}

.gaming-employee-licenses-box {
  border: 1px solid #ccc;
  padding: 30px 15px;
  border-radius: 10px;
  background: rgb(211, 213, 215);
  background: linear-gradient(0deg, rgba(211, 213, 215, 1) 0%, rgba(255, 255, 255, 1) 37%);
  height: 320px;
}

.gaming-employee-licenses-box img {
  width: 20%;
  margin-bottom: 5%;
}

.what-gaming-operator {
  padding-top: 5%;
  padding-bottom: 5%;
  background: rgb(11, 12, 33) url(../img/gaming-operator/what-gaming-operator.png?v=2.0)top left no-repeat;
}

.what-gaming-operator-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 3%;
}

.what-gaming-operator h2 {
  color: #bda480;
  margin-bottom: 2%;
  line-height: 40px;
}

.what-gaming-operator h6 {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #fcfbf5;
  line-height: 25px;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 5%;
}

.what-gaming-operator-box p {
  color: #fcfbf5;
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.what-gaming-operator-icon {
  margin-right: 3%;
  width: 50px;
  height: 50px;
  background-color: #bda480;
  border-radius: 100px;
  text-align: center;
  line-height: 50px;
}

.what-gaming-operator-icon img {
  width: 50%;
}



.individual-gaming h3 {
  text-align: center;
  background-color: #cec3b3;
  padding: 10px 5px;
  width: 35%;
  border-radius: 30px;
  margin: 0 auto;
  font-size: 1.3em;
  letter-spacing: 0.5px;
  margin: 2% auto;
}

.individual-gaming h5 {
  text-align: center;
  font-size: 1.2em;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 5%;

}

.individual-gaming span {
  font-weight: 600;
}



.individual-gaming li {
  color: #000;
  font-size: 1.2em;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 2%;
  display: flex;

  border-bottom: 1px dashed #000;
  padding: 1% 0;
}

.individual-gaming li::before {
  background: url(../img/gaming-operator/verify2.png)top left no-repeat;
  width: 40px;
  height: 40px;
  content: '';
  display: block;
  background-size: 77%;
}

.gaming-employee-license2 {
  padding-top: 5%;
  padding-bottom: 5%;
  background: url(../img/gaming-operator/gaming-employee-license2.jpg)bottom right no-repeat;
  background-size: 65%;

}

.gaming-employee-license2-flex {
  display: flex;
  margin-bottom: 4%;
}

.gaming-employee-license2-nu {
  width: 50px;
  height: 50px;
  background: linear-gradient(0deg, rgba(192, 108, 132, 1) 0%, rgba(53, 92, 125, 1) 100%);
  flex: 0 0 50px;
  border-radius: 100px;
  margin-right: 2%;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 2em;
  font-weight: 900;
  box-shadow: 3px 3px 5px #00000030;
}

.gaming-employee-license2 h2 {
  margin-bottom: 2%;
}

.gaming-employee-license2 h6 {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  line-height: 25px;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 5%;
}

.gaming-employee-license2 p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  line-height: 22px;
  letter-spacing: 0.3px;
}

.gaming-employee-license2 h5 {

  font-size: 1.3em;
  margin-bottom: 1%;
  color: #b26a83;
}

.key-person-gaming {
  padding-top: 5%;
  padding-bottom: 25%;
  background: #d6cebc8a url(../img/gaming-operator/key-person-gaming.jpg)bottom center no-repeat;
  background-size: 50%;
}

.key-person-gaming p {
  font-size: 1.2em;
  color: #000000bf;
  margin-top: 2%;
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  line-height: 30px;
}

.key-person-gaming2 {
  padding-top: 5%;
  padding-bottom: 5%;
  background: linear-gradient(0deg, #f1f1f1 0%, rgba(255, 255, 255, 1) 31%);
}

.key-person-gaming2 h2 {
  text-align: left;
  margin-bottom: 3%;
}

.key-person-gaming2 h5 {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  line-height: 25px;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 5%;
  font-weight: 500;
}

.key-person-gaming2 li {
  color: #000;
  font-size: 1em;
  letter-spacing: 0.5px;

  line-height: 25px;
  margin-bottom: 1.2%;
  font-family: "Montserrat", sans-serif !important;
  list-style: disc;
  margin-left: 2.5%;

}

.key-person-gaming2 h3 {
  font-size: 1.5em;
  margin-bottom: 3%;
  color: #b26a83;

}

.key-person-gaming2 p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000000;
  letter-spacing: 0.4px;
  margin-top: 2%;
}

.key-person-gaming2 span {
  font-weight: 800;
}

.typical-roles {
  padding-top: 5%;
  padding-bottom: 5%;
}

.typical-roles-box {
  background-color: #cec3b3;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.19);
  height: 330px;
}

.typical-roles-box h5 {
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 3%;
  color: #173861;
  text-align: left;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.typical-roles-box p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000000bf;
  line-height: 22px;
  letter-spacing: 0.3px;
  text-align: left;
  margin-bottom: 0;
}

.typical-roles-box-icon {
  width: 80px;

  text-align: left;
  margin: 0 0 5% 0;
  border-radius: 50px;
  line-height: 60px;
}

.typical-roles-box-icon img {
  width: 70%;
}

.application-process-flex {
  display: flex;
  background-color: #ffffffb0;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.19);
  margin-bottom: 2%;
}

.application-process-icon {
  width: 70px;
  height: 70px;

  border-radius: 50px;
  text-align: center;
  line-height: 70px;
  flex: 0 0 70px;
  margin-right: 20px;
  background-color: #f1f1f1;

}

.application-process-icon img {
  width: 55%;
}

.application-process-flex h5 {
  text-align: left;
  font-size: 1.2em;
  color: #000;
  text-align: left;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.application-process-flex p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif !important;
  color: #000000bf;
  line-height: 22px;
  letter-spacing: 0.3px;
  text-align: left;
  margin-bottom: 0;
}

.gaming-operator-faq {
  background: rgb(11, 12, 33);
}

.gaming-operator-faq .gcgra-faq .card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: #cec3b3 !important;
  border: 1px solid rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif !important;
  display: block;
}

/*End Gaming Operator & Supplier License */