/*==================================fontawesome==================================*/
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../font-awesome/font/glyphicons-halflings-regular.eot');
    src: url('../font-awesome/font/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), 
      url('../font-awesome/font/glyphicons-halflings-regular.woff2') format('woff2'), 
      url('../font-awesome/font/glyphicons-halflings-regular.woff') format('woff'), 
      url('../font-awesome/font/glyphicons-halflings-regular.ttf') format('truetype'), 
      url('../font-awesome/font/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FontAwesome';
    src: url('../font-awesome/font/fontawesome-webfont.eot?v=4.1.0');
    src: url('../font-awesome/font/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), 
    url('../font-awesome/font/fontawesome-webfont.woff?v=4.1.0') format('woff'), 
    url('../font-awesome/font/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), 
    url('../font-awesome/font/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*==================================Poppins-font==================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;display=swap');

/*==================================Global Styles==================================*/
html,
body {
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #000;
}

html:hover,
body:hover {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

body a:focus {
  outline: none !important;
}

body img:focus {
  outline: none !important;
}

a img:focus {
  outline: none !important;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a i {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

p {
  font-weight: 400;
}

/*==================================Font-style-Global Styles==================================*/
/*
h1{font-size:clamp(25px, 5vw, 50px);color:#fff9;padding:0px; margin:0px; }
h2{font-size:clamp(20px, 5vw, 40px);color:#ff5959;padding:0px; margin:0px;}
h3{font-size:clamp(17px, 5vw, 22px);color:#ff5959;padding:0px; margin:0px;}
h4{font-size:clamp(17px, 5vw, 20px);color:#ff5959;padding:0px; margin:0px;}
h5,h6{font-size:clamp(17px, 5vw, 20px);color:#ff5959;padding:0px; margin:0px;}
p{padding:0px; margin:0px;font-size:clamp(14px, 5vw, 16px);color:#080808;}
small{font-size: clamp(17px, 5vw, 20px);padding:0px; margin:0px; text-transform: uppercase; letter-spacing: 1px;}
*/

/*==================================Font-awesome-style==================================*/
.fa {
  letter-spacing: normal;
}

.thumbnail>img,
.thumbnail a>img {
  margin: 10px auto;
}

/*-------------------menu----------------*/
.menu {
  display: inline-block;
  position: relative;
  top: 9px;
}

.toggle:focus::after {
  transform: rotate(180deg) !important;
}

.toggle {
  background-color: transparent;
  width: auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFF;
  border: none;
}

.toggle::after {
  transition: 0.4s;
  position: absolute;
  right: -4px;
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  display: block !important;
  border: 0;
  top: 16px;
}

.list {
  color: #444;
  width: 192px;
  list-style: none;
  display: inline-block;
  grid-template-rows: repeat(4, 40px);
  overflow: hidden;
  height: 0;
  transition: 0.4s;
  position: absolute;
  left: -60%;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  text-align: center;
  padding-left: 31px;
  padding-right: 31px;
}

.list-item a {
  position: relative;
  z-index: 999;
}

.list-item {
  display: block;
  align-items: center;
  padding: 17px 0px 22px;
  transition: 0.4s, transform 0.4s var(--delay);
  user-select: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(18, 22, 72, 0.25);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #02085E;
  margin: 0px;
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 999;
}

.list-item:hover {
  background-color: transparent;
}

.toggle:focus::after {
  transform: rotate(225deg);
}

.toggle:focus~.list {
  height: 136px;
}

.toggle:focus~.list .list-item {
  transform: translateX(0);
}

ul.list li:last-child {
  border: none;
}

.toggle img {
  height: auto;
  width: 26px;
  margin-right: 4px;
}

.list-item a:hover {
  color: #02085E;
}

/*
.menu-mobile {
  display:none !important;
}
*/

.partnerpage-wraper .responsiveGallery-item {
  overflow: hidden;
}

.entry-content strong {
  display: block;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 10px;
  color: #02085E;
  margin-top: 15px;
}

.entry-content {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #02085E;
}

.entry-content ol {
  padding-left: 15px;
  margin-bottom: 0px !important;
}

.entry-content ol li strong {
  font-size: 18px;
  margin-bottom: 8px !important;
}

.entry-footer.default-max-width .posted-by span {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #02085E;
}

.post-taxonomies {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #02085E;
}

.nav-next a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #02085E;
}

#Opportunities form .submit-btn button input {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  opacity: 0;
}

.wpcf7-not-valid-tip {
  color: red !important;
  opacity: 1 !important;
}

.wpcf7-response-output {
  margin-left: 0px !important;
  margin-right: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin-bottom: 0px !important;
  color: red !important;
}

::placeholder {
  color: #121648;
  opacity: 1;
}

.inner-page {
  padding-top: 100px;
}

#new-contact-banner .career-banner-left {
  height: 90vh;
}

.table-data-info p {
  width: 100%;
}

.table-data-info h4 {
  font-size: 16px !important;
  padding-left: 0px;
  opacity: 0.65;
}

.contact-details-list {
  display: none;
}

.table-data-info {
  margin-bottom: 19px;
  margin-top: 35px;
}

.table-data-info h4 {
  font-size: 16px !important;
}

.table-data-info p {
  color: #fff;
}

.table-data-info p {
  color: #fff;
  opacity: 0.4;
}

.table-data-info h2 {
  font-size: 22px !important;
}

.table-data-info h2 {
  font-size: 22px !important;
  margin-bottom: 10px !important;
}
.bnpl-corporate .tab-picture {text-align: right;padding-right: 50px;min-height: auto;line-height: normal;}    
.bnpl-for-investor .tab-data {min-height: auto;line-height: normal;}

/*--------Vide-container-height-------*/
.commitment-video #box_video {
  height: 600px;
}

a.cmn-buttn.outline_button:focus-visible {
  border-color: #fff !important;
  outline: none;
}

.job_banner {
  height: 80vh !important;
}

.job_banner .career-banner-left {
  height: 80vh;
}

.job_banner .new-contact-banner-right {
  height: 80vh;
}

.slideshow-container {
  display: none;
}

.footer-middle .col-md-3:last-child {
  text-align: right;
  padding-right: 20px;
}

#section-3 ul li .inn-box-blur {
  background: linear-gradient(132.6deg, #CDD2CC 0.22%, rgba(205, 210, 204, 0) 99.53%) !important;
}

#section-1 ul li .inn-box-blur {
  background: linear-gradient(132.6deg, #CDD2CC 0.22%, rgba(205, 210, 204, 0) 99.53%);
}

#section-3 ul._inn_box li h4 {
  color: #121648 !important;
}

#section-3 ul._inn_box li p {
  color: #121648 !important;
}

#section-3 ul._inn_box li a {
  border: 1px solid #121648 !important;
  color: #121648 !important;
}

#section-3 ul._inn_box li img {
  filter: none !important;
}

#section-1 ul._inn_box li h4 {
  color: #121648;
}

#section-1 ul._inn_box li p {
  color: #121648;
}

#section-1 ul._inn_box li a {
  border: 1px solid #121648 !important;
  color: #121648 !important;
}

#section-1 ul._inn_box li img {
  filter: none;
}




/*-----------Partner-Page-------------*/
.mar-b-0 {
  margin-bottom: 0px !important;
}

.news-div-body .event-left.business-advisor {
  margin-bottom: 0px;
}

.grount-content.grount-first p {
  margin-bottom: 15px;
}

.partner-banner .banner-l.about-banner::after {
  background: #fff;
  opacity: 1;
}

.partner-tabs .resource-top-menu {
  padding-top: 0px;
}

.partner-tabs .resource-top-menu ul {
  position: relative;
  top: 0px;
}

.partner-tabs .resource-top-menu ul li {
  width: 33.33%;
}

.event-left.business-advisor {
  margin-bottom: 284px;
}



.responsiveGallery-item a,
.img-box a,
.responsiveGallery-item a:visited,
.img-box a:visited,
.responsiveGallery-item a:hover,
.img-box a:hover,
.img-box:hover {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.responsiveGallery-wrapper {
  width: 60%;
}



/*.responsiveGallery-item  { width: 20%;}*/
.responsiveGallery-item {
  width: 33.33%;
}

.responsiveGallery-wrapper {
  padding: 0;
}

.responsiveGallery-btn {
  width: 12%;
  font-size: 44px;
  display: table;
}

.responsiveGallery-btn.responsiveGallery-btn_prev {
  text-align: right;
  padding-right: 12px;
}

.responsiveGallery-btn i {
  display: table-cell;
  vertical-align: middle;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  opacity: 0;
}

.responsiveGallery-btn.responsiveGallery-btn_next {
  text-align: left;
}

.outher-pages-sec {
  background: #f5f4f4;
  text-align: center;
  padding: 62px 0;
  overflow: hidden;
}

.responsiveGallery-btn_prev i {
  transform: translateX(-15px);
}

.responsiveGallery-btn_next i {
  transform: translateX(15px);
}

input#customer_email {
  border: none;
  background-color: #111;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

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

section.submarin-hoop {
  padding: 160px 0 80px;
}

.kQjxIx {
  position: absolute;
  background: transparent;
  border: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  top: calc(49% - 30px);
  z-index: 9999;
  cursor: pointer;
  outline: 0;
  left: 70%;
  top: auto;
  bottom: 80px;
}

.cYbGbt {
  position: absolute;
  background: transparent;
  border: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  top: calc(49% - 30px);
  z-index: 9999;
  cursor: pointer;
  outline: 0;
  right: 22%;
  bottom: 80px;
  top: auto;
}

img.black-icon {
  filter: brightness(0);
  opacity: 0.15;
  transition: all 0.3s ease-in-out;
}

#responsiveGallery-container button {
  display: inline-block;
  padding: 0px;
}

#responsiveGallery-container button:hover img {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

button.cYbGbt.responsiveGallery-btn_next svg,
button.kQjxIx.responsiveGallery-btn_prev svg {
  width: 25px;
}

li.responsiveGallery-item a {
  position: relative;
  display: block;
}

li.responsiveGallery-item a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  margin: auto;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  opacity: 0;
}

li.responsiveGallery-item a:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  margin: auto;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  opacity: 1;
}

/* #lending-service .event-left.business-advisor h2 {color: #DAFFD1;font-weight: 500;font-size: 50px;line-height: 54px;margin-bottom: 17px;}     */
#lending-service .event-left.business-advisor h2 {
  color: #fff;
  font-weight: 500;
  font-size: 50px;
  line-height: 54px;
  margin-bottom: 17px;
}




/*------benefit-point-------*/
.partnerpage-wraper .partner-news .benefit-point ul li {
  vertical-align: middle;
  display: table-cell;
}

.partnerpage-wraper .benefit-for-you {
  padding-top: 50px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 50px;
  background: linear-gradient(106.51deg, rgba(255, 255, 255, 0.05) 3.44%, rgba(255, 255, 255, 0.02) 64.82%);
  backdrop-filter: blur(50px);
  border-radius: 24px;
  border: 1px solid #414686;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 5px 0px;
}

.partnerpage-wraper .partner-news .benefit-for-you h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  color: var(--theme-color-white);
  margin-bottom: 35px;
}

.partnerpage-wraper .partner-news .benefit-for-you .benefit-details h3 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.partnerpage-wraper .partner-news .benefit-for-you p {
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  opacity: 0.8;
  width: 463px;
}

.partnerpage-wraper .partner-news .benefit-point ul li:last-child {
  border: none;
}

/* .partnerpage-wraper .partner-news .event-left h2 {font-size: 50px;font-weight: 500;margin-bottom: 17px;width: 545px;color: #DAFFD1;} */
.partnerpage-wraper .partner-news .event-left h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 17px;
  width: 545px;
  color: #fff;
}

.partnerpage-wraper .event-left.business-advisor span {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  width: 75%;
  margin-bottom: 65px;
  display: inline-block;
  color: rgba(249, 250, 251, 0.75);
}

.partnerpage-wraper .event-left.business-advisor h4 {
  font-size: 32px;
  margin-bottom: 35px;
  font-weight: 500;
}

.partnerpage-wraper .event-left.business-advisor p {
  color: rgba(249, 250, 251, 0.75);
  width: 546px;
  font-size: 16px;
}

.partnerpage-wraper .event-left.business-advisor {
  width: 100%;
}

.partnerpage-wraper .ground-breaking img.news-dots {
  top: 137px;
}

.partnerpage-wraper .ground-breaking .grount-content.grount-first h5 {
  font-weight: 600;
  font-size: 32px;
  line-height: 46px;
  padding-bottom: 3px;
}

.partnerpage-wraper .ground-breaking .grount-content.grount-first p {
  color: rgba(255, 255, 255, 0.75);
  width: 647px;
}




/*------Partner-Box--------*/
.partnerpage-wraper .partner-us {
  background: #fff;
  padding-top: 159px;
  padding-bottom: 119px;
  position: relative;
  margin-top: 100px;
}

.partnerpage-wraper .partner-us ul.vison-text-box {
  top: 0px;
}

.partnerpage-wraper .partner-us ul.vison-text-box li {
  width: 444px;
  min-height: 443px;
  background: linear-gradient(132.6deg, rgba(205, 210, 204, 0.3) 0.22%, rgba(205, 210, 204, 0) 99.53%);
  backdrop-filter: blur(7.5px);
  border-radius: 25px;
}

.partnerpage-wraper .partner-box-text h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: normal;
  margin: 35px 0;
  color: #02085E;
  margin-top: 80px;
}

.partnerpage-wraper .partner-box-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #02085E;
  width: 86%;
}

.partnerpage-wraper .partner-us ul.vison-text-box li h4 {
  font-size: 30px !important;
  line-height: 36px !important;
}

.partnerpage-wraper .partner-us ul.vison-text-box li .vison-list p {
  margin-top: 50px;
  color: #02085E;
  font-size: 18px;
  line-height: 27px;
  padding-left: 38px;
}

.partnerpage-wraper .partner-box-text a.cmn-buttn.outline_button.hvr-sweep-to-right {
  color: #02085E;
  border-color: #02085E;
  text-transform: none;
}

.partnerpage-wraper .partner-news .milestone-image {
  position: absolute;
  top: auto;
  right: 0;
  width: 600px;
  bottom: 60px;
}

img.partnet-dot {
  bottom: 0;
  top: auto;
  position: absolute;
  right: 30px;
  left: auto;
}

#partner .our-solution-right-btn a.cmn-buttn.outline_button.hvr-sweep-to-right {
  margin-top: 40px;
}

#partner .no-fund-carousel-section-right h4 {
  font-weight: 500;
}

#partner h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
}

/* .ground-breaking .event-left.business-advisor h2 {font-weight: 500;font-size: 50px;line-height: 54px;color: #DAFFD1;width: 546px;} */
.ground-breaking .event-left.business-advisor h2 {
  font-weight: 500;
  font-size: 50px;
  line-height: 54px;
  color: #fff;
  width: 546px;
}



/*------Event-Box--------*/
.partnerpage-wraper .event-left.business-advisor p a {
  padding: 0px;
  border: none;
  color: #DAFFD1;
  margin: 0px;
  text-decoration: underline;
}

.partnerpage-wraper .event-left.business-advisor p a {
  padding: 0px !important;
  margin: 0px !important;
  border: none !important;
  text-decoration: underline !important;
  color: #fff !important;
}

/*------lending-icon-box--------*/
.partnerpage-wraper .lending-icon-box {
  background: linear-gradient(104.95deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.065) 100%);
  backdrop-filter: blur(7.5px);
  border-radius: 24px;
  border: 1px solid #414686;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 5px 0px;
  padding: 26px;
  min-height: 400px;
}

.partnerpage-wraper .lending-icon-box ul li span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-align: center;
}

.partnerpage-wraper .lending-icon-box ul li {
  display: inline-block;
  text-align: center;
  width: 16.666%;
  position: relative;
}

.partnerpage-wraper .lending-icon-box ul li img.icon-step {
  height: auto;
  width: 78px;
}

.partnerpage-wraper .lending-icon-box ul li:nth-child(2n+2) {
  position: relative;
  bottom: -207px;
}

.partnerpage-wraper .lending-icon-box ul li:nth-child(2n+2) img.arrow-icon {
  position: absolute;
  top: -47px;
  right: -8px;
  rotate: 0deg;
}

.partnerpage-wraper .lending-icon-box ul li img.arrow-icon {
  position: absolute;
  bottom: -50px;
  rotate: 90deg;
}

.partnerpage-wraper .lending-icon-box ul li:nth-child(2n+2) span {
  margin-top: 15px;
  margin-bottom: 0px;
}

.partnerpage-wraper .lending-icon-box ul li span {
  margin-bottom: 15px;
  margin-top: 0px;
  min-height: 52px;
}

#lending-service {
  position: relative;
  padding-top: 140px;
}

#lending-service img.news-dots {
  width: 620px;
  left: 19px;
  top: 23px;
}

.partnerpage-wraper .partner-gallery h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 54px;
  color: #F9FAFB;
}

.partnerpage-wraper .partner-blog h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 54px;
  color: #F9FAFB;
}



/*------our-solution------*/
.partnerpage-wraper #our-solution .our-solution-right h2 {
  margin-bottom: 0px;
  padding-top: 173px;
}

.partnerpage-wraper #our-solution img.position-news-right {
  position: absolute;
  width: 488px;
  margin: 0px;
  top: 100px;
}


/*------partner-gallery------*/
.partner-gallery img.gallery-dots {
  bottom: -150px;
}

.partner-gallery {
  margin-top: 0px !important;
}

.partner-gallery .news-div-top {
  padding-top: 0px;
}

.news-div-top a {
  top: 0px !important;
}

.partner-blog .news-div-top a {
  top: 88px !important;
}

.partner-gallery .gallery-carousel .big-news-hover-data {
  width: 89%;
}

.partner-gallery .gallery-carousel .big-news-hover-data h2 {
  font-size: 34px;
  line-height: 40px;
  font-weight: 600;
}

.partner-gallery .gallery-carousel .big-news-hover-data .read-more a {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.partner-gallery .gallery-carousel .big-news-hover-data h2 p {
  font-size: 18px;
  line-height: 27px;
}


/*------core-feture------*/
ul.core-feture {
  border-top: 1px solid #FFFFFF7D;
  border-bottom: 1px solid #FFFFFF7D;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 35px;
  opacity: 1;
}

ul.core-feture li {
  width: 25%;
  text-align: center;
  position: relative;
}

ul.core-feture li img.core-icon {
  display: inline-block;
  height: auto;
  width: 60px;
}

ul.core-feture li p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.5;
  text-align: left;
  width: 220px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

ul.core-feture li span {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 33px;
  color: rgba(255, 255, 255, 0.75);
}

ul.core-feture li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto;
  content: "";
  height: 70px;
  width: 1px;
  background: #fff;
  opacity: 0.3;
}

ul.core-feture li:last-child::after {
  display: none;
}

/*------Modal------*/
.modal-body ul {
  background-position: left;
  padding-top: 50px;
  padding-bottom: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.modal-body ul li {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
  position: relative;
  z-index: 999;
}

.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

.modal-body ul li .form-text {
  padding-left: 150px;
}

.modal-body ul li .form-text span {
  font-size: 32px;
  color: #02085E;
  line-height: normal;
  font-weight: 600;
  margin: 0px !important;
}

.modal-body ul li .form-text h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 70px;
  line-height: 70px;
  color: #02085E;
}

.modal-body ul li .form-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.15px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #02085E;
  opacity: 0.8;
  width: 466px;
}

.modal-body ul li.half-wid .benefit-right.m-0 {
  padding: 40px;
  background: linear-gradient(132.6deg, rgba(205, 210, 204, 0.3) 0.22%, rgba(205, 210, 204, 0) 99.53%);
  backdrop-filter: blur(7.5px);
  border-radius: 25px;
  border: 2px solid;
  border-image-source: none;
  border-image-source: linear-gradient(107.17deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid #b6b9c5;
}


.modal-body ul::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, .8);
}

.modal-body ul li h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #02085E;
  margin-bottom: 35px;
}

.modal-body ul li form label {
  font-weight: 600;
  font-size: 9px;
  line-height: 16px;
  letter-spacing: 0.15px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: rgb(2, 8, 94);
}

.modal-body ul li .dd-frm {
  border-bottom: 1px solid #02085E78 !important;
  color: #02085E;
}

.modal-body ul li .benefit-right select {
  border: 1px solid #02085E;
  color: #02085E;
}

.modal-body ul li .text-area textarea {
  border: 1px solid rgb(132, 135, 176);
  color: #02085e;
}

.modal-body ul li .submit-btn button {
  border: 2px solid #02085E;
  color: #02085E;
}

.modal-body ul li .benefit-right.m-0 {
  margin: 0px 100px !important;
  border: 1px solid #b6b9c5 !important;
}

.modal-header {
  position: absolute;
  z-index: 9999999;
  top: 30px;
  right: 30px;
}

.close {
  font-size: 38px !important;
  font-weight: normal !important;
  height: 40px;
  width: 40px;
  border: 2px solid #02085E;
  color: #02085E !important;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}

.social-media ul li {
  display: inline-block;
  width: auto;
  margin-left: 5px;
}

.modal-body .social-media {
  margin: 0px;
  background: transparent;
}

.social-media ul {
  background: transparent !important;
}

.modal-body .social-media {
  position: absolute;
  bottom: 70px;
  left: 150px;
}

.form-field {
  display: inline-block;
}

.half-wid .benefit-right select option {
  background-color: transparent;
  color: #02085e;
}

.modal-body ul li .text-area textarea {
  resize: none;
}

.half-wid .benefit-right select {
  background: url(../../../../../../infotechsolz.in/lamaa/wp-content/uploads/2023/01/arrow-doen.png) no-repeat right 0.9em center/0.9em;
}

/*---------Banner-Slider----------*/
.partnerpage-wraper .gallery-text {
  background: #121648;
  backdrop-filter: blur(12.5px);
  border-radius: 24px;
  padding-top: 22px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  position: relative;
  top: -9px;
  z-index: -1;
}

.partnerpage-wraper .gallery-text h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
}

.partnerpage-wraper .gallery-text h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: normal;
  margin-top: 5px;
  margin-bottom: 8px;
}

.partnerpage-wraper .gallery-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  opacity: 0.8;
}

div#responsiveGallery-container .slider_panel {
  position: relative;
  top: 25%;
  z-index: 999;
}

.partnerpage-wraper .partner-banner {
  background: #fff;
}

.partnerpage-wraper .responsiveGallery-item {
  background: #121648;
  border-radius: 24px;
}

#partner-banner .about-banner-dots {
  left: auto;
  right: 0px;
}

#partner-banner .partner-banner-shadow {
  right: auto;
  left: 0;
  bottom: 111px;
  top: auto;
  width: 631px;
}


@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 0px;
  background-color: transparent;
  color: white;
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  padding: 0px;
}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

/*------Modal-End-----*/

#benefits .benefit-left p {
  margin-bottom: 10px;
}

.benefit-details p {
  margin-bottom: 0px !important;
}

.benefit-point ul li:first-child {
  padding-left: 0px;
}

.benefit-point ul li:last-child {
  padding-right: 0px;
  border-right: none;
}

.footer-middle a span.social-icon {
  opacity: 0.4;
}

.big-news-hover-data h2 {
  margin-bottom: 0;
  line-height: normal;
}



/*==================================Form-Global Styles==================================*/
.form-control::-webkit-input-placeholder {
  font-family: 'PoppinsRegular';
  font-size: 16px;
}

.form-control:-moz-placeholder {
  font-family: 'PoppinsRegular';
  font-size: 16px;
}

.form-control::-moz-placeholder {
  font-family: 'PoppinsRegular';
  font-size: 16px;
}

.form-control:-ms-input-placeholder {
  font-family: 'PoppinsRegular';
  font-size: 16px;
}

/*==================================carousel Styles==================================*/
.carousel {
  height: auto;
  position: relative;
  background: #e1f5fc;
  background-position: top right 0px;
  background-repeat: no-repeat;
  background-size: auto;
}

/*.carousel:after{ position: absolute; top: auto; left: 0; right: 0; bottom: 0; margin: auto; content: ""; width: 100%; height:170px; background-image:url(../images/Covid19-banner-wave-buttom.png); background-position: center; background-repeat: no-repeat; background-size: cover;z-index: 1;}*/
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
  margin: 0px auto;
}

.carousel-inner.onebyone-carosel {
  margin: auto;
  width: 90%;
}

#myThumbCarousel .carousel-control {
  width: 5%;
  display: table;
  height: 250px;
}

#myThumbCarousel .carousel-control .glyphicon {
  display: table-cell;
  vertical-align: middle;
}

.carousel-control {
  z-index: 111;
}

.carousel-caption {
  right: auto;
  left: 415px;
  padding-bottom: 0;
  bottom: auto;
  top: 20%;
  margin: auto;
  width: 29%;
  z-index: 11;
  text-align: left;
}

.carousel {
  height: auto;
  position: relative;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-arrow-left,
.carousel-control .glyphicon-arrow-right {
  display: inline-block;
  position: absolute;
  top: 50%;
  z-index: 5;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
  margin: 0 auto;
}

.item,
.active,
.carousel-inner {
  height: 100%;
}

/* Carousel Fading slide */
.carousel-fade .carousel-inner {}

.carousel-fade .carousel-control {
  z-index: 2;
}

.carousel-fade .carousel-item {
  padding: 60px 0px 140px;
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .next.left,
.carousel-fade .prev.right,
.carousel-fade .item.active {
  opacity: 1;
}

.carousel-fade .active.left,
.carousel-fade .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.banner-img {
  text-align: right;
  padding-right: 263px;
}

.banner-img img.img-responsive {
  display: inline-block;
}

.carousel-caption h1 b {
  font-family: 'PoppinsRegular';
  font-weight: normal;
  text-shadow: none;
}

.carousel-caption h1 {
  text-shadow: none;
  padding-bottom: 30px !important;
  letter-spacing: 1px;
}

.carousel-caption p {
  text-shadow: none;
  color: #323232;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 30px;
}

.carousel-caption .cmn-buttn {
  margin-top: 62px;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: .5;
}

.carousel-control.left,
.carousel-control.right {
  background: none;
}

.carousel-control.right span,
.carousel-control.left span {
  width: 84px;
  height: 84px;
  background: #afbdc3;
  line-height: 83px;
  font-size: 60px;
  text-shadow: none;
  border-radius: 100%;
  text-align: center;
  padding-left: 5px;
  z-index: 1111;
  position: relative;
  top: 39%;
}

.carousel-control.left span {
  padding-left: 0px;
  padding-right: 5px;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  height: auto;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/*------down-buttn-animate-css-------------------*/
a.down-buttn {
  position: absolute;
  top: auto;
  bottom: 53px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
  width: 34px;
  height: 34px;
  border-radius: 100%;
}

a.down-buttn:after {
  content: "";
  top: 0px;
  left: -3px;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  border-radius: 100%;
  margin: auto;
}

a.down-buttn i {
  z-index: 111;
  background: #f2b64f;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  color: #fff;
  font-size: 18px;
  border-radius: 100%;
  position: absolute;
}

a.down-buttn {
  position: absolute;
  top: auto;
  bottom: 53px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  animation: shadow-pulse 1s infinite;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(104, 204, 104, 0.5);
  }

  100% {
    box-shadow: 0 0 0 22px rgba(104, 204, 104, 0);
  }
}

@keyframes shadow-pulse-big {
  0% {
    box-shadow: 0 0 0 0px rgba(104, 204, 104, 0.5);
  }

  100% {
    box-shadow: 0 0 0 36px rgba(104, 204, 104, 0);
  }
}

a.down-buttn:after {
  content: "";
  top: 0px;
  left: -6px;
  right: 0;
  bottom: 0;
  width: 67px;
  height: 67px;
  background: rgba(104, 204, 104, 0.26);
  position: absolute;
  border-radius: 100%;
  margin: auto;
}

a.down-buttn:before {
  content: "";
  top: 1px;
  left: -17px;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
  background: transparent;
  position: absolute;
  border-radius: 100%;
  margin: auto;
  border: 1px solid rgba(104, 204, 104, 0.26);
}

a.down-buttn i {
  z-index: 111;
  background: #68cc68;
  width: 54px;
  height: 54px;
  text-align: center;
  line-height: 56px;
  color: #fff;
  font-size: 25px;
  border-radius: 100%;
  position: absolute;
}

/*------animate-css-------------------*/

.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }

  65% {
    transform: translate(0, 15px);
  }

  to {
    transform: translate(0, -0px);
  }
}

.beat {
  animation: beat 3s infinite alternate;
}

@keyframes beat {
  to {
    transform: scale(1.4);
  }
}

@-webkit-keyframes beat {
  to {
    transform: scale(1.4);
  }
}

@-moz-keyframes beat {
  to {
    transform: scale(1.4);
  }
}

