.tx-services {
    display: flex;
    justify-content: center;
}

.service-image img {
    width: 100%;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    width: fill-available;
	height: auto;
	border-radius: 10px;
	-webkit-transition: -webkit-transform 0.35s, filter 0.35s;
	transition: transform 0.35s, filter 0.35s;
	
    filter: brightness(0.5);
	-webkit-filter: brightness(0.5);
}
.full-view-services {
    margin: 0 2vw 10vh 2vw;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 2vh;
	max-width: 1700px;
}

.service-image {
	height: 15vh;
}

.orange.service-card {
    text-align: center;
    padding: 25vh 5vw;
    background: -webkit-linear-gradient(9deg, #303030, #c7a28e, #eb681d);
    background: linear-gradient(0deg, #303030, #c7a28e, #eb681d);
}

.service-card button.btn.btn-primary {
    width: fit-content;
    background-color: #e8e8e8;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.service-card:hover .service-image img {

	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	filter: brightness(1);
	-webkit-filter: brightness(1);
}

.service-card:hover .gv-service-icon img {
	-webkit-animation: rotation-icon 0.6s ease-out;
  	animation: rotation-icon 0.6s ease-out;	
		
	
}

@-webkit-keyframes rotation-icon {
  from {
      -webkit-transform: rotate(-45deg);
  }
  to {
      -webkit-transform: rotate(315deg);
  }
}
@keyframes rotation-icon {
  from {
      -webkit-transform: rotate(-45deg);
  }
  to {
      -webkit-transform: rotate(315deg);
  }
}

.service-card:hover .service-name {
	color: #eb681d;
}

.service-info {
	background-color: #e8e8e8;
    padding: 8vh 1.6vw 3vh;
	border-top: 3px solid #eb681d;
	overflow: hidden;
	z-index: 5;
	height: max-content;
}

.gv-service-icon img {
	position: relative;	
	-webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.gv-service-icon{
	display: flex;
	justify-content: center;
	align-items: center;
	top: 5vh;
    left: 22vw;
	border: solid 3px #eb681d;
    position: relative;
	background-color: #303030;
    border-radius: 8px;
	z-index: 10;
	width: 70px;
    height: 70px;
	-webkit-transform: rotate(45deg);
          transform: rotate(45deg);
	
}
.service-card {
	display: flex;
	flex-direction: column;
	background-color: #e8e8e8;
	margin-left: 1% !important;
	margin-bottom: 5vh;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: -3px -4px 8px #c7c7c7, 3px 4px 8px #ffffff;
}

.service-card .service-name {
	font-family: 'Exo 2';
    color: #303030;
    text-align: left;
    padding-bottom: 2vh;
    margin-top: -5vh;
}

.service-card p {
	font-size: 0.9em;
}

@media screen and (max-width: 550px) {
	.service-image img {
		max-width: 110vw;
        width: auto;
		min-height: 10vw;
	}

	.service-image {
		height: 10vh;
	}

	.service-info {
    padding-top: 11vh;
	}
	.gv-service-icon {
		top: 5.4vh;
        left: calc(50% - 35px);
	}
	
	.service-card .service-name {
		text-align: center;
	}

}



