@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Bodoni Moda', serif;
}

 ::selection {
    color: #038aa8;
    background-color: #bdbdbd;
}

body {
    background-color: #ffffff;
}


/* Add the display flex and flex column direction to the flex container css rule*/

.container {
    width: 100%;
    margin: 10px auto;
}

a {
    color: #5f9c60;
    text-decoration: none;
}

a:hover {
    color: #d1d1d1;
    text-decoration: none;
}


/* Header  style start here */

.header {
    background-color: #71b972;
    box-shadow: 1px 1px 5px 0px #b3b3b338;
    /* position: sticky;
    top: 0; */
    width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.logo {
    display: inline-block;
    margin: 5px 0 5px 20px;
    height: 80px;
    width: 80px;
}


/* Nav menu when hidden */

.nav {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #5f9c60;
    overflow: hidden;
}

.menu a {
    display: block;
    padding: 10px;
    color: white;
    transition: 0.5s;
    margin-top: 10px;
    margin-right: 10px;
    text-decoration: none;
}

.menu a:hover {
    background-color: #588059;
}

.nav {
    max-height: 0;
    transition: max-height .5s ease-out;
}


/* hambarger Menu Icon */

.hamb {
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}

.hamb-line {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
}


/* Style span tag */

.hamb-line::before,
.hamb-line::after {
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before {
    top: 7px;
}

.hamb-line::after {
    top: -7px;
}

.side-menu {
    display: none;
}


/* Toggle menu icon */

.side-menu:checked~nav {
    max-height: 100%;
}

.side-menu:checked~.hamb .hamb-line {
    background: transparent;
}

.side-menu:checked~.hamb .hamb-line::before {
    transform: rotate(-45deg);
    top: 0;
}

.side-menu:checked~.hamb .hamb-line::after {
    transform: rotate(45deg);
    top: 0px;
}


/* banner style statrt here */

#banner {
    background: linear-gradient(0deg, #0200247f 0%, #06321d52 50%, #00282583 100%), url(images/person_banner.jpeg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-text {
    color: white;
    flex-direction: column;
}

.banner-text h1 {
    font-size: 2em;
    /* text-shadow: 0px 1px 6px rgba(95, 156, 96, 0.5); */
}

.banner-text p {
    font-size: 1em;
    font-style: italic;
    font-family: 'DM Sans', sans-serif;
}

.banner-btn {
    margin: 70px auto 0;
}

.banner-btn a {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 16px;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    transition: color 0.5s;
}

.banner-btn a span {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #5f9c60;
    z-index: -1;
    border-radius: 10px;
    transition: 0.5s;
}

.banner-btn a:hover span {
    width: 100%;
}

.banner-btn a:hover {
    color: white;
}


/* Responsiveness */

@media screen and (min-width: 768px) {
    .nav {
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li {
        float: left;
    }
    .menu a:hover {
        background-color: transparent;
        color: rgb(63, 62, 62);
        transition: 0.5s;
    }
    .hamb {
        display: none;
    }
    #banner h1 {
        font-size: 4em;
        width: 100%;
    }
    #banner p {
        font-size: 1.5em;
    }
}


/* banner style end here */


/* main content start here */

.main-content {
    margin-top: 40px;
    height: auto;
    width: 100%;
}


/* line designe  */

.line-designe {
    height: 56px;
    padding-bottom: 15px;
    padding: 0;
    text-align: center;
}

.line-designe span {
    border-top: 2px solid #5f9c60;
    display: inline-block;
    height: 0px;
    margin: 18px auto;
    width: 40%;
}

.line-designe img {
    height: 50px;
    vertical-align: initial;
    align-items: center;
}


/* span {
    background-color: black;
    border-top: 1xp solid black;
    height: 50px;
    width: 50px;
    display: inline-block;
} */


/* main continer text and img style start here*/

.main-continer {
    width: 100%;
    height: 700px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.item {
    width: 40%;
    height: 500px;
    font-weight: 700;
    color: white;
    text-align: left;
    transition: transform 0.5s;
    background-color: none;
}

.item img {
    width: 100%;
}

.item p {
    padding: 0;
    margin: 0px 0;
    color: #5f9c60;
    font-weight: lighter;
    font-size: 17px;
}


/* .item button {
    font-size: 70px;
} */

.item h2 {
    padding: 0;
    margin: 20px 0;
    color: #5f9c60;
}

.item-1:hover {
    transform: translateY(-10px);
    /* box-shadow: 0px 0px 6px #000; */
    box-shadow: 17px 17px 16px 0px #5f9c60;
    transition: 0.5s;
}

.item-1 {
    background-image: url(images/man_hiking\ copy.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    float: left;
    box-shadow: 14px 14px 0px 14px #5f9c60;
    /* box-shadow: 23px 23px 0px 0px #5f9c60; */
    transition: 0.5s;
}

.main-continer .item-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: justify;
}


/* responsive main continer  text and img style */

@media screen and (max-width: 768px) {
    .main-continer {
        flex-direction: column;
        width: 100%;
    }
    .item {
        width: 100%;
    }
    .item-1 {
        box-shadow: 0px 15px 0px 0px #5f9c60;
        transform: none;
        transition: none;
        box-shadow: none;
        margin-top: 30px;
        border-radius: 15px;
        width: 100%;
    }
    .item-1:hover {
        transition-delay: none;
        transform: none;
        transition: none;
        box-shadow: none;
    }
}


/* video part start here  */

.video {
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.border {
    height: auto;
    width: 90%;
    border: 2px solid #5f9c60;
    border-radius: 15px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 30px 0 30px 0;
}

video {
    border-radius: 15px;
}

.text h1 {
    color: #5f9c60;
    text-align: center;
}

.text h1::first-letter {
    font-size: 2em;
}

@media screen and (max-width: 768px) {
    .video {
        height: auto;
        width: 100%;
        flex-direction: column;
    }
    video {
        height: auto;
        width: 90%;
        margin-top: 30px;
    }
    .border {
        flex-direction: column;
    }
}

.button {
    display: flex;
    justify-content: center;
    /* align-items: flex-end; */
    margin: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    transition: color 0.5s;
}

button {
    width: 180px;
    height: 40px;
    color: #5f9c60;
    border: 2px solid #5f9c60;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
    background: transparent;
    font-size: 1em;
    font-weight: 350;
    /* box-shadow: #00000033 0px 2px 18px 0px, #0000001a 0px 2px 4px 0px, #ffffff0d 0px 0px 0px 0px inset; */
    border-radius: 10px;
    transition: 0.5s;
}

button:hover {
    background: white;
    color: white;
    transition: 0.5s;
    background: #5f9c60;
    border-radius: 10px;
    transition: 0.5s;
}


/* ==== Testimnial start here ====== */

.testimonial {
    height: auto;
    width: 100%;
    padding-right: 0px;
    padding: 50px;
}

.testimonial h1 {
    text-align: center;
    padding: 30px;
    color: #5f9c60;
    font-size: 3em;
    border-left: 5px solid #5f9c60;
    border-right: 5px solid #5f9c60;
    background: #5f9c6031;
}

.testimonial-box {
    display: flex;
    justify-content: center;
    border-left: 5px solid #5f9c60;
    border-right: 5px solid #5f9c60;
    background: #5f9c6031;
}

.text1 {
    text-align: center;
    padding: 20px;
    height: auto;
    width: 30%;
}

.text-2 {
    border-top: 0;
    border-right: 1px solid #5f9c60;
    border-bottom: 0px solid #5f9c60;
}

.text-3 {
    border-top: 0;
    border-right: 1px solid #5f9c60;
    border-bottom: 0px solid #5f9c60;
}

.text-4 {
    border-top: 0;
    border-right: 0;
    border-bottom: 0px solid #5f9c60;
}

.text-5 {
    border-bottom: 0;
    border-right: 1px solid #5f9c60;
    border-top: 1px solid #5f9c60;
}

.text-6 {
    border-bottom: 0;
    border-right: 1px solid #5f9c60;
    border-top: 1px solid #5f9c60;
}

.text-7 {
    border-bottom: 0;
    border-right: 0;
    border-top: 1px solid #5f9c60;
}

hr {
    width: 50%;
    margin: 0 25% 0 25%;
    border: 1px solid #5f9c60;
}

.span {
    border-top: 2px solid #5f9c60;
    display: inline-block;
    height: 0px;
    margin: 18px auto;
    width: 40%;
    display: inline-block;
}

.testimonial-box img {
    padding: 20px;
}

.testimonial-box p {
    padding-top: 10px;
    color: #474747;
}

.testimonial-box h2 {
    padding-top: 10px;
    color: #474747;
}

.testimonial a {
    color: #5f9c60;
}

.testimonial a:hover {
    color: #6c6d1c;
    border-bottom: 1px solid #5f9c60;
}


/* images gallery */

.gallery-continaer img {
    width: 400px;
    height: auto;
    padding: 5px;
    opacity: 80%;
}

.gallery-continaer img:hover {
    cursor: pointer;
    opacity: 100%;
    transition: 1s;
}

.gallery-continaer {
    display: flex;
    /* max-width: 1200px; */
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

@media screen and (max-width: 768px) {
    .testimonial {
        flex-direction: column;
    }
    .testimonial h1 {
        border: none;
        /* border-right: 1px solid #5f9c60;
        border-left: 1px solid #5f9c60; */
        font-size: 2em;
    }
    .testimonial-box {
        flex-direction: column;
        height: auto;
        width: 100%;
        border: none;
    }
    .text1 {
        flex-direction: column;
        height: auto;
        width: 100%;
        border: 1px solid #5f9c60;
        margin: 5px 0 5px 0;
    }
    .testimonial-box img {
        height: auto;
        width: 40%;
    }
}


/* ==== Testimnial end here ====== */


/* ---------------------> advrnture advantage page start here <---------------- */

#banner-adventur {
    background: linear-gradient(0deg, #0200247e 0%, #06321d59 50%, #00282596 100%), url(images/gra.jpeg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-adventur-text {
    color: white;
    flex-direction: column;
}

.banner-adventur-text h1 {
    font-size: 4em;
}

.banner-adventur-text p {
    font-size: 1em;
    font-style: italic;
    font-family: 'DM Sans', sans-serif;
}

.banner-btn {
    margin: 70px auto 0;
}

.banner-btn a {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 16px;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    transition: color 0.5s;
}

.banner-btn a span {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #5f9c60;
    z-index: -1;
    border-radius: 10px;
    transition: 0.5s;
}

.banner-btn a:hover span {
    width: 100%;
}

.banner-btn a:hover {
    color: white;
}


/* Responsiveness */

@media screen and (max-width: 768px) {
    .banner-adventur-text h1 {
        font-size: 2em;
        width: 100%;
    }
}


/* end of the adventure advantages baneer */

.line-designe-2 {
    height: 56px;
    padding-bottom: 15px;
    padding: 0;
    text-align: center;
}

.line-designe-2 span {
    border-top: 2px dashed #5f9c60;
    display: inline-block;
    height: 0px;
    margin: 0px auto;
    width: 40%;
}

.line-designe-2 img {
    height: 50px;
    vertical-align: initial;
    align-items: center;
    color: #5f9c60;
}


/* 35 years mai cotent start here */

.year-continer {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.year {
    width: 70%;
    height: 300px;
    font-weight: 700;
    color: white;
    text-align: left;
    transition: transform 0.5s;
    background-color: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.year img {
    height: auto;
    width: 130px;
    margin: 70px 0 10px 0;
}

.year p {
    padding: 0;
    margin: 0px 0;
    color: #5f9c60;
    font-size: 17px;
    border-right: 1px solid #5f9c60;
    border-left: 1px solid #5f9c60;
}

.year-continer .year-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: justify;
}

.main-adventure {
    height: auto;
    width: 100%;
    padding-right: 0px;
    padding: 50px;
    background-color: rgba(214, 214, 214, 0.11);
}

.adventure-boxx {
    display: flex;
    justify-content: space-evenly;
}

.text-adv {
    text-align: center;
    padding: 20px;
    height: auto;
    width: 50%;
}

.text-a1 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 15px;
    border-radius: 10px;
    background-color: white;
}

.text-a2 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 15px;
    border-radius: 10px;
    background-color: white;
}

.text-a3 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 15px;
    border-radius: 10px;
    background-color: white;
}

.text-a4 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 15px;
    border-radius: 10px;
    background-color: white;
}

.text-a5 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 15px;
    border-radius: 10px;
    background-color: white;
}