@-o-keyframes beat {
  to {
    transform: scale(1.4);
  }
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes rotateme {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes rotateme {
  from {
    -o-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(360deg);
  }
}

.rotate-me {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

/*------animate-css-------------------*/

/*==================================wirn - canvas css==================================*/
audio,
canvas,
video {
  display: inline-block;
}

.large-header {
  position: relative;
  width: 100%;
  background: none;
  background-color: transparent;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

/*==================================navigation==================================*/
/* wirn - stuck menu */
.navTrigger {
  display: none;
}

/*#stuck_container{background-color:transparent;position:relative;top: 0;right: 0;left: 0;bottom: auto;z-index: 1111; padding: 9px 0px;}*/
.isStuck {
  border: none;
  z-index: 999;
  background-color: #ea4846 !important;
}

.isStuck .navbar-brand img#stc {
  transform: translate(0px, -5em);
  margin: 0 auto;
  max-width: 100%;
  transition: linear 0.1s ease-in-out 0s;
  opacity: 0;
  height: 0px;
}

.isStuck .navbar-brand img#stc_1 {
  transform: translate(0px, 0em);
  transition: linear 0.2s ease-in-out 0s;
  opacity: 1;
  width: 130px;
}

.isStuck .navbar-nav>li>a {}

.isStuck ul.nav.navbar-nav.navbar-right {
  margin-top: 9px !important;
}

.isStuck .navbar-header a.navbar-brand {
  width: 200px;
  display: inline-block;
  float: none;
  vertical-align: middle;
}

.isStuck .navbar-header .search-sec .wrap {
  margin: 20px 0px;
}

.isStuck .navbar-header .cart-sec {
  margin: 20px 0px;
}

.isStuck .search-sec .wrap {
  height: 20px;
}

.isStuck .navbar-collapse.collapse {
  width: 82%;
}

/*==================================navigation-dropdown==================================*/
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
  min-width: 155%;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #555;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

.navbar {
  margin-bottom: 0px;
  border-radius: 0px;
  height: auto;
  padding: 0px;
}

.navbar-inverse {
  background-color: #FFFFFF;
  border-color: #e0dede;
  border: none;
}

.navbar-inverse ul.nav li.dropdown:hover ul {
  padding: 0px;
  margin: 0px;
  background: #000;
  min-width: 190px;
  text-align: center;
}

/*.navbar-inverse ul.nav li.dropdown:hover ul li a { color: #fff;font-family: 'PoppinsSemiBold'; letter-spacing: 1px; }*/
.navbar-inverse .navbar-nav>li {
  position: relative;
  float: none;
  display: inline-block;
  margin: 0px -2px;
}

.navbar-inverse .navbar-nav>li>a {
  color: #fff;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  font-size: 16px;
  padding: 10px 13px;
  letter-spacing: 0.5px;
  line-height: 13px;
  position: relative;
  margin: 0px 10px;
}

/*.navbar-inverse .navbar-nav > li > a:after{ position: absolute; left: auto; right: 0; width: 2px; height: 13px; content: ""; top: 0; bottom: 0; margin: auto; background: #515151;}*/
.navbar-inverse .navbar-nav>li:last-child a:after {
  display: none;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:active,
.navbar-inverse .navbar-nav>li>a.active {
  color: #fff;
}

/*.navbar-inverse .navbar-nav > li a.active{border-bottom: 4px solid #2098D1;}*/
.navbar-inverse .navbar-nav>li a.active.hvr-underline-from-left:before {
  display: none;
}

.navbar-inverse ul.nav li.dropdown:hover ul li a:hover,
ul.nav li.dropdown:hover ul li a:focus,
ul.nav li.dropdown:hover ul li a:active {
  background: #0d383f;
  color: #fff;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
  background: #F223A9;
  color: #fff;
}

.dropdown-menu {
  min-width: auto;
  box-shadow: none;
  border: none;
  border-radius: 0px;
  padding: 0px;
  background: #000;
  text-align: left;
}

.dropdown-menu>li>a {
  padding: 10px 14px;
  font-family: 'PoppinsRegular';
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0;
  color: #fff;
  display: block;
  text-align: left;
}

.navbar-right .dropdown-menu {
  right: auto;
  left: 0;
  min-width: 150px;
  text-align: center;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #000;
}

.navbar-brand {
  height: auto;
  padding: 0;
  display: inline-block;
  float: none;
  margin: 0px -2px;
  vertical-align: middle;
}

.navbar-brand>img {
  margin: 0;
  padding: 0;
  max-width: 90%;
}

.navbar-nav .dropdown-menu {
  position: absolute;
}

/*nav-bar*/
.navbar-header {
  float: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 268px;
}

.navbar-collapse {
  padding-right: 0px;
  padding-left: 0px;
  background: #fff;
}

.navbar-collapse.right-nav {
  display: inline-block;
  height: auto;
  padding-bottom: 0;
  overflow: visible;
  vertical-align: middle;
  text-align: right;
  flex-basis: 78%;
  background: transparent;
}

/* navigation-end */
a.navbar-brand.mobile_view_logo {
  display: none;
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
  color: #037dc0;
  background-color: transparent;
}

.navbar-inverse .navbar-nav>li>a:focus {
  color: #fff;
  background-color: transparent;
}

button.navbar-toggle.collapsed {
  display: none;
}

.navbar-nav {
  display: inline-block;
}

.navbar-inverse .navbar-nav>li>a.hvr-underline-from-left:before {
  background: #ffffff;
}

/*nav.navbar.navbar-inverse.stuck_container.inner {background: #ea4748!important;}*/


button.m_menu_close {
  border: 0;
  outline: none;
  background: transparent;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 16%;
  top: 71px;
}

button.m_menu_close img {
  width: 100%;
}

/*==================================common-css-Button-style==================================*/
.cmn-buttn {
  background: transparent;
  color: #fff;
  padding: 8px 25px;
  display: inline-block;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 50px;
  text-shadow: none;
  border: 2px solid #fff;
}

.cmn-buttn:hover {
  color: #02085E;
}

a.cmn-buttn.login-button {
  background: transparent;
  border: 1px solid #fff;
  font-size: 16px;
}

.cmn-header {
  text-align: center;
  width: 60%;
  margin: 0px auto;
  margin-bottom: 40px;
}

.cmn-header h2 {
  padding-bottom: 20px;
  color: #ff5959;
}

.cmn-header small {
  font-size: clamp(14px, 5vw, 16px);
  padding: 0px;
  margin: 0px;
  text-transform: inherit;
  letter-spacing: 0;
}

.v-mid {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.no-padding {
  padding: 0px;
}

/*common css-end*/


:root {
  --white: #FFF;
  --blue: #475089;
}

:root {
  --black: #1B1A17
}

#wrapper {
  padding-bottom: 20px;
}

/*==================================Header-css==================================*/
.navbar {
  background: var(--white);
  padding: 40px 40px 33px;
  position: relative;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: 0.4s;
}

.navbar #navbarSupportedContent {
  text-align: center;
  justify-content: center;
}

/*.navbar-brand {width: 77px;padding: 0;}*/
.navbar a.toggle-menu img {
  height: auto;
  width: 40px;
}

a.toggle-menu {
  position: relative;
}

a.toggle-menu::after {
  position: absolute;
  top: -10px;
  bottom: 0;
  left: auto;
  right: -23px;
  margin: auto;
  content: "";
  height: 152px;
  width: 1px;
  background: var(--black);
}

.left-button a {
  padding: 5px 18px 6px 12px;
  width: 191px;
  display: inline-block;
  text-align: left;
  font-family: 'Victor Serif';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #1B1A17;
  position: relative;
  border: 0.5px solid #1B1A17;
  z-index: 9
}

.left-button a::after {
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto;
  content: "";
  width: 37px;
  height: 32px;
  background: var(--blue);
  border: 0.5px solid #1B1A17;
  transition: width.5s, height.5s;
}

/*==================================Banner-css==================================*/
.banner {
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
  position: relative;
  height: 100vh;
}

.banner-text .text {
  font-family: 'Victor Serif';
  font-style: italic;
  font-weight: 400;
  font-size: 110px;
  line-height: 144px;
  text-align: center;
  color: #1B1A17;
}

.banner-text .text span {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #E58163;
}

.banner-text {
  padding-bottom: 30px;
}

/*==================================Banner-Inner-css==================================*/
.inner-banner {
  height: 100vh;
  width: 100%;
  display: flex;
  position: relative;
}

.inner-banner .banner-photo {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 70%;
  position: relative;
  margin: 0px -2px;
  display: inline-block;
}

.inner-banner .banner-content {
  position: relative;
  display: inline-block;
  width: 30%;
  margin: 0px 0px;
  height: 100vh;
  background: #fff;
}

.banner-content small {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  width: 356px;
  display: inline-block;
  padding-left: 53px;
  padding-top: 60px;
}

.banner-rebel span {
  font-family: 'Victor Serif';
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 105px;
  color: var(--black);
  padding-bottom: 18px;
  padding-left: 59px;
}

/*#tab4 {display: block !important;}*/



.cmn_menu_box a.cmn-buttn.outline_button {
  border: 1px solid var(--theme-color-1) !important;
}

a.hvr-sweep-to-right:before {
  background: var(--theme-color-3);
}

/*==================================Banner-Inner-css==================================*/
.banner-l {
  position: relative;
  width: 70%;
  display: inline-block;
  height: 100%;
  margin: 0px 0px;
  padding: 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  align-items: center;
}

.home-page .banner-l::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121648;
  opacity: 0.5;
}

.banner-l h1,
.banner h1 {
  color: #fff;
  font-weight: 600;
  font-size: 65px;
  line-height: 75px;
  position: relative;
  z-index: 2;
}

.banner-curve {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  right: 15vw;
  z-index: 3;
  bottom: auto;
  width: 546px;
}

._tab_cmn_box p {
  color: #fff;
  font-style: normal;
  font-weight: 200;
  font-family: 'Poppins';
  font-size: 20px;
  line-height: 1.5;
  width: 100%;
}

.tab-data {
  min-height: 200px;
  line-height: 150px;
}

.tabs-text {
  padding-top: 44px;
  padding-bottom: 80px;
  background: #121648;
  background-image: url(../images/tab-bg.png);
  background-repeat: no-repeat;
  background-position: left;
}

img.banner-arrow {
  position: absolute !important;
  top: auto;
  bottom: 0px !important;
  left: auto !important;
  right: 100px !important;
  margin: 0 auto;
}

.banner-l h1 b,
.banner h1 b {
  display: block;
  overflow: hidden;
}

.banner h1 b span {
  display: block;
  line-height: 100px;
}

.banner-l h1 b span {
  display: block;
  line-height: 1.3;
}

.home-page .banner-l h1 b span {
  display: block;
  line-height: 1.1 !important;
}

._tab_cont {
  padding-bottom: 60px;
}


section#team {
  padding: 275px 0px;
  position: relative;
}

._left_floting_image {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  margin: auto;
  opacity: 0.7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*==================================Tabs-css==================================*/
.tabs-text .tab_container {
  overflow: hidden;
}

.dynamic-discounting ._tab_cmn_box {
  padding-top: 41px;
  padding-bottom: 36px;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  width: 357px;
  vertical-align: top;
  background: transparent;
  border-radius: 20px;
  margin-right: 24px;
  border: 1px solid #c9cadd;
}

.dynamic-discounting ._tab_cmn_box:last-child {
  margin-right: 0px;
}

.dynamic-discounting ._tab_cmn_box h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #02085E;
  margin-bottom: 16px;
}

.dynamic-discounting ._tab_cmn_box p {
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #02085E;
}

.dynamic-discounting {
  background: #fff;
  padding-top: 155px;
  padding-bottom: 163px;
  padding-left: 100px;
  padding-right: 100px;
}

._tab_cmn_box.flip-color-blue {
  background: #02085E;
  box-shadow: rgb(2, 8, 94) 0px 30px 60px -12px, rgb(2, 8, 94) 0px 18px 36px -18px;
  margin-bottom: 77px;
  border-color: #02085e;
}

._tab_cmn_box.flip-color-blue h4 {
  color: #fff;
}

._tab_cmn_box.flip-color-blue p {
  color: #fff;
}

._tab_cmn_box a.b2b-links {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #02085e;
}

._tab_cmn_box.flip-color-blue a.b2b-links {
  color: #fff;
}

.b2b-sec-tabs h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #02085E;
  width: 276px;
  padding-bottom: 85px;
  position: relative;
}

.b2b-sec-tabs ul.tabs {
  padding: 0px;
  border: none;
}

.b2b-sec-tabs ul.tabs li {
  display: inline-block !important;
  color: #02085E !important;
  text-align: left !important;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  padding-left: 0px;
  margin-top: 14px;
  margin-bottom: 15px;
  width: 100%;
}

.b2b-sec-tabs {
  border-left: 2px solid #c0c1d7;
  padding-left: 37px;
  padding-bottom: 90px;
}

.b2b-sec-content2 {
  position: relative;
}

img.overlap-curve-b2b {
  position: absolute;
  height: auto;
  width: 432px;
  right: 140px;
  left: 0;
  margin: auto;
  bottom: -153px;
}

.b2b-sec-tabs h3::before {
  position: absolute;
  top: 58px;
  bottom: 0;
  left: -39px;
  right: auto;
  margin: auto;
  content: "";
  height: 250px;
  width: 2px;
  background: #02085E;
}

.b2b-sec-tabs ul.tabs li.active::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: -23px;
  right: 68px;
  left: 0;
  margin: auto;
  background: #02085E;
  border-radius: 100%;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 0px 11px rgba(199, 232, 237, 0.4);
  -moz-box-shadow: 0px 0px 0px 11px rgba(199, 232, 237, 0.4);
  box-shadow: 0px 0px 0px 6px rgba(2, 8, 94, 0.4);
}


._logo_tab img:last-child {
  margin-left: 40px;
}

section.side_sticky {
  background: #fff;
  padding: 0px 100px;
  padding-top: 132px;
  position: relative;
}

nav._sticky_nav {
  width: 30% !important;
  position: sticky;
  top: 170px;
  border-left: 2px solid #c0c1d7;
  padding-bottom: 90px;
  height: 500px;

}

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

nav._sticky_nav ul li {
  display: block;
}

nav._sticky_nav ul li a {
  display: block;
  color: white;
  text-decoration: none;
}

main._sticky_content {
  display: inline-block;
  width: 70%;
  padding-bottom: 100px;
}

/* Only stick if you can fit */
@media (min-height: 300px) {
  nav._sticky_nav ul {
    position: sticky;
    top: 0;
  }
}

main._sticky_content section:first-child ._boxes {
  padding-top: 100px;
}

._boxes {
  position: relative;
  padding: 0px 0px 195px;
  padding-top: 195px;
}

._boxes:after {
  content: "";
  position: absolute;
  left: auto;
  right: -80px;
  bottom: 150px;
  margin: auto;
  width: 432px;
  height: 496px;
  background-image: url(../images/b2b-curve.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

ul._inn_box {
  padding: 0;
  margin: 0;
  text-align: center;
}

/*ul._inn_box li:hover {background: #02085E;box-shadow: rgb(2 8 94) 0px 30px 60px -12px, rgb(2 8 94) 0px 18px 36px -18px;border-color: #02085e;transition: 0.3s;}*/
ul._inn_box li {
  display: inline-block;
  float: none;
  margin: 0px -2px;
  vertical-align: middle;
  width: 47%;

  /*padding-top: 41px;
    padding-bottom: 36px;
    padding-left: 30px;
    padding-right: 30px;*/
  min-height: 450px;
  background: transparent;
  border-radius: 25px;
  margin-right: 24px;
  /* border: 1px solid #c9cadd;*/
  position: relative;
  text-align: left;
  overflow: hidden;
}

/*ul._inn_box li:last-child{background: #02085E; box-shadow: rgb(2 8 94) 0px 30px 60px -12px, rgb(2 8 94) 0px 18px 36px -18px;  border-color: #02085e;}*/
.li-data {
  position: relative;
  z-index: 2;
  opacity: 1;
}

ul._inn_box li h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #02085E;
  margin-bottom: 16px;
}

/*ul._inn_box li:hover h4 {transition: 0.3s;color: #fff;}*/
/*ul._inn_box li:hover p {transition: 0.3s;color: #fff;}*/
/*ul._inn_box li:hover a {transition: 0.3s;color: #fff;}*/
ul._inn_box li p {
  margin: 50px 0 60px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #02085E;
}

ul._inn_box li a {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #02085e;
}

/*ul._inn_box li:last-child h4,ul._inn_box li:last-child p,ul._inn_box li:last-child h4 a{color:#fff;}*/
ul._inn_box li a {
  margin-top: 0px !important;
  font-size: 18px !important;
  line-height: 23px !important;
  border: 1px solid #02085E !important;
  color: #02085E !important;
}

ul._inn_box li a:hover {
  color: #121648 !important;
}

.inn-box-txt img {
  /* filter: brightness(0) invert(1); */
}

nav._sticky_nav h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 36px;
  color: #02085E;
  width: 298px;
  padding-top: 85px;
  position: relative;
  padding-left: 37px;
  padding-bottom: 40px;
  background: white;
}

nav._sticky_nav ul li a {
  display: inline-block !important;
  color: #02085E !important;
  text-align: left !important;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  padding-left: 0px;
  margin-top: 14px;
  margin-bottom: 15px;
  opacity: 0.4 !important;
  position: relative;
  padding-right: 30px;
  padding-left: 37px;
}

nav._sticky_nav ul li a.current {
  opacity: 1 !important;
}

nav._sticky_nav ul li a.current:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 13px;
  right: 0;
  left: auto;
  margin: auto;
  background: #02085E;
  border-radius: 100%;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 0px 11px rgb(199 232 237 / 40%);
  -moz-box-shadow: 0px 0px 0px 11px rgba(199, 232, 237, 0.4);
  box-shadow: 0px 0px 0px 6px rgb(2 8 94 / 40%);
}

nav._sticky_nav ul li a.current:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 116px;
  top: -50px;
  right: auto;
  left: 0;
  margin: auto;
  background: #02085e;
}

/*nav._sticky_nav h3:after { content: ""; position: absolute; width: 2px; height: 100%; top: 0; right: auto; left: -2px; margin: auto; background: #02085e; }*/
/*==================================Embed-finance-css==================================*/
.embed-finance.common-bg {
  padding-bottom: 100px;
  padding-top: 126px;
  position: relative;
  overflow: hidden;
  background: #121648;
}

.no-padding {
  padding: 0px;
}

.solution-img img {
  width: 88%;
}

.solution-text h2 {
  padding-bottom: 40px;
  width: 550px;
}

.solution-text h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: #F9FAFB;
}

.solution-text a.common-button {
  background: #fff;
  color: #02085E;
  margin-top: 45px;
}

a.common-button:hover {
  color: #02085E;
}

/*==================================Vision-css==================================*/
.vision {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  height: 800px;
  position: relative;
  padding-top: 120px;
  z-index: 1;
}

.vision h3 {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 60px;
  color: #FFFFFF;
  font-family: 'Poppins';
}

ul.list-inner-vison {
  position: relative;
  z-index: 1;
}

ul.vison-text-box {
  text-align: center;
  position: relative;
  top: 145px;
}

ul.vison-text-box li {
  display: inline-block;
  width: 30%;
  margin: 0px 10px;
  text-align: left;
  border: 1px solid #CDD2CC;
  border-radius: 30px;
  background: #FFFFFF;
  overflow: hidden;
  vertical-align: top;
  min-height: 525px;
}

ul.vison-text-box li .vison-inner-box {
  /*background: #f2f3f7;border-radius: 30px;*/
  padding-top: 33px;
  padding-left: 39px;
  padding-bottom: 28px;
  padding-right: 39px;
  position: relative;
}

ul.vison-text-box li .vison-inner-box:after {
  content: '';
  border-bottom: 1px solid rgba(18, 22, 72, 0.2);
  left: 30px;
  right: 30px;
  position: absolute;
  bottom: 0;
}

ul.vison-text-box li .vison-inner-box span {
  width: 100%;
  display: inline-block;
  text-align: right;
}

ul.vison-text-box li .vison-inner-box span img {
  height: auto;
  width: 80px;
}

ul.vison-text-box li .vison-inner-box h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 51px;
  color: #02085E;
  position: relative;
  padding-left: 20px;
}

ul.vison-text-box li .vison-inner-box h4 span {
  position: absolute;
  top: -5px;
  left: 0;
  font-size: 14px;
  font-family: 'Poppins';
  color: #02085E80;
  opacity: 0.5;
  text-align: left;
}

.vison-list {
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 50px;
}

.vison-list ul.list-inner-vison li {
  width: 100%;
  border: none;
  margin: 0px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #02085E;
  position: relative;
  padding-left: 20px;
  min-height: auto;
  margin: 15px 0px;
  background: transparent;
}

.vison-list ul.list-inner-vison li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  content: "";
  height: 6px;
  width: 6px;
  background: #02085e;
  border-radius: 50%;
}

.ready-to.fadeIn.animated a.cmn-buttn.outline_button.hvr-sweep-to-right {
  width: 200px;
  margin: 0 auto;
  margin-top: 0px !important;
  font-size: 18px !important;
  border: 1px solid var(--theme-color-1) !important;
  color: #fff !important;
  background: #02085e;
}

.ready-to.fadeIn.animated a.cmn-buttn.outline_button.hvr-sweep-to-right:hover {
  color: #02085e !important;
}

.solution-text a {
  margin-top: 30px !important;
}


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

  100% {
    transform: rotate(360deg);
  }
}

.footer-big-logo img {
  animation: animName 15s linear infinite;
}

/*==================================Testimonial-section-css==================================*/
.testimonial-section {
  padding-top: 137px;
  padding-bottom: 143px;
  padding-left: 130px;
  background: #121648;
}

._testi_content p {
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
  padding-bottom: 28px;
  color: #FFFFFF;
  width: 70%;
}

._testi_content {
  padding-top: 35px;
  padding-left: 60px;
  padding-right: 45px;
  padding-bottom: 55px;
  background: linear-gradient(106.51deg, rgba(255, 255, 255, 0.05) 3.44%, rgba(255, 255, 255, 0.02) 64.82%);
  backdrop-filter: blur(50px);
  border-radius: 24px;
  border: 1px solid #414686;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 5px 0px;
  min-height: 320px;
}

._position_name h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  margin-bottom: 5px;
}

._position_name small {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}

._position_name {
  display: inline-block;
}

.position-logo {
  display: inline-block;
  vertical-align: top;
  float: right;
}


/*.testimonial-section .owl-theme .owl-controls {display: block!important;padding-top: 33px;}*/

/*==================================Ready-to-css==================================*/
.ready-to {
  background: #fff;
  text-align: center;
  padding-top: 230px;
  padding-bottom: 130px;
}

.ready-to img {
  height: auto;
  width: 90px;
  margin: 0 auto;
}

.ready-to h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 58px;
  margin: 35px 0;
  color: #02085E;
  text-align: center;
}

a.common-button {
  background: #02085E;
  border-radius: 50px;
  width: 270px;
  height: 70px;
  margin: 0 auto;
  line-height: 70px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  text-align: center;
  color: #FFF;
  display: inline-block;
  overflow: hidden;
}


/*==================================Curve-town-css==================================*/
.curve-town {
  background: #121648;
  padding: 100px;
}

.curve-town img {
  margin-bottom: -4px;
}

.home-page .curve-town {
  padding: 0px;
}

/*==================================News-body-css==================================*/
.in-the-news {
  padding-top: 200px;
  padding-bottom: 75px;
  position: relative;
  overflow: hidden;
}

.news-body {
  padding-top: 40px;
  padding-left: 50px;
  padding-right: 61px;
  padding-bottom: 40px;
  background: rgba(0, 5, 77, 0.6);
  z-index: 99;
  position: relative;
  border-radius: 25px;
}

.news-body ul.news-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.news-body ul.news-list li {
  margin: 0px;
  display: flex;
  border-bottom: 1px solid #262a62;
  margin-bottom: 53px;
}

.news-body ul.news-list li a {
  display: flex;
}

.news-body ul.news-list li .textnews p {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  width: 83%;
  margin-bottom: 20px;
}

.news-body ul.news-list li .textnews small {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #CDD2CC;
  text-transform: capitalize;
  padding-bottom: 40px;
  display: inline-block;
  opacity: .5;
}

.news-body ul.news-list li:last-child {
  margin: 0px;
  border: none;
}

.textpic img {
  height: auto;
  width: 132px;
}

.news-body ul.news-list li:last-child small {
  padding-bottom: 0px;
}

img.position-news-right {
  margin-left: -80px;
}

.img-logo {
  position: relative;
  width: 100%;
  margin-left: -70px;
}

/*.img-logo::after { position: absolute; top: auto; bottom: -406px; left: auto; right: 17%; margin: auto; content: "In The News"; font-style: normal; font-weight: 400; font-size: 40px; line-height: 80px;color: #FFFFFF; height: 200px; }
*/



/*==================================Get-in-touch-css==================================*/
.get-in-touch {
  padding-top: 100px;
  padding-bottom: 150px;
  text-align: center;
  position: relative;
}

/*.get-in-blur {background: linear-gradient(106.51deg, rgba(255, 255, 255, 0.05) 3.44%, rgba(255, 255, 255, 0.02) 64.82%);backdrop-filter: blur(50px);border-radius: 24px;box-sizing: border-box;margin: 0 auto;width: 90%;border: 1px solid #414686;}*/

section.get-in-touch.newdesign .get-in-blur {
  background: linear-gradient(106.51deg, rgba(255, 255, 255, 0.05) 3.44%, rgba(255, 255, 255, 0.02) 64.82%);
  backdrop-filter: blur(50px);
  border-radius: 24px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 90%;
  border: 1px solid #414686;
  display: flex;
  align-items: flex-start;
  padding: 70px;
}



.get-in-blur h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: normal;
  color: #FFFFFF;
  text-align: left;
}

ul.touch-details li {
  width: 100%;
  margin: 0;
  vertical-align: top;
  padding-top: 30px;
  height: auto;
  padding-bottom: 0;
  min-height: auto;
}

ul.touch-details li a {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: #F9FAFB;
  text-align: left;
  text-transform: inherit !important;
}

ul.touch-details li a span {
  position: relative;
  text-align: left !important;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
}

ul.touch-details li:last-child {
  border: none;
}

img.get-in-curve {
  position: absolute;
  height: auto;
  width: 301px;
  left: 0;
  top: -128px;
}

.location_tab {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

section.get-in-touch.newdesign .get-in-blur .col-sm-5 {
  padding-left: 102px;
}

.location_tab .tabs-box {
  padding: 0;
  margin: 0;
  display: flex;
}

.location_tab .tabs-link {
  padding-left: 0;
  width: 60%;
}

.location_tab .tab_container3 {
  padding-left: 0;
  width: 40%;
}

.location_tab ul.tabs3 li {
  display: block !important;
  text-align: left;
  color: #CDD2CC;
  opacity: 1 !important;
  font-size: 24px;
  font-weight: 300;
  margin-top: 20px;
  padding-left: 20px;
}

.location_tab ul.tabs3 li.active {
  text-decoration: underline;
  position: relative;
  font-weight: 500;
  color: #fff;
}

.location_tab ul.tabs3 li.active:after {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50px;
  content: "";
  left: 0;
  top: 14px;
}

.tab_content3 {
  padding-top: 20px;
}

.tab_content3 p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  width: 70%;
  text-align: left;
}

/*==================================Footer-css==================================*/
/*footer.footer_sec {background:var(--theme-color-black);padding: 0px 69px;box-shadow:0px 4px 20px rgba(0, 0, 0, 0.1);border-radius:100px 100px 100px 100px;padding-top:119px;margin-left:34px;margin-right: 34px;padding-bottom: 85px;}

footer.footer_sec a.footer-logo {display: inline-block;margin-bottom: 30px;}
footer.footer_sec ul.header_social_info, footer.footer_sec small._find_us {display: inline-block;float: none;vertical-align: middle;margin: 0px -2px;}
ul.header_social_info {width:91%;text-align: right;margin-bottom: 30px;}
ul li {display: inline-block;float: none;vertical-align: middle;margin: 0px -2px;text-decoration: none;}
ul.header_social_info li:first-child a {padding-left: 0;}
ul.header_social_info li a {padding: 0px 14px;padding-left: 4px;}
footer.footer_sec ._disclamer .container-fluid {border-top: 1px solid #747474;padding: 30px 0px;}
ul.footer_cmn_point li:first-child {margin-left: 0;}
ul.footer_cmn_point li {display: inline-block;margin: 0px 15px;}
ul.footer_cmn_point li a {display: block;color: var(--theme-color-white);font-size: var(--para);position: relative;padding-left: 15px;padding-top: 6px;font-weight: 300;}
ul.footer_cmn_point {text-align: left !important;}
ul.footer_cmn_point.text-right {text-align: right !important;}
ul.footer_cmn_point li a::after {position: absolute;top: auto;bottom: -4px;left: 6px;right: 0;margin: auto;width:0%;content: "";height: 3px;background: #02085e;margin: 0 auto;transition: width 0.3s ease 0s, left 0.3s ease 0s;}
ul.footer_cmn_point li a:hover::after {width: 100%;transition: width 0.3s ease 0s, left 0.3s ease 0s;}
*/

.home-page h3.small-view {
  display: none;
}

footer {
  background: #CDD2CC;
  padding: 80px 0 80px;
}

footer h2 {
  color: #02085E;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-map {
  padding: 0 20px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.footer-map:after {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  right: 20px;
  height: 100%;
  background: #DAFFD1;
  border-radius: 17px;
  opacity: 0;
  transition: 0.4s;
}

.footer-map:hover:after {
  opacity: 0.75;
}

.footer-map img {
  width: 100%;
}

.footer-map img {
  opacity: .5;
}

.footer-map a:hover img {
  opacity: .5;
}

.footer-map a:hover img {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(2, 8, 94, 0.3);
}

.footer-middle {
  padding: 35px 0;
}

.footer-middle h3 {
  color: #02085E;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 0px;
}

.footer-middle {
  border-bottom: 1px solid rgba(2, 8, 94, 0.3);
}

.footer-middle .social-txt {
  color: #121648 !important;
  opacity: 0.3;
  margin-left: 10px;
  font-size: 20px;
}

.footer-middle .social-txt:hover {
  opacity: 1;
}

.footer-middle img.social-icon {
  vertical-align: sub;
}

.footer-bottom {
  padding-top: 50px;
}

.social-media {
  margin-top: 60px;
}

.privecy-policy a {
  margin-left: 30px;
}

.privecy-policy a,
.privecy-policy p {
  font-size: 12px;
  color: #121648;
  opacity: 0.5;
}

.privecy-policy a:hover {
  opacity: 1;
}

.privecy-policy {
  margin-top: 20px;
}

.social-media ul li {
  margin-left: 15px;
}

.footer-li h4 {
  color: #02085E;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-link ul li a {
  color: #02085E;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 18px;
  opacity: 0.5;
}

.footer-link ul li a:hover {
  opacity: 1;
}

/*=============================================================================*/
/*==================================Buy-Now-Pay-Latet-css======================*/
/*=============================================================================*/



.bnpl-corporate .inner-banner {
  height: 100vh;
  position: relative;
  background: #fff;
}

img.mouse-click {
  position: absolute;
  bottom: 65px !important;
  left: 40% !important;
  height: auto;
  width: 35px;
  background: transparent !important;
  box-shadow: none !important;
}

.banner-text-content h1 {
  line-height: 1.3;
  color: #02085E;
  margin-bottom: 12px;
}

/*.banner-text-content span {font-style: normal;font-weight: 400;font-size: 40px;line-height: 60px;color: #02085E;opacity: 0.8;}*/

.banner-text-content span.sub_heading {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 60px;
  color: #02085E;
  opacity: 0.8;
  text-transform: capitalize;
}

.banner-text-content {
  position: absolute;
  width: 825px;
  left: 12%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }

  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }

  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

