/*
Theme Name: Givememedia
Author: Givememedia
Version: 1.0
*/

:root {
	--color-body: #252432;
}

html, body {
	margin: 0px;
	padding: 0px 0px 40px 0px;
	color: var(--color-body);
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	font-weight: 500;
	height: 100%;
	scroll-behavior: smooth;
}

.common__container {
	width: 95%;
	max-width: 1400px;
	margin: auto;
} 

.index__container {
	margin-top: 24px;
	box-sizing: border-box;
	padding: 64px 48px 28px 48px;
	border-radius: 60px;
	background: #eee;
}
.index__header {
	text-align: center;
	margin-bottom: 50px;
}
.index__header-title {
	font-family: 'NauryzRedKeds';
	font-size: 76px;
	font-weight: bold;
	margin: 0px 0px 16px 0px;
}
.index__header-title em {
	color: #2785FF;
	background: linear-gradient(to right, #2785FF 0%, #1F1B5C 100%);
	font-style: normal;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.index__lead {
	font-size: 40px;
	color: #454545;
}
.index__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(auto, 388px));
	gap: 20px;
	margin-bottom: 50px;
}
.index__item {
	position: relative;
	display: flex;
	flex-flow: column;
	box-sizing: border-box;
	min-height: 620px;
	background: #DEDEDE;
	border: 1px solid #D3D3D3;
	border-radius: 60px;
	padding: 130px 20px 74px 20px;
	color: var(--color-body);
	text-decoration: none;
}
.index__item:before {
	position: absolute;
	pointer-events: none;
	content: '';
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: 60px;
	opacity: 0;
	transition: 0.3s;
}
.index__item:nth-child(1):before {background: linear-gradient(30deg, #891CBE 0%, #3D1B5C 100%);}
.index__item:nth-child(2):before {background: linear-gradient(30deg, #2785FF -40%, #1F1B5C 100%);}
.index__item:nth-child(3):before {background: linear-gradient(30deg, #09B81B -40%, #1B525C 100%);}

.index__item-inner {
	position: relative;
	display: flex;
	flex-flow: column;
	flex-grow: 1;
	max-width: 256px;
	margin: auto;
}
.index__item-content {
	position: relative;
	transition: margin 0.3s;
}
.index__item-logo {height: 224px;}
.index__item-logo img {
	max-width: 100%;
	height: auto;
}
.index__item-excerpt {font-size: 32px;}
.index__item-actions {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	opacity: 0;
	transition: 0.3s;
}
.index__item-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45.85px;
	border-radius: 39px;
	font-size: 21px;
	font-weight: 600;
	color: var(--color-body);
	background: #fff;
}

.index__item:hover {color: #fff;}
.index__item:hover:before {opacity: 1;}
.index__item:hover .index__item-content {margin-top: -60px;}
.index__item:hover .index__item-actions {opacity: 1;}

.index__footer {text-align: center;}