@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@400;700&display=swap');

/* reset css */
a {
  display: inline-block;
  text-decoration: none !important;

}

img,
picture {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

button {
  background-color: transparent;
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

:root {
  --weight-400: 400;
  --font-family: 'Poppins', sans-serif;
  --color-white: #fff;
}

html {
  font-size: 0.935rem;
  scroll-behavior: smooth;
}

.main-img_wrap .main_banner-stats .stats-box .stats_number {
  font-size: min(max(17px, 2.56vw), 51px) !important;

}


.mt__header {
  /* padding-top: min(max(25px , 2.60vw), 60px); */
  padding: min(max(25px, 2.083vw), 40px) 15px 0;
}

.navbar {
  min-height: 60px;
  margin: auto;
}

/* NAVBAR-MENU-ICON (HAMBURGER) */

.hamburger {
  display: none;
  background-color: transparent;
  border: none;
}

.bar {
  display: block;
  width: 20px;
  height: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

.nav-menu>*+* {
  margin-left: 1.8rem;
}

.nav-links {
  transition: 0.3s ease-in-out;
  font-size: 1rem;
  color: var(--color-white);
  position: relative;
  text-decoration: none;
  padding: 10px 5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.nav-links::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 50%;
  height: 3px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: bottom left;

  transition: transform 0.3s;
}

.nav-links::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 50%;
  height: 3px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: bottom right;

  transition: transform 0.3s;
}

.nav-links:hover {
  color: var(--color-white);
}

.nav-links:hover::before {
  transform: scaleX(1);
}

.nav-links:hover::after {
  transform: scaleX(1);
}

.contact_link {
  background-color: transparent;
  display: flex;
  align-items: center;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: .8rem .8rem;
  position: relative;
  border-radius: 8px;
  z-index: 11;
  font-weight: 600;
  transition: transform 0.2s;
  background: #febd16;
  border: 1px solid #febd16;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  min-width: 90px;
  justify-content: center;
}

.contact_link::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.6s;
}

.contact_link::after {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
  transition: transform 0.6s;
}

.contact_link:hover {
  color: #000;
  border: 1px solid #fff;
}

.contact_link:hover svg path {
  fill: #000;
}

.contact_link:hover::before {
  transform: scaleX(1);
}

.contact_link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 15;
    position: relative;
  }

  .hamburger.active .bar:nth-child(2) {
    width: 26px;
    border-radius: 18px;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(-7px) rotate(42deg) translateX(15px);
    width: 18px;
    border-radius: 18px;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(7px) rotate(-42deg) translateX(15px);
    width: 18px;
    border-radius: 18px;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    gap: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #222;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    width: 100%;
    min-height: 100vh;
    text-align: center;
    transition: 0.6s ease-in-out;
    z-index: 10;
  }

  .nav-links {
    font-size: 1.5rem;
  }

  .main-section .main_intro .heading {
    text-align: center;
  }

  .nav-menu>*+* {
    margin-left: 0;
  }


  .active {
    right: 0% !important;
  }
}


.banner_carousal {
  margin-top: 50px;
  text-align: left;
  position: absolute;
  bottom: 35%;
  left: 50%;

  transform: translateX(-50%);

}

.banner_carousal .carousal_item .carousal_heading {
  font-size: min(max(25px, 1.82vw), 35px);
  font-weight: 600;
  color: var(--color-white);
}

.banner_carousal .carousal_item .carousal_para {
  font-size: 0.968rem;
  color: var(--color-white);
  line-height: 18px;
  max-width: 340px;
}

