* {box-sizing: border-box;}

body { 
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
body {
    font-family: Montserrat, sans-serif;
  }
.logo_img{
    height:60px;
    object-fit: cover;
 }
  .nav_color{
    color:#445378!important;
  }
.input-group.add-on {
    background: #f5f4f9;
    border-radius: 30px;
    border: 2px solid #efefef;
    padding: 4px;
    margin-top: 4px;
}  
.nav_height {
    height: 100px;
    padding: 0px 20px;
}
input#srch-term {
    background: #f5f4f9;
    border: none;
    color: #1c354e;
    font-weight: 500;
}
.login {
    background: #f5f4f9;
    border: none;
    padding: 10px 20px;
    color: #1c354e;
    font-weight: 500;
    border-radius: 30px;
    border: 2px solid #efefef;
    width: 98px;
    text-align: center;
    margin-right: 10px;
}
.login:hover{
    background: #38ddbb;
    color: #fff !important;
    border: 2px solid #38ddbb;
}
.signup{
    background: #38ddbb;
    border: none;
    padding: 9px 20px;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    width: 98px;
    text-align: center;
    border: 2px solid #38ddbb; 
}
.signup:hover{
    background: #f5f4f9;
    border: 2px solid #efefef;  
}
.heading_mark {
    font-size: 46px;
    text-align: center;
    line-height: 60px;
    font-weight: 800;
    margin-bottom:50px;
}
.read_more{
    background: #38ddbb;
    border: none;
    padding: 15px 34px;
    color: #000;
    font-weight: 500;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #38ddbb;  
    font-weight: 600;
}
.first_section {
    text-align: center;
    padding: 140px 0 60px;
}
.banner_part{
    margin-top:50px;
}
.slick-slider {
    position: relative;
    display: block;
    padding: 10px 60px;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  
  .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  .slick-list:focus {
    outline: none;
  }
  
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
  }
  
  .slick-track:before,
  .slick-track:after {
    display: table;
    content: "";
  }
  
  .slick-track:after {
    clear: both;
  }
  
  .slick-loading .slick-track {
    visibility: hidden;
  }
  
  .slick-slide {
    display: none;
    float: left;
    text-align: center;
    height: 100%;
    min-height: 1px;
  }
  
  [dir="rtl"] .slick-slide {
    float: right;
  }
  
  .slick-slide img {
    display: block;
  }
  
  .slick-slide.slick-loading img {
    display: none;
  }
  
  .slick-slide.dragging img {
    pointer-events: none;
  }
  
  .slick-initialized .slick-slide {
    display: block;
  }
  
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }
  
  .slick-arrow.slick-hidden {
    display: none;
  }
  
  
  
  
  
  
  /* Default styles for the arrows */
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 0; /* hide the text content of the arrows */
    cursor: pointer;
    transition: all 0.3s ease;
    border: none; /* remove the default arrow styles */
    background: transparent; /* remove the default arrow styles */
    outline: none; /* remove the default arrow styles */
  }
  
  .slick-prev:before,
  .slick-next:before {
    content: "";
    display: inline-block;
    width: 15px; /* adjust the width as needed */
    height:15px; /* adjust the height as needed */
    border: solid #4f47fd; /* set the border color */
    border-width: 0 3px 3px 0; /* create the arrow shape */
    transform: rotate(-45deg); /* rotate the arrow shape */
  }
  
  .slick-prev:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border: solid #4f47fd;
    border-width: 0 3px 3px 0;
    transform: rotate(135deg); /* adjust the rotation to point the arrow to the left */
  }
  
  /* Styles for the arrows on smaller screens */
  @media screen and (max-width: 768px) {
    .slick-prev:before,
    .slick-next:before {
      width: 15px;
      height: 15px;
      border-width: 0 2px 2px 0;
    }
    
    .slick-prev {
      left: 10px;
    }
    
    .slick-next {
      right: 10px;
    }
  }
  
  /* Styles for the arrows on even smaller screens */
  @media screen and (max-width: 520px) {
    .slick-prev:before,
    .slick-next:before {
      width: 12px;
      height: 12px;
      border-width: 0 1px 1px 0;
    }
    
    .slick-prev {
      left: 5px;
    }
    
    .slick-next {
      right: 5px;
    }
  }
  
  /* Position the arrows outside the slider */
  .slick-prev {
    left: 8px; /* adjust the distance from the left side of the slider */
  }
  
  .slick-next {
    right: 8px; /* adjust the distance from the right side of the slider */
  }
  .slide img{
    object-fit: cover;
    width:160px;
  }
  .logo_slider{
    padding:60px 0;
  }
  .our_parnters{
    font-size:40px;
    font-weight:500;
    line-height:50px;
    margin-bottom:30px;
  }
  .footer_part{
    background-color: #f0f0f2;
    padding: 80px 0;
  }
  .light_shadow {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 5%), 0 6px 20px 0 rgb(0 0 0 / 5%);
    width: 100%;
    padding: 12px;
    border-radius: 70px;
}
.first_part p {
    font-size: 16px;
    line-height: 28px;
    color: #44475a;
}


