
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #36BB91;
  --second-color: #2B4BFE;
  --white-color: #fff;
  --bg-color: #F3F5FA;
  --text-dark: #1C2528;
}


body {
  font-family: "Poppins", sans-serif;
  background-color: #020710;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
}

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.5s ease;
}

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

.link-two {
  color: var(--text-dark);
  transition: all 0.5s ease;
}

.link-two:hover {
  text-decoration: underline;
  color: var(--text-dark);
}

.link-one {
  color: var(--text-dark);
  transition: all 0.5s ease;
}

.link-one:hover {
  color: var(--text-dark);
  text-decoration: none;
}

.link-icon {
  color: var(--text-dark);
  font-weight: 500;
}

.link-icon span {
  font-size: 14px;
  padding-left: 4px;
  vertical-align: middle;
}

.link-a {
  text-decoration: none;
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .link-a {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .link-a {
    font-size: 1rem;
  }
}

.link-a:hover {
  color: #ffffff;
  text-decoration: none;
}

.link-a span {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .link-a span {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .link-a span {
    font-size: 18px;
  }
}

.text-brand {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .text-brand {
    font-size: 1.8rem;
  }
}

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

.color-b {
  color: var(--primary-color);
}

.color-d {
  color: #adadad;
}

.color-text-a {
  text-decoration: none;
  color: #555555;
}

.no-margin {
  margin: 0;
}


/*==== Mouse cursor css======= */
#cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

#cursor-border {
  --size: 50px;
  position: fixed;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--primary-color);
  pointer-events: none;
  transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
    height 0.15s ease-out, background-color 0.15s ease-out;
  z-index: 9999;
}







/*------/ Nav Pills  /------*/
.nav-pills-a {
  text-decoration: none;
}

.nav-pills-a.nav-pills .nav-link {
  color: var(--text-dark);
  position: relative;
  font-weight: 600;
}

.nav-pills-a.nav-pills .nav-link.active {
  background-color: transparent;
}

.nav-pills-a.nav-pills .nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  z-index: 2;
}

/*------/ Bg Image /------*/
.bg-image {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

/*------/ List a /------*/
.list-a {
  text-decoration: none;
  display: inline-block;
  line-height: 2;
  padding: 0;
  list-style: none;
}

.list-a li {
  position: relative;
  width: 50%;
  float: left;
  padding-left: 25px;
  padding-right: 5px;
}

@media (min-width: 992px) {
  .list-a li {
    width: 33.333%;
  }
}

.list-a li:before {
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  background-color: #313131;
  top: 15px;
  left: 0;
}

/*------/ Pagination-a /------*/
.pagination-a {
  text-decoration: none;
}

.pagination-a .pagination .page-link {
  margin: 0 0.2rem;
  border-color: transparent;
  padding: 0.5rem 0.8rem;
  color: var(--text-dark);
}

.pagination-a .pagination .page-link:hover,
.pagination-a .pagination .page-link:active,
.pagination-a .pagination .page-link:focus {
  background-color: var(--primary-color);
}

.pagination-a .pagination .page-link span {
  font-size: 1.2rem;
}

.pagination-a .pagination .next .page-link {
  padding: 0.4rem 0.9rem;
}

.pagination-a .pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-a .pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-a .pagination .page-item.disabled .page-link {
  padding: 0.4rem 0.9rem;
  color: #555555;
}

.pagination-a .pagination .page-item.active .page-link {
  background-color: var(--primary-color);
}

.a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.3rem;
}

/*------/ Icon Box /------*/
.icon-box .icon-box-icon {
  display: table-cell;
  vertical-align: top;
  font-size: 36px;
  color: var(--text-dark);
  width: 50px;
  padding-top: 8px;
}

.icon-box .icon-box-content {
  padding-top: 18px;
}

/*------/ Space Padding /------*/
.section-t8 {
  padding-top: 8rem;
}

@media (max-width: 767px) {
  .section-t8 {
    padding-top: 4rem;
  }
}

.section-t4 {
  padding-top: 4rem;
}

@media (max-width: 767px) {
  .section-t4 {
    padding-top: 2rem;
  }
}

.section-t3 {
  padding-top: 3rem;
}

@media (max-width: 767px) {
  .section-md-t3 {
    padding-top: 3rem;
  }
}

.section-b2 {
  padding-bottom: 2rem;
}

