@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root{
    --primary-color: #2095ae;
    --white-color: #fff;
    --light-gray-color: #ddd;
    --blue-color: #0f2454;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
html{
    font-size: 16px;
}

.container{
    max-width: 1440px;
    margin:  0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
}

img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

a{
    text-decoration: none;
}

.heading-normal-txt{
    font-size: 1rem;
    letter-spacing: 1rem;
    color: var(--primary-color) ;
}

.headings{
    font-size: 3rem;
    font-family: "ubuntu";
    padding-bottom: 2rem;
    letter-spacing: 2px;
}

.headings span{
    color: var(--primary-color);
}

.secondary-heading{
    font-size: 2.5rem;
     font-family: "ubuntu";
    padding: 1rem 0;
} 

.lead{
    font-size: 1.1rem;
    line-height: 2;
    text-align: justify;
}

.primary-btn{
    width: 50%;
    outline: none;
    background-color: var(--primary-color) ;
    border: none;
    padding: 0.7rem;
    font-size: 1.3rem;
    border-radius: 4px;
    color: var(--white-color);
    cursor: pointer;
}

/*!---=====headerstart======----*/
header{
padding: 1rem 0;
position: fixed;
top: 0;
left: 0;
z-index: 6;
width: 100%;
height: 100;
 background: var(--primary-color);
 transition: all 0.3s ease-in-out;
}

.logo img{
width: 50%;
height: 100%;
object-fit: cover;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
  list-style-type: none;
  display: flex;
}

nav ul li {
  margin: 0 0.9rem;
  position: relative; /* important for ::before positioning */
}

nav ul li a {
  color: var(--white-color);
  font-size: 1rem;
  position: relative; /* anchor becomes positioning reference */
  text-decoration: none;
}

nav ul li a::before {
  content: "";
  position: absolute;
  bottom: -5px; /* place line just below text */
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white-color);
  opacity: 0;
  transition: all 0.3s ease;
}

nav ul li a :hover {
  width: 100%; /* underline only as wide as the link text */
  opacity: 1;
}


.menu-btn {
    display: none;
    color: var(--white-color);
    font-size: 1.3rem;
    cursor: pointer;
}
.close-btn{
     display: none;
    color: var(--white-color);
    font-size: 1.3rem;
    cursor: pointer;
}

/*!---=====showcase start   ======----*/
main{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: 0;
}
.swiper{
        height: 100vh;
}

.silde-container{
    width: 100%;
}

.silde-container img{
width: 100%;
height: 100%;
object-fit: cover;  
}

.img-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: 5;
    font-family: "ubuntu";  
    text-align: center;
    transform: translate(-50%,-50% );
}
.img-overlay p{
    font-size: 1rem;
    color: var(--white-color);
    letter-spacing: 8px;
    animation: animate 4s forwards;
}   
.img-overlay h2{
    font-size: 5rem;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: animate 4s forwards;
    transition: all 0.5s ease-in-out;
}
.overlay{
    position: relative;
}

.overlay::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
} 

@keyframes animate {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }
    50% {
        opacity: 0.2;
    }
     70% {
        opacity: 0.5;
    }
      70% {
        opacity: 1;
        transform: translateX(-0%);
    }
}

.img-overlay h2 span{
    color: transparent;
    -webkit-text-stroke: 1px  var(--white-color);
}
/*---=====showcase end   ======------*/


/*---=====search start   ======------*/

#location-search{
    transform: translateY(-170%)
}
.form-wrapper{
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    width: 100%;
}
form{
display: flex;
align-items: center;
justify-content: center;
}
.from-control{
    width: 100%;
}
form input,select{
   padding: 0.6rem;
    outline: none;
    font-size: 1.1rem;
    color: #000;
    border: 1px solid var(--light-gray-color);
    margin: 0 0.4rem;
    border-radius: 4px;
}
/*---=====search end   ======------*/

/*---=====about Start  ======------*/

.about-content-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 3rem;
    margin: 3rem 0;
}

