:root{
  font-size: 62.5%;
  --primary-color: #171A12;
  --dark-color: #171A12;
  --text-color: #2c3e50;
  --ylw-color: #B68036;
  --drk-grn-color: #484E25;
  --white-color: #ffffff;
  --black-color: #000000;
  --clrGray: #F4F4F4;
  --clrGray2: #e8eaea;
  --clrGray3: #b9bab8;
  --green-bg: #484E25;
  --yellow-bg: #B68036;
  --light-bg: #577B86;
  --dark-color2: #1A393B;
  --primary-font:"Manrope",sans-serif;
  --secondary-font:"arial", sans-serif;
  --gap: 15px;
  --radius: 0.25rem;

  /* Column Width Variables */
  --full-column: 100%;
  --half-column: 50%;
  --third-column: 33.33%;
  --quarter-column: 25%;
  --two-thirds-column: 66.66%;

  /* Container Space */
  --con-width: 143rem;
  --con-small-width: 124rem;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-font);
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
}
img{
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  color: var(--primary-color);
}

h1 {
  font-size: 9.6rem;
  font-weight: 700;
  line-height: 10rem;
}

.h1-title{
  font-weight: 700;
  font-size: 7.6rem;
  line-height: 1.15;
}

.h2, h2 {
  line-height: 1.35;
  color: var(--dark-color);
  font-size: 42px;
  font-weight: 400;
}

.h2-title{
  font-size: 3.2rem;
  line-height: 1.35;
  font-weight: 400;
}
.h3-title{
  font-size: 24px;
  line-height: 1.1;
}
h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.5;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.6;
}

h6 {
  font-size: 1rem;
  line-height: 1.6;
}

.sm-title{
  font-size: 2.2rem;
  line-height: 1.4;
}

.xs-title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 4px;
  text-transform: uppercase;
}

p {
  font-family: var(--primary-font);
  font-size: 1.8rem;
  line-height: 1.4;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

.container {
  max-width: var(--con-width);
  padding-inline: 15px;
  margin-inline: auto;
  position: relative;
  width: 100%;
}

.small-container {
  max-width: var(--con-small-width);
  padding-inline: 15px;
  margin-inline: auto;
  position: relative;
  width: 100%;
}


.btn {
  background-color: var(--dark-color);
  border: 1px solid var(--dark-color);
  color: var(--dark-color);
  cursor: pointer;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  padding: 1.05rem 2rem;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease all;
  display: inline-block;
}

.btn:hover,
.btn:focus{
  background-color: var(--dark-color);
  border: 1px solid var(--dark-color);
  color: var(--white-color);
  cursor: pointer;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  /*   padding: 1.2rem 2.0rem; */
  text-decoration: none;
  font-weight: 700;
}

.outline-btn-light {
  border: 1px solid var(--dark-color);
  background-color: var(--white-color);
}

.outline-btn-light:hover {
  /*   border: 1px solid var(--dark-color); */
  color: var(--dark-color);
  background-color: var(--white-color);
}

.outline-btn-light svg path {
  stroke: var(--dark-color);
}

.outline-btn-light:hover svg path {
  stroke: var(--white-color);
}

.outline-btn-light:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
}

.outline-btn-light svg {
  position: relative;
  top: -2px;
}

.outline-btn-light:focus path {
  stroke: var(--white-color);
}

.dark-btn {
  color: var(--white-color);
}
.dark-btn .btn-arrow {
  position: relative;
  top: -2px;
}

.dark-btn:hover {
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
  background-color: transparent;
}

.dark-btn:hover svg path {
  stroke: var(--dark-color) !important;
}


.btn svg {
  vertical-align: middle;
  width: 16px;
  position: relative;
}

.btn span {
  padding-left: 30px;
}

.btn svg {
  vertical-align: middle;
  width: 16px;
}

.btn-white {
  background-color: var(--white-color);
  border-color: var(--white-color);
}

.btn-white:hover {
  background-color: transparent;;
  border-color: var(--white-color);
}

.btn-white:hover svg path {
  fill: var(--white-color);
  stroke: var(--white-color);
}

.btn-white svg {
  position: relative;
  top: -2px;
}

.text-btn {
  cursor: pointer;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  padding: 1.05rem 2rem;
  transition: all .3s ease;
  text-decoration: none;
  color: var(--dark-color);
}

.text-btn:hover{
  font-weight: 700 !important;
  text-decoration: none;
}

.text-btn svg {
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.dark-bg{
  background-color: var(--dark-color);
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex__nowrap {
  flex-wrap: nowrap;
}

.flex__aic {
  align-items: center;
}

.flex__jcc {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-cnt {
  justify-content: center;
}

.item-center {
  align-items: center;
}

.item-end {
  align-items: end;
}

.text-white {
  color: var(--white-color);
}

.text-black {
  color: var(--black-color);
}

.text-dark{
  color: var(--dark-color);
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

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

.flow-hidden {
  overflow: hidden;
}
.flex__gap{
  margin-inline: -7px;
}
.flex__gap>*{
  padding-inline: 7px;
}
.w-25{
  width: 25%;
}

.w-50{
  width: 50%;
}

.w-75{
  width: 75%;
}

.w-100{
  width: 100%;
}

.pt-10{
  padding-top: 10rem;
}

.pt-8{
  padding-top: 8rem;
}

.pt-5{
  padding-top: 5rem;
}

.pt-2{
  padding-top: 2rem;
}

.pb-10{
  padding-bottom: 10rem;
}

.pb-5{
  padding-bottom: 5rem;
}

.pb-2{
  padding-bottom: 2rem;
}

.pl-7{
  padding-left: 6rem;
}

form {
  background-color: transparent !important;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form select,
form textarea {
  background: var(--white);
  padding: 0.4rem 1.5rem;
  border: 1px solid var(--clrGray2) !important;
  border-radius: var(--radius);
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  min-height: 48px;
  color: var(--clrGray3);
  font-weight: 600;
}

form input::placeholder,
form input::-ms-input-placeholder{
  color: var(--white);
}

form input[type=submit] {
  background-color: var(--dark-color);
  border: 1px solid var(--dark-color);
  border-radius: 0;
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 14px 40px;
  text-decoration: none;
  text-transform: none;
}

form input[type=submit]:hover {
  border: 1px solid var(--dark-color);
}

/* .container,
.page-center{
margin-inline: auto;
width: min( 1400px,100%);
padding-inline: var(--gap);
} */
.bg-cover{
  background-size: cover;
  background-position: center;
}
.overlay{
  position: relative;
  isolation: isolate;
}
.overlay::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(23, 26, 18, 0.4);
  z-index: -1;
}
p{
  margin-bottom: 10px;
}
p:last-of-type{
  margin-bottom: 0;
}

.gray-bg{
  background-color: var(--clrGray);
}
.yellow-bg{
  background-color: var(--yellow-bg);
}
.green-bg{
  background-color: var(--green-bg);
}
.light-bg{
  background-color: var(--light-bg);
}

/* header style */
header{
  position: relative;
}


header .header__navigation .menu__link {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 3.4rem;
  text-transform: none;
}

header nav > ul > li:nth-last-child(2){
  border-left: 2px solid var(--clrGray);
  padding-left: 2.4rem;
  margin-left: 0.9rem;
}

header nav ul li:nth-last-child(2) .menu__link,
header nav ul li:last-child .menu__link{
  opacity: 0.5;
  font-weight: 400;
}
header .header__navigation .menu__link:hover {
  color: var(--dark-color2);
}
.header__logo--main {
  border-right: 1.5px solid var(--clrGray);
  padding-right: 24px;
}

.header__navigation .menu__item:last-child {
  padding-right: 10px;
}

.header__navigation .menu__item:last-child .menu__link:after {
  content: '';
  background-image: url('https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/menu-arrow.svg');
  position: relative;
  width: 12px;
  height: 10px;
  display: inline-block;
  background-size: contain;
  left: 8px;
  top: -1px;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.header__right .dropdown-item__desc a{
  position: static;
}

.header__right .dropdown-item__desc a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.header__inner {
  padding-block: 1.65rem;
  border-top: 1.5px solid var(--clrGray);
}

header .header__navigation .menu__link {
  font-weight: 700;
}

.header__inner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header__left {
  max-width: 324px;
  width: 100%;
}

.header__row-1{
  padding: 0px;
  margin: 0px;
}

.header__navigation ul li {
  padding-block: 0px;
}

.header__top-widget {
  padding-block: 1rem;
}

.header-logo {
  height: 100%;
  align-items: center;
  display: flex;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img{
  vertical-align: center;
}

.header__right {
  width: calc(100% - 324px);
}
.header__navigation .menu {
  margin-bottom: 0;
}
.header__inner nav ul li {
  padding-block: 0;
  padding-inline: 1.2rem;
  display: inline-block;
}

.tp-nav__menu .hs-menu-item a {
  font-size: 14px;
  font-family: var(--primary-font);
  font-weight: 500;
  line-height: 2.2rem;
  text-decoration: none;
  color: var(--clrPrimary);
  opacity: 0.5;
}

.tp-nav__menu .hs-menu-item {
  padding-inline: 17px;
  line-height: 1;
}

.tp-nav__menu .hs-menu-item:last-child {
  padding-right: 0px;
}

.tp-nav__menu ul {
  justify-content: end;
}

.tp-nav__menu li:first-child a {
  position: relative;
}

.tp-nav__menu li:first-child a {
  padding-right: 5px;
}

.tp-nav__menu li:first-child a:after {
  content: '';
  background-image: url('https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/menu-arrow.svg');
  position: relative;
  width: 12px;
  height: 10px;
  display: inline-block;
  background-size: contain;
  left: 4px;
  top: -1px;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.tp-nav__menu .hs-menu-item:last-child a {
  position: relative;
  padding-right: 5px;
}

.tp-nav__menu .hs-menu-item:last-child a:after {
  content: '';
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/search-icon.svg);
  position: relative;
  width: 13px;
  height: 14px;
  display: inline-block;
  top: 0px;
  left: 4px;
  opacity: 0.5;
}

/* home banner style */

.main-banner__slide img {
  width: 100%;
}

.main-banner .banner__title {
  font-size: 58px;
  line-height: 1;
  padding-top: 4rem;
}

.default-banner {
  min-height: 400px;
  display: grid;
  align-items: center;
}
.default__button {
  padding-top: 2.2rem;
}
.main-banner .main-banner__slider {
  margin-bottom: 0px;
}
.main-banner__desc p {
  font-weight: 700;
}
.main-banner__s-text {
  padding-block: 10px;
}
.main-banner .main-banner__s-text p {
  font-size: 18px;
  font-weight: 400 !important;
}
.main-banner__slide {
  height: 700px;
}
.main-banner__video {
  position: relative;
  padding-top: 56.25%;
}
.main-banner__video video {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: 0px -150px;
}
.main-banner {
  overflow: hidden;
}
.main-banner__cont {
  height: 100%;
  padding-block: 4.6rem;
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-banner__slide .main-banner__slide-block {
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.main-banner__slide-block .video-container {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  height: 100%;
  right: 0;
}
.main-banner__slide-block:before {
  content: '';
  background-color: var(--black-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}
.main-banner__desc, .main-banner__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.4;
  color: var(--white-color);
}

.main-banner__desc {
  padding-bottom: 4rem;
  padding-top: 1.8rem;
}

.main-banner__slide-block .container {
  height: 100%;
}
.slider-controls__inner {
  position: absolute;
  bottom: 5.2rem;
  right: 3.0rem;
  display: flex;
}

.sl-btn {
  background-color: var(--dark-color);
  padding: 5px 10px;
  color: transparent;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}

.slide-m-prev{
  background-image: url('https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/arrow-icon.svg');
}

.slide-m-next{
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/arrow-icon-right.svg);
}

.sl-btn-lgt .slide-m-prev {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/dark-arrow.png);
}

.sl-btn-lgt .slide-m-next{
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/dark-arrow-nxt.png);
}


.sl-btn-lgt .sl-btn {
  background-color: var(--white-color);
}

.sl-btn-lgt .slide-m-prev {
  position: relative;
  left: -1px;
}

.slick-dots li button:before {
  content: '•';
  text-align: center;
  opacity: 1;
  line-height: 18px;
  color: var(--white-color);
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--white-color);
  border: 1px solid var(--white-color);
  border-radius: 50%;
}

.slider-dots {
  bottom: 62px;
}

.slider-dots .slick-dots {
  bottom: 0;
  list-style: none;
  text-align: left;
}

/* subscribe form */
.subscribe-form {
  padding-block: 3.0rem;
}
.subscribe-form__desc {
  width: calc(100% - 240px);
  padding-left: 7.5rem;
  padding-right: 2rem;
}
.subscribe-form__desc p {
  line-height: 1.4;
  font-size: 1.4rem;
}
.subscribe--form h3 {
  display: none;
}
.subscribe-form .hs_error_rollup .hs-main-font-element {
  display: none;
}
.subscribe--form form {
  background-color: transparent;
}

.subscribe--form input[type=submit] {
  background-color: var(--white-color);
}
.subscribe-form__rt .submitted-message {
  background-color: transparent;
  font-size: 1.6rem;
  text-align: center;
}
input::placeholder {
  color: var(--white-color);
}
.subscribe-form__rt form label{
  margin: 0px;
}

.subscribe--form form input:not([type="submit"]) {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid hsl(0deg 0% 100% / 30%);
  border-radius: 0;
  font-size: 12px;
  width: 208px;
  padding-left: 0px;
  height: 48px;
  color: var(--white-color);
  padding-inline: 1rem;
}
.subscribe--form form {
  display: flex;
  gap: 3.2rem;
  justify-content: end;
}
.subscribe-form form input[type=submit] {
  background-color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding-inline: 20px;
  width: 206px;
  color: var(--dark-color) !important;
  height: 48px;
  background-repeat: no-repeat;
  background-position: 87% 50%;
  background-size: 16px;
  border: 1px solid var(--white-color);
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/arrow-up.png);
}
.subscribe-form form input[type=submit]:hover{
  border: 1px solid var(--white-color) !important;
}
.subscribe-form form .hs-error-msgs {
  position: absolute;
}
.subscribe-form__lt h2 {
  margin-bottom: 0px;
}
.subscribe-form form .hs-form-field {
  margin-bottom: 0px;
}

/* who we are style */
.blk-col-bdr {
  width: 210px;
  border-right: 2px solid var(--clrGray);
  padding-right: 4.8rem;
  position: relative;
}
.blk-col-title:after {
  background-color: var(--dark-color);
  content: "";
  height: 43.5px;
  position: absolute;
  right: -50px;
  width: 2px;
  top: 14px;
}
.we-are__counter {
  border-left: 2px solid var(--clrGray);
  border-right: 2px solid var(--clrGray);
}
.we-are__col.we-are__cont {
  width: calc(100% - 34.44%);
}
.we-are__col{
  width: 18.72%;
}
.ww-are__row {
  flex-wrap: nowrap;  
  justify-content: space-between;
}
.we-are__inr {
  padding-bottom: 8rem;
  padding-left: 6rem;
  width: min(72.8rem, 100%);
  padding-top: 1rem;
}
.blk-col-title {
  position: relative;
  padding-top: 2rem;
}
.we-are__desc p {
  color: var(--dark-color);
  font-family: var(--primary-font);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.22;
}
.counter-data p {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-color);
  line-height: 1.4;
}
.we-are__desc {
  padding-top: 4rem;
  padding-bottom: 5.5rem;
  padding-right: 1rem;
}
.counter-data {
  border-bottom: 2px solid var(--clrGray);
  padding-left: 3.0rem;
  padding-block:  6rem 6.5rem;
}
.counter-data:last-child{
  border-bottom: 0px;
}
.counter-title {
  font-family: var(--primary-font);
  font-size: 66px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark-color);
}
.we-are__counter-btn {
  padding-block: 5rem;
  padding-left: 0.5rem;
}

.we-are__counter-btn .text-btn {
  background-color: transparent;
  border: 0;
  color: var(--dark-color);
}
.we-are__counter-btn .text-btn:hover {
  color: var(--dark-color);
}

.we-are__counter-btn svg {
  margin-left: 2rem;
  position: relative;
  top: -2px;
}
.wwa-sec .we-are__counter {
  width: 24.72%;
  padding-inline: 2rem;
}
.wwa-sec .counter-data {
  padding-block: 3rem 3.5rem;
  padding-inline: 2.5rem;
}
.wwa-sec .we-are__col.we-are__cont {
  width: 57.56%;
}

/* get access module */

.fund-access__col {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/investor_say.webp);
  background-size: cover;
  background-position: right center;
}