.avatar {
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}

img.mouse-click {
  position: absolute !important;
  bottom: 65px !important;
  left: 40% !important;
  height: auto;
  width: 35px;
  background: transparent !important;
  box-shadow: none !important;
}

/*=================================After-Banner============================================*/
.after-banner {
  padding-top: 130px;
  padding-bottom: 120px;
  text-align: center;
  padding-left: 120px;
  padding-right: 120px;
  position: relative;
}

ul.logo-list {
  padding-bottom: 63px;
  border-bottom: 1px solid #414686;
}

ul.logo-list li {
  width: 33%;
  display: inline-block;
  text-align: center;
}

ul.logo-list li img {
  height: auto;
  width: 175px;
}

a.button-white-border {
  border: 2px solid #fff;
}

ul.logo-list li p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  opacity: 0.8;
  width: 319px;
  text-align: left;
  margin: 0 auto;
}

ul.text-list {
  padding-top: 63px;
  text-align: left;
  padding-left: 103px;
}

ul.text-list li {
  width: 33%;
  text-align: left;
  padding-left: 90px;
}

ul.text-list li span {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: #CDD2CC;
}

ul.text-list li h2 {
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 90px;
  color: #CDD2CC;
}

img.after-baner-curve {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  height: auto;
  width: 400px;
}



/*=================================Sell-More-Product============================================*/
.sell-more-product {
  padding-top: 490px;
  padding-bottom: 43px;
  padding-left: 27px;
  padding-right: 27px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.sell-more-product .text-overlay {
  padding-top: 62px;
  padding-left: 130px;
  padding-bottom: 61px;
  padding-right: 119px;
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}

.sell-more-product .text-overlay h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #02085E;
  width: 441px;
}

.sell-more-product .text-overlay p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #02085E;
  opacity: 0.8;
  width: 508px;
}


/*=================================Ready-To============================================*/
.bnpl-corporate .ready-to {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--theme-color-1);
}

.bnpl-corporate .ready-to h3 {
  color: #fff;
  margin-bottom: 33px;
}

.bnpl-corporate .ready-to a {
  background: #fff;
  color: #02085E;
}





/*=================================bnpl-corporate============================================*/
.bnpl-corporate ul.atm-with-text {
  padding-top: 148px;
}

.bnpl-corporate ul.atm-with-text li {
  width: 50%;
  position: relative;
}

.bnpl-corporate ul.atm-with-text li img {
  height: auto;
  width: 707px;
  z-index: 9;
  position: relative;
}

.bnpl-corporate ul.atm-with-text li img.atm-bg {
  height: auto;
  width: 333px;
  position: absolute;
  top: -94px;
  bottom: auto;
  left: 52px;
  right: auto;
  margin: auto;
}

.bnpl-corporate ul.atm-with-text li p {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
  color: #FFFFFF;
  width: 465px;
}

.bnpl-corporate ul.atm-with-text li p b {
  display: block;
}

ul.payment-steps li {
  margin: 0px -6px;
}




/*=================================Benefit-Business============================================*/
.benefit-business .inner-benefit-business {
  background: #ffffff;
  border-radius: 500px 500px 500px 500px;
  position: relative;
}

ul.benefit-half li {
  width: 50%;
  text-align: center;
  vertical-align: top;
}

ul.benefit-half li h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 65px;
  line-height: 90px;
  color: #02085E;
  width: 525px;
  margin: 0 auto;
  text-align: left;
}

ul.benefit-half li ul.benefit-list li {
  display: block;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 46px;
  color: #02085E;
  opacity: 0.8;
  padding: 0px !important;
  width: 100%;
  padding-left: 25px !important;
  position: relative;
}

ul.benefit-half li {
  width: 50%;
  text-align: center;
  padding-top: 265px;
  padding-bottom: 60px;
  position: sticky;
  top: 0px;
}

ul.benefit-half li ul.benefit-list li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  content: "";
  height: 6px;
  width: 6px;
  background: #02085e;
  border-radius: 50%;
}

.pad-t-120 li {
  padding-top: 120px !important;
}

.benefit-half.pad-t-120 {
  padding-bottom: 196px;
}

.get-start-five-step {
  padding-bottom: 158px;
  text-align: center;
}

.get-start-five-step span {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #02085E;
}

.get-start-five-step ul {
  margin-top: 160px;
  margin-bottom: 158px;
}

.get-start-five-step ul li {
  display: inline-block;
  float: none;
  margin: 0px -14px;
  text-decoration: none;
  vertical-align: middle;
  transform: scaleY(-1);
  position: relative;
  z-index: 9999;
  opacity: 1;
  overflow: visible;
}

.get-start-five-step ul li p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #02085E;
  width: 200px;
  text-align: left;
  vertical-align: top;
  transform: scaleY(-1);
}

.five-step-inner {
  padding-top: 59px;
  padding-left: 39px;
  padding-bottom: 84px;
  vertical-align: middle;
  padding-right: 49px;
}

li.two .five-step-inner {
  padding-top: 40px !important;
}

li.three .five-step-inner {
  padding-top: 62px !important;
  padding-bottom: 104px !important;
}

li.four .five-step-inner {
  padding-top: 84px !important;
  padding-bottom: 84px !important;
  height: 285px !important;
}

li.five .five-step-inner {
  padding-top: 94px !important;
  padding-bottom: 152px !important;
}

.five-step-inner {
  padding-top: 59px;
  padding-left: 39px;
  padding-bottom: 84px;
  vertical-align: middle;
  padding-right: 49px;
  background: #fff !important;
  margin: 4px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 20px;
}

.get-start-five-step ul li::before {
  position: absolute;
  top: 67px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  content: "1";
  font-style: normal;
  font-weight: 400;
  font-size: 200px;
  line-height: 300px;
  transform: scaleY(-1);
  color: #02085E;
  opacity: 0.1;
  z-index: 9;
}

li.two::before {
  content: "2" !important;
  top: 95px !important;
}

li.three::before {
  content: "3" !important;
  top: 107px !important;
}

li.four::before {
  content: "4" !important;
  top: 116px !important;
}

li.five::before {
  content: "5" !important;
  top: 119px !important;
}

li.left-border {
  position: relative;
}

li.left-border::before {
  position: absolute;
  top: 62px;
  bottom: auto;
  left: -1px;
  right: auto;
  margin: auto;
  content: "";
  height: 1033px;
  width: 1px;
  background: #CDD2CC;
}

li.left-border {
  border-bottom: 1px solid #CDD2CC;
}

.benefit-business {
  position: relative;
}

img.card-place-top {
  position: absolute;
  height: auto;
  width: 1031px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  top: -585px;
  bottom: auto;
  background: transparent;
  background: transparent;
  box-shadow: none !important;
  border: none;
}

ul.benefit-list {
  padding-left: 50px;
}

.benefit-business {
  margin-top: 600px;
}

.flot {
  perspective: 500px;
  position: relative;
  z-index: 999;
}

.card {
  transition: transform .4s ease;
  width: 600px;
  height: auto;
}

.footer_sec .container-fluid {
  width: 90%;
}

img.place-bg {
  position: absolute;
  left: 0;
  right: auto;
  margin: auto;
  top: -345px;
  bottom: auto;
  height: auto;
  width: 430px;
}




/*=================================Payment-Methods-Steps============================================*/
.payment-methods-steps {
  text-align: center;
  padding: 0px 125px 100px;
}

.payment-methods-steps h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 60px;
}

.payment-methods-steps .row {
  padding-top: 87px;
  border-top: 1px solid #262a62;
}

.payment-methods-steps ul.payment-steps li .steps-inner {
  padding-top: 45px;
  padding-left: 52px;
  text-align: left;
  padding-bottom: 60px;
  padding-right: 24px;
  border-radius: 24px;
  width: 380px;
  height: 342px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.payment-methods-steps ul.payment-steps li .steps-inner img {
  height: auto;
  width: 52px;
  padding-bottom: 50px;
}

.payment-methods-steps ul.payment-steps li .steps-inner p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #CDD2CC;
  width: 250px;
}

.payment-methods-steps ul.payment-steps li .steps-inner h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  padding-bottom: 13px;
  color: #FFFFFF;
}

/*=================================Real-Worlds-Business============================================*/
.real-world-business {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 243px;
}

.real-world-business .real-business {
  border: 1px solid #CDD2CC;
  border-radius: 30px;
  padding-top: 60px;
  padding-left: 138px;
  padding-right: 138px;
  padding-bottom: 54px;
  width: 880px;
  margin: 0 auto;
}

.real-world-business .real-business p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: var(--theme-color-white);
  padding-bottom: 26px;
}

a.white-bg {
  background: var(--theme-color-white);
  color: var(--theme-color-1);
}





/*---------Accordian----------*/
.accordian_section h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 80px;
  color: #F9FAFB;
  padding-bottom: 0px;
  margin-bottom: 50px;
  border-bottom: 1px solid #CDD2CC;
}

.small-accordian {
  padding-bottom: 250px;
}

.accordian_section .tabs {
  border-top: 1px solid #282d76;
}

.tabs .tab:first-child {
  margin-top: 24px;
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}

.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #02085e;
  cursor: pointer;
  font-family: var(--theme-font);
  padding-left: 40px;
  position: relative;
}

.tab-label:hover {
  background: transparent;
}

.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
  display: none;
}

.tab-content {
  max-height: 0;
  padding: 0;
  color: #fff;
  background: #02085e;
  transition: all 0.35s;
}

.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}

.tab-close:hover {
  background: #1a252f;
}

.tab input:checked+.tab-label {
  background: transparent;
}

.tab input:checked+.tab-label::after {
  transform: rotate(90deg);
}

.tab input:checked~.tab-content {
  max-height: 100vh;
  padding: 1em;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tabs .tab:first-child {
  margin-top: 24px;
}

.tab {
  border-bottom: 1px solid #282d76;
}

.tab-label::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  right: auto;
  margin: auto;
  content: "";
  height: 6px;
  width: 6px;
  background: #fff;
  border-radius: 50%;
}

.accordian_section .accordion-item.active {
  height: auto;
}

section.accordian_section {
  padding: 0px 0px 100px;
}

.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #FFFFFF;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  border: 0;
  border-radius: 0;
}

.accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.accordion-button {
  background-color: transparent;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  border-radius: 0;
  padding: 24px 0px;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 0;
}

.accordion-body p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #E5E7EB;
  width: 80%;
  margin-bottom: 10px;
}

button.accordion-button {
  padding-left: 1.25rem;
}

/*button.accordion-button:before{content:"";left: 22px;top: 30px;position: absolute;width:8px;height:8px;background:#fff;border-radius: 50px;} 
button.accordion-button:after{display: none;}
*/
/*---------Get-In-Touch----------*/
.bnpl-corporate img.get-in-curve {
  position: absolute;
  height: auto;
  width: 301px;
  right: 0;
  top: 105px;
  left: auto;
}


/*=============================================================================*/
/*==================================For-Investor-Page-css======================*/
/*=============================================================================*/
.for-investor .ready-to h3 {
  color: #fff;
  font-size: 40px;
  line-height: 48px;
  text-align: left;
  width: 501px;
}

.for-corporate .inner-benefit-business img {
  width: 115px;
  margin: 0 auto;
}

.investor-white-box {
  text-align: center;
  padding-top: 135px;
}

.investor-white-box h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  color: #02085E;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 968px;
  margin: 0 auto;
}

.benefit-business.for-corporate {
  margin: 0px;
}



/*---------White-Block----------*/
.giving-direct {
  text-align: center;
  padding-bottom: 180px;
  padding-top: 200px;
}

.giving-direct h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 44px;
  width: 991px;
  margin: 0 auto;
  padding-bottom: 20px;
  color: #02085E;
}

.giving-direct p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #02085E;
  width: 798px;
  margin: 0 auto;
  padding-bottom: 40px;
}

a.b2b-links.common-button.bg-trasparent {
  background: transparent;
  color: #02085E;
  border: 2px solid #02085E;
}

a:hover.b2b-links.common-button.bg-trasparent {
  color: #02085E !important;
}

.giving-direct a {
  margin: 0px 25px;
}

.benefit-business.for-corporate li.left-border {
  border-bottom: none;
}

.benefit-business.for-corporate li.left-border::before {
  height: 635px;
}





/*---------Payment-Methods----------*/
.payment-methods-steps.for-invester {
  padding-top: 206px;
}

.payment-methods-steps.for-invester .row {
  border: none;
  padding: 0px;
}

.payment-methods-steps.for-invester .already-founded h4 {
  padding: 0px;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 60px;
  color: #FFFFFF;
  text-align: left;
  width: 481px;
  margin: 0 auto;
}

.payment-methods-steps.for-invester .already-founded p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
  color: #FFFFFF;
  width: 422px;
  margin: 0 auto;
  margin-top: 14px;
}


/*---------Real-Business----------*/
.for-investor .real-business.wow.fadeInUp.animated h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 50px;
}

.for-investor .real-business.wow.fadeInUp.animated {
  padding-left: 72px;
  padding-right: 72px;
  text-align: center;
}

.for-investor .real-business.wow.fadeInUp.animated a.b2b-links.common-button.bg-trasparent {
  border-color: #fff;
  color: #fff;
}

.for-investor .real-business.wow.fadeInUp.animated a {
  margin: 0px 15px;
}

.for-investor .real-world-business {
  padding-bottom: 31px;
}




/*--------for-small-business--------*/
.for-small-business .get-start-five-step {
  padding-top: 207px;
}

.for-small-business li.left-border {
  border-bottom: none;
}

.for-small-business li.left-border::before {
  height: 631px;
}

.already-founded ul {
  text-align: left !important;
  width: 440px;
}

.already-founded ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
  color: #FFFFFF;
  list-style: circle !important;
  padding-left: 40px;
  position: relative;
}

.already-founded ul li::before {
  position: absolute;
  top: 19px;
  bottom: auto;
  left: 0;
  right: auto;
  margin: auto;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  border-radius: 50%;
}






/*=============================================================================*/
/*==================================Dynamic-Discount-Page-css======================*/
/*=============================================================================*/
ul.four-step-list li span {
  text-transform: uppercase;
}

.dynamic-discount .after-banner-button a {
  background: #fff;
  color: #02085E;
  margin-top: 100px;
}

.dynamic-discount .after-banner-text h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 66px;
  text-align: left;
  color: #FFFFFF;
  opacity: 0.8;
  width: 686px;
}

.dynamic-discount .after-banner-text p {
  text-align: left;
  padding-top: 17px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  opacity: 0.8;
}

.dynamic-discount .ready-to .row {
  display: block;
}

.dynamic-discount .ready-to h3 {
  width: auto;
  text-align: center;
}

.dynamic-discount .benefit-business {
  margin-top: 203px;
}


/*--------White-Block----------*/
img.curve-in-listed {
  position: absolute;
  right: 0;
  bottom: auto;
  top: 22%;
  height: auto;
  width: 400px;
}

ul.four-step-list {
  text-align: center;
  margin-top: 50px !important;
  width: 1250px;
  margin: 0 auto;
  margin-bottom: 244px !important;
  background: #02085E0D;
  border-radius: 24px;
  padding: 20px;
  position: relative;
}

span.client-depent {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #02085E;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 150px;
}

ul.four-step-list li {
  width: 300px;
  margin: 0px -2px;
  padding: 73px 0px;
  padding-left: 28px;
  text-align: left;
  vertical-align: top;
  position: relative;
  min-height: 404px;
}

ul.four-step-list li img {
  display: block;
  padding-bottom: 39px;
  height: auto;
  width: 57px;
}

ul.four-step-list li span {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #02085E;
  padding-bottom: 13px;
  display: inline-block;
}

ul.four-step-list li p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  width: 250px;
  color: #02085E;
}

ul.four-step-list li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto;
  content: "";
  width: 1px;
  height: 100%;
  background: #CDD2CC;
}

ul.four-step-list li:last-child::after {
  display: none;
}

.dynamic-discount .already-founded span {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  width: 890px;
  display: inline-block;
  color: #FFFFFF;
  padding-bottom: 24px;
}



/*-------Card-And-Text--------*/
.dynamic-discount .payment-methods-steps.for-invester .already-founded p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  width: 741px;
}

.dynamic-discount ul.atm-with-text li span {
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 45px;
  text-align: left;
  width: 400px;
  display: inline-block;
  color: #fff;
  float: left;
}






/*=============================================================================*/
/*==================================Dynamic-Discount-small-business-Page-css======================*/
/*=============================================================================*/
.dynamic-discount-for-small-business {
  position: relative;
}

.dynamic-discount-for-small-business ul.logo-list li:first-child {
  width: 60%;
}

.dynamic-discount-for-small-business ul.logo-list li:first-child span {
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 66px;
  color: #FFFFFF;
  opacity: 0.8;
}

.dynamic-discount-for-small-business ul.text-list li {
  width: 25%;
}

.dynamic-discount-for-small-business .sell-more-product .text-overlay p {
  width: 671px;
}



/*-------------Ready-To------------------*/
.dynamic-discount-for-small-business .ready-to .row {
  display: block;
}

.dynamic-discount-for-small-business .ready-to h3 {
  width: 55%;
  text-align: center;
  margin: 45px auto;
}

.dynamic-discount-for-small-business .benefit-business {
  margin-top: 203px;
}





/*-------------Payment-Methods-Steps------------------*/
.dynamic-discount-for-small-business .payment-methods-steps.for-invester .already-founded span {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #FFFFFF;
  text-align: center;
  width: 890px;
  display: inline-block;
  padding-bottom: 25px;
}

.dynamic-discount-for-small-business .payment-methods-steps.for-invester .already-founded p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  width: 861px;
  margin-top: 0px;
}





/*=============================================================================*/
/*==================================Dynamic-Discount-For-Investor-Page-css======================*/
/*=============================================================================*/

.dynamic-discount-for-small-business.dynamic-discount-for-investor ul.logo-list li:first-child span {
  width: 735px;
  display: inline-block;
  text-align: left;
}


/*--------After-Banner---------------*/
.dynamic-discount-for-investor .sell-more-product .text-overlay h3 {
  width: 661px;
}

/*----------Ready-To----------------*/
.ready-to.for-investor h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  width: 957px;
  margin: 0 auto;
  padding-top: 43px;
  padding-bottom: 53px;
}


/*----------Benefit-Business---------*/
.benefit-business.for-investor .get-start-five-step {
  padding-top: 212px;
  padding-bottom: 292px;
}

.benefit-business.for-investor .get-start-five-step h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  color: #02085E;
  width: 968px;
  margin: 0 auto;
  padding-bottom: 21px;
}

.benefit-business.for-investor .get-start-five-step p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #02085E;
  width: 692px;
  margin: 0 auto;
}

.benefit-business.for-investor ul li.left-border {
  border-bottom: none;
}

.benefit-business.for-investor li.left-border::before {
  height: 554px;
  top: 145px;
}


/*----------Payment-Methods---------*/
.payment-methods-steps.for-invester ul.blur-invest {
  padding-top: 89px;
  padding-left: 67px;
  padding-bottom: 76px;
  padding-right: 67px;
  width: 1124px;
  margin: 0 auto;
  background: linear-gradient(106.09deg, rgba(255, 255, 255, 0.075) 1%, rgba(255, 255, 255, 0.025) 99.4%);
  backdrop-filter: blur(50px);
  border: 1px solid #414686;
  border-radius: 24px;
  position: relative;
}

.payment-methods-steps.for-invester ul.blur-invest li.first {
  display: inline-block;
  width: 66%;
  text-align: left;
}

.payment-methods-steps.for-invester ul.blur-invest li.last {
  width: 30%;
}

.payment-methods-steps.for-invester ul.blur-invest .first h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  width: 465px;
  padding-bottom: 21px;
}

.payment-methods-steps.for-invester ul.blur-invest .first p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  width: 465px;
  color: #fff;
}

.payment-methods-steps.for-invester ul.blur-invest li.last a.b2b-links.common-button.bg-trasparent {
  border-color: #fff;
  color: #fff;
  margin-bottom: 73px;
}

.payment-methods-steps.for-invester {
  position: relative;
  overflow: hidden;
}

img.position-left {
  height: auto;
  width: 445px;
  position: absolute;
  left: 0;
  top: 0;
}


/*----------Only-Banner---------*/
.only-banner {
  height: 800px;
  position: relative;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-bottom: 100px;
}

/*---------------FAQ-------------*/
.accordian_section.for-investor {
  text-align: center;
}

.accordian_section.for-investor .accordion-item button {
  text-align: center !important;
  align-items: center !important;
  display: inline-block;
  width: auto;
}

.accordian_section.for-investor .accordion-item .accordion-body p {
  margin: 0 auto;
}

/*#accordionExample, .accordion-read-more {width: 1014px;margin: 0 auto;}*/




/*
ul._inn_box li:last-child .b2b-links {
  color: #fff;
}
*/
/*=============================================================================*/
/*==================================About-Us-Page-css======================*/
/*=============================================================================*/

/*--------Banner----------*/
.about-us {
  position: relative;
}

.about-us .banner-inner-content {
  text-align: center;
  padding-top: 153px;
  padding-left: 73px;
  padding-right: 73px;
  padding-bottom: 82px;
}

.about-us .banner-inner-content h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 78px;
  color: #FFFFFF;
  width: 1095px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.about-us .banner-inner-content img {
  height: auto;
  width: 100%;
}



.about-us {
  position: relative;
}

.about-us nav._sticky_nav ul li a {
  display: inline-block !important;
  color: #FFF !important;
  text-align: left !important;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  margin-top: 14px;
  margin-bottom: 15px;
  opacity: 0.25 !important;
  position: relative;
  padding-right: 30px;
  padding-left: 37px;
}

.about-us ._boxes::after {
  display: none;
}

.about-us section.side_sticky {
  background: #02085e;
}

.about-tab-inner {
  padding-top: 163px;
  background: #fff;
  padding-bottom: 161px;
  padding-left: 61px;
  padding-right: 73px;
}

.about-tab-inner img {
  display: inline-block;
  height: auto;
  width: 160px;
  vertical-align: top;
}

.about-tab-inner span {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 39px;
  color: #02085E;
  width: 522px;
  padding-left: 102px;
}

.about-us nav._sticky_nav ul li a.current {
  opacity: 1 !important;
}

.about-us nav._sticky_nav ul li a.current::before {
  background: #fff;
}

.about-us nav._sticky_nav {
  border-left: 2px solid #414686;
}













/*--------After-Logo-Text----------*/
.after-logo-text {
  padding-top: 130px;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 44px;
}

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

.after-logo-text .logo-center img {
  height: auto;
  width: 342px;
  margin-top: 40px;
}

.logo-text span {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 38px;
  color: #FFFFFF;
  width: 559px;
  display: inline-block;
}

.about-us ul.logo-list {
  border: none;
}

.about-us ul.logo-list li.center-list p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 39px;
  width: 577px;
}


/*--------Bottom-Town----------*/
.bottom-town {
  height: 390px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}


/*--------Vison-Logo----------*/
.vison-logo {
  background: #fff;
  text-align: center;
  padding-top: 207px;
  padding-bottom: 66px;
  padding-left: 66px;
  padding-right: 66px;
}

.vison-logo .vison-center-logo {
  padding-bottom: 87px;
}

.vison-logo .vison-center-logo img.vison {
  position: relative;
  height: auto;
  width: 355px;
}

.about-us .vison-logo ul.vison-list {
  padding: 0px;
  padding-bottom: 111px;
  border-bottom: 1px solid #CDD2CC;
}

.about-us .vison-logo ul.vison-list li {
  width: 300px;
  margin: 0px 25px;
}

.about-us .vison-logo ul.vison-list li h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #02085E;
  padding-bottom: 11px;
}

.about-us .vison-logo ul.vison-list li p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #02085E;
  width: 300px;
}

.about-us .vison-logo .laama-fully {
  padding-top: 150px;
}

.about-us .vison-logo .laama-fully h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #02085E;
  padding-bottom: 0px;
  width: 292px;
  text-align: left;
  float: left;
}

.about-us .vison-logo .laama-fully p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
  color: #02085E;
  width: 617px;
  padding-bottom: 0px;
  float: right;
}

ul.fully-list {
  text-align: center !important;
  display: inline-block;
}

.about-us .vison-logo .laama-fully ul.fully-list li {
  width: 340px;
  vertical-align: middle;
  margin: 0px 13px !important;
  height: 290px;
  display: table-cell;
  border: 1px solid #CDD2CC;
  border-radius: 30px;
}

.about-us .vison-logo .laama-fully ul.fully-list li img {
  height: auto;
  width: auto;
}

li.first-list {
  position: relative;
  left: -27px;
}

li.last-list {
  position: relative;
  right: -27px;
}

.about-us .vison-logo .laama-fully ul.fully-list li h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #02085E;
  padding-top: 25px;
}

.laama-fully-text {
  display: inline-block;
  width: 80%;
  padding-bottom: 60px;
}

.vison-botton-content {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-top: 60px;
}

.vison-botton-content p {
  float: none !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 24px !important;
  text-align: center !important;
  width: 100% !important;
}

.vison-logo .vison-list {
  padding: 0px;
  padding-bottom: 100px;
  border-bottom: 1px solid #CDD2CC;
}

.vison-logo .vison-list h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  color: #02085E;
  padding-bottom: 16px;
}

.vison-logo .vison-list p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #02085E;
  width: 700px;
  margin: 0 auto;
}



/*--------Earth-Black----------*/
.earth-black {
  text-align: center;
  position: relative;
  padding-top: 177px;
  padding-bottom: 144px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.earth-black h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
  color: #FFFFFF;
  width: 876px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.earth-black p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}




/*--------Our-Team----------*/
.our-team {
  padding-top: 182px;
  padding-bottom: 100px;
  padding-left: 70px;
  padding-right: 70px;
}

.our-team .our-team-text h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  color: #FFFFFF;
  padding-bottom: 50px;
}

.our-team .our-team-text span {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  width: 471px;
  display: inline-block;
  color: #FFFFFF;
  padding-bottom: 17px;
}

.our-team .our-team-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  width: 408px;
}

.our-team-text {
  padding-left: 47px;
}

.our-team-list ul li {
  width: 361px;
  padding: 20px 20px 28px 20px;
  border: 1px solid #414686;
  border-radius: 10px;
  background: #02085e;
  transition: 0.3s;
}

.our-team-list ul li a img {
  padding-bottom: 20px;
  height: auto;
  width: 230px;
}

.our-team-list ul li a h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 19px;
  width: 162px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 2px;
}

.our-team-list ul li a p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  color: #fff;
}

.our-team-list ul li:hover {
  background: #fff;
  transition: 0.3s;
}

.our-team-list ul li:hover h6 {
  color: #02085e;
}

.our-team-list ul li:hover p {
  color: #02085e;
}



/*--------Map-Listing----------*/
.map-listing {
  text-align: center;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding-top: 173px;
  padding-bottom: 262px;
}

.map-listing h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  color: #FFFFFF;
  width: 1082px;
  margin: 0 auto;
  padding-bottom: 43px;
}

ul.map-list li {
  border-radius: 24px;
  width: 300px;
  height: 251px;
  margin: 0px 12px !important;
  padding: 34px;
  text-align: left;
}

ul.map-list li h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  padding-bottom: 8px;
}

ul.map-list li p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  padding-bottom: 18px;
}

ul.map-list li a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  text-decoration: none;
}

ul.map-list li a img {
  height: auto;
  width: 18px;
  vertical-align: middle;
  margin-right: 10px;
}

ul.map-list li a:hover {
  text-decoration: none;
}

.map-layout img {
  height: auto;
  width: 1058px;
  margin: 0 auto;
}






.contact-form .pad-l {
  padding-left: 0px !important;
}

.contact-form .pad-r {
  padding-right: 0px !important;
}



.contact-body {
  padding-top: 173px;
  padding-bottom: 143px;
  padding-left: 100px;
  padding-right: 100px;
}


.contact-body h3 {
  line-height: 78px;
  margin-bottom: 158px;
}

.contact-text-box small {
  font-size: var(--para2);
  font-family: var(--para-font);
  padding: 0;
  margin: 0;
  line-height: 24px;
  color: var(--theme-color-white);
  font-weight: normal;
  margin-bottom: 32px;
  display: inline-block;
  width: 100%;
  text-transform: inherit;
}

.contact-text-box ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.contact-text-box ul li {
  list-style: none;
  margin-bottom: 26px;
  padding-left: 50px;
  position: relative;
  display: block;
}

.contact-text-box ul li a {
  font-size: var(--heading6);
  font-family: var(--para-font);
  color: var(--theme-color-white);
  font-weight: 600;
  text-decoration: none;
}

.contact-text-box ul li a img {
  height: auto;
  width: 24px;
  position: absolute;
  left: 0;
  top: 5px;
}

.contact-form {
  padding-top: 2px;
  border-radius: 24px !important;
  padding-left: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
  border: double 2px transparent;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, #5c5f99, #02085e);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.contact-form #form {
  padding-top: 47px;
  border-radius: 20px !important;
  padding-left: 71px;
  padding-right: 57px;
  padding-bottom: 67px;
  background: #02085e !important;
}

.contact-form #form .form-control {
  background: transparent;
  border: none;
  margin-bottom: 35px;
  padding: 0px;
  position: relative;
}

