/*****************************************
* Author: Arun Sengupta (arunace) *
* Copyright 2020, Dezmi Design    *
*****************************************/

/**** CSS Reset ****/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
img,
ins,
kbd,
q,
s,
samp,
smbackground,
strike,
strong,
dl,
dt,
dd,
ol,
ul,
li,
figure,
figcaption,
iframe,
fieldset,
form,
label,
legend {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: text-top;
	background: transparent;
}

a,
a:hover {
	text-decoration: none !important;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
}

/*****************/
.wrap {
	box-sizing: border-box;
	max-width: 1280px;
	padding: 0 40px;
	margin: 0px auto;
}

header {
	padding: 20px 0;
	background-color: #fff;
}


.logo {
	max-width: 160px;
	max-height: 70px;
	margin-top: 20px;
}

/*****************/

.home-banner {
	background-color: #52bfdc;
	background-image: linear-gradient(120deg, #52bfdc 0%, #438aed 100%);
	padding: 60px 0;
	color: #fff;
}


.home-banner h1 {
	font-size: 2.2em;
	font-weight: 700;
	text-align: center;
}

.home-banner h2 {
	line-height: 170%;
	text-align: center;
}

#client-grid img {
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
}

#client-grid img:hover {
	opacity: .8;
}

/*****************/
.clear {
	clear: both;
	height: 0px;
	line-height: 0px;
}


/**** Media Queries ****/
@media screen and (max-width: 767px) {

	.home-banner h2 {
		font-size: 1rem;
	}

}


*:not(i) {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

html {
	height: 100%;
	font-size: 16px;
}

body {
	height: 100%;
	background: #F3F4F8;
}

.image-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.image-grid__item {
	display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 210px;
    align-items: stretch;
    justify-content: center;
    position: relative;
    height: 210px;
    /* margin-right: 14px;
    margin-bottom: 14px; */
    transition: transform 0.14s ease-in, text-shadow 0.1s ease-in;
    border: 1px solid #c9c9c9;
    background: #e3e3e3;
	margin: 20px;
}

.image-grid__item:before {
	content: "";
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: none;
	border-radius: 3px;
	box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.06), 0 8px 20px -2px rgba(0, 0, 0, 0.1), 0 6px 10px -6px rgba(0, 0, 0, 0.2);
	transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
	opacity: 0;
}

.image-grid__item:hover:before {
	visibility: visible;
	opacity: 1;
}

.grid-item {
	display: flex;
	position: relative;
	flex-direction: column;
	flex-grow: 1;
	flex-shrink: 1;
	align-items: stretch;
	justify-content: center;
	text-decoration: none;
	color: #eeeeee !important;
	overflow: hidden;
}

.grid-item:hover .grid-item__image {
	transform: scale(1.2);
}

.grid-item:hover .grid-item__hover {
	visibility: visible;
	opacity: 1;
}

.grid-item:hover .grid-item__name {
	visibility: visible;
	transform: scale(1);
	opacity: 1;
}

.grid-item__image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	transform: scale(1);
	will-change: transform;
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 0;
	height: 80px;
	width:200px;
	margin-left: 5px;
    margin-top: 65px;
}

.grid-item__hover {
	visibility: hidden;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(rgba(47, 48, 50, 0.2), rgba(47, 48, 50, 0.7));
	box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.15);
	border-radius: 0;
	transition: visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	opacity: 0;
}

.grid-item__name {
	visibility: hidden;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-shrink: 1;
	align-items: center;
	font-size: 2rem;
	font-weight: 300;
	text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4), 2px 2px 6px rgba(0, 0, 0, 0.3);
	justify-content: center;
	letter-spacing: 1px;
	transform: scale(0.6);
	transform-origin: center center;
	transition: visibility 0.14s ease-out, opacity 0.14s ease-out, transform 0.24s ease;
	opacity: 0;
	text-align: center;
}