@import url('https: //fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
h1
{
	text-align: center;
}
section	
{
	background-image: url("RG.jpg");
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	width: 100%;
	min-height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px 100px;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	letter-spacing: 2px;
	font-size: 14px;
	padding: 2px 5px;
	/*background: #fff;*/
	color: #111;
}
header .logo
{
	position: relative;
	font-size: 2em;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
	transition: 0.5s;
}
header img
{
	position: relative;
	size: 20px;
	width: 120px;
	height: 100px;
	background-position: center;
	background-repeat: no-repeat;
}
header .toggle
{
	position: relative;
	width: 40px;
	height: 40px;
	background: url(menu.png);
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	background-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
header .toggle.active
{
	background: url(close.png);
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	background-size: 25px;
}
header .toggle:before
{
	content: 'Menu';
	position: absolute;
	right: 45px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	font-size: 14px;
	background: #fff;
	color: #111;
}
header .toggle.active:before 
{
	content: 'close';
}
/*section video
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}*/
.glass
{
	position: fixed;
	top: 0;
	left: 0;
	width: 0.01%;
	height: 100%;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 1;
	box-shadow: 10px 0 15px rgba(0, 0, 0, 0.1);
	transition: 0.5s;
	transition-delay: 1s;
}

section.active .glass
{
	width: 100%;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 10px 0 15px rgba(0, 0, 0, 0.5);
	transition-delay: 0s;
}

section .content
{

	position: relative;
	z-index: 10;
	text-align: center;
	transition: 0.5s;	
	transition-delay: 0.6;
}
section.active .content
{
	opacity: 0;
	visibility: hidden;
	transform: translateX(-200px);
	transition-delay: 0s;
}
section .content h2
{
	position: relative;
	/*color: white;*/
	font-size: 10vw;
	line-height: 0.55em;
	text-shadow: 0 5px 5 px rgba(0, 0, 0, 0.2);
	font-family: 'Dancing Script',cursive;
}
section .content h2 span
{
	font-size: 0.2em;
	font-weight: 300;
	letter-spacing: 5px;
	background: #fff;
	color: #111;
	padding: 0 10px;
	text-shadow: 0 5px 5px rgba(0, 0, 0, 0);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
}
section .sci
{
	position: fixed;
	bottom: 40px;
	right: 100px;
	display: flex;
	z-index: 100;
}
section .sci li
{
  list-style: none;
  margin: 5px;
  padding: 0 6px;
  background: #fff;
  transition: 0.5s;
  transition-delay: calc(0.2s * var(--i));
}
section.active .sci li 
{
	opacity: 0;
	visibility: hidden;
	transform: translateY(100px);
} 
section .sci li a
{
	color: #111;
	text-decoration: none;
	display: inline-block;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
}
section .navigation
{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 100;
}
section .navigation li
{
	list-style: none;
	text-align: center;
	margin: 15px 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
	transform: translateX(200px);
	transition-delay: calc(0.2s * var(--i));
}
section.active .navigation li
{
	opacity: 1;
	visibility: visible;
	transform: translateX(0px);
}
section .navigation li a
{
	color: #111;
	font-size: 1.5em;
	letter-spacing: 4px;
	text-decoration: none;
	font-weight: 300;
	text-transform: uppercase;
	background: #fff;
	padding: 4px 10px;
	display: inline-block;
}
section .navigation li a:hover
{
	background: #111;
	color: #fff;
	letter-spacing: 10px;
	text-transform: lowercase;
}

.row
{
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
}
.column
{
	flex: 25%;
	max-width: 25%;
	padding: 0 4px;
}
.column img
{
	margin-top: 8px;
	vertical-align: middle;
	width: 100%;
}

.container
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 99%;
	flex-wrap: wrap;
	z-index: 1;
}
.container .card1
{
	position: relative;
	width: 95%;
	height: 300px;
	margin: 30px;
	box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(5px);
	
}

.container .card1 .content
{
	padding: 20px;
	text-align: justify-all;
	transition: 0.5s;
}

.container .card1 .content h1
{
	padding: 20px;
	text-align: center;
	transition: 0.5s;
}

.associations img
{
	position: relative;
	padding: 20px;
	size: 20px;
/*	width: 120px;
	height: 100px;*/
	background-position: center;
	background-repeat: no-repeat;
}

.contain {
  position: relative;
  width: 250px;
  height: 250px;
}

.image {
  display: block;
  width: 250px;
  height: 250px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #003;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease;
  transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
}

.contain:hover .overlay {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
iframe
{
	position: relative;
	justify-content: center;
}


a:hover, a:active {
  background-color: red;
}

@media screen and (max-width: 524px)
{
	header
	{
		padding: 20px; 
		width: 98%;
	}
	section .sci
	{
		bottom: 20px;
		right: 20px;
	}
	section .content h2
	{
		font-size: 18vw;
	}
	section .content h2 span
	{
		font-size: 0.25em;
		letter-spacing: 2px;
		padding: 0 5px;
	}

	header img
	{
	position: fixed;
	width: 80px;
	height: 60px;
	background-position: center;
	background-repeat: no-repeat;
	}

	.contain 
	{
  position: relative;
  width: 200px;
  height: 200px;
	}

	.image 
	{
  display: block;
  width: 200px;
  height: 200px;
	}
	.row
	{
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
	}
	.column
	{
	flex: 100%;
	max-width: 1000%;
	padding: 0 4px;
	}/**/
}

@media screen and (max-width: 800px)
{
	.column
	{
		flex: 50%;
		max-width: 50%;
	}
}
@media screen and (max-width: 600px)
{
	.column
	{
		flex: 50%;
		max-width: 100%;
	}
}
/*___________________________________________________________________________________________________*/