.contact-form #form .form-control label {
  display: block !important;
  width: 100% !important;
  color: var(--theme-color-white);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 12px;
}

.contact-form #form .form-control input {
  width: 100%;
  background: #F0F0F0;
  border: 1px solid #000000;
  border-radius: 4px;
  height: 46px;
  padding: 9px 16px;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.15px;
  font-family: var(--para-font);
  font-weight: 400;
}

.contact-form #form small {
  font-size: var(--para2);
  font-family: var(--para-font);
  padding: 0;
  margin: 0;
  line-height: 24px;
  color: var(--theme-color-white);
  font-weight: normal;
  margin-bottom: 41px;
  display: inline-block;
  width: 100%;
  text-transform: inherit;
}

.half-width {
  width: 50%;
  display: inline-block;
  padding: 0px 12px !important;
  margin: 0px -2px;
}

.contact-form #form .form-control .form-field__textarea {
  width: 100%;
  height: 89px;
  border: 1px solid #C4C4C4;
  border-radius: 4px;
  padding: 9px 16px;
  resize: none;
}

button.submit-button {
  background: #C7E8ED;
  border-radius: 35px;
  padding: 15px 55px;
  color: #02085E;
  font-family: var(--para-font);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 0;
}

button.submit-button:hover {
  background: var(--theme-color-white);
  transition: all 0.3s ease-in-out;
}

.phone-number input {
  padding-left: 60px !important;
  position: relative;
}

.dial-code {
  color: var(--black);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  position: absolute;
  bottom: 0;
  z-index: 999;
  left: 26px;
  top: 42px;
  font-family: var(--para-font);
}

.dial-code::after {
  position: absolute;
  top: 0;
  bottom: 15px;
  left: auto;
  right: -11px;
  margin: auto;
  content: "";
  height: 23px;
  width: 2px;
  background: #000;
}


.tt-select {
  position: relative;
  height: auto;
  padding: 0px;
  margin-bottom: 0px;
  text-align: left;
}

.tt-select select {
  display: none;
}

.select-selected {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.8) !important;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

.select-selected:before {
  position: absolute;
  content: "";
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: transparent transparent #000000 transparent;
  transform: rotate(180deg);
}

.select-selected.select-arrow-active:before {
  border: none;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000000 transparent;
  top: 10px;
}

.select-items div,
.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid #333333;
  cursor: pointer;
  border-radius: 4px;
  height: 46px;
}

.select-items {
  position: absolute;
  background-color: #02085e;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}


.row.contact-body h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.contact-text-box {
  padding-top: 50px;
  padding-left: 90px;
}

.b_right {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.home_page .contact-form {
  background-image: none;
}

.home_page .contact-form #form {
  background: transparent !important;
}

.home_page .contact-body {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 24px;
  margin-bottom: 170px;
  position: relative;
}

.home_page .contact-body .col-sm-6 {
  position: relative;
  z-index: 1;
}

.home_page .contact-body {
  background-image: url(../images/bg.html);
  border: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.home_page .contact-body .contact-text-box ul li a {
  font-size: 24px;
}

.home_page .contact-form #form {
  padding-right: 90px;
}



/*.contact #stuck_container{background: transparent;border-bottom: 1px solid rgb(255,255,255,0.2);}*/
.contact .contact-text-box h2 {
  margin-bottom: 158px;
}

.container-fluid.pad_l_r {
  padding: 0px 140px;
}

.contact .contact-body {
  padding-top: 50px;
  padding-bottom: 143px;
  padding-left: 0;
  padding-right: 0;
}


.dd-invst .banner-content {
  top: 274px;
}

._white {
  filter: brightness(0) invert(1);
  width: 120px;
  padding-top: 12px;
  display: inline-block;
  margin: 0px auto;
}


section.contact_inner_banner {
  text-align: center;
  padding: 200px 0px 100px;
}

section.contact_inner_banner h1 {
  font-size: var(--heading1);
  color: var(--theme-color-white);
}



/*ul._inn_box li:last-child .b2b-links {color: #fff;}*/
/*=============================================================================*/
/*==================================About-Us-Page-css======================*/
/*=============================================================================*/

/*--------Banner----------*/
.about-us {
  position: relative;
}

.about-us .banner-inner-content {
  text-align: center;
  padding-top: 153px;
  padding-left: 73px;
  padding-right: 73px;
  padding-bottom: 82px;
}

.about-us .banner-inner-content h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 78px;
  color: #FFFFFF;
  width: 1095px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.about-us .banner-inner-content img {
  height: auto;
  width: 100%;
}


/*--------About-Us----------*/
.about-us {
  position: relative;
}

.about-us nav._sticky_nav ul li a {
  display: inline-block !important;
  color: #FFF !important;
  text-align: left !important;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  margin-top: 14px;
  margin-bottom: 15px;
  opacity: 0.25 !important;
  position: relative;
  padding-right: 30px;
  padding-left: 37px;
}

.about-us ._boxes::after {
  display: none;
}

.about-us section.side_sticky {
  background: #02085e;
}

.about-tab-inner {
  padding-top: 163px;
  background: #fff;
  padding-bottom: 161px;
  padding-left: 61px;
  padding-right: 73px;
  display: flex;
  justify-content: space-between;
}

.about-tab-inner img {
  display: inline-block;
  height: auto;
  width: 160px;
  vertical-align: top;
}

.about-tab-inner span {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 39px;
  color: #02085E;
  width: 522px;
  padding-left: 102px;
}

.about-us nav._sticky_nav ul li a.current {
  opacity: 1 !important;
}

.about-us nav._sticky_nav ul li a.current::before {
  background: #fff;
  height: 240px;
  top: -154px;
}

.about-us nav._sticky_nav {
  border-left: 2px solid #414686;
  height: 580px;
  padding-top: 140px;
}

/*--------Ground-Breaking----------*/
.ground-breaking {
  padding: 168px 100px;
  padding-top: 198px !important;
  position: relative;
}

.grount-content h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  padding-bottom: 30px;
  width: 813px;
}

.grount-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  width: 699px;
}

/*.ground-logo img {height: auto;width: 150px;padding-top: 50px;}*/



/*--------Time-Line----------*/
.time-line-sec {
  padding-left: 149px;
  padding-right: 149px;
  padding-top: 144px;
  height: 800px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow-y: scroll;
  overflow-x: hidden;
}

.time-line-sec h2 {
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 78px;
  width: 1142px;
  margin: 0 auto;
  padding-bottom: 60px;
}

ul.time-line-body li .timeline-inner {
  position: relative;
  width: 420px;
  height: 459px;
  border: 1px solid #CDD2CC;
  border-radius: 30px;
  background: #FFFFFF;
  margin: 0 auto;
}

ul.time-line-body li {
  display: block;
}

ul.time-line-body li .timeline-inner .timeline-inner-box {
  padding-top: 39px;
  padding-bottom: 32px;
  padding-left: 44px;
  padding-right: 44px;
  border-radius: 30px;
  background: #f2f3f7;
  margin-top: -1px;
}

ul.time-line-body li .timeline-inner .timeline-inner-box h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 51px;
  color: #02085E;
}

ul.time-line-body li .timeline-list {
  padding: 23px 39px;
}

ul.time-line-body li .timeline-list p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #02085E;
}

ul.time-line-body li:nth-child(odd) {
  display: block;
  text-align: left;
  display: block;
  position: relative;
  right: 25%;
}

ul.time-line-body li:nth-child(even) {
  display: block;
  text-align: left;
  display: block;
  position: relative;
  left: 25%;
}

ul.time-line-body {
  position: relative;
  padding-bottom: 140px;
}

ul.time-line-body::after {
  content: '';
  position: absolute;
  width: 1px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  height: 1150px;
}

ul.time-line-body::before {
  content: '';
  position: absolute;
  background-color: white;
  top: 0;
  bottom: auto;
  left: -4px;
  width: 37px;
  height: 37px;
  margin: auto;
  right: 0;
  border-radius: 50%;
}

ul.time-line-body li .timeline-inner::after {
  content: '';
  position: absolute;
  width: 183px;
  height: 2px;
  top: 0;
  right: -183px;
  background: #FFF;
  z-index: 1;
  left: auto;
  bottom: 0;
  margin: auto;
}

ul.time-line-body li:nth-child(even) .timeline-inner::after {
  content: '';
  position: absolute;
  width: 183px;
  height: 2px;
  top: 0;
  left: -183px;
  background: #FFF;
  z-index: 1;
  right: auto;
  bottom: 0;
  margin: auto;
}

.time-line-sec::-webkit-scrollbar {
  display: none;
}

.time-line-sec {
  scrollbar-width: none;
  -ms-overflow-style: none;
}


/*--------Mobile-Play----------*/
.mobile-play {
  padding: 110px 0px;
  position: relative;
}

.mobile-play-inner {
  border: 21px solid #CDD2CC;
  border-radius: 80px;
  overflow: hidden;
  width: 1110px;
  height: 655px;
  text-align: center;
  position: relative;
  margin: 0px auto;
}

.mobile-play-inner #box_video {
  width: 102%;
  margin-left: -8px;
}

.mobile-play::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 37px;
  left: 0;
  right: 0;
  margin: auto;
  width: 965px;
  height: 34px;
  background: radial-gradient(50% 50% at 50% 50%, #000 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: normal;
  opacity: 0.4;
  border-radius: 80px;
  transform: rotate(0deg);
}

.about-us .map-listing h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 56px;
  color: #FFFFFF;
  width: 1238px;
  margin: 0 auto;
  padding-bottom: 91px;
}






/*--------After-Logo-Text----------*/
.after-logo-text {
  padding-top: 130px;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 44px;
}

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

.after-logo-text .logo-center img {
  height: auto;
  width: 342px;
  margin-top: 40px;
}

.logo-text span {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 38px;
  color: #FFFFFF;
  width: 559px;
  display: inline-block;
}

.about-us ul.logo-list {
  border: none;
}

.about-us ul.logo-list li.center-list p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 39px;
  width: 577px;
}


/*--------Bottom-Town----------*/
.bottom-town {
  height: 390px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}


/*--------Vison-Logo----------*/
.vison-logo {
  background: #fff;
  text-align: center;
  padding-top: 207px;
  padding-bottom: 66px;
  padding-left: 66px;
  padding-right: 66px;
}

.vison-logo .vison-center-logo {
  padding-bottom: 87px;
}

.vison-logo .vison-center-logo img.vison {
  position: relative;
  height: auto;
  width: 355px;
}

.about-us .vison-logo ul.vison-list {
  padding: 0px;
  padding-bottom: 111px;
  border-bottom: 1px solid #CDD2CC;
}

.about-us .vison-logo ul.vison-list li {
  width: 300px;
  margin: 0px 25px;
}

.about-us .vison-logo ul.vison-list li h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #02085E;
  padding-bottom: 11px;
}

.about-us .vison-logo ul.vison-list li p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #02085E;
  width: 300px;
}

.about-us .vison-logo .laama-fully {
  padding-top: 150px;
}

.about-us .vison-logo .vison-list {
  border-bottom: none;
}

.about-us .vison-logo .laama-fully h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #02085E;
  padding-bottom: 0px;
  width: 292px;
  text-align: left;
  float: left;
}

.about-us .vison-logo .laama-fully p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
  color: #02085E;
  width: 617px;
  padding-bottom: 0px;
  float: right;
}

ul.fully-list {
  text-align: center !important;
  display: inline-block;
}

.about-us .vison-logo .laama-fully ul.fully-list li {
  width: 340px;
  vertical-align: middle;
  margin: 0px 13px !important;
  height: 290px;
  display: table-cell;
  border: 1px solid #CDD2CC;
  border-radius: 30px;
}

.about-us .vison-logo .laama-fully ul.fully-list li img {
  height: auto;
  width: auto;
}

li.first-list {
  position: relative;
  left: -27px;
}

li.last-list {
  position: relative;
  right: -27px;
}

.about-us .vison-logo .laama-fully ul.fully-list li h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #02085E;
  padding-top: 25px;
}

.laama-fully-text {
  display: inline-block;
  width: 80%;
  padding-bottom: 60px;
}

.vison-botton-content {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-top: 60px;
}

.vison-botton-content p {
  float: none !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 24px !important;
  text-align: center !important;
  width: 100% !important;
}

.vison-logo .vison-list {
  padding: 0px;
  padding-bottom: 100px;
  border-bottom: 1px solid #CDD2CC;
}

.vison-logo .vison-list h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  color: #02085E;
  padding-bottom: 16px;
}

.vison-logo .vison-list p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #02085E;
  width: 700px;
  margin: 0 auto;
}



/*--------Earth-Black----------*/
.earth-black {
  text-align: center;
  position: relative;
  padding-top: 177px;
  padding-bottom: 144px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.earth-black h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
  color: #FFFFFF;
  width: 876px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.earth-black p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}




/*--------Our-Team----------*/
.our-team {
  padding-top: 182px;
  padding-bottom: 100px;
  padding-left: 70px;
  padding-right: 70px;
}

.our-team .our-team-text h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  color: #FFFFFF;
  padding-bottom: 50px;
}

.our-team .our-team-text span {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  width: 471px;
  display: inline-block;
  color: #FFFFFF;
  padding-bottom: 17px;
}

.our-team .our-team-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  width: 408px;
}

.our-team-text {
  padding-left: 47px;
}

.our-team-list ul li {
  width: 361px;
  padding: 20px 20px 28px 20px;
  border: 1px solid #414686;
  border-radius: 10px;
  background: #02085e;
  transition: 0.3s;
}

.our-team-list ul li a img {
  padding-bottom: 20px;
  height: auto;
  width: 230px;
}

.our-team-list ul li a h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 19px;
  width: 162px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 2px;
}

.our-team-list ul li a p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  color: #fff;
}

.our-team-list ul li:hover {
  background: #fff;
  transition: 0.3s;
}

.our-team-list ul li:hover h6 {
  color: #02085e;
}

.our-team-list ul li:hover p {
  color: #02085e;
}



/*--------Map-Listing----------*/
.map-listing {
  text-align: center;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding-top: 173px;
  padding-bottom: 262px;
}

.map-listing h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  color: #FFFFFF;
  width: 1082px;
  margin: 0 auto;
  padding-bottom: 43px;
}

ul.map-list li {
  border-radius: 24px;
  width: 300px;
  height: 251px;
  margin: 0px 12px !important;
  padding: 34px;
  text-align: left;
}

ul.map-list li h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  padding-bottom: 8px;
}

ul.map-list li p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  padding-bottom: 18px;
  min-height: 130px;
}

ul.map-list li a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  text-decoration: none;
}

ul.map-list li a img {
  height: auto;
  width: 18px;
  vertical-align: middle;
  margin-right: 10px;
}

ul.map-list li a:hover {
  text-decoration: none;
}

.map-layout img {
  height: auto;
  width: 1058px;
  margin: 0 auto;
}


section._timeline_section {
  padding: 0px 150px 296px;
  position: relative;
}

section._timeline_section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 800px;
  background-image: url(../images/time-line-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

section._timeline_section h2 {
  text-align: center;
  margin: 180px 0px;
  position: relative;
  z-index: 1;
}

ul._timeline_body {
  position: relative;
  padding: 0;
  width: 80%;
  margin: 0px auto;
  margin-top: 100px;
  z-index: 1;
}

ul._timeline_body:after {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 90.5%;
  background: #fff;
}

ul._timeline_body:before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  width: 37px;
  height: 37px;
  background: #FFFFFF;
  border-radius: 50px;
}

ul._timeline_body li {
  display: block;
  position: sticky;
  top: 80px;
}

ul._timeline_body li:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 217px;
  margin: auto;
  width: 216px;
  height: 1px;
  background: #fff;
}

ul._timeline_body li:nth-child(even) {
  text-align: right;
}

ul._timeline_body li:nth-child(even):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 214px;
  right: 0;
  margin: auto;
  width: 216px;
  height: 1px;
  background: #fff;
}


._timeline-inner {
  width: 420px;
  height: 459px;
  /* left: 150px; */
  /* top: 2912px; */
  background: #FFFFFF;
  border: 1px solid #CDD2CC;
  border-radius: 30px;
  display: inline-block;
  position: relative;
}

._timeline-header {
  height: 122px;
  /* left: 150px; */
  /* top: 2912px; */
  background: rgb(2 8 94 / 5%);
  /* opacity: 0.05; */
  border: 1px solid #CDD2CC;
  border-radius: 30px;
  padding-top: 33px;
  text-align: center;
  margin-bottom: 23px;
}

._timeline-header h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 51px;
  color: #02085E;
}

._timeline-content {
  padding: 0px 39px;
}

._timeline-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  /* Lamaa 1 */
  color: #02085E;
}

ul._timeline_body li:nth-child(even) ._timeline-inner ._timeline-content {
  text-align: left;
}


@media (max-width:1600px) {
  .partner-us ul.vison-text-box li {
    width: 45%;
  }

  .banner-text .text {
    font-size: 100px;
    line-height: 130px;
  }

  .banner-content small {
    font-size: 16px;
    line-height: 26px;
    width: 364px;
    padding-left: 20px;
    padding-top: 30px;
  }

  .banner-rebel span {
    font-size: 60px;
    line-height: 95px;
    padding-bottom: 18px;
    padding-left: 20px;
  }

  .banner-rebel ul li p {
    font-size: 16px;
    line-height: 30px;
    margin-right: 2px;
  }

  .two-catagory {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .two-catagory ul.split-sec li a {
    width: 85%;
    padding: 20px 20px;
    font-size: 42px;
    line-height: 62px;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .two-catagory ul.split-sec li a img {
    width: 125px;
    right: 15px;
  }

  .box-img-round {
    text-align: left;
    padding-left: 80px;
    margin-top: -34px;
    padding-bottom: 45px;
  }

  .box-img-round img {
    height: auto;
    width: 150px;
  }

  .left-button a {
    font-size: 20px;
    line-height: 24px;
  }

  .navbar {
    padding: 30px 35px 30px;
  }

  a.toggle-menu::after {
    height: 134px;
  }

  ul.header_social_info {
    width: 89%;
  }

  .banner .banner-curve {
    right: 14vw;
    width: 500px;
  }
}

@media (max-width:1440px) {}

@media (max-width:1366px) {
  .partnerpage-wraper .responsiveGallery-wrapper {
    width: 70%;
    margin-right: 100px;
  }

  .partnerpage-wraper .gallery-text h5 {
    font-size: 22px;
  }

  .partnerpage-wraper .partner-banner .gallery-text h5 {
    margin-top: 0px;
    margin-bottom: 5px;
  }

  .partnerpage-wraper .kQjxIx {
    left: 68%;
  }

  .partnerpage-wraper .modal-content {
    width: 90%;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li .vison-inner-box h4 {
    font-size: 22px !important;
    line-height: 29px !important;
  }

  .partnerpage-wraper .event-left.business-advisor span {
    font-size: 16px;
    width: 75%;
    margin-bottom: 30px;
  }

  .partnerpage-wraper .partner-gallery {
    margin-top: 0px !important;
    margin-bottom: 70px !important;
  }

  .partnerpage-wraper .partner-gallery .gallery-carousel .big-news-hover-data {
    width: 89%;
    top: 20px;
  }

  .partnerpage-wraper .partner-gallery .gallery-carousel .big-news-hover-data .big-news-data-inner p {
    line-height: 17px;
  }

  .partnerpage-wraper .partner-gallery .gallery-carousel .big-news-hover-data h2 {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 600;
  }

  .partnerpage-wraper .gallery-text {
    padding-top: 22px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
  }

  .partnerpage-wraper .partner-gallery .read-more a {
    font-size: 14px;
    margin-top: 5px;
  }

  .partnerpage-wraper .partner-gallery .gallery-carousel .big-news-hover-data .read-more a {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 20px;
    margin-bottom: 3px;
  }

  .partnerpage-wraper .partner-news .benefit-for-you h4 {
    margin-bottom: 20px;
  }

  .partnerpage-wraper .partner-news .benefit-for-you p {
    font-size: 16px;
  }

  .partnerpage-wraper .benefit-point {
    margin-top: 45px;
  }

  .partnerpage-wraper .modal-body ul li .benefit-right.m-0 {
    margin: 0px 15px !important;
  }

  .partnerpage-wraper .modal-body ul li .form-text {
    padding-left: 65px;
  }

  .partnerpage-wraper .modal-body ul li.half-wid .benefit-right.m-0 {
    padding: 25px;
  }

  .partnerpage-wraper .modal-body ul li .benefit-right-form {
    margin-top: 10px;
  }

  .partnerpage-wraper .partner-news .event-left h2 {
    font-size: 46px;
  }

  .partnerpage-wraper .modal-body ul li .form-field-duel {
    margin-bottom: 15px;
  }

  .partnerpage-wraper .modal-body ul li .form-field {
    margin-bottom: 15px;
  }

  .partnerpage-wraper .modal-body ul {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .partnerpage-wraper ul.core-feture li span {
    font-size: 18px;
  }

  .partnerpage-wraper ul.core-feture li p {
    font-size: 12px;
    line-height: 20px;
    width: 191px;
    margin-left: 10px;
  }

  .partnerpage-wraper ul.core-feture li img.core-icon {
    width: 50px;
  }

  .partnerpage-wraper .event-left.business-advisor h4 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .partnerpage-wraper #lending-service .event-left.business-advisor h2 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 15px;
  }

  .partnerpage-wraper .partner-gallery .big-news-hover-data p {
    font-size: 13px;
    margin: 5px 0;
    margin-top: 0px;
  }

  .partnerpage-wraper .read-more a {
    font-size: 14px;
    margin-top: 3px;
  }

  .partnerpage-wraper .partner-gallery .big-news-hover-data {
    left: 15px;
    bottom: 5px;
    width: 90%;
  }

  .partnerpage-wraper .partner-gallery .big-news-hover-data h2 {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .partnerpage-wraper .benefit-point ul li {
    padding: 0 6px !important;
  }

  .partnerpage-wraper .benefit-details h3 {
    font-size: 14px !important;
  }

  .partnerpage-wraper button.m_menu_close {
    right: 9% !important;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li {
    width: 45%;
    min-height: 375px;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li h4 {
    font-size: 23px;
    line-height: 30px;
  }

  .partnerpage-wraper ul.vison-text-box li .vison-inner-box {
    padding-top: 25px;
    padding-left: 25px;
    padding-bottom: 25px;
    padding-right: 25px;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li .vison-list p {
    margin-top: 20px;
    font-size: 16px;
    padding-left: 15px;
  }

  .partnerpage-wraper .business-advisor h2 {
    font-size: 40px;
  }

  .partnerpage-wraper .event-left.business-advisor p {
    width: 375px;
  }

  .partnerpage-wraper .benefit-for-you p {
    font-size: 16px;
  }

  .partnerpage-wraper #news {
    padding-bottom: 150px;
  }

  .partnerpage-wraper .no-fund-carousel-section {
    margin-top: 100px;
  }

  .partnerpage-wraper .event-left.business-advisor {
    margin-bottom: 200px;
  }

  .partnerpage-wraper .lending-icon-box ul li span {
    font-size: 12px;
  }

  .partnerpage-wraper .lending-icon-box ul li img.icon-step {
    width: 70px;
  }

  .partnerpage-wraper #our-solution {
    padding: 100px 0 !important;
  }

  .partnerpage-wraper #our-solution h2 {
    font-size: 32px !important;
  }

  .partnerpage-wraper #gallery {
    margin: 100px 0 100px;
  }


  .banner-text .text {
    font-size: 90px;
    line-height: 110px;
  }

  .banner-content small {
    font-size: 16px;
    line-height: 26px;
    width: 364px;
    padding-left: 20px;
    padding-top: 30px;
  }

  .banner-rebel span {
    font-size: 60px;
    line-height: 95px;
    padding-bottom: 18px;
    padding-left: 20px;
  }

  .banner-rebel ul li p {
    font-size: 16px;
    line-height: 30px;
    margin-right: 2px;
  }

  .two-catagory {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .two-catagory ul.split-sec li a {
    width: 85%;
    padding: 20px 20px;
    font-size: 42px;
    line-height: 62px;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .two-catagory ul.split-sec li a img {
    width: 125px;
    right: 15px;
  }

  .box-img-round {
    text-align: left;
    padding-left: 80px;
    margin-top: -34px;
    padding-bottom: 45px;
  }

  .box-img-round img {
    height: auto;
    width: 150px;
  }

  .left-button a {
    font-size: 20px;
    line-height: 24px;
  }

  .navbar {
    padding: 30px 35px 30px;
  }

  a.toggle-menu::after {
    height: 134px;
  }

  .contact .benefit-right {
    padding: 40px 20px;
  }

  .contact .benefit-right h4 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .contact .benefit-right p {
    font-size: 16px;
  }

  .contact .benefit-right .benefit-right-form {
    margin-top: 30px;
  }

  .benefit-right select {
    font-size: 14px !important;
  }

  .submit-btn button {
    font-size: 18px;
    padding: 6px 20px;
  }

  .contact .benefit-right select {
    font-size: 14px;
  }

  .banner-curve {
    width: 550px !important;
    top: 10% !important;
    right: 13vw !important;
  }


}


@media (max-width:1199px) {

  /*============Partner-page-css===============*/
  .partnerpage-wraper .ground-breaking {
    padding: 80px 30px;
    padding-top: 80px;
  }

  .partnerpage-wraper #our-solution img.position-news-right {
    width: 400px;
    right: 0px;
  }

  .partnerpage-wraper #partner-banner .banner-text-content.dynamic-discount-banner h1 span {
    font-size: 50px;
    line-height: 60px;
  }

  .partnerpage-wraper .responsiveGallery-wrapper {
    width: 77%;
    margin-right: 30px;
  }

  .partnerpage-wraper div#responsiveGallery-container .slider_panel {
    top: 40%;
  }

  .partnerpage-wraper .cYbGbt {
    bottom: -175px;
  }

  .partnerpage-wraper .kQjxIx {
    left: 65%;
    bottom: -175px;
  }

  .partnerpage-wraper .about-learn-more-btn a {
    font-size: 14px;
  }

  .partnerpage-wraper .gallery-text h5 {
    font-size: 20px;
    line-height: 1.1;
  }

  .partnerpage-wraper .gallery-text p {
    font-size: 14px;
  }

  .partnerpage-wraper .dynamic-discount-banner p {
    font-size: 16px;
  }

  .partnerpage-wraper .resource-top-menu ul li a {
    font-size: 16px;
  }

  .partnerpage-wraper .news-div-body {
    margin-top: 80px;
  }

  .partnerpage-wraper .partner-news .event-left h2 {
    font-size: 36px;
    width: 357px;
  }

  .partnerpage-wraper .event-left.business-advisor p {
    font-size: 14px;
  }

  .partnerpage-wraper .event-left.business-advisor span {
    font-size: 14px;
  }

  a.cmn-buttn.outline_button {
    font-size: 16px;
  }

  .partnerpage-wraper #news {
    padding-bottom: 100px;
  }

  .partnerpage-wraper .benefit-for-you {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .partnerpage-wraper .partner-news .benefit-for-you h4 {
    margin-bottom: 15px;
    font-size: 30px;
  }

  .partnerpage-wraper .partner-news .benefit-for-you p {
    font-size: 14px;
    width: 380px;
  }

  .partnerpage-wraper .benefit-point {
    margin-top: 50px;
  }

  .partnerpage-wraper .partner-us {
    padding-top: 89px;
    padding-bottom: 80px;
  }

  .partnerpage-wraper .partner-box-text h3 {
    font-size: 28px;
    margin: 20px 0;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li .vison-inner-box {
    padding-top: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    min-height: 100px !important;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li .vison-inner-box h4 {
    font-size: 20px !important;
    line-height: 29px !important;
  }

  .partnerpage-wraper .partner-box-text p {
    font-size: 14px;
  }

  .partnerpage-wraper .no-fund-carousel-section {
    position: relative;
    margin-top: 80px;
  }

  .partnerpage-wraper #partner h2 {
    font-size: 28px;
  }

  .partnerpage-wraper #cpchris {
    padding-top: 100px;
  }

  .partnerpage-wraper .no-fund-carousel-section-right {
    padding: 50px 0 30px 30px;
  }

  .partnerpage-wraper .no-fund-carousel-section-right p {
    font-size: 16px;
  }

  .partnerpage-wraper .no-fund-carousel-section-right h4 {
    font-size: 28px;
    line-height: 42px;
  }

  .partnerpage-wraper .ground-breaking .event-left.business-advisor h2 {
    font-size: 36px;
    line-height: 48px;
    width: 390px;
  }

  .partnerpage-wraper .event-left.business-advisor h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .partnerpage-wraper .event-left.business-advisor {
    margin-bottom: 100px;
  }

  .partnerpage-wraper .ground-breaking .grount-content.grount-first h5 {
    font-size: 28px;
    line-height: 44px;
    padding-bottom: 3px;
  }

  .partnerpage-wraper .grount-content p {
    font-size: 14px;
  }

  .partnerpage-wraper #lending-service .event-left.business-advisor h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .partnerpage-wraper .event-left.business-advisor h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .partnerpage-wraper .lending-icon-box {
    padding: 15px;
  }

  .partnerpage-wraper ul.core-feture li img.core-icon {
    width: 40px;
  }

  .partnerpage-wraper ul.core-feture li p {
    font-size: 11px;
    width: 163px;
    margin-left: 5px;
  }

  .partnerpage-wraper #our-solution {
    padding: 80px 0 !important;
  }

  .partnerpage-wraper #our-solution .our-solution-left .owl-dots {
    display: none;
  }

  .partnerpage-wraper #our-solution .our-solution-left .owl-nav {
    display: none;
  }

  .partnerpage-wraper .partner-gallery {
    margin-top: 0px !important;
    margin-bottom: 30px !important;
  }

  .partnerpage-wraper #blog {
    position: relative;
    padding-bottom: 90px;
  }



}



