.item .thumb {
	width: 25%;
	cursor: pointer;
	float: left;
}
.item .thumb img {
	width: 100%;
	border: 1px solid #e4e4e4;
}
.item img {
	width: 100%;	
}
.img-height{
	height: 196px;
}

.client-info{
	font-weight: bold;
	color:red;
	font-size:19px;

}

/* SWITCH LANGUAGE SCRIPT */

/* nav {
    width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.langLogo {
    width: 100px;
}

.langLogo img {
    width: 100px;
    
}

.lang-menu {
    width: 100px;
    text-align: right;
    font-weight: bold;
    margin-top: 25px;
    position: relative;
}
.lang-menu .selected-lang {
    display: flex;   
    justify-content: space-between;
    line-height: 2;
    cursor: pointer;
}
.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(https://www.countryflags.io/us/flat/32.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 45px;
    right: 0px;
    width: 125px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}

.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
}

.lang-menu ul li:hover {
    background-color: #f2f2f2;
}

.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.de:before {
    background-image: url(https://www.countryflags.io/de/flat/32.png);
}

.en:before {
    background-image: url(https://www.countryflags.io/us/flat/32.png);
}
.fr:before {
    background-image: url(https://www.countryflags.io/fr/flat/32.png);
}

.ar:before {
    background-image: url(https://www.countryflags.io/ae/flat/32.png);
} */


.lang-menu:hover ul {
    display: block;
}

/* DYNAMIC OUR CLIENTS SLIDER */

  .carousel {
	align-items: center;
	justify-content: space-between;
	perspective: 100rem;
	height: 60vh;
	width: 100%;
	display: flex;
	flex-direction: column;
  }
  .carousel__cards {
	position: relative;
	width: 20rem;
	height: 20rem;
	transform-style: preserve-3d;
	transform: translateZ(-25rem);
	transition: transform 0.3s ease-in;
  }

  .carousel__card {
	width: 100%;
	height: 100%;
	position: absolute;
	border: 2px solid white;
	border-radius: 0.2rem;
	font-size: 3em;
	font-weight: 700;
  }
  
  .carousel__img {
	display: inline-block;
	width: 100%;
	height: 100%;
  }

  .carousel__card:nth-child(1) {
	transform: rotateY(0deg) translateZ(25rem);
  }
  .carousel__card:nth-child(2) {
	transform: rotateY(45deg) translateZ(25rem);
  }
  .carousel__card:nth-child(3) {
	transform: rotateY(90deg) translateZ(25rem);
  }
  .carousel__card:nth-child(4) {
	transform: rotateY(135deg) translateZ(25rem);
  }
  .carousel__card:nth-child(5) {
	transform: rotateY(180deg) translateZ(25rem);
  }
  .carousel__card:nth-child(6) {
	transform: rotateY(225deg) translateZ(25rem);
  }
  .carousel__card:nth-child(7) {
	transform: rotateY(270deg) translateZ(25rem);
  }
  .carousel__card:nth-child(8) {
	transform: rotateY(315deg) translateZ(25rem);
  }

  .carousel__btn {
	outline: none;
	border: none;
	border-radius: 0.2rem;
	background: #00599c;
	padding: 0.5em 1em;
	font-size: 1.2em;
	font-weight: 500;
	color: #ffffff;
	cursor: pointer;
	margin: 0 2rem;
	margin-top: 20px;
  }
  
  .carousel__btn:hover {
	transform: scale(1.04);
	background: #000000;
  }
  

  