.section-tb85 {
  padding: 8rem 0 5rem 0;
}

@media (max-width: 767px) {
  .section-tb85 {
    padding: 4rem 0 2.5rem 0;
  }
}

/*------/ Title /------*/
.title-wrap {
  padding-bottom: 4rem;
}

.title-a {
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: 600;
}

.title-link {
  font-size: 1.2rem;
  font-weight: 300;
  padding-top: 1.2rem;
}

.title-link a {
  text-decoration: none;
  color: #313131;
}

.title-link span {
  font-size: 20px;
  padding-left: 4px;
  vertical-align: middle;
}

.title-box-d {
  padding-bottom: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.title-box-d .title-d {
  font-weight: 600;
  font-size: 2rem;
}

.title-box-d .title-d:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: 20px;
  left: 0;
}

/*------/ Display Table & Table Cell /------*/
.display-table {
  width: 100%;
  height: 100%;
  display: table;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

/*------/ Ul Resect /------*/
.ul-resect ul,
.box-comments ul,
.list-a ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/*------/ Overlay /------*/
.overlay-a {
  text-decoration: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
}

.carousel-pagination {
  margin-top: 10px;
  text-align: center;
}

.carousel-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 10px;
  background-color: #555;
  margin: 0 4px;
  border-radius: 0;
  opacity: 1;
  transition: 0.3s;
}

.carousel-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 36px;
}

.nav-arrow-a {
  text-decoration: none;
}

.nav-arrow-a .owl-arrow .owl-nav {
  font-size: 1.8rem;
  margin-top: -110px;
}

.nav-arrow-a .owl-arrow .owl-nav .owl-next {
  margin-left: 15px;
}