@media (max-width:991px) {
    .menu-mobile {
  display: block !important;
  position: absolute !important;
  top: 15px;
  right: 35px !important;
}
    .list {left: -90% !important;}

  /*============Partner-page-css===============*/
  .partnerpage-wraper .partner-news .col-md-5 {
    width: 100%;
    flex: 100%;
  }

  .partnerpage-wraper .partner-news .event-left h2 {
    font-size: 32px;
    width: 100%;
  }

  .partnerpage-wraper .partner-news .col-md-7 {
    width: 100%;
    flex: 100%;
  }

  .partnerpage-wraper .event-left.business-advisor p {
    width: 100%;
    margin-bottom: 15px;
  }

  .partnerpage-wraper .event-left.business-advisor .schedule-div {
    margin-bottom: 25px;
  }

  .partnerpage-wraper .partner-news .benefit-for-you h4 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .partnerpage-wraper .partner-news .benefit-for-you p {
    font-size: 14px;
    width: 100%;
  }

  .partnerpage-wraper .benefit-point {
    margin-top: 30px;
  }

  .partnerpage-wraper #news {
    padding-bottom: 70px;
  }

  .partnerpage-wraper .partner-us {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .partnerpage-wraper .partner-us .col-sm-4,
  .col-sm-8 {
    width: 100%;
    flex: 100%;
  }

  .partnerpage-wraper .partner-box-text h3 {
    font-size: 28px;
    margin: 10px 0;
    margin-top: 0px;
  }

  .partnerpage-wraper .partner-box-text p {
    font-size: 14px;
    width: 100%;
  }

  a.cmn-buttn.outline_button {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li {
    width: 45%;
    min-height: 330px;
  }

  .partnerpage-wraper .no-fund-carousel-section {
    margin-top: 70px;
  }

  .partnerpage-wraper .no-fund-carousel-section-right {
    padding: 20px 0 20px 20px;
  }

  .partnerpage-wraper .no-fund-carousel-section-right h4 {
    font-size: 24px;
    line-height: 33px;
  }

  .partnerpage-wraper #partner .our-solution-right-btn a.cmn-buttn.outline_button.hvr-sweep-to-right {
    margin-top: 30px;
  }

  .partnerpage-wraper .ground-breaking .event-left.business-advisor h2 {
    font-size: 32px;
    line-height: 38px;
    width: 324px;
  }

  .event-left.business-advisor h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .partnerpage-wraper .ground-breaking .grount-first {
    padding-left: 20px;
    padding-right: 20px;
  }

  .partnerpage-wraper .ground-breaking .grount-content.grount-first h5 {
    font-size: 24px;
    line-height: 40px;
    padding-bottom: 3px;
  }

  .partnerpage-wraper #lending-service .col-sm-5,
  .col-sm-7 {
    width: 100%;
    flex: 100%;
    max-width: 100%;
  }

  .partnerpage-wraper #lending-service {
    padding-top: 70px;
  }

  .partnerpage-wraper #lending-service .event-left.business-advisor h2 br {
    display: none;
  }

  .partnerpage-wraper .lending-icon-box {
    padding: 15px;
    min-height: 360px;
    text-align: center;
  }

  .partnerpage-wraper ul.core-feture li p {
    font-size: 11px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
  }

  .partnerpage-wraper .event-left.business-advisor {
    margin-bottom: 50px;
  }

  .partnerpage-wraper .blog-carousel .recent-blog-data ul {
    margin: 40px 0 0 0px;
  }

  .partnerpage-wraper .partner-blog .blog-carousel .recent-blog-data ul li {
    width: 20%;
    margin: 0 15px;
  }







}


.cmn_menu_box:last-child.cmn_menu_box a.cmn-buttn.outline_button {
  border: 0;
}

/*dev 2*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



.wid-left img {
  width: 100%;
  padding-right: 170px;
}

/*dev 2*/
.inner-banner .banner-content .banner-dots img {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
}

.learn-mone {
  position: relative;
  margin-top: 60px;
  z-index: 2;
  width: 550px;
}

.learn-mone a {
  font-size: 18px;
  background: #fff;
  padding: 8px 25px;
  border-radius: 25px;
  display: inline-block;
  color: #121648 !important;
  overflow: hidden;
  font-weight: 600;
}

.tab-picture {
  text-align: right;
  padding-right: 50px;
  min-height: 200px;
  line-height: 150px;
}

.tab_content {
  width: 1000px;
  margin: 0 auto;
}

ul.tabs {
  width: 500px;
}

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

.inn-box-blur {
  background: linear-gradient(132.6deg, #CDD2CC 0.22%, rgba(205, 210, 204, 0) 99.53%);
  opacity: 1;
  backdrop-filter: blur(50px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border: 2px solid;
  border-image-source: linear-gradient(127.3deg, #121648 0.82%, rgba(18, 22, 72, 0.15) 104.72%);
  border-radius: 25px;
  background: rgba(18, 22, 72, 0.7);
}

.inn-box-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  padding-top: 41px;
  padding: 40px 30px 35px;
}

.tab-dots-images {
  position: absolute;
  left: -250px;
  bottom: -300px;
}

.shadow-icon {
  position: absolute;
  right: 35px;
  bottom: 35px;
  max-width: 200px;
}

.vison-inner-box img {
  max-width: 100%;
  text-align: right;
}

.vison-inner-box .col-3 {
  text-align: right;
}

.curve-town video {
  width: 100%;
}

.solution-text p {
  font-family: 'Poppins';
  font-size: 18px;
  color: rgba(249, 250, 251, 0.75);
  margin-bottom: 30px;
  width: 400px;
}

.left-embed-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 35%;
}

.right-embed-dots {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 35%;
}

.embed-finance .container {
  position: relative;
  z-index: 2;
}

.news-btn p {
  font-size: 40px;
  color: #fff;
}

.news-btn a {
  margin-top: 30px !important;
}

.news-btn {
  position: absolute;
  top: 50%;
  left: 150px;
}

#trusted-business {
  position: relative;
  margin-top: 50px;
}

#trusted-business h2 {
  font-size: 40px;
  color: #F9FAFB;
  font-weight: 400;
}

#trusted-business p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  line-height: 23px;
  width: 435px;
  margin-top: 20px;
}

.trusted-brand-top {
  padding: 80px 0;
}

#trusted-business .left-embed-dots {
  bottom: auto;
  top: 0;
}

.trusted-company {
  padding-bottom: 100px;
}

/*about*/
.banner-text-content label {
  font-size: 50px;
  color: #02085E;
  font-weight: 600;
}

.banner-text-content p {
  font-size: 18px;
  color: #02085E;
  font-weight: 400;
  line-height: 27px;
  width: 466px;
  margin: 30px 0 0px;
}

.about-learn-more-btn a {
  color: #fff;
  padding: 7px 25px;
  border-radius: 25px;
  background: #121648;
  font-size: 16px;
  overflow: hidden;
  border: 2px solid #121648;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-learn-more-btn a:hover {
  color: #121648;
}

.about-banner-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
}

/*.about-banner:after{content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;}*/
/* .about-second-right-data h2 {
  font-size: 40px;
  line-height: 54px;
  color: #F9FAFB;
  font-weight: 500;
  width: 800px;
} */
.about-second-right-data h2 {
  font-size: 25px;
  line-height: 54px;
  color: #F9FAFB;
  font-weight: 500;
  width: 800px;
}

.about-second-right-data {
  padding-left: 150px;
}

.about-second-first {
  padding-top: 70px;
}

.about-second-right-data-btn a {
  margin-top: 50px;
  line-height: auto;
  padding: 6px 25px;
}

.about-second-first {
  position: relative;
  height: 100%;
}

.about-second-right-data {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.grount-content p {
  width: 100%;
}

.grount-first {
  width: 600px;
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  padding-left: 150px;
}

.ground-breaking-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 35%;
  opacity: 0.7;
}

.ground-logo {
  position: relative;
  z-index: 2;
}

#our-solution {
  position: relative;
  padding: 200px 0;
}

#our-solution h2 {
  font-size: 40px;
  color: color: #FFFFFF;
  width: 600;
  margin-bottom: 40px;
}

#our-solution p {
  font-size: 18px;
  color: #F9FAFBBF;
  opacity: 0.7;
  line-height: 27px;
  margin-bottom: 20px;
}

.our-solution-right-btn a {
  margin-top: 50px;
  font-size: 18px;
}

.our-solution-left .owl-carousel .owl-item img {
  width: auto !important;
  margin: 0 auto 80px !important;
}

#trusted-by-bank {
  position: relative;
  padding: 150px 0;
  background: #fff;
}

.trusted-icon {
  position: absolute;
  top: 50px;
  right: 0;
  width: 550px;
}

.trusted-by-bank-div h2 {
  font-size: 58px;
  color: #121648;
  line-height: 70px;
  font-weight: 400;
  margin-bottom: 45px;
}

.trusted-by-bank-div p {
  color: #121648;
  line-height: 27px;
  font-size: 18px;
  width: 500px;
  opacity: 0.8;
  margin-bottom: 100px;
}

.our-investors-data p {
  color: #A2A2A2;
  font-size: 18px;
  margin: 0;
}

.our-investors-data img {
  max-width: 250px;
  vertical-align: middle;
}

.our-investors-data {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.team-left h2 {
  font-size: 40px;
  color: color: #FFFFFF;
  width: 600;
  margin-bottom: 40px;
}

.team-left p {
  font-size: 18px;
  color: #F9FAFBBF;
  opacity: 0.7;
  line-height: 27px;
  margin-bottom: 0px;
}

.team-btn a {
  margin-top: 50px !important;
  font-size: 18px;
  background: #fff !important;
  color: #02085E !important;
  border: 3px solid #fff !important;
}

.team-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.commitment-video {
  width: 1100px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.commitment-data h2 {
  font-size: 40px;
  color: #121648;
  width: 600;
  margin: 40px 0;
}

.commitment-data p {
  font-size: 18px;
  color: #121648;
  line-height: 27px;
  margin-bottom: 0px;
}

#commitment {
  position: relative;
  background: #fff;
  padding: 60px 0;
}

.commitment-data {
  width: 715px;
  margin: 0 auto;
}

#milestones {
  position: relative;
  padding: 100px 0 150px;
}

#milestones .tab-content {
  height: 100%;
  background: transparent;
  max-height: 100%;
}

.milestones-div {
  width: 1200px;
  margin: 0 auto;
}

.tab-data-div {
  position: relative;
  height: 100%;
  padding: 100px 50px 50px;
}

#milestones .nav-tabs .nav-link {
  font-size: 16px;
  padding: 6px 18px;
  color: #fff !important;
  margin: 0 5px;
}

#milestones .nav-tabs {
  padding-bottom: 20px;
}

.about-us #milestones .nav-tabs li {
  text-align: center;
}

.about-us #milestones .nav-tabs li:focus-visible,
.about-us #milestones .nav-tabs li a.nav-link:focus-visible {
  outline: none;
}

#milestones .nav-tabs .nav-link {
  border: 1px solid transparent !important;
  border-radius: 20px !important;
}

#milestones .nav-tabs .nav-link.active {
  border: 1px solid #fff !important;
  border-radius: 20px !important;
}

/* #milestones .nav-tabs .nav-link.active,
#milestones .nav-tabs .nav-link:hover {
  background: transparent;
  border: 1px solid #fff;
  
} */

#milestones h2 {
  font-size: 40px;
  color: #fff;
  width: 600;
  margin-bottom: 80px;
}

.milestone-image {
  position: absolute;
  top: 100px;
  right: 0;
  width: 400px;
}

.tab-details label {
  font-size: 18px;
  color: #fff;
  line-height: 27px;
  margin-bottom: 10px;
}

.tab-details h3 {
  font-size: 32px;
  color: #fff;
  width: 500;
  margin-bottom: 30px;
}

.tab-details p {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  opacity: 0.7;
}

.tab-details {
  padding-top: 150px;
}

#milestones .tab-details {
  padding-left: 20px;
}

.about-second-right-data-btn a.cmn-buttn.outline_button {
  margin-top: 50px;
}

.our-solution-right {
  padding-top: 23px;
}

._logo_sec {
  display: flex;
  justify-content: space-between;
  margin-bottom: 67px;
  width: 95%;
}

._logo_sec:last-child {
  margin-bottom: 0;
  text-align: left;
  width: 302px;
}

/*dynamic discount*/
.dynamic-discount-banner label {
  font-size: 34px;
  color: #02085E;
  font-weight: 500;
  margin-bottom: 5px;
}

.dynamic-discount-banner p {
  font-size: 18px;
  color: #02085E;
  font-weight: 400;
  margin: 0;
}

.dynamic-discount-banner h1 {
  margin-bottom: 35px;
}

.dynamic-discount-banner a,
.about-banner a {
  margin-top: 50px;
}

.select-style {
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 35px;
  width: 95%;
  overflow: hidden;
  /*background-color: #fff;*/

  background: url("../../../../../../www.scottgood.com/jsg/blog.nsf/images/arrowdown.html") no-repeat 90% 50%;
}

.select-style select {
  padding: 8px 6px;
  width: 100%;
  border: none;
  box-shadow: none;
  background-color: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: rgba(255, 255, 255, 0.5);
}

.select-style select:focus {
  outline: none;
}

#benefits {
  position: relative;
}

.benefits-div-ab-img-1 {
  position: absolute;
  top: 90px;
  left: -10px;
}

.benefits-div-ab-img-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  opacity: 0.7;
}

.benefit-right {
  position: relative;
  z-index: 2;
  margin: 100px 0;
  background: linear-gradient(104.95deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.065) 100%);
  backdrop-filter: blur(12.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 24px;
  border: 2px solid;
  border-image-source: linear-gradient(107.17deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.1) 100%);
  padding: 60px 40px;
}

.benefit-left h2 {
  font-size: 40px;
  color: #fff;
  width: 600;
  margin-bottom: 35px;
}

.benefit-left p {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  line-height: 27px;
  width: 450px;
}

.benefit-point {
  margin-top: 70px;
}

.benefit-point ul li {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  width: 19%;
  vertical-align: text-top;
  padding: 0 10px;
  min-height: 170px;
}

.benefit-point ul li::last-child {
  border: none;
}

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

.benefit-details h3 {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 30px;
}

.benefit-details p {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.6;
  width: auto;
  line-height: 22px;
}

.benefit-right h4 {
  font-size: 40px;
  margin: 0;
}

.benefit-right p {
  font-size: 17px;
  margin: 0;
  color: #fff;
}

.benefit-right-form {
  margin-top: 50px;
}

.form-field {
  width: 100%;
  position: relative;
  margin-bottom: 35px;
}

.form-field-duel {
  width: 47%;
  margin-right: 3%;
  float: left;
  display: inline-block;
  position: relative;
  margin-bottom: 35px;
}

.fullwidth {
  margin-right: 0px;
  width: 100%;
}

.dd-frm {
  width: 100%;
  display: block;
  background: transparent;
  border: none !important;
  outline: none !important;
  border-bottom: 1px solid #fff !important;
  padding: 10px 5px;
  font-size: 14px;
  color: #fff;
}

.form-field label,
.form-field-duel label {
  color: #fff;
  opacity: 0.3;
  font-size: 14px;
  position: absolute;
  left: 5px;
  bottom: 10px;
  transition: 0.4s;
}

.text-area textarea {
  width: 100%;
  height: 100px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  margin-top: 15px;
  padding: 10px;
  color: #fff;
}

.text-area label {
  color: #fff;
  opacity: 0.3;
  font-size: 14px;
}

.submit-btn {
  margin-top: 30px;
  text-align: right;
}

.submit-btn button {
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 35px;
  font-size: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.animation {
  width: 100%;
  display: block;
  padding: 6px 20px;
  position: relative;
}

.animation p {
  position: relative;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 1px;
}

.animation:hover p {
  color: var(--theme-color-1);
}

.animation:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -10px;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 118%;
  background: #c7e8ed;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.animation:hover:before {
  width: 118%;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;

}

/*.submit-btn button:after{content: :""; position: absolute;width:100%; height:100%; background:red;top: 0;left: 0;}*/
.submit-btn button:hover {
  background: #121648;
}

.form-field label.click-label,
.form-field-duel label.click-label {
  top: -10px;
  bottom: auto;
  font-size: 9px;
  left: 0;
}

/* <select> styles */
.benefit-right select {
  /* Reset */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  /* padding: 6px 8px;*/
  outline: 0;
  font: inherit;
  /* Personalize */
  width: 100%;
  padding: 6px 12px;
  background: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg) no-repeat right 0.8em center/1.4em;
  color: white;
  cursor: pointer;
  /* <option> colors */
  /* Remove focus outline */
  /* Remove IE arrow */
}

.benefit-right select option {
  color: inherit;
  background-color: #121648;
  border-radius: 20px;
}

.benefit-right select:focus {
  outline: none;
}

.benefit-right select::-ms-expand {
  display: none;
}

.benefit-left {
  position: relative;
  padding-top: 200px;
}

#ftce {
  position: relative;
  padding: 85px 0 100px;
  background: #fff;
}

.ftce-div {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ftce-heading h2 {
  font-size: 65px;
  color: #121648;
  line-height: 71px;
  width: 950px;
  margin: 40px auto 60px;
  font-weight: 400;
}

.ftce-body-box {
  background: linear-gradient(132.6deg, rgba(205, 210, 204, 0.3) 0.22%, rgba(205, 210, 204, 0) 99.53%);
  backdrop-filter: blur(50px);
  border-radius: 25px;
  border: 2px solid;
  border-image-source: linear-gradient(127.3deg, #121648 0.82%, rgba(18, 22, 72, 0.15) 104.72%);
  padding: 50px 0;
  overflow: hidden;
  margin: 0 15px;
}

.ftce-body-box h3 {
  color: #02085E;
  font-size: 60px;
  line-height: 90px
}

.ftce-body-box p {
  color: #02085E;
  font-size: 18px;
  line-height: 27px
}

#no-fund {
  position: relative;
  padding: 150px 0 200px;
}

.no-fund-shadow {
  position: relative;
  left: 0;
  top: 0;
  position: absolute;
  width: 35%;
  opacity: 0.6;
}

.no-fund-div {
  position: relative;
  z-index: 2;
}

.fund-right {
  padding-left: 50px;
}

.fund-left {
  padding-right: 50px;
}

.fund-right h2 {
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  width: 450px;
  font-weight: 600;
}

.fund-right p {
  color: #fff;
  font-size: 18px;
  line-height: 27px;
  width: 600px;
  font-weight: 400;
  margin: 65px 0 50px;
}

.no-fund-carousel-section-right {
  position: relative;
}

.no-fund-carousel-section-right-img {
  position: absolute;
  left: 150px;
  top: 0;
  width: 300px !important;
}

.no-fund-carousel-section-right h4 {
  font-size: 36px;
  line-height: 46px;
}

.no-fund-carousel-section-right p {
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  opacity: 0.5;
  margin-bottom: 6px;
}

.no-fund-carousel-section-right {
  padding: 150px 0 50px 50px;
}

.no-fund-carousel-section {
  position: relative;
  margin-top: 150px;
}

.no-fund-carousel-section h2 {
  font-size: 40px;
  line-height: 60px;
  margin-bottom: 60px;
}

.no-fund-carousel-section .owl-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 25px;
}

.no-fund-carousel-section .owl-dot {
  width: 16.5%;
}

.no-fund-carousel-section .owl-dot button {
  background: transparent;
  color: #fff;
  font-size: 16px;
  border: none;
  outline: none !important;
  text-align: center;
}

.no-fund-carousel-section .owl-dot.active button {
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 6px 20px;
}

#cpchris,
#tablist {
  padding-top: 170px;
}

#tablist.owl-theme .owl-dots .owl-dot {
  width: 11% !important;
}

#tablist.owl-carousel .owl-item img {
  border-radius: 15px;
}

.no-fund-carousel-section .owl-prev,
.no-fund-carousel-section .owl-next {
  position: relative;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  position: relative;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  margin-left: 60px;
}

.accordion-button::after {
  background-image: url('../images/plus.png') !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('../images/minus.png') !important;
}

/*.no-fund-carousel-section .owl-carousel .owl-prev,.no-fund-carousel-section .owl-carousel .owl-next{left: auto; right: auto; }*/
.no-fund-carousel-section .owl-theme .owl-nav {
  text-align: right !important;
  position: absolute;
  right: 0;
  bottom: 30px;
}

.why-lamaa-div h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 30px;
}

.why-lamaa-div p {
  font-size: 18px;
  line-height: 27pxpx;
  font-weight: 400;
  width: 650px;
  color: #fff;
}

.why-lamaa-div ul li {
  text-align: center;
  padding: 35px 25px 50px;
  background: linear-gradient(106.5deg, rgba(255, 255, 255, 0.05) 3.44%, rgba(255, 255, 255, 0.11) 99.99%);
  backdrop-filter: blur(7.5px);
  border-radius: 24px;
  border: 2px solid;
  border-image-source: linear-gradient(106.21deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.015) 100%);
  width: 17.5%;
  height: 280px;
  margin: 130px 10px 45px;
}

.why-lamaa-div ul li .why-lamma-box-bottom {
  width: 170px;
  margin: 30px auto 0;
  text-align: left;
}

.why-lamaa-div ul li .why-lamma-box-bottom label {
  font-size: 18px;
  padding-left: 15px;
  position: relative;
  color: #fff;
}

.why-lamaa-div ul li .why-lamma-box-bottom label span {
  position: absolute;
  left: -8px;
  top: 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.no-fund-carousel-section-right2 ul li a,
.no-fund-carousel-section-right2 ul li p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  opacity: 0.8;
}

.no-fund-carousel-section-right2 ul li a:hover {
  opacity: 1;
}

.no-fund-carousel-section-right2 ul li:first-child {
  margin-right: 30px;
}

.no-fund-carousel-section-right2 h4 {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.no-fund-carousel-section-right2 p {
  margin: 20px 0;
}

.no-fund-carousel-section-right2 {
  padding: 50px 0 50px 50px;
}

.read-more-btn {
  margin-top: 35px;
}

.no-fund-carousel-section-right-img2 {
  position: absolute;
  right: 0px;
  top: 0;
  width: 350px !important;
}

.no-fund-carousel-section2 .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 15px;
  top: auto;
  width: auto;
  border: none;
}

.no-fund-carousel-section2 .owl-theme .owl-dots .owl-dot.active span {
  position: relative;
}

.no-fund-carousel-section2 .owl-theme .owl-dots .owl-dot.active span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
  left: -5px;
  top: -5px;
}

.no-fund-carousel-section.no-fund-carousel-section2 #cpchris {
  padding-top: 0;
}

.no-fund-carousel-section2 .owl-theme .owl-dots .owl-dot {
  margin: 0 5px !important;
}

.recent-blog-data ul {
  margin-top: 15px;
}

.recent-blog-data ul li {
  width: 18.5%;
  margin-right: 15px;
  min-height: 200px;
  position: relative;
}

.recent-blog-data ul li .blog-div {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 200px;
  padding: 15px;
  border-radius: 15px;
  overflow: hidden;
}

.layer-one {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.layer-two {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  z-index: 2;
}

.blog-logo {
  position: relative;
  z-index: 3;
  padding-top: 70px;
}

.recent-blog-data ul li .blog-div label {
  position: relative;
  z-index: 3;
  display: block;
  color: #C7E8ED;
  font-size: 12px;
  margin: 10px 0 0;
  text-transform: capitalize;
}

.recent-blog-data ul li .blog-div p {
  position: relative;
  z-index: 3;
  color: #C7E8ED;
  font-size: 14px;
  margin-top: 8px;
  text-transform: capitalize;
  display: none;
}

.recent-blog {
  position: relative;
}

.recent-blog h2 {
  font-size: 18px;
  position: relative;
  margin-top: 30px;
}

.recent-blog h2::after {
  content: '';
  position: absolute;
  left: 150px;
  right: 0;
  top: 50%;
  width: auto;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.recent-blog-data ul li .blog-div-btn a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
}

.footer-map-place {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  cursor: pointer;
}

#stuck_container .container_cust {
  width: 100%;
  padding: 0 0px;
}

.accordion-read-more {
  text-align: right;
  position: relative;
  margin-top: 50px;
  position: relative;
  z-index: 2
}

.accordion-read-more a {
  background: #121648 !important;
}

.recent-blog-data ul li a.cmn-buttn.outline_button {
  font-size: 16px;
}

/*.recent-blog-data ul li:last-child{text-align: right;}*/

/*contact new*/
#new-contact-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.new-contact-banner-right {
  position: relative;
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
}

.new-contact-banner-left h1 {
  color: #02085E;
  font-size: 80px;
  margin-left: 200px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 20vh;
}

.new-contact-banner-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

.new-contact-banner-right:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.contact-sub-table {
  position: absolute;
  left: 100px;
  bottom: 80px;
  width: auto;
  z-index: 2;
}

.contact-sub-table h2 {
  font-size: 35px;
  color: #02085E;
  margin-bottom: 30px;
}

.contact-sub-table-box a span img {
  width: 25px;
  margin-right: 15px;
}

.contact-sub-table-box a {
  color: #02085E;
  font-size: 20px;
}

#visit-us {
  position: relative;
  padding: 100px 0 150px;
}

.visit-us-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.visit-us-left h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.visit-us-left p {
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  width: 400px;
  font-weight: 300;
  opacity: 0.5;
}

.visit-us-left table {
  margin: 35px 15px 0 0;
}

.visit-us-left table th {
  color: #fff;
  font-size: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.visit-us-left table th:last-child {
  border-right: none;
}

.visit-us-left table th:first-child {
  border-left: none;
  padding-left: 0
}

.visit-us-left table td {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.visit-us-left table td:first-child {
  border-left: none;
  padding-left: 0;
}

.visit-us-left table td label {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.65;
}

.visit-us-left table td p {
  width: 100%;
  font-size: 15px;
  opacity: 0.4;
}

.border-right-0 {
  border-right: none !important;
}

.visit-us-left table th,
.visit-us-left table td {
  width: 33%;
  vertical-align: text-top;
}

/*career*/
.career-banner-left h1 {
  color: #02085E;
  font-size: 80px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.career-banner-left {
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 100px;
  /*  width: 200%;*/
}

.career-banner-left p {
  font-size: 18px;
  color: #02085E;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.why-lama-div {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}

.why-lama-div:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#why-lama {
  position: relative;
  padding: 150px 0;
}

.why-us-right {
  padding: 80px 35px 60px;
  position: relative;
  z-index: 2;
}

.why-us-right h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 25px;
}

.why-us-right p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.life-at-lamaa-left h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 25px;
}

.life-at-lamaa-left p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.life-at-lamaa-left {
  padding-right: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.life-at-lamaa-right {
  position: relative;
  padding-right: 50px;
}

.life-at-lamaa-right p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
}

#life-at-lamaa {
  position: relative;
  padding: 100px 0 150px;
}

.owl-carousel .owl-next {
  position: absolute !important;
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
}

.owl-carousel .owl-prev {
  position: absolute !important;
  right: 70px;
  bottom: 0;
  left: auto;
  top: auto;
}

.owl-carousel button img {
  width: 30px !important;
}

#our-location {
  position: relative;
  padding: 100px 0 150px;
}

.location-details-top h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.location-details-body label {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
  padding: 15px 0;
}

.location-details-body p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  opacity: 0.6;
}

.location-details {
  background: linear-gradient(130.29deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 67.23%);
  backdrop-filter: blur(12.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 24px;
  height: 100%;
  padding: 25px;
  margin-right: 10px;
  border: 2px solid;
  border-image-source: linear-gradient(135.88deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0) 30%);
  overflow: hidden;
}

.location-details-body {
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.our-location-div-right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding-left: 35px;
}

.our-location-div-right h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 25px;
}

.our-location-div-right p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.location-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
  opacity: 0.6;
}

.our-location-div-left {
  position: relative;
  z-index: 1;
}

#Opportunities {
  position: relative;
  padding: 150px 0;
  height: 100%;
  background: #fff;
}

.opportunity-top h2 {
  color: #02085E;
  font-size: 30px;
  margin-bottom: 25px;
}

.opportunity-top {
  border-bottom: 1px solid rgba(2, 8, 94, 1);
}

.opportunity-top .nav-tabs {
  border-bottom: none;
}

.opportunity-top .nav {
  justify-content: flex-end;
}

.opportunity-top .nav-tabs .nav-link {
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #02085E;
  color: #02085E;
  font-size: 16px;
  border-radius: 35px;
  padding: 0;
  margin: 0 15px;
}

.opportunity-top .nav-tabs .nav-link:hover {
  background: #02085E;
  color: #fff;
}

.opportunity-top .nav-tabs .nav-item.show .nav-link,
.opportunity-top .nav-tabs .nav-link.active {
  background: #02085E !important;
  color: #fff !important;
}

.Opportunities-details-top h3 {
  position: relative;
  color: #02085E;
  font-size: 23px;
  margin-bottom: 30px;
}

.Opportunities-details-top h3:after {
  content: '';
  position: absolute;
  left: 150px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  border: 1px solid #02085E;
  opacity: 0.3;
  display: none;
}

.Opportunities-details-top {
  margin-top: 60px;
}

.Opportunities-detail {
  margin: 0 8px;
  background: linear-gradient(132.6deg, rgba(205, 210, 204, 0.3) 0.22%, rgba(205, 210, 204, 0) 99.53%);
  backdrop-filter: blur(7.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 25px;
  border: 2px solid;
  border-image-source: linear-gradient(127.3deg, rgba(18, 22, 72, 0.3) 0.3%, rgba(18, 22, 72, 0.045) 30%);
  overflow: hidden;
  padding: 15px;
}

#Opportunities .tab-content {
  max-height: 100%;
  min-height: 100%;
  height: 100%;
}

#Opportunities .tab-content {
  background: #fff;
}

.Opportunities-detail label {
  color: #02085E;
  font-size: 20px;
  margin-bottom: 15px;
}

.Opportunities-detail p {
  color: rgba(2, 8, 94, 0.7);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 27px;
}