.banner_carousal .carousal_item .img-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.video-container {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.video-container:after {
  background: linear-gradient(to bottom, #00000054, #00000000);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}

video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 1;
}

.scrool-button {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #ffffffa8;
  position: absolute;
  bottom: -4%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-47%);
  animation: spin 10s linear infinite;
  /*Set our animation play state to paused initially */
  animation-play-state: paused;
  z-index: 9;
  cursor: pointer;
}


.scrool-button:hover::after {
  animation-play-state: running;
}

.img-box {
  transform: translateY(0px);
  /* animation: bounce .5s ease infinite alternate; */
  /*Set our animation play state to paused initially */
  /* animation-play-state: paused; */
}

.scrool-button:hover .img-box {
  animation: bounce .5s ease infinite alternate;
  /* animation-play-state: running; */
}

@keyframes spin {
  100% {
    transform: rotate(1turn);
  }
}

@keyframes bounce {
  0% {}

  100% {
    transform: translateY(-20px);

  }
}


.bottom-img {
  position: absolute;
  bottom: 0;
}

@media(min-width:2000px) {
  .mt__main {
    min-height: 1100px;
  }

  .scrool-button {
    bottom: -1%
  }

  .banner_carousal {
    bottom: 46%;
  }

  .bottom-img {
    bottom: -23px;
  }
}

.bottom-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: white;
  bottom: -1px;
}

@media (max-width: 768px) {
  .bottom-img {
    bottom: 0%;
    height: 175px;
  }

  .bottom-img img {
    height: 100% !important
  }
}

@media (max-width: 768px) {
  .uagb-ifb-content {
    text-align: center;
  }
}


/* css for main section */


section.section {
  padding: 40px 0;
}

.main-section .main_intro .heading {
  font-size: min(max(30px, 2.70vw), 52px);
  color: #000;
  font-weight: 700;
  line-height: 1;
}

.main-section .main_intro .heading span {
  /*     background: linear-gradient(267.93deg, #3f3bf6 15.23%, #6286fa 51.74%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; */
  display: block;
}
/* 
.main-section .main_intro .para {
  font-size: min(max(14px, 1.1vw), 22px);
  margin-top: min(max(15px, 1.56vw), 30px);
  color: #000;
  line-height: 1.8;
} */

.read_btn {
  margin-top: min(max(15px, 1.56vw), 30px);
  font-size: min(max(18px, 1.145vw), 22px);
  color: #000;
  line-height: 1.8;
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;

  border-radius: 8px;

  padding-right: 0;

}

.read_btn span {
  width: min(max(45px, 3.38vw), 65px);
  height: min(max(45px, 3.38vw), 65px);
  background-color: #2E27F8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  transition: transform 0.6s;
  animation: moveright 1s linear infinite;
  animation-play-state: paused;
}

.read_btn:hover {
  color: currentcolor;
}

.read_btn:after {
  display: none;
}

.read_btn:hover span {
  border-radius: 50%;
  animation-play-state: running;
}

@keyframes moveright {
  0% {
    margin-left: 15px;
  }

  50% {
    margin-left: 0px;
  }

  100% {
    margin-left: 15px;
  }
}

.main-img_wrap .main_banner-stats {
  position: absolute;
  top: 50%;
  left: -7%;
  transform: translateY(-50%);
  z-index: 2;
}
/* 
.main-img_wrap>.main_banner-img {
  max-width: min(max(235px, 26.56vw), 510px);
} */

.main-img_wrap .main_banner-stats .stats-box {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background: #000000;
  border-radius: 11px;
  padding: min(max(12px, 1.145vw), 22px) min(max(8px, 1.145vw), 22px);
  min-width: min(max(140px, 11.97vw), 230px);
  align-items: center;
  text-align: right;
}

.main-img_wrap .main_banner-stats .stats-box img {
  max-width: min(max(35px, 3.90vw), 75px);
}

.main-img_wrap .main_banner-stats .stats-box .stats_title {
  color: var(--color-white);
  font-size: min(max(12px, 0.937vw), 18px);
  margin-bottom: 0.2rem;
  margin-left: 0.4rem;
  margin-top: 0;
}

.main-img_wrap .main_banner-stats .stats-box .stats_number {
  color: var(--color-white);
  font-size: min(max(17px, 1.56vw), 30px);
  margin-bottom: 0.2rem;
  font-weight: 700;
  margin-left: .5rem;

}

@media(max-width:991px) {
  .main-img_wrap .main_banner-stats {

    left: 16%;
  }
}