.about-content-wrapper h2 span{
  color: var(--primary-color);
  font-family: "ubuntu";
   
}
.about-content-wrapper ul{
    list-style:none;
}
.about-content-wrapper ul .icons{
 display: flex;
 align-items: center;
 margin: 1rem 0;
}

.about-content-wrapper ul .icons i{
    background: var(--primary-color);
    padding: 0.8rem;
    border-radius: 50%;
    color: var(--white-color);
}

.about-content-wrapper ul p{
    margin-left: 1rem;
}
.agency-right-side .img{
position: relative;
}
.agency-right-side .img img{
    width: 75%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    transition: 0.5s ease-in;
}

.agency-right-side .img::after{
    content: "";
    position: absolute;
    top: 15px;
    left: 55px;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    width: 70%;
    height: 100%;
    z-index: -2;
}
.agency-right-side .img img:hover{
    transform: scale(0.95);
}
/*---=====about end  ======------*/


/*---=====Choose Place  ======start------*/
#choose-place{
    padding: 6rem 0;
}

.choose-wrapper{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 2rem;
}

.lg-img{
    position: relative;
    transition: all 0.5s ;
    cursor: pointer;
    width: 100%;
    height:96%;
}

.lg-img:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.lg-img:hover{
    transform:scale(1.02);
}

.img-content{
    position: absolute;
    bottom: 20px;
}

.img-content h2{
    padding: 0 2rem;
    color: var(--white-color);
}

.hidden-content{
    padding: 0.5rem 2rem;
    color: var(--white-color);
    transform: translateY(120%);
    transition: all 0.5s ease-in-out;
}

.lg-img:hover .hidden-content{
    transform: translateY(0%);

}

.price-label{
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    position: absolute;
    top:50px;
    right: 0px;
    transform: rotate(-90deg);
}
.row-wise-img{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 2rem;
}
/*---=====Choose Place  ======end------*/

/*---=====Choose counter ======start------*/

#static-counter{
    padding: 6rem 0;
    background: url("project/counter.1.jpg") no-repeat center/cover;
    background-attachment: fixed;
    position: relative;
    z-index: 40;
}
#static-counter::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.static-wrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 2rem;
    text-align: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}
.static-icons{
    color: var(--white-color);
    cursor: pointer;
}

.static-icons i{
    font-size: 3rem;
    padding: 2rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease-in;   
}
.numbers{
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 1rem;
}
.static-icons i:hover{
    background: var(--primary-color);
    border: none;
    transform: translateY(-20%);
}

/*---=====Choose counter======end-----*/

/*---=====top destination======Start-----*/

#top-destination{
    padding: 6rem 0;
}

.top-destination-wrapper{
    width: 100%;
}

.carousel{
    position: relative;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.carousel:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.carousel-img-overlay{
    width: 100%;
}

.hidden-content-carousel{
    padding: 0.5rem 2rem;
    color: var(--white-color);
    transform: translateY(120%);
    transition: all 0.5s ease-in-out;
}

.carousel-img-overlay i{
 padding-right: 1rem;
}

.carousel:hover .hidden-content-carousel{
    transform: translateY(0%);
}

.carousel:hover{
    transform: scale(1.2);
} 

/*---=====top destination======End-----*/

/*---=====video======Start-----*/

#costa-victoria{
    padding: 4rem 0;
    position: relative;
}

#costa-victoria video{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    max-height: 650px;
}

.video-bg{
    position: relative;
}

.video-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.vid-content{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%,-50% );
    color: var(--white-color);
}

.vid-content h2{
    font-size: 2.5rem;
    font-family: "ubuntu";
    margin-bottom: 1rem;
    letter-spacing: 4px;
    color: var(--white-color);
}

.vid-content span{
    font-size: 1.2rem;    
    margin: 0 1.5rem;
}

/*---=====video======End-----*/

/*-----------travel country-----------------start--*/

#travel-countries{
    padding: 6rem 0;
}
.travel-countries-wrapper{
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 2rem;
    width: 100%;    
}
.countries-content{
    margin-top:1.5rem;
}

