@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

:root {
  --bgprimary: #0f121e;
  --bgsecondary: #edf2f4;
  --gray: #8c99ae;
  --dark-red: #a4161a;
  --light-red: #ff7777;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  background-color: var(--bgprimary);
}

a {
  text-decoration: none;
  color: #000;
}

.title {
  font-size: 6.2vw;
  font-weight: 400;
}

@media only screen and (max-width: 1025px) {
  .title {
    font-size: 7vw;
  }
}

@media only screen and (max-width: 768px) {
  .title {
    font-size: 8.6vw;
  }
}

.cover {
  max-width: 1400px;
  margin: 0 auto;
}

/* Laptop Navigation */
.vis-search-result {
  max-height: 300px;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-2%) !important;
  z-index: 1;
}

.vis-search-result li {
  padding: 0.5rem;
}

.vis-search-result li a p {
  color: black !important;
}

.vis-search-result li a p:hover {
  color: var(--light-red) !important;
  background-color: var(--bgsecondary) !important;
}

nav {
  background-color: var(--bgprimary);
  color: #fff !important;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

nav .logo {
  max-width: 300px;
  max-height: 100px;
  margin-bottom: -0.8rem;
}

nav .fa-bars {
  color: #fff;
}

nav .links a {
  color: #fff;
  opacity: 0.6;
  font-size: 1.35rem;
  position: relative;
}

nav .links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ff0000;
  margin: 0 auto;
  transition: width 0.3s;
}

nav .links a:hover,
nav .links a.active {
  opacity: 1;
}

nav .links a:hover::after,
nav .links a.active::after {
  width: 100%;
  transition: width 0.3s;
}

nav .search-bar {
  border-radius: 50px;
  padding: 2px 20px;
  border: none;
  background-color: #fff;
  display: flex;
  align-items: center;
  max-width: 200px;
  overflow: hidden;
  font-size: 1.35rem;
}

nav .search-bar input {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
}

nav select {
  background-color: #0f121e;
  color: #fff;
  border: 1px solid #000;
  padding: 2px;
  border-radius: 5px;
  background-color: var(--bgprimary);
  outline: none;
}

nav .dropdown-menu {
  background-color: var(--bgprimary);
  color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 4px 2px rgba(255, 119, 119, 0.46);
  padding: 0.3rem;
  position: absolute;
  left: 0 !important;

  /* transform: translate3d(-32%, 36.5px, 0px) !important; */
}

.nav-item.dropdown {
  position: relative;
}

nav .dropdown-menu {
  position: absolute;
  left: 50% !important;
  top: 100% !important;
  transform: translateX(-50%) !important;
  width: fit-content;
  border: none;
}

nav .country-nav .dropdown-menu {
  left: 25% !important;
  background-color: rgb(37, 37, 37);
  box-shadow: none;
  border-radius: 10px;
}

nav .country-nav a:hover::after {
  display: none;
}

nav .country-nav a {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}

nav .country-nav .dropdown-menu a {
  font-size: 1.2rem;
  text-align: start;
  margin: 0;
  padding: 0.4rem 0.6rem;
}

nav .country-nav .dropdown-menu a:hover {
  background-color: #434343;
  border-radius: 6px;
}

nav .dropdown-menu a {
  text-align: center;
  transition: all 0.3s ease;
  margin: 0.5rem auto;
}

.dropdown-toggle::after {
  border: none;
}

nav .dropdown-menu a:hover {
  color: var(--light-red);
  background-color: transparent;
}

nav .dropdown-menu a::after {
  display: none;
}

#scrollToTopButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1030;
  background-color: var(--dark-red);
  /* Initially hidden */
}

