*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* Header */

header{
  background-color: white;
}

header li,a{
color: #767676;
text-decoration: none;
}

.nav_menu li{
  list-style: none;
}
.nav_menu li a{
  transition: all 0.3s ease 0s;
  font-size: 20px;
  font-weight:bold;
  text-decoration: none;
}
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  min-height: 70px;
  position: fixed;
  background-color: white;
  width: 100%;
}

.nav_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:50px;
  text-align: left;
}

.nav_links{
  transition: 0.7s ease;
}

.nav_links:hover{
  color: black;
}

.hamburger{
  display: none;
  cursor: pointer;
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: black;
}

.Tour-nav{
  color: rgba(0,0,0,0.7);
}

/* Body */

.Second-Heading{
  padding-top: 50px;
  justify-content: center;
  text-align: center;

}

.Second-Heading h1{
  padding-top: 100px;
  justify-content: center;
  text-align: center;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 700;
}

.Second-Heading p{
  font-size: 25px;
  justify-content: center;
  text-align: center;
}

.Tour-Dir{
  color: #04ddb2;
}

button{
  border-radius: 30px;
  padding: 13px ;
  border: none;
  background-color: #04ddb2;
  color: #fff;
  width: 150px;
  font-size: 20px;
  font-weight:bold;
}

button:hover{
  transform: scale(1.1,1.1);
  transition-duration: 0.8s;
}

.Pic img{
width: 80%;
text-align: center;
margin-top: 30px;
margin-left: auto;
margin-right: auto;
display: flex;
border-radius: 30px;
cursor: pointer;
}

.Pic img:hover{
  box-shadow: 0px 50px 50px rgba(0,0,0,0.2)
}

.Third-Heading{
  padding-top: 50px;
  padding-bottom: 80px;
  justify-content: center;
  text-align: center;
}

.Third-Heading h1{
  padding-top: 50px;
  padding-bottom: 40px;
  justify-content: center;
  text-align: center;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  width: 400px;
  margin: auto;
}

hr{
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */

footer{
  font-family: sans-serif;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  background-color: #fff;
  width: 100%;
  position: relative;
}

footer ul{
  list-style: none;
  padding-left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer li{
  padding-top: 15px;
  padding-bottom: 15px;
  color: #767676;
  font-size: 16px;
}

.Icon{
  background: #fff;
  position: 0;
  width: 100px;
  background-color: #333;
  left: 50px;
}

.ft-Title{
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding-top: 35px;
  padding-bottom: 15px;
  color: rgba(0,0,0,0.7);
}

.ft-main{
  padding: 1.25rem 1.875rem;
display: flex;
flex-wrap: wrap;
position: relative;
}

.ft-main-item {
  padding: 1.25rem;
  min-width: 8.5rem;
}

.Brand,.Brand-2{
  padding: 1.25rem;
  margin-bottom: 50px;
}

.Brand p{
  padding-top: 15px;
  padding-bottom: 15px;
}

.Brand-2 {
  padding: 1.25rem;
  margin-bottom: 50px;
}

.Brand-2 p{
  padding-top: 15px;
  padding-bottom: 15px;
}

.Icons{
  padding: 1.25rem 1.875rem;
}

.fa-comment, .fa-twitter, .fa-youtube-play{
  border-radius: 50%;
  background-color: #04ddb2;
  color: #fff;
  padding: 10px;
}

.fa-comment:hover, .fa-twitter:hover, .fa-youtube-play:hover{
  transform: scale(1.3,1.3);
  transition-duration: 0.1s;
}

@media (max-width: 850px) {

  .hamburger{
    display: block;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.1);
    padding: 10px;
  }

  .hamburger.active .bar:nth-child(2){
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar{
    position: fixed;
  }

  .nav_menu{
    position: fixed;
    left: -100%;
    top: 70px;
    gap:0;
    flex-direction: column;
    display: inline-block;
    background-color: white;
    width: 100%;
    transition: 0.3s;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-item{
    padding: 20px 31px;
    justify-content: center;
    align-items: center;
  }

  .nav_menu.active{
    left: 0;
  }

  .nav_menu >.btn-1{
    width: 100%;
  }

  .Brand{
    display: none;
  }

  .Brand-2{
    text-align: center;
    justify-content: center;
  }

}

@media (min-width:850px) {

  .Brand-2{
    display: none;
  }

}
