/*** 
 ====================================================================
         Features Two Section
 ====================================================================
 
 ***/

.features-two-section {
  position: relative;
  display: block;
  padding: 100px 0 60px;
  background: #f8f8f8;
}

.features-two-section .col{
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	margin-bottom: 30px;
}

.features-two-sec-single {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  box-shadow: 0 0 20px 3px rgb(0 0 0 / 2%);
  padding: 30px 20px;
  height: 100%;
}

.features-two-section .col:hover{
	transform: translateY(-10px);
}

.features-two-sec-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(52 0 111 / 8%);
}
.features-two-sec-icon img {
  width: 50%;
}
.features-two-sec-icon span {
  font-size: 50px;
  color: var(--color-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.features-two-sec-single h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  margin-top: 23px;
  margin-bottom: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.features-two-sec-single p {
  font-size: 16px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  line-height: 24px;
}

/*  */
.features-two-sec-single.active {
  background: var(--color-primary);
}

.active .features-two-sec-icon {
  background: #fff;
}

.features-two-sec-single.active h3 {
  color: #fff;
}

.features-two-sec-single.active p {
  color: #fff;
}
@media (max-width: 1199px) {
	.features-two-section {
		padding: 70px 0 40px;
	}
}
@media (max-width: 991px) {
	.features-two-section {
		padding: 60px 0 30px;
	}
	.features-two-sec-icon {
	    width: 74px;
	    height: 74px;
	}
	.features-two-sec-single{
		padding: 20px;
	}
}
@media (max-width: 767px) {
	.features-two-section {
	    padding: 40px 0 30px;
	}
	.features-two-sec-single h3 {
		font-size: 18px;
		margin-top: 12px;
		margin-bottom: 8px;
	}
	.features-two-section .col {
	    margin-bottom: 20px;
	}
}