.text-a6 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 15px;
    border-radius: 10px;
    background-color: white;
}

hr {
    width: 50%;
    margin: 0 25% 0 25%;
    border: 1px solid #5f9c60;
}

.span {
    border-top: 2px solid #5f9c60;
    display: inline-block;
    height: 0px;
    margin: 18px auto;
    width: 40%;
    display: inline-block;
}

.adventure-boxx img {
    padding: 20px;
}

.adventure-boxx p {
    padding-top: 10px;
    color: #474747;
}

.adventure-boxx h3 {
    padding-top: 10px;
    color: #5f9c60;
}

.main-adventure a {
    color: #5f9c60;
}

.main-adventure a:hover {
    color: #6c6d1c;
    border-bottom: 1px solid #5f9c60;
}

@media screen and (max-width: 768px) {
    .main-adventure {
        flex-direction: column;
    }
    .adventure-boxx {
        flex-direction: column;
        height: auto;
        width: 100%;
        border: none;
    }
    .text-adv {
        flex-direction: column;
        height: auto;
        width: 100%;
        border: 1px solid #5f9c60;
        margin: 5px 0 5px 0;
    }
    .adventure-boxx img {
        height: auto;
        width: 40%;
    }
}


/* responsive main continer  text and img style */

@media screen and (max-width: 768px) {
    .year-continer {
        flex-direction: column;
        width: 100%;
    }
    .year {
        width: 80%;
        margin-bottom: 40px;
    }
    .year p {
        border: none;
    }
}


