/*import url('https://fonts.googleapis.com/css2?family=Inter: 300, 400, 700&display=swap');
@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';*/
@font-face {
	font-family: Gadugi;
	src: "./fonts/gadugi/gadugi-normal.ttf";
  }
  
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 12px;
	font-family: 'Gadugi', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: right;
}
.container_wrap {
	width: 100%;
	height: fit-content;
	display: flex;
	align-items: center;
	justify-content: right;
	/*border: 2px solid black;*/
}
video {
	height: 100%;
	width: 100%;
    object-fit: cover;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 300;
}
p span {
	font-weight: 600;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	letter-spacing: 0.05rem;
	text-align: center;
}
.section-title span {
	color: darkgreen;
}

/******************************* cta (button)*/
.cta {
	display: inline-block;
	padding: 10px 30px 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid darkgreen;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
	opacity: 0;
	animation: cta_reveal 0.5s ease forwards;
	animation-delay: 1.5s;
}
.cta:hover {
	color: white;
	background-color: darkgreen;
	border: 2px solid white;
}
@keyframes cta_reveal {
	100% {
		opacity: 1;
	}
}

.brand img{
	height: 0rem;
	width: auto;
	align-items: center;
	justify-items: center;
	transition: height 0.5s ease;
}
.brand h1 {
	font-size: 2.5rem;
	color: white;
}
.brand h1 span {
	padding: 0 25px;
	color: darkgreen;
}
.brand h3 {	
	font-size: 0rem;
	line-height: 6rem;
   	background: linear-gradient(90deg, black 0%, white 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px white;
	transition: font-size 0.5s ease;
}


/****************************************************************************************************/
/******************** @Header ***********************************************************************/
/****************************************************************************************************/
#header {
	position: fixed;
	z-index: 1000;
	width: 100vw;
	height: auto;
	top:0;
	left:0;
}
#header .header {
	min-height: 6rem;
	max-height: 6rem;
	transition: background-color 1s ease, opacity;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 0px 30px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.85);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.2s ease left;
	line-height: 2rem;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.05rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
	border: 2px solid transparent;
	/*border: 2px solid darkgreen;*/
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	text-align: center;
	color: rgba(255, 255, 255, 0.1);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
	line-height: 13rem;
}
#header .nav-list ul li:hover a {
	color: white;
	background-color: darkgreen;
	border: 2px solid white;
}
#header .hamburger {
	min-width: 4rem;
	min-height: 4rem;
	height: 4rem;
	width: 4rem;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.75);
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 0.1rem;
	width: 1.5rem;
	min-width: 20px;
	min-height: 1.5px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 0.5rem;
}
#header .hamburger .bar::before {
	bottom: 0.5rem;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}

@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.5);
	}
}

/****************************************************************************************************/
/******************** @Home  ************************************************************************/
/****************************************************************************************************/
#home {
	width: 100%;
	background-image: url(./img/vortex.webp);
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
#home::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 25, 0);
	opacity: 0.5;
	z-index: -1;
}
#home .home {
	padding: 0 5%;
	justify-content: flex-start;
}

/******************************* home icon */
#home .icon{
	width: 66%;
	animation: zoom-in 0.5s	;
}
@keyframes zoom-in {
  0% {transform: scale(3, 3); opacity: 0;}
  20% {transform: scale(2.6, 2.6); opacity: 0.2;}
  40% {transform: scale(2.2, 2.2); opacity: 0.4;}
  60% {transform: scale(1.8, 1.8); opacity: 0.6;}
  80% {transform: scale(1.4, 1.4); opacity: 0.8;}
  100% {transform: scale(1.0, 1.0); opacity: 1.0;}
}

/******************************* home h1 title */
#home h1 {
	display: block;
	width: fit-content;
	font-size: 3rem;
	line-height: normal;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
}
#home h1:nth-child(1) {
	animation-delay: 0s;
}
#home h1:nth-child(2) {
	animation-delay: 0.5s;
}
#home h1:nth-child(3) {
	animation-delay: 0.75s;
}
#home h1:nth-child(4) {
	animation-delay: 1s;
}

@keyframes text_reveal {
	100% {
		color: white;
	}
}

#home h2 {
	display: block;
	width: fit-content;
	font-size: 2.25rem;
	line-height: normal;
	font-weight: 300;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1.25s;
	margin-top: 20px;
}