.nav-arrow-b .owl-arrow .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev,
.nav-arrow-b .owl-arrow .owl-nav .owl-next {
  padding: 0.7rem 1.5rem !important;
  display: inline-block;
  transition: all 0.6s ease-in-out;
  color: #ffffff;
  background-color: var(--primary-color);
  opacity: 0.9;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev.disabled,
.nav-arrow-b .owl-arrow .owl-nav .owl-next.disabled {
  transition: all 0.6s ease-in-out;
  color: #ffffff;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev:hover,
.nav-arrow-b .owl-arrow .owl-nav .owl-next:hover {
  background-color: #26a356;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-next {
  margin-left: 0px;
}

/*------/ Socials /------*/
.socials-a {
  text-decoration: none;
}

.socials-a .list-inline-item:not(:last-child) {
  margin-right: 25px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: transparent;
  color: #fff;
  border: 2px solid var(--primary-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*======================================
//--//-->   BUTTON
======================================*/
.btn {
  transition: 0.5s ease;
}

.btn.btn-a,
.btn.btn-b {
  border-radius: 0;
  padding: 1rem 3rem;
  letter-spacing: 0.05rem;
}

.btn.btn-a {
  text-decoration: none;
  background-color: var(--text-dark);
  color: #ffffff;
}

.btn.btn-a:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.btn.btn-b {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.btn.btn-b:hover {
  background-color: var(--text-dark);
  color: #ffffff;
}

.btn.btn-b-n {
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 0;
}

.btn.btn-b-n:hover {
  background-color: #26a356;
  color: #ffffff;
}

.navbar-toggle-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 10px;
}

.navbar-toggle-box i {
  line-height: 0;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar-default {
  transition: all 0.5s ease-in-out;
  background-color: #020710;
  padding-top: 15;
  padding-bottom: 15px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


.navbar-default .nav-search {
  color: var(--text-dark);
  font-size: 1.5rem;
}

.navbar-default.navbar-reduce {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  background-color: #020710;
}

.navbar-default.navbar-trans,
.navbar-default.navbar-reduce {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.navbar-default.navbar-trans .nav-item,
.navbar-default.navbar-reduce .nav-item {
  position: relative;
  padding-right: 10px;
  padding-bottom: 8px;
  margin-left: 0;
}

@media (min-width: 768px) {

  .navbar-default.navbar-trans .nav-item,
  .navbar-default.navbar-reduce .nav-item {
    margin-left: 15px;
  }
}

.navbar-default.navbar-trans .nav-link, .navbar-default.navbar-reduce .nav-link {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.1s ease-in-out;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.navbar-default.navbar-trans .nav-link:before,
.navbar-default.navbar-reduce .nav-link:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out 0.3s;
}

.navbar-default.navbar-trans .nav-link:hover,
.navbar-default.navbar-reduce .nav-link:hover {
  color: var(--text-dark);
}

.navbar-default.navbar-trans .nav-link:hover:before,
.navbar-default.navbar-reduce .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-default.navbar-trans .show>.nav-link:before,
.navbar-default.navbar-trans .active>.nav-link:before,
.navbar-default.navbar-trans .nav-link.show:before,
.navbar-default.navbar-trans .nav-link.active:before,
.navbar-default.navbar-reduce .show>.nav-link:before,
.navbar-default.navbar-reduce .active>.nav-link:before,
.navbar-default.navbar-reduce .nav-link.show:before,
.navbar-default.navbar-reduce .nav-link.active:before {
  transform: scaleX(1);
}

.navbar-default.navbar-trans .nav-link:before {
  background-color: var(--primary-color);
}

.navbar-default.navbar-trans .nav-link:hover {
  color: var(--primary-color);
}

.navbar-default.navbar-trans .show>.nav-link,
.navbar-default.navbar-trans .active>.nav-link,
.navbar-default.navbar-trans .nav-link.show,
.navbar-default.navbar-trans .nav-link.active {
  color: var(--primary-color);
}

.navbar-default.navbar-reduce {
  transition: all 0.5s ease-in-out 0s;
  padding: 0px;
  height: 80px;
}

.navbar-default.navbar-reduce .nav-link {
  color: var(--white-color);
}

.navbar-default.navbar-reduce .nav-link:before {
  background-color: var(--primary-color);
}

.navbar-default.navbar-reduce .nav-link:hover {
  color: var(--primary-color);
}

.navbar-default.navbar-reduce .show>.nav-link,
.navbar-default.navbar-reduce .active>.nav-link,
.navbar-default.navbar-reduce .nav-link.show,
.navbar-default.navbar-reduce .nav-link.active {
  color: var(--white-color);
}

.navbar-default.navbar-reduce .navbar-brand {
  color: var(--text-dark);
}
.logo img {
  height: 100px;
  width: auto;
}
.navbar-default .dropdown .dropdown-menu {
  border-top: 0;
  border-left: 4px solid var(--primary-color);
  border-right: 0;
  border-bottom: 0;
  transform: translate3d(0px, 40px, 0px);
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.3, 0.65, 0.355, 1) 0s, opacity 0.31s ease 0s, height 0s linear 0.36s;
  margin: 0;
  border-radius: 0;
  padding: 12px 0;
}

@media (min-width: 991px) {
  a.logo {
    text-align: center;
    margin: 0 auto;
}
}
@media (min-width: 768px) {
  .navbar-default .dropdown .dropdown-menu {
    border-top: 4px solid var(--primary-color);
    border-left: 0;
    display: block;
    position: absolute;
    box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(20, 19, 18, 0.1);
  }
}

.navbar-default .dropdown .dropdown-menu .dropdown-item {
  padding: 12px 18px;
  transition: all 500ms ease;
  font-weight: 600;
  min-width: 220px;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  transition: all 500ms ease;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item.active {
  background-color: #ffffff;
  color: var(--primary-color);
}

.navbar-default .dropdown:hover .dropdown-menu {
  transform: translate3d(0px, 0px, 0px);
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=1);
}

.nav_btn{
  margin-top: 10px;
}
.header_btn{
  padding: 7px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #fff;
  margin-top: 20px;
  border-radius: 15px;
}
.header_btn:hover{
  padding: 7px 20px;
  color: #000;
  font-size: 14px;;
  border: 1px solid #fff;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 15px;
}

/*------/ Hamburger Navbar /------*/
.navbar-toggler {
  position: relative;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}

.navbar-toggler span {
  display: block;
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  transform: rotate(0deg);
  left: 0;
  opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  transform: rotate(135deg);
  opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 10px;
  transform: rotate(-135deg);
  opacity: 0.9;
}

@media screen and (max-width: 991px) {
  .logo img{
    height: 60px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 560px;
}
#hero .container {
  margin-top: 60px;
}


#hero h4 {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 300;
  line-height: 56px;
  color: var(--white-color);
  margin-bottom: 30px;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 75px;
  font-weight: 500;
  line-height: 90px;
  color: var(--white-color);
}

#hero h2 {
  color: var(--text-dark);
  margin-bottom: 50px;
  font-size: 18px;
}
.hero_btn{
  margin-top: 30px;
  display: flex;
}
#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px 11px 25px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #000;
  background: var(--white-color);
  border: 2px solid var(--white-color);
  transition: .3s;
  margin: 0 10px;
}
#hero .btn-get-started1 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px 11px 25px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: var(--white-color);
  background:transparent;
  border: 3px solid var(--white-color);
  transition: .3s;
  margin: 0 10px;
}

#hero .btn-get-started:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
#hero .btn-get-started1:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media screen and (max-width: 991px) {
  #hero h4 {
    font-weight: 300;
    line-height: 56px;
  }
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 43px;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 20px;
}
  
  #hero h2 {
    font-size: 14px;
  }
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section_padding {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #F3F5FA;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  color: var(--white-color);
}

