:root {
  --main-color: #6d490b;
  --hover-color: #e57d23;
  --main-transition: 0.6s;
  --white-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: yellow;
}

li {
  list-style-type: none;
}

/* public class start*/
.overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 152, 199, 0.4);
  top: 0;
  left: 0;

  opacity: 0.6;
}

.text__white {
  color: #fff;
}

.myBtn {
  color: var(--hover-color);
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--hover-color);
  border-radius: 5px;
  font-size: 1.8rem;
  text-transform: capitalize;
  font-weight: 700;
  transition: var(--main-transition);
  cursor: pointer;
  margin-top: 4rem;
  display: inline-block;
  font-family: cursive;

}

.myBtn:hover {
  background-color: var(--hover-color);
  color: white;
  
  border: 2px solid transparent;
}

/* @media (max-width:767px) {
  .about
  {
    padding:0 30px;
  }
  
} */

.header-head h1
{
  
  font-weight: 700;
  color: var(--hover-color);
  font-family: cursive;
  font-size: 35px;
  text-transform: capitalize;

  border-left: 5px solid var(--hover-color);
  border-radius: 4px;
  padding-left: 20px;
  width: fit-content;
  margin: auto;
}

.header-head p
{
  font-size: 18px;
  color: #5a5a5a;
}

.span__color {
  color: var(--hover-color);
}

/* public class end*/
.logo-img {
  width: 80px;
}
@media (max-width:767px) {
  .logo-img {
    width: 50px;
  }
}

@media (max-width:767px) {
  .logo .center

  {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  } 
}

.header {
  background-color: rgba(0, 16, 41);
  position: fixed;
  z-index: 1;
  width: 100%;
}


/*start header1*/


/*start header2*/
.navbar {
  background-color: rgba(0, 16, 41);

}

.navbar-toggler {
  font-size: 27px;
  border: 4px solid var(--hover-color);
  border-radius: 8px;
}

.navbar .nav-link {
  font-size: 1.8rem;
  display: block;
  padding: 0 2rem !important;
  color: var(--white-color);
}

.navbar-brand {
  padding: 0;
  margin: 0;

  text-decoration: none;
  white-space: nowrap;

}


/*end header2*/


.btn {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 700;
  background-color: #222;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);

}

.btn svg {
  position: relative;
  z-index: 1;
}
.btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 406%;
  width: 140%;
  background: var(--hover-color);
  -webkit-transition: all .2s ease-in-out;
  transition: all .8s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}
.btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.social a {


  border-radius: 50%;
  width: 35px;
  height: 35px;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (min-width:767px) {

  .social
  {
    width: 50%;
    margin: auto;
  }
}

.social svg {
  font-size: 20px;
  color: white
}


@media (max-width:767px) {
  .name  {
     flex-direction: column !important; 
     justify-content: center;
     gap: 8px;
  }

}


.logo li {
  background-color: var(--white-color);
  color: var(--hover-color);
  text-transform: uppercase;
  width: 3rem;
  height: 3rem;
  margin: 0.3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo li:nth-child(1) {
  animation: logo-animation 5s 0.1s infinite;
}

.logo li:nth-child(2) {
  animation: logo-animation 5s 0.2s infinite;
}

.logo li:nth-child(3) {
  animation: logo-animation 5s 0.3s infinite;
}

.logo li:nth-child(4) {
  animation: logo-animation 5s 0.4s infinite;
}

.logo li:nth-child(5) {
  animation: logo-animation 5s 0.5s infinite;
}

.logo li:nth-child(6) {
  animation: logo-animation 5s 0.6s infinite;
}

.logo li:nth-child(7) {
  animation: logo-animation 5s 0.7s infinite;
}

.logo li:nth-child(8) {
  animation: logo-animation 5s 0.8s infinite;
}

.logo li:nth-child(9) {
  animation: logo-animation 5s 0.9s infinite;
}

.logo li:nth-child(10) {
  animation: logo-animation 5s 1s infinite;
}

.logo li:nth-child(11) {
  animation: logo-animation 5s 1.1s infinite;
}

.logo li:nth-child(12) {
  animation: logo-animation 5s 1.2s infinite;
}

.logo li:nth-child(13) {
  animation: logo-animation 5s 1.3s infinite;
}

.logo li:nth-child(14) {
  animation: logo-animation 5s 1.4s infinite;
}

@keyframes logo-animation {
  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(0);
  }

  15% {
    transform: translateY(-100%);
  }

  20% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

/* start landing*/
.landing {
  background: url(../images/landing.png) center no-repeat fixed;
  background-size: auto;
  height: 100vh;
  position: relative;

}

.landing__title {
  color: white;
  font-size: 6rem;
  cursor: grab;

}

.landing__title span {


  font-family: cursive;
}

.info p {
  font-size: 19px;
  color: rgb(255, 255, 255);
  max-width: 530px;
  display: block;
  margin: auto;
}

/*about*/

.head-cont h3 {
  position: relative;
  font-size: 35px;
  text-transform: capitalize;
  color: var(--hover-color);
  font-weight: 700;
  letter-spacing: 5px;
  border-left: 5px solid var(--hover-color);
  border-radius: 4px;
  padding-left: 20px;
}

.head-cont h3::before {
  content: "";
  position: absolute;
}

.head-cont p {
  font-size: 25px;
  font-family: monospace;
 
}
@media (max-width:1024px) {
  .head-cont p {
    font-size: 13px;
    font-family: monospace;
   
  }
  
}

.head-cont p span {
  font-size: 30px;
  font-weight: 700;
  color: var(--main-color);
  font-family: cursive;
}

.head-cont p:nth-of-type(2) {
  font-size: 20px;
}

.logo-about {
  width: 250px;
  height: 250px;
  position: absolute;
  top: 55%;
  transform: rotate(-33deg);
  opacity: 0.4;
  filter: grayscale(1);
}

@media (max-width:998px) {
  .logo-about {
    display: none;
  }


}





/*Popular Adventures*/ 

.boxs .box p
{
  color: black;
  font-size: 17px;
  max-width: 370px;
  padding: 10px 10px;
}
.boxs .box 
{
   
    transition: var(--main-transition);
    border-radius: 15px;
  
    overflow: hidden;
}


.boxs .box:hover .time
{
  opacity: 1;
  width: 63%;

}
.boxs .box .time:hover
{
  background-color: white;
  color: var(--hover-color);
  width: 63%;
}

.time
{
  position: absolute;
  padding: 10px 30px;
    font-size: 20px;
    background-color: var(--hover-color);
    color: white;
    border-radius: 33px;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    opacity: 0;
    transition: 1s;
    cursor: pointer;
    width: 63%;
}

.contact-info
{
  display: flex;
  align-items: end;
  gap: 55px;
  text-transform: capitalize;
  padding:0 10px 10px;
}

/*review*/





.copyright {
  background-color: rgba(0, 16, 41);
  color: var(--white-color);
  font-size: 1.7rem;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  html {
    font-size: 7px;
  }


  .header__content {
    flex-direction: column;
  }

  .phone {
    margin: 10px 0;
  }
}