.row-gap-4 {
    row-gap: 1.5rem !important;
	display: flex;
    flex-wrap: wrap;
}
	
.row.row-gap-4 > div {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
}
	
.order-2 {
    order: 2 !important;
}
@media (min-width: 768px) {
    .order-md-1 {
        order: 1 !important;
    }
}
@media (min-width: 768px) {
    .order-md-2 {
        order: 2 !important;
    }
}	
.about-img-1 {
    border-radius: 60px 16px 16px 16px;
}
.about-img-2 {
    border-radius: 16px 16px 80px 16px;
}	
.mb-24 {
    margin-bottom: clamp(18px, 1.25vw, 48px);
}
.experience-block {
    width: 100%;
    padding: clamp(18px, 1.25vw, 48px);
    border-radius: clamp(12px, 0.833vw, 32px);
    background-color: #209546;
	color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}	
	
.experience-block h2{
    font-weight: 700;
    margin-bottom: 5px;
}
	
@media (max-width: 490px) {
.row-gap-4 {
    row-gap: 1rem !important;
    display: flex;
    flex-direction: column;
}	
	
 .about-img-1 {
        border-radius: clamp(12px, 0.833vw, 32px);
        height: 240px;
        object-fit: cover;
    }
.about-img-2 {
        border-radius: clamp(12px, 0.833vw, 32px);
        object-fit: cover;
        height: 240px;
    }
.xs-block {
	display: block !important;
    }	
}	

/*---------------------*/

.box {
    background-color: #eff0ef;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    height: 100%;
    z-index: 1;
    transition: color 300ms ease-in-out;
}
.box.box-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #1c1d1c;
    transition: transform 400ms 
ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
    color: #f3f3f3;
    border-radius: 5px;
}
.box.box-hover:hover:before, .box.box-hover:focus:before {
    transform: scaleX(1);
}	
	
.box .title-2 {
    color: #292836;
    font-size: 26px;
    font-weight: bold;
    position: relative;
    text-transform: capitalize;
}
	
.box p {
    color: #5e5e5e;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
}
	
.box.box-hover:hover .title-2, .box.box-hover:hover p {
	color: #fff;
}	

/*----------------------*/

.circle {
	font-weight: bold;
	/* padding: 15px 20px; */
	border-radius: 50%;
	background-color: #209546;
	color: #fff;
	max-height: 50px;
	z-index: 2;
	height: 50px;
	min-width: 50px;
	font-size: 20px;
	line-height: 50px;
}

.how-it-works.row {
  display: flex;
}
	
.how-it-works h5 {
	color: #404742;
	font-size: 22px;
	font-weight: 700;
}	
	
.how-it-works p {
	color: #626262;
	font-size: 17px;
	font-weight: 400;
}		
	
.how-it-works.row .col-xs-2 {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
.how-it-works.row .col-xs-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #e3e3e3;
  z-index: 1;
}
.how-it-works.row .col-xs-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}
.how-it-works.row .col-xs-2.full::after {
  height: 100%;
  left: calc(50% - 3px);
}
.how-it-works.row .col-xs-2.full-left::after {
  height: 100%;
  left: 50%;
}	
.how-it-works.row .col-xs-2.top::after {
  height: 50%;
  left: 50%;
  top: 0;
}

.row.timeline {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}	

.timeline div {
  padding: 0;
  height: 40px;
}
.timeline hr {
  border-top: 3px solid #e3e3e3;
  margin: 0;
  top: 17px;
  position: relative;
}
.timeline .col-xs-2 {
  display: flex;
  overflow: hidden;
}
.timeline .corner {
  border: 3px solid #e3e3e3;
  width: 100%;
  position: relative;
  border-radius: 15px;
}
.timeline .top-right {
  left: 50%;
  top: -50%;
}
.timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}
.timeline .top-left {
  left: -50%;
  top: -50%;
}
.timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}
	
.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}
	
.div-stars{
    font-size: 14px;
    color: #209546;
	margin-bottom: 15px;
	display: block;
}