.Opportunities-detail a {
  color: rgba(2, 8, 94, 1);
  font-size: 15px;
  position: relative;
  font-weight: 600;
}

.Opportunities-detail a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #02085E;
  transition: 0.4s;
}

.Opportunities-detail a:hover:after {
  width: 100%;
}


.footer-map a {
  display: block;
  position: relative;
  z-index: 1111;
}

/*resources*/
#resource-tab {
  position: relative;
  background: #121648;
}

#resource-tab2 {
  position: relative;
  background: #121648;
}

.resource-top-menu {
  padding-top: 150px;
  position: relative;
}

.resource-top-menu ul {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: fixed;
  top: 89px;
  left: 0;
  width: 100%;
  background: #121648;
  z-index: 9999;
}

.resource-top-menu ul li {
  display: inline-block;
  text-align: center;
  width: 20%;
  position: relative;
}

.resource-top-menu ul li a {
  font-size: 18px;
  padding: 10px 25px;
  color: #fff;
  opacity: 0.35;
  font-weight: 400;
}

.resource-top-menu ul li a:hover,
.resource-top-menu ul li a.active {
  opacity: 1;
}

.resource-top-menu ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  border-bottom: 1px solid #fff;
  transition: 0.4s;
}

.resource-top-menu ul li a:hover:after,
.resource-top-menu ul li a.active:after {
  width: 100%;
}

#news {
  position: relative;
  padding-bottom: 200px;
}

.news-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  opacity: 0.2;
}

.news-div {
  position: relative;
  z-index: 2;
}

.news-div-top {
  padding-top: 85px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
}

.news-div-top h1,
.news-div-top h2 {
  position: relative;
  color: #fff;
  font-size: 30px;
  margin-bottom: 30px;
}

.news-div-top a {
  position: absolute;
  top: 80px;
  right: 0;
  font-size: 16px;
  padding: 7px 25px;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  transition: 0.4s;
}

.news-div-top a:hover {
  background: #fff;
  color: #121648;
}

.big-news,
.small-news {
  margin: 10px;
}

.news-div-body {
  margin-top: 120px;
}

.big-news {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 30px;
}

.big-news:after {
  position: absolute;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.4s;
}

.big-news:hover:after {
  opacity: 1
}

.big-news-data-inner a,
.big-news-data-inner p {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}

.big-news-data-inner a {
  margin-right: 50px;
}

.big-news-data-inner a:hover {
  opacity: 1;
}

.big-news-data h2 {
  font-size: 25px;
  margin-bottom: 15px;
}

.big-news-non-hover {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 1;
  opacity: 1;
  transition: 0.4s;
}

.big-news:hover .big-news-non-hover {
  opacity: 0
}

.big-news-hover-data h2 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #FFF;
}

.big-news-hover-data p {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  color: #02085E;
  margin: 8px 0;
}

.big-news-hover-data a,
.big-news-hover-data .big-news-data-inner p {
  display: inline-block;
  font-size: 14px;
  color: #FFF;
  opacity: 0.8;
  margin: 0;
}

.big-news-hover-data a {
  margin-right: 50px;
}

.read-more a {
  font-size: 16px;
  opacity: 1;
  border: 1px solid #fff;
  border-radius: 35px;
  color: #fff;
  padding: 6px 20px;
  margin-top: 15px
}

.big-news-hover-data {
  position: absolute;
  left: 50px;
  bottom: 35px;
  width: 65%;
  z-index: 2;
  opacity: 0;
  transition: 0.4s;
}

.read-more a:hover {
  background: #02085E;
  color: #fff;
  border: 1px solid #02085E;
}

.big-news:hover .big-news-hover-data {
  opacity: 1;
}

.small-news-details h3 {
  color: #fff;
  font-size: 20px;
  line-height: 25px;
}

.small-news-details p {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  opacity: 0.8;
}

.small-news-details .small-news-data-inner p {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  margin-right: 15px;
  opacity: 0.4;
}

.small-news-read-more a {
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  padding: 6px 15px;
  border-radius: 25px;
}

.small-news-read-more a:hover {
  background: #fff;
  color: #02085E;
  border: 1px solid #02085E;
}

.small-news-read-more {
  margin-top: 30px;
}

.small-news-data-inner {
  margin-bottom: 25px;
}

.small-news img {
  margin-bottom: 15px;
}

.small-news {
  position: relative;
  margin-bottom: 30px;
}

.tab-img {
  border-radius: 20px;
  overflow: hidden;
}

.tab-img img {
  width: 100%;
}

/*.carousel {
  height: 100%;
  width: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s;
}
.carousel div {
  transform-style: preserve-3d;
  
}

.item {
  display: block;
  position: absolute;
  width: 250px;
  height: 200px;
  transition: transform 1s;
}
.item img{max-width: 100%}

.a {
  transform: rotateY(0deg) translateZ(250px);
}

.b {
  transform: rotateY(60deg) translateZ(250px) rotateY(-60deg);
}

.c {
  transform: rotateY(120deg) translateZ(250px)  rotateY(-120deg);
}

.d {
  transform: rotateY(180deg) translateZ(250px) rotateY(-180deg);
}

.e {
  transform: rotateY(240deg) translateZ(250px) rotateY(-240deg);
} 

.f {
  transform: rotateY(300deg) translateZ(250px) rotateY(-300deg);
}


.next, .prev {
  color: #444;
  position: absolute;
  top: 100px;
  padding: 1em 2em;
  cursor: pointer;
  
  transition: box-shadow 0.1s, top 0.1s;
}
.next:hover, .prev:hover { color: #000; }
.next:active, .prev:active {
  top: 104px;
  box-shadow: 0 1px 0 #999;
}
.next { right: 5em; }
.prev { left: 5em; }
.container-slide{
  margin: 0 auto;
  width: 250px;
  height: 200px;
  position: relative;
  perspective: 1000px;
}
#event {
  padding: 70px 0;position: relative; height: 100vh; overflow: hidden;
}
.event-shadow{position: absolute; top: 0; left: 0; width: 500px;}
.event-slide-bottom{padding: 10px;position: relative; background: linear-gradient(104.95deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.065) 100%); backdrop-filter: blur(12.5px);border-radius-bottom-right: 24px;border-radius-bottom-left: 24px; border: 2px solid; border-image-source: linear-gradient(107.17deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 100%); overflow: hidden;}
.event-slide-bottom label{color: #fff; font-size: 20px; line-height: 28px;}
.event-slide-bottom p, .event-slide-bottom small {font-size: 14px; color: #DAFFD1; opacity: 0.5;}
.event-right{position: relative; width: 100%; background: red; z-index: 999; height: 100%}
.container-slide:after{content: ''; position: absolute; left: 0; bottom: 0; width: 100px; height: 100px; background: red;}*/
#event .owl-item>div {
  cursor: pointer;
  margin: 15px;
  transition: margin 0.4s ease;
  padding: 0 !important;
}

#event .owl-item.center>div {
  cursor: auto;
  margin: 0px;
}

#event .owl-item:not(.center)>div {
  opacity: .75;
}

.event-shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: 500px;
}

#event {
  position: relative;
  padding: 70px 0;
}

.event-slide-bottom {
  padding: 10px;
  position: relative;
  background: linear-gradient(104.95deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.065) 100%);
  backdrop-filter: blur(12.5px);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 2px solid;
  border-image-source: linear-gradient(107.17deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 100%);
  overflow: hidden;
}

.event-slide-bottom label {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px
}

.event-slide-bottom p,
.event-slide-bottom small {
  font-size: 14px;
  color: #DAFFD1;
  opacity: 0.5;
  margin-bottom: 15px;
}

#event .owl-item .event-slide-bottom {
  display: none;
}

#event .owl-item.center .event-slide-bottom {
  display: block;
}

.event-right {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.event-left h2 {
  font-size: 35px;
  margin-bottom: 30px;
}

.event-left h3 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #DAFFD1;
}

.event-left p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #FFFFFF;
  line-height: 27px;
}

.event-left a {
  font-size: 16px;
  margin-top: 10px;
  color: #FFFFFF;
  padding: 6px 20px;
  border: 1px solid #fff;
  border-radius: 25px;
  display: inline-block;
}

.event-left,
.event-right {
  position: relative;
  z-index: 2;
}

#event .owl-item {
  padding: 0 !important;
  position: relative;
  z-index: 1;
}

#event .owl-item.center {
  z-index: 2;
}

.event-left {
  width: 75%;
}

#gallery {
  position: relative;
  margin: 150px 0 200px;
}

.gallery-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  opacity: 0.2;
}

.news-div-top p {
  width: 500px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #fff;
}

#gallery .news-div-top a {
  top: 135px;
}

.news-div,
.gallery-carousel {
  position: relative;
  z-index: 1;
}

.gallery-carousel {
  margin: 70px 0 0 135px;
}

.loation {
  margin-right: 15px;
}

.big-news-hover-data {
  left: 35px;
}

.big-news-hover-data h2 {
  margin-bottom: 0;
}

.big-news-hover-data p {
  margin: 15px 0;
}

.blog-carousel img {
  width: auto !important;
}

.blog-carousel .recent-blog-data ul li {
  width: 22%;
  margin: 0 9px;
}

.blog-carousel .recent-blog-data ul {
  margin: 60px 0 0 50px;
}

#blog {
  position: relative;
  padding-bottom: 200px;
}

#blog .owl-next {
  position: absolute;
  right: -10px;
  top: 50%;
  margin: 0;
}

#blog .owl-prev {
  position: absolute;
  left: -10px;
  top: 50%;
  margin: 0;
}

#faq {
  position: relative;
  padding: 200px 0 150px;
}

#faq .tab-content {
  max-height: 100%
}

#faq .tab-content {
  background: transparent;
}

#faq .opportunity-top h2 {
  color: #fff;
  font-size: 30px;
}

#faq .opportunity-top .nav-tabs .nav-link {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  min-width: 100px;
  margin: 0 15px;
  padding: 6 20px;
  width: 100%;
}

#faq .opportunity-top .nav-tabs .nav-item.show .nav-link,
#faq .opportunity-top .nav-tabs .nav-link.active {
  background: #fff !important;
  color: #02085E !important;
}

#faq .accordion-item {
  border-top: none;
}

#faq .opportunity-top {
  border-bottom: 1px solid #CDD2CC;
  margin-bottom: 50px;
}

.faq-load-more {
  position: relative;
  text-align: right;
  position: relative;
  z-index: 1;
}

#faq ul li {
  margin: 0 15px;
}

footer .footer-link ul li {
  display: block;
}


/* Contact 7*/
.submit-btn input.wpcf7-form-control {
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 35px;
  font-size: 18px;
  color: #fff;
  padding: 6px 20px;
  position: relative;
}

.submit-btn input.wpcf7-form-control::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--theme-color-2);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.wpcf7-submit {
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 35px;
  font-size: 18px;
  color: #fff;
  padding: 6px 20px;
}

.submit-btn input.wpcf7-form-control:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.wpcf7-spinner {
  position: absolute;
  top: auto;
  bottom: -32px;
  right: 0;
}

.submit-btn {
  position: relative;
}

.banner-l.about-banner video {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
}

.banner-l.about-banner {
  overflow: hidden;
}

/*Arijit's css*/
.bnpl-corporate #ftce .ftce-heading h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  width: 1010px;
  margin-bottom: 135px;
  margin-top: 68px;
  margin-right: auto;
  margin-left: auto;
  text-transform: capitalize;
  color: #121648;
}

.bnpl-corporate .ground-breaking::after {
  position: absolute;
  top: 121px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  background: linear-gradient(0deg, #121648 40%, rgba(18, 22, 72, 0) 100%);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.bnpl-corporate .ground-breaking {
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.bnpl-corporate .grount-content.grount-first h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
  color: #FFFFFF;
  padding-bottom: 50px;
}

.bnpl-corporate .grount-content.grount-first p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.bnpl-corporate .grount-content.grount-first {
  padding-left: 0px;
}

/*--------Benefits-Merchant--------*/
.benefits-merchant {
  padding-top: 133px;
  padding-bottom: 90px;
}

.bnpl-corporate .benefits-merchant .grount-content.grount-first h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  padding-bottom: 35px;
  color: #F9FAFB;
}

.bnpl-corporate .benefits-merchant .grount-content.grount-first p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 76px;
}

.bnpl-corporate .benefits-merchant .grount-content.grount-first ul li {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 47px;
  color: rgba(255, 255, 255, 0.71);
  padding-left: 30px;
  position: relative;
}

.bnpl-corporate .benefits-merchant .grount-content.grount-first {
  padding-left: 0px;
}

.bnpl-corporate .benefits-merchant .grount-content.grount-first ul li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: auto;
  margin: auto;
  content: "";
  height: 7px;
  width: 7px;
  background: #babbca;
  border-radius: 50%;
}

/*---------Banner-Overlay---------*/
.bnpl-corporate .banner-l.about-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

/*-------Grond-Breaking-------*/
.bnpl-corporate .ground-breaking {
  padding-bottom: 133px;
  padding-top: 240px;
}

.bnpl-corporate .ground-breaking .ground-logo img {
  filter: drop-shadow(-5px 5px 36px rgba(255, 255, 255, 0.14));
  height: auto;
  width: 582px;
}

.bnpl-corporate .ground-breaking img.news-dots {
  top: auto;
  bottom: 260px;
  width: 636px;
}

.benefits-merchant {
  position: relative;
}

.benefits-merchant img.ground-breaking-dots {
  position: absolute;
  top: 60px;
  height: auto;
  width: 623px;
}

.bnpl-corporate .accordian_section {
  padding-top: 213px !important;
}

.bnpl-corporate .benefits-merchant .grount-content.grount-first {
  justify-content: stretch;
}

.bnpl-for-investor #ftce .ftce-heading h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  width: 1010px;
  margin-bottom: 135px;
  margin-top: 68px;
  margin-right: auto;
  margin-left: auto;
  text-transform: capitalize;
  color: #121648;
}

.bnpl-for-investor .ground-breaking::after {
  position: absolute;
  top: 121px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  background: linear-gradient(0deg, #121648 0%, rgba(18, 22, 72, 0) 100%);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.bnpl-for-investor .ground-breaking {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.bnpl-for-investor .grount-content.grount-first h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
  color: #FFFFFF;
  padding-bottom: 50px;
}

.bnpl-for-investor .grount-content.grount-first p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.bnpl-for-investor .grount-content.grount-first {
  padding-left: 0px;
}

/*--------Benefits-Merchant--------*/
.benefits-merchant {
  padding-top: 133px;
  padding-bottom: 90px;
}

.bnpl-for-investor .benefits-merchant .grount-content.grount-first h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  padding-bottom: 35px;
  color: #F9FAFB;
}

.bnpl-for-investor .benefits-merchant .grount-content.grount-first p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 76px;
}

.bnpl-for-investor .benefits-merchant .grount-content.grount-first ul li {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 47px;
  color: rgba(255, 255, 255, 0.71);
  padding-left: 30px;
  position: relative;
}

.bnpl-for-investor .benefits-merchant .grount-content.grount-first {
  padding-left: 0px;
}

.bnpl-for-investor .benefits-merchant .grount-content.grount-first ul li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: auto;
  margin: auto;
  content: "";
  height: 7px;
  width: 7px;
  background: #babbca;
  border-radius: 50%;
}

/*---------Banner-Overlay---------*/
.bnpl-for-investor .banner-l.about-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

/*-------Grond-Breaking-------*/
.bnpl-for-investor .ground-breaking {
  padding-bottom: 133px;
}

.bnpl-for-investor .ground-breaking .ground-logo img {
  filter: drop-shadow(-5px 5px 36px rgba(255, 255, 255, 0.14));
  height: auto;
  width: 582px;
}

.bnpl-for-investor .ground-breaking img.news-dots {
  top: auto;
  bottom: 260px;
  width: 636px;
}

.benefits-merchant {
  position: relative;
}

.benefits-merchant img.ground-breaking-dots {
  position: absolute;
  top: 60px;
  height: auto;
  width: 623px;
}

.bnpl-for-investor .no-fund-div .fund-right {
  padding-left: 0px;
}

.bnpl-for-investor .fund-right h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 27px;
  line-height: 46px;
  width: 647px;
}

.bnpl-for-investor .fund-right p {
  margin-top: 30px;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.75);
}

.bnpl-for-investor .solution-text h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  color: #F9FAFB;
  margin-bottom: 35px;
}

.bnpl-for-investor .solution-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  opacity: 0.8;
  width: 463px;
}

@media (max-width:1366px) {
  .bnpl-for-investor #ftce .ftce-heading h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    width: 1010px;
    margin-bottom: 85px;
    margin-top: 48px;
  }

  ul._inn_box li p {
    min-height: 125px;
  }

  .bnpl-for-investor .ground-breaking::after {
    position: absolute;
    top: 121px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    background: linear-gradient(0deg, #121648 0%, rgba(18, 22, 72, 0) 100%);
    height: 100%;
    width: 100%;
    z-index: -1;
  }

  .bnpl-for-investor .grount-content.grount-first h5 {
    font-size: 32px;
    line-height: normal;
    padding-bottom: 30px;
  }

  .bnpl-for-investor .grount-content.grount-first p {
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 30px;
  }

  .bnpl-for-investor .grount-content.grount-first {
    padding-left: 0px;
  }

  /*--------Benefits-Merchant--------* 
.benefits-merchant {padding-top: 90px;padding-bottom: 70px;} 
.bnpl-for-investor .benefits-merchant .grount-content.grount-first h5 {font-size: 30px;line-height:normal;padding-bottom: 35px;} 
.bnpl-for-investor .benefits-merchant .grount-content.grount-first p {font-style: normal;font-weight: 400;font-size: 14px;line-height: 27px;color: #FFFFFF;opacity: 0.8;margin-bottom: 56px;}
 .bnpl-for-investor .benefits-merchant .grount-content.grount-first ul li {font-size: 18px;line-height: 47px;color: rgba(255, 255, 255, 0.71);padding-left: 30px;position: relative;}
 .bnpl-for-investor .benefits-merchant .grount-content.grount-first {padding-left: 0px;} 
/*-------Grond-Breaking-------*/
  .bnpl-for-investor .ground-breaking {
    padding-bottom: 90px;
  }

  .bnpl-for-investor .ground-breaking .ground-logo img {
    filter: drop-shadow(-5px 5px 36px rgba(255, 255, 255, 0.14));
    height: auto;
    width: 100%;
  }

  .bnpl-for-investor .ground-breaking img.news-dots {
    top: auto;
    bottom: 260px;
    width: 636px;
  }

  .benefits-merchant img.ground-breaking-dots {
    position: absolute;
    top: 60px;
    height: auto;
    width: 423px;
  }

  .bnpl-for-investor .no-fund-div .fund-right {
    padding-left: 0px;
  }

  .bnpl-for-investor .fund-right h2 {
    font-size: 22px;
    line-height: 46px;
    width: 100%;
  }

  .bnpl-for-investor .fund-right p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: normal;
  }

  .bnpl-for-investor .solution-text h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: #F9FAFB;
    margin-bottom: 35px;
  }

  .bnpl-for-investor .solution-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    opacity: 0.8;
    width: 463px;
  }

  .bnpl-corporate #ftce .ftce-heading h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: normal;
    width: 100%;
    margin-bottom: 95px;
    margin-top: 68px;
  }

  .bnpl-corporate .grount-content.grount-first h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: normal;
    padding-bottom: 30px;
  }

  .bnpl-corporate .grount-content.grount-first p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 30px;
  }
}

/*-------------------Contact-Us-----------------------*/
.contact #visit-us .benefit-right-form .form-field-duel select {
  font-size: 14px;
  position: relative;
  top: 10px;
}

.wpcf7-spinner {
  position: absolute !important;
  top: auto;
  bottom: -32px;
  right: 0;
}

@media (max-width:1366px) {
  .new-contact-banner-left h1 {
    font-size: 64px;
    margin-left: 150px;
    margin-bottom: 16vh;
  }

  .contact-sub-table h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .contact-sub-table-box a {
    font-size: 18px;
  }

  .visit-us-left p {
    font-size: 14px;
  }

  .visit-us-left table td p {
    font-size: 14px;
  }

  .visit-us-left table th {
    font-size: 18px;
    padding: 20px;
  }

  .visit-us-left table td label {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .form-field {
    margin-bottom: 25px;
  }

  #visit-us {
    padding: 80px 0 80px;
  }
}

@media (max-width:1199px) {
  .new-contact-banner-left h1 {
    font-size: 54px;
    margin-left: 100px;
    margin-bottom: 10vh;
  }

  .contact-sub-table h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .contact-sub-table-box a span img {
    width: 25px;
    margin-right: 10px;
  }

  .contact-sub-table-box a {
    font-size: 16px;
  }

  .contact .benefit-right {
    padding: 30px 15px;
  }

  .contact .benefit-right p {
    font-size: 14px;
  }

  .contact .benefit-right .benefit-right-form {
    margin-top: 20px;
  }

  .form-field-duel {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 20px;
  }

  .contact #visit-us .benefit-right-form .form-field-duel select {
    font-size: 14px;
    top: 20px;
  }
}

/*----15.02----*/
.bnpl-for-investor #bnpl_investor_benefit ul li {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 47px;
  color: rgba(255, 255, 255, 0.71);
  padding-left: 30px;
  position: relative;
}

.bnpl-for-investor #bnpl_investor_benefit ul li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: auto;
  margin: auto;
  content: "";
  height: 7px;
  width: 7px;
  background: #babbca;
  border-radius: 50%;
}

.bnpl-for-investor #bnpl_investor_benefit .solution-text {
  padding-top: 55px;
}

.bnpl-for-investor #bnpl_investor_benefit img.event-shadow {
  bottom: 29px !important;
  top: auto;
}

.bnpl-for-investor .ground-breaking .col-sm-7 .grount-content.grount-first {
  width: 100%;
}

.bnpl-for-investor .grount-content.grount-first h5 {
  width: 100%;
}

.bnpl-for-investor .ground-breaking .col-sm-7 {
  width: 75% !important;
}

.bnpl-for-investor .ground-breaking img.ground-breaking-dots {
  top: 180px;
}

/*----------For-Small-Bsiness-----------*/
/*------------Ftce-Body-------------*/
.for-small-business .ftce-body .ftce-body-box {
  background: transparent;
  border: none;
  padding-top: 30px;
  padding-bottom: 30px;
  border-right: 1px solid rgba(2, 8, 94, 0.65);
  border-radius: 0px;
  margin: 0 5px;
}

.for-small-business .ftce-body .col-md-4:last-child .ftce-body-box {
  border: none;
}

.for-small-business .ftce-body .ftce-body-box p {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 39px;
  display: inline-block;
  color: #02085E;
  text-align: center;
}

/*------------Benefits-Merchant-------------*/
.for-small-business .benefits-merchant .grount-content.grount-first h5 {
  width: 100%;
  margin-top: 70px;
}

.for-small-business .benefits-merchant img.ground-breaking-dots {
  top: -40px;
}

.for-small-business .benefits-merchant .grount-content.grount-first {
  width: 100%;
}

.for-small-business .benefits-merchant .grount-content.grount-first ul {
  padding-left: 145px;
}

.bnpl-corporate .grount-content.grount-first h5 {
  width: 100%;
}

.for-small-business .grount-content.grount-first h5 {
  width: 100%;
}

.bnpl-for-investor .grount-content.grount-first h5 {
  width: 100%;
}

@media (max-width:1600px) {
  .bnpl-for-investor .grount-content.grount-first h5 {
    width: 100%;
  }

  .bnpl-for-investor .ground-breaking {
    padding: 100px 0px;
  }

  .for-small-business .ground-breaking {
    padding: 100px 0px !important;
  }

  .bnpl-corporate .ground-breaking {
    padding: 100px 0px !important;
  }



}




/*-------------------buy-now-pay-later-buyers-----------------------*/
@media (max-width:1366px) {
  .for-small-business .ground-breaking {
    padding-bottom: 130px;
    padding-top: 140px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .for-small-business .benefits-merchant .grount-content.grount-first ul {
    padding-left: 50px;
  }

  .for-small-business .benefits-merchant .grount-content.grount-first ul li {
    font-size: 20px;
    line-height: 45px;
  }

  .for-small-business .benefits-merchant .grount-content.grount-first h5 {
    margin-top: 40px;
  }

  .for-small-business .benefits-merchant .grount-content.grount-first h5 {
    font-size: 36px;
    line-height: 60px;
    padding-bottom: 30px;
  }

  .for-small-business .no-fund-carousel-section {
    margin-top: 90px;
  }

  .for-small-business .accordian_section {
    padding-top: 110px !important;
  }

  .for-small-business .trusted-brand-top {
    padding: 50px 0;
  }

  .for-small-business .ftce-body .ftce-body-box p {
    font-size: 18px;
    line-height: 39px;
  }

  .bnpl-for-investor .ground-breaking {
    padding-bottom: 130px;
    padding-top: 140px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .bnpl-for-investor .benefits-merchant .grount-content.grount-first ul {
    padding-left: 50px;
  }

  .bnpl-for-investor .benefits-merchant .grount-content.grount-first ul li {
    font-size: 20px;
    line-height: 45px;
  }

  .bnpl-for-investor .benefits-merchant .grount-content.grount-first h5 {
    margin-top: 40px;
  }

  .bnpl-for-investor .benefits-merchant .grount-content.grount-first h5 {
    font-size: 36px;
    line-height: 60px;
    padding-bottom: 30px;
  }

  .bnpl-for-investor .no-fund-carousel-section {
    margin-top: 90px;
  }

  .bnpl-for-investor .accordian_section {
    padding-top: 110px !important;
  }

  .bnpl-for-investor .trusted-brand-top {
    padding: 50px 0;
  }

  .bnpl-for-investor .ftce-body .ftce-body-box p {
    font-size: 18px;
    line-height: 39px;
  }

  .bnpl-for-investor .ground-breaking {
    padding: 100px 0px;
  }

}


#bnpl_investor_benefit .grount-content.grount-first ul li {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 47px;
  color: rgba(255, 255, 255, 0.71);
  padding-left: 30px;
  position: relative;
}

.bnpl-for-investor #bnpl_investor_benefit .grount-content.grount-first ul li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: auto;
  margin: auto;
  content: "";
  height: 7px;
  width: 7px;
  background: #babbca;
  border-radius: 50%;
}

.bnpl-for-investor #bnpl_investor_benefit {
  padding-bottom: 261px;
  padding-top: 100px;
}

@media (max-width:1199px) {

  /*-----------buy-now-pay-later-buyers------------*/
  .ftce-div {
    width: 970px;
    margin: 0 auto;
    text-align: center;
  }

  .bnpl-corporate #ftce .ftce-heading h2 {
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .for-small-business .ftce-body .ftce-body-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .for-small-business .ftce-body .ftce-body-box p {
    font-size: 14px;
    line-height: 39px;
    width: 100%;
  }

  .for-small-business .ftce-body .ftce-body-box p br {
    display: none;
  }

  .for-small-business #ftce {
    padding: 50px 0 60px;
    background: #fff;
  }

  .for-small-business .ground-breaking {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .for-small-business .benefits-merchant {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bnpl-corporate .ground-breaking img.news-dots {
    top: auto;
    bottom: 170px;
    width: 500px;
  }

  .for-small-business .benefits-merchant .grount-content.grount-first h5 {
    font-size: 32px;
    line-height: 50px;
    padding-bottom: 20px;
  }

  .bnpl-corporate .benefits-merchant .grount-content.grount-first p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 56px;
  }

  .for-small-business .benefits-merchant .grount-content.grount-first ul li {
    font-size: 18px;
    line-height: 40px;
  }

  /*-----------buy-now-pay-later-buyers------------*/
  .bnpl-corporate.for-small-business.ftce-div {
    width: 970px;
    margin: 0 auto;
    text-align: center;
  }

  .bnpl-corporate #ftce .ftce-heading h2 {
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .bnpl-corporate.for-small-business .ftce-body .ftce-body-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .bnpl-corporate.for-small-business .ftce-body .ftce-body-box p {
    font-size: 14px;
    line-height: 39px;
    width: 100%;
  }

  .bnpl-corporate.for-small-business .ftce-body .ftce-body-box p br {
    display: none;
  }

  .bnpl-corporate.for-small-business #ftce {
    padding: 50px 0 60px;
    background: #fff;
  }

  .bnpl-corporate.for-small-business .ground-breaking {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .bnpl-corporate.for-small-business .benefits-merchant {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bnpl-corporate .ground-breaking img.news-dots {
    top: auto;
    bottom: 170px;
    width: 500px;
  }

  .bnpl-corporate.for-small-business .benefits-merchant .grount-content.grount-first h5 {
    font-size: 32px;
    line-height: 50px;
    padding-bottom: 20px;
  }

  .bnpl-corporate .benefits-merchant .grount-content.grount-first p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 56px;
  }

  .bnpl-corporate.for-small-business .benefits-merchant .grount-content.grount-first ul li {
    font-size: 18px;
    line-height: 40px;
  }

}

