
:root { 
	/*--colorFondo: #161026; */
	
	--color:#0a130f;
	--color: #fff;


	--colorFondo: #184106;
	--colorFondo: #161026; 
	--colorFondo: #0e1d39;
	--colorFondo: #5D3C81;
	--colorFondo: #001433;
	--colorFondo:#C81687;




	--background: rgb(93,60,129);
	--background: linear-gradient(356deg, rgba(93,60,129,1) 0%, rgba(0,255,135,1) 95%); 



	--background2: rgb(221,117,46);
	--background2: linear-gradient(53deg, rgba(221,117,46,1) 0%, rgba(253,38,38,1) 100%);
	

	--background2: rgb(208,69,47);
	--background2: linear-gradient(53deg, rgba(208,69,47,1) 28%, rgba(208,47,54,1) 67%);


	--background2: rgb(11,161,90);
	--background2: linear-gradient(51deg, rgba(11,161,90,1) 43%, rgba(0,255,135,1) 71%); 

 --background2: rgb(77,255,0);
--background2: linear-gradient(51deg, rgba(36,89,152,1) 15%, rgba(23,117,228,1) 87%);
--background2:#C81687;

 }

@font-face {
    font-family: 'Gibson';
    src: url('./font/gibson/Gibson-Bold.woff2') format('woff2'),
        url('./font/gibson/Gibson-Bold.woff') format('woff'),
        url('./font/gibson/Gibson-Bold.svg#Gibson-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gibson-Italic';
    src: url('./font/gibson/Gibson-BoldItalic.woff2') format('woff2'),
        url('./font/gibson/Gibson-BoldItalic.woff') format('woff'),
        url('./font/gibson/Gibson-BoldItalic.svg#Gibson-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}



*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
color: #ffff;

	
}


/*section { 

position: relative;
width: 100%;
min-height: 100vh;
padding: 100px;
display: flex;
justify-content: space-between;
align-items: center;
background:var(--colorFondo);
 }*/


body{
	background:var(--colorFondo);
}



 section .circle {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100% ;
 	height: 100%;
 	/*background: var(--background2); */
	background: var(--background2); 
 	clip-path: circle(70% at right -20%);
 }

header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


header .logo{ 

position: relative;
max-width: 150px;


 }


 header .navigation {

 	position: relative;
 	display: flex;
 }


 header .navigation li {

 
 list-style: none;	
 }

 header .navigation li a { 

display: inline-block;
color: var(--color);
font-weight: 500;
text-decoration: none;
margin-left: 40px;
  }


  .content {
  	position: relative;
  	width: 100%;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;

  }

  .content .textBox{
  	position: relative;
  	max-width: 600px;
  	margin-right: 20px;


  }

  .content .textBox h2 {


  	color: var(--color);
  	font-size:3em ;
  	margin-bottom: 10px;
  	line-height: 1.4em;
  	font-weight: 700;
  }


  .content .textBox p {

  	color: var(--color);
  }


  .content .textBox a {

  	display: inline-block;
  	margin-top: 20px;
  	padding: 8px 20px;
  	background: var(--background2);
  	color: var(--color);
  	border-radius: 40px;
  	font-weight: 500;
  	letter-spacing: 1px;
  	text-decoration: none;
  	text-transform: uppercase;
  	transition: 0.5s;
  	font-size: 1.5em;
	letter-spacing: 0.1em;

  }

  a:hover {
	
	color: var(--clr);
	text-shadow: 2px 2px 2px var(--clr);
}






.content .textBox a:hover {
  letter-spacing: 0.25em;
  
}











  .sci {
  	/*position: absolute;*/
  	bottom: 40px ;
  	left: 100px;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  }


  .sci li { 

	list-style: none;
   }

.sci li a {

	display: inline-block;
	margin-left: 15px;
	background: #222;
	width:50px ;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: 0.2s ease-in-out;
}   


.sci li a:hover { 

background: var(--background2);

transform: translateY(-10px);

 }


 .sci li a img {

filter: invert(1);
transform: scale(0.5);

 }






.content .imgBox {

	width: 500px;
	display: flex;
	justify-content: flex-end;
}


.content .imgBox img {

	max-width: 500px;
	box-shadow: 2px 2px 5px #999;
}




.container { 
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 1200px;
	flex-wrap: wrap;
	z-index: 1;
 }


 .container .card {
 	position: relative;
 	width: 280px;
 	height: 400px;
 	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 .card .content_card{
 	padding: 20px;
 	text-align: center;
 	transition: 0.5s;

 } 


 .container .card .content_card h2{
 	position: absolute;
 	top: -30px;
 	right: 30px;
 	font-size: 8em;
 	color: rgba(255, 255, 255, 0.05);
 	pointer-events: none;
 }


 .container .card .content_card h3 {
 	font-size: 1em;
 	color: var(--color);
 	font-weight: 300;
 	z-index: 1;
 }

 .container .card .content_card p {
 	font-size: 1em;
 	color: var(--color);
 	font-weight: 300;
 }


.container .card .content_card a {
 position: relative;
 display: inline-block;
 padding: 8px 20px;
 margin-top: 15px;
 color: var(--color);
 background: var(--background2);
 border-radius: 20px;
 text-decoration: none;
 font-weight: 500;
 box-shadow: 0 5px 15px rgba(0, 0, 0,0.5);
 } 












@media (max-width:  991px)
{

header {
		padding: 40px;
}
section{
		
		padding: 150px 40px;
		
}

.sci{
		left: 40px;
}

.content{
		flex-direction: column;
}

.content .textBox{
		max-width: 100%;
}
	

.content .imgBox {

	width: 500px;
	display: flex;
	justify-content: center;
}


.content .imgBox img {

	margin-top:40px ;
	max-width: 400px;
	box-shadow: 2px 2px 5px #999;
}


header .navigation{
		display: none;
}

header ul.navigation.active{
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		background: var(--background2);
		flex-direction: column;
		justify-content: center;
		align-items: center;



}

header  .navigation  li a {
	margin: 10px 0;
	font-size: 1.5em;
	font-weight: 300;
}



.toggle{
	position:relative ;
	width: 30px;
	height: 30px;
	background: url(Img/menu.png);
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	z-index: 10000;

}

.toggle.active{
	position:fixed ;
	right: 40px;
	width: 30px;
	height: 30px;
	background: url(Img/close.png);
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;



}