.sticky-container {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Laptop Navigation */

/* Mobile Navigation */
.mob-nav {
  background-color: var(--bgprimary);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.mob-nav img {
  max-width: 100px;
}

.mob-nav .fa-bars {
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 11;
}

.mob-nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bgprimary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: translateY(-100%);
  transition: all 0.5s ease;
}

.mob-nav-links a {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
}

.mob-nav-links a:hover {
  color: var(--light-red);
}

.mob-nav-links .active {
  color: var(--light-red);
}

.mob-nav-links .dropdown .dropdown-menu {
  background-color: rgb(37, 37, 37);
  left: -50% !important;
}

.mobile-search-bar {
  border-radius: 50px;
  padding: 5px 10px;
  border: none;
  background-color: #fff;
  display: flex;
  align-items: center;
  max-width: 200px;
  overflow: hidden;
  min-height: 50px;
}

.mobile-search-bar input {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
}

.mobile-vis-search-result {
  position: absolute;
  max-height: 150px;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  bottom: 0;
  transform: translateX(-9%) !important;
  transform: translateY(92%) !important;
  margin-top: 12rem;
  z-index: 1;
}

.mobile-vis-search-result li {
  padding: 0.3rem;
}

.mobile-vis-search-result li a p {
  color: black !important;
  font-size: small;
}

.mobile-vis-search-result li a p:hover {
  color: var(--light-red) !important;
  background-color: var(--bgsecondary) !important;
}

.mob-nav-links select {
  background-color: #0f121e;
  color: #fff;
  border: 1px solid #ffffff;
  padding: 2px;
  border-radius: 5px;
  background-color: #252a46;
  outline: none;
  margin-bottom: 1rem;
}

.mob-nav.active .mob-nav-links {
  transform: translateY(0);
}

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  z-index: 11;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ffffff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Mobile Navigation */

/* Connect */
.connect {
  background-color: var(--bgsecondary);
}

.connect .input-border {
  width: 5px;
  height: 40px;
  background-color: var(--light-red);
  display: block;
  border-radius: 10px;
  margin-right: 1rem;
}

.connect input,
.connect select,
.connect textarea {
  background-color: var(--bgsecondary);
  padding: 0.3rem;
  outline: none;
  width: 100%;
  color: #000;
  border: none;
  border-bottom: 2px solid #6b6b72ba;
  border-radius: 0;
  margin: 1rem 0;
}

.connect select {
  padding: 0.3rem 0;
}

.connect input:focus {
  border-bottom-color: #3d3f48;
}

.connect button {
  font-size: 1.4rem;
  background-color: var(--light-red);
  padding: 12px 30px;
  border: none;
  border-radius: 16px;
  width: fit-content;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #fff;
}

.connect button i {
  margin-left: 0.5rem;
  transition: 0.3s ease;
}

.connect button:hover i {
  margin-left: 1rem !important;
}

.connect .col-md-12:last-child .input-border {
  height: 100px;
}

@media only screen and (max-width: 768px) {

  .connect input,
  .connect select,
  .connect textarea {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .connect .col-md-12 .input-border {
    height: 2.3rem;
    width: 5px;
  }

  .connect button {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
}

/* Connect */

/* Footer */
.footer {
  background-color: var(--bgprimary);
  color: #fff;
  overflow-x: hidden;
}

.footer h4 {
  font-weight: 400;
  color: var(--light-red);
  margin-bottom: 1.5rem;
}

.footer a {
  color: #c7c4c7;
  font-size: 1.3rem;
  font-weight: 400;
}

.footer a:hover {
  color: var(--light-red);
}

.footer .social a {
  font-size: 2rem;
  margin-left: 0.7rem;
  background-color: #ffffff2b;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 6px;
}

.footer .social a:hover {
  background-color: #ffffff6f;
}

@media only screen and (max-width: 768px) {
  .footer .social a {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* Footer */

/* Common Hero */
.common-hero {
  background-color: var(--bgprimary);
  color: #fff;
  padding: 5rem 0;
  padding-bottom: 0;
  text-align: center;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.common-hero h1 {
  font-size: 8vw;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0 0.2em;
  border-left: none;
  border-top: none;
}

.common-hero .bottom-line {
  background-image: url(../assets/Bottom-line.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: fit-content;
  height: fit-content;
}

@media only screen and (max-width: 1024px) {
  .common-hero {
    height: 40vh;
  }

  .common-hero h1 {
    font-size: 12vw;
  }
}

/* Common Hero */

/* Common Red Nav */
.common-red-nav {
  background-color: var(--dark-red);
  color: #fff;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 2.2vw;
  padding: 1.5rem 1rem;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  text-align: center;
  margin-top: -0.5rem;
}

.common-red-nav .row .col-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.common-red-nav a {
  color: #fff;
  text-align: center;
  font-weight: 400;
  cursor: pointer;
}

.common-red-nav .row .col-4:nth-child(2),
.common-red-nav .row .col-4:nth-child(5) {
  position: relative;
}

.common-red-nav .row .col-4:nth-child(2)::before,
.common-red-nav .row .col-4:nth-child(5)::before {
  content: "";
  border-left: 4px solid #fff;
  height: 30px;
  position: absolute;
  left: 0;
  border-radius: 10px;
}

.common-red-nav .row .col-4:nth-child(2)::after,
.common-red-nav .row .col-4:nth-child(5)::after {
  content: "";
  border-left: 4px solid #fff;
  height: 30px;
  position: absolute;
  right: 0;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  .common-red-nav {
    padding: 1rem 0;
  }

  .common-red-nav a {
    font-size: 3.1vw;
    font-weight: 600;
  }

  .common-red-nav .row .col-4:nth-child(2)::before,
  .common-red-nav .row .col-4:nth-child(5)::before {
    height: 20px;
    border: 1px solid #fff;
  }

  .common-red-nav .row .col-4:nth-child(2)::after,
  .common-red-nav .row .col-4:nth-child(5)::after {
    height: 20px;
    border: 1px solid #fff;
  }
}

/* Common Red Nav */

/* Nav-title */

.nav-title {
  margin: 5% 0;
}

.nav-title h1 {
  font-size: 4vw;
  font-weight: 600;
  color: #fff;
  border: 0.1em solid #fff;
  padding: 0.1em 0.3em;
  border-left: none;
  border-top: none;
  width: fit-content;
}

.nav-title button {
  background-color: #fff;
  padding: 16px 38px;
  border: none;
  border-radius: 50px;
  width: fit-content;
  font-weight: 400;
  transition: all 0.3s ease;
  margin-top: 1rem;
  font-size: 2vw;
  outline: none;
}

@media only screen and (max-width: 768px) {
  .nav-title h1 {
    font-size: 5vw;
  }

  .nav-title button {
    font-size: 3vw;
    padding: 10px 20px;
    margin-top: 6px;
  }
}

/* Nav-title */

/* Nav Description */
.nav-description {
  background-color: #383d4a;
  padding: 2rem 0;
  color: #fff;
}

.nav-description h1 {
  font-size: 4vw;
  font-weight: 600;
  width: 70vw;
  text-align: center;
  margin: 0 auto;
}

.nav-description p {
  font-size: 1.5vw;
}

@media only screen and (max-width: 768px) {
  .nav-description {
    padding: 2rem 0;
  }

  .nav-description h1 {
    font-size: 6vw;
    width: 90vw;
  }

  .nav-description p {
    font-size: 4vw;
  }
}

/* Nav Description */

/* Future Insights */
.future {
  background-color: #fff;
  color: #000;
  position: relative;
  padding: 5vw 4vw;
}

.future h1 {
  font-size: 4vw;
  font-weight: 600;
}

.future .color-dots {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 1rem;
}

.future .color-dots .dot {
  width: 14px;
  height: 14px;
  background-color: #fe6666;
  border-radius: 50%;
  display: inline-block;
  margin: 0 0.5rem;
}

.future .f-card {
  background-color: #f5f3f4;
  padding: 1.5rem;
  border-radius: 26px;
  box-shadow: 8px 8px 7px rgba(0, 0, 0, 0.383);
  min-height: 515px;
  max-width: 400px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.future .f-card:hover {
  border: 2px solid #000;
  transform: scale(1.02);
}

.future .f-card .cover {
  width: 100%;
  height: 200px;
  background-color: #000;
  border-radius: 22px;
  margin-bottom: 1rem;
}

.future .f-card .badge {
  background-color: #d3d3d3;
  width: 100%;
  border-radius: 50px;
  text-align: center;
  font-size: 1.4vw;
  color: #000;
  font-weight: 400;
  padding: 0.6rem 0;
  font-weight: 300;
}

.future .f-card p {
  font-size: 1.4vw;
  margin: 1rem 0;
}

.future .f-card button {
  background-color: #fe6666;
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  width: fit-content;
  font-weight: 400;
  transition: all 0.3s ease;
  color: #fff;
}

.future.initiative .f-card {
  max-width: none !important;
}

.future.initiative .f-card button {
  background-color: #15daff !important;
  color: #000 !important;
}

.future.initiative .f-card button:hover {
  background-color: #000000 !important;
  color: #fff !important;
}

.future .row .col-md-6:nth-child(1)>.f-card .cover {
  background-color: #06b087;
}

.future .row .col-md-6:nth-child(1)>.f-card button {
  background-color: #ffe500;
  color: #000;
}

.future .row .col-md-6:nth-child(2)>.f-card .cover {
  background-color: #ead72b;
}

.future .row .col-md-6:nth-child(2)>.f-card button {
  background-color: #6691fe;
}

.future .row .col-md-6:nth-child(3)>.f-card .cover {
  background-color: #d9d9d9;
}

.future .row .col-md-6:nth-child(3)>.f-card button {
  background-color: #15cd8b;
}

.blog-btn {
  background-color: #ffe500 !important;
  color: black !important;
  transition: all 0.3s ease;
}

.blog-btn:hover {
  background-color: black !important;
  color: white !important;
}

.info-graphic-btn {
  background-color: #6691fe !important;
  color: white !important;
  transition: all 0.3s ease;
}

.info-graphic-btn:hover {
  background-color: black !important;
  color: white !important;
}

.video-btn {
  background-color: #274c77 !important;
  color: white !important;
  transition: all 0.3s ease;
}

.video-btn:hover {
  background-color: black !important;
  color: white !important;
}

.case-study-btn {
  background-color: #15cd8b !important;
  color: black !important;
  transition: all 0.3s ease;
}

.case-study-btn:hover {
  background-color: black !important;
  color: white !important;
}

@media only screen and (max-width: 768px) {
  .future {
    padding: 10vw 4vw;
    padding-bottom: 20vw;
  }

  .future h1 {
    font-size: 8vw;
  }

  .future .color-dots .dot {
    width: 10px;
    height: 10px;
    margin: 0 0.3rem;
  }

  .future .f-card {
    min-height: 515px;
    max-width: 400px;
  }

  .future .f-card .cover {
    border-radius: 18px;
  }

  .future .f-card .badge {
    font-size: 3vw;
    padding: 0.5rem 0;
  }

  .future .f-card p {
    font-size: 4vw;
  }
}

/* Future Insights */

/* Mis */
.nav-title button:hover {
  transform: scale(0.9);
}

/* Mis */

/* CTA */
.cta {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 8vw 4vw;
  color: #fff;
}

.cta .title {
  font-size: 3.5vw;
}

.cta button {
  background-color: #ffffff;
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  width: fit-content;
  font-weight: 400;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 1.4vw;
  transition: all 0.3s ease;
  transform: scale(1.1);
}

.cta button:hover {
  transform: scale(0.9);
}

@media screen and (max-width: 768px) {
  .cta button {
    font-size: 3vw;
    margin-top: 1rem;
  }

  .cta .title {
    font-size: 6vw;
    text-align: center;
  }
}

/* CTA */