@media(max-width:768px) {
  .main-img_wrap .main_banner-stats {

    left: 2%;
  }

  .main-section .main_intro .para {
    text-align: center;
  }

  .main_intro .read_btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width:400px) {
  .main-img_wrap .main_banner-stats {

    left: 0%;
  }
}

.map-hover {
  position: unset !important;
}

#tooltip {
  position: absolute;
  background-color: white;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  left: 0px;
  top: 2%;
}

#us-map path {
  cursor: pointer;
  stroke: #ffffff38;
}

#us-map path#DC {
  stroke: #000;
}

#us-map path:hover,
circle:hover {
  /*   stroke: #3d6dfa !important; */
  cursor: pointer;

}

#us-map tspan {
  pointer-events: none;
  font-family: 'poppins', sans-serif;
  font-weight: 600;
}

.tooltip-wraper {
  position: relative;
}

#tooltip {
  z-index: 999;
  pointer-events: none;
}

#tooltip h2 {
  font-size: 14px;
  color: #293450;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  /* margin-left: 10px; */
}

#tooltip p {
  color: #293450;
  font-size: 12px;
  margin-top: 4px;
}

#us-map text {
  pointer-events: none;
}

.red-strips_main {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  height: 50%;
  width: 355px;
}

@media(max-width:991px) {
  #tooltip {
    display: none !important;
  }
}

@media(max-width:576px) {
  .red-strips_main {

    right: -18%;
  }

}

@media(max-width:400px) {
  .red-strips_main {

    right: -40%;
  }
}

@media(max-width:576px) {
  .mt__main {
    min-height: 650px;
  }

  .banner_carousal {
    bottom: 28%;
  }
}

.site-above-footer-wrap[data-section="section-above-footer-builder"] {
  padding-inline: 20px
}

.brand-slider img {
  width: 160px !important;
}

.poker-chips {
  position: absolute;
  left: 0;
  top: 14%;
  animation: animName 2s linear infinite;
}

@media(max-width:991px) {
  .poker-chips {
    display: none;
  }
}

@keyframes animName {
  0% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(0deg) scale(1.01);
  }

  75% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg) scale(1);
  }
}

.ball-right {
  position: absolute;
  right: 0%;
  top: -7%;
  width: 200px;
  animation: animName 2s linear infinite;
}

@media(max-width:992px) {
  .ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row {
    grid-template-columns: 1fr !important;
  }

  .ast-header-break-point .footer-widget-area[data-section="sidebar-widgets-footer-widget-2"] {
    display: block;
  }

  .ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row :first-child {
    order: 1;
  }

  .ball-right {
    display: none;

  }
}

a,
.page-title,
.single .post-navigation a {
  color: #1733a1;
  color: var(--heading-color);
}

a.d-flex.align-items-center {
  color: #fff;
}

/* .entry-content p {
  margin-bottom: 0.6em;
  margin-top: 0.6em;
  font-size: 18px;
  line-height: 1.4;
} */

.entry-content ul li {
  font-size: 1.125rem;
}

.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap {
  position: unset;
}

.wp-block-uagb-container.uagb-block-f727b7f3.wp-block-uagb-container {
  position: relative;
}



.carrer-wraper .heading {
  font-size: min(max(30px, 1.60vw), 48px) !important;
  /* color: #2B24F8 !important; */
  color: var(--heading-color) !important;
}