.countries-content ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}

.countries-content ul li{
    cursor: pointer;
    margin: 1.5rem 0.5rem;
}

.countries-content ul li i{
    margin: 0rem 0.5rem;
}

.slider-content-wrapper{
    overflow: hidden;
}

/*france*/
.france-content{
    padding: 8rem 0;
    display: grid;
    grid-template-columns: 3fr 2fr;
    width: 100%;
    grid-gap: 2rem;
}
/*france  CLOSE*/

/*=============TRAVEL BLOG===========*/
#travel-blog{
    background-color: var(--blue-color);
    padding: 6rem 0;
    
}
 
.blog h2{
    color: var(--light-gray-color);
}

.blog{
    position: relative;
}

.blog{
    position: relative;
}

.blog:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.blog img-overlay{
        width: 100%;
}

.blog-img-content{
    position: absolute;
    bottom: 20px;
}

.blog-img-content{
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    padding: 2rem 1rem;
    transition: all 0.3s ease-in;
    transform: translateY(-50%);
    color: var(--white-color);
}

.blog:hover .blog-img-content{
    transform: translateY(0%);
}

.blog .price-label{
    transform: rotate(0deg);
}

/*=============TRAVEL BLOG===========*/

/*=============review-----------*/
#testimonials{
    padding: 6rem 0;
    width: 100%;
    background: url("project/counter.1.jpg") no-repeat center/cover;
    background-attachment: fixed;
}

#testimonials .headings{
color: var(--white-color);
}

.testimonails-wrapper{
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white-color);
    padding: 2rem 6rem;
}

.test-img{
    border-radius: 50%;
    display: flex;
    text-align: center;
    justify-content: center;
}

.testimonails-content i{
color: var(--primary-color);
}

.testimonails-content p{
 text-align: center;
}

.test-img img{
    width: 20%;
    object-fit: cover;
    margin: 1rem 0;
    border-radius: 50%;
}

.icons{
        text-align: center;
}

.guest{
    font-size: 0.75rem;
}

/*------------footer*/
#footer{
    padding: 4rem 0;
    background: var(--blue-color);
}

.footer-content{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--light-gray-color);
}

.ft-content{
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--white-color);
}
.icon i{
    padding: 1rem;
    font-size: 1rem;
    background: var(--primary-color);
}

.content{
    padding: 1rem;
}

.footer-wrapper{
    display: grid;
    grid-template-columns:  repeat(3,1fr);
    padding: 1rem 0;
    grid-gap: 2rem;
    color: var(--white-color);
    margin: 4rem 0;
}

.about img{
 width: 40%;
 object-fit: cover;
}
.social-icons{
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.social-icons i{
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem;
    font-size: 1.3rem;
    margin: 1rem 0;
    border-radius: 50%;
    cursor: pointer;
}

.about .lead{
    font-size: 0.95rem;
    margin-top: 1rem;
}

.links ul{
    list-style: none;
}

.links ul li{
margin: 1rem;
font-size: 1rem;
}

.links ul li a{
    color: var(--white-color);
}

.subscribe .lead{
    font-size: 1.1rem;
    letter-spacing: 1;
}

form{
    position: relative;
    
}

.subscribe input{
    width: 100%;
    outline: none;
    border: 1px solid var(--light-gray-color);
    padding: 0.6rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    position:static;

}

.subscribe button{
   display: block;
   position: absolute;
   top: 30%;
   right: 4%;
   padding: 0.5rem 1.5rem;
   outline: none;
   border: none;
   border-radius: 5px;
   background: var(--primary-color);
   color: var(--white-color);
   font-size: 1rem;
   cursor: pointer;
    transition: 0.3s ease;

}

.subscribe button:hover {
  background: #0b7895;
}


.footer{
    border-top: 1px solid var(--light-gray-color);
}

.footer p{
    text-align: center;
    padding: 1rem 0;
    color: var(--white-color);
}





