* {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
}

:root {
	--size-font-title: 80px;
	--margin--title: 15em;
	--width-nav: 80%;
	--font-family: 'Roboto', sans-serif;
	--font-size-a: 21px;
}

body {
	margin: auto;
	font-family: 'Avenir Next', 'Avenir', sans-serif;
}

ul, 
li,
a {
	text-decoration: none;
	list-style: none;
}

.fab, .far {
  font-weight: 600;
}

.section_nav {
	height: 100vh;
}

.background {
	color: white;
	background-image: url('background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #cccccc;
  background-position: center;
}

.background a {
	font-size: var(--font-size-a);
	color: white;
}

.nav_menu_hamburguer {
	position: fixed;
	right: -100%;
	width: 100%;
	height: 91.5vh;
  background-color: #5d5d5d;
	transition: all 0.4s ease-in-out;
}

.nav_menu_hamburguer a i{
  margin-right: -30px;
}
.nav_link {
	cursor: pointer;
}
.change {
	right: 0;
	transition: all 0.4s ease-in-out;
}

.nav_ham_list{
  display: flex;
  flex-direction: column;
	justify-content: center;
  align-items: center;
  height: 100%;
}

.nav_menu_hamburguer_item a{
  font-size:30px;
  color:#ffffff;
  text-shadow: 1px 4px #686767;
  transition: all 2s ease-in-out;
} 
.nav_menu_hamburguer_item {
  margin-top: 20px;
} 

.nav_btn_ham {
	position: fixed;
	top: 50px;
	right: 50px;
	height: 50px;
	width: 50px;
	color: white;
}


.nav__list i {
  margin: 1rem 1.9rem;
}

.nav__list {
  padding: 90px;
}

.nav__bar {
	display: flex;
	justify-content: space-between;
	padding-top: 2em;
	max-width: var(--width-nav);
	margin: auto;
}

.navmenu a {
	margin-right: 15px;
}


.main__title {
	font-size: var(--size-font-title);
  width: 2rem;
}

.main__title2 {
	font-size: var(--size-font-title);
  width: 10em; 
  transition: all 5s ease-in-out;
}

.section__main {
	background-color: white;
  padding:200px 0;
} 

.section__main a{
  color: black; 
  text-decoration: none;
  list-style: none;
}

.main__title {
  padding-bottom: 2rem;
}

.main__instagram span {
  font-size: 30px;
}

.main__title_box {
  margin-left: 170px;
}

.main__title_box  p {
  padding-right: 50px;
  padding-top: 30px;
}

.main__title_box a {
	font-size: 3rem;
}

.scroll__down {  
  display: flex;
  flex-direction: column;
	margin-top: 7em;
	padding: 1em;
  text-align: center;
  transition: all 0.9s ease-in-out;
  font-size: 16px;
}

.scroll__down i{
  margin-top: 12px;
  text-shadow: 3px 2px rgb(66, 194, 77);
}

.my__work {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-right: 30px;
  margin-top: 30px;
}

.section__social  {
  text-align: center;
  padding-top:  4em;
}

footer {
	height: auto;
	background-color: #5d5d5d;
	background-size: cover;
	padding: 50px;
}

.footer_content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.footer_item {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

.footer_item a {
	font-size: 15px;
	color: black;
}
.footer_title {
	width: 100%;
	text-align: center;
	background-color: #5d5d5d;
	font-size: 30px;
	margin-bottom: 40px;
}

.footer_title_right {
	margin-right: auto;
	font-size: 30px;
	margin-bottom: 10px;
}

.footer_content {
	display: flex;
	justify-content: space-between;
}

.footer_social_content {
	display: flex;
	flex-direction: row;
	margin-top: 15px;
}

.footer_text {
	font-size: 15px;
}

.footer_icon {
	display: flex;
	flex-direction: row;
	margin-top: 10px;
  align-items: center;
  justify-content: center;
}

.footer_icon div {
	margin-left: 20px;
}

.footer_text p {
  padding: 15px;
}

.social_box {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	width: 35px;
	border: solid 2px black;
	margin-right: 8px;
	border-radius: 14%;
}

.footer_center_box a {
	font-size: 18px;
	margin-top: 10px;
  text-align: center;
}

input[type='text'],
select,
textarea {
	width: 100%; /* Full width */
	padding: 12px; /* Some padding */
	border: 1px solid #ccc; /* Gray border */
	border-radius: 4px; /* Rounded borders */
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: 6px; /* Add a top margin */
	margin-bottom: 16px; /* Bottom margin */
	resize: vertical;
	background-color: #c4c2c2;
}

/* Style the submit button with a specific background color etc */
input[type='submit'] {
	background-color: #7a7a7a;
	color: black;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type='submit']:hover {
	background-color: #7a7a7a;
}

/* Add a background color and some padding around the form */
.container {
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
}

/* Movil */
@media screen and (max-width: 800px) {
  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 2rem;
    font-weight: 400;
  }
  
  p{
    font-size: .9rem;
    font-weight: 200;
  }
  
  .main__title_box {
    margin:0;
    text-align: center;
    padding: 9rem 1rem;
  }

	.main__title {
    font-size: 2rem;
    width: 100%;
    padding-bottom: 3rem;
  }

  .my__work {
    margin:0;
  }
  
  /* footer */
  .footer_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_item p {
    margin: 0;
    text-align: center;
  }

  .footer_item  {
    text-align: center;
  }

  .footer_item  a{
    padding:1em 0;
    cursor: pointer;
  }

  .footer_social_content {
    padding:90px 0;
    margin: 0 auto;
  }
  
  .footer_left_box {
    padding-top: 4rem;
  }
  .footer_contact_container {
    padding-top: 2rem;
  }
  .footer_contact_info_icons {
    padding-top: 2rem;
  }
}