.open-position {
  padding: min(max(40px, 3.38vw), 60px) 15px;
  background: linear-gradient(50.29deg, #000000 10.3%, #31347A 99.14%);
}

.open-position .open-pos {
  min-width: min(max(300px, 21.875vw), 420px);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  padding: 20px 10px;
  border: 5px solid #FFFFFF;
  border-radius: 24px;
  margin-bottom: 40px;
}

.open-position .open-pos:hover {
  background-color: transparent;
}

.open-position .open-head {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.open-position .open-head {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1;
}

.open-position .open-para {
  color: #fff;
  font-size: 1rem;
  line-height: 28px;
  margin-bottom: 0px;
}

.job-opening .awsm-job-item {
  background: transparent;

  border: 1px solid #fff;
}

.job-opening h2.awsm-job-post-title a {
  color: #fff;
}

.job-opening a.awsm-job-more {
  color: #615BFC;
}

.job-opening a.awsm-job-more:hover {
  color: #fff;
  font-weight: 700;
}

.job-opening span.awsm-job-specification-term {
  color: #fff;
}

main.mt__careers .bottom-img {
  display: none;
}

.scrool-button {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

main.mt__careers .nav-links {
  color: #000;
}

main.mt__careers .nav-links::after,
main.mt__careers .nav-links::before {
  background-color: #000;
}

main.mt__careers .contact_link {
  border-color: #000
}

main.mt__careers .contact_link {
  border-color: #000;
  color: #000;
}

main.mt__careers .contact_link:hover {
  color: #fff;
}

main.mt__careers .contact_link:before,
main.mt__careers .contact_link:after {
  background-color: #000;
}

main.mt__careers .contact_link svg path {
  fill: #000;
}

main.mt__careers .contact_link:hover svg path {
  fill: #fff
}

main.mt__careers .banner .banner__heading {
  line-height: 1;
}

.grediant-text {
  /* 	background: linear-gradient(267.93deg, #3f3bf6 15.23%, #6286fa 51.74%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; */
  display: block;
  text-align: center;
}

main.mt__careers .banner .banner__heading {
  line-height: 1;
}

@media(min-width:991px) {

  main.mt__careers .ast-separate-container .ast-article-post,
  .ast-separate-container .ast-article-single {
    padding: 5.34em;
  }
}

main.mt__careers .banner_carousal .carousal_item .carousal_heading {
  color: #000;
}

main.mt__careers .banner_carousal {
  bottom: 40%
}

main.mt__careers .bar {
  background-color: #222
}

@media (max-width: 768px) {
  main.mt__careers .nav-menu {
    background-color: #fff;
  }
}


.value__wrapper {
  overflow: hidden;

}

.value__wrapper:hover>img {
  transition: all ease-in-out .5s;
  transform: scale(1.1);
}

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

main.mt__main.mt__careers:focus-visible,
main.mt__main.mt__careers:focus,
main.mt__main.mt__careers:active,
main.mt__main.mt__careers:hover {

  outline: none;
}

@media (max-width: 544px) {

  .ast-separate-container .ast-article-post,
  .ast-separate-container .ast-article-single,
  .ast-separate-container .comments-title,
  .ast-separate-container .ast-archive-description {
    padding: 1.5em 0em !important;
  }
}

.job-opening span.awsm-filter-toggle-text-wrapper {
  color: grey;
}

.job-opening .awsm-filter-toggle svg path {
  fill: #fff;
}

.entry-title {
  font-size: min(max(30px, 3.12vw), 60px) !important;
  font-weight: 600;
}

.single .entry-header {
  margin-bottom: 1em;
}

.main_intro .heading {
  font-size: min(max(35px, 3.38vw), 65px);
  color: #000;
  font-weight: 700;
  line-height: 1;
}

.main_intro .heading span {
  /*     background: linear-gradient(267.93deg, #3f3bf6 15.23%, #6286fa 51.74%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; */
  display: block;
}


p.para {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}

p.sub-title {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 37px;
}

@media(max-width:991px) {
  img.mask-founder {
    display: none;
  }

  .awsm-job-entry-content p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
  }
}

a.uagb-infobox-cta-link.wp-block-button__link {
  border-radius: 27px !important;
  border: 0 !important;
  margin-top: 20px;
  padding-inline: 15px !important;
  background-color: #2E27F8 !important;
  font-weight: 500;
  color: #fff !important;
}

a.uagb-infobox-cta-link.wp-block-button__link svg {
  fill: #fff !important;
}

.mt__about .video-container {
  display: none;
}

.mt__about .bottom-img {
  display: none;
}

.mt__about .banner {
  padding: 100px 0;
}

@media (max-width: 576px) {
  main.mt__main.mt__about {
    min-height: 440px;
  }
}

.ds-vertical-align {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news_header-card .news_card-text-box .heading {
  font-size: min(max(18px, 1.875vw), 36px);
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
}

.news_card-text-box p {

  font-size: min(max(14px, 0.78vw), 16px);
  margin-bottom: 0.5rem;
  line-height: normal;

  overflow: hidden;

  text-overflow: ellipsis;

  display: -webkit-box;

  -webkit-line-clamp: 1;

  line-clamp: 1;

  -webkit-box-orient: vertical;

  transition: all 1.5s ease-in-out;

}

.news_header-card:hover .news_card-text-box p {

  -webkit-line-clamp: 3;

  line-clamp: 3;

  -webkit-box-orient: vertical;

}

main.mt__main.mt__news {
  background-image: none !important;
  background-color: #2E3172;
}

main.mt__main.mt__news .bottom-img {
  display: none;
}

main.mt__main.mt__news .news_header-slider {
  margin-bottom: -10%;
}

.wpforms-submit {
  color: #ffffff;
  background-color: var(--ast-global-color-1);
  border-color: var(--ast-global-color-1);
}

.news-card {
  min-width: unset !important;
}

.news-card .news_card-text-box .heading {
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #fff;
}

.news_body-cards {
  display: none;
}

.show_more-news {
  display: flex;
  align-items: center;
  color: black;
  cursor: pointer;
  font-size: 20px;
}

.show_more-news img {
  width: 45px;
  height: 45px;
}

main.mt__main.mt__news-blogs {
  min-height: unset !important;
  background-image: none !important;
  background-color: #2E3172;
}

main.mt__main.mt__news-blogs .bottom-img,
main.mt__main.mt__news-blogs .video-container {
  display: none;
}

main.mt__main.mt__news-blogs .banner {
  padding: 0;
}

main.mt__main.mt__news-blogs .mt__header {
  padding: min(max(25px, 2.083vw), 40px) 15px;
}

.post-thumb-img-content img {
  margin: auto;
}

main.mt__main.mt__news-blogs .mt__header .scrool-button {
  display: none;
}

.mt__news-blogs .single .entry-header {
  margin-bottom: 1em;
  display: flex;
  flex-direction: column-reverse;

}

.mt__news-blogs header.entry-header>*:not(:last-child) {
  margin-bottom: 20px;
}

.mt__news-blogs .ast-article-single {
  padding-block: 0 !important;
}

.mt__news-blogs .entry-content a {
  display: inline !important;
  color: #1266f1;
}

.mt__news-blogs .entry-content ul {
  padding-left: 2rem;
  margin-left: 0;
}

.uagb-columns__inner-wrap ul {
  margin: 0;
  padding-left: 2rem;

}

.uagb-block-610785ae .uagb-heading-text {
  margin-bottom: 0;
}

.ast-scroll-to-top-right {
  bottom: 80px !important;
}

@media (max-width:768px) {
  .wp-block-uagb-container.alignfull.uagb-is-root-container {
    padding-top: 10px !important;
  }

  .entry-content ul li {
    font-size: 14px;
  }

}

.mt__news-blogs .awsm-job-specification-wrapper {
  margin-top: 1rem;
}

.wp-block-uagb-container:nth-child(2) .wp-block-uagb-advanced-heading:first-child .uagb-heading-text {
  background: transparent;
  color: #242a56;
  -webkit-text-fill-color: unset;
  text-fill-color: unset;
}

.wp-block-uagb-container .wp-block-uagb-advanced-heading .uagb-heading-text {
  background: transparent;
  color: #242a56;
  -webkit-text-fill-color: unset;
  text-fill-color: unset;
  /*     background: linear-gradient(267.93deg, #3F3BF6 15.23%, #6286FA 51.74%);

-webkit-background-clip: text;

-webkit-text-fill-color: transparent;

background-clip: text;

text-fill-color: transparent; */
}

@media (max-width: 544px) {
  .wp-block-uagb-container:nth-child(2) .wp-block-uagb-advanced-heading:first-child .uagb-heading-text {
    font-size: 36px;
    margin-bottom: 0;
  }

  .wp-block-uagb-container .wp-block-uagb-advanced-heading .uagb-heading-text {
    font-size: 48px;
  }

  .uagb-infobox__content-wrap .uagb-ifb-content img {
    width: 62px;
    height: 62px;
  }

  .uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-title {
    font-size: 26px;
  }

  .single .post-navigation .ast-left-arrow,
  .single .post-navigation .ast-right-arrow {
    display: inline-block !important;
  }

  .ast-separate-container #primary {
    padding: 0;
  }
}

.grecaptcha-badge {
  visibility: hidden;

}

.awsm-selectric .label {
  font-weight: 700;
}

.awsm-success-message {
  border: 1px solid #6878d6;
}

.widget_search .search-form button {

  top: 50%;
  transform: translateY(-50%);

}

.mt__news-blogs header.entry-header .entry-meta {
  display: none;
}

.mt__news .video-container>img {

  display: none !important;

}

.widget_search .search-form button {




  top: 50% !important;

  transform: translateY(-50%) !important;



}

.value-slider {

  transition-timing-function: linear !important;

  margin-top: 20px;

}

.mt__news-blogs header.entry-header .entry-meta {

  display: none;

}

.video-container img {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: none;

}

.video-container video::-webkit-media-controls {

  display: none !important;

}

.video-container video::-webkit-media-controls-start-playback-button {

  display: none !important;

  -webkit-appearance: none;

}

h2.wp-block-heading.has-medium-font-size {
  padding-top: 10px;
}

h3.wp-block-heading {
  padding-top: 15px;
}

.post-thumb-img-content.post-thumb {
  width: 62%;
  /* Ensure the container takes the full width of the parent */
  height: 0;
  /* Set initial height to 0 */
  padding-top: 33.33%;
  /* Set padding-top to 1/3 of the width to maintain the 1:3 aspect ratio */
  overflow: hidden;
  /* Hide the overflow to crop the image */
  position: relative;
  /* Ensure proper positioning */
}

.post-thumb-img-content.post-thumb img {
  width: 100%;
  /* Ensure the image fits the width of the container */
  height: auto;
  /* Maintain aspect ratio */
  position: absolute;
  /* Absolute positioning for proper placement */
  top: 50%;
  /* Move image down to center vertically */
  left: 50%;
  /* Move image right to center horizontally */
  transform: translate(-50%, -50%);
  /* Center the image both vertically and horizontally */
}

.entry-header {
  display: flex;
  flex-direction: column-reverse;
  /* Reverses the order of items */
}

.entry-header .post-thumb-img-content {
  order: 1;
  /* Moves the image below the title */
}

.entry-header .entry-title {
  order: 2;
  /* Moves the title above the image */
}

/* Hide the featured image on a specific post */
.postid-4471 .post-thumb {
  display: none;
}

.postid-4099 .post-thumb {
  display: none;
}

.postid-4534 .post-thumb {
  display: none;
}

.postid-4928 .post-thumb {
  display: none;
}


.news-card-img {

  object-fit: cover !important;

}

@media (max-width: 768px) {
  .custom-post-image {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .custom-post-image {
    width: 100%;
    display: block;
    margin-top: 5px;
    margin-bottom: 15px;
  }
}

/* .entry-content p {
  margin-bottom: 1.6em;
  margin-top: 1.6em;
  font-size: 18px;
  line-height: 1.4;
} */



.entry-content ul li {
  font-size: 18px;
  line-height: 1.4;

}

ol,
ul {
  margin: 0 0 0.5em 3em;
}

.entry-title {
  font-size: min(max(30px, 2.12vw), 60px) !important;
  font-weight: 600;
}

.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap {
  position: unset !important;
}

.wp-block-columns.is-layout-flex.wp-container-2 {
  position: unset !important;
}

.post-thumb-img-content.post-thumb img {
  width: 100%;
  height: auto;
  top: 100%;
  left: 50%;

}

.post-thumb-img-content.post-thumb {
  width: 100%;
}

img.mask-founder.img-fluid {
  position: absolute;
  top: -9%;
  z-index: -1;
  right: -9%;
  width: 600px;
  height: auto;
}