.get-acc__form h3 {
  display: none;
}
.get-fd-acc .get-acc__form .input input {
  background-color: transparent !important;
  border: 0px !important;
  padding-inline: 0px;
}

.get-acc__form {
  max-width: 500px;
}

.get-fd-acc ul {
  padding: 0px;
}
.get-fd-acc .tw-wrap__title {
  padding-bottom: 0px;
}
.get-fd-acc .get-acc__form .input input,
.get-fd-acc .get-acc__form .input{
  outline: none !important;
}
.get-acc__form .submitted-message {
  background-color: transparent;
  font-size: 16px;
  padding-block: 30px;
}
.get-acc__form {
  padding-top: 25px;
}
.get-acc__form .tw-wrap__sbtl {
  padding-top: 2.7rem;
}
.tw-wrap__title h2 {
  margin-bottom: 0px;
}
.get-fd-acc .get-acc__form .input input:focus,
.get-fd-acc .get-acc__form .input:focus-visible{
  border: 0px !important;
  outline: none !important;
}
.get-acc__form form .hs-fieldtype-booleancheckbox {
  margin-bottom: 0px;
}
.get-fd-acc .hs-fieldtype-booleancheckbox .inputs-list {
  padding-left: 0px;
}
.get-fd-acc .hs_submit {
  padding-top: 38px;
}
.get-fd-acc{
  overflow: hidden;
}
.get-fd-acc .tw-wrap__col figure {
  height: 680px;
}
.get-fd-acc .hs-fieldtype-booleancheckbox .inputs-list span {
  font-size: 14px;
  padding-left: 6px;
}
.get-fd-acc .hs_email .input {
  border-bottom: 1px solid #646464;
}
.get-fd-acc form .hs-error-msg {
  color: red !important;
}
.get-acc__form .hs-error-msgs {
  padding-left: 0px !important;
  position: absolute;
}
.get-acc__form form .hs_email {
  margin-bottom: 3rem;
}

.get-acc__form .hs_submit .hs-button {
  border: 1px solid var(--dark-color);
  cursor: pointer;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--white-color);
  color: var(--primary-color) !important;
  padding-right: 8rem;
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/up-arrow-icon.png);
  background-repeat: no-repeat;
  background-position: 84% 50%;
}

/* insight market style */
.inv-ins__cd {
  display: flex;
  flex-wrap: wrap;
}
.inv-ins__form .hs_error_rollup .hs-error-msgs,
.get-acc__form .hs_error_rollup .hs-error-msgs{
  display: none !important;
}
.inv-ins__cont {
  width: 64%;
  padding-right: 100px;
}
.inv-ins__fg {
  width: 36%;
}
.inv-ins__cl-tl {
  padding-block: 1.5rem;
}
.inv-ins__form .input input:focus,
.inv-ins__form .input:focus-visible{
  border: 0px !important;
  outline: none !important;
}
.inv-ins__form .input input,
.inv-ins__form .input{
  outline: none !important;
  color: var(--primary-color) !important;
  -webkit-text-fill-color: var(--primary-color);
}
.inv-ins__form .input input {
  background-color: transparent !important;
  border: 0px !important;
  padding-inline: 0px;
}
.inv-ins__pdf a.btn {
  border-color: transparent !important;
}
.inv-ins__form form .hs-error-msg {
  color: red !important;
}
.inv-ins__form .hs-error-msgs {
  padding-left: 0px !important;
  position: absolute;
}
.inv-ins__form form .hs_email {
  margin-bottom: 3rem;
}
.inv-ins__cl .form-title {
  display: none;
}
.inv-ins__cl .hs_email .input {
  border-bottom: 1px solid #646464;
}
.inv-ins__form .hs_submit{
  padding-top: 8px;
}
.inv-ins__form .hs_submit .hs-button {
  background-color: var(--white-color);
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/up-arrow-icon.png);
  background-position: 92% 50%;
  background-repeat: no-repeat;
  border: 0px solid var(--dark-color);
  color: var(--primary-color) !important;
  cursor: pointer;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  font-weight: 700;
  padding-right: 7rem;
  text-decoration: none;
  height: 48px;
  padding-left: 2rem;
}
.inv-ins__form .submitted-message {
  background-color: transparent;
  font-size: 16px;
  padding-block: 30px;
}
.inv-ins__form {
  padding-top: 30px;
}

/* fund type style */

.fd-type{
  background-color: var(--white-color);
}

.fd-type__inv-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 2px solid #dededd;
  padding-bottom: 3rem;
  padding-top: 3rem;
  align-items: center;
}

.fd-type__inv-item:first-child {
  padding-top: 0px;
}
.fd-type__inv-item:last-child {
  border-bottom: 0px;
}
.fd-type__inv-btn a {
  padding-bottom: 0px;
}
.fd-type__inv-btn:hover {
  opacity: 0.5;
}

.fd-type__inr-tl {
  width: 100%;
}

.fd-type__inv-col {
  width: 75%;
}

.fd-type__inv-btn {
  width: 25%;
  text-align: right;
}

.fd-type__lst {
  display: flex;
  gap: 40px;
}

.fd-type__inr-tl h2 {
  font-size: 34px;
  margin-bottom: 0px;
}

.fd-type__lst-itm {
  font-size: 18px;
}
.fd-type__lst-itm svg {
  margin-right: 12px;
  position: relative;
  top: 3px;
}

/* real estate services */

.accordion-container {
  position: relative;
  width: 100%;
}

.accordion-item {
  border: 0px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--white-color);
}
.acc-title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  padding-block: 2.5rem 1.6rem;
}

.accordion-content {
  padding: 5px 0px 10px;
  display: none;
}
.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion-content p{
  font-size: 1.6rem;
}

.accordion-title:focus {
  outline: none;
}
.re-faq__col *:not(.re-faq__btn a) {
  color: var(--white-color);
}
.w-lf {
  width: 210px;
  border-right: 2px solid hsl(0deg 0% 100% / 10%);
  position: relative;
  padding-right: 2.5rem;
}
.w-rt {
  width: calc(100% - 210px);
}
.w-lf-drk {
  border-right: 2px solid var(--clrGray);
}
.re-faq__title-blk {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.re-faq__title-blk h2 {
  max-width: 560px;
}
.w-lf__bdr{
  position: relative;
}
.w-lf__bdr:after {
  background-color: var(--white-color);
  content: "";
  height: 43.5px;
  position: absolute;
  right: -27px;
  top: 12px;
  width: 2px;
}
.re-faq__bg {
  background-size: contain;
  background-repeat: no-repeat;
}
.w-lf.w-lf-lgt {
  border-right: 2px solid var(--clrGray);
  padding-top: 10rem;
}
.w-lf h3 {
  padding-top: 1.3rem;
}
.w-lf-lgt .w-lf__bdr:after {
  background-color: var(--dark-color);
}

/* footer style */

.ftr-tp__wrp {
  padding-left: 6rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-bottom: 2px solid var(--clrGray);
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  padding-top: 2rem;
}
.ftr-tp__cl.ftr {
  text-align: right;
}
.ftr__row .ftr__col:first-child {
  text-align: right;
  padding-right: 7.5rem;
}
.ftr-col {
  width: calc(100% / 3);
}
.ftr__rgt {
  padding-block: 10rem;
}
.ftr-col:last-child{
  width: 204px;
}
.ftr-col:first-child {
  width: 260px;
}
.ftr-cont__info .ftr-address p {
  line-height: 2.2rem;
}
.ftr-subscribe h4 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 100%;
  padding-bottom: 2.2rem;
  margin-bottom: 0;
}
.ftr-subscribe p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.ftr__button .outline-btn-light {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.ftr__button {
  padding-top: 22px;
}
.ftr__menu-flex ul {
  list-style: none;
}

.ftr__menu-flex ul li a {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  text-decoration: none;
}

.ftr__menu-flex ul li {
  line-height: 1.4;
}
.ftr-address {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0%;
}

.ftr-address * {
  font-size: 16px;
}
.ftr__menu-flex ul {
  margin-top: -10px;
}
.ftr-cont__info span,
.ftr-cont__info span p{
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
}
.ftr__lft {
  padding-right: 7.5rem;
}

.ftr__lft .flr__logo {
  text-align: right;
  padding-top: 10rem;
}
.ftr__social-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 1.2rem;
}
.ftr-cont__info span {
  display: block;
}
.ftr-cont__info span{
  display: inline-block;
  width: 100%;
}
.ftr__copyright {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.ftr__btm-menu ul {
  list-style: none;
  display: flex;
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  gap: 48px;
  padding-bottom: 6px;
  padding-top: 5px;
}
.ftr-email a {
  text-decoration: none;
}
.ftr__social__media {
  padding-top: 2rem;
}
.ftr__short-desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4rem;
  margin-bottom: 16px;
}
.ftr-inner {
  justify-content: space-between;
  padding-left: 6rem;
}
.ftr__btm-menu ul li a{
  font-weight: 500;
  font-size: 16px;
}
.ftr__bottom {
  border-top: 2px solid var(--clrGray);
  padding-top: 35px;
  padding-left: 6rem;
}
.ftr-cont__info span {
  display: inline-block;
}
.ftr__copyright {
  padding-top: 1rem;
}
.uparrow {
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 5px;
  cursor: pointer;
}

/* our team style */
.ot-rgt {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/join_team.jpg);
  background-size: cover;
  background-size: cover;
  display: flex;
  align-items: center;
}
.ot-lft figure {
  height: 100%;
  width: 100%;
}
.our-team .ot-lft figure img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.our-team__cont {
  width: 715px;
  margin-left: 0;
  padding-block: 4rem 4rem;
  margin-right: auto;
  padding-left: 3rem;
}
.our-team__btn {
  padding-top: 6rem;
}
.our-team__desc p {
  font-family: var(--primary-font);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 1.5rem;
  text-align: right;
}
.more-info__btm p {
  font-size: 1.8rem;
}
.our-team__desc {
  padding-top: 2.8rem;
}
.more-info__add p {
  font-size: 2.2rem;
}
.our-team__desc strong {
  font-size: 2.2rem;
  padding-top: 1.2rem;
  display: inline-block;
}

/* investment module style */
.ex-inv__cont {
  max-width: 375px;
  width: 100%;
}