/******************************* Sliding boxes on home section */
#home h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: black;
	opacity: 0.75;
	animation: text_reveal_box 1s ease;
}
#home h1:nth-child(1) span {
	animation-delay: 0s;
}
#home h1:nth-child(2) span {
	animation-delay: 0.5s;
}
#home h1:nth-child(3) span {
	animation-delay: 1.5s;
}
#home h1:nth-child(4) span {
	animation-delay: 2.5s;
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}

#home .home-buttons {
	max-width: 100%;
	padding-bottom: 60px;
}
#home .cta{
	margin-top: 30px;
	margin-right: 30px;
}

/****************************************************************************************************/
/******************** @Info  ************************************************************************/
/****************************************************************************************************/
#info {
	width: 100%;
	background-image: url(./img/logo_PaIRS_rect_opaque.webp);
	background-size: 50%;
	background-position-x: center;
	background-position-y: top;
	position: relative;
	z-index: 1;
}
#info::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255);
	opacity: 0.95;
	z-index: -1;
}
#info .info {
	flex-direction: column;
	text-align: center;
	max-width: 100%;
	padding-top: 120px;
}
#info .info-top {
	width: 90%;
	max-width: 1200px;
	text-align: center;
	text-justify:inter-word;
}
#info .info-top h1 {
	font-size: 2rem;
	color: black;
	margin-bottom: 10px;
}
#info .info-bottom {
	display: flex;
	align-items: normal;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-bottom: 60px;
}

#info .info-item {
	min-width: 25%;
	width: 90%;
	display: flex;
	align-items: flex-start;
	justify-content: top;
	flex-direction: column;
	padding: 30px;
	border-radius: 50px;
	background-size: cover;
	background-position: center;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
#info .info-item:hover {
	box-shadow: 0px 0px 8px 0 darkgreen;
}
#info .info-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(-45deg, rgba(64,72,80,0.8) 0%, rgb(128,144,160,1) 100%);
	opacity: 1;
	z-index: -1;
}
#info .info-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}

#info .info-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
}
#info .info-item h2 span{
	font-size: 4rem;
	color: rgba(0, 0, 0);
	text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
	letter-spacing: 0.05rem;
}
#info .info-item p {
	color: white;
	text-align: left;
	text-justify:inter-word;
}
#info p a{
	text-decoration: underline;
	font-weight: 600;
}
#info .info-top p a{
	color: black;
}
#info .info-item p a{
	color: white;
}
#info p a:hover{
	text-shadow: 2px 2px 8px white ;
	color: darkgreen;
}

/****************************************************************************************************/
/******************** @Interface ********************************************************************/
/****************************************************************************************************/
#interface {
	width: 100%;
	background-image: url(./img/vortex.webp);
	background-size:contain;
	background-position: center;
	position: relative;
	z-index: 1;
	text-align: center;
	text-justify:inter-word;
}
#interface::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 25, 0);
	opacity: 0.5;
	z-index: -1;
}
#interface .interface {
	flex-direction: column;
	max-width: 100%;
	padding-top: 120px;
}

#interface .interface-middle {
	max-width: 1200px;
	width: 90%;
	display: flex;
	align-items: normal;
	justify-content: center;
	flex-wrap: wrap;
}

#interface .interface-middle .icon-item {
	width: auto;
	min-width: 20%;
    height: fit-content;
	min-height: fit-content;
	margin-top: 20px;
	margin-bottom: 20px;
}

#interface .interface-middle .icon-item .icon{
	max-width: 160px;
	width: 80%;
    height: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	animation: zoom-in 0.5s	;
	transition: transform 0.3s ease ;
}

#interface .interface-middle .icon-item .icon:hover{
    transform: scale(1.2); /* Ingrandisce l'icona al passaggio del mouse */
}

#interface .interface-middle .icon-item p {
	color: white;
	font-size: 2rem;
	line-height: 2rem;
	font-weight: 600;
}

#interface .interface-middle .caption {
    text-align: center;
	text-justify:inter-word;
}

#interface .interface-middle .caption {
    text-align: center;
	text-justify:inter-word;
}

#interface .interface-middle .caption p {
	color: white;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 300;
}

#interface .interface-middle .description {
	display: none;
    text-align: center;
	text-justify:inter-word;
}

#interface .interface-middle .description p{
	font-weight: 300;
}

#interface .interface-middle .description p span{ 
	font-weight: 600;
}