/* 35 years mai cotent end here */


/* ---------------------> destination page start here <---------------- */


/* -------- destination banner srat here */

#banner-destination {
    background: linear-gradient(0deg, #0200247e 0%, #06321d59 50%, #00282596 100%), url(images/distinations-banner.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-destination-text {
    color: white;
    flex-direction: column;
}

.banner-destination-text h1 {
    font-size: 4em;
}

.banner-destination-text p {
    font-size: 1em;
    font-style: italic;
    font-family: 'DM Sans', sans-serif;
}

.banner-btn {
    margin: 70px auto 0;
}

.banner-btn a {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 16px;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    transition: color 0.5s;
}

.banner-btn a span {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #5f9c60;
    z-index: -1;
    border-radius: 10px;
    transition: 0.5s;
}

.banner-btn a:hover span {
    width: 100%;
}

.banner-btn a:hover {
    color: white;
}


/* Responsiveness */

@media screen and (max-width: 768px) {
    .banner-destination-text h1 {
        font-size: 2.5em;
        width: 100%;
    }
}


/* -------- destination banner end here */


/* Explore  part start here  */

.explore {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 40px;
}

.border-exp {
    height: auto;
    width: 90%;
    /* border: 2px solid #5f9c60; */
    background-color: #5f9c60;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-exp p {
    height: auto;
    width: 90%;
    text-align: justify;
    padding: 30px;
}

.text-exp p::first-letter {
    color: #b8ffba;
    font-size: xx-large;
}

.text-exp p::first-line {
    color: #b8ffba;
    font-size: xx-large;
}

.text-exp {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.border-exp img {
    border-radius: 15px;
    height: auto;
    width: 100%;
    /* height: 260px;
    object-fit: cover;
    object-position: 50% 20%; */
}

.text-exp h1 {
    color: white;
    text-align: center;
}

.text-exp h1::first-letter {
    font-size: 2em;
}

.our {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    text-align: center;
}

.our-text {
    color: #5f9c60;
    border-bottom: 1px solid #5f9c60;
    margin: 100px 0 40px 0;
}

@media screen and (max-width: 768px) {
    .explore {
        height: auto;
        width: 100%;
        flex-direction: column;
    }
    .border-exp img {
        height: auto;
        width: 100%;
        margin-top: 30px;
    }
    .border-exp {
        flex-direction: column;
    }
}


/* destination cart start here */

.wrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 24px;
    padding: 24px;
    flex-wrap: wrap;
}

.box {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    position: relative;
    padding: 10px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
    height: auto;
    width: 100%;
}

.box-top {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 12px;
    margin-bottom: 36px;
}

.box-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: 10px;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-title {
    border-left: 3px solid rgba(189, 189, 189, 0.438);
    padding-left: 12px;
}