.ex-inv__title-blk {
  width: calc(100% - 375px);
}
.section-title {
  display: flex;
}
.sec-tp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec-tp__lft {
  width: calc(100% - 375px);
}
.sec-tp__lft h2{
  margin-bottom: 0px;
}
.sec-tp__rgt {
  width: 375px;
}
.ex-inv__btn {
  display: inline-block;
  padding-top: 2.2rem;
}
.ex-inv__cont p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}
.ex-plan__row {
  padding-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.ex-plan__col {
  background-color: var(--white-color);
  padding-inline: 2.4rem 3.8rem;
  padding-block: 4.9rem 10.33rem;
  background-repeat: no-repeat;
}
.ex-plan__cont h3 {
  padding-top: 1.2rem;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0%;
}
.ex-plan__cont p,
.ex-plan__des{
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
}
.ex-plan__btn {
  padding-top: 5.8rem;
}
.ex-inv {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/Investments-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
.ex-plan__btn img {
  max-height: 1.6rem;
}
.ex-plan__col {
  background-position: 102% 20px;
}
.ex-plan__col:first-child {
  background-position: 100% 0px;
}
.ex-plan__btn {
  padding-top: .2rem;
}
.ex-plan__des {
  min-height: 6rem;
}
.ex-plan__col:nth-of-type(2) h3 {
  color: var(--drk-grn-color);
}
.ex-plan__col:last-child h3 {
  color: var(--ylw-color);
}
.ex-inv__col {
  padding-bottom: 5.5rem;
}

/* testimonials style */
.inv-say__bg {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/investor_say.webp);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 9rem;
}
.inv-say__review {
  padding-top: 4.5rem;
}
.inv-say__author > img {
  height: 90px;
  width: 90px;
  object-fit: cover;
}
.inv-say__author.text-white {
  display: flex;
  gap: 17px;
  align-items: center;
}
.inv-say__rating {
  display: flex;
  gap: 9px;
}
.inv-say__desc p {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
.inv-say__desc {
  padding-top: 4.4rem;
}
.inv-say__review-cont {
  max-width: 415px;
  padding-right: 10px;
}
.inv-say__review-cont p {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}
.inv-say__title h3 {
  margin-bottom: 1rem;
}
.inv-say__title h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 1.2;
}
.inv-say__author h3 {
  font-size: 25px;
}
.sl-controls {
  display: flex;
  justify-content: space-between;
  position: relative;
  bottom: 0;
  align-items: center;
  padding-top: 1.5rem;
}
.sl-controls .slider-controls .container {
  padding-inline: 0;
}
.sl-controls .slider-controls__inner {
  bottom: 0;
  display: flex;
  position: relative;
  right: 0rem;
}
.sl-controls .slick-dots {
  display: flex;
  justify-content: left;
  position: relative;
  bottom: 0px;
}
.sl-controls .c-sl-dots {
  margin-left: -16px;
}
.sl-controls .slider-dots {
  bottom: 0;
  padding: 0;
  margin: 0;
}
.sl-controls .slider-dots .slick-dots {
  margin-left: -10px;
  position: relative;
}

/* portfolio style */

.port-sec__bg {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/portfolio_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left bottom;
  padding-bottom: 9rem;
}
.port-btm__row {
  padding-top: 5rem;
  display: grid;
  gap: 33px;
  grid-template-columns: repeat(3, 1fr);
}
.port-btm__btn {
  width: 46px;
  height: 46px;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.port-btm__cont {
  bottom: 12px;
  padding-block: 3.9rem 2.2rem;
  padding-inline: 2.6rem;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.port-btm__cont .port-btm__desc {
  opacity: 0px;
  visibility: hidden;
  transition: 0.3s ease all;
}
.port-btm__desc h3 {
  opacity: 1 !important;
  visibility: visible !important;
}
.port-btm__cont h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.4;
}
.port-btm__col:hover .port-btm__btns {
  display: block !important;
}
.port-btm__inr {
  position: relative;
  overflow: hidden;
}
.port-btm__inr img {
  width: 100%;
  height: 500px !important;
  object-fit: cover;
}
.port-btm__inr figure{
  max-height: 500px;
}
.port-btm__inr figure:before {
  content: '';
  background-color: var(--black-color);
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  opacity: 0;
  transition: 0.2s ease all;
}
.port-btm__col:hover .port-btm__inr figure:before {
  content: '';
  background-color: var(--black-color);
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  opacity: 0.5;
}
.port-btm__col {
  position: relative;
  transition: 0.3s ease all;
  cursor: pointer;
}

.port-btm__cont .port-btm__desc p,
.port-btm__cont .port-btm__desc{
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}

.port-btm__col:hover h3, .port-btm__col:hover .port-btm__btn {
  opacity: 0px;
  visibility: hidden;
}
.port-btm__col:hover img{
  filter: grayscale(0);
}
.port-btm__col:hover .port-btm__desc {
  opacity: 1;
  visibility: visible;
}
.port-btm__cont {
  bottom: 0;
  padding-block: 3.9rem 2.2rem;
  padding-inline: 2.6rem;
  position: absolute;
  width: 100%;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.port-btm__btn a:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  z-index: 1111;
}
.port-btm__btns .btn {
  background-color: transparent;
  border-color: var( --white-color);
  color: var( --white-color);
}

.port-btm__btns .btn svg path {
  fill: var( --white-color);
  stroke: var( --white-color);
}

.port-btm__btns .btn:hover{
  background-color: var( --white-color);
}

.port-btm__btns .btn:hover svg path{
  color: #171a12;
}
.port-btm__col:hover .port-btm__btns a:hover {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--dark-color);
}
.port-btm__btns a:hover path {
  stroke: var(--dark-color);
}


/* latest news style */

.lat-news__author-info {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
.lat-news__features img {
  width: 100%;
}
.lat-news__title h3 {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  padding-top: 0.8rem;
}
.lat-news__title h3 a {
  text-decoration: none;
}
.lat-news__desc p, .lat-news__desc {
  line-height: 1.4;
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--dark-color);
}

.lat-news__col .lat-news__btn a {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  line-height: 1.4;
  text-decoration: none;
}
.lat-news__col .lat-news__btn {
  padding-top: .2rem;
}
.lat-news__col .lat-news__btn a span {
  padding-left: 0.6rem;
}
.lat-news__title .lat-news__btn a span {
  padding-left: 3.6rem;
}
.lat-news__inner .lat-news__rows:first-child .lat-news__cont{
  padding-right: 7rem;
}

.lat-news__cont {
  padding-right: 3rem;
}
.lat-news__cont .lat-news__btn svg {
  height: 11px;
}
.lat-news__rows {
  align-items: center;
  border: 1px solid var(--clrGray);
  display: flex;
  padding: 2.4rem 1.7rem 3.2rem;
  width: 48.5%;
  margin-bottom: 3.2rem;
}
.lat-news__rows {
  display: flex;
  align-items: center;
}
.lat-news__inner .lat-news__rows:first-child {
  width: 100%;
  justify-content: space-between;
}
.lat-news__features {
  width: 680px;
}
.lat-news__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: 5rem;
}
.lat-news__rows .lat-news__features {
  display: none;
}
.lat-news__rows:first-child .lat-news__features {
  display: block;
}
.lat-news__bg .lat-news__title .lat-news__btn {
  position: relative;
  top: 8px;
}
/* offering style */
.off-sec__title .off-sec__btn {
  position: relative;
  top: 1.5rem;
}
/* contact us page style */
.enq-sec__title-blk h2 {
  padding-top: 0.4rem;
}
.enq-sec__content{
  padding-top: 3rem;
}
.enq-form__inner form {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 4.5rem;
}
.enq-form__inner form .hs_message {
  grid-column: span 2;
}
.enq-form__inner .hs-form-field {
  margin-bottom: 0;
}
.enq-form__inner form input::placeholder,
.enq-form__inner form input::-ms-input-placeholder{
  color: var(--clrGray3) !important;
  -webkit-text-fill-color: var(--clrGray3) !important;
}
.enq-form__inner .hs_message textarea {
  height: 140px;
  padding-top: 1rem;
}
.enq-form__inner h3 {
  display: none;
}
.enq-form__inner .hs-submit input {
  width: 100%;
  color: var(--white-color);
  padding-block: 1.4rem;
}
.enq-form__inner .hs-submit input:hover {
  border-color: var(--dark-color);
}
.enq-form__inner .submitted-message {
  padding-block: 10rem 0px;
  font-size: 1.8rem;
}
.m-enq__rw {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}

.m-enq__rw-col {
  flex: 1;
}
.m-enq__sub {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.4;
}
.m-enq__info {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.4;
  padding-top: 2rem;
}
.m-enq__social {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}

.m-enq__social svg path {
  fill: #fff;
}

.m-enq__sub {
  padding-bottom: 2.2rem;
  padding-top: 0.2rem;
}

/* signup page style */

.gray-bg .w-lf.w-lf-lgt {
  border-right: 2px solid #dededd;
  padding-top: 10rem;
}
.enq-signup__inr {
  padding-top: 4.3rem;
}
.enq-signup__inr form {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.enq-signup__inr .hs-form-field {
  width: 49%;
  padding-bottom: 20px;
}

.enq-signup__inr form > div {
  width: 100%;
}
.fm-privacy-text {
  padding-top: 10px;
  padding-bottom: 0.2rem;
}
.enq-signup__inr .hs-form-field {
  margin-bottom: 0px;
}
.enq-signup__inr .fm-privacy-text p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--dark-color);
}
legend.hs-field-desc {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}

.enq-signup__inr .hs_privacy_opt_in,
.enq-signup__inr .hs_personal_information{
  width: 100%;
  padding-bottom: 0;
}
.enq-signup__inr .hs-form-booleancheckbox span {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}
.enq-signup__inr .hs-form-booleancheckbox {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  padding-bottom: 0.6rem;
}
.enq-signup__inr .hs-form-booleancheckbox label {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.enq-signup__inr .hs_submit {
  width: 49%;
  padding-top: 2.8rem;
}
.enq-signup__inr .hs_submit input {
  width: 100%;
}
.enq-signup__inr {
  padding-top: 4.3rem;
  max-width: 910px;
}
.enq-signup__inr .form-title {
  display: none;
}
.enq-signup__inr .hs_submit input {
  width: 100%;
  font-weight: 700;
}
.fort-loader {
  display: none;
}

/* about style */
.abt-sec .we-are__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 24px;
}
.abt-sec .we-are__desc p:last-child {
  margin-bottom: 0;
}
.sche-call {
  padding-top: 11rem;
}
.abt__button{
  padding-top: 30px;
}
.abt-sec .we-are__cont {
  width: 60%;
  margin-right: auto;
}
.abt-sec .sche-call {
  width: 21.77%;
}
.sche-call__inr {
  border: 1px solid var(--clrGray);
  padding-inline: 1.9rem;
  padding-bottom: 3.5rem;
  text-align: center;
}
.sche-call__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
.sche-call__inr h3 {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 25px;
  text-align: center;
}
.sche-call__desc {
  padding-bottom: 3rem;
  padding-top: 1.1rem;
}
.sche-call__inr figure img {
  max-height: 50px;
}
.sche-call__inr figure {
  margin-top: 3.5rem;
  margin-bottom: 2.1rem;
}
/* column module */
.tw-wrap__col img {
  vertical-align: bottom;
}
.tw-wrap__desc li {
  padding-bottom: 0.8rem;
}
.tw-wrap__cont {
  display: flex;
  align-items: center;
}
.tw-wrap__inr {
  max-width: 700px;
  margin-left: auto;
  padding-right: 80px;
  padding-block: 2rem;
}
.tw-wrap__desc, .tw-wrap__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
}
.tw-wrap__desc {
  padding-bottom: 4.8rem;
  padding-top: 2rem;
}
.tw-wrap__sbtl {
  padding-top: 1.7rem;
}
.tw-wrap__col figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tw-wrap__title {
  padding-bottom: 1.2rem;
}
.tw-wrap__sbtl h3 {
  font-size: 2.7rem;
  line-height: 1.3;
}
.tw-wrap__cont.gray-bg .tw-wrap__inr * {
  color: currentColor;
}
.tw-wrap__cont.gray-bg .tw-wrap__inr .dark-btn a {
  color: var(--white-color);
}
/* accordion style */
.acc-faq .acc-faq__rw h3 {
  color: var(--dark-color);
}
.acc-faq .acc-faq__rw h3 {
  color: var(--dark-color);
}

.acc-faq .acc-faq__rw .acc-title{
  color: var(--dark-color);
}
.acc-faq .acc-faq__rw .accordion-item:after {
  content: '';
  border-bottom: 1px solid var(--dark-color);
  opacity: 0.1;
  width: 100%;
  display: inline-block;
}
.acc-faq .acc-faq__rw .accordion-item {
  border-bottom: 0;
}
.acc-faq .acc-faq__rw .accordion-content p,
.acc-faq .acc-faq__rw .accordion-content ul li,
.acc-faq .accordion-content li strong{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--dark-color);
}
.acc-faq .acc-faq__rw .accordion-content ul {
  padding-left: 3rem;
  padding-top: 1rem;
}
.accordion-title__icon.active svg {
  transform: rotate(180deg);
}
.acc-faq__rw .accordion-title__icon svg {
  height: 10px;
  transition: 0.2s all ease;
}
.acc-faq .acc-title {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  padding-block: 2.2rem 2.2rem;
}
.acc-faq .acc-faq__rw .accordion-item:last-child:after {
  border-bottom: 0;
}
.acc-faq__rw .accordion-title .accordion-title__icon {
  position: relative;
  top: -4px;
}
.acc-faq__rw .re-faq__col:last-child {
  padding-bottom: 3rem;
}
/* feature investment style */
.fd-inv__inr {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 2px;
}
.fd-inv__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 2.2rem;
}
.fd-inv__inr .fd-inv__col:last-child {
  padding-left: 5rem;
  border-left: 2px solid var(--clrGray);
  padding-right: 4rem;
}
.fd-inv__btn {
  padding-top: 1rem;
}
.fd-inv__cont {
  padding-bottom: 12rem;
}
/* multi column style */
.multi-wrap .tw-wrap__inr {
  padding-inline: 0 6rem;
  position: relative;
  z-index: 11;
}
.multi-wrap{
  position: relative;
}
.multi-wrap:before {
  content: '';
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/fort_bg-img.svg);
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.multi-wrap .m-wrap__inr {
  padding: 6rem;
  position: relative;
  z-index: 11;
}
.multi-wrap .m-wrap__inr {
  padding: 6rem;
}
.multi-wrap .tw-wrap__col figure img {
  height: auto;
}
.multi-wrap .row-inverse .tw-wrap__inr {
  padding-left: 60px;
  margin-left: 0;
  margin-right: auto;
  width: 700px;
  padding-right: 0px;
  text-align: right;
}
.multi-wrap .tw-wrap__row.row-inverse {
  flex-direction: row-reverse;
}
.multi-wrap .tw-wrap__cont {
  background-color: var(--dark-color);
}
.multi-wrap .tw-wrap__cont.green-bg {
  background-color: var(--green-bg);
}
.multi-wrap .tw-wrap__cont.yellow-bg {
  background-color: var(--ylw-color);
}
.multi-wrap .tw-wrap__col.light-bg {
  background-color: var(--light-bg);
}


/* intro block style */
.inv-intro .blk-col-bdr {
  border-right: 2px solid rgb(26 44 46 / 10%);
}
.inv-intro__rt {
  width: calc(100% - 210px);
}
.inv-intro__rt {
  display: flex;
  flex-wrap: wrap;
}
.inv-intro__rt .inv-intro__col:first-child {
  width: calc(100% - 400px);
  padding-right: 100px;
}