#interface .interface-top {
	max-width: 1200px;
	width: 90%;
	margin: 0 15px 0 15px;
	align-items: normal;
}

#interface .interface-top h1 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
}
#interface .interface-top p {
	color: white;
	font-size: 1.5rem;
	margin-top: 0px;
	line-height: 2rem;
	font-weight: 300;
}

#interface .project-item0 {
	display: flex;
	object-fit: contain;
	align-items: left;
	justify-content: center;
	flex-direction: column;
	width: 90%;
	max-width: 1260px;
	margin: 10px 15px 10px 15px;
	overflow: auto;
	overflow-y: hidden;
	min-height: 300px;
}
#interface .project-img0 {
	height: auto;
	width: 1920px;
	overflow: show;	
	position: relative;
}
#interface .project-img0 img {
	transition: 0.3s ease transform;
}
#interface .project-item0:hover .project-img0 img {
	transform: scale(0.975);
}

#interface .interface-bottom {
	display: flex;
	align-items: normal;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
	margin-bottom: 60px;
	max-width: 1200px;
	width: 90%;
	gap: 60px;
	color: white;
}
#interface .project-item {
	display: flex;
	flex-direction: column;
	overflow: auto;
	-ms-overflow-style: none;  /* IE and Edge */
  	scrollbar-width: none;  /* Firefox */
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 640px;
	margin-top: 20px;
	gap: 30px;
	text-align: left;
	text-justify: inter-word;
}
#interface .project-info {
	padding: 30px;
	flex-basis: 50%;
	object-fit: cover;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: top;
	flex-direction: column;
	background-image: linear-gradient(-45deg, rgba(64,80,80,0.66) 0%, rgb(128,160,160,1) 100%);
	color: white;
	border-radius: 25px;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
	transform: scale(0.95);
}
#interface .project-item:hover .project-info{
	box-shadow: 0px 0px 8px 0 white;
}
#interface .project-infobox {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	padding-bottom: 10px;
}

#interface .project-infobox .icon{
	width: 50px;
	height: 50px;
}

#interface .project-info h1 {
	font-size: 3.5rem;
	font-weight: 600;
}
#interface .project-info h2 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.5rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#interface .project-info p {
	color: white;
	overflow-y: auto;
	-ms-overflow-style: none;  /* IE and Edge */
  	scrollbar-width: none;  /* Firefox */
}
#interface .project-img {
	flex-basis: 50%;
	width: auto;
	height: max-content;
    max-height: 100%;
	overflow: auto;
	-ms-overflow-style: none;  /* IE and Edge */
  	scrollbar-width: none;  /* Firefox */
	position: relative;
}
#interface .project-img img {
	transition: 0.3s ease transform;
}
#interface .project-item:hover .project-img img {
	transform: scale(0.95);
}
#interface .interface-bottom p {
	color: white;
}
#interface a{
	font-weight: 600;
	text-decoration: underline;
	color: white;
}
#interface a:hover{
	text-shadow: 2px 2px 8px white ;
	color: darkgreen;
}

/****************************************************************************************************/
/******************** @Download  ********************************************************************/
/****************************************************************************************************/
#download {
	width: 100%;
	background-image: url(./img/particles.webp);
	background-size:contain;
	background-position: center;
	position: relative;
	z-index: 1;
	text-align: left;
	text-justify:inter-word;
}
#download::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0);
	opacity: 0.8;
	z-index: -1;
}
#download .download {
	flex-direction: column;
	max-width: 100%;
	padding: 120px 0;
}

#download .download-top {
	max-width: 1200px;
	width: 90%;
	align-items: center;
	justify-items: center;
	margin-bottom: 60px;
}

#download .download-top h1 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
}
#download .download-top p {
	color: white;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 300;
}
#download .script {
	padding: 15px;
	margin: 15px 0%;
	height: 100%;
	width: auto;
	display: normal;
	background-image: linear-gradient(45deg, rgba(80,80,80,0.6) 0%, rgb(160,160,160,1) 100%);
	color: white;
	border-radius: 5px;
}

#download .script p {
	font-family: 'Courier New', Courier, monospace;
	color: white;
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: 300;
	margin-left: 2.5%;
	text-align:start;
	word-wrap: break-word;
}
#download  a {
	font-weight: 600;
	text-decoration: underline;
	color: white;
}
#download a:hover {
	text-shadow: 2px 2px 8px black;
	color: green;
}