.user-follow-info {
    color: #9e9e9e;
}


/* .description {
   
} */

.box-top h4 {
    color: #8a8a8a;
}

em {
    font-size: 1.3em;
}

.button-a {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: auto;
    padding: 16px;
    background: transparent;
    transition: color 0.5s;
    border: 1px solid #5f9c60;
    border-radius: 10px;
}

.button-a:hover {
    background: #5f9c60;
    color: white;
    transition: 0.5s;
}

.wrap h3 {
    color: #5f9c60;
    font-size: 1em;
    font-weight: 700;
}

.box p {
    color: #5f9c60;
    font-size: 1em;
    line-height: 1.7;
    font-weight: 300;
}

.wrap a {
    color: #5f9c60;
    text-decoration: none;
}


/* RESPONSIVE */

@media screen and (min-width: 320px) {
    .title-flex {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }
    .user-follow-info {
        margin-top: 6px;
    }
}

@media screen and (max-width: 460px) {
    .title-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }
    .user-follow-info {
        margin-top: 6px;
    }
}

@media screen and (min-width: 640px) {
    .box {
        flex-basis: calc(50% - 12px);
    }
    .title-flex {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }
    .user-follow-info {
        margin-top: 6px;
    }
}

@media screen and (min-width: 840px) {
    .title-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }
    .user-follow-info {
        margin-top: 6px;
    }
}

@media screen and (min-width: 1024px) {
    .box {
        flex-basis: calc(33.3% - 16px);
    }
    .title-flex {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }
    .user-follow-info {
        margin-top: 6px;
    }
}

@media screen and (min-width: 1100px) {
    .box {
        flex-basis: calc(25% - 18px);
    }
}


/* ---------------------> destination page end here <---------------- */


/* ---------------> FAQ page start here <---------------- */


/* -------- destination banner srat here */

#banner-faq {
    background: linear-gradient(0deg, #0200247e 0%, #06321d59 50%, #00282596 100%), url(images/faq-banner.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-faq-text {
    color: white;
    flex-direction: column;
}

.banner-faq-text h1 {
    font-size: 4em;
}

.banner-faq-text p {
    font-size: 1em;
    font-style: italic;
    font-family: 'DM Sans', sans-serif;
}

.banner-btn {
    margin: 70px auto 0;
}

.banner-btn a {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 16px;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    transition: color 0.5s;
}

.banner-btn a span {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #5f9c60;
    z-index: -1;
    border-radius: 10px;
    transition: 0.5s;
}

.banner-btn a:hover span {
    width: 100%;
}

.banner-btn a:hover {
    color: white;
}


/* two line and icone inside design */

.line-designe-3 {
    height: 56px;
    padding-bottom: 15px;
    padding: 0;
    text-align: center;
}

.line-designe-3 span {
    border-top: 2px dotted #5f9c60;
    display: inline-block;
    height: 0px;
    margin: 20px auto;
    width: 40%;
}

.line-designe-3 img {
    height: 50px;
    vertical-align: initial;
    align-items: center;
    color: #5f9c60;
    margin: 0 5px 0 5px;
}

.main-faq {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    text-align: center;
}

.main-faq-text {
    color: #5f9c60;
    /* border-bottom: 1px solid #5f9c60; */
    margin: 100px 0 40px 0;
    padding: 0 10px 0 10px;
}

.button-faq {
    width: 180px;
    height: 40px;
    color: #5f9c60;
    border: 1px solid #5f9c60;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
    background: transparent;
    font-size: 1em;
    font-weight: 350;
    border-radius: 10px;
    transition: 0.5s;
    margin-top: 20px;
}

.button-faq:hover {
    background: white;
    color: white;
    transition: 0.5s;
    background: #5f9c60;
    border-radius: 10px;
    transition: 0.5s;
}


/* Responsiveness */

@media screen and (max-width: 768px) {
    .banner-faq-text h1 {
        font-size: 2.5em;
        width: 100%;
    }
}


/*  collapse question */

.accordion {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: auto;
    width: 100;
    margin: 0 50px 50px 50px;
}

.accordion h2 {
    color: red;
}