.inv-intro__rt .inv-intro__col:last-child {
  width: 400px;
}
.inv-intro__rt .we-are__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.3;
  padding-bottom: 2rem;
}
.inv-intro__rt .we-are__desc p:last-child{
  padding-bottom: 0px;
}
.inv-intro__ft {
  background-color: var(--white-color);
  padding-inline: 2.4rem;
  padding-block: 3rem;
}
.inv-intro__ft h3 {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 42px;
  line-height: 1;
  padding-top: 12px;
}
.inv-int__btm {
  display: flex;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  gap: 3rem;
}
/* .inv-int__btm .inv-int__col:last-child {
width: 400px;
} */
.inv-int__btm .inv-int__col {
  width: 100%;
}
.inv-sdule__inr.right-align {
  flex-direction: row-reverse;
}
.inv-intro__blk .we-are__btn .btn:hover {
  background-color: transparent;
}
/* .inv-int__btm .inv-int__col:first-child {
width: calc(100% - 400px);
} */
.inv-int__tl {
  max-width: 500px;
  color: #1A2C2E;
}
.inv-sdule__btn .btn svg {
  margin-left: 2rem;
}
.inv-sdule__desc {
  padding-top: 2.4rem;
}
.inv-int__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}
.inv-int__desc p {
  margin-bottom: 20px;
}
.inv-sdule__btn {
  padding-top: 4rem;
  display: inline-block;
}
.inv-intro__blk {
  padding-left: 6rem;
}
.inv-int__inr {
  padding-block: 0rem 100px;
}
.inv-int__video {
  position: relative;
}
.inv-int__video video {
  width: 100%;
  cursor: pointer;
  vertical-align: bottom;
}
.inv-int__desc ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.inv-int__desc ul li {
  width: 100%;
  border-bottom: 1px solid var(--dark-color2);
  padding-block: 1rem 0.5rem;
}
.inv-int__title{

}
.inv-int__desc ul li a {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/arrow-right01.png);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  padding-block: 1rem 0.5rem;
}
.res-faq__desc .inv-int__desc ul li a {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/arrow.svg);
}
.res-faq__desc .inv-int__desc ul li{
  border-color: #fff;
}
.res-btn {
  padding-top: 30px;
}
.inv-sdule-blk {
  width: 100%;
  padding-bottom: 10rem;
}
.inv-sdule__inr {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--white-color);
}
.inv-sdule__cont h2 {
  line-height: 1.4;
}
.inv-sdule__col {
  width: 50%;
}
.inv-sdule__col figure img {
  vertical-align: bottom;
}
.inv-sdule__cont {
  padding-block: 10rem;
  padding-inline: 5rem;
  height: 100%;
}
.inv-sdule__cont h2 {
  padding-top: 1rem;
}
.inv-sdule__col figure img {
  width: 100%;
}
.inv-sdule__col figure {
  width: 100%;
}
.inv-sdule__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
}

/* strpe style */
.inv-strpe {
  position: relative;
  width: 100%;
  display: inline-block;
  background-color: var(--white-color);
  margin-bottom: 7.2rem;
}
.inv-strpe__inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inv-strpe__col {
  width: 25%;
}
.inv-strpe__col:nth-of-type(2) {
  width: 50%;
  padding-right: 8rem;
  padding-left: 2.5rem;
}
.inv-strpe__col:first-child video {
  width: 100%;
  vertical-align: middle;
  height: 185px;
  object-fit: cover;
  cursor: pointer;
}
.inv-strpe__btn svg {
  margin-left: 20px;
}
.inv-strpe__cont h2 {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 22px;
  line-height: 25px;
}
.inv-strpe__cont p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
.inv-strpe__col:last-child {
  padding-right: 3rem;
  text-align: right;
}

/* what we offer module */
.ww-offer .we-are__inr {
  width: 100%;
  padding-left: 0px;
}
.ww-offer .we-are__title {
  padding-bottom: 2.8rem;
}
.inv__subheading {
  font-size: 30px;
  font-weight: 400;
}
.ww-offer .we-are__cont {
  width: calc(100% - 210px);
  padding-left: 6rem;
}
.we-are__subtl h3 {
  margin-bottom: 0.8rem;
}
.ww-offer .we-are__desc {
  padding-bottom: 1.6rem;
  padding-right: 1rem;
  padding-top: 3.4rem;
}
.tw-wrap__row.left-align .tw-wrap__inr {
  margin-left: 0;
  margin-right: auto;
  width: 700px;
  padding-left: 4rem;
  padding-right: 0px;
}
/* development page style */
.feat-inv__inr {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 12rem;
}
.feat-inv__inr .feat-inv__col:first-child {
  width: 55%;
}
.feat-inv__inr .feat-inv__col:last-child {
  width: 45%;
  border: 2px solid var(--clrGray);
  border-left: 0;
}
.feat-inv__inr .feat-inv__col figure img {
  width: 100%;
  vertical-align: bottom;
}
.feat-inv__cont h2 {
  line-height: 1.1;
}
.feat-inv__cont {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem;
}
.feat-inv__desc {
  padding-top: 1.2rem;
}
.feat-inv__btn {
  padding-top: 4rem;
}
.ope-sec__tl {
  display: grid;
  gap: 10rem;
  grid-template-columns: repeat(2, 1fr);
}
.ope-sec__tl-rt p {
  font-weight: 500;
}
.ope-sec {
  border-top: 2px solid var(--clrGray);
}
.cont-tools {
  margin-left: -6rem;
}
.cont-tools__col h3 {
  margin-bottom: 0px;
}
.cont-tools__tl h2 {
  font-weight: 500;
}
.cont-tools .cont-tools__tl {
  padding-left: 6rem;
}
.cont-tools__inr {
  position: relative;
  padding-bottom: 5rem;
}
.cont-tools__rw {
  border-top: 2px solid var(--clrGray);
  padding-left: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 2.8rem;
  gap: 5rem;
}
.txt-mod__blk {
  padding-left: 10rem;
  padding-top: 0.5rem;
}
.txt-mod__lft h2 {
  padding-bottom: 2rem;
}
.txt-mod_desc p {
  margin-bottom: 4rem;
}
.pp-text__col .h3-title {
  font-weight: 500;
  line-height: 1.4;
}
.pp-text__desc p {
  font-size: 1.8rem;
  line-height: 1.4;
}
.pp-text__desc ul li {
  padding-bottom: 2rem;
  font-size: 1.8rem;
  line-height: 1.4;
}
.pp-text__desc ul {
  padding-left: 3rem;
  padding-top: 1.2rem;
}
.pp-text__rw {
  padding-bottom: 1.8rem;
}
.pp-text__rw:last-child {
  padding-bottom: 0px;
}
.cont-slider__tl-rt {
  padding-top: 1rem;
}
.cs-slider__wrap {
  padding-top: 8rem;
}
.cs-slider__img img {
  height: 650px !important;
  object-fit: cover;
}
/* careers style */
.cs-slider__item img {
  width: 100%;
}
.page-menu__wrap .page-menu__flx {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 0;
}
.page-menu__flx li a {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}
.page-menu__flx li {
  padding-inline: 8rem;
  display: flex;
  align-items: center;
}
.page-menu__wrap {
  border-bottom: 2px solid var(--clrGray);
  padding-block: 3rem;
}
.video-section video {
  width: 100%;
  height: 680px;
  object-fit: cover;
  vertical-align: -webkit-baseline-middle;
}
.inv-say__sb-tl p {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
.inv-say__sb-tl {
  margin-top: -2px;
  margin-bottom: 30px;
}
.port-reviews .inv-say__review {
  padding-top: 0px;
}
.port-reviews .inv-say__desc {
  padding-top: 2rem;
}
.port-reviews .inv-say__bg {
  background-image: none;
}
.port-tw__btn {
  display: flex;
  justify-content: end;
  gap: 4rem;
}
.port-tw__cont {
  padding-block: 10rem;
}
.port-tw-wrap .port-tw__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.keyh-sec__tp {
  display: grid;
  gap: 12rem;
  grid-template-columns: 1.7fr 1fr;
}
.keyh-serv__inr {
  padding-left: 6rem;
  padding-top: 3rem;
}
.keyh-serv__inr .keyh-serv__wrp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.keyh-serv__desc {
  padding-top: 4px;
}
.keyh-serv__inr h3 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
.keyh-serv__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}
.keyh-serv__cont h3 {
  border-bottom: 1px solid var(--dark-color);
  padding-bottom: 1.2rem;
}
.imgb-sec__wrp {
  display: grid;
  gap: 12rem;
  grid-template-columns: 1.3fr 1fr;
}
.imgb-sec__tl-lf {
  padding-block: 10rem 12rem;
}
.imgb-sec__tl-rt figure {
  height: 100%;
}
.imgb-sec__tl-rt figure img {
  height: 100% !important;
  object-fit: cover;
}
.imgb-sec__desc {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.mgs-sec-rt__img {
  padding-top: 8rem;
}
.mgs-sec__tp {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  padding-bottom: 10rem;
}
.mgs-faq__desc {
  padding-top: 2rem;
}
.mgs-sec__tl-rt {
  padding-top: 1rem;
  text-align: right;
}
.mgs-sec__tl-lf {
  padding-right: 5rem;
}
.mgs-slider__img img {
  height: 490px !important;
  object-fit: cover;
}
.dark-dots-bg .slick-dots li button:before {
  color: var(--dark-color);
}
.press-mod__desc {
  padding-top: 20px;
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/review-icons.png);
  background-repeat: no-repeat;
}
.dark-dots-bg .slick-dots li.slick-active button:before {
  border: 1px solid var(--dark-color);
  color: var(--dark-color);
}
.press-mod .inv-say__author h3 {
  font-size: 25px;
  margin-bottom: 8px;
}
.press-mod__inner .pr-sl-dots {
  padding-left: 0px;
}
.press-mod__row .sl-controls {
  padding-bottom: 4rem;
}
.press-mod__title h3 {
  font-weight: 400;
}
.msg-img__grid {
  display: flex;
  flex: 1;
}
.msg-img__grid {
  padding-bottom: 10rem;
}
.msg-img__grid .msg-img__item img {
  width: 100%;
  background-color: var(--white-color);
  padding-inline: 15px;
}
.msg-img__grid .msg-img__item {
  flex: 1;
  padding-right: 6px;
}
.msg-img__grid .msg-img__item:last-child {
  padding-right: 0px;
}
.cst-slider__wrap {
  padding-left: 6rem;
}
.tsm-slide__title {
  font-family: var(--primary-font);
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 100%;
  border-bottom: 2px solid var(--clrGray);
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  padding-left: 6rem;
  position: relative;
  opacity: 0.5;
}
.tsm-slide__title:after {
  content: '';
  border-right: 2px solid var(--clrGray);
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  height: 50%;
}
.slick-current.slick-active .tsm-slide__title{
  opacity: 1;
}

.slick-current.slick-active .tsm-slide__desc{
  opacity: 1;
}
.co-design__cont h2 {
  padding-bottom: 3rem;
}
.tsm-slide__desc {
  padding-left: 6rem;
  opacity: 0.5;
  padding-right: 1rem;
}
.tsm-sec .slider-controls {
  padding-top: 2.3rem;
}
.tsm-sec .sl-controls {
  justify-content: end;
}
.co-design-inner {
  display: flex;
  flex-wrap: wrap;
}

.co-design-inner .co-design__left {
  width: 46%;
  padding-inline: 6rem;
  padding-block: 10rem;
}
.co-design__gallery {
  display: grid;
  gap: 0;
  margin: auto;
  grid-template-columns: repeat(11,1fr);
}

.co-design__item img {
  width: 100%;
}

.co-design__item:nth-of-type(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 6;
}
.co-design__item:nth-of-type(2) {
  grid-column: 6 / 12;
}

.co-design__item:nth-of-type(3) {
  grid-column: 1 / 6;
  grid-row: 6 / 3;
}

.co-design__item:nth-of-type(4) {
  grid-column: 6 / 12;
  grid-row: 2 / 4;
}

.co-design__item:nth-of-type(5) {
  grid-column: 6 / 12;
  grid-row: 6 / 4;
}
.co-design__item:nth-of-type(7) {
  grid-column: 8 / 12;
}
.co-design__item:nth-of-type(6) {
  grid-column: 1 / 8;
}
.co-design__item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border: 0.5px solid var(--white-color);
  border-right: 0;
  border-bottom: 0;
}
.co-design__right {
  width: 54%;
}
.co-design__left p {
  margin-bottom: 28px;
}
.co-design__left p:last-child{
  margin-bottom: 0px;
}
.c-pro-sec .mgs-slider__img img {
  height: 280px !important;
}
.utube-sec__inr .mgs-slider__img img {
  height: 280px !important;
}
.utube-sec__inr .mgs-slider__img img {
  height: 280px !important;
}

.utube-sec .utube-btn__wrap svg path {
  stroke: var(--black-color) !important;
}

