/*
Template Name: getreallabs
*/
/*================================================
1. Default CSS
2. Hero CSS
3. Service CSS
4. Mission CSS
5. Investors CSS
6. Footer CSS
7. Newsletter CSS
8. Digital CSS

=================================================*/
/*================================================
1. Default CSS
=================================================*/
/* Media Query Variable */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/*CSS Variable*/
:root {
  /*font Variable*/
  --ff-poppins: "Poppins", sans-serif;
  --ff-ptsans: "PT Sans", sans-serif;
  /*Color Variable*/
  --primary-orange: #bada55;
  --color-black: #000;
}

a {
  color: unset;
  text-decoration: none;
}
a:focus {
  outline: 0 solid;
}
a:hover {
  text-decoration: none;
  color: unset;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  color: var(--color-black);
  font-family: var(--ff-ptsans);
}

h2.h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-family: var(--ff-poppins);
  font-weight: 400;
}

h3.h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

@media only screen and (max-width: 1199.98px) {
  h2.h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 991.98px) {
  h2.h2 {
    font-size: 24px;
  }
}
html,
body {
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.3;
  font-family: var(--ff-poppins);
}

p {
  margin-bottom: 0;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

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

/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.section-margin-top {
  margin-top: 120px;
}

.section-margin-bottom {
  margin-bottom: 120px;
}

.row-top-margin {
  margin-top: 60px;
}

.section-padding-top {
  padding-top: 120px;
}

.section-padding-bottom {
  padding-bottom: 120px;
}

.row-top-padding {
  padding-top: 60px;
}

.row-bottom-padding {
  padding-bottom: 60px;
}

@media only screen and (max-width: 991.98px) {
  .section-margin-top {
    margin-top: 60px;
  }
  .section-margin-bottom {
    margin-bottom: 60px;
  }
  .row-top-margin {
    margin-top: 30px;
  }
  .section-padding-top {
    padding-top: 60px;
  }
  .section-padding-bottom {
    padding-bottom: 60px;
  }
  .row-top-padding {
    padding-top: 30px;
  }
  .row-bottom-padding {
    padding-bottom: 30px;
  }
}
.z-index-one {
  z-index: 1 !important;
}

.z-index-minus-one {
  z-index: -1 !important;
}

.section-middle {
  margin: 0 auto;
}

.max_content {
  width: -moz-max-content;
  width: max-content;
}

.text_white {
  color: #fff;
}

.ff-ptsans {
  font-family: var(--ff-ptsans);
}

.ff-poppins {
  font-family: var(--ff-poppins);
}

/*
============================================
============= Preloader CSS ================
*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .spinner-wrap {
  width: 180px;
  height: 180px;
  position: relative;
}

.preloader .preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader .preloader-logo img {
  max-width: 130px;
}

.preloader .spinner {
  position: relative;
  width: 100%;
  height: 100%;
  border-top: 3px solid #7da8a9;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 2s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*
============= Preloader CSS END ================
================================================
*/
/*Back to Top btn*/
.back-to-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background: #fff;
  mix-blend-mode: exclusion;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  display: none;
  z-index: 9999;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}
.back-to-top-btn i {
  color: #000;
  font-size: 18px;
  transition: 0.3s;
  -webkit-text-stroke: 1px;
}
.back-to-top-btn i::before {
  vertical-align: middle;
}

/*Back to Top btn End*/
@media (min-width: 1400px) {
  .container {
    max-width: 980px;
  }
  .container.container-lrg {
    max-width: 1090px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1080px;
  }
  .container.container-lrg {
    max-width: 1190px;
  }
}
.common-btn {
  background-image: url(../../images/button-bg.webp);
  width: 158px;
  height: 34px;
  background-size: 100% 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0em;
  font-family: var(--ff-ptsans);
}
@media only screen and (max-width: 991.98px) {
  .common-btn {
    font-size: 16px;
    justify-content: center;
  }
  .common-btn img {
    display: none;
  }
}
.common-btn.resource-blog-btn {
  padding: 6px 14px;
}

