/* css from additionl csss */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@400;700&display=swap');
/* reset css */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

a,
blockquote,
body,
dd option,
div,
dl,
figure,
form,
h1,
h2,
h3,
h4,
html,
img,
input,
label,

ol,
p,
section,
select,
span,
table,
tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0;
  margin: 0;
  padding: 0;
}



html {
  scroll-behavior: smooth;
}

body {
  text-rendering: auto;
  line-height: 1.6;
}

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;

}

body {
  background-color: var(--color-white);
  font-weight: var(--weight-400);
  font-family: var(--font-family);
}

.mt__main {
  background-image: url(../images/banner.jpg);
  background-size: cover;
  min-height: min(max(750px, 46.87vw), 900px);
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
}

.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;
}

.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 .6rem;
  position: relative;
  border-radius: 4px;
  z-index: 11;
  font-weight: 500;
  transition: transform 0.2s;
}

.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: #3F3BF6;

}

.contact_link:hover svg path {
  fill: #3F3BF6;
}

.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;
  }

  .contact_link {
    margin-top: 15px;
  }

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

.banner {
  padding: min(max(50px, 5.20vw), 100px) 0;
  text-align: center;
}

.banner .banner__heading {
  color: var(--color-white);
  font-size: min(max(40px, 4.16vw), 80px);
  font-weight: 700;
  text-transform: capitalize;

  position: relative;
  max-width: min(max(500px, 55vw), 900px);
  margin: 0 auto;
}

.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%;
}

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::after {
  content: "";
  background-image: url(../images/scrool-round.png);
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 6px;
  animation: spin 10s linear infinite;
  /*Set our animation play state to paused initially */
  animation-play-state: paused;
}

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

.img-box {
  transform: translateY(0px);
  width: 30px;
  fill:#f49c00;
  /* 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);

  }
}

span.marketing {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  display: flex;
  align-items: center;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #FFFFFF;
}

span.dMarketing {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  display: flex;
  align-items: center;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #FFFFFF;
}

.getInTouch {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: min(max(35px, 4vw), 80px);
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: end;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #FFFFFF;
}

.getInTouch span {
  animation: moveright 1s linear infinite;
  animation-play-state: paused;
}

.getInTouch:hover a {
  color: #fff;
}

.getInTouch:hover span {
  animation-play-state: running;
}

.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;
  }
}

footer#colophon {
  /* background-image: url(../images/footer.jpg); */
  /* background-repeat: no-repeat; */
  /* background-position: center; */
  /* background-size: cover;/ */
  /* min-height: 600px; */
  background: var(--bg-color);
  overflow: hidden;
  position: relative;
  background-color: #978c81;
}

/* 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: 1.1rem;
  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;
  white-space: nowrap;
  /* 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;
}

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

.entry-content p {
  margin-bottom: 0.6em;
  margin-top: 0.6em;
  font-size: 1.1rem;
  line-height: 1.4;
}

.entry-content p:has(strong) {
  margin-bottom: 12px !important;
}

.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.2vw), 48px) !important;
  color: #2B24F8 !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;
}

.founder-block {
  /* box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.1); */
  /* border-radius: 10px; */
  /* padding: min(max(15px, 1.56vw), 30px) min(max(10px, 2.60vw), 55px); */
  /* background-color: #fff; */
}

.founder-img-wrap {
  max-width: 72%;
  margin: auto;
  object-fit: cover;
  box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  /* overflow: hidden; */
  aspect-ratio: 3/2;
  margin-bottom: 25px;

}

.founder-block .founder-info {
  /* max-width: 280px; */
  /* padding: 50px 10px; */
}

.founder-block .founder-info .img-fluid {
  /* max-width: 72%; */
  /* margin: auto; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.founder-block .founder-name {
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-size: 1.375rem;
  font-weight: 700;
}

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

  .founder-block .founder-info {
    max-width: unset;
  }

  .founder-block .founder-img {
    margin: auto;
  }

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

  .single .entry-header {

    margin-top: 1em;
  }
}

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;

}

footer#colophon {
  /* min-height: 360px !important; */
}

.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;
}

/* css end from additional css */