/****************************************************************************************************/
/******************** @Authors  *********************************************************************/
/****************************************************************************************************/
#authors {
	width: 100%;
	background-image: url(./img/auth_bg.webp);
	background-size: 50%;
	background-position-x: center;
	background-position-y: top;
	position: relative;
	z-index: 1;
}
#authors::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255);
	opacity: 0.95;
	z-index: -1;
}
#authors .authors {
	flex-direction: column-reverse;
	text-align: center;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	background-color: transparent;
}
#authors .authors-top {
	padding: 120px 0 0px 0;
	flex-direction: row;
	max-width: 1200px;
	width: 100%;
	align-items: center;
	justify-items: center;
	margin-bottom: 0px;
}
#authors .col-left {
	padding-bottom: 60px;
	width: auto;
	height: 100%;
	min-height: 560px;
}
#authors .col-right {
	width: 100%;
	min-height: 560px;
	margin-bottom: 60px;
}
#authors .col-right h1{
	margin-bottom: 10px;
	margin-left: 15px;
	margin-right: 15px;
}
#authors .col-right h1 span {
	font-weight: 600;
}
#authors .col-right h2 {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.0rem;
	margin-bottom: 10px;
	margin-left: 15px;
	margin-right: 15px;
}
#authors .col-right p {
	font-size: 1.5rem;
	line-height: 2rem;
	margin-bottom: 20px;
	margin-left: 15px;
	margin-right: 15px;
	text-align: left;
	text-justify:inter-word;
}
#authors .col-right .cta {
	color: black;
	padding: 15px 30px 15px 30px;
	font-size: 2rem;
	animation: none;
	opacity: 1;
}
#authors .col-right .cta:hover {
	color: white;
}
#authors .col-left .authors-img {
	position: relative;
	border: 0px solid white;
	width: 100%; /* or any custom size */
    height: 100%; 
}


/****************************************************************************************************/
/******************** @Contact  *********************************************************************/
/****************************************************************************************************/
#contact {
	width: 100%;
	background-image: url(./img/loghi_bg.webp);
	background-size: contain;
	background-position: top;
	position: relative;
	z-index: 1;
}
#contact::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255);
	opacity: 0.95;
	z-index: -1;
}
#contact .contact {
	flex-direction: column;
	max-width: 2400px;
	margin: 0 auto 0 auto;
	padding: 120px 0;
	width: 100%;
}
#contact .contact-items {
	/* max-width: 400px; */
	align-items: normal;
	width: 75%;
	flex: normal;
	padding-top: 60px;
	margin-bottom: 60px;
}
#contact .contact-item {
	background-color: white;
	max-width: 480px;
	padding: 30px;
	text-align: center;
	border-radius: 10px;
	margin: 30px 15px 0px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
#contact .contact-item:hover {
	box-shadow: 0px 0px 8px 0 darkgreen;
}
#contact .icon {
	width: 70px;
	margin-bottom: 10px;
}
#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
#contact  a {
	text-decoration: underline;
	color: blue;
}
#contact a:hover {
	text-shadow: 2px 2px 8px white;
	color: green;
}

/****************************************************************************************************/
/******************** @Footer  **********************************************************************/
/****************************************************************************************************/
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 600;
	font-size: 2rem;
	letter-spacing: 0.05rem;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
	justify-content: center;
	align-content: center;
}
#footer h3 {
	font-size: 4rem;
   	background: linear-gradient(90deg, black 0%, white 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px white;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
	gap: 25px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(0.75);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
	text-align: center;
}


/*
/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* home */
	#home h1 {
		font-size: 7rem;
	}
	/* End home */

	/* info Section */
	#info .info-bottom .info-item {
		flex-basis: 45%;
		margin: 2.5%;
	}
	/* End info Section */

	/* Project */
	#interface .project-item {
		flex-direction: row;
	}
	#interface .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#interface .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#interface .all-interface .project-info {
		height: 100%;
	}
	#interface .all-interface .project-img {
		height: 100%;
	}
	/* End Project */

	/* authors */
	#authors .authors {
		flex-direction: row;
	}
	#authors .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#authors .authors .col-left .authors-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid darkgreen;
	}
	#authors .col-right {
		text-align: left;
		padding: 30px;
	}
	#authors .col-right h1 {
		text-align: left;
	}
	/* End authors */

	/* contact  */
	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#info .info-bottom .info-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */
