*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.html
{
  scroll-behavior: smooth;
}
.navbar {
    background-color: transparent;
    color: rgb(10, 9, 9);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 30px;
}
.user-actions {
    display: flex;
    background: transparent;
    align-items: center;
    gap: 10px;
}
.language-select {
    background: none;
    border: none;
}
@font-face {
    font-family: text1;
    src: url(./fonts/Raleway/Raleway-Italic-VariableFont_wght.ttf);
}
.login-button {
    background-color: white;
    color: #ff9800;
    font-family:text1 ;
    font-weight: 800;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}
.hero-image {
    background-color: transparent;
    background-size: cover;
    background-position: top 600px left 0px;
    height: fit-content;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
}
.overlaybg{
  background-color: rgba(0, 0, 0, 0.5);
}
.travel-options {
    background-color: transparent;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto auto;
    column-gap: 20px;
    width: fit-content;
    justify-content: space-around;
    padding: 10px;
    margin: 0 auto;
    width: 80%;
    border-radius: 5px 5px 0 0;
}
.travel-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #353232;
}
.travel-option img {
    width: fit-content;
    height: 40px;
}
@font-face {
    font-family: Head1;
    src: url(./fonts/Inria_Serif/InriaSerif-Regular.ttf);
}
.search-container {
    background-color:rgb(0,0,0,0.5);
    margin:auto;
    width: fit-content;
    padding: 20px;
    border-radius:  20px;
}
.search-form {
    display: flex;
    gap: 10px;
}
.search-input {
    flex-grow: 1;
    padding: 10px;
    outline: 1px solid #121415;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.search-button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}
.banner
{
    width: 100%;
    background: linear-gradient(to bottom, rgb(23, 23, 23,0.96) 50%, rgba(252, 247, 230, 0.7));
    height: fit-content;
}
.banrap{
    width: 90%;
    height: fit-content;
    margin: auto;
}

.typewriter
{
    width: 300px ;
}
@font-face {
    font-family: Head2;
    src: url(./fonts/Changa_One/ChangaOne-Italic.ttf);
}
.typewriter h1 {
    color: white;
    width: fit-content;
    font-family: Head2;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .10em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .17em; /* Adjust as needed */
    animation: 
      typing 3.5s steps(30, end),
      blink-caret .5s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 90% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange }
  }
  .loader
  {
    padding-top: 6px;
    float: inline-end;
    display: flex;
    gap: 0.75rem;
  }
  /* add bounce animation */
  .loader .dot 
  {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #ff9800;
    animation: bounce .5s infinite alternate;
  }
  @keyframes bounce{
    to{
        translate: 0 -0.35rem;
    }
  }
  .loader .dot:nth-child(2)
  {
    animation-delay: 140ms;
  }
  .loader .dot:nth-child(3)
  {
    animation-delay: 240ms;
  }
  
/* slider */






.container {
    margin: auto;
  width: 100%;
  max-height: 100vh;
}

