.mycountercard{
	padding: 15px;
	Background-color:#21242B;
	border-bottom: 10px solid #F3D350;
	height:200px;
}
.mycountercard i{
	font-size:40px;
	color:#F3D350;
}
.mycountercard div{
	font-size:50px;
	color:white;
	font-weight: bold;
	text-align: center;
}
.mycountercard span{
	font-size:20px;
	color:white;
}

.mylinkstyle{
	background-color: var(--lbc);
	opacity: 60%;
	height:25px;
	width: 85%;
	padding: 1px;
	border: 1px solid white;
	border-radius:20px;
	margin: 3px 0px 3px 0px;
	margin-left: auto;
    margin-right: auto;
	transition: .4s;
}
.mylinkstyle:hover{
	background-color: var(--lhbc);
	opacity: 100%;
	color: white;
	transform: var(--zoom); /*scale(1.05);*/
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.changebackground {
  /*transition: var(--zs);/*.3s; /* Animation */
}
.changebackground:hover {
  /*transition: var(--zs);/*.3s; /* Animation */
  background-color:gray;
}

.zoom {
  transition: var(--zs);/*.3s; /* Animation */
}

.zoom:hover {
	z-index: 999 important!;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;	
    transform: var(--zr); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
	
}



.seven h1 {
text-align: center;
    font-size:30px; font-weight:300; color:#222; letter-spacing:1px;
    text-transform: uppercase;

    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

.seven h1:after,.seven h1:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #c50000;
    border-top: 1px solid #c50000;
    height: 5px;
  background-color:#f8f8f8;
}

h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}
h1 em {
  font-style: normal;
  font-weight: 600;
}

/*Tis part concern small cards*/

.solution_card {
  background: var(--l2bg);/*#fff;*/
  box-shadow: var(--l2shadow);
  border-radius: var(--l2bradius); /*15px;*/
  border-color: var(--l2bcolor);
  border-style: var(--l2bstyle);
  border-width: var(--l2bwidth);
  margin: auto;
  padding: 10px 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--zs); /*0.5s;*/
}

.solution_card:hover {
  background: var(--l2hbg);/*#309df0;*/
  border-color: var(--l2bhcolor);
  border-style: var(--l2bhstyle);
  border-width: var(--l2bhwidth);
  color: #fff;
  transform:  var(--zr); /*scale(1.05);*/
  z-index: 9 !important;
}

.solution_card:hover::before {
  background: rgb(85 108 214 / 10%);
}

.solution_card:hover .solu_title h3,
.solution_card:hover .solu_description p {
  color: #fff;
}

.solution_card:before {
  content: "";
  position: absolute;
  background: rgb(85 108 214 / 5%);
  width: 170px;
  height: 400px;
  z-index: -1;
  transform: rotate(42deg);
  border-radius: 35px;
}

.solution_card:hover .solu_description button {
  background: #fff !important;
  color: #309df0;
}

.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;
}

.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_card:hover .hover_color_bubble {
  top: 0rem;
}


/*start pagination*/



/*end pagination */




/*start media query*/

@media screen and (min-width: 320px) {
  .sol_card_top_3 {
    position: relative;
    top: 0;
  }

}

@media only screen and (min-width: 1024px) {
  .sol_card_top_3 {
    position: relative;
    top: -3rem;
  }

}