.post-btn {
  padding: 10px 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 700;
  background-color: rgb(0, 0, 0);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 575.98px) {
  .post-btn {
    padding: 10px;
    font-size: 12px;
    letter-spacing: 0px;
    gap: 3px;
  }
}
.breadcrumb-area {
  padding: 207px 0 110px;
}
.breadcrumb-area.product {
  padding: 210px 0 110px;
}
.breadcrumb-area.breadcrumb-area-career {
  padding: 160px 0 100px;
}
.breadcrumb-area.breadcrumb-area-resource {
  padding: 150px 0 100px;
}
.breadcrumb-area.breadcrumb-area-company, .breadcrumb-area.breadcrumb-area-resource {
  background-position: unset;
}
.breadcrumb-area.breadcrumb-area-observe {
  padding: 190px 0 50px;
}
.breadcrumb-area.breadcrumb-area-download {
  padding: 69px 0 53px;
}

.breadcrumb-info ul li {
  font-family: var(--ff-oswald);
  font-weight: 600;
  font-size: 65px;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0px;
  text-transform: none;
  position: relative;
}
.breadcrumb-info ul li:not(:last-child) {
  padding-right: 20px;
  margin-right: 18px;
}
.breadcrumb-info ul li:not(:last-child)::before {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  height: 85%;
  width: 3px;
  content: "";
}
.breadcrumb-info.breadcrumb-info-solution ul li {
  font-family: var(--ff-openSans);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0px;
  text-transform: uppercase;
}
.breadcrumb-info.breadcrumb-info-solution ul li:not(:last-child) {
  padding-right: 14px;
  margin-right: 13px;
}
.breadcrumb-info.breadcrumb-info-company {
  max-width: 564px;
}
.breadcrumb-info.resource-details h2 {
  max-width: 720px;
  width: 100%;
}
.breadcrumb-info.breadcrumb-info-observe {
  margin-top: 120px;
}
.breadcrumb-info.breadcrumb-info-download .download-desc {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  font-family: var(--ff-oswald);
}
@media only screen and (max-width: 991.98px) {
  .breadcrumb-info.breadcrumb-info-download .download-desc {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1399.98px) {
  .breadcrumb-info.breadcrumb-info-observe {
    margin-top: 0;
  }
  .breadcrumb-info.breadcrumb-info-observe .h1 {
    font-size: 55px;
  }
  .breadcrumb-info.breadcrumb-info-download h1 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .breadcrumb-info ul li {
    font-size: 54px;
  }
  .breadcrumb-info.breadcrumb-info-observe .h1 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 991.98px) {
  .breadcrumb-info.breadcrumb-info-solution ul li {
    font-size: 16px;
  }
  .breadcrumb-info.resource-details h2 {
    max-width: 100%;
    width: 100%;
    font-size: 68px;
  }
  .breadcrumb-info.breadcrumb-info-observe {
    margin-top: 0;
  }
  .breadcrumb-info.breadcrumb-info-download h1 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb-area.breadcrumb-area-career, .breadcrumb-area.breadcrumb-area-resource {
    padding: 113px 0 60px;
  }
  .breadcrumb-info ul {
    gap: 10px;
  }
  .breadcrumb-info ul li {
    font-size: 40px;
  }
  .breadcrumb-info ul li:not(:last-child) {
    padding-right: 14px;
    margin-right: 4px;
  }
  .breadcrumb-info.breadcrumb-info-solution ul {
    gap: 3px;
  }
  .breadcrumb-info.breadcrumb-info-resource h2 {
    font-size: 30px;
  }
  .breadcrumb-info.resource-details h2 {
    font-size: 2.5em;
  }
}
.single-post .menu-area {
  position: absolute;
}

/*================================================
2. Menu CSS
=================================================*/
.menu-area {
  position: absolute;
  width: 100%;
  padding: 18px 0px;
  z-index: 9;
}
.menu-area.sticky {
  position: fixed;
  animation: slide_down_site 0.35s ease-out;
  background-color: var(--color-black);
  top: 0;
  left: 0;
}

.transparent-header {
  position: absolute;
  background: transparent;
  top: 0;
  left: 0;
}

.admin-bar .menu-area {
  top: 32px;
}

.admin-bar .sticky {
  top: 32px;
}

@media screen and (max-width: 781.99px) {
  .admin-bar .menu-area,
  .admin-bar .transparent-header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .menu-area,
  .admin-bar .transparent-header {
    top: 46px;
  }
  .admin-bar .menu-area.sticky {
    top: 0;
  }
}
@keyframes slide_down_site {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.mainmenu-wrap {
  gap: 33px;
}

.mainmenu {
  text-align: right;
}
.mainmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 33px;
}
.mainmenu ul ul {
  display: block;
}
.mainmenu ul ul li ul {
  left: -215px;
  top: 64px;
}
.mainmenu ul ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 15px;
}
.mainmenu li {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.mainmenu li a {
  padding: 9px 0;
  transition: 0.3s;
  display: inline-block;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  color: #fff;
}
.mainmenu li ul {
  position: absolute;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  min-width: 292px;
  height: auto;
  transform-origin: 0 0 0;
  right: 0px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  z-index: 9;
  padding: 10px 13px;
  transform: scaleY(0);
}
.mainmenu li ul li {
  text-align: left;
  display: block;
  padding: 3px;
  position: relative;
  margin-left: 12px;
  line-height: 32px;
}
.mainmenu li ul li:not(:last-child) {
  border-bottom: 1px dashed #000;
  margin-bottom: 7px;
  padding-bottom: 7px;
}
.mainmenu li ul li::before {
  position: absolute;
  left: -20px;
  font-size: 19px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f285";
  font-family: bootstrap-icons !important;
  opacity: 0;
  transition: all 0.3s;
}
.mainmenu li ul li:hover::before {
  opacity: 1;
}
.mainmenu li ul li > a {
  transition: 0.3s;
}
.mainmenu li ul a {
  color: var(--color-black);
  width: 85%;
  text-align: left;
  margin-left: 0px;
  padding: 0px 0px;
}
.mainmenu li:hover > a {
  color: #fff;
  transition: all 0.3s;
}
.mainmenu li:hover ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.mainmenu li:hover ul ul {
  visibility: hidden;
  opacity: 0;
}
.mainmenu li.has-child-menu > a {
  position: relative;
}
.mainmenu li.has-child-menu > a::before {
  position: absolute;
  left: 106%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-family: bootstrap-icons !important;
  content: "\f282";
  transition: all 0.5s;
  color: #c99a2c;
}
.mainmenu li.has-child-menu:hover a::before {
  transform: translateY(-50%) rotate(180deg);
}
.mainmenu li.has-child-menu ul li.has-child-menu > a::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-family: bootstrap-icons !important;
  -webkit-text-stroke: 1px;
  content: "\f285";
  transition: all 0.5s;
  color: #000;
}