.container {
 
  position: relative;
  transition: box-shadow 200ms;
  &:hover {
    box-shadow: 0 10px 50px -10px rgba(0,0,0,0.25);
  }
}
.slideshow {
	position: relative;
	width: 93%;
    margin: auto;
    max-height: inherit;
	&:after {
		content: '';
		display: block;
        max-height: inherit;
		padding-bottom: 90vh;
	}
	&:hover a {
		opacity: 1;
	}
	a {
		opacity: 0;
		position: relative;
		text-decoration: none;
		transition: opacity 0.5s;
		&:after {
			border-color: #FFF #FF9800 transparent transparent;
			border-style: solid;
			border-width: 2px;
			color: #FFF;
			display: block;
			height: 10px;
			position: absolute;
			top: calc(50% - 5px);
			width: 10px;
		}
		&:first-child:after {
			content: '';
			left: 10px;
			transform: rotate(-135deg);
		}
		&:nth-child(2):after {
			content: '';
			right: 10px;
			transform: rotate(45deg);
		}
	}
	.slide {
		background-color: #0f0e0e;
		box-sizing: border-box;
		display: none;
		height: 100%;
		position: absolute;
		width: 100%;
		&:first-child,
		&:target {
			display: block;
		}
		a {
			display: block;
			height: 100%;
			position: absolute;
			width: 50%;
			&:nth-child(2) {
				left: 50%;
			}
		}
		img {
      border-radius: 5px;
			width: 100%;
            height: inherit;
		}
	}
}
.pagination {
  display: flex;
  bottom: 10px;
  justify-content: center;
  position: absolute;
  width: 100%;
  a {
    background: rgba(#FFF,0.75);
    border-radius: 50%;
    display: block;
    height: 10px;
    width: 10px;
    &:not(:last-child) {
      margin-right: 5px;
    }
    span {
      display: none;
    }
  }
}

a:target {
	color: red;
}
.mid1{
    width: 100%;
    height: fit-content;
   background-color: rgba(245, 243, 239);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.6em;
    margin: 0;
}
.mid1rap{
    width: 90%;
    margin: auto;
    height: fit-content;
    padding-bottom: 7vh;
}
h2{
   
    text-align:center;
    padding-bottom: 20px;
  }
  .warpper{
    display:flex;
    flex-direction: column;
    align-items: center;
  }
  .tab{
    cursor: pointer;
    padding:10px 20px;
    margin:0px 10px;
    background:#ff9800;
    display:inline-block;
    color:#433b3b;
    border-radius:10px;
    box-shadow: 0 0.5rem 0.8rem #00000080;
  }
  @font-face {
    font-family: Head3;
    src: url(./fonts/Lato/Lato/Lato-Black.ttf);
  }
  .panels{
    background:rgb(255, 255, 255,0.7);
    box-shadow: 0 0 2rem #00000080;
    min-height:200px;
    width:100%;
    border-radius: 15px;
    margin-top: 30px;
    max-width:90%;
    overflow:hidden;
    padding:20px;  
  }
  .panel{
    display:none;
    animation: fadein .8s;
  }
  @keyframes fadein {
      from {
          opacity:0;
      }
      to {
          opacity:1;
      }
  }
  .panel-title{
    font-size:1.5em;
    font-weight:bold
  }
  .radio{
    display:none;
  }
  #one:checked ~ .panels #one-panel,
  #two:checked ~ .panels #two-panel,
  #three:checked ~ .panels #three-panel{
    display:block
  }
  #one:checked ~ .tabs #one-tab,
  #two:checked ~ .tabs #two-tab,
  #three:checked ~ .tabs #three-tab{
    background:#fffffff6;
    color:#000;
    
  }
  /* add deals */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}
.card {
    background-color: #FF9800;
    border-radius: 10px;
    max-height: 400px;
    width: fit-content;
    overflow: hidden;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card h2 {
    font-size: 24px;
    margin-bottom: 15px;
}
.card img {
    border-radius: 20px;
    margin-bottom: 15px;
}
.card button {
    background-color: #FFD54F;
    color: #E65100;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.card button:hover {
    background-color: #FFECB3;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.feature {
    background-color: rgb(255, 255, 255,0.8);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(12, 4, 4, 0.6);
}
.feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}
.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #E65100;
}
.feature p {
    font-size: 14px;
    color: #666;
}