.uagb-ifb-button-wrapper a.uagb-infobox-cta-link.wp-block-button__link {
  border-radius: 12px !important;
  padding: 8px 12px !important;
  position: relative;
  color: #2E27F8 !important;
  background-color: #fff !important;
  font-weight: 500;
  z-index: 11 !important;
  font-weight: 500 !important;
  transition: transform 0.5s !important;
  border: 2px solid #2E27F8 !important;
}

span.uagb-inline-editing {
  text-transform: capitalize;
}


/* .uagb-ifb-button-wrapper a.uagb-infobox-cta-link.wp-block-button__link:before{
	content: '';
    position: absolute;
    inset: 0;
    height: 100%;
    background-color: var(--color-white);
    transform: scaleX(0);
    transform-origin: left;
    z-index: -1;
	border-radius: 4px;
    transition: transform 0.6s;
}
.uagb-ifb-button-wrapper a.uagb-infobox-cta-link.wp-block-button__link:after{
	    content: '';
    position: absolute;
    inset: 0;
    height: 100%;
    background-color: var(--color-white);
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
	border-radius: 4px;
    transition: transform 0.6s;
} */
.uagb-ifb-button-wrapper a.uagb-infobox-cta-link.wp-block-button__link:hover {
  color: #fff !important;
  background-color: #2E27F8 !important;

}

.uagb-ifb-button-wrapper a.uagb-infobox-cta-link.wp-block-button__link svg {
  /* display: none !important; */
  fill: #2E27F8 !important;
}

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

/* a.uagb-infobox-cta-link.wp-block-button__link:hover::before , a.uagb-infobox-cta-link.wp-block-button__link:hover::after {
    transform: scaleX(1);
} */
.video-container video::-webkit-media-controls {
  display: none !important;
}

.video-container video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* css for news selection */
.custom__post .manage-layout1 a {
  display: block;
}



#news-container {
  display: flex;
}

#news-sidebar {
  width: 20%;
  padding-right: 20px;
}

#news-sidebar ul {
  list-style: none;
  padding: 0;
}

#news-sidebar li {
  margin-bottom: 10px;
}

#news-sidebar a {
  text-decoration: none;
  color: #0073aa;
}

#news-content {
  width: 80%;
}

.post-item {
  margin-bottom: 20px;
}

.post-item h2 {
  margin: 0;
}

.post-item a {
  text-decoration: none;
  color: #000;
}

.post-item p {
  color: #555;
}

.post-thumb-img-content.post-thumb {
  width: 100%;
  /* 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 */
}

.mt__careers .banner__heading {
  color: #000 !important;
}

@media(max-width:768px) {
  .show_more-news {
    justify-content: center;
  }

  .single .post-navigation .nav-next,
  .single .post-navigation .nav-previous {
    width: 50%;
  }

  .post-navigation a {
    padding: 0 0.5em;
    height: auto;
    line-height: normal;
  }


}


.media, .media__img--slide, .media__img--slide .slick__wrap-content, .qty-box,.title-number{
 position: relative; 
}
.media-service, .media-service-1{
  padding: 0 30px;
  text-align: center;
}

.media-service-1 .title-number {
  margin-top: 30px;
  margin-bottom: 35px
}

.title-number .title {
  position: relative;
  z-index: 9;
}
.title--sm a, .title--sm2 {
  /* text-transform: uppercase; */
  /* font-weight: 500; */
  /* font-size: 18px; */
}

.title-number .number {
  font-size: 72px;
  color: #ebebeb;
  color: #1733a12e;
  color: var(--heading-color);
  opacity: 0.2;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%, -50%);
}

.box:after, .media:after {
  content: '' !important;
  clear: both !important
}

.media__text, .media__title{
  margin-bottom: 0px;
}

.main_banner-img-wrap {
  position: relative;
}
/* 
.main_banner-img-wrap:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #febd16a1 50%, #f49c0070 50%);
  border-radius: 10px;
} */

.img-shadow{
  /* border-radius: 12px; */
  /* box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; */
  -webkit-filter: drop-shadow(-6px 6px 0 #3ADDA4);
  filter: drop-shadow(-6px 6px 0 #3ADDA4);
  filter: drop-shadow(-6px 6px 0 var(--color-brand-03));
  /* filter: drop-shadow(-6px 6px 0 var(--color-brand-01)); */
  border-radius: 10px;
}