ul.social_icons {
    padding-left: 0px;
}
.social_icons li {
    display: inline-block;
    margin-right: 2px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 50%;
}
.list_footer li {
    list-style-type: none;
    padding: 6px 0;
}
.list_footer li a {
    text-decoration: none;
    color:#44475a;
}
ul.list_footer {
    padding-left: 0px;
}
.second_part {
    padding-left: 26px;
}
header {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 9999999999;
}
.product_heading{
    font-weight:600;
    color:#44475a;

}

.content input{
    display: none;
}
  
.content{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .content .list{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 80%;
    margin-right: 50px;
  }
.text-content .text{
    text-align: center;
}
.text-content .text img {
    width: 70% ; 
}
.font_icon{
    margin-right: 10px;
    font-size: 24px;
}
  .content .list label {
    cursor: pointer;
    height: 56px;
    line-height: 60px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    color: #000 !important;
    padding-left: 25px;
    transition: all 0.5s ease;
    z-index: 10;
    margin-bottom: 16px;
    border-radius: 20px;
    background: #eeeeee;
}
.tab_innerimg {
    width:40px;
    margin-right:6px;
}
label.home {
    background: #34dcaf !important;
}
  
  #home:checked ~ .list label.home,
  #blog:checked ~ .list label.blog,
  #help:checked ~ .list label.help,
  #code:checked ~ .list label.code,
  #about:checked ~ .list label.about{
    color: #22272C;
  }
  
  .content .slider{
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 100%;
    border-radius: 12px;
    transition: all 0.5s ease;
   
  }
  
  .content .text-content{
    width: 80%;
    height: 100%;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .content .text{
    display: none;
  }
  
  .content .text .title{
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .container .text p{
    text-align: justify;
  }
  
  .content .text-content .home{
    display: block;
  }
  
  #home:checked ~ .text-content .home,
  #blog:checked ~ .text-content .blog,
  #help:checked ~ .text-content .help,
  #code:checked ~ .text-content .code,
  #about:checked ~ .text-content .about, 
  #handcraft:checked ~ .text-content .handcraft,
  #digital:checked ~ .text-content .digital{
    display: block;
  }
  
  #blog:checked ~ .text-content .home,
  #help:checked ~ .text-content .home,
  #code:checked ~ .text-content .home,
  #about:checked ~ .text-content .home,
  #handcraft:checked ~ .text-content .home,
  #digital:checked ~ .text-content .home{
    display: none;
  }
  
  .content .list label:hover{
    color: #000;
  }
  .content .list label:hover{
    background:#34dcaf!important;
  }
  .invest{
    color:#000;
    font-size:20px;
  }
 .h2_invest {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
}
.third_section{
    padding:60px 0 ;
}
.second_section{
    padding:60px 0; 
}
.blue_box {
    border: 1px solid #000;
    height: 80px;
    border-radius: 6px;
    margin-bottom: 30px;
    display: flex;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 5%), 0 6px 20px 0 rgb(0 0 0 / 5%);
    align-items: center;
}
.content_part{
    padding-left:20px;
    font-size:20px;
    font-weight:28px;
}
.img_size{
    width: 76px;
    border-radius: 6px 0px 0px 6px;
}
.heading_span{
    font-size:20px;
    font-weight:bold;
    margin-bottom: 10px;
}
.points {
  box-sizing: border-box;
  border-bottom: 1px solid #000;
  height: 80px;
  margin-left: 20%;
  margin-bottom: 20px;
}
.points:last-child{
  border:none;
}
.points img{
  float:left;
  width:15%;
}
.points p{ 
  float:right; 
  width:82%;
}
.find{
  float:right; 
  width:82%;
}
.invest_now {
  background-color: #38ddbb;
  color: #000;
  text-decoration: none;
  padding: 15px 50px;
  border-radius: 100px;
  margin:2px;
  outline: 2px dashed #b48dfe;
}
.button_part{
  padding-top:30px;
  margin-left: 20%;
}
.blue_box.active{
  background-color: #adfae8;
  border:1px solid #b48dfe;
}
.blue_box.active:hover{
  background-color: #fff;
}
.blue_box:hover{
  background-color: #adfae8;
  border:1px solid #b48dfe;
}
.opportunity{
  font-size:40px;
  font-weight:bold;
  color:#000;
  text-align: center;
  margin-bottom:50px;
}
.opportunity span{
  color:#8447fd;
}
.content_right {
  text-align: left!important;
  float:left!important;
}