@media only screen and (max-width: 991.98px) {
  .menu-logo-wrap img {
    max-width: 221px;
  }
  .main-menu-wrap li {
    margin: 0;
    padding: 0;
  }
  .main-menu-wrap li.has-child-menu .sub-menu .has-child-menu .sub-menu {
    position: relative;
    top: unset;
    left: unset;
  }
  .main-menu-wrap li.has-child-menu:hover > .sub-menu {
    transform: unset;
    opacity: unset;
    visibility: unset;
  }
  .main-menu-wrap li.has-child-menu .sub-menu li a {
    padding: 1em 10%;
  }
  .main-menu-wrap li.has-child-menu .sub-menu {
    position: relative;
    top: unset;
    min-width: unset;
    list-style: none;
    transform: unset;
    opacity: 1;
    visibility: visible;
    transition: unset;
    background: unset;
    box-shadow: unset;
    border-radius: unset;
    border: unset;
    padding: 0;
  }
  .main-menu-wrap li.has-child-menu::before {
    display: none;
  }
  .mean-container .mean-nav {
    position: relative;
    margin-top: 57px;
  }
  .mean-container .mean-bar {
    position: absolute;
    background: transparent;
    padding: 0px 0;
    min-height: 0px;
    z-index: 2;
    top: 0;
    right: 0;
  }
  .mean-container a.meanmenu-reveal {
    right: 12px !important;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    height: 22px;
    width: 22px;
    display: inline-grid;
    padding: 12px;
    top: 2px;
  }
  .mean-container a.meanmenu-reveal i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 24px;
    -webkit-text-stroke: 1px;
  }
  .mean-container a.meanmenu-reveal span {
    height: 2px;
    margin-top: 2px;
  }
  .mean-container a.meanmenu-reveal span:first-child {
    margin-top: 0px;
  }
  .mean-container .mean-nav ul li a.mean-expand {
    height: 33px;
    border-left: unset !important;
    border-bottom: unset !important;
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: 27px !important;
    font-weight: 200;
    background: none;
    width: 100%;
  }
  .mean-container .mean-nav ul li a.mean-expand:hover {
    background: none;
  }
  .mean-container .mean-nav ul li a {
    font-family: var(--ff-openSans);
    font-weight: normal;
    font-size: 14px;
    color: #7d7d7d;
    letter-spacing: 0px;
    text-transform: unset;
  }
  .mean-container .mean-nav ul li a:hover {
    background-color: rgb(124, 168, 170);
    color: #000000;
  }
  .main-menu-wrap li.has-child-menu .sub-menu li a {
    color: rgba(255, 255, 255, 0.9215686275);
    font-size: 14px;
  }
  .mean-container .mean-nav ul li li a {
    font-size: 15px;
  }
  .meanmenu-reveal ~ .mean-nav .menu-btn-wrap {
    display: none;
  }
  .meanmenu-reveal.meanclose ~ .mean-nav .menu-btn-wrap {
    display: block;
  }
  .mean-container .mean-nav {
    background: rgb(0, 0, 0);
  }
  .mean-container .mean-nav ul li a {
    border: none;
  }
  .menu-btn-wrap {
    margin-top: -34px;
    margin-right: 76px;
  }
  .menu-btn-wrap .common-btn.menu {
    padding: 7px 26px;
  }
  /* Menu button End */
  /* menu End */
}
@media only screen and (max-width: 767.98px) {
  .mainmenu ul > li:last-child,
  .mean-container .mean-nav ul > li:last-child {
    display: block;
  }
  .menu-logo-wrap img {
    max-width: 144px;
  }
  .mean-container a.meanmenu-reveal {
    top: -10px;
  }
  .mean-container .mean-nav {
    margin-top: 46px;
  }
}
@media only screen and (min-width: 992px) {
  .menu-area {
    padding: 18px;
  }
}
/*================================================
2. Hero CSS
=================================================*/
.menu-area {
  padding: 40px 0 10px;
}

