@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

html {
  scroll-behavior: smooth;
  
  font-family: 'Nunito', sans-serif;
}

/* Begin navbar style*/
img{
    margin-left: 5px;
}

li{
    list-style: none;
    display: inline-block;
    padding: 7px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;  
}

li:hover{
    color: #B02F35;
}

input[type="button"]{
       border: none;
       outline: none;
       color: white;
}

.flex-navbar{
   display: flex;
   justify-content:space-around;
}

.logo{
    margin-top: 8px;
    margin-left: -15px;
    width:135px;
    height:135px;
}




.link{
    text-decoration: none;
    color: #766F6C;
}

/* unvisited link */
/* a {
  color: green;
  text-decoration: none;
} */

/* visited link */
a:visited {
  color: #766F6C;
  text-decoration: none;
}

/* mouse over link */
a:link:hover {
  color: #B02F35;
  text-decoration: none;
}

/* selected link */
a:active {
  color: yellow;
  text-decoration: none;
} 

.footer_content{
    color: #766F6C;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin-top: 10px;
}

/* Boton de navbar*/
input .contactBtn{
    width: 150px;
    height: 40px;
    background-color: #766F6C;
    color: white;
    border: none;
    border-radius: 4px;
    margin-left: 20px;
}

.contactBtn:hover{
    background-color: #B02F35;
}

.menu{
    margin-top: 10px;
}

a:active{
    text-decoration: none;
}

a:focus{
    text-decoration: none;
}

a:focus{
    text-decoration: none;
}

a:active{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}
/* Close navbar style*/


/* Begin Hamburguer Menu */

.open_menu{
  width: 50px;
  height: 50px;
  margin-top: 5px;
  margin-left: 50px;
  
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background-color: #766F6C;
  opacity: 0.98;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align:center;
}


.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.9s;

}

.sidenav a:hover{
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.hamburguerStyle{
  color: #766F6C;
  
}


.hamburger {
    position: relative;
    display: inline-block;
    width: 1.50em;
    height: 0.5em;
    margin-right: 0.3em;
    border-top: 0.1em solid #766F6C;
    border-bottom: 0.1em solid #766F6C;
}
/* Close Hamburguer Menu */



/* new head bar progress*/
/* styling heading which is fixed on top */
#heading {
    width: 100%;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
   
    background-color: white;
    box-shadow: 1px 1px 30px -20px rgba(0.5, 0.5, 0.5, 0.8);
    position:fixed;
    top: 0;
    z-index: 30;
   
    
}

/* styling container of progress bar */
#scroll_container {
  width: 100%;
 
}

/* styling progress bar */
#horizontal_scroll {
  margin-top: -63px;
  width: 0%;
  height: 3px;
  border-radius: 2px;
  background-color: #B02F35;
 
}

@media screen and (max-width: 1009px){
   .menu{
    margin-left: -20px;
  }
}

@media only screen and (min-width: 992px) {
  .menu{
    margin-left: -45px;
  }

  .contactBtn{
      width: 150px;
      height: 40px;
      background-color: #766F6C;
      color: white;
      border: none;
      border-radius: 4px;
      margin-left: 20px;
  }
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

