.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.tarjeta:hover{
	background-image: linear-gradient(12deg, #d0f7d8 0%, #b7fac4 100%);
	transition: opacity 0.4s linear;
}

.section-line {
	background: linear-gradient(12deg, rgba(51, 150, 94, 0.93) 40%, rgba(18, 110, 58, 0.95) 100%), url(./images/sectionline.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.text-title {
	color: #126e3a;
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
}

.social_icon {
	width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0px 4px 32px rgba(46.35, 45.32, 48.28, 0.08);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s all ease;
}

.social_icon:hover {
    background: linear-gradient(12deg, rgb(51, 150, 94) 0%, rgb(18, 110, 58) 100%);
    opacity: 0.90;
    transition: 0.4s all ease;

	i {
		color: white;
		transition: 0.4s all ease;
	}
}

.social_icon i {
	
    margin-right: 0px;
    font-size: 14px;
    color: rgb(107 114 128);
    transition: 0.4s all ease;
}

.social_icon i:hover {
	color: white;
    transition: 0.4s all ease;
}

.d-flex {
	display: flex;
}

.d2c_info_wrapper {
    margin-bottom: 14px;
}

.align-items-center {
    align-items: center !important;
}