.utube-sec .utube-btn__wrap a:hover path {
  stroke: var(--white-color) !important;
}
.utube_col .mgs-sec__tp {
  padding-bottom: 7rem;
}
.keyh-sec.dark-bg .keyh-serv__cont h3 {
  border-bottom: 1px solid hsla(0, 0%, 100%, .1);
  color: var(--white-color);
}
.keyh-sec.dark-bg .keyh-sec__tl-lf h2 {
  color: var(--white-color);
}
.keyh-sec__tl-rt p {
  color: var(--white-color);
}
.keyh-sec.dark-bg .keyh-serv__desc p {
  color: var(--white-color);
}
.keyh-sec.dark-bg .keyh-sec__col.w-lf {
  border-right: 2px solid hsla(0, 0%, 100%, .1);
}
.acc-faq.white-bg .w-lf.w-lf-lgt {
  border-right: 2px solid var(--clrGray);
}
.acc-faq.white-bg .w-lf__bdr:after {
  background-color: var(--dark-color);
}
.acc-faq.white-bg .acc-faq__rw .accordion-item {
  border-bottom: 2px solid lch(8.72 5.6 121.68 / 0.1);
}
.acc-faq.white-bg .accordion-title__icon svg path {
  stroke: var(--dark-color);
}
.acc-faq.white-bg .accordion-content strong {
  color: var(--dark-color);
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 18px;
}
.re-track__inr {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 6rem;
}
.re-track__item {
  border: 1px solid var(--clrGray);
  text-align: left;
  padding-block: 1.7rem;
  padding-inline: 2.6rem;
}
.re-track__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
}
.re-track__item h3 {
  padding-bottom: 4rem;
}
.keyt-serv__inr .keyt-serv__wrp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.keyt-serv__item {
  border: 2px solid hwb(83deg 7% 90% / 10%);
  padding-inline: 6rem;
  padding-block: 2.5rem 3.2rem;
  border-left: 0px;
  border-bottom: 0px;
}
.keyt-serv__desc p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--dark-color);
}
.keyt-serv__inr {
  padding-top: 3.4rem;
}
.keyt-sec__tl-rt .res-faq__desc {
  padding-top: 1.2rem;
}
.keyt-sec__tl-rt {
  max-width: 322px;
  margin-left: auto;
}
.slider-controls .sl-btn {
  min-width: 68px;
}
.slider-controls__inner span {
  font-size: 0;
}
.main-banner__logo img {
  margin-left: auto;
  width: 850px;
  height: auto;
}
.sh-page-lising {
  padding-block: 10rem;
}
.sh-page-lising .small-container {
  max-width: 900px;
}
.sh-page-lising button svg {
  fill: var(--black-color) !important;
}
.sh-page-lising button {
  border: 2px solid #d1d6dc;
}
.sh-page-lising button:hover svg {
  fill: var(--white-color) !important;
}
.sh-page-lising input {
  font-size: 1.6rem !important;
}
.sh-page-lising button:hover {
  border: 2px solid var(--black-color);
}
.hs-search-field__suggestions .results-for {
  font-size: 1.6rem;
}
.sh-page-lising h2 {
  text-align: center;
}
.error-page h1 {
  color: var(--dark-color);
  font-weight: 400;
}
#hs_cos_wrapper_search_results_page_search_field .hs-search-field--open .hs-search-field__suggestions a {
  font-size: 1.6rem;
}
.cont-tools__col h3 {
  font-size: 2.8rem;
}
.hs-slider__img img {
  height: 370px !important;
  object-fit: cover;
  object-position: center;
}
.keyh-sec__tl-rt p {
  color: var(--dark-text);
}
.tsm-sec .tsm-sec__col {
  padding-top: 4rem;
}
.keyh-sec.dark-bg .keyh-sec__tl-rt p {
  color: var(--white-color);
}
form .hs-error-msg {
  color: red;
  font-size: 1.1rem;
}
form .hs_error_rollup label {
  font-size: 1.2rem;
  color: red;
}
.port-tw-wrap .tw-wrap__desc p {
  margin-bottom: 2.2rem;
}
.port-tw-wrap .tw-wrap__desc p:last-child {
  margin-bottom: 0px;
}
.investbar {
  flex-wrap: nowrap;
}
.investbar__right{
  text-align: right;
}
/* fort home */
.fort__grid {
  display: flex;
  flex-wrap: wrap;
}
.fort-model{
  padding-right: 40px;
}
.fort__inner img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.fort-left {
  width: calc(100% - 342px);
  padding-right: 48px;
  position: sticky;
  top: 0;
  height: 100%;
}
.fort__right {
  width: min(342px,100%);
}
.fort__title{
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
}
.fort__list{
  align-items: baseline;
  display: flex;
  flex: 1;
  justify-content: space-around;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.fort__list li>* {
  display: block;
  text-align: center;
}
.fort__list li strong {
  font-size: 20px;
}
.fort__list li span {
  font-size: 14px;
}
.fort__list li {
  line-height: 1;
  color: #000;
}
.fort__content{
  padding-top: 40px;
}
.fort__tab-list{
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.fort__tab-list li{
  flex: 1;
  color: #000;
  font-size: 14px;
  padding-block: 5px;
  border-bottom: 2px solid var(--clrGray);
  cursor: pointer;
}
.fort__tab-list li.active{
  border-color: #000;
}
.fort__tabs {
  padding-top: 40px;
}
.fort__tabs-content{
  padding-top: 15px;
}
.fort__tabs-box {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
}
.fort__tabs-boxinput input[type="checkbox"]:checked+.fort__tabs-box{
  border-color: var(--black-color);
  background: #f4f4f4;
}
.fort__tabs-boxinput input[type="checkbox"]{
  display: none;
}
.fort__tabs-boxinput+.fort__tabs-boxinput{
  margin-top: 10px;
}
.fort__tabs-box span {
  font-size: 15px;
}
.fort__tabs-inner:not(.active){
  display: none;
}
.fort__slides .slick-arrow {
  background-color: var(--dark-color);
  background-position: 50%;
  background-repeat: no-repeat;
  color: transparent;
  cursor: pointer;
  padding: 5px 10px;
  z-index: 99;
  height: 48px;
  width: 68px;
}
.fort__slides .slick-prev {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/arrow-icon.svg);
  left: 20px;
}
.fort__slides .slick-arrow::before {
  display: none;
}
.fort__slides .slick-next {
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/arrow-icon-right.svg);
  right: 20px;
}
.fort__input input[type="checkbox"]{
  display: none;
}
.fort__input label{
  font-size: 14px;
  line-height: 1;
  color: var(--black-color);
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
.fort__input label::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  border: 1px solid var(--black-color);
}
.fort__button {
  padding: 0;
  color: var(--black-color) !important;
  background: transparent !important;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 14px;
}
.fort__tab-price sub {
  bottom: 0px;
}
.fort__tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.fort__input {
  line-height: 1;
}
.fort__input input[type="checkbox"]:checked+label::after{
  border-bottom: 2px solid var(--black-color);
  border-right: 2px solid var(--black-color);
  content: "";
  height: 10px;
  left: 8px;
  position: absolute;
  top: 4px;
  transform: rotate(45deg);
  width: 5px;
}
.fort__tab-button{
  text-align: center;
  padding-top: 15px;
}
.fort__single-text {
  color: var(--black-color);
  font-size: 14px;
}
.fort__tab-bottom{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
}
.fort__popup:not(.active){
  display: none;
}
.fort__popup{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0,0,0,.5);
  display: grid;
  place-items: center;
  padding: 40px;
  z-index: 999;
}
.fort__popup-dialog{
  width: min(1440px,100%);
  margin-inline: auto;
  background-color: #fff;
  padding: 40px;
  position: relative;
  isolation: isolate;
}
.fort__close{
  background-color: transparent !important;
  border: 0 !important;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #000;
}
.fort__close svg{
  height: 24px;
  width: 24px;
  color: #000;
}
.fort__popup-flex{
  display: flex;
  flex-wrap: wrap;
  padding-inline: 15px;
}
.fort__popup-col{
  padding-inline: 15px;
}
.fort__popup-left{
  width: 60%;
}
.fort__popup-right{
  width: 40%;
}
.fort__popup-heading{
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.fort__popup-zip{
  padding: 10px 15px;
  background: #fff;
  border: 1px solid var(--clrGray2);
  color: #171a12;
  font-size: 1.6rem;
}
.fort__input-error{
  padding-top: 10px;
  color: red;
  font-size: 11px;
}
.fort__popup-zip::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #171a12 !important;
}
.fort__popup-zip::-moz-placeholder { /* Firefox 19+ */
  color: #171a12 !important;

}
.fort__popup-zip:-ms-input-placeholder { /* IE 10+ */
  color: #171a12 !important;

}
.fort__popup-zip:-moz-placeholder { /* Firefox 18- */
  color: #171a12 !important;
}
.fort__slider-pop:not(.active){
  display: none;
}
.fort__slider-pop{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0,0,0,.5);
  display: grid;
  place-items: center;
  padding: 40px;
  z-index: 999;
}
.fort__pop-inner{
  background-color: #fff;
  position: relative;
  isolation: isolate;
}
.fort__pop-flex{
  display: flex;
  flex-wrap: wrap;
  transition: all 200ms ease-in-out;
}
.fort__pop-inner,
.fort__pop-flex{
  min-height: 500px;
}
.fort__customize {
  padding-top: 50px;
  text-align: center;
}
.fort__radio__list {
  list-style: none;
  text-align: left;
  font-size: 14px;
  padding-top: 20px;
  display: inline-block;
}
.customize__heading {
  font-size: 18px;
  margin-bottom: 0;
}
.fort__radio__list label {
  color: #000;
}
.fort__radio__list li+li {
  margin-top: 10px;
}
.customize__subheading {
  font-size: 14px;
  display: block;
  color: #000;
}
.fort__radio+.fort__radio {
  margin-top: 30px;
}
.fort__radio .fort__radio__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.fort__radio .fort__radio__list li {
  margin: 0!important;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--dark-color);
}
.fort__radio .fort__radio__list li input[type="radio"] {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  margin-inline: auto;
}
.fort__radio .fort__radio__list li label {
  cursor: pointer;
  z-index: 1;
  line-height: normal;
  padding: .8rem 1rem;
  background-color: transparent;
  border: 1px solid var(--dark-color);
}
.fort__radio .fort__radio__list li input[type="radio"]:checked + label {
  background: var(--dark-color);
  color: #fff;
}
@media screen and (max-height: 500px ){
  .fort__pop-inner,
  .fort__pop-flex{
    min-height: 80vh;
  }

}
.fort__pop-left{
  width: 60%;
}
.fort__pop-right{
  width: 40%;
  padding: 40px;
}
.fort__pop-title{
  font-size: 24px;
}
.fort__slider-close{
  background-color: transparent !important;
  border: 0 !important;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #000;
}
.fort__slider-close svg{
  height: 24px;
  width: 24px;
  color: #000;
}
.fort__slider-dialog{
  max-width: 800px;
  width: 100%
}
.fort__pop-media {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.fort__pop-desc p {
  font-size: 14px;
}
.fort__pop-slides .slick-dots {
  bottom: -50px;
}
.fort__pop-slides  .slick-list {
  overflow: visible;
}
.fort__pop-slides .slick-slide {
  margin: 0 25px;
}
.fort__pop-slides .slick-list {
  margin: 0 -25px;
}
.fort__slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark-color);
  background-position: 50%;
  background-repeat: no-repeat;
  color: transparent;
  cursor: pointer;
  height: 48px;
  width: 68px;
  z-index: 999;
}

.fort__pop-slide:not(.slick-current.slick-active) {
  filter: brightness(0.5);
}
.prevArrow{
  left: 10%;
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/arrow-icon.svg);
}
.nextArrow{
  right: 10%;
  background-image: url(https://44717655.fs1.hubspotusercontent-na1.net/hubfs/44717655/images/arrow-icon-right.svg);
}
.fort__pop-block-content{
  display: none;
}
.fort__pop-button.active+.fort__pop-block-content{
  display: block;
}
.fort__pop-button{
  color: #000 !important;
  font-size: 24px;
  padding: 0 20px;
  position: relative;
  background-color: transparent !important;
  border: 0 !important;
}
.fort__pop-button::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  height: 10px;
  width: 10px;
}
.fort__pop-block-content{
  padding: 20px;
}
.fort__pop-accordion{
  padding: 30px;
}
.fort__pop-block-content strong,
.fort__pop-block-content ul,
.fort__pop-block-content p{
  font-size: 14px;
  color: #000;
}
.fort__pop-block-content ul {
  padding-left: 20px;
}
body.fixed{
  overflow: hidden;
}
/* End fort home */

.contruction_tools_module-content {
  padding-left: 6rem;
  padding-bottom: 10rem;
}















/* responsive style */

@media (min-width: 1200px) and (max-width:1599px){
  .main-banner__slide {
    height: 700px;
  }
  .main-banner__video {
    height: 100%;
  }
  .main-banner__video video {
    object-position: 0;
  }
}

@media (max-width:1499px){
  .h1, h1 {
    font-size: 80px;
  }
  .tw-wrap__row.left-align .tw-wrap__inr {
    padding-right: 10px;
    width: 100%;
  }
  .tw-wrap__desc p {
    font-size: 20px;
  }
  .sec-tp .sec-tp__lft h2 br {
    display: none;
  }
  .inv-sdule__col figure{
    height: 100%;
  }
  .feat-inv__cont h2 {
    line-height: 1.1;
  }
  .inv-sdule__col figure img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
  }
  .multi-wrap .row-inverse .tw-wrap__inr {
    margin-left: 0;
    margin-right: 15px;
    width: 700px;
  }
  .our-team .our-team__cont {
    margin-left: 0;
    width: 500px;
    margin-right: 15px;
  }
  .multi-wrap .tw-wrap__inr {
    max-width: 700px;
    margin-left: 15px;
    margin-right: 0;
  }
  .our-team__col:last-child {
    justify-content: end;
  }
  .counter-data {
    border-bottom: 2px solid var(--clrGray);
    padding-inline: 2.5rem;
    padding-block: 6rem 6.5rem;
  }
  .counter-title {
    font-size: 55px;
  }
  .tw-wrap__inr {
    padding-left: 10px;
  }
}