.section-title h5{
  color: #B3B4B7;
  font-weight: 600;
}
.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Shape img section
--------------------------------------------------------------*/
.shape_center{
  margin-top: -30px;
}
.shape_area img{
  height: 100%;
  width: 100%;
}
.shape_left{
  margin-left: -20px;
}
.shape_right{
  margin-right: -12px;
}

@media screen and (max-width: 991px) {
  .shape_left img{
    display: none;
  }
  .shape_right img{
    display: none;
  }
}





/*--------------------------------------------------------------
# Counter section
--------------------------------------------------------------*/
.counter_details{
  text-align: center;
}
.counter_details h5{
  font-size: 15px;
  color: #B3B4B7;
}
.counter_details h1{
  font-size: 50px;
  color: #fff;
  margin-top: 15px;
}


/*--------------------------------------------------------------
# Soros section css
--------------------------------------------------------------*/
.soros_section{
  border-bottom: 1px solid #B3B4B7;
  border-top: 1px solid #B3B4B7;
}
.soros_logo {
  width: 100%;
  margin-top: 50px;
}
.soros_text p{
  font-size: 18px;
  color: #B3B4B7;
  line-height: 40px;
  padding: 30px;
  text-align: center;
}
.soros_section .col-lg-5{
  text-align: center;
  border-left: 1px solid #B3B4B7;
  border-right: 1px solid #B3B4B7;
}
.soros_logo img{
  height: 160px;
  width: auto;
}

