.episode-btn{
  border-radius: 6px;
  padding: 6px 8px;
  text-align:center !important;
}
.episode-btn:hover{
  color:white !important;
}
.text-center{
  text-align:center !important;
}


.section_our_solution .row {
align-items: center;
}

.our_solution_category {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.our_solution_category .solution_cards_box {
display: flex;
flex-direction: column;
justify-content: center;
}
.solution_cards_box .solution_card {
flex: 0 50%;
background: #fff;
box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
  0 5px 15px 0 rgba(37, 44, 97, 0.15);
border-radius: 15px;
margin: 8px;
padding: 10px 15px;
position: relative;
z-index: 1;
overflow: hidden;
min-height: 280px;
max-height: 280px;
transition: 0.7s;
max-width: 260px;
min-width: 260px;
}

.solution_cards_box .solution_card:hover {
background: #309df0;
color: #fff;
transform: scale(1.1);
z-index: 9;
}

.solution_cards_box .solution_card:hover::before {
background: rgb(85 108 214 / 10%);
}

.solution_cards_box .solution_card:hover .solu_title h3,
.solution_cards_box .solution_card:hover .solu_description p {
color: #fff;
}

.solution_cards_box .solution_card:before {
content: "";
position: absolute;
background: rgb(85 108 214 / 5%);
width: 170px;
height: 400px;
z-index: -1;
transform: rotate(42deg);
right: -56px;
top: -23px;
border-radius: 35px;
}

.solution_cards_box .solution_card:hover .solu_description button {
background: #fff !important;
color: #309df0;
}
.solution_cards_box .solution_card:hover .solu_description a {
background: #fff !important;
color: #309df0;
}

.solution_card .so_top_icon {
}

.solution_card .solu_title h3 {
color: #212121;
font-size: 1.3rem;
margin-top: 13px;
margin-bottom: 13px;
}

.solution_card .solu_description p {
font-size: 15px;
margin-bottom: 15px;
}

.solution_card .solu_description button {
border: 0;
border-radius: 15px;
background: linear-gradient(
  140deg,
  #42c3ca 0%,
  #42c3ca 50%,
  #42c3cac7 75%
) !important;
color: #fff;
font-weight: 500;
font-size: 1rem;
padding: 5px 16px;
}
.solution_card .solu_description a {
border: 0;
border-radius: 15px;
background: linear-gradient(
  140deg,
  #42c3ca 0%,
  #42c3ca 50%,
  #42c3cac7 75%
) !important;
color: #fff;
font-weight: 500;
font-size: 1rem;
padding: 5px 16px;
}

.our_solution_content h1 {
text-transform: capitalize;
margin-bottom: 1rem;
font-size: 2.5rem;
}
.our_solution_content p {
}

.hover_color_bubble {
position: absolute;
background: rgb(54 81 207 / 15%);
width: 100rem;
height: 100rem;
left: 0;
right: 0;
z-index: -1;
top: 16rem;
border-radius: 50%;
transform: rotate(-36deg);
left: -18rem;
transition: 0.7s;
}

.solution_cards_box .solution_card:hover .hover_color_bubble {
top: 0rem;
}

.solution_cards_box .solution_card .so_top_icon {
width: 60px;
height: 60px;
border-radius: 50%;
background: #fff;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.solution_cards_box .solution_card .so_top_icon img {
width: 40px;
height: 50px;
object-fit: contain;
}

/*start media query*/
@media screen and (min-width: 320px) {
.sol_card_top_3 {
  position: relative;
  top: 0;
}

.our_solution_category {
  width: 100%;
  margin: 0 auto;
}

.our_solution_category .solution_cards_box {
  flex: auto;
}
}
@media only screen and (min-width: 768px) {
	.our_solution_category .solution_cards_box {
	  flex: 1;
	}
}
@media only screen and (min-width: 1024px) {
	.sol_card_top_3 {
	  position: relative;
	  top: -3rem;
	}
	.our_solution_category {
	  width: 50%;
	  margin: 0 auto;
	}
}


.tab-wrap {
    -webkit-transition: 0.3s box-shadow ease;
    transition: 0.3s box-shadow ease;
    border-radius: 6px;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    list-style: none;
    background-color: #fff;
    margin: 40px 0;
}
  /*.tab-wrap:hover { box-shadow: 0 12px 23px rgba(0, 0, 0, 0.23), 0 10px 10px rgba(0, 0, 0, 0.19); }*/
.tab { display: none; }
.tab:checked:nth-of-type(1) ~ .tab-content:nth-of-type(1) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(2) ~ .tab-content:nth-of-type(2) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(3) ~ .tab-content:nth-of-type(3) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
  }
  .tab:checked:nth-of-type(4) ~ .tab-content:nth-of-type(4) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
  }
  .tab:checked:nth-of-type(5) ~ .tab-content:nth-of-type(5) {
    opacity: 1;
    -webkit-transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    text-shadow: 0 0 0;
  }
  .tab:first-of-type:not(:last-of-type) + label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .tab:not(:first-of-type):not(:last-of-type) + label { border-radius: 0; }
  .tab:last-of-type:not(:first-of-type) + label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .tab:checked + label {
    background-color: #fff;
    box-shadow: 0 -1px 0 #fff inset;
    cursor: default;
  }
  .tab:checked + label:hover {
    box-shadow: 0 -1px 0 #fff inset;
    background-color: #fff;
  }
  .tab + label {
    box-shadow: 0 -1px 0 #eee inset;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #333;
    -webkit-box-flex: 3;
    -webkit-flex-grow: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
    text-align: center;
    background-color: #f2f2f2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    -webkit-transition: 0.3s background-color ease, 0.3s box-shadow ease;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
    height: 50px;
    box-sizing: border-box;
    padding: 15px;
  }
  .tab + label:hover {
    background-color: #f9f9f9;
    box-shadow: 0 1px 0 #f4f4f4 inset;
  }
  .tab-content {
    padding: 10px 25px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    border-radius: 6px;
    /*display: flex;
    flex-direction: row;
    flex-wrap: wrap;*/
    justify-content: space-evenly;
    align-content: space-around;
  }
  @media (min-width: 1024px) {
    .tab-content{
      margin-top: 60px;
    }
  }

a{
    text-decoration:none !important;
}