.accordion-button {
    text-transform: capitalize;
    background-color: none;
    color: none;
}

.accordion-collapse {
    background-color: #5f9c6017;
    color: #5f9c60;
}

.card-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.card-faq {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    background: #ffffff;
    height: auto;
    width: 400px;
    background-size: cover;
    margin: 20px;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card-chaild {
    background-color: rgb(241, 241, 241);
    height: auto;
    width: 100%;
    margin: 0 10px 10px 10px;
    padding: 20px;
    border-radius: 15px;
}

.card-faq img {
    height: auto;
    width: 100%;
    border-radius: 20px;
    padding: 10px;
}

.card-button {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 5px 0 0 0;
}

.card-text h5 {
    color: #5f9c60;
    margin-bottom: 10px;
}

.card-text p {
    color: gray;
    margin-bottom: 10px;
}

.card-button p {
    color: gray;
    margin-left: 10px;
}

.card-button button {
    border-radius: 10px;
    height: 2.5em;
    width: 8.5em;
    /* padding: 5px 15px 5px 15px; */
    border: 1px solid #5f9c60;
    font-size: 14px;
}

.fro-you {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5f9c60;
    color: white;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .card-container {
        flex-direction: column;
        margin: 20px;
        height: auto;
    }
    .accordion-button {
        margin: 10px;
    }
}


/* ---------------> FAQ page end here <---------------- */


/*  -----------> Contact page start here <------------- */

#banner-contact {
    background: linear-gradient(0deg, #0200247e 0%, #06321d59 50%, #00282596 100%), url(images/contact-banner.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-contact-text {
    color: white;
    flex-direction: column;
}

.banner-contact-text h1 {
    font-size: 4em;
    letter-spacing: 5px;
}


/* span line design */

.line-designe-c {
    height: 56px;
    padding-bottom: 15px;
    padding: 0;
    text-align: center;
}

.line-designe-c span {
    border-top: 2px dotted #5f9c60;
    display: inline-block;
    height: 0px;
    margin: 22px auto;
    width: 40%;
}

.line-designe-c img {
    height: 50px;
    vertical-align: initial;
    align-items: center;
    color: #5f9c60;
    padding: 0 3px 0 3px;
}

.ready {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    text-align: center;
}

.ready-text {
    color: #5f9c60;
    border-bottom: 1px solid #5f9c60;
    margin: 50px 0 40px 0;
}

.ready-text p {
    color: #5f9c60;
    padding: 10px 60px 10px 60px;
    font-weight: 100;
}


/* Style inputs */

input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #5f9c60;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type="Submit"] {
    /* background-color: #04AA6D; */
    border: 1px solid #5f9c60;
    color: #5f9c60;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transform: 0.5s;
}

input[value="Submit"] {
    color: #5f9c60;
    border: 1px solid #5f9c60;
    margin-bottom: 10px;
    transition: 0.5s;
    margin-right: 20px;
}

input[value="Submit"]:hover {
    color: white;
    border: none;
    transform: 0.5s;
    border: 1px solid #5f9c60;
}

input[type="Submit"]:hover {
    background-color: #5f9c60;
    transform: 0.5s;
}

input[type="Reset"] {
    /* background-color: #04AA6D; */
    border: 1px solid #5f9c60;
    color: #5f9c60;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transform: 0.5s;
}

input[value="Reset"] {
    color: #5f9c60;
    border: 1px solid #5f9c60;
    margin-bottom: 10px;
    transition: 0.5s;
    margin-right: 20px;
}

input[value="Reset"]:hover {
    color: white;
    border: none;
    transform: 0.5s;
    border: 1px solid #5f9c60;
}

input[type="Reset"]:hover {
    background-color: #5f9c60;
    transform: 0.5s;
}


/* Create two columns that float next to eachother */

.column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.column code {
    color: #5f9c60;
}


/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row {
    margin: 0 70px 40px 70px;
    padding: 10px;
}

.call {
    display: flex;
    align-items: center;
    margin: 7px 0px 0px 0;
    padding: 20px;
    margin-left: 40px;
}

.call h4 {
    color: #5f9c60;
    padding-left: 20px;
}

.call span {
    font-size: 1.5em;
}