.menu-area {
  padding: 40px 0 10px;
}
.menu-area.sticky {
  padding: 30px 0 25px;
}

@media only screen and (max-width: 991.98px) {
  .menu-area {
    padding: 30px 0 10px;
  }
}
.hero-area {
  padding: 91px 0 0;
}
.hero-area.breadcrumb {
  padding: 156px 0 70px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991.98px) {
  .hero-area.breadcrumb {
    padding: 97px 0 60px;
  }
}
.hero-area.resource-breadcrumb {
  padding: 118px 0 50px;
}
@media only screen and (max-width: 991.98px) {
  .hero-area.resource-breadcrumb {
    padding: 97px 0 60px;
  }
}

.section-bg {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.hero-info {
  padding-bottom: 40px;
}
.hero-info .hero-title {
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  max-width: 275px;
}
.hero-info p {
  margin: 20px 0 34px;
  font-size: 22px;
  line-height: 1.2;
  max-width: 425px;
  width: 100%;
}
.hero-info.hero-info-resource p {
  font-size: 40px;
  line-height: 1;
  margin: 0;
}

.hero-img-wrap {
  margin-bottom: -74px;
}

.logo-wrap img {
  max-width: 220px;
}

@media only screen and (max-width: 991.98px) {
  .hero-info {
    text-align: center;
  }
  .hero-info .hero-title {
    font-size: 28px;
    max-width: unset;
  }
  .hero-info p {
    margin: 15px 0 24px;
    font-size: 18px;
    max-width: 100%;
  }
  .logo-wrap img {
    max-width: 150px;
  }
  .hero-img-wrap {
    margin-bottom: 0;
    text-align: center;
  }
  .hero-img-wrap img {
    max-width: 300px;
    margin: 0 auto;
  }
}
/*================================================
3. Service CSS
=================================================*/
.service-child .service-box .service-icon-wrap {
  height: 79px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-child .service-box .service-icon-wrap img {
  width: 95px;
  height: 78px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-child .service-box .service-info h3 {
  margin: 13px 0 11px;
}
.service-child .service-box .service-info p {
  max-width: 232px;
  font-size: 14px;
}
.service-child:nth-child(2) .service-box .service-icon-wrap img {
  width: 74px;
  height: 77px;
}
.service-child:nth-child(3) .service-box .service-icon-wrap img {
  width: 66px;
  height: 64px;
}
@media only screen and (max-width: 991.98px) {
  .service-child:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px dotted #fff;
  }
  .service-child .service-box {
    display: flex;
    gap: 20px;
  }
  .service-child .service-box .service-icon-wrap {
    width: 100%;
    height: auto;
    max-width: 40px;
    align-items: baseline;
  }
  .service-child .service-box .service-icon-wrap img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
  .service-child .service-box .service-info h3 {
    margin: 0px 0 11px;
    line-height: 1;
  }
  .service-child .service-box .service-info p {
    max-width: unset;
    font-size: 14px;
  }
}

/*================================================
4. Mission CSS
=================================================*/
.padding-secrion-two {
  padding: 60px 0;
}

.mission-info .mission-title {
  font-weight: 700;
  font-size: 20px;
}
.mission-info p {
  line-height: 1.3;
  font-size: 22px;
}

@media only screen and (max-width: 991.98px) {
  .mission-info p {
    font-size: 18px;
  }
}
/*================================================
5. Investors CSS
=================================================*/
.investor-area {
  background: linear-gradient(90deg, #000000 60.7250548246%, #595959 100%);
}
@media only screen and (max-width: 767.98px) {
  .investor-area {
    padding: 30px 0;
  }
}

.investor-box .investor-title {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767.98px) {
  .investor-box .investor-title {
    margin-bottom: 8px;
  }
}
.investor-box .brand-logo-wrap .brand-logo-1 {
  max-width: 204px;
  width: 100%;
  height: 59px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767.98px) {
  .investor-box .brand-logo-wrap .brand-logo-1 {
    max-width: 150px;
  }
}
.investor-box .brand-logo-wrap .brand-logo-2 {
  max-width: 132px;
}
@media only screen and (max-width: 767.98px) {
  .investor-box .brand-logo-wrap .brand-logo-2 {
    max-width: 76px;
  }
}
.investor-box span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-orange);
}
.investor-box .investor-author-wrap .author-img-box {
  height: 75px;
  max-width: 75px;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  padding: 2px;
}
@media only screen and (max-width: 991.98px) {
  .investor-box .investor-author-wrap .author-img-box {
    height: 45px;
    max-width: 45px;
  }
}
.investor-box .investor-author-wrap p {
  font-size: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 767.98px) {
  .investor-box {
    padding: 0 29px;
  }
}

.investor-divider {
  position: relative;
}
.investor-divider::before {
  position: absolute;
  background-color: var(--primary-orange);
  height: 130%;
  width: 2px;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767.98px) {
  .investor-divider::before {
    height: 100%;
  }
}

/*================================================
6. Footer CSS
=================================================*/
.footer-area {
  padding: 38px 0;
}

.footer-wrap .logo-social {
  gap: 30px;
}
@media only screen and (max-width: 767.98px) {
  .footer-wrap .logo-social {
    gap: 17px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.footer-wrap .logo-social .footer-logo {
  width: 141px;
  height: 17px;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.footer-wrap .logo-social .footer-social {
  width: 37px;
  height: 37px;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.footer-wrap .footer-copy-text p {
  font-size: 12px;
  font-weight: 200;
}
.footer-wrap .footer-btn a {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-ptsans);
}

/*================================================
7. Newsletter CSS
=================================================*/
@media only screen and (max-width: 991.98px) {
  .newsletter-area {
    padding: 30px 25px;
  }
}

.newsletter-form-wrap {
  padding-right: 0px;
}
.newsletter-form-wrap .form-label {
  margin-bottom: 0;
}
.newsletter-form-wrap .form-input {
  background-color: #d9d9d9;
  border: 1px solid transparent;
  padding: 10px 15px;
}
.newsletter-form-wrap .form-input:focus {
  border: 2px solid #000;
  border-radius: 5px;
}
.newsletter-form-wrap .newsletter-checkbox {
  margin: 20px 0 34px;
}
@media only screen and (max-width: 991.98px) {
  .newsletter-form-wrap .newsletter-checkbox {
    margin: 20px 0 18px;
  }
}
.newsletter-form-wrap.contact-wrap {
  height: unset;
  overflow-y: unset;
  padding-right: 0px;
  max-width: 508px;
}
.newsletter-form-wrap.contact-wrap .contact-form-child .form-label {
  color: #fff;
}

.cf7 .wpcf7 form .wpcf7-response-output {
  margin: unset;
  padding: unset;
  border: unset;
  color: white;
  margin-top: 5px;
}

.subscribe-box {
  gap: 30px;
}
.subscribe-box p {
  font-size: 20px;
}
.subscribe-box .input-wrap {
  max-width: 400px;
}
.subscribe-box .input-wrap .subscribe-input {
  padding: 10px 20px;
}
.subscribe-box .btn-wrap button {
  height: 40px;
}
@media only screen and (max-width: 991.98px) {
  .subscribe-box {
    gap: 20px;
  }
}

.gradient-sub {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767.98px) {
  .gradient-sub {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*================================================
8. Digital CSS
=================================================*/
.digital-box .digital-img-wrap {
  height: 219px;
  display: flex;
  display: flex;
  align-items: end;
}
.digital-box .digital-img-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
}
.digital-box .digital-info p {
  max-width: 178px;
  font-size: 14px;
}

.row-digital-margin {
  margin-top: -49px;
}

@media only screen and (max-width: 767.98px) {
  .digital-box .digital-img-wrap {
    height: 180px;
  }
  .digital-box .digital-info p {
    max-width: 100%;
    font-size: 12px;
  }
}
.menu-text {
  font-size: 18px;
}

@media only screen and (max-width: 575.98px) {
  .digital-box .digital-img-wrap {
    height: 140px;
  }
  .menu-text {
    font-size: 16px;
  }
}
/*================================================
6. Resource CSS
=================================================*/
.resource-info .resource-title {
  font-size: 28px;
  letter-spacing: 0;
  max-width: 357px;
  width: 100%;
  line-height: 1.1;
}
.resource-info p {
  margin: 20px 0;
}

@media only screen and (max-width: 767.98px) {
  .resource-info .resource-title {
    font-size: 20px;
  }
}
/*================================================
10. Resource CSS
=================================================*/
.resource-box .resource-img {
  width: 100%;
  height: auto;
  position: relative;
}
.resource-box .resource-img a {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.resource-box .resource-img a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.resource-box .resource-info h3 {
  color: #000;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  font-family: var(--ff-ptsans);
  margin: 25px 0 20px;
}

.sidebar-wrap {
  gap: 30px;
}

.sidebar-title {
  color: #000;
  font-size: 30px;
  font-family: var(--ff-ptsans);
  font-weight: 400;
  margin-bottom: 15px;
}

.sidebar-listing {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-search .res_search {
  border: 1px solid #d9d9d9;
  padding: 12px 30px;
  max-width: calc(100% - 15px);
}

.tax_name input:checked + label {
  border-bottom: 2px solid #c2fc40;
}
.tax_name label {
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.tax_name:not(:last-child) {
  margin-bottom: 10px;
}

@media only screen and (max-width: 991.98px) {
  .sidebar-search {
    text-align: center;
    margin: 0 auto;
    max-width: 267px;
  }
  .sidebar-search .res_search {
    max-width: 267px;
    width: 100%;
  }
  .sidebar-title {
    font-size: 28px;
    text-align: center;
  }
  .sidebar-listing {
    flex-direction: row;
    justify-content: center;
  }
  .sidebar-wrap {
    gap: 15px;
  }
  .sidebar-category-wrap {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .tax_name:not(:last-child) {
    margin-bottom: 0px;
  }
  .tax_name label {
    font-size: 18px;
    white-space: nowrap;
  }
}
/*================================================
11. Menu CSS
=================================================*/
.share-wrap {
  gap: 30px;
}
.share-wrap .h2 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--ff-openSans);
  line-height: 1;
  margin-bottom: 0;
}

.site-social {
  gap: 15px;
}
.site-social li {
  transition: all 0.3s linear;
}
.site-social li a {
  color: #fff;
  background-color: rgb(0, 0, 0);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-social li a svg {
  width: 18px;
  height: 18px;
}
.site-social li:hover {
  transform: translateY(-3px);
}

html :where(.wp-block) {
  max-width: 1320px !important;
}

.subscribe-box .wpcf7-list-item {
  margin: 0;
}
.subscribe-box .wpcf7 form .wpcf7-response-output {
  margin: unset;
  padding: unset;
  border: unset;
  color: white;
  margin-top: 5px;
}

.blog__details_content a {
  color: #7ca8aa;
}
.blog__details_content p {
  font-size: 18px;
  margin-bottom: 1em;
}
.blog__details_content p:last-child {
  margin-bottom: 0;
}
.blog__details_content ul {
  margin-left: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
}
.blog__details_content ul li {
  margin-top: 0;
  margin-bottom: 5px;
  margin-left: 30px;
}
.blog__details_content h1,
.blog__details_content h2,
.blog__details_content h3,
.blog__details_content h4,
.blog__details_content h5,
.blog__details_content h6 {
  margin-bottom: 20px;
  margin-top: 5px;
}

.blog__details_content .section-title h2 {
  display: none;
}

@media (min-width: 1400px) {
  .container-extra-large-two {
    max-width: 1520px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.resource-img-wrap {
  height: -moz-max-content;
  height: max-content;
}
.resource-img-wrap .resource-img-box {
  max-width: 498px;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.resource-img-wrap .resource-img-box img {
  -o-object-position: bottom;
     object-position: bottom;
  opacity: 0.8;
}
@media only screen and (max-width: 767.98px) {
  .resource-img-wrap .resource-img-box {
    -webkit-clip-path: unset;
            clip-path: unset;
  }
}
.resource-img-wrap .resource-border {
  border: 4px solid #c2fc40;
  position: absolute;
  left: 20%;
  top: 40px;
  height: 70%;
  width: 1000%;
  border-right: unset;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.wp-block-quote {
  position: relative;
  z-index: 1;
  padding: 30px 30px 30px 10px;
  float: left;
  margin: 0 30px 10px 0;
  width: calc(35% - 30px);
  color: #fff;
  font-family: var(--ff-openSans);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0 !important;
}
.wp-block-quote > div, .wp-block-quote p {
  color: #fff;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  font-size: 33px !important;
  text-align: left;
  font-style: normal !important;
}
.wp-block-quote::before {
  background: var(--Purple-Gradient, linear-gradient(180deg, #1d2c68 0%, #301544 100%));
  background-repeat: no-repeat;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 1000%;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 1399.98px) {
  .wp-block-quote {
    padding-bottom: 80px;
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 1199.98px) {
  .wp-block-quote {
    padding: 30px 30px 30px 30px;
  }
  .wp-block-quote > div,
  .wp-block-quote p {
    font-size: 22px !important;
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 991.98px) {
  .wp-block-quote {
    width: 100%;
    margin-bottom: 15px !important;
    font-size: 24px;
  }
}
@media only screen and (min-width: 1625px) {
  .wp-block-quote > div {
    left: -150px;
    position: relative;
    width: calc(100% + 150px);
  }
}
@media only screen and (max-width: 1199.98px) {
  .wp-block-quote .wp-block-quote {
    width: calc(60% - 30px);
  }
}/*# sourceMappingURL=style.css.map */