.tab {
  float: left;
}
.tabcontent img{
  width:50%;
  padding: 20px;
}
.tabcontent img {
  width: 100%;
  padding: 0px;
  text-align: center;
  margin: 110px 0px;
}
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 5px 5px;
  border: none;
  outline: none;
  float: right;
  text-align: right;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  border-radius: 56px;
  margin-bottom: 16px;
  display: block;
  width: 100%;
}


.tab button.purple{
  background-color: #8346fd91!important;
  color: #fff;
    font-weight: 600;
	font-size: 15px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 5px 0 rgba(0, 0, 0, 0.19);
}
/* .tab button:hover {
  background-color: #bee9f7;
} */
.smallimg{
  width:65px;
}

.tab button.light_blue {
  background-color: #adfae8!important;
  color: #000 !important;
  font-weight:bold;
  

}
.tab button.light_blue1 {
  background-color: #adfae8!important;
  color: #000 !important;
  font-weight:bold;
  font-size: 15px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 5px 0 rgba(0, 0, 0, 0.19);
}

.tabcontent {
  padding: 0px 12px;
  border-left: none;
}
.invest_nowbigger{
  background-color: #f5f4f9;
  color: #000;
  text-decoration: none;
  padding: 15px 70px;
  border-radius: 100px;
  margin:2px;
  font-size:24px;
  outline: 2px dashed #b48dfe;
  border:none;
}

button.tablinks.purple.mr-5 {
    margin-right: 3rem!important;
}


button.tablinks.purple.mr-4 {
    margin-right: 4rem!important;
}
.ml-1{
    margin-right:0.5rem;
}
.mr-1{
    margin-right:0.1rem;
}

.hover-1:hover{
    background:#8346fd;
    color: #fff;
    outline: 2px dashed #b48dfe;
}
.hover-2:hover{
    background:#adfae8!important;
    color: #000;
    outline: 2px dashed #b48dfe;
}
.digital:hover, .handcraft:hover, .about:hover, .code:hover, .help:hover, .blog:hover, .home1:hover {
         transform: scale(1.1)
      }
      
      .btnhover:hover {
         transform: scale(1.1)
      }
      
      
      
.custom-pad{padding: 0px 10px 0px 0px;}



#mobile-cover{
    background-image: url(images/phone.svg);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    height: 493px !important;
    width: 450px;
}
video {
    padding-top: 50px;
}
    @media only screen and (min-width: 1200px) and (max-width: 1380px)
        {
.tab1{font-size:12px;}

}


    @media only screen and (min-width: 200px) and (max-width: 1000px)
        {
#header-container{
    padding:0px!important;
}
.img-container img{width:100%!important;}
.mobile-order-1{
    order:2;
}
.mobile-order-2{
    order:1;
}
}


.ball-2 {
    left: 17%;
    top: 30;
    position:absolute;
}


.ball-1 {
  top: calc(200% - 100px);
    right: 100px;
    position: absolute;
}

.ball-3 {
  top: calc(200% - 100px);
    left: 35%;
    position: absolute;
}
#mobile-bg{
    width:350px!important;
}
#video-mobile {
  margin: -59px 0px 46px 100px;
}
/*faq page*/
.accordion-item {
   
    border: var(--bs-accordion-border-width) solid #dee2e600;
}


button.accordion-button.collapsed {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    color: #000 !important;
    padding-left: 25px;
    transition: all 0.5s ease;
    z-index: 10;
    margin-bottom: 16px;
    border-radius: 20px;
    background: #eeeeee;
}


.accordion-button:not(.collapsed) {
   
    background-color: #38ddbb;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    color: #000 !important;
    padding-left: 25px;
    transition: all 0.5s ease;
    z-index: 10;
    margin-bottom: 16px;
    border-radius: 20px;
 

}



.btn-p {
	cursor: pointer;
	text-indent: -9999px;
	width: 110px;
	height: 40px;
	background: #8745ff;
	/*display: block;*/
	border-radius: 100px;
	position: relative;
}

.btn-p:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

input:checked + .btn-p {
	background: #38ddbb;
}

input:checked + .btn-p:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

.btn-p:active:after {
	width: 130px;
}

.four-section img:before{
       content: '';
    position: absolute;
    top: 3%;
    bottom: 0;
    width: 1px;
    background: #ccc;
    left: 8%;
    height: 100%;
}

.bg-section{background-image: url("images/icons/shape-12.png");
        background-size: contain;
/*background-size: contain;*/
    background-repeat: no-repeat;
    background-position: center;
    
}
.pl-1{padding-left:2rem;}

.bckground-form{
        background-image: url("images/Ellipse-1-copy (1).png");
    background-repeat: no-repeat;
    background-position: 100% 0%;
    background-size: 50%;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe00;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}
.form-control{background-color: #f5f5f5 !important;}
.fade:not(.show) {
    opacity: 1;
}
.iti{width:100%;}