@media (max-width:1299px){ 
  .tw-wrap {
    overflow: hidden;
  }
  .m-enq .m-enq__rw h2 {
    font-size: 24px;
  }
  .m-enq__info, .m-enq__sub {
    font-size: 18px;
  }
  .hs-slider__img img {
    height: auto !important;
  }
  .imgb-sec__wrp {
    gap: 3rem;
  }
  .imgb-sec__desc {
    padding-top: 2rem;
  }
  .keyh-sec__tp {
    gap: 4rem;
  }
  .port-btm__inr img {
    height: 420px !important;
  }
  .feat-inv__col figure img {
    height: 100% !important;
    object-fit: cover;
    width: 100% !important;
  }
  .tw-wrap__row.left-align .tw-wrap__inr {
    margin-left: auto;
    margin-right: 15px;
    padding-left: 4rem;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .tw-wrap .tw-wrap__inr {
    margin-left: 15px;
    padding-left: 0px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
  }
  .res-faq .sec-tp .sec-tp__rgt h3 {
    font-size: 2.2rem;
  }
  .feat-inv__col figure {
    height: 100%;
  }
  .res-faq .sec-tp__lft h2 {
    font-size: 2.8rem;
  }
  .res-faq .sec-tp__lft h2 br{
    display: none;
  }
  .main-banner__logo img {
    width: 100%;
    height: auto;
  }
  .inv-strpe__col:nth-of-type(2) {
    padding-right: 4rem;
  }
  .inv-intro__rt .inv-intro__col:first-child {
    padding-right: 40px;
  }
  .multi-wrap .tw-wrap__inr {
    padding-block: 2rem 3rem;
  }
  .subscribe-form__desc {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .container .h1, .container h1 {
    font-size: 64px;
    line-height: 1.1;
  }
  .container .h2, .container h2 {
    font-size: 38px;
  }
  .port-btm__cont h3 {
    font-size: 30px;
    line-height: 1.2;
  }
  .subscribe-form__inner form label {
    margin: 0;
  }
  .inv-strpe .inv-strpe__cont h2 {
    font-size: 22px !important;
  }
}

@media (max-width:1199px){ 
  .const-btn__wrap {
    flex-wrap: wrap;
    padding-block: 4rem 0 !important;
  }
  .re-faq__inner .sec-tp {
    padding-bottom: 3rem;
  }
  .port-intro__cont .port-intro__lft {
    padding-top: 0;
  }
  .hs-slider__inr {
    gap: 30px !important;
  }
  .header__row nav .menu__item.has-dropdown {
    padding-right: 1.5rem;
  }
  .port-btm__inr img {
    height: 350px !important;
  }
  .blk-col-title h3 br {
    display: none;
  }
  .main-banner__desc p br{
    display: none;
  }
  .txt-mod__blk {
    padding-left: 5rem;
  }
  .cs-slider__img img {
    height: 400px !important;
  }
  .tw-wrap__inr .tw-wrap__desc p br {
    display: none;
  }
  .tw-wrap__col figure img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }
  .tw-wrap__col figure {
    height: 100%;
  }
  main .default-banner {
    min-height: 320px;
  }
  .feat-inv__cont {
    padding: 5rem 3rem;
  }
  .ope-sec__tl {
    gap: 5rem;
  }
  .ww-offer .we-are__subtl h3 {
    font-size: 2.6rem;
  }
  .ope-sec__tl-lf h2 {
    font-size: 2.8rem;
  }
  .blk-col-bdr {
    width: 200px;
  }
  .inner-banner {
    min-height: 300px !important;
  }
  .cont-tools__col h3 {
    font-size: 24px;
  }
  .res-faq__rw .sec-tp__lft h2 br {
    display: none;
  }
  .res-faq .sec-tp__rgt {
    width: 375px;
  }
  .inv-sdule__cont {
    padding-block: 4rem;
    padding-inline: 3rem;
  }
  .inv-intro .blk-col-bdr {
    width: 200px;
  }
  .inv-strpe__col:last-child {
    padding-right: 2rem;
    width: 210px;
  }
  .inv-int__tl {
    font-size: 2.8rem;
    line-height: 1.35;
  }
  .inv-strpe__btn .btn {
    font-size: 1.4rem;
    padding-inline: 1.8rem;
  }
  .inv-intro__ft h3 {
    font-size: 25px;
    margin-bottom: 5px;
  }
  .inv-strpe__col:nth-of-type(2) {
    width: 45%;
  }
  .inv-intro__blk {
    padding-left: 4rem;
  }
  .inv-intro__rt .we-are__desc p {
    font-size: 18px;
    line-height: 1.3;
  }
  .inv-intro__list-icon {
    width: 38px;
    height: 38px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .inv-intro__list-item .inv-intro__cont {
    padding-left: 2.2rem;
  }
  .inv-intro__list-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.8rem;
    align-items: center;
  }
  .multi-wrap .tw-wrap__desc, 
  .multi-wrap .tw-wrap__desc p {
    font-size: 20px;
    line-height: 1.4;
  }
  .multi-wrap .tw-wrap__desc p br{
    display: none;
  }
  .inv-int__btm {
    padding-bottom: 4rem;
    padding-top: 6rem;
  }
  .multi-wrap .tw-wrap__desc {
    padding-bottom: 2.8rem;
    padding-top: 0rem;
  }
  .header-logo img {
    height: 15px !important;
    width: auto;
  }
  .main-banner__video {
    height: 100%;
  }

  .ftr-inner .ftr-col {
    width: calc(100% / 3) !important;
  }
  .ftr-menu {
    padding-inline: 20px;
  }
  .ftr-cont__info span, .ftr-cont__info span p {
    font-size: 1.4rem;
  }
  .ftr__menu-flex ul li a {
    font-size: 1.4rem;
  }
  .ftr-inner {
    padding-left: 5.6rem;
  }
  .h2, h2,
  .sm-title{
    font-size: 30px !important;
    line-height: 1.2;
  }
  .h1, h1 {
    font-size: 42px !important;
    line-height: 1.2 !important;
  }
  .inv-say__title .inv-say__title-blk {
    width: 100%;
  }
  .w-lf__bdr:after {
    content: "";
    top: 6px;
  }
  .w-lf h3 {
    padding-top: 0.5rem;
  }
  .main-banner__slide {
    height: 524px;
  }
  .main-banner__desc {
    padding-bottom: 4rem;
    padding-top: 2.6rem;
  }
  .main-banner__desc p {
    font-size: 20px;
    line-height: 1.3;
  }
  .counter-title {
    font-size: 34px;
    line-height: 1.3;
  }
  .we-are__desc p {
    font-size: 22px;
    line-height: 1.22;
  }
  .counter-data {
    padding-left: 2rem;
  }
  .counter-data p {
    font-size: 14px;
  }
  .we-are__col {
    width: 20.72%;
  }
  .we-are__inr {
    padding-left: 5.6rem;
    padding-right: 2rem;
  }
  .pl-7 {
    padding-left: 5.6rem;
  }
  .w-lf {
    width: 200px;
  }
  .port-btm__cont h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  .port-btm__cont {
    padding-inline: 1.6rem;
  }
  .lat-news__title h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .lat-news__desc p {
    font-size: 16px;
  }
  .inv-say__review-cont p {
    font-size: 16px;
    line-height: 1.4;
  }
  .ex-inv__cont p {
    font-size: 16px;
    line-height: 1.4;
  }
  .ex-plan__cont h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  .ex-plan__col {
    padding-block: 4.9rem 4.33rem;
  }
  .lat-news__author-info {
    font-size: 14px;
    line-height: 1.4;
  }
  .subscribe-form__desc {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .subscribe-form__lt h2 {
    font-size: 2.4rem !important;
    padding-bottom: 1rem;
  }
  .main-banner__video video {
    object-position: center;
  }
  .lat-news__features img {
    width: 350px;
  }
  .abt-sec .we-are__desc p {
    font-size: 18px;
  }
  .abt-sec .sche-call {
    width: 30%;
  }
  .abt-sec h3 {
    font-weight: 500;
  }
  .we-are__desc {
    padding-top: 2rem;
  }
  .tw-wrap__inr {
    margin-left: 15px;
    padding-right: 20px;
  }
  .tw-wrap__inr .tw-wrap__desc,
  .tw-wrap__inr .tw-wrap__desc p {
    font-size: 18px;
  }
  .tw-wrap__inr .tw-wrap__desc {
    padding-bottom: 3.8rem;
    padding-top: 0rem;
  }
  .sche-call__inr h3 {
    font-size: 20px;
  }
  .acc-faq .acc-title {
    font-size: 20px;
    line-height: 1;
    padding-block: 1.2rem 1.2rem;
    font-weight: 600;
  }
  .fd-inv__inr .fd-inv__col:last-child {
    padding-left: 3rem;
    padding-right: 2rem;
  }
  .fd-inv__sec .off-sec__outer .off-sec__col:last-child {
    padding-left: 3rem;
  }
  .ftr__copyright {
    line-height: 1.3;
  }
  .inv-intro__rt .inv-intro__col:first-child {
    padding-right: 40px;
    width: calc(100% - 250px);
  }
  .inv-intro__rt .inv-intro__last {
    width: 250px;
  }
  .inv-intro .inv-intro__rt {
    padding-top: 12rem;
  }
  .inner-banner {
    min-height: 320px;
  }
  /*   .inv-int__btm .inv-int__col:first-child {
  width: calc(100% - 300px);
}
  .inv-int__btm .inv-int__col:last-child {
  width: 300px;
} */
  .ope-sec__tl {
    gap: 4rem;
  }
  .res-faq .res-faq__rw .sec-tp__lft {
    padding-right: 5rem;
  }
  .re-faq__col.w-lf-lgt {
    border-right: 0px;
  }
}

@media (max-width:1023px){
  .h2, .sm-title, h2 {
    font-size: 24px !important;
    line-height: 1.4;
  }
  .subscribe-form__inner > div {
    width: 100%;
    text-align: center;
  }
  .subscribe-form__inner > div {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .subscribe-form__inner > div br{
    display: none;
  }
  .subscribe-form__lt h2 {
    padding-bottom: 0.5rem;
  }
  .subscribe--form form {
    justify-content: center;
    padding-top: 2rem;
  }
  .subscribe--form form label {
    margin: 0;
  }
}

@media (max-width:991px){
  .re-track__desc p {
    font-size: 18px;
  }
  .re-track__item h3 {
    padding-bottom: 2rem;
  }
  .res-faq .accordion-item:last-child {
    border-bottom: 0 !important;
  }
  .imgb-sec__tl-lf {
    padding-block: 5rem 6rem;
  }
  .imgb-sec .imgb-sec__tp {
    padding-left: 0px;
  }
  .mgs-slider__wrap .sl-controls {
    padding-left: 0 !important;
  }
  .mgs-sec .mgs-sec__tp {
    padding-bottom: 5rem;
  }
  .mgs-slider__rw {
    padding-left: 0px !important;
  }
  .inv-int__desc ul li a {
    background-size: 5% !important;
  }
  .hs-sec .ope-sec__tl {
    padding-left: 0px;
  }
  .c-pro-sec .re-faq__title.w-lf__bdr {
    border-bottom: 2px solid var(--clrGray) !important;
  }
  .main-banner__logo img {
    margin-left: auto;
    width: 100%;
    height: auto;
  }
  .multi-banner .main-banner__video {
    height: 100%;
    padding-top: 56%;
  }
  .multi-banner .main-banner__slide {
    height: auto;
  }
  .hs-menu-item.active-menu .hs-menu-children-wrapper {
    left: auto !important;
    position: relative !important;
    display: block !important;
    opacity: 1 !important;
  }
  .port-btm__inr img {
    height: 100% !important;
    max-height: 400px;
  }
  .keyt-sec .w-lf-lgt .w-lf__bdr {
    border-bottom: 2px solid hwb(83deg 7% 90% / 10%);
  }
  .acc-faq.white-bg .w-lf.w-lf-lgt {
    border-bottom: 2px solid var(--clrGray) !important;
    border-right: 0px !important;
  }
  .keyt-serv__desc p {
    font-size: 16px;
  }

  .keyt-serv__item {
    padding-inline: 3rem;
  }
  .re-track__inr {
    padding-top: 2rem;
  }
  .re-track .re-track__tp {
    padding-left: 0px;
  }
  .re-track__tl-lf h2 br {
    display: none;
  }
  .keyh-serv__desc p {
    font-size: 1.6rem;
  }
  .keyh-serv__desc {
    padding-inline: 0px 10px;
    padding-bottom: 20px;
  }
  .port-tw__btn {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .port-tw-wrap .tw-wrap__inr {
    padding-left: 1rem;
  }
  .port-tw-wrap .tw-wrap__inr p {
    font-size: 1.6rem;
  }
  .cst-slider__wrap {
    padding-left: 0rem;
  }
  .port-tw__cont {
    padding-block: 5rem;
    padding-right: 15px;
  }
  .co-design-inner .co-design__left {
    padding-block: 5rem;
    padding-inline: 2rem;
  }
  .co-design__desc p {
    font-size: 1.6rem;
  }
  .mgs-sec__tp {
    padding-left: 0px;
  }
  .mgs-slider__rw {
    padding-left: 0;
  }
  .tline-slider__wrap {
    padding-left: 0;
  }
  .keyh-sec__tp {
    grid-template-columns: 1fr 1fr;
    padding-left: 0px;
  }
  .keyh-serv__inr {
    padding-left: 0;
  }
  .our-team__desc strong {
    font-size: 1.9rem;
  }
  .our-team__desc p {
    font-size: 1.9rem;
  }
  .more-info__btm p {
    font-size: 1.6rem;
  }
  .ww-offer .we-are__subtl h3 {
    font-size: 2.4rem;
  }
  .ww-offer .we-are__title {
    padding-bottom: 1.8rem;
  }
  .ww-offer .we-are__desc {
    padding-top: 2rem;
  }
  .tw-wrap__inr .tw-wrap__desc,
  .tw-wrap__inr .tw-wrap__desc p {
    font-size: 18px;
  }
  .feat-inv {
    padding-block: 4rem 0px;
  }
  .feat-inv__inr {
    padding-bottom: 2rem;
  }
  .res-faq .w-lf-lgt .w-lf__bdr {
    border-bottom: 2px solid rgb(243 243 243 / 10%);
  }
  main .default-banner {
    min-height: 300px;
  }
  .cont-tools__inr {
    padding-bottom: 0rem;
  }
  .cont-tools__col h3 {
    font-size: 20px;
  }
  .ww-offer .we-are__cont {
    padding-left: 0px;
  }
  .acc-faq .w-lf-lgt .w-lf__bdr {
    border-bottom: 2px solid hsla(0, 0%, 100%, .1);
  }
  .cont-tools {
    padding-top: 2rem;
  }
  .acc-faq .acc-faq__rw .w-lf-lgt {
    border-right: 0px;
  }
  .cont-tools__rw {
    padding-block: 2rem;
  }
  .inv-intro .blk-col-title {
    border-bottom: 2px solid rgba(26, 44, 46, .1);
  }
  .inv-intro .blk-col-bdr {
    border-right: 0;
  }
  .inv-intro__blk {
    padding-left: 0rem;
  }
  .inv-intro__rt {
    width: 100%;
  }
  .inv-intro .blk-col-bdr {
    width: 100%;
  }
  .abt-sec .we-are__title h2 br {
    display: none;
  }
  .multi-wrap .tw-wrap__inr {
    padding-right: 2rem !important;
  }
  .multi-wrap .row-inverse .tw-wrap__inr {
    padding-left: 20px;
    padding-right: 0px !important;
  }
  .fort-loader__inner img {
    max-width: 230px;
    filter: invert(1);
    opacity: 0;
    transform: translateY(50px);
    animation: logoAppear 1s ease-out forwards 1s;
  }

  .fort-loader {
    position: absolute;
    background-color: var(--black-color);
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    opacity: 1;
    animation: slideIn 1s ease-in-out forwards;
  }
  .keyh-serv__inr .keyh-serv__wrp {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  @keyframes slideIn {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideOut {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      transform: translateX(-100%);
      opacity: 0;
    }
  }

  @keyframes logoAppear {
    0% {
      opacity: 0;
      transform: translateY(50px); 
    }
    100% {
      opacity: 1;
      transform: translateY(0); 
    }
  }

  .fort-loader.hide {
    animation: slideOut 1s ease-in-out forwards;
  }

  .fort-loader__inner img.hide {
    opacity: 0;
    transform: translateY(50px);
  }
  .enq-signup__col.w-lf.w-lf-lgt {
    border-bottom: 2px solid #dededd;
  }

  .gray-bg .w-lf.w-lf-lgt {
    border-right: 0px;
  }
  .enq-signup__inr {
    padding-top: 2.3rem;
  }
  .inv-say__row .w-lf__bdr:after {
    top: 13px;
  }
  .flr__logo {
    border-bottom: 2px solid var(--clrGray);
    padding-bottom: 15px;
  }
  .w-lf-lgt .w-lf__bdr:after {
    top: 20px;
  }
  .blk-col-title:after {
    content: "";
    right: auto;
    top: 16px;
    transform: rotate(90deg);
    left: 22px;
  }
  .ww-are__row {
    flex-direction: column;
  }
  .we-are__col {
    padding-block: 2.5rem;
    width: 100% !important;
  }
  .we-are__inr {
    padding-inline: 0px;
    padding-top: 1rem;
    width: 100%;
  }
  .we-are__counter {
    display: flex;
  }
  .ftr-cont__info span {
    width: 100%;
  }

  .we-are__counter .counter-data {
    width: calc(100%/3);
    text-align: center;
    border: 2px solid var(--clrGray);
    border-right: 0;
    padding-inline: 1rem;
  }
  .we-are__counter {
    border-left: 0;
    border-right: 0;
    border: 0;
  }
  .blk-col-bdr {
    border-right: 0;
    border-bottom: 0px;
    width: 100%;
    padding-right: 0;
  }
  .we-are__desc p {
    font-size: 20px;
    line-height: 1.4;
  }
  .we-are__counter .counter-data:last-child {
    border: 2px solid var(--clrGray);
  }
  .we-are__inr {
    padding-bottom: 0;
  }
  .we-are__desc {
    padding-bottom: 2.5rem;
    padding-right: 1rem;
    padding-top: 0rem;
  }
  .pt-10 {
    padding-top: 4rem !important;
  }
  .pb-10 {
    padding-bottom: 4rem !important;
  }
  .blk-col-title {
    padding-top: 0;
    border-bottom: 2px solid var(--clrGray);
  }
  .w-lf h3 br {
    display: none;
  }
  .w-lf {
    width: 100%;
    padding-right: 0px;
    border-right: 0px;
  }
  .w-rt {
    width: 100%;
    padding-inline: 0 !important;
  }
  .we-are__cont {
    padding-top: 2rem;
  }
  .w-lf__bdr {
    border-bottom: 2px solid hsla(0, 0%, 100%, .1);
    position: relative;
  }
  .w-lf__bdr:after {
    content: "";
    left: 22px;
    right: auto;
    top: 20px;
    transform: rotate(90deg);
  }
  .w-lf.w-lf-lgt{
    border-right: 0px;
  }
  .w-lf-lgt .w-lf__bdr {
    border-bottom: 2px solid var(--clrGray);
  }
  .ex-inv__col.w-rt {
    padding-top: 0px !important;
  }
  .inv-say__author h3 {
    font-size: 20px;
  }
  .inv-say__rating img {
    width: 13px;
  }
  .inv-say__rating {
    gap: 4px;
  }

  .we-are__cont {
    padding-top: 3rem !important;
  }
  .ww-are__row {
    padding-bottom: 3rem;
  }
  .sec-tp {
    align-items: center;
  }
  .lat-news__bg .lat-news__title .lat-news__btn {
    top: 0;
  }
  .main-banner__video {
    padding-top: 100%;
    height: 100%;
  }
  .ex-inv__col {
    padding-bottom: 3rem;
  }
  .port-sec__bg {
    padding-top: 3rem !important;
  }
  .re-faq__title-blk h2 {
    max-width: 100%;
    padding-bottom: 10px;
  }
  .re-faq__title-blk .re-faq__btn {
    padding-bottom: 2rem;
  }
  .ftr-inner {
    padding-left: 0;
  }
  .ftr__bottom {
    padding-left: 0;
    padding-top: 20px;
  }
  .ftr__copyright {
    font-size: 12px;
    line-height: 1.4 !important;
    font-family: var(--primary-font) !important;
  }
  .ftr__rgt {
    padding-block: 5rem 3rem;
  }
  .ftr__lft .flr__logo {
    padding-top: 3rem;
    text-align: center;
  }
  .tw-wrap .tw-wrap__btn {
    padding-bottom: 1rem;
  }
  .res-faq__rw .w-lf-lgt {
    border-right: 0px !important;
  }
  .txt-mod__lft h2 br{
    display: none;
  }
  .aft-bef-sec__tp {
    padding-left: 0px;
  }
  .tline-slider__wrap {
    padding-left: 0px !important;
  }
  .video-section video {
    height: 100%;
  }
  .keyt-sec__tl-rt {
    max-width: 100%;
    margin-left: auto;
    width: 1090%;
  }
}
.main-banner__cont {
  text-align: right;
  margin-left: auto;
}

.sec-rules {
  background-color: #f4f4f4;
  padding-block: 2rem;
}

.sec-rules__cont p {
  font-weight: 600;
}

@media (min-width:768px){
  .keyh-sec__tl-rt {
    padding-top: 1rem;
  }
  .main-banner__cont {
    justify-content: flex-start;
    text-align: right;
    max-width: 1250px;
    width: 100%;
    margin-left: auto;
    padding-block: 8rem 4.6rem;
  }
}

@media (max-width:767px){
  .subscribe-form__inner>div {
    flex-wrap: wrap;
  }
  .investbar__right {
    padding-top: 22px;
  }
  .re-track .w-lf.w-lf-lgt {
    padding-top: 5rem;
  }
  .utube-btn__wrap {
    padding-top: 1rem;
  }
  .accordion-item .res-faq__btn {
    padding-bottom: 1rem;
  }
  .keyt-serv__inr {
    padding-bottom: 5rem;
  }
  .keyt-serv__item:last-child,
  .keyt-serv__item:nth-last-child(2) {
    border-bottom: 2px solid hwb(83deg 7% 90% / 10%) !important;
  }

  .tw-wrap__title h2 {
    margin-bottom: 5px;
  }
  .tsm-sec .tsm-sec__col.w-lf-lgt {
    display: none;
  }
  .hs__slider__stl h3 {
    margin-bottom: 6px;
  }
  .inv-sdule-blk {
    padding-bottom: 6rem;
  }
  .inv-strpe {
    margin-bottom: 5.2rem;
  }
  .hs-slider__content p {
    font-size: 1.5rem;
  }
  .hs-sec .hs-slider__rw {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .hs-sec .hs-slider__rw {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .hs-slider__inr {
    gap: 22px !important;
    grid-template-columns: repeat(1, 1fr) !important;
    padding-top: 2rem !important;
  }
  .hs-sec .ope-sec__tl {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 0px !important;
    gap: 0rem;
  }
  .hs-slider__wrap {
    padding-inline: 2rem !important;
    margin-top: 3rem !important;
    padding-block: 1.3rem 2.1rem !important;
  }
  .c-pro-sec.gray-bg .w-lf.w-lf-lgt {
    border-bottom: 2px solid #dededd;
  }
  .c-pro-sec__inr .c-pro-faq__desc p {
    font-size: 1.6rem;
  }
  .const-btn__wrap {
    flex-wrap: wrap;
  }

  .off-sec__outer {
    padding-bottom: 2rem;
  }
  .subscribe-form__rt .submitted-message {
    padding-top: 2.5rem;
  }
  .main-banner__cont {
    justify-content: flex-start;
  }
  .main-banner__desc p{ 
    font-weight: 500;
  }
  .lat-news__cont {
    padding-right: 0;
  }
  .utube-sec__tl-rt {
    padding-block: 5rem 0px;
  }
  .keyt-sec__tl-rt .res-faq__desc {
    padding-top: 0;
  }
  .lat-news__rows {
    margin-bottom: 2.2rem;
  }
  .keyt-sec__tp {
    padding-left: 0px;
  }
  .keyt-serv__inr .keyt-serv__wrp {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-track__item h3 {
    padding-bottom: 1rem;
    font-size: 2.2rem;
    margin-bottom: 1px;
  }
  .re-track__desc p {
    font-size: 16px;
  }
  .re-track__item h3 {
    padding-bottom: 1rem;
  }
  .re-track__inr {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding-top: 3rem;
  }
  .page-menu__flx li {
    padding-inline: 2rem;
    flex-wrap: wrap;
  }
  .aft-bef-sec .ab--slider .image-container img {
    height: 450px !important;
  }

  .keyh-serv__desc p {
    font-size: 16px;
  }
  .tsm-sec .sl-controls {
    justify-content: center;
  }
  .port-tw__btn {
    gap: 1rem !important;
    justify-content: center;
  }
  .sl-controls {
    padding-left: 0px !important;
  }
  .inv-say__review-cont {
    max-width: 100%;
    padding-right: 0px;
  }
  .co-design-inner .co-design__left {
    padding-block: 5rem;
    padding-inline: 0;
    gap: 1rem;
    justify-content: center;
  }
  .mgs-slider__wrap .sl-controls {
    padding-left: 0;
  }
  .co-design-inner > div {
    width: 100% !important;
  }

  .co-design-inner {
    flex-direction: column;
  }
  .const-btn__wrap {
    padding-block: 4rem 0 !important;
  }

  .c-pro-sec-rt__img {
    text-align: center;
    padding-top: 6rem;
  }
  .tsm-slide__title {
    padding-inline: 0px;
    position: relative;
    text-align: center;
  }
  .tsm-slide__desc {
    padding-inline: 0px;
    text-align: center;
  }
  .mgs-sec__tp {
    grid-template-columns: 1fr;
    padding-bottom: 5rem;
  }
  .timeline-sec .mgs-sec__tl-lf {
    padding-right: 0;
    max-width: 100% !important;
  }
  .mgs-slider__rw {
    padding-left: 0px !important;
  }
  .mgs-sec-rt__img {
    padding-top: 4rem;
    text-align: center;
  }
  .mgs-sec__tl-rt {
    padding-top: 3rem;
    text-align: left;
  }
  .mgs-sec__tl-lf {
    padding-right: 0;
  }
  .imgb-sec__desc {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
  .imgb-sec__tl-rt {
    padding-top: 3rem;
  }
  .imgb-sec__desc P{
    font-size: 1.6rem;
  }
  .imgb-sec__tl-lf {
    padding-block: 3rem 3rem;
  }
  .imgb-sec .imgb-sec__tp {
    padding-left: 0px;
  }
  .imgb-sec__tl-rt figure img {
    width: 100%;
  }
  .imgb-sec__wrp {
    gap: 0;
    grid-template-columns: 1fr;
  }
  .aft-bef-sec__tp {
    padding-left: 0px !important;
  }
  .keyh-sec__tp {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .keyh-serv__cont h3 {
    margin-bottom: 1px;
  }
  .keyh-serv__inr .keyh-serv__wrp {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .port-tw__cont {
    padding-block: 2rem;
    padding-right: 0;
  }
  .port-tw-wrap .port-tw__img {
    padding-block: 5rem;
  }
  .port-intro__cont .port-intro__lft {
    width: 100% !important;
    padding-right: 0 !important;
    padding-top: 5rem !important;
  }
  .port-intro__rgt {
    width: 100% !important;
    border-left: 0px !important;
    border-right: 0px !important;
  }
  .main-banner__logo img {
    width: 90%;
    /*     margin-left: 0px; */
    /*     margin-right: auto; */
  }
  .port-sec__bg {
    padding-bottom: 4rem;
  }
  .our-team__desc {
    padding-top: 1rem;
  }
  .our-team .our-team__cont {
    padding-inline: 15px;
  }
  .txt-mod__blk {
    padding-bottom: 3rem;
  }
  .our-team__desc strong {
    font-size: 1.9rem;
    line-height: 1.3;
  }
  .txt-mod__cont p {
    font-size: 1.6rem;
  }
  .txt-mod__lft h2 {
    padding-bottom: 0.5rem;
  }
  .txt-mod__blk {
    padding-left: 0;
    padding-bottom: 2rem;
    text-align: center;
  }
  .txt-mod__cont {
    flex-direction: column-reverse;
  }
  .txt-mod__cont > div {
    width: 100%;
  }
  .tw-wrap__sbtl h3 {
    font-size: 2.1rem;
  }
  .tw-wrap__row.left-align .tw-wrap__inr {
    padding-left: 15px;
    margin-right: 0px;
    padding-right: 15px;
  }
  .tw-wrap__row.left-align .tw-wrap__inr {
    text-align: left !important;
  }
  .tw-wrap__sbtl {
    padding-top: 0px;
  }
  .feat-inv__inr {
    flex-direction: column;
  }
  .res-faq.white-bg .ex-inv__cont .res-btn {
    text-align: left;
    padding-top: 0px;
  }
  .tw-wrap__sbtl h3 {
    font-size: 2rem;
  }
  .ope-sec {
    border-top: 0;
    padding-top: 4rem;
  }
  .acc-faq .accordion-content {
    padding-block: 10px 0px;
  }
  .ww-offer .we-are__cont {
    padding-bottom: 0px;
  }
  .feat-inv__inr .feat-inv__col:last-child {
    border-left: 2px solid var(--clrGray) !important;
    padding-inline: 1.5rem;
    padding-block: 1rem;
  }
  .ope-sec__inr .ope-sec__col:first-child {
    padding-top: 0px !important;
  }
  .feat-inv__btn {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .feat-inv__cont {
    padding: 3rem 0rem;
  }
  .feat-inv__cont h2 {
    margin-bottom: 0px;
  }
  .feat-inv__inr .feat-inv__col:first-child,
  .feat-inv__inr .feat-inv__col:last-child{
    width: 100% !important;
  }
  .res-faq__rw .w-lf-lgt {
    border-right: 0px !important;
    padding-top: 5rem !important;
  }
  .res-faq .res-faq__desc p {
    font-size: 17px;
  }
  .res-faq .accordion-content p {
    font-size: 16px !important;
  }
  .res-faq .sec-tp__lft {
    width: 100% !important;
    padding-right: 0px;
  }
  .res-faq .res-faq__rw .sec-tp__lft {
    padding-right: 0px;
  }
  .acc-faq .re-faq__col:last-child {
    padding-bottom: 0px !important;
  }
  .res-faq__rw .sec-tp {
    padding-bottom: 12px !important;
    margin-bottom: 20px !important;
  }
  .res-faq__tl .acc-title {
    font-size: 18px !important;
  }
  .res-faq .ex-inv__cont {
    max-width: 100% !important;
  }
  .ope-sec .ope-sec__tl {
    display: block;
  }
  .btn,
  .btn:focus,
  .btn:hover {
    font-size: 1.4rem;
    /*     padding: 1.1rem 1.5rem; */
  }
  .inv-strpe__inr {
    flex-wrap: wrap;
  }
  .inv-int__inr {
    padding-block: 0 50px;
  }
  .inv-strpe__col:nth-of-type(2) {
    width: 100%;
    padding-inline: 1.5rem;
    padding-block: 2rem;
  }
  .inv-intro__rt .we-are__desc p {
    font-size: 17px;
  }
  .inv-intro__rt .inv-intro__last {
    width: 100%;
    padding-top: 15px;
  }
  .inv-intro__ft h3 {
    font-size: 20px;
  }
  .inv-int__tl {
    font-size: 1.78rem;
  }
  .inv-intro__ft {
    padding-block: 1.5rem 2rem;
    padding-inline: 1.5rem;
  }
  .inner-banner {
    min-height: 225px !important;
  }
  .inv-intro .we-are__btn {
    padding-bottom: 3rem;
  }
  .inv-intro__rt .inv-intro__col:first-child {
    padding-right: 0px;
    width: 100%;
  }
  .inv-intro__ft figure img {
    width: 100%;
  }
  .inv-strpe__inr > div{
    width: 100%;
  }
  .inv-sdule__col {
    width: 100%;
  }
  .inv-sdule__desc p {
    font-size: 16px;
  }
  .inv-strpe__col:last-child {
    width: 100%;
    text-align: left;
    padding-bottom: 3rem;
    padding-inline: 1.5rem;
  }
  .inv-sdule-blk {
    flex-direction: column;
  }
  .inv-sdule__inr {
    flex-wrap: wrap;
  }
  .inv-int__tl {
    font-size: 2.0rem;
  }
  .inv-sdule__desc {
    padding-top: 0.4rem;
  }
  .inv-int__tl {
    max-width: 100%;
  }
  .inv-sdule__btn {
    padding-top: 2rem;
  }
  .inv-sdule__cont {
    padding-block: 2rem 4rem;
    padding-inline: 1.5rem;
  }
  .inv-int__btm {
    flex-direction: column;
  }
  .inv-int__btm .inv-int__col:last-child {
    width: 100%;
  }
  .inv-int__btm .inv-int__col:first-child {
    width: 100%;
  }
  .acc-faq .acc-title {
    padding-block: 0px;
  }
  .w-lf-lgt .w-lf__bdr:after {
    top: 18px;
  }
  .acc-faq .acc-faq__rw .re-faq__title {
    border-bottom: 2px solid #dededd;
  }
  .fd-inv__inr {
    gap: 5px;
    grid-template-columns: repeat(1, 1fr);
  }
  .fd-inv__cont {
    padding-bottom: 4rem;
  }
  .multi-wrap .tw-wrap__inr {
    padding-right: 1.5rem !important;
  }
  .fd-inv__desc p {
    font-size: 16px;
    line-height: 1.3;
  }
  .multi-wrap .tw-wrap__row {
    flex-direction: column-reverse;
  }
  .tw-wrap__row {
    flex-direction: column;
  }
  .tw-wrap__row > div {
    width: 100%;
  }
  .acc-faq .acc-title {
    font-size: 17px;
    line-height: 1.3;
    padding-right: 1.5rem;
    font-weight: 600;
  }
  .tw-wrap__inr {
    margin-left: 0;
    padding-right: 15px;
    padding-left: 15px;
    padding-block: 5rem;
  }
  .fd-inv__inr .fd-inv__col:last-child {
    padding-inline: 0px;
    border-left: 0;
    border-top: 2px solid var(--clrGray);
    padding-top: 3rem;
  }
  .acc-faq .acc-faq__rw .accordion-content p,
  .acc-faq .acc-faq__rw .accordion-content ul li,
  .acc-faq .accordion-content li strong {
    font-size: 16px;
    line-height: 1.4;
  }
  .multi-wrap .row-inverse .tw-wrap__inr {
    padding-left: 15px;
    padding-right: 15px !important;
    text-align: left;
    margin-right: 0px;
  }
  .tw-wrap__inr .tw-wrap__desc {
    padding-bottom: 2.8rem;
  }
  .multi-wrap .tw-wrap__row.row-inverse {
    flex-direction: column-reverse;
  }
  .multi-wrap .tw-wrap__title {
    padding-bottom: 0rem;
  }
  .main-banner__desc {
    padding-top: 1rem;
  }
  .row-fluid .default-banner {
    min-height: 250px;
  }
  .tw-wrap__inr .tw-wrap__desc,
  .tw-wrap__inr .tw-wrap__desc p {
    font-size: 16px;
  }
  .h1, h1 {
    font-size: 28px !important;
    line-height: 1.2;
  }
  .h2, .sm-title, h2 {
    font-size: 22px !important;
    line-height: 1.4;
  }
  .sec-tp__lft {
    width: 100%;
  }
  .ex-inv__btn {
    padding-top: 0;
    padding-bottom: 1rem;
  }
  .sec-tp__rgt {
    width: 100%;
    max-width: 100%;
    padding-top: 2.5rem;
  }
  .sec-tp__lft h2 {
    margin-bottom: 0;
    padding-bottom: 2rem;
  }
  .sec-tp__lft h2 br {
    display: none;
  }
  .lat-news__inner .lat-news__rows:first-child {
    width: 100%;
    flex-direction: column;
    padding: 2.4rem 1.7rem 2rem;
  }
  .lat-news__features {
    width: 100%;
  }
  .lat-news__features img{
    width: 100%;
  }
  .ex-inv__btn{
    padding-top: 0px !important;
  }
  .lat-news__rows:first-child .lat-news__features {
    padding-top: 2rem;
  }
  .lat-news__rows {
    width: 100%;
  }
  .lat-news__inner .lat-news__rows:first-child .lat-news__cont {
    padding-right: 0;
  }
  .our-team__row {
    flex-direction: column;
  }
  .our-team__col {
    width: 100%;
  }
  .our-team__col:last-child {
    justify-content: center;
    padding-block: 2rem;
  }
  .our-team .our-team__cont {
    text-align: center;
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
  }
  .our-team__desc {padding-top: 2rem;}
  .our-team__desc p {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .lat-news__rows:last-child {
    margin-bottom: 0px;
  }
  .our-team .ot-lft figure img {
    vertical-align: bottom;
  }
  .subscribe--form form input:not([type=submit]) {
    width: auto;
  }
  .ex-plan__col {
    max-width: 100%;
    border: 1px solid var(--clrGray);
  }
  .ex-plan__row {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .subscribe--form form {
    flex-wrap: wrap;
  }
  .port-btm__row {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .inv-say__review-cont {
    padding-right: 20px;
  }
  .xs-title {
    font-size: 1.4rem;
  }
  .ftr-cont__info span, .ftr-cont__info span p {
    font-size: 1.3rem;
  }
  .ftr__btm-menu ul {
    font-size: 12px;
    gap: 12px;
    padding-bottom: 6px;
    padding-top: 5px;
    flex-wrap: wrap;
  }
  .w-lf__bdr:after {
    content: "";
    top: 18px;
  }
  .port-btm__btn svg {
    max-height: 12px;
    position: relative;
    top: -2px;
  }
  .we-are__desc p {
    font-size: 18px;
  }
  .port-btm__btn {
    height: 35px;
    width: 35px;
  }
  .port-btm__btn svg {
    max-height: 12px;
  }
  .acc-title {
    font-size: 16px;
    line-height: 100%;
  }
  .accordion-title__icon svg {
    height: 10px !important;
  }
  .header__navigation .dropdown.menu-layout-1 .dropdown-item a{
    position: relative;
  }
  .header__navigation .dropdown.menu-layout-1 .dropdown-item a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  header .tp-nav__menu ul {
    justify-content: center;
    flex-direction: row !important;
  }
  .header__top-widget {
    padding-block: 0.5rem;
  }
  .tp-nav__menu .hs-menu-item a {
    font-size: 12px;
  }
  .header-logo img {
    height: 13px !important;
    width: auto;
  }
  .inv-say__col:last-child {
    padding-bottom: 5rem;
  }
  .lat-news__title h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .subscribe-form {
    padding-block: 3rem 4rem;
  }
  .enq-sec__title-blk h2 {
    font-size: 16px !important;
  }
  .enq-signup__inr {
    padding-top: 0.3rem;
  }
  .enq-signup__inr .hs_submit {
    padding-top: 1.2rem;
    padding-bottom: 2rem;
  }
  .fort-loader__inner img {
    max-width: 150px;
  }
  .abt-sec .we-are__desc p {
    font-size: 16px;
  }
  .inv-strpe .inv-strpe__cont h2 {
    font-size: 20px !important;
  }
  .inv-int__btm {
    padding-top: 3rem;
  }
  .inv-intro .blk-col-title:after {
    content: "";
    top: 14px;
  }
  .inv-int__tl {
    font-size: 1.7rem;
  }
  .inv-int__desc p {
    font-size: 17px;
    line-height: 1.3;
  }
  .h2-title {
    font-size: 2.2rem !important;
    line-height: 1.35;
  }
  .cont-tools__col p {
    font-size: 1.6rem;
  }
  .ww-offer .we-are__desc {
    padding-top: 1rem;
  }
  .blk-col-title:after {
    content: "";
    top: 13px;
  }
  .cs-sec .ope-sec__tl {
    display: grid      ;
    gap: 10rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
  .cs-slider__wrap {
    padding-top: 3rem;
  }
  .cont-tools__col h3 {
    font-size: 18px;
    font-weight: 600;
  }
  .cont-tools {
    margin-left: 0px;
  }
  .cont-tools .cont-tools__tl {
    padding-left: 0px;
    text-align: center;
  }
  .cont-tools__rw {
    padding-inline: 0px;
  }
  .a-before-icon .sl-btn {
    font-size: 1.4rem;
    line-height: 1.5rem !important;
    padding-block: 1rem !important;
  }
  .port-intro_desc p {
    font-size: 1.6rem;
  }
  .res-faq__desc p {
    font-size: 1.6rem;
  }
  .keyt-serv__item:nth-child(odd){
    border-left: 2px solid hwb(83deg 7% 90%/10%) !important;    
  }
}

@media (max-width:575px){
  .tsm-slide__title {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    padding-left: 0rem !important;
  }
  .tsm-slide__title:after{
    display: none;
  }
  .sl-controls .sl-btn {
    min-width: 45px;
  }
  .keyt-sec__tp {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
  .keyt-serv__desc p {
    font-size: 15px;
  }
  .keyt-serv__item {
    padding-inline: 1rem;
  }
  .aft-bef-sec .ab--slider .image-container img {
    height: 300px !important;
  }
  .cs-slider__img img {
    height: 350px !important;
  }
  .our-team__desc p, .our-team__desc p strong {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .cont-tools__rw {
    gap: 0rem;  
    flex-direction: column;
    text-align: center;
  }
  .inv-int__desc ul li a {
    background-size: 7%;
  }
  .our-team__desc strong {
    font-size: 1.8rem;
  }
  .enq-signup__inr .hs-form-field {
    padding-bottom: 10px;
    width: 100%;
  }
  .enq-signup__inr .hs_submit {
    padding-top: 1.8rem;
    width: 100%;
  }
  .enq-signup__inr .fm-privacy-text p, legend.hs-field-desc {
    font-size: 16px;
    line-height: 1.3;
  }
  .main-banner__cont {
    max-width: 100%;
    padding-block: 6rem 2rem;
  }
  .slider-controls__inner {
    bottom: 1.2rem;
  }
  .subscribe--form form input:not([type=submit]) {
    width: 100%;
  }
  .main-banner .slider-dots {
    bottom: 20px;
  }
  .subscribe--form form {
    gap: 2.6rem;
  }
  .our-team__btn {
    padding-top: 3rem;
  }
  .ftr__rgt {
    padding-block: 2.5rem 3rem;
  }
  .ftr__social__media {
    padding-top: 1rem;
  }
  .ftr-subscribe {
    border-bottom: 1px solid var(--clrGray);
    padding-bottom: 20px;
    padding-top: 28px;
    max-width: 320px;
    margin-inline: auto;
  }
  .inv-say__review-cont {
    max-width: 100% !important;
  }
  .ftr__social-list {
    justify-content: center;
  }
  .footer__inner .ftr-inner > div {
    width: 100% !important;
    text-align: center;
  }
  .ftr-phone a {
    text-decoration: none;
  }
  .flr__logo figure img {
    max-height: 80px;
  }
  .main-banner__desc p {
    font-size: 16px;
    line-height: 1.3;
  }
  .ftr__menu-flex ul li a {
    font-size: 1.3rem;
  }
  .inv-say__review-cont {
    max-width: 100%;
    padding-right: 0px;
  }
  .ex-plan__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .port-btm__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .port-btm__inr img {
    width: 100%;
  }
  .we-are__counter {
    gap: 15px;
    flex-wrap: wrap;
  }
  .ftr__copyright {
    font-size: 11px;
    color: var(--dark-color);
  }
  .ex-inv__cont p, .inv-say__review-cont p {
    font-size: 14px;
  }
  .sl-btn {
    padding: 4px 4px;
    background-size: 40%;
    font-size: 18px;
  }
  .our-team__col:last-child {
    padding-block: 3rem 5rem;
  }
  .we-are__counter .counter-data {
    border: 2px solid var(--clrGray) !important;
    width: 100%;
  }
  .subscribe--form form {
    width: 100%;
  }
  .subscribe-form form input[type=submit] {
    background-position: 94% 50%;
    background-size: 16px;
    font-size: 16px;
    text-align: left;
    width: 100%;
    color: var(--dark-color) !important;
  }
  .subscribe--form form > div {
    width: 100%;
  }
  .enq-form__inner .hs-form-field {
    margin-bottom: 0;
    grid-column: span 2;
  }
  .enq-form__inner .hs-submit {
    grid-column: span 2;
  }
  .enq-form__inner .hs_message textarea {
    height: 100px;
  }
  .m-enq__row .m-enq__rw-cont h2 {
    font-size: 16px;
  }
  .m-enq__rw {
    gap: 3rem;
  }
  .enq-form__inner form {
    gap: 10px;
    padding-top: 1.5rem;
  }
  .m-enq__info, .m-enq__sub {
    font-size: 16px;
    line-height: 1.4;
  }
  .enq-sec__row .enq-sec__col:last-child {
    padding-bottom: 1.5rem;
  }
  .m-enq__rw {
    flex-direction: column;
  }
}

@media (max-width:374px){
  .h1, h1 {
    font-size: 25px !important;
    line-height: 1.2;
  }
}
.opp__inner{
  padding: 18px;
  height: 100%;
}
.opp__top h3 {
  font-size: 24px;
  font-weight: 600;
}
.opp__content ul {
  font-size: 16px;
}
.arrow__link,.arrow__link:hover {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 34px;
}
.opp-sec__title h2 {
  margin-bottom: 36px;
}
.opp__top {
  padding-bottom: 20px;
}
.opp__top-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px){
  .w-50{
    width: 100%;
  }
  .opp__content ul {
    padding-left: 20px;
  }
  .opp__top-flex {
    grid-template-columns: auto;
  }