.visited-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.visited-cards .visited-card {
    background-color: #fff;
    border-radius: 10px;
    width: 250px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.visited-cards .visited-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
 
.visited-cards .visited-card .card-content{
    padding: 15px;
    color: black;
    text-align: left;
}
.imageslide
{
  padding-top: 5vh;
  width: 100%;
  height:fit-content;
  /* background-color: rgba(252, 247, 230, 0.5); */
  background: linear-gradient(to bottom, rgba(252, 247, 230, 0.5),#fff 80%);
}
.imagerap
{
  width: 90%;
  margin: auto;
}
.section
{
  width: fit-content;
  height: fit-content;
  /* display: grid;
  grid-template-columns: max-content max-content;
  grid-column-gap: 30px; */
}
.slidetext
{
  width: fit-content;
  /* background: white;
  border-radius: 15px 30px; */
}
@font-face {
  font-family: Head3;
  src: url(./fonts/Archivo/Archivo-Italic-VariableFont_wdth\,wght.ttf);
}

.slideimg {
  width: 100%;
}
video{
  width: 110dvw;
  /* min-height: 100dvh; */
  
  object-fit: cover;
}
.overlay
{
  position: absolute;
  margin: auto;
  color: white;
  background-color: hsl(181deg 50% 20% / 70%);
  padding: 2rem;
  margin-top: 530px;
  background: transparent;
}
.overlay h2 {
  border-radius: 10px;  
    background: rgb(0, 0, 0,0.6)none repeat scroll 0 0 ;
    color: rgb(237, 234, 229);
    font-weight: 600;
    margin: 2rem 3rem 0;
    mix-blend-mode: overlay;
    padding: 5px 15px;
    text-align: center;
}
.textp
{
  width: 100%;
  height: fit-content;
  background: linear-gradient(to bottom,  #ffff, rgb(243, 243, 243)80%);
}
.textpcontainer
{
  width: 90%;
  margin: auto;
  margin-top: 20px;
  height: fit-content;
  display: flex;
  gap: 1em;
  /* border: 2px solid red; */
}
.colleft
{
  flex:1.7;
  height: fit-content;
  padding: 10px;
  border-radius: 1em;
  /* border: 1px solid red; */
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.row
{
  flex:1;
  height: fit-content;
  /* border: 2px solid red; */
  border-radius: 1em;
}
.colright
{
  flex: 1;
  height: fit-content;
  padding: 10px;
  border-radius: 1em;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.col
{
  flex: 1;
}
.textp1
{
  background: #0f0e0e;
  border-radius: 1em;
  padding: 1em;
}
@font-face
{
  font-family: para1;
  src: url(./fonts/Antic_Didone/AnticDidone-Regular.ttf);
}
.typewriter1 h1
{
  overflow: hidden; /* Ensures the content is not revealed until the animation */
 /* border-right: .10em solid orange; The typwriter cursor */ 
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .19em; /* Adjust as needed */
  animation: 
    typing1 4.5s steps(20, end),
    blink-caret .5s step-end infinite;
}
@keyframes typing1 {
  from { width: 0 }
  to { width: 80% }
}
.textp1 p
{
  color: #ddd;
  font-size: 18px;
  font-family:para1 ;
}
.spots
{
  width: 100%;
  height: fit-content;
}
.spotswrapper
{
background: linear-gradient(to bottom, rgb(243, 243, 243),#ffff 80%);
padding-top: 80px;
    width: 100%;
    height: fit-content;
}
.spotswrapper h1,.routes h1,.slidetext h1
{
  font-size: 4em;
  margin-left:20px ;
  letter-spacing: 1px;
  font-weight: bolder;
  font-family: Head2;
  text-transform: uppercase;
  background: url(./Project/fligght1.jpg);
  background-size: contain;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text 7.5s ease-in-out infinite;
}
@keyframes text
{
  from { background-position: 0% 50%;}
  to {background-position: 100% 100%;}
}
.sp
{
  padding-left: 250px;
}
.routes
{
  width: 100%;
  height: fit-content;
  background: #fff ;
  padding-bottom: 20px;
}
.routewrap
{
  width: 90%;
  margin: auto;
  background-color: #ffff;
  border: 3px solid #ff9800;
  padding: 1em;
  border-radius: 1em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;

}
.icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 4px;
  background-image: url(./flight-takeoff-svgrepo-com.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.city {
  color: #007bff;
  text-decoration: none;
}
.city:hover {
  text-decoration: underline;
}
.footer
{
  width: 100%;
  height: fit-content;
  background-color: #171717;
  border-top: 5px solid #ff9800;
  border-radius: 20px 10px 0px 0px;
}
.footrap
{
  padding-top: 40px;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 2em;
  flex-wrap: wrap;
}
.img1
{
  position: relative;
}
.overlay1 {
  font-family: Head1;
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #fff;
  width: 100%;
  transition: .5s ease;
  opacity:0;
 
  font-size: 20px;
  padding: 10px;
  text-align: center;
}
.img1:hover .overlay1 {
  opacity: 1;
}
.foot
{
  flex:1;
  height: fit-content;
  /* border: 3px solid red; */
  padding: 0em 1em;
  border-radius: 1em;
}
.foot22 ul li
{
  padding: 5px 25px;
  color: white;
 
}
#highlight
{
  color: #ff9800;
  font-family: Head3;
  font-weight: bolder;
  padding-right: 10px;
}
.social ul
{
  margin-left: 20px;
}
.social ul li{
  list-style: none;
  padding:  5px 10px;
  color: #FF9800;
  font-size: 17px;
}
.social ul li :hover
{
  text-decoration: underline;
}
#submit
{
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  font-size: 18px;
  transition: border 1.9s ease-in-out;
}
#submit:hover
{
  cursor: pointer;
}
#submit:active
{
  border: 2.5px solid #ff9800;
}