/* Mobile version */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

body{
    color: #7A7673;
   
}

/* navbar */


nav {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 2rem;
   
    justify-content: center;
    
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    justify-items: center;
    
}

 .link{
    font-size: 1rem;
    padding-left: 10px;
    text-decoration: none;
    color: #7A7673;
    transition: all 250ms;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;   
}
/* 
a.link{
    padding-left: 1rem;
    padding-right: 1rem;
} */

.link:hover{
    color: #4e4a48;
    font-weight: 500;
    
}

.logo-container{
    width: 300px;  
}

img{
    width: 100%;
}


@keyframes drop {
	0% {
		opacity: 0;
		transform: translateX(180px);
	}
	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}

.hero_img{
animation: drop 1100ms ease-in;
}
/* main section */

main{
    display:block;
    
}

.hero_img{
    margin-left: auto;
    margin-right: auto;
    padding-top: 2em;
    /* width: 95vw; */
    
}
.text{
 
    justify-content: center;
    align-items: center;
    
}
h1{
    font-size: 1.75rem;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 20px;
}
h2{
    font-size: 1.75rem;
    font-weight: 500;
    padding-bottom: 0px;
    padding-top: 0px;
}

h3{
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 10px;
}

h1, h2,h3,p, .footer_text{
    text-align: center;
}

p{
    font-size: 1.25rem;
    padding: 1rem 0rem 2rem ;
}

.button {
  align-items: center;
  background-color: #FF9000;
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  justify-content: center;
  min-height: 3rem;
  transition: all 250ms;
  width: 40vw;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}  

.button:hover,
.button:focus {
  background-color: #ffae77;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button:hover {
  transform: translateY(0px);
}

.button:active {
  background-color: #ff6600;
  box-shadow: rgba(0, 0, 0, .02) 0 1px 1px;
  transform: translateY(0);
}

section{
    width: 100%;
}

.icon{
    width: 150px;
    animation: drop 800ms ease;
    /* margin: 1.5rem 0 1rem 34% ; */
}

.conteiner{
    justify-content: space-between; 
    padding: 0; 
}

/* footer */
footer{
    display: block;
    justify-content: space-between; 
    padding: 4rem 4rem 0rem 4rem; 
}

.footer_text>p{
    padding: 0px;
}

footer>.logo-container{
    margin: 0 auto;
}

.dis{
    font-size: 0.75rem;
}
a{
    font-size: 1.1rem;
    text-decoration: none;
    color: #7A7673;
    transition: all 250ms;
}
a:hover{
    color: #4e4a48;
}