.text_end{
  text-align: end;
}
.text_start{
  text-align: start;
}
@media screen and (max-width: 991px) {
  .soros_section .col-lg-5{
    text-align: center;
    border-top: 1px solid #B3B4B7;
    border-bottom: 1px solid #B3B4B7;
    border-left: none;
    border-right: none;
  }
  .soros_section{
    border-bottom: 1px solid #B3B4B7;
    border-top: 1px solid #B3B4B7;
  }
  
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.chain_text_area{
  margin-top: 30px;
}
.chain_text_area h5{
  font-size: 18px;
  font-weight: 600;
  color: #B3B4B7;
}
.chain_text_area h1{
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 35px;
}
.chain_text_area p{
  font-size: 17px;
  color: #B3B4B7;
  line-height: 35px;
}
.chain_img img{
  height: 450px;
  width: auto;
}

.section_btn{
  margin-top: 50px;
}
.box_btn{
  padding: 12px 25px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-right: 15px;
  border-radius: 5px;
}
.box_btn:hover{
  background-color: #36BB91;
  color: #000;
  border-color: #36BB91;
}

/*--------------------------------------------------------------
# Source solution section css
--------------------------------------------------------------*/

.concept_area{
  margin-top: 50px;
  margin-bottom: 60px;
}
.concept_headig h5{
  font-size: 18px;
    font-weight: 600;
    color: #B3B4B7;
}
.concept_headig h1{
  font-size: 50px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  margin-top: 15px;
  margin-bottom: 35px;
}
.concept_text p{
  color: #B3B4B7;
  font-size: 17px;
  line-height: 35px;
}

.solution_map_area{
  background-image: url(../img/shape/map-bg.webp);

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution_card{
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  margin: 40px 0;
  transition: .3s;
}
.solution_card:hover{
  background-color: #36BB91;
}



/*--------------------------------------------------------------
# Build on source section
--------------------------------------------------------------*/
.build_section{
  margin-top: 100px;
  margin-bottom: 50px;
}
.build_area h1{
  font-size: 90px;
  font-weight: 600;
  color: #fff;
}
.build_btn{
  margin-top: 50px;
}
.build_btn a{
  padding: 10px 30px;
  border: 2px solid #36BB91;
  background-color: #36BB91;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: .3s;
}
.build_btn a:hover{
  background-color: #fff;
  border-color: #fff;
  color: #000;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  border-bottom: 1px solid #151922;
  border-radius: 4px;
  position: relative;
  color: #fff;
}
.faq .faq-list li i, p{
  color: #fff;
}
.faq .faq-list a {
  display: block;
  position: relative;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding: 0px 30px;
  outline: none;
  cursor: pointer;
}
.faq_list_option{
}
.faq .faq-list .faq_list_option li{
  margin-top: 0;
}
.faq_list_option li{
  line-height: 0;
  padding: 0;
  margin: 0;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #36BB91;
}
.faq-list .faq_list_option li{
  border-bottom: none;
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #36BB91;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}




/*--------------------------------------------------------------
# contact us page
--------------------------------------------------------------*/
.contact_us{
  margin-top: 70px;
}
.getin_touch {
  margin-top: 50px;
}
.getin_touch h4{
  font-size: 18px;
  font-weight: 600;
  color: #B3B4B7;
  margin-bottom: 20px;
}
.getin_touch h1{
  font-size: 50px;
  color: #fff;
}


.contact_icon{
  border-bottom: 1px solid #181D26;
  padding-bottom: 24px;
}
.social_icon{
  margin: 0;
  padding: 0;
}
.social_icon li{
  list-style: none;
  display: inline;
  text-align: center;
}
.telegram i{
  height: 50px;
  width: 50px;
  border-radius: 5px;
  background-color: #2CA5E0;
  color: #fff;
  line-height: 47px;
  font-size: 30px;
}
.tiktok i{
  height: 50px;
  width: 50px;
  border-radius: 5px;
  background-color: #252525;
  color: #fff;
  line-height: 47px;
  font-size: 30px;
}
.twiter i{
  height: 50px;
  width: 50px;
  border-radius: 5px;
  background-color: #1DA1F2;
  color: #fff;
  line-height: 47px;
  font-size: 30px;
}
.instagram i{
  height: 50px;
  width: 50px;
  border-radius: 5px;
  background-color: #252525;
  color: #fff;
  line-height: 47px;
  font-size: 30px;
}
.linkedin i{
  height: 50px;
  width: 50px;
  border-radius: 5px;
  background-color: #0077B5;
  color: #fff;
  line-height: 47px;
  font-size: 30px;
}






.social-menu {
  display: flex;
  justify-content: center;
}
.social-btn {
  list-style: none;
  margin: 3px;
  border-radius: 30%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 10px;
}
.social-btn a {
  text-decoration: none;
  color: #fff;
}
.social-btn:hover a {
  color: #fff;
}
.social-menu .social-btn::before {
  content: attr(tooltip);
  position: absolute;
  top: 0;
  font-size: 14px;
  font-weight: bold;
  z-index: -1;
  opacity: 0;
  pointer-events: auto;
  background: #fff;
  padding: 8px;
  color: #000;
  letter-spacing: 1px;
  transition: all 0.3s ease-out;
}

.footer_social .social-menu .social-btn::before {
  content: attr(tooltip);
  position: absolute;
  top: 0;
  font-size: 14px;
  font-weight: bold;
  z-index: -1;
  opacity: 0;
  pointer-events: auto;
  background: #fff;
  padding: 3px 8px;
  color: #000;
  letter-spacing: 1px;
  transition: all 0.3s ease-out;
}
.footer_social .social-menu .social-btn::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  opacity: 0;
  background: #fff;
  transform: rotate(45deg);
  left: 20%;
  z-index: -2;
  transition:
    all 0.3s ease-out;
}

.social-menu .social-btn:hover::before {
  top: -45px;
  opacity: 1;
}
.social-btn:hover::after {
  top: -12px;
  opacity: 1;
}
.telegram a {
  color: #3b5999;
}
.telegram:hover,
.telegram:hover .social-btn:before,
.telegram:hover .social-btn:after {
  background: #3b5999;
}
.instagram a {
  color: #962fbf;
}
.instagram:hover,
.instagram:hover .social-btn:before,
.instagram:hover .social-btn:after {
  background: #962fbf;
}
.pinterest a {
  color: #c8232c;
}
.pinterest:hover,
.pinterest:hover .social-btn:before,
.pinterest:hover .social-btn:after {
  background: #c8232c;
}
.linkedin a {
  color: #0072b1;
}
.linkedin:hover,
.linkedin:hover .social-btn:before,
.linkedin:hover .social-btn:after {
  background: #0072b1;
}
ul.social-menu li a i {
  font-size: 31px;
}







.contact_form{
  margin-top: 10px;
}
.contact_form input{
  height: 42px;
  width: 300px;
  border-bottom: 1px solid #181D26;
  border-radius: 15px;
  outline: none;
  padding: 10px;
}
.contact_form button{
  background-color: #444444;
  border: none;
  color: #fff;
  height: 40px;
  border-radius: 15px;
  padding: 0 20px;
  margin-left: 20px;
}





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.section-footer {
  padding-top: 60px;
  margin-top: 60px;
}

.section-footer ul {
  line-height: 2;
}

.footer_social{
  margin-top: 30px;
}

.copyright_text p, a{
  color: #B3B4B7;
  font-size: 14px;
}

.list-inline-item:not(:last-child) {
  margin-right: .5rem;
  margin: 0 20px;
  font-size: 12px;
}
.footer_content p{
  font-size: 19px;
  color: #B3B4B7;
  line-height: 20px;
  margin-bottom: 20px;
}
.copyright_text p{
  font-size: 12px;
}
.section-footer .item-list-a i {
  font-size: 18px;
  padding-right: 4px;
  color: var(--primary-color);
}
.footer_heading h3{
  font-size: 20px;
  font-weight: 600;
  color: #B3B4B7;
}
.footer_list{
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer_list li{
  list-style: none;
  line-height: 22px;
}
.footer_list li a:hover{
  margin-left: 10px;
}

footer {
  text-align: center;
  padding: 30px 0;
}

footer .copyright-footer {
  padding-top: 20px;
}

footer .credits {
  font-size: 14px;
}



/*========== responsive css start here ============= */

@media (max-width: 991px) {
  .navbar .logo {
    text-align: center;
    margin: 0 auto;
  }
  .counter_section {
    display: none;
  }
  .soros_section{
    margin-top: 30px;
  }
  .soros_logo {
    width: 100%;
    margin-top: 10px;
  }
  .text_end{
    text-align: center;
  }
  .chain_text_area {
    margin-top: 10px;
  }
  .chain_text_area h1 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .text_start{
    text-align: center;
  }
  .concept_area{
    margin-bottom: 0;
  }
  .solution_map{
    display: none;
  }

  .solution_card {
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    margin: 30px 0;
    transition: .3s;
  }
  .card_area_2{
    margin-top: -30px;
  }
  .build_area h1 {
    font-size: 43px;
    font-weight: 600;
    color: #fff;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .getin_touch h1 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
  }
  .mobile_d{
    display: none;
  }
}
@media (max-width: 768px) {
  #hero h4 {
    font-weight: 300;
    font-size: 23px;
    line-height: 30px;
  }
  .hero_btn{
    margin: 0 100px;
    display: contents;
  }
  .button_top{
    margin-bottom: 20px;
  }
  .hero_content .hero_btn .btn_margin{
    padding: 20px 0;
  }
  .chain_img img {
    height: 300px;
    width: auto;
  }
  .shape_area img {
    height: 320px;
    width: auto;
}
  
}
@media (max-width: 480px) {
  .soros_logo{
    margin-top: 0;
  }
  .soros_logo img {
    height: 120px;
    width: auto;
}
  .contact_form input {
    height: 42px;
    width: 200px;
  }
}

  /* Estilos para la cuadrícula de imágenes */
.partners-grid {
    padding: 2%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Columnas de tamaño mínimo de 150px */
    gap: 20px; /* Espacio entre imágenes */
}

.partners-grid img {
    max-width: 100%; /* Para que las imágenes no excedan el ancho de su contenedor */
    height: auto; /* Para mantener la proporción de aspecto */
    transition: transform 0.3s ease; /* Transición suave para el efecto hover */
}

.partners-grid img:hover {
    transform: scale(1.1); /* Escala la imagen al 110% cuando se hace hover */
}

/* Estilos para el texto */
.partners-text {
  text-align: center; /* Centra el texto horizontalmente */
  color: #B3B4B7; /* Color del texto */
  font-size: 18px; /* Tamaño de fuente */
}