@media (max-width:1199px) {

  /*-----------buy-now-pay-later-buyers------------*/
  .ftce-div {
    width: 970px;
    margin: 0 auto;
    text-align: center;
  }

  .bnpl-corporate #ftce .ftce-heading h2 {
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .for-small-business .ftce-body .ftce-body-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .for-small-business .ftce-body .ftce-body-box p {
    font-size: 14px;
    line-height: 39px;
    width: 100%;
  }

  .for-small-business .ftce-body .ftce-body-box p br {
    display: none;
  }

  .for-small-business #ftce {
    padding: 50px 0 60px;
    background: #fff;
  }

  .for-small-business .ground-breaking {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .for-small-business .benefits-merchant {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bnpl-corporate .ground-breaking img.news-dots {
    top: auto;
    bottom: 170px;
    width: 500px;
  }

  .for-small-business .benefits-merchant .grount-content.grount-first h5 {
    font-size: 32px;
    line-height: 50px;
    padding-bottom: 20px;
  }

  .bnpl-corporate .benefits-merchant .grount-content.grount-first p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 56px;
  }

  .for-small-business .benefits-merchant .grount-content.grount-first ul li {
    font-size: 18px;
    line-height: 40px;
  }

  /*-----------buy-now-pay-later-buyers------------*/
  .bnpl-corporate.for-small-business.ftce-div {
    width: 970px;
    margin: 0 auto;
    text-align: center;
  }

  .bnpl-corporate #ftce .ftce-heading h2 {
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .bnpl-corporate.for-small-business .ftce-body .ftce-body-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .bnpl-corporate.for-small-business .ftce-body .ftce-body-box p {
    font-size: 14px;
    line-height: 39px;
    width: 100%;
  }

  .bnpl-corporate.for-small-business .ftce-body .ftce-body-box p br {
    display: none;
  }

  .bnpl-corporate.for-small-business #ftce {
    padding: 50px 0 60px;
    background: #fff;
  }

  .bnpl-corporate.for-small-business .ground-breaking {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .bnpl-corporate.for-small-business .benefits-merchant {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bnpl-corporate .ground-breaking img.news-dots {
    top: auto;
    bottom: 170px;
    width: 500px;
  }

  .bnpl-corporate.for-small-business .benefits-merchant .grount-content.grount-first h5 {
    font-size: 32px;
    line-height: 50px;
    padding-bottom: 20px;
  }

  .bnpl-corporate .benefits-merchant .grount-content.grount-first p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 56px;
  }

  .bnpl-corporate.for-small-business .benefits-merchant .grount-content.grount-first ul li {
    font-size: 18px;
    line-height: 40px;
  }

  .bnpl-corporate .grount-content.grount-first p {
    font-size: 16px;
  }
}

@media (max-width:1024px) {
  .bnpl-corporate .banner .banner-text-content span {
    font-size: 50px;
    line-height: 69px;
  }

  .bnpl-corporate .dynamic-discount-banner label {
    font-size: 28px;
  }

  .bnpl-corporate .dynamic-discount-banner p {
    font-size: 16px;
  }

  .bnpl-corporate ._tab_cmn_box p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 28px;
    width: auto;
  }

  .bnpl-corporate .tabs-box {
    padding-top: 50px;
  }

  .bnpl-corporate .tabs-text {
    padding-top: 44px;
    padding-bottom: 20px;
  }

  .bnpl-corporate .ftce-div {
    width: 970px;
    margin: 0 auto;
  }

  .bnpl-corporate #ftce {
    position: relative;
    padding: 60px 0 60px;
    background: #fff;
  }

  .bnpl-corporate #ftce .ftce-heading h2 {
    font-size: 30px;
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .bnpl-corporate .ftce-body-box h3 {
    font-size: 50px;
    line-height: 70px;
  }

  .bnpl-corporate .ftce-body-box {
    padding: 40px 0 30px;
  }

  .bnpl-corporate .ground-breaking {
    padding-bottom: 80px;
    padding-top: 80px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .bnpl-corporate .grount-first {
    padding-left: 50px;
  }

  .bnpl-corporate .grount-content.grount-first p {
    font-size: 14px;
  }

  .bnpl-corporate .ground-breaking .ground-logo img {
    height: auto;
    width: 450px;
  }

  .bnpl-corporate .benefits-merchant {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bnpl-corporate .benefits-merchant .grount-content.grount-first h5 {
    font-size: 30px;
    line-height: 50px;
    padding-bottom: 30px;
  }

  .bnpl-corporate .benefits-merchant .grount-content.grount-first p {
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 30px;
  }

  .bnpl-corporate .benefits-merchant .grount-content.grount-first ul li {
    font-size: 16px;
    line-height: 40px;
    padding-left: 30px;
  }

  .bnpl-corporate .no-fund-carousel-section {
    margin-top: 50px;
  }

  .bnpl-corporate .no-fund-carousel-section-right h4 {
    font-size: 28px;
  }

  .bnpl-corporate .accordian_section {
    padding-top: 100px !important;
  }

  .bnpl-corporate .accordion-body p {
    font-size: 14px;
  }
}

.bnpl-corporate .ftce-body-box {
  border-image-source: linear-gradient(127.3deg, #ffffff 0.82%, rgba(18, 22, 72, 0.15) 104.72%);
}

.for-small-business .ftce-body-box {
  border-image-source: linear-gradient(127.3deg, #ffffff 0.82%, rgba(18, 22, 72, 0.15) 104.72%);
}

.bnpl-for-investor .ftce-body-box {
  border-image-source: linear-gradient(127.3deg, #ffffff 0.82%, rgba(18, 22, 72, 0.15) 104.72%);
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  position: absolute;
  width: 400px;
  right: 0;
  left: 0;
  top: 66px;
  bottom: 0px;
}

.wpcf7-response-output {
  color: #fff !important;
  border: none !important;
}

.news-body ul.news-list li a {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.bnpl-for-investor .ground-logo,
.grount-content.grount-first {
  top: 150px;
  position: relative;
}

.bnpl-for-investor .col-sm-7 .grount-content.grount-first {
  top: 80px !important;
}

.bnpl-corporate.for-small-business .ground-logo {
  top: 150px;
}

.bnpl-corporate.for-small-business .benefits-merchant .grount-content.grount-first {
  top: 0px !important;
}

.bnpl-for-investor #bnpl_investor_benefit .grount-content.grount-first {
  top: 0px;
}

.bnpl-corporate .ground-breaking .ground-logo {
  top: 150px;
}

.curve-town {
  background: #02085E !important;
}

/*16 feb */


/*------------resources-page------------*/
.resources-page .news-div-top a {
  top: 80px !important;
}

.resources-page #gallery .news-div-top a {
  top: 135px !important;
}

.resources-page .resource-top-menu ul {
  top: 87px !important;
}

/*------Partner-Page-------*/
.partnerpage-wraper .grount-content.grount-first {
  top: 0px;
}

.partnerpage-wraper #resource-tab {
  top: 87px !important;
}

.partnerpage-wraper #resource-tab2 {
  top: 87px !important;
}

.partnerpage-wraper .responsiveGallery-wrapper {
  width: 70% !important;
}

@media (max-width:1600px) {

  /*------Partner-Page-------*/
  .partnerpage-wraper .event-left.business-advisor p {
    width: 95%;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li {
    width: 47%;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li h4 {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  .partnerpage-wraper #lending-service .event-left.business-advisor h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .partnerpage-wraper .event-left.business-advisor span {
    margin-bottom: 50px;
  }

  .partnerpage-wraper .event-left.business-advisor h4 {
    font-size: 28px;
    margin-bottom: 35px;
  }
}

@media (max-width:1366px) {

  /*------Partner-Page-------*/
  .partnerpage-wraper .event-left.business-advisor p {
    width: 95% !important;
  }

  .partnerpage-wraper .event-left.business-advisor {
    margin-bottom: 50px !important;
  }

  .partnerpage-wraper .ground-breaking {
    padding: 100px 0px;
    padding-top: 160px;
  }

  .ground-breaking .event-left.business-advisor h2 {
    font-size: 40px;
  }

  .partnerpage-wraper #news {
    padding-bottom: 40px !important;
  }

  /*------------resources-page------------*/
  .resources-page #news {
    padding-bottom: 100px;
  }

  .resources-page #gallery .gallery-dots {
    bottom: 65px;
  }

  .resources-page #gallery {
    margin: 100px 0 100px;
  }

  .resources-page #faq {
    padding: 100px 0 100px;
  }

  .resources-page #blog {
    padding-bottom: 100px;
  }

  #next_ ul._inn_box li p {
    margin: 50px 0 60px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #02085E;
    min-height: 140px !important;
  }
}

@media (max-width:1199px) {}

@media (max-width: 1199px) {
  .banner-l {
    padding-left: 70px;
    height: 100vh;
  }
}

@media (max-width:1024px) {

  /*------Partner-Page-------*/
  .partnerpage-wraper .ground-breaking .grount-content.grount-first p {
    width: 95% !important;
  }

  .partnerpage-wraper #lending-service .event-left.business-advisor h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .partnerpage-wraper #lending-service .event-left.business-advisor h2 br {
    display: none;
  }

  .partnerpage-wraper #our-solution .our-solution-right h2 {
    margin-bottom: 0px;
    padding-top: 150px;
  }

  .partnerpage-wraper .partner-gallery h2 {
    font-size: 32px;
  }

  .partnerpage-wraper .ground-breaking .event-left.business-advisor h2 {
    font-size: 32px;
    line-height: 44px;
    width: 390px;
  }

  .partnerpage-wraper .partner-news .milestone-image {
    width: 500px;
  }
}


@media (max-width:480px) {

  /*------Partner-Page-------*/
  .partnerpage-wraper .partner-banner {
    height: 125vh;
  }

  .partnerpage-wraper .inner-banner .banner-content {
    width: 100%;
    height: 50%;
  }

  .partnerpage-wraper .responsiveGallery-container {
    width: 100%;
    height: 50%;
  }

  .partnerpage-wraper div#responsiveGallery-container .slider_panel {
    height: 100%;
  }

  .partnerpage-wraper .responsiveGallery-wrapper {
    width: 100% !important;
  }

  .partnerpage-wraper .cYbGbt {
    bottom: -270px;
    right: 10%;
  }

  .partnerpage-wraper .kQjxIx {
    left: 67%;
    bottom: -270px;
  }

  .partnerpage-wraper #partner-banner .partner-banner-shadow {
    width: 300px;
    bottom: 211px;
  }

  .partnerpage-wraper #partner-banner .about-banner-dots img {
    width: 100%;
  }

  .partnerpage-wraper .about-banner-dots {
    width: 75%;
  }

  .partnerpage-wraper .inner-banner {
    display: block;
  }

  .partnerpage-wraper .inner-banner .banner-content {
    width: 100% !important;
    height: 80%;
  }

  .partnerpage-wraper #partner-banner .banner-text-content.dynamic-discount-banner h1 span {
    font-size: 32px;
    line-height: 50px;
  }

  .partnerpage-wraper .dynamic-discount-banner p {
    font-size: 14px;
    margin-top: 5px !important;
  }

  .dynamic-discount-banner a,
  .about-banner a {
    margin-top: 20px;
  }

  .partnerpage-wraper .responsiveGallery-wrapper {
    width: 100% !important;
  }

  .partnerpage-wraper .partner-tabs .resource-top-menu ul li {
    width: 100%;
    display: block;
    margin: 8px -2px;
  }

  .partnerpage-wraper .partner-tabs .resource-top-menu ul {
    position: relative;
    top: -10px;
  }

  .partnerpage-wraper .news-div-body {
    margin-top: 50px;
  }

  .partnerpage-wraper .resource-top-menu ul li a {
    font-size: 14px;
  }

  .partnerpage-wraper .event-left h2 {
    font-size: 30px;
    width: 100%;
  }

  .partnerpage-wraper .event-left.business-advisor span {
    margin-bottom: 20px;
    width: 100%;
  }

  .partnerpage-wraper .event-left.business-advisor h4 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .partnerpage-wraper .event-left.business-advisor p {
    width: 100% !important;
  }

  .partnerpage-wraper .benefit-for-you {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }

  .partnerpage-wraper .partner-news .benefit-point ul li {
    display: block;
    width: 100%;
    min-height: auto;
    border: none;
  }

  .partnerpage-wraper #news {
    padding-bottom: 60px !important;
  }

  .partnerpage-wraper .partner-us {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .partnerpage-wraper .partner-us ul.vison-text-box li {
    width: 100%;
    min-height: 280px;
  }

  .partnerpage-wraper .shadow-icon {
    max-width: 150px;
  }

  .partnerpage-wraper .no-fund-carousel-section {
    margin-top: 60px;
  }

  .partnerpage-wraper #partner h2 {
    font-size: 24px;
  }

  .partnerpage-wraper .partner-box-text h3 {
    font-size: 24px;
  }

  .partnerpage-wraper .no-fund-carousel-section .owl-dot {
    width: 25%;
  }

  .partnerpage-wraper .no-fund-carousel-section .owl-dot.active button {
    padding: 6px 15px;
    font-size: 14px;
  }

  .partnerpage-wraper .no-fund-carousel-section h2 {
    margin-bottom: 30px;
  }

  .partnerpage-wraper .no-fund-carousel-section-right {
    padding: 15px 0 15px 10px;
  }

  .partnerpage-wraper .no-fund-carousel-section-right p {
    font-size: 14px;
  }

  .partnerpage-wraper .no-fund-carousel-section-right h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .partnerpage-wraper a.cmn-buttn.outline_button {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .partnerpage-wraper .ground-breaking {
    padding: 60px 0px;
  }

  .partnerpage-wraper .ground-breaking .event-left.business-advisor h2 {
    font-size: 28px;
    line-height: 40px;
    width: 100%;
  }

  .partnerpage-wraper .event-left.business-advisor h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .partnerpage-wraper .ground-logo {
    margin-bottom: 15px;
  }

  .partnerpage-wraper .ground-breaking .grount-first {
    padding-left: 0px;
    padding-right: 0px;
  }

  .partnerpage-wraper .grount-content.grount-first p {
    margin-bottom: 20px;
  }

  .partnerpage-wraper .ground-breaking .grount-content.grount-first p {
    width: 100% !important;
  }

  .partnerpage-wraper #lending-service {
    padding-top: 60px;
  }

  .partnerpage-wraper #lending-service .event-left.business-advisor h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .partnerpage-wraper .lending-icon-box {
    display: none;
  }

  .partnerpage-wraper ul.core-feture li {
    width: 50%;
    text-align: center;
    position: relative;
  }

  .partnerpage-wraper ul.core-feture li:first-child {
    width: 100%;
  }

  .partnerpage-wraper ul.core-feture li::after {
    display: none;
  }

  .partnerpage-wraper ul.core-feture {
    margin-top: 5px;
  }

  .partnerpage-wraper #our-solution h2 {
    font-size: 28px !important;
  }

  .partnerpage-wraper #our-solution h2 br {
    display: none;
  }

  .partnerpage-wraper .gallery-carousel {
    margin: 10px 0 0 5px;
  }

  .partnerpage-wraper .partner-gallery .gallery-carousel .big-news-hover-data {
    width: 95%;
    top: 30px;
    left: 12px;
  }

  .partnerpage-wraper .partner-gallery .gallery-carousel .big-news-hover-data h2 {
    font-size: 20px;
  }

  .partnerpage-wraper .partner-gallery .big-news-hover-data p {
    display: none;
  }

  .partnerpage-wraper .big-news-data-inner p {
    display: inline-block !important;
    font-size: 14px !important;
  }

  .partnerpage-wraper .news-div-top a {
    top: 0px !important;
    position: relative !important;
    margin-bottom: 15px !important;
  }

  .partnerpage-wraper .partner-gallery h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

/*------Home-Page-----*/
#section-2 ul li .inn-box-blur {
  /* opacity: 1;
  background: rgba(18, 22, 72, 0.8); */
  background: linear-gradient(132.6deg, rgba(199, 232, 237, 0.67) 0.22%, rgba(199, 232, 237, 0.1675) 99.53%);
  backdrop-filter: blur(5px);
}

#section-3 ul li .inn-box-blur {
  opacity: 1;
  background: rgba(18, 22, 72, 0.9);
}

/*------About-Us-Page-----*/
.about-us ._left_floting_image {
  background-position: center right !important;
  background-size: contain !important;
}

@media (max-width:1600px) {

  /*-----------Partnership---------------*/
  .partnerpage-wraper .ground-breaking .grount-content.grount-first p {
    width: 100%;
  }

  .partnerpage-wraper .grount-content.grount-first {
    padding-left: 50px;
  }
}

.partnerpage-wraper .lending-icon-box ul li:nth-child(2n+2) img.arrow-icon {
  rotate: -90deg !important
}

.partnerpage-wraper .lending-icon-box ul li img.arrow-icon {
  rotate: 0deg !important;
}

#Opportunities .Opportunities-detail {
  margin: 8px 8px;
}

/* job Detail page*/

.job_details {
  position: relative;
}

.job_details h2 {
  font-weight: 600;
  font-size: 32px !important;
  line-height: 75px;
  color: #02085E;
  opacity: 0.75;
  margin-bottom: 13px;
}

.job_details span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #02085E;
  opacity: 0.75;
  display: block;
}

.job_details b {
  font-weight: 600;
  font-size: 24px;
  line-height: 75px;
  color: #02085E;
  opacity: 0.75;
  margin-bottom: 13px;
  display: inline-block;
}

.job_details ol {
  list-style: none;
}

.job_details ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #02085E;
  opacity: 0.75;
  margin-bottom: 20px;
  position: relative;
}

.job_details ol li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  right: auto;
  margin: auto;
  content: "";
  height: 5px;
  width: 5px;
  background: #02085E;
  opacity: .75;
  border-radius: 50%;
}

.job_details::before {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  height: 1px;
  width: 1553px;
  background: #02085E;
  opacity: .75;
}

@media (max-width:1199px) {
  .deliver-benefit ul li:last-child {
    margin-bottom: 0px;
  }

  .inner-content h1 span {
    font-size: 65px;
    line-height: 50px;
  }

  .inner-content h1 {
    font-size: 36px;
    line-height: 1.4;
    width: 85%;
    margin-bottom: 30px;
  }

  .inner-content p {
    font-size: 18px;
    margin-bottom: 20px;
    width: 100%;
    line-height: 28px;
  }

  .inner-content-right span {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .inner-content-right p {
    font-size: 18px;
  }

  .get_in_touch {
    padding: 70px 0px;
    background-size: contain;
    background-position: 100% 49%;
  }

  .in-touch-cardio {
    padding-left: 50px;
    padding-top: 50px;
  }

  .in-touch-cardio h3 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 30px;
  }

  .in-touch-cardio ul.footer-middle li {
    margin-bottom: 25px;
  }

  .in-touch-cardio ul.footer-middle li {
    margin-bottom: 20px;
  }

  .deliver-benefit ul li .image-icon {
    margin-right: 30px !important;
    width: 60px !important;
  }

  .deliver-benefit ul li .deliver-text span {
    font-size: 18px;
    line-height: normal;
  }

  .deliver-benefit ul li {
    margin-bottom: 40px;
  }

  .copy_right {
    padding: 25px 20px;
  }
}

@media (max-width:991px) {
  .inner-content h1 span {
    font-size: 55px;
    line-height: 45px;
  }

  .egpt-banner {
    padding-top: 120px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .inner-content h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .inner-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 26px;
  }

  .inner-content .learn-mone {
    margin-top: 30px;
    width: 100%;
  }

  .inner-content-right span {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .inner-content-right p {
    font-size: 16px;
    line-height: normal;
  }

  .inner-content-right {
    padding-left: 30px;
    padding-top: 120px;
  }

  .get_in_touch {
    padding: 50px 20px;
  }

  .get_in_touch .col-sm-7 {
    width: 58.33333333% !important;
    flex: 0 0 auto !important;
    max-width: 100%;
  }

  .in-touch-cardio {
    padding-left: 0px;
    padding-top: 50px;
  }

  .get_in-touch-cardio ul.footer-middle li {
    margin-bottom: 20px;
    display: block;
  }

  .get_in_touch {
    padding: 50px 0px;
  }

  .get_in_touch .col-sm-7 {
    flex: 100% !important;
    width: 100% !important;
  }

  .get_in_touch .col-sm-5 {
    flex: 100% !important;
    width: 100% !important;
  }

  .deliver-benefit h4 {
    font-size: 27px;
    margin-bottom: 25px;
    line-height: 40px;
  }

  .deliver-benefit ul li .image-icon {
    margin-right: 30px;
    width: 50px;
  }

  .deliver-benefit ul li .deliver-text span {
    font-size: 18px;
    line-height: normal;
  }

  .deliver-benefit ul li .deliver-text p {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
  }

  .in-touch-cardio {
    padding-left: 0px;
    padding-top: 30px;
  }

  .in-touch-cardio ul.footer-middle li {
    margin-bottom: 30px;
    display: block;
  }

  .in-touch-cardio ul.footer-middle li a span.social-txt {
    font-size: 14px;
    line-height: 27px;
    width: 80%;
  }

  .copy_right {
    padding: 20px 20px;
  }
}

@media (max-width:767px) {
  .inner-content h1 span {
    font-size: 40px;
    line-height: 40px;
  }

  .egpt-banner {
    padding-top: 100px;
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .inner-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .inner-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 22px;
  }

  .inner-content .learn-mone {
    margin-top: 20px;
    width: 100%;
  }

  .inner-content-right span {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
  }

  .inner-content-right p {
    font-size: 14px;
    line-height: normal;
  }

  .inner-content-right {
    padding-left: 20px;
    padding-top: 100px;
  }

  .get_in_touch {
    padding: 40px 15px;
  }

  .get_in_touch .col-sm-7 {
    width: 100% !important;
    flex: 0 0 auto !important;
    max-width: 100%;
  }

  .in-touch-cardio {
    padding-left: 0px;
    padding-top: 30px;
  }

  .get_in-touch-cardio ul.footer-middle li {
    margin-bottom: 15px;
    display: block;
  }

  .get_in_touch {
    padding: 40px 0px;
  }

  .get_in_touch .col-sm-7 {
    flex: 100% !important;
    width: 100% !important;
  }

  .get_in_touch .col-sm-5 {
    flex: 100% !important;
    width: 100% !important;
  }

  .deliver-benefit h4 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 36px;
  }

  .deliver-benefit ul li .image-icon {
    margin-right: 20px;
    width: 45px;
  }

  .deliver-benefit ul li .deliver-text span {
    font-size: 16px;
    line-height: normal;
  }

  .deliver-benefit ul li .deliver-text p {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
  }

  .in-touch-cardio {
    padding-left: 0px;
    padding-top: 25px;
  }

  .in-touch-cardio ul.footer-middle li {
    margin-bottom: 20px;
    display: block;
  }

  .in-touch-cardio ul.footer-middle li a span.social-txt {
    font-size: 14px;
    line-height: 24px;
    width: 80%;
  }

  .copy_right {
    padding: 10px 10px;
  }
}


/*22Feb*/

@media (max-width:1199px) {
  .banner-curve {
    width: 300px;
    top: 18%;
    right: 15vw;
  }

  ._boxes::after {
    right: -34px;
    width: 400px;
    height: 450px;
  }

  .inn-box-txt {
    padding: 20px 15px 20px;
  }

  ul._inn_box li h4 {
    font-size: 26px !important;
  }

  ul._inn_box li p {
    margin-top: 40px;
  }

  ul._inn_box li {
    min-height: 400px;
  }

  ul._inn_box li a {
    font-size: 16px !important;
  }

  .vision {
    padding-top: 85px;
  }

  .vison-list ul.list-inner-vison li {
    font-size: 16px !important;
    margin: 3px 0px;
  }

  ul.vison-text-box li .vison-inner-box {
    min-height: 120px !important;
  }

  .ready-to h3 {
    font-size: 36px;
    line-height: 45px;
    margin: 25px 0;
  }

  .ready-to {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
  }

  ._testi_content p {
    font-size: 16px !important;
    line-height: 26px !important;
    padding-bottom: 20px !important;
  }

  ._testi_content {
    min-height: 280px;
  }

  .embed-finance.common-bg {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .solution-text h2 {
    font-size: 30px !important;
    line-height: 38px !important;
    width: 100% !important;
  }

  .solution-text p {
    font-size: 16px;
    margin-bottom: 20px;
    width: 100%;
  }

  .news-btn {
    top: 40%;
    left: 150px;
  }

  .trusted-brand-top {
    padding: 40px 0;
  }

  #trusted-business h2 {
    font-size: 36px;
  }

  #trusted-business p {
    font-size: 16px;
    line-height: 23px;
    width: 405px;
    margin-top: 15px;
  }
}

@media (max-width:991px) {
  .banner-curve {
    width: 250px;
    top: 25%;
    right: 12vw;
  }

  ._boxes::after {
    right: 6px;
    bottom: 150px;
    width: 400px;
    height: 450px;
  }

  #section-1,
  #section-2,
  #section-3 {
    padding: 70px 0px !important;
  }
}

@media (max-width:767px) {

  /*-----------HOME-PAGE----------*/
  .tab-photo-l {
    text-align: center;
  }

  .tabs-box {
    padding-top: 20px;
    margin-right: 0px;
  }

  .d_active {
    background-color: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
  }

  ._tab_cmn_box {
    padding: 0px 20px;
  }

  ._tab_cont {
    padding-bottom: 8px;
  }

  ._tab_cmn_box p br {
    display: none;
  }

  .dynamic-discounting {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .dynamic-discounting .b2b-sec-tabs h3 {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 10px;
    width: 100%;
  }

  .b2b-sec-tabs h3::before {
    top: 30px;
    left: -12px;
    height: 80px;
  }

  .tab_drawer_heading,
  .tab_drawer_heading2 {
    border-top: 1px solid #02085e;
    color: #02085e !important;
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid #02085e;
    margin-top: -1px;
  }

  .tab_container2 h5 img {
    height: auto;
    width: 20px;
    padding-right: 2px;
  }

  .dynamic-discounting .tab_drawer_heading {
    color: #02085e;
    margin-top: 10px;
    margin-bottom: 9px;
    padding-top: 5px;
    padding-bottom: 10px;
    position: relative;
    z-index: 999;
    border-top: none;
    border-bottom: 1px solid #02085e;
  }

  img.overlap-curve-b2b {
    width: 251px;
    right: 40px;
    bottom: -45px;
    z-index: 0;
  }

  .vision {
    height: 545px;
    padding-top: 50px;
  }

  .vision h3 {
    font-size: 26px;
    line-height: 31px;
  }

  ul.vison-text-box {
    top: 95px;
  }

  ul.vison-text-box li {
    margin: 0px 6px;
  }

  ul.vison-text-box li .vison-inner-box {
    padding-top: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
  }

  ul.vison-text-box li .vison-inner-box span img {
    width: 30px;
  }

  ul.vison-text-box li .vison-inner-box h4 {
    font-size: 22px;
    line-height: 26px;
  }

  .vison-list {
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
  }

  .vison-list ul.list-inner-vison li {
    font-size: 14px;
    margin: 2px 0px;
    padding-left: 13px;
  }

  ul.vison-text-box li {
    min-height: 345px;
  }

  .ready-to {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .ready-to img {
    width: 60px;
  }

  .news-body::after {
    display: none;
  }

  .embed-finance.common-bg .solution-img {
    text-align: center;
  }

  .embed-finance.common-bg .solution-img img {
    height: auto;
    width: 300px;
    margin-bottom: 40px;
  }

  .testimonial-section {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
  }

  .embed-finance.common-bg {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .embed-finance.common-bg .solution-text {
    text-align: center;
  }

  .embed-finance.common-bg .solution-text h2 br {
    display: none;
  }

  footer.footer_sec {
    text-align: center;
  }

  ul.header_social_info {
    text-align: center;
    margin-bottom: 10px !important;
  }

  .get-in-blur {
    width: 95%;
  }

  .tab_drawer_heading:hover {
    background: #fff;
    color: #02085e;
  }

  .tabs-text:hover .tab_drawer_heading:hover {
    background: #fff !important;
    color: #02085e !important;
  }

  .tabs-text .tab_drawer_heading.d_active {
    background: #fff;
    color: #02085e;
  }

  #next_ .tabs-box .tab_container .tab_drawer_heading.d_active {
    color: #02085e !important;
  }

  .right-nav .cmn-buttn {
    font-size: 16px !important;
    padding: 8px 15px;
    line-height: 30px !important;
  }

  section#next_ .tabs-box h5 {
    color: #fff !important;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
  }

  section#next_ .tabs-box h5h5.tab_drawer_heading.d_active {
    color: #02085e !important;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
  }

  #next_ .tabs-box .tab_container .tab_drawer_heading {
    color: #fff !important;
  }

  .banner-rebel.wow.fadeInRight.animated {
    position: relative;
    z-index: 999;
  }
}

@media (max-width: 640px) {

  /*-----------HOME-PAGE----------*/
  .banner-rebel img {
    width: 210px;
  }

  .banner-l {
    padding-left: 10px;
    position: relative;
    z-index: 999;
  }

  .dynamic-discounting ._tab_cmn_box {
    width: 210px;
    margin-right: 8px;
  }

  ul.vison-text-box li {
    min-height: auto;
    width: 300px;
    margin-bottom: 20px;
  }

  l.vison-text-box {
    top: 0px;
  }

  .vision {
    height: auto;
    padding: 100px 0px;
  }

  ul.vison-text-box {
    top: 5px;
  }

  .ready-to {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ready-to h3 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 15px;
  }

  .solution-text h2 {
    font-size: 24px;
    line-height: 34px;
    padding-right: 15px;
  }

  ul.touch-details li {
    padding-top: 15px;
  }

  .tab_drawer_heading,
  .tab_drawer_heading2 {
    border-top: 1px solid #02085e;
    font-size: 24px;
  }

  .dynamic-discounting ._tab_cmn_box h4 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 6px;
  }

  .dynamic-discounting ._tab_cmn_box p {
    font-size: 14px;
    line-height: 20px;
  }

  nav._sticky_nav {
    padding-top: 20px;
    top: 60px;
  }

  nav._sticky_nav h3 {
    font-size: 20px;
    line-height: 31px;
    padding-bottom: 10px;
    padding-left: 15px;
  }

  ul._inn_box li h4 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 30px;
  }

  ul._inn_box li a {
    font-size: 16px;
    line-height: 26px;
  }

  .vision h3 br {
    display: none;
  }

  .vision h3 {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 20px;
  }

  ul.four-step-list li {
    width: 100%;
    padding-left: 15px;
    padding-top: 15px;
    min-height: auto;
    padding-bottom: 10px;
    padding-right: 15px;
  }

  ul.four-step-list {
    margin-bottom: 85px !important;
  }

  ul.four-step-list li span br {
    display: none;
  }

  ul.four-step-list li p {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }

  ul.four-step-list li span {
    font-size: 20px;
    line-height: normal;
    padding-bottom: 5px !important;
  }

  ._testi_content {
    min-height: 300px;
  }

  .dropdown-menu ._tab_cont {
    padding-top: 30px;
  }
}

