*, *::after, *::before {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --hue: 206;
  --bkg: var(--hue) 50% 96%;
  --text: var(--hue) 70% 9%;
  --dark: var(--hue) 70% 3%;
}

html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}

body {
  place-items: center;
  background-image: url(/img/hero-bg1.png);
  background-size: 100%;
  background-position: top center;
  background-repeat: repeat-y;

}

.port{
	display:flex;
	justify-content: center;
	width: 100%;
	margin-top: 6rem;
	background: none;
}
.port .porcta {
	position:absolute;
	display: inline-block;
	padding: 5px 0px 0px 15px;
	color: rgb(236, 236, 236);
	background-color: transparent;
	font-size: 3rem;
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 6rem;
	transition: 0.3s ease;
	transition-property: background-color, color;
}

.container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}


.image-container {
	width: 1300px;
    display: flex;
    overflow: hidden;
    justify-content: space-evenly;
    flex-wrap: wrap;
	align-content: flex-start;
    margin-top: 12rem;
    margin-left: 1%;
    transform: translate(0%, 0%);
}

.image-item{
    width: 200px;
    height: 300px;
	overflow: hidden;
	object-fit: cover;
	justify-content:center;
	flex-direction: column;
	position: relative;
	margin-top: 1.5rem;
	padding-right: 5px;
	border-radius: 8px;
	border: 1px solid #b6b6b6;
    cursor: pointer;
}

.image-item img{
    width: 200px;
    height: 301px;
	border: none;
	transition:  .2s linear;
}
.image-item img:hover{
    transform: scale(1.1);
}


/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	display: flex;
	min-height: 6vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
	align-items: center;
}
#header .brand img{
	width: 200px;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	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.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	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;
}
#header .nav-list ul li:hover a {
	color: #3dc7c5;
}
#header .nav-list ul li img{
	position: absolute;
    flex-direction: column;
	width: 60px;
	height: 50px;
	scale: 75%;
    margin-left: -3rem;
	margin-top: -1rem;
	transition: 0.5s ease-in-out;
}
#header .nav-list ul li img:hover{
	scale: 90%;
}

#header .hamburger {
	height: 60px;
	width: 60px;
	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.8);
	margin-right: 20px;
}
#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: 2px;
	width: 30px;
	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: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */

/* Hero Section */
#hero {
	margin-top: -6rem;
	background-image: url(/img/hero-bg.png);
	background-size: 100%;
	background-position: top center;
    background-repeat: repeat-y;
	position: relative;
	z-index: 1;
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.3;
	z-index: -1;
}

/* Footer */
#footer {
	width: 100%;
	background-image: linear-gradient(60deg, #000101 0%, #29323c 100%);
}
.cta {
	display: inline-block;
	padding: 5px 30px;
	color: rgb(236, 236, 236);
	background-color: transparent;
	border: 2px solid #3dc7c5;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 4rem;
    margin-left: 50%;
	transform: translate(-50%);
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: #3dc7c5;
	border: 2px solid rgb(236, 236, 236);
	background-color: rgba(66, 66, 66, 0.500);
}

#footer{
	margin-top: 5rem;
}
#footer .footer {
	width: 100%;
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer .brand{
	margin-left: -0.5rem;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-top: 10px;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 10px 20px 0px 35px;
}
#footer .social-item a {
    font-size: 3rem;
	color:#ececec;
	padding-top: 1rem;
}
a .fa-twitter:hover{
    color: rgb(0, 123, 255);
    transition: .1s ease-in-out;
}
a .fa-instagram:hover{
    transition: .1s ease-in-out;
    background: -webkit-linear-gradient(rgb(182, 65, 255), rgb(255, 205, 25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
a .fa-youtube:hover{
    color: rgb(229, 1, 1);
    transition: .1s ease-in-out;
}
#footer p {
	color: white;
	font-size: 1.2rem;
	padding-bottom: 10px;
}
/* End Footer */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: #3dc7c5;
		font-weight: 500;
	}
}
/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 600px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}

	#header .nav-list ul {
		padding-right: 7rem;
	}
	#header .nav-list ul li img{
		margin-left: 0.5rem;
	}
	/* Hero */



@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}

	#header .nav-list ul {
		padding-right: 7rem;
	}
	#header .nav-list ul li img{
		margin-left: 0.5rem;
	}
	/* Hero */

	/* End Hero */

	#footer .brand{
		margin-left: -1rem;
	}
}

/* End Media Query For Tablet */

/* Media Query For Desktop */

@media only screen and (max-width: 900px) {


	}

}
@media only screen and (min-width: 1000px) {
	/* 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 */


}


/* End  Media Query For Desktop */






















