/*Fonts*/

@font-face {
    font-family: Daikon-black;
    src: url('../fonts/daikon/Daikon-Black.ttf');
}

@font-face {
    font-family: Daikon-bold;
    src: url('../fonts/daikon/Daikon-Bold.ttf');
}

@font-face {
    font-family: Daikon-light;
    src: url('../fonts/daikon/Daikon-Light.ttf');
}

@font-face {
    font-family: Daikon-medium;
    src: url('../fonts/daikon/Daikon-Medium.ttf');
}

@font-face {
    font-family: Daikon-regular;
    src: url('../fonts/daikon/Daikon-Regular.ttf');
}

@font-face {
    font-family: Daikon-semibold;
    src: url('../fonts/daikon/Daikon-SemiBold.ttf');
}

@font-face {
    font-family: Daikon-thin;
    src: url('../fonts/daikon/Daikon-Thin.ttf');
}

@font-face {
    font-family: Daikon-light;
    src: url('../fonts/daikon/Daikon-Light.ttf');
}

@font-face {
    font-family: Inter-Black;
    src: url('../fonts/Inter/Inter-Black.ttf');
}

@font-face {
    font-family: Inter-Bold;
    src: url('../fonts/Inter/Inter-Bold.ttf');
}

@font-face {
    font-family: Inter-ExtraBold;
    src: url('../fonts/Inter/Inter-ExtraBold.ttf');
}

@font-face {
    font-family: Inter-ExtraLight;
    src: url('../fonts/Inter/Inter-ExtraLight.ttf');
}

@font-face {
    font-family: Inter-Light;
    src: url('../fonts/Inter/Inter-Light.ttf');
}

@font-face {
    font-family: Inter-Medium;
    src: url('../fonts/Inter/Inter-Medium.ttf');
}

@font-face {
    font-family: Inter-Regular;
    src: url('../fonts/Inter/Inter-Regular.ttf');
}

@font-face {
    font-family: Inter-SemiBold;
    src: url('../fonts/Inter/Inter-SemiBold.ttf');
}

@font-face {
    font-family: Inter-Thin;
    src: url('../fonts/Inter/Inter-Thin.ttf');
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

input:disabled {
    color: black;
    opacity: 0.3 !important;
}

p {
    font-family: Daikon-regular;
    font-size: 16px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #106eea;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

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


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ED3125;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    text-decoration: none;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ED3125;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    height: 75px;
    position: absolute;
    width: 100%;
    top: 0;
    background: #fff;
}

#header.fixed-top {
    height: 70px;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
}

/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.fa-times{
    color: #fff !important;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ee2e24;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ee2e24;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ee2e24;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 95vh;
    background: url(../img/Banner.png) top left;
    background-size: 100% 100%;
    position: relative;
    margin-top: 75px;
}

.hero-content {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.hero-content h2 {
    font-family: Inter-Black;
    font-size: 48px;
    text-shadow: 2px 2px 3px #000000;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: Inter-Regular;
    font-size: 22px;
}

.count-box {
    color: #fff;
    text-align: center;
    height: 100%;
    border-right: 3px solid #bdbdbd;
}

.count-box-main:nth-child(3) .count-box {
    border-right: none;
}

.hero-counter .col-lg-3 {
    padding: 0;
}

.count-box span {
    font-size: 30px;
    font-weight: 600;
}

.count-box p {
    margin-bottom: 0;
}

.count-num span {
    font-size: 36px;
    font-family: Inter-Bold;
}

.count-box p {
    font-family: Inter-Regular;
    font-size: 24px;
}


/*Get in touch section*/

.col-md-6.tacbox label {
    width: fit-content;
}

.tacbox {
    display: inherit;
}

.get-in-touch-form form h3 {
    font-family: Daikon-bold;
    color: #ED3125;
    font-size: 36px;
    margin-bottom: 20px;
}

.get-in-touch-form {
    background: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    padding: 25px;
    border-radius: 5px;
}

.get-in-touch-form .term-check {
    height: 2em;
    width: 6em;
    vertical-align: middle;
    margin-right: 6px;
}

.get-in-touch-form label {
    font-size: 15px;
}

form.get-in-touch-bottom .term-check {
    height: 2em;
    width: 2em;
    vertical-align: middle;
    margin-right: 10px;
}

.get-in-touch-content h2 {
    font-family: Daikon-bold;
    color: #ED3125;
    font-size: 36px;
}

.get-in-touch-form .form-control:focus,
.get-in-touch-bottom .form-control:focus {
    color: #212529;
    background-color: #f5f5f5;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

.get-in-touch-form input.form-control,
.get-in-touch-form textarea.form-control {
    background: #f5f5f5;
    font-size: 14px;
    border: none;
    padding: 7px;
}

.get-in-touch-form button {
    width: fit-content;
    background: #ED3125;
    border: #ED3125;
    padding: 13px 55px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    color: #fff;
    border-radius: 5px;
}

.get-in-touch-bottom button {
    width: fit-content;
    background: #ED3125;
    border: #ED3125;
    padding: 13px 55px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    color: #fff;
    border-radius: 5px;
}

.get-in-touch-title h2 {
    font-family: Daikon-bold;
    color: #ED3125;
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

form.get-in-touch-bottom {
    background: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    padding: 30px;
    border-radius: 5px;
}

form.get-in-touch-bottom input.form-control,
form.get-in-touch-bottom textarea.form-control {
    background: #f5f5f5;
    font-size: 14px;
    border: none;
    padding: 9px;
}

textarea.form-control {
    padding: 6px !important;
}


/*Our Clients*/

.brand-col {
    position: relative;
}

.brand-col .brand-box {
    text-align: center;
    aspect-ratio: 4/2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
}

.brand-col::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    bottom: -20px;
    right: -20px;
    z-index: 9;
}

.brand-col .brand-box img {
    transition: transform .5s;
}

.brand-col:nth-child(11) .brand-box,
.brand-col:nth-child(12) .brand-box,
.brand-col:nth-child(13) .brand-box,
.brand-col:nth-child(14) .brand-box,
.brand-col:nth-child(15) .brand-box {
    border-bottom: none;
}

.brand-col:nth-child(5) .brand-box,
.brand-col:nth-child(10) .brand-box,
.brand-col:nth-child(15) .brand-box {
    border-right: none;
}

.our-clients-title h2 {
    font-family: Daikon-bold;
    color: #ED3125;
    font-size: 36px;
}

.our-clients-title {
    text-align: center;
    margin-bottom: 30px;
}


/*Pioneering section*/

.pioneering-title h2 {
    font-family: Daikon-bold;
    color: #ED3125;
    font-size: 34px;
}

.pioneering-title {
    text-align: center;
}

.pioneering-title {
    text-align: center;
    margin-bottom: 35px;
}

.pioneering-content h2 {
    font-family: Daikon-semibold;
    font-size: 24px;
}

.pioneering-content a {
    width: fit-content;
    background: #ED3125;
    border: #ED3125;
    padding: 13px 55px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
    font-family: Daikon-regular;
    font-size: 18px;
    border-radius: 5px;
}

.pioneering-content p {
    margin-bottom: 25px;
}

.pioneering .pioner {
    margin-left: 20px;
}

.pioneering .pio-content {
    margin-right: 20px;
}


/*potentials*/

section#unlocking-potentials {
    position: relative;
}

.potentials-box span {
    font-family: Daikon-medium;
    font-size: 18px;
}

.potentials-left-2.potentials-box {
    position: absolute;
    bottom: 15%;
    width: 34%;
}

.potentials-right-3.potentials-box {
    position: absolute;
    width: 34%;
    bottom: 1%;
}

.unlocking-potentials-img img {
    width: 110%;
}

.potentials-right-2.potentials-box {
    position: absolute;
    width: 34%;
    top: 50%;
}

.potentials-left-1.potentials-box {
    position: absolute;
    width: 34%;
    top: 34%;
}


/*Types of Indices*/

section#types-of-indices {
    background: #395FD2;
    color: #fff;
}

.types-of-indices-title {
    text-align: center;
    margin-bottom: 10px;
}

.types-box {
    text-align: center;
    background: #fff;
    color: #395FD2;
    padding: 20px;
    margin-top: 25px;
    border-bottom: 4px solid #ED3125;
    border-radius: 5px;
}

.types-box p {
    margin-bottom: 0;
}

.box1:hover {
    transition: 0.5s;
    background-image: url('../img/Indices/Benchmark Indices.png');
    background-size: cover;
}

.box2:hover {
    transition: 0.5s;
    background-image: url('../img/Indices/ESG Indices.png');
    background-size: cover;
}

.box3:hover {
    transition: 0.5s;
    background-image: url('../img/Indices/Income Indices.png');
    background-size: cover;
}

.box4:hover {
    transition: 0.5s;
    background-image: url('../img/Indices/Strategy Indices.png');
    background-size: cover;
}

.box5:hover {
    transition: 0.5s;
    background-image: url('../img/Indices/Thematic Indices.png');
    background-size: cover;
}

.box6:hover {
    transition: 0.5s;
    background-image: url('../img/Indices/Digital Asset Indices.png');
    background-size: cover;
}

.types-box:hover {
    color: #fff;
    transition: 0.5s;
    border-bottom: none;
}

section#types-of-indices a {
    width: fit-content;
    background: #ED3125;
    border: #ED3125;
    padding: 13px 55px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
    font-family: Daikon-regular;
    font-size: 18px;
    border-radius: 5px;
}

.unlocking-potentials-title {
    text-align: center;
}

.unlocking-potentials-title h2 {
    font-family: Daikon-bold;
    color: #ED3125;
    font-size: 36px;
}

.unlocking-potentials-title img {
    margin-bottom: 25px;
}

.potentials-box h3 {
    color: #395FD2;
    font-size: 24px;
    font-family: Daikon-bold;
}

.potentials-box p {
    font-size: 16px;
    font-family: Daikon-regular;
}

.potentials-box.text-center img {
    margin-bottom: 15px;
}

.potentials-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    position: relative;
}

.unlocking-potentials .unlocking-potentials-title p {
    margin-bottom: 40px;
}

.unlocking-potentials {
    background-color: #f6f6f6;
}

.potentials-box img {
    margin-bottom: 20px;
}

.potentials-box:hover:before {
    content: "";
    position: absolute;
    background-color: #395fd2;
    width: 100%;
    height: 10px;
    bottom: 0px;
    right: 0;
    box-shadow: 0px 0px 6px 0px #9999;
    opacity: 1;
}

.potentials-box:hover {
    box-shadow: 0px 0px 6px 0px #9999;
}

.potentials-box:before {
    content: "";
    position: absolute;
    background-color: #395fd2;
    width: 100%;
    height: 10px;
    bottom: 0px;
    right: 0;
    /* box-shadow: 0px 0px 6px 0px #9999; */
    transition: opacity 0.3s ease;
    opacity: 0;
}

.learn-more {
    width: fit-content;
    background: #ED3125;
    border: #ED3125;
    padding: 13px 55px;
    text-align: center;
    margin: 0 auto;
    color: #fff !important;
    text-decoration: none;
    font-family: Daikon-regular;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 30px;
}

input#submitButton {
    width: fit-content;
    background: #ED3125;
    border: #ED3125;
    padding: 13px 55px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    color: #fff;
    border-radius: 5px;
}

input#SubmitButton {
    width: 100%;
    background: #ED3125;
    border: #ED3125;
    padding: 13px 55px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    color: #fff;
    border-radius: 5px;
}

input#SubmitButton {
    margin-top: 0px;
}


/*Footer*/

footer#footer {
    background: #395FD2;
    color: #fff;
    position: absolute;
    width: 100%;
}

.copyright {
    text-align: center;
    padding: 15px;
}

.copyright p {
    margin: 0;
}

.copyright p {
    margin: 0;
    font-family: Daikon-regular;
    font-size: 18px;
}


/*Thankyou page*/

#thank-you-header {
    transition: all 0.5s;
    z-index: 997;
    height: 100px;
    position: absolute;
    width: 100%;
    top: 0;
    background: #294B81;
    position: absolute;
    top: 0;
}

footer#thank-you-footer {
    background: #395FD2;
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
}

section.thank-you {
    height: calc(100vh - 0px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header#thank-you-header img {
    max-height: 40px;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px !important;
    }
    .potentials-left-2.potentials-box {
        left: 10%;
    }
    .potentials-left-1.potentials-box {
        left: 10%;
    }
}

@media (min-width: 1200px) {
    section#unlocking-potentials .container {
        max-width: 1140px;
    }
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 990px;
    }
}

@media screen and (max-width: 1199.98px) {
    #hero {
        width: 100%;
        height: 45vh;
    }
    .potentials-left-2.potentials-box {
        position: absolute;
        bottom: 7%;
        width: 34%;
    }
    .hero-content h2 {
        font-size: 42px;
    }
    .count-box p {
        font-size: 20px;
    }
    .tacbox {
        padding-left: 30px;
    }
    .potentials-right-3.potentials-box {
        position: absolute;
        width: 34%;
        bottom: -2%;
    }
}

@media screen and (max-width: 801px) {
    .g-recaptcha {
        margin-bottom: 17px;
    }
    input#SubmitButton {
        margin-top: 20px;
    }
    .brand-col:nth-child(2) .brand-box,
    .brand-col:nth-child(4) .brand-box,
    .brand-col:nth-child(6) .brand-box,
    .brand-col:nth-child(8) .brand-box,
    .brand-col:nth-child(12) .brand-box,
    .brand-col:nth-child(14) .brand-box {
        border-right: 1px solid #bfbfbf;
    }
    .brand-col:nth-child(11) .brand-box,
    .brand-col:nth-child(12) .brand-box,
    .brand-col:nth-child(13) .brand-box,
    .brand-col:nth-child(14) .brand-box {
        border-bottom: none;
    }
    .brand-col:nth-child(5) .brand-box,
    .brand-col:nth-child(10) .brand-box {
        border-right: none;
    }
    .count-box-main:nth-child(2) .count-box {
        border-right: 3px solid #bdbdbd;
    }
    .count-box {
        border-bottom: none;
    }
    #hero {
        width: 100%;
        height: auto;
    }
    /*#header {
        height: auto;
    }*/
    .get-in-touch-content h2 {
        font-size: 27px;
    }
    .pioneering-content p {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .pioneering-content h2 {
        font-size: 22px;
    }
    .pioneering-title h2 {
        font-size: 28px;
    }
    .brand-col .brand-box img {
        max-width: 70%;
    }
}

@media screen and (max-width: 767.98px) {
    section {
        padding: 30px 0;
        overflow: hidden;
    }
    #header {
        height: 60px;
    }
    #header .logo img {
        width: 60%;
    }
    /*#header nav ul {
        display: unset;
    }*/
    /*#header nav li {
        padding: 0px 0px;
        margin: 10px 0px;
    }
    #header nav li a {
        font-size: 11px;
    }*/
    #hero {
        height: 100%;
        background-size: cover;
    }
    .hero-content h2 {
        font-size: 38px;
        margin-top: 20px;
    }
    .count-box {
        padding: 10px;
    }
    .count-box-main:nth-child(2) .count-box {
        border-right: none;
    }
    .count-box-main:nth-child(3) .count-box,
    .count-box-main:nth-child(4) .count-box {
        border-bottom: none;
    }
    .g-recaptcha {
        margin-bottom: 15px;
    }
    .pioneering-content {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .types-box {
        height: 85px;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .brand-col:nth-child(5) .brand-box {
        border-right: 1px solid #bfbfbf;
    }
    .brand-col:nth-child(11) .brand-box,
    .brand-col:nth-child(12) .brand-box,
    .brand-col:nth-child(13) .brand-box,
    .brand-col:nth-child(14) .brand-box {
        border-bottom: 1px solid #bfbfbf;
    }
    .brand-col:nth-child(2) .brand-box,
    .brand-col:nth-child(4) .brand-box,
    .brand-col:nth-child(6) .brand-box,
    .brand-col:nth-child(8) .brand-box,
    .brand-col:nth-child(10) .brand-box,
    .brand-col:nth-child(12) .brand-box,
    .brand-col:nth-child(14) .brand-box {
        border-right: none;
    }
    .col-md-6.tacbox label {
        margin-left: 0;
    }
    input#SubmitButton {
        margin-top: 20px;
    }
    .get-in-touch-content h2 {
        font-size: 30px;
    }
    .get-in-touch-form form h3 {
        text-align: center;
        font-size: 30px;
    }
    .unlocking-potentials-title h2 {
        font-size: 30px;
    }
    .pioneering-title h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .our-clients-title h2 {
        font-size: 30px;
    }
    .get-in-touch-title h2 {
        font-size: 30px;
    }
    .pioneering .pioner {
        margin-left: unset;
    }
}