.call img {
    height: auto;
    width: 70px;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 768px) {
    .column,
    input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
    .column,
    input[type=reset] {
        width: 100%;
        margin-top: 0;
    }
    .call {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0;
    }
    .call img {
        margin-bottom: 10px;
        height: auto;
        width: 20%;
    }
    .call h4 {
        margin-bottom: 0;
        padding: 0;
    }
}


/* Responsiveness */

@media screen and (max-width: 768px) {
    .banner-destination-text h1 {
        font-size: 2.5em;
        width: 100%;
    }
}


/*  -----------> Cnntact page end here <------------- */


/* ============> Footer start here <=================*/

#foot {
    display: flex;
    flex-direction: column;
    background-image: url(images/footer_2@4x.png);
    background-size: cover;
    height: auto;
    width: 100%;
    background-position: bottom;
    padding: 50px;
    padding-bottom: 0;
}

.parts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.parts,
h3,
a,
p {
    color: white;
}

.part-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.part-1 img {
    height: auto;
    width: 40%;
    margin-bottom: 20px;
}

.social-icon {
    color: white;
    margin: 0 20px;
    transition: color 0.3s;
    text-decoration: none;
    font-size: 30px;
    font-size: 40px;
    width: 50px;
    text-align: center;
}

.social-icon:hover {
    color: #19421a;
    transition: 0.3s;
}

.part-2 a {
    color: white;
    font-size: 1em;
    transition: 0.4s;
}

.part-2 a:hover {
    color: white;
    font-size: 1em;
    color: #19421a;
    transition: 0.3s;
}


/* ---------> add line after the h3 elaments <--------- */

.part-2 h3::after {
    content: "";
    display: block;
    height: 3px;
    width: 40px;
    background: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-top: 5;
}

.part-2 ul {
    padding: 0;
    margin: 0;
}

.part-2 a {
    text-decoration: none;
}

.part-2 h3,
.part-3 h3,
.part-4 h3 {
    font-size: 20px;
}

.part-3 a {
    color: white;
    font-size: 1em;
    transition: 0.4s;
    text-decoration: none;
}

.part-3 ul {
    padding: 0;
    margin: 0;
}

.part-3 a:hover {
    color: white;
    font-size: 1em;
    color: #19421a;
    transition: 0.3s;
}

.part-3 h3::after {
    content: "";
    display: block;
    height: 3px;
    width: 40px;
    background: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-top: 5;
}

.part-4 {
    height: auto;
    width: 37%;
    text-align: justify;
}

.part-4 p {
    margin: 0;
}

.part-4 h3::after {
    content: "";
    display: block;
    height: 3px;
    width: 40px;
    background: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-top: 5;
}

.copy {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 10px;
}

.copy2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy2 a {
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.copy2 a:hover {
    color: rgb(173, 173, 173);
    border-bottom: 1px solid white;
    transition: 0.3s;
}

@media screen and (max-width: 768px) {
    .parts {
        flex-direction: column;
    }
    .social-media-icon {
        text-align: center;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 10px;
    }
    .copy {
        flex-direction: column;
        text-align: center;
    }
    .part-2,
    .part-3 {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    .part1-2 {
        flex-direction: column;
        text-align: left;
    }
    .part-2 h3::after {
        content: "";
        display: block;
        height: 2px;
        width: 100%;
        background: #ffffff;
        margin-top: 20px;
        margin-bottom: 10px;
        margin-top: 0;
    }
    .part-3 h3::after {
        content: "";
        display: block;
        height: 2px;
        width: 100%;
        background: #ffffff;
        margin-top: 20px;
        margin-bottom: 10px;
        margin-top: 0;
    }
    .part-4 {
        text-align: center;
        height: auto;
        width: 100%;
        text-align: justify;
        margin-bottom: 30px;
    }
    .part-4 h3 {
        text-align: center;
    }
    .part-4 h3::after {
        content: "";
        display: block;
        height: 3px;
        width: 100%;
        background: #ffffff;
        margin-top: 20px;
        margin-bottom: 10px;
        margin-top: 5;
    }
}


/* .parts {
    background-image: url(images/banner.jpg);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
} */


/* main continer text and img style  end here*/


/* .ver {
    writing-mode: vertical-lr;
    margin: 30px;
    display: inline;
} */


/* line designe  */