@media (max-width: 480px) {

  /*-----------HOME-PAGE----------*/
  .banner-l h1 {
    width: 99%;
    font-size: 32px;
    line-height: 42px;
  }

  img.banner-arrow {
    display: block !important;
    right: 48px !important;
  }

  .banner-rebel img {
    left: -92px !important;
  }

  .tabs-text {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .tab_drawer_heading,
  .tab_drawer_heading2 {
    font-size: 18px;
  }

  ._tab_cmn_box p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 22px;
  }

  .dynamic-discounting ._tab_cmn_box {
    width: 172px;
    margin-right: 8px;
  }

  .position-logo {
    float: none;
  }

  ._testi_content {
    min-height: auto;
  }

  .ready-to h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  ._testi_content p {
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 15px;
    width: 100%;
  }

  .news-body ul.news-list li .textnews p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 10px;
    width: 90%;
  }

  .in-the-news {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .solution-text h2 {
    font-size: 22px;
    line-height: 30px;
    padding-right: 15px;
  }

  .testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
    font-weight: 100;
    padding-right: 0;
    padding-left: 0;
  }

  .vision h3 {
    font-size: 22px;
    line-height: 26px;
    padding-bottom: 15px;
  }

  ul.vison-text-box li {
    min-height: auto;
    width: 100%;
    margin-bottom: 20px !important;
    margin: 0px;
  }

  .vison-list ul.list-inner-vison li {
    font-size: 14px;
    margin: 2px 0px !important;
    padding-left: 13px;
  }

  .dynamic-discounting {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .dynamic-discounting ._tab_cmn_box {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  section.side_sticky {
    padding: 0px 10px;
    padding-top: 30px;
  }

  #section-1,
  #section-2,
  #section-3 {
    padding-top: 50px;
  }

  ul._inn_box li {
    height: auto;
    width: 280px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 0px !important;
    margin-bottom: 10px !important;
  }

  ._boxes::after {
    width: 275px;
    height: 496px;
  }

  .vison-list {
    padding-bottom: 18px;
  }

  #slide-navbar-collapse {
    width: 100%;
  }

  @media (max-width:400px) {

    /*-----------HOME-PAGE----------*/
    .dynamic-discounting ._tab_cmn_box {
      width: 291px;
      margin-right: 0px;
      margin-bottom: 10px;
    }

    ul.header_social_info li a i img {
      width: 24px;
    }

    .banner-l {
      padding-left: 13px;
    }

    ul.tabs li {
      padding: 0px 11px;
    }

    .footer h2 {
      padding-left: 15px;
    }

    #milestones .nav-tabs ul li {
      margin: 10px 0px !important;
      width: 50% !important;
      text-align: center !important;
    }
  }

  /*23Feb*/

  section.side_sticky ul._inn_box li {
    min-height: 450px;
  }

  ul._inn_box li p {
    min-height: 100px;
  }


  .small-news-details h3 {
    min-height: 50px;
  }

  .in-touch-cardio ul.footer-middle li:last-child span.social-txt {
    text-transform: lowercase !important;
  }

  ul._inn_box li p {
    min-height: 100px !important;
  }


  /*Solution pages responsive*/

  @media (max-width:1366px) {

    /*------HOME-PAGE-------*/
    ul._inn_box li p {
      min-height: 125px;
    }

    /*-----------Solution Pages Responsive-------------*/
    .banner .banner-text-content span {
      font-size: 65px;
      line-height: 80px;
    }

    .dynamic-discount-banner label {
      font-size: 30px;
    }

    .dynamic-discount-banner p {
      font-size: 16px;
    }

    .dynamic-discount-banner a,
    .about-banner a {
      margin-top: 25px;
    }

    .benefit-right {
      padding: 40px 20px;
      margin: 70px 0;
    }

    .benefit-right h4 {
      font-size: 36px;
    }

    .benefit-right p {
      font-size: 16px;
    }

    .benefit-right-form {
      margin-top: 30px;
    }

    .submit-btn input.wpcf7-form-control {
      font-size: 16px;
    }

    a.cmn-buttn.outline_button {
      font-size: 16px;
    }

    .benefit-left {
      padding-top: 160px;
    }

    .benefit-left h2 {
      font-size: 36px;
      margin-bottom: 25px;
    }

    .benefit-left p {
      font-size: 16px;
      width: 85%;
    }

    .benefit-details h3 {
      font-size: 15px;
      margin-bottom: 25px;
    }

    a.cmn-buttn.outline_button {
      margin-top: 60px;
    }

    #ftce {
      padding: 70px 0 90px;
    }

    .bnpl-corporate #ftce .ftce-heading h2 {
      font-size: 36px;
      margin-bottom: 60px;
      margin-top: 50px;
    }

    .ftce-body-box h3 {
      font-size: 50px;
      line-height: 90px;
    }

    .ftce-body-box {
      padding: 30px 0;
    }

    .curve-town {
      padding: 80px 4px;
    }

    #no-fund {
      padding: 80px 0 80px;
    }

    .fund-right {
      padding-left: 30px;
    }

    .fund-right h2 {
      font-size: 36px;
      line-height: 46px;
    }

    .fund-right p {
      width: 100%;
      margin: 30px 0 20px;
      font-size: 16px !important;
      line-height: 29px;
    }

    .no-fund-carousel-section {
      margin-top: 80px;
    }

    .no-fund-carousel-section h2 {
      font-size: 36px;
      line-height: 60px;
      margin-bottom: 40px;
    }

    #cpchris {
      padding-top: 120px;
    }

    .no-fund-carousel-section-right p {
      font-size: 16px;
    }

    .bnpl-corporate .accordian_section {
      padding-top: 80px !important;
    }

    .accordian_section h3 {
      padding-bottom: 0px;
    }

    .trusted-brand-top {
      padding: 50px 0;
    }

    #trusted-business h2 {
      font-size: 36px;
    }

    ul._inn_box li p {
      min-height: 145px !important;
    }

    ul._inn_box li p {
      margin: 40px 0 60px !important;
    }

  }


  @media (max-width:1199px) {
    .why-lamaa-div ul li {
      width: 30.5%;
    }

    .why-lamaa-div ul {
      text-align: center;
    }

    .why-lamaa-div ul li {
      margin: 40px 10px 35px;
    }

    .why-lamaa-div h2 {
      font-size: 36px;
      line-height: 44px;
      margin-bottom: 20px;
    }

    .why-lamaa-div p {
      font-size: 16px;
      width: 100%;
    }

    .why-lamaa-div ul li .why-lamma-box-bottom label {
      font-size: 14px;
      padding-left: 15px;
    }



    /*-----------Solution Pages Responsive-------------*/
    .bnpl-corporate .ftce-div {
      width: 98%;
      margin: 0 auto;
    }

    .ftce-body-box p {
      font-size: 17px;
      line-height: 29px;
    }

    .bnpl-corporate .ftce-body-box h3 {
      font-size: 36px;
      line-height: 62px;
    }

    .bnpl-corporate .ftce-body-box {
      padding: 35px 0 25px;
    }

    .bnpl-corporate #ftce {
      padding: 50px 0 50px;
    }

    .bnpl-corporate #ftce .ftce-heading h2 {
      font-size: 32px;
      margin-bottom: 50px;
      margin-top: 40px;
    }

    .curve-town {
      padding: 60px 0px;
    }

    .fund-right h2 {
      font-size: 32px;
      line-height: 46px;
      width: 100%;
    }

    .fund-right {
      padding-left: 10px;
    }

    .fund-right p {
      width: 100%;
      margin: 20px 0 10px;
      font-size: 16px !important;
      line-height: 29px;
    }

    .no-fund-carousel-section h2 {
      font-size: 30px;
      line-height: 56px;
      margin-bottom: 40px;
    }

    .no-fund-carousel-section-right {
      padding: 40px 0 40px 20px;
    }

    .no-fund-carousel-section-right-img {
      width: 200px !important;
    }

    .no-fund-carousel-section-right p {
      font-size: 12px;
    }

    .bnpl-corporate .no-fund-carousel-section-right h4 {
      font-size: 26px;
      line-height: 42px;
    }

    #no-fund {
      padding: 60px 0 60px;
    }

    .no-fund-carousel-section .owl-dot button {
      font-size: 16px;
    }

    .accordian_section h3 {
      margin-bottom: 30px;
    }

    #trusted-business h2 {
      font-size: 32px;
    }

    #trusted-business p {
      font-size: 16px;
    }

    #trusted-business {
      margin-top: 20px;
    }

    .trusted-brand-top {
      padding: 20px 0 50px;
    }

    footer {
      padding: 50px 0 50px;
    }

    .footer-middle .social-txt {
      font-size: 18px;
    }

    .footer-middle a span.social-icon img {
      width: 18px;
    }

    .footer-middle h3 {
      font-size: 28px;
    }

    .footer-map-place {
      font-size: 16px;
    }

    #benefits .col-md-7,
    .col-md-5 {
      width: 100%;
      flex: 100%;
    }

    .benefit-left {
      padding-top: 60px;
    }

    .benefit-left p {
      font-size: 16px;
      width: 100%;
    }

    .benefit-left h2 {
      font-size: 34px;
      margin-bottom: 15px;
    }

    .benefit-details h3 {
      font-size: 16px;
      margin-bottom: 20px;
    }

    a.cmn-buttn.outline_button {
      margin-top: 40px;
      font-size: 1|6px;
    }

    .benefit-right {
      padding: 30px 15px;
      margin: 40px 0;
    }

    #no-fund .col-md-6 {
      width: 100%;
      flex: 100%;
    }

    .fund-left {
      padding-right: 0px;
      margin-bottom: 30px;
    }

    .bnpl-corporate .accordian_section {
      padding-top: 40px !important;
    }

    .bnpl-corporate .accordion-body p {
      font-size: 16px;
      width: 95%;
    }



  }


  @media (max-width:991px) {
    .why-lamaa-div ul li {
      width: 29.5%;
    }


    /*-----------Solution Pages Responsive-------------*/
    .bnpl-corporate .ftce-div {
      width: 98%;
      margin: 0 auto;
    }

    .ftce-body-box p {
      font-size: 16px;
      line-height: 27px;
    }

    .bnpl-corporate .ftce-body-box h3 {
      font-size: 36px;
      line-height: 60px;
    }

    .bnpl-corporate .ftce-body-box {
      padding: 30px 0 20px;
    }

    .bnpl-corporate #ftce {
      padding: 50px 0 50px;
    }

    .bnpl-corporate #ftce .ftce-heading h2 {
      font-size: 30px;
      margin-bottom: 50px;
      margin-top: 40px;
    }

    .curve-town {
      padding: 60px 0px;
    }

    .fund-right h2 {
      font-size: 30px;
      line-height: 42px;
      width: 100%;
    }

    .fund-right {
      padding-left: 10px;
    }

    .fund-right p {
      width: 100%;
      margin: 20px 0 10px;
      font-size: 14px !important;
      line-height: 29px;
    }

    .no-fund-carousel-section h2 {
      font-size: 30px;
      line-height: 56px;
      margin-bottom: 40px;
    }

    .no-fund-carousel-section-right {
      padding: 40px 0 40px 20px;
    }

    .no-fund-carousel-section-right-img {
      width: 200px !important;
    }

    .no-fund-carousel-section-right p {
      font-size: 14px;
    }

    .bnpl-corporate .no-fund-carousel-section-right h4 {
      font-size: 24px;
      line-height: 42px;
    }

    #no-fund {
      padding: 60px 0 60px;
    }

    .no-fund-carousel-section .owl-dot button {
      font-size: 14px;
    }

    .accordian_section h3 {
      margin-bottom: 30px;
    }

    #trusted-business h2 {
      font-size: 30px;
    }

    #trusted-business p {
      font-size: 16px;
    }

    #trusted-business {
      margin-top: 20px;
    }

    .trusted-brand-top {
      padding: 20px 0 50px;
    }

    footer {
      padding: 50px 0 50px;
    }

    .footer-middle .social-txt {
      font-size: 16px;
    }

    .footer-middle a span.social-icon img {
      width: 18px;
    }

    .footer-middle h3 {
      font-size: 26px;
    }

    .footer-map-place {
      font-size: 14px;
    }

    #benefits .col-md-7,
    .col-md-5 {
      width: 100%;
      flex: 100%;
    }

    .benefit-left {
      padding-top: 60px;
    }

    .benefit-left p {
      font-size: 14px;
      width: 100%;
    }

    .benefit-left h2 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .benefit-details h3 {
      font-size: 14px;
      margin-bottom: 20px;
    }

    a.cmn-buttn.outline_button {
      margin-top: 40px;
      font-size: 14px;
    }

    .benefit-right {
      padding: 30px 15px;
      margin: 40px 0;
    }

    #no-fund .col-md-6 {
      width: 100%;
      flex: 100%;
    }

    .fund-left {
      padding-right: 0px;
      margin-bottom: 30px;
    }

    .bnpl-corporate .accordian_section {
      padding-top: 40px !important;
    }

    .bnpl-corporate .accordion-body p {
      font-size: 14px;
      width: 95%;
    }





  }

  @media (max-width:767px) {
    .why-lamaa-div ul li {
      padding: 30px 15px 30px;
    }

    .why-lamaa-div ul li {
      width: 100%;
      height: auto;
      margin: 30px 8px 30px;
    }


    .bnpl-corporate .banner .banner-text-content span {
      font-size: 42px;
      line-height: 58px;
    }

    .bnpl-corporate .dynamic-discount-banner label {
      font-size: 24px;
    }

    .benefit-left h2 {
      font-size: 30px;
      margin-bottom: 15px;
    }

    .benefit-point {
      margin-top: 50px;
    }

    .form-field {
      margin-bottom: 15px;
    }

    .bnpl-corporate .ftce-body-box {
      padding: 25px 0 15px;
      margin: 10px 15px;
    }

    #no-fund {
      padding: 50px 0 50px;
    }

    .footer-bottom-first {
      text-align: center;
    }


  }

  @media (max-width: 640px) {
    .why-lamaa-div ul li {
      padding: 30px 15px 30px;
    }

    .why-lamaa-div ul li {
      width: 100%;
      height: auto;
      margin: 30px 8px 30px;
    }


    .bnpl-corporate .banner .banner-text-content span {
      font-size: 36px;
      line-height: 50px;
    }

    .benefit-point ul li {
      width: 100%;
    }

    .benefit-point ul li {
      width: 100%;
      padding: 0 10px;
      margin: 15px 0px;
    }



  }

  @media (max-width: 480px) {

    body h2,
    h3,
    h4 {
      font-size: 24px !important
    }

    .tab-dots-images {
      display: none !important;
    }

    body p {
      line-height: 27px !important;
      font-size: 14px !important;
    }

    footer {
      padding: 40px 11px 40px;
    }

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

    .fixed_header .navbar-brand {
      float: left;
      margin-left: 15px;
    }

    ._tab_cmn_box {
      padding: 0px 10px;
    }

    ul.vison-text-box li .vison-inner-box h4 {
      padding-left: 0px;
    }

    ul.vison-text-box li .vison-inner-box {
      min-height: 100px !important;
    }

    .img-logo {
      margin-left: 0px !important;
    }

    .news-btn {
      left: 0px !important;
    }

    .vision {
      padding: 40px 10px;
    }

    .commitment-data p br {
      display: none;
    }



    .toggle {
      width: 85px !important;
      font-size: 14px !important;
    }

    .navbar-inverse .navbar-toggle {
      margin-right: 15px !important;
    }

    .menu-mobile {
      right: 60px !important;
    }

    .toggle img {
      width: 20px !important;
      margin-right: 0px !important;
    }

    .home-page .tabs {
      width: 100% !important;
    }

    ._tab_cmn_box p {
      font-size: 16px !important;
      line-height: 1.4 !important;
      padding-left: 0px !important;
    }

    #section-1,
    #section-2,
    #section-3 {
      padding: 40px 0px !important;
    }

    .embed-finance.common-bg .solution-text {
      padding-left: 0px !important;
    }

    .solution-text h2 {
      font-size: 28px !important;
      padding-bottom: 20px !important;
    }

    .list {
      left: -80% !important;
    }

    .about-us .ground-breaking .ground-logo img {
      width: 100% !important;
      margin-bottom: 0px;
    }

    .about-us #our-solution .our-solution-left {
      margin-bottom: 40px;
      padding: 0px 10px;
    }

    .footer-map {
      padding: 0px 0px;
      margin-bottom: 15px;
    }

    .about-us .ground-breaking .ground-logo img {
      width: 300px !important;
    }

    .partnerpage-wraper #news {
      padding-left: 10px;
      padding-right: 10px;
    }

    .partnerpage-wraper .partner-us {
      padding-left: 10px;
      padding-right: 10px;
    }

    .resources-page #news {
      padding-left: 10px;
      padding-right: 10px;
    }

    .resources-page #event {
      padding: 20px 10px 40px !important;
    }

    .resources-page #gallery {
      margin: 0px 0 40px !important;
      padding-left: 10px;
      padding-right: 10px;
    }

    .big-news {
      margin-left: 0px !important;
    }

    .resources-page #blog .news-div-top {
      padding-top: 0px;
      padding-left: 10px;
      padding-right: 10px;
    }

    .partnerpage-wraper #partner-banner .about-banner-dots img {
      display: none;
    }

    #partner h2 {
      padding-left: 8px;
      padding-right: 8px;
    }

    .partnerpage-wraper .ground-breaking {
      padding: 20px 10px !important;
    }




    .why-lamaa-div ul li {
      width: 95%;
      height: auto;
      margin: 30px 8px 30px;
    }

    .benefit-point ul li {
      border-right: none;
      padding: 0 10px;
      min-height: auto;
      margin: 15px 0px;
    }

    .bnpl-corporate .banner .banner-text-content span {
      font-size: 32px;
      line-height: 48px;
    }

    discount-banner label {
      font-size: 20px;
    }

    .banner-text-content p {
      font-size: 14px;
      margin: 10px 0 0px;
    }

    .benefit-left h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .benefit-point {
      margin-top: 30px;
    }

    .benefit-left .book-a-demo {
      text-align: center;
    }

    a.cmn-buttn.outline_button {
      margin-top: 30px;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .benefit-right h4 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .benefit-right-form {
      margin-top: 20px;
    }

    .bnpl-corporate #ftce .ftce-heading h2 {
      font-size: 28px;
      margin-bottom: 30px;
      margin-top: 30px;
    }

    .bnpl-corporate .ftce-body-box h3 {
      font-size: 30px;
      line-height: 55px;
    }

    .curve-town {
      padding: 40px 0px;
    }

    #no-fund {
      padding: 40px 0 40px;
    }

    .fund-right h2 {
      font-size: 28px;
      line-height: 38px;
    }

    .no-fund-carousel-section h2 {
      font-size: 24px;
      line-height: 56px;
      margin-bottom: 30px;
    }

    .no-fund-carousel-section .owl-dot {
      width: 22.5%;
    }

    .no-fund-carousel-section .owl-dot.active button {
      padding: 6px 10px;
    }

    .no-fund-carousel-section-right-img {
      width: 170px !important;
    }

    button.accordion-button {
      padding-left: 15px !important;
    }

    .accordian_section h3 {
      padding-bottom: 15px;
    }

    .trusted-brand-top {
      padding: 10px 0 20px;
    }

    #trusted-business p {
      font-size: 14px;
    }

    #trusted-business p br {
      display: none;
    }

    .trusted-company {
      padding-bottom: 40px;
    }

    footer h2 {
      font-size: 28px;
    }

    .benefit-point ul li {
      width: 100%;
    }


  }


  @media (max-width:400px) {}


  ul._inn_box li p {
    min-height: 120px !important;
  }

  @media (max-width:1600px) {
    .banner-curve {
      right: 14vw;
      width: 500px;
    }
  }

  /*24 feb*/

  .small-news-details h3 {
    min-height: 60px;
  }

  .partnerpage-wraper .responsiveGallery-item:hover {
    opacity: .6 !important;
  }

  ul._inn_box li p {
    min-height: 120px !important;
  }

  @media (max-width:1600px) {
    .banner .banner-curve {
      right: 14vw;
      width: 500px;
    }
  }

  @media (max-width:1366px) {
    .banner .banner-curve {
      width: 550px !important;
      top: 10% !important;
      right: 10vw !important;
    }

    ul._inn_box li p {
      min-height: 145px !important;
    }

    ul._inn_box li p {
      margin: 40px 0 60px !important;
    }

  }

  #Opportunities form {
    background: linear-gradient(132.6deg, rgba(205, 210, 204, 0.3) 0.22%, rgba(205, 210, 204, 0) 99.53%);
    backdrop-filter: blur(7.5px);
    border-radius: 25px;
    padding-top: 88px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 103px;
    border: 1px solid #bdbfca;
  }

  #Opportunities form label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.15px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #02085E;
    opacity: 0.3;
    margin-bottom: 4px;
  }

  #Opportunities form textarea {
    opacity: 0.35;
    border: 1px solid #02085E;
    border-radius: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.15px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #02085E;
  }

  #Opportunities form .submit-btn button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: var(--theme-color-3);
  }

  #Opportunities form .submit-btn button:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  #Opportunities form .submit-btn button:hover {
    background: transparent;
  }

  #Opportunities form .text-area {
    display: inline-block;
    width: 100%;
  }

  #Opportunities form .submit-btn button {
    border: 2px solid #02085E;
    border-radius: 35px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    align-items: center;
    text-align: center;
    color: #02085E;
    width: 167px;
    height: 50px;
  }

  #Opportunities form input {
    opacity: 1;
    border-bottom: 1px solid #02085E !important;
    color: #02085E;
  }

  .job_details::before {
    width: 85% !important;
  }

  .navbar-nav .dropdown-menu .cmn_menu_box p {
    min-height: 90px;
  }

  #Opportunities form {
    background: linear-gradient(132.6deg, rgba(205, 210, 204, 0.3) 0.22%, rgba(205, 210, 204, 0) 99.53%);
    backdrop-filter: blur(7.5px);
    border-radius: 25px;
    padding-top: 88px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 103px;
    border: 1px solid #bdbfca;
  }

  #Opportunities form label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.15px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #02085E;
    opacity: 0.7;
  }

  #Opportunities form textarea {
    opacity: 0.35;
    border: 1px solid #02085E;
    border-radius: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.15px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #02085E;
  }

  #Opportunities form .submit-btn button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: var(--theme-color-3);
  }

  #Opportunities form .submit-btn button:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  #Opportunities form .submit-btn button:hover {
    background: transparent;
  }

  #Opportunities form .text-area {
    display: inline-block;
    width: 100%;
  }

  #Opportunities form .submit-btn button {
    border: 2px solid #02085E;
    border-radius: 35px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    align-items: center;
    text-align: center;
    color: #02085E;
    width: 167px;
    height: 50px;
  }

  #Opportunities form input {
    opacity: 0.75;
    border-bottom: 1px solid #02085E !important;
  }

  .job_details::before {
    width: 80% !important;
  }

  .benefit-right select {
    font-size: 14px !important;
  }

  .benefits-div .benefit-right select {
    font-size: 14px;
    position: relative;
    top: 10px;
  }

  .big-news .read-more a {
    color: #fff;
    border-color: #fff;
  }



            
      /*-------------EGPT-BANNER--------------*/    
      .egpt-banner {padding-top: 330px;padding-bottom: 124px;position: relative;padding-left: 196px;padding-right: 182px;height: auto;}
      .egpt-banner::after {content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: #121648;opacity: 0.65;}    
      .egpt-banner::before {content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: linear-gradient(180deg, #B672AF 0%, #FFE1D6 43.38%, #FDB8B2 64.83%, #8889AE 100%);mix-blend-mode: overlay;}    
          
      .inner-content h1 span {font-weight: 600;font-size: 115px;line-height: 72px;}    
      .inner-content h1 {color: #FFFFFF;text-shadow: 0px 0px 104px rgba(18, 22, 72, 0.52);width: 95%;margin-bottom: 40px;}    
      .inner-content p {font-weight: 400;font-size: 24px;line-height: 34px;color: rgba(255, 255, 255, 0.57);text-shadow: 0px 0px 104px rgba(18, 22, 72, 0.52);margin-bottom: 50px;position: relative;z-index: 99;}    

      .inner-content-right {padding-left: 150px;padding-top: 250px;}  
      .inner-content-right span {font-weight: 600;font-size: 24px;line-height: 38px;color:#FFFFFF;;text-shadow: 0px 0px 104px rgba(18, 22, 72, 0.52);position: relative;z-index: 99;width: 604px;display: inline-block;margin-bottom: 41px;}    
      .inner-content-right p {font-weight: 400;font-size: 20px;line-height: 30px;text-transform: lowercase;font-feature-settings: 'pnum' on, 'lnum' on;color: rgba(255, 255, 255, 0.69);position: relative;z-index: 99;width: 585px;}    
          
      .inner-content {position: relative;z-index: 99;}    
      .inner-content-right {position: relative;z-index: 99;} 
      /*-------------EGPT-BANNER--------------*/      
          
          
      /*-------------GET-IN-TOUCH--------------*/      
      .get_in_touch {padding: 160px 0px;background-position: right;background-repeat: no-repeat;}    
      .deliver-benefit h4 {font-weight: 600;font-size: 40px;line-height: 71px;color: #FFFFFF;text-shadow: 0px 0px 104px rgba(18, 22, 72, 0.52);margin-bottom: 55px;} 
      .deliver-benefit ul li {width: 100%;display: flex;margin-bottom: 70px;}    
      .deliver-benefit ul li .image-icon img {height: auto;width: auto;}    
      .deliver-benefit ul li .image-icon {margin-right: 38px;width: 100px;text-align: center;}  
      .deliver-benefit ul li .deliver-text span {font-weight: 600;font-size: 24px;line-height: 50px;color: rgba(255, 255, 255, 0.93);}    
      .deliver-benefit ul li .deliver-text p {font-style: normal;font-weight: 400;font-size: 20px;line-height: 30px;color: rgba(255, 255, 255, 0.45);width: 382px;}
          
      .in-touch-cardio {padding-left: 125px;padding-top: 156px;}    
      .in-touch-cardio h3 {font-weight: 600;font-size: 40px;line-height: 48px;font-feature-settings: 'pnum' on, 'lnum' on;color: #FFFFFF;width: 504px;margin-bottom: 92px;} 
      .in-touch-cardio ul.footer-middle {padding-top: 0px;} 
      .in-touch-cardio ul.footer-middle li {margin-bottom: 50px;}
      .in-touch-cardio ul.footer-middle li a span.social-txt {font-weight: 600;font-size: 18px;line-height: 27px;text-transform: capitalize;color: rgba(255, 255, 255, 0.45) !important;opacity: 1;width: 407px;display: inline-block;vertical-align: middle;}    
          
      /*--------------GET-IN-TOUCH--------------*/  
          
      .copy_right {padding: 32px 100px;background: #CDD2CC;mix-blend-mode: normal;}
      .copy-reserve p {display: inline-block;font-weight: 300;font-size: 12px;line-height: 18px;align-items: center;color: #121648;opacity: 0.5; }    
      .copy_right .social-media {margin: 0px;text-align: right;} 
          
          
      @media (max-width:1600px){
      .egpt-banner {padding-top: 220px;padding-bottom: 100px;padding-left: 120px;padding-right: 120px;}        
      .inner-content h1 {font-size: 50px;}  
      .inner-content h1 span {font-size: 85px;line-height: 62px;}    
      .inner-content p {font-size: 22px;margin-bottom: 30px;} 
      .inner-content-right {padding-left: 80px;padding-top: 200px;} 
      .inner-content-right span {font-size: 22px;line-height: 34px;margin-bottom: 30px;width: 100%;}    
      .inner-content-right p {font-size: 20px;line-height: 30px;width: 100%;}    
      .get_in_touch {padding: 100px 0px;}    
      .deliver-benefit h4 {font-size: 36px;margin-bottom: 40px;}    
      .in-touch-cardio h3 {font-size: 34px;line-height: 48px;margin-bottom: 60px;width: 100%;}
      .in-touch-cardio ul.footer-middle li a span.social-txt {font-size: 16px;line-height: 27px;width: 310px;}    
      .deliver-benefit ul li .deliver-text span {font-size: 22px;}    
      .deliver-benefit ul li .deliver-text p {font-size: 18px;line-height: 30px;width: 350px;}    
          
              
              
          }    
          
          
      @media (max-width:1366px){    
      .egpt-banner {padding-top: 150px;padding-bottom:100px;padding-left: 50px;padding-right: 50px;}    
      .inner-content h1 {font-size: 46px;line-height: 1.4;width: 85%;}    
      .inner-content p {font-size: 20px;margin-bottom: 20px;width: 100%;line-height: 30px;}    
      .inner-content-right span {font-size: 20px;line-height: 30px;margin-bottom: 25px;}    
      .inner-content-right p {font-size: 20px;}    
      .inner-content-right {padding-left: 50px;padding-top: 150px;}    
      .get_in_touch {padding: 80px 0px;}
      .deliver-benefit h4 {font-size: 32px;margin-bottom: 30px;line-height: 50px;}
      .deliver-benefit ul li {margin-bottom: 50px;} 
      .deliver-benefit ul li .image-icon img {width: 100%;}  
      .deliver-benefit ul li .image-icon {margin-right: 30px;  width: 70px;}    
      .deliver-benefit ul li .deliver-text span {font-size: 20px;line-height: normal;}    
      .deliver-benefit ul li .deliver-text p {font-size: 16px;line-height: 25px;width: 300px;}    
      .in-touch-cardio {padding-left: 75px;padding-top:55px;}    
      .in-touch-cardio h3 {font-size: 30px;line-height: 44px;margin-bottom: 40px;width: 100%;}    
      .in-touch-cardio ul.footer-middle li {margin-bottom: 30px;}    
          
          }
          

