body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0;
    
}

/* body div {
    margin: auto;
} */

/* Header */
.top_bar {
    background-color: rgb(51, 49, 62);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 12px;
}

.top_bar div {
    padding: 10px 10px;
}

.info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 20%;
    min-width: fit-content;
}

.info div {
    padding: 0 5px;
}

.info img {
    width: 20px;
    height: auto;
    margin: 0 5px;
}

#navbar {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: 20px auto;
}

#menu {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.menu_items {
    list-style: none;
    display: flex;
    justify-content: space-around;
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.menu_items a {
    text-decoration: none;
    color: rgb(51, 49, 62);
}

.menu_items li:hover {
    color: #682f9e;
}

.sub_menu {
    display: none;
    position: absolute;
    z-index: 2;
    list-style: none;
    background-color: white;
    box-shadow: 2px 3px 10px -2px rgba(0,0,0,0.2);
    flex-direction: column;
    align-items:baseline;
    padding: 10px;
    text-align: left;
    margin-top: 5px;
    width: 200px;
}

.sub_menu li {
    padding: 7px;
}

.sub_items {
    display: none;
}

.menu_items li:hover .sub_menu {
    display: flex;
    flex-direction: column;
}

#navbar input[type="checkbox"],
#navbar .hamburger_lines{
    display: none;
}

#logo {
    width: 150px;
    height: auto;
}
/* End */


/* Footer */
#footer {
    background-color: rgb(75 117 206);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: max-content;
    padding: 15px 0;
}

#footer div {
    display: flex;
    justify-content: space-around;
    padding: 5px 60px;
}

#footerMenu {
    margin: 0;
}

.footer_menu {
    list-style: none;
    text-transform: uppercase;
    /* margin: 0; */
    padding: 0;
}

.footer_menu li {
    padding: 10px 0;
    color: white;
}

.footer_menu li:hover {
    color: #e4bc36;
}

.footer_menu a {
    color: white;
    text-decoration: none;

}

.footer_sub {
    display: none;
    padding: 5px;
    width: fit-content;
    position: absolute;
    list-style: none;
    background-color: white;
    box-shadow: 2px 3px 10px -2px rgba(0,0,0,0.2);
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: 5px;
}

.footer_sub.show_sub {
    display: flex;
}

#plus:hover {
    cursor: pointer;
    color: #e4bc36;
}

.footer_sub li {
    color: black;
    padding: 5px;
}

.footer_sub li:hover {
    cursor: pointer;
    color: #e4bc36;
}

#footerInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: white;
    padding: 10px;
}

#footerInfo div {
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 5px 0;
}

#footerLogo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* margin: 0; */
    padding: 10px 0;
}

#footerLogo img {
    width: 200px;
    height: auto;
}

.footer_icons {
    display: flex;
    flex-direction: row !important;
    padding-top: 30px !important;
}

.copyright_text {
    color: white;
}



/* End */

/* Index */
#carousel {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    align-items: center;
    width: 100%;
}

#carousel img {
    width: 80vw;
    height: 65vh;
    overflow-y: hidden;
    box-shadow: 5px 15px 12px 0px rgba(19, 19, 19, 0.2);
    position: relative;
    object-fit: cover;
}

.slide_img {
    width: 80vw;
    height: 65vh;
    overflow: hidden;
    position: relative;
    object-fit: cover;
}

.slides {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideIn 6s infinite;
    /* transition-timing-function: ease-in-out 4s; */
}

@keyframes slideIn {
    0% {
        transform:  translateX(100%);
    }
    30% {
        transform: translateX(0%)
    }
    50% {
        transform: translateX(0%)
    }
    100% {
        transform: translateX(-200%);
    }
}

/* @keyframes slideOut {
    from {
        transform: translateX(0%)
    }
    to {
        transform: translateX(-100%)
    }
} */

.cover_text {
    text-align: center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    flex-direction: column;
    align-self: center;
    
}

.cover_text h2 {
    color: black;
    background-color: white;
    opacity: 0.8;
    padding: 5px;
    font-size: 33px;
}

.background {
    width: 100%;
    height: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background::before {
    background-color: rgb(19, 18, 18);
    opacity: 0.6;
    z-index: 1;
    content: '';
    display: block;
    height: 1000px;
    width: 100%;
    position: absolute;
}

.background_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    object-fit: cover;
}

.overlay {
    text-align: center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 2;
    flex-direction: column;
}

.overlay h2 {
    font-size: 65px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 26px 10px;
}

.overlay h3 {
    font-size: 28px;
    text-transform: uppercase;
    margin: 24px 10px;
}

.overlay p {
    font-size: 28px;
    font-weight: 500;
    color: rgb(222, 222, 222);
    margin: 22px 10px;
}

.overlay span {
    font-weight: 900;
}

.overlay span:first-of-type {
    color: white;
}

.stars_div {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.stars_div div {
    margin: 0 20px;
}

.stars_div p {
    font-size: 24px;
    color: white
}

.stars_div img {
    height: 22px;
    width: auto;
    border: 1px white solid;
    padding: 5px;
}

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

.main_itineraries h2 {
    color: #5A8B82;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 59px;
    text-align: center;
}

.main_itineraries h3 {
    color: #8daca6;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 30px;
    margin: 10px 0;
}

.itinerary_item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.itinerary_item a {
    text-decoration: none;
}

.itinerary_item:nth-of-type(odd) {
    background-color: #0707070F;
}

.inner_itinerary {
    display: flex;
    flex-direction: row;
    max-width: 60%;
    min-width: 60%;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.inner_itinerary div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 0 10px 0 20px;
}

.inner_itinerary div ul {
   margin: 20px 0;
   padding: 0;
}

.inner_itinerary div ul.dashed {
    list-style-type: none;
}

.inner_itinerary div ul.dashed > li:before {
    content: "- ";
    text-indent: -10px;
}

.inner_itinerary div ul li {
    line-height: 24px;
}

.inner_itinerary div a {
    background-color: #e4bc36;
    color: white;
    padding: 15px 25px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    width: fit-content;
    margin-top: 20px;
    text-transform: uppercase;
}

.inner_itinerary div a:hover {
    background-color: #8daca6;
    cursor: pointer;

}

.inner_itinerary div a span {
    font-weight: bolder;
}

.inner_itinerary img {
    padding: 20px;
    background-color: white;
    box-shadow: 5px 15px 12px 0px rgba(19, 19, 19, 0.2);
}

/* End */

/* About */

.background.about::before {
    background-color: rgb(31, 30, 30);
    opacity: 0.2;
}

.background.about h1 {
    font-size: 120px;
    margin: 20px 0;
}

.background.about .overlay p {
    font-size: 40px;
    margin: 20px 0;
}

.background.about .overlay span {
    font-style: italic;
}

.about_text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 28px;
    margin: 60px auto 80px auto;
}

.about_text .bold {
    font-weight: 900;
}

.about_content {
    width: 98%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

.about_content div {
    display: flex;
    width: 49%;
}

.about_content div img {
    width: 100%;
    height: auto;
}

.about_content div:first-of-type {
    justify-content: left;
    /* margin-right: 3%; */
}

.about_content div:nth-of-type(2) {
    justify-content: right;
    /* margin-left: 3%; */
}

.about_guide {
    background-color: #fbf4ef;
    display: flex;
    flex-direction: column;
}

.about_guide h2 {
    margin: 40px 0 20px 60px;
    font-size: 46px;
}

.about_guide p {
    margin: 20px 0 30px 60px;
    font-weight: 900;
}

.quote_section {
    display: flex;
    align-self: center;
    flex-direction: column;
    margin-bottom: 20px;
    width: 80% !important;
}

.quote_section p {
    font-weight: 100;
    font-size: 22px;
    font-style: italic;
    margin: 40px 0 20px 0;
}

/* .quote_section img {
    width: 70px;
    height: auto;
} */

/* .about_content div .laura_img {
    width: 400px;
    height: auto;
} */

.quote_section div {
    display: flex;
    align-items: center;
    /* width: 80%; */
}

.laura_text {
    width: 100% !important;
}

.quote_section div p {
    margin: 0;
    font-size: 16px;
    font-style: normal;
}

.quote_section div p:first-of-type {
    text-transform: uppercase;
    font-weight: 800;
}

.quote_section div p:last-of-type {
    color: #ea713c;
}

.quote_section div div {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.background.about_2 {
    height: unset;
}

.background.about_2::before {
    background-color: rgb(31, 30, 30);
    opacity: 0;
}

.background.about_2 h1 {
    font-size: 100px;
    margin: 20px 0;
    font-weight: 900;
}

/* End */

/* Contact */
.background.contact {
    text-align: left;
}

.background.contact img{
    width: 100%;
    /* height: 800px; */
}

.background.contact::before {
    background-color: rgb(31, 30, 30);
    opacity: 0.3;
    width: 100%;
    /* height: 800px; */
}

.background.contact h2 {
    text-transform: none;
    font-size: 40px;
}

.background.contact h3 {
    text-transform: none;
    font-weight: 400;
}

.background.contact h4 {
    font-weight: 900;
    font-size: 26px;
}

.background.contact .overlay {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 80%;
}

.background.contact .overlay p {
    font-size: 18px;
    color: white;
}

.background.contact .overlay div {
    width: 45%;

}

.contact_section {
    display: flex;
    flex-direction: column;
    justify-content: left;
    text-align: left;

}

.contact_section img {
    height: 25px;
    width: auto !important;
    max-width: 30px;
    margin-right: 10px;
}

.contact_links {
    display: flex;
    justify-content: space-between;
    width: 100% !important;
}

.socials div {
    display: flex;
    width: 100% !important;
    margin: 15px 0;
    font-size: 20px;
}

.socials h3 {
    font-size: 20px;
    text-transform: uppercase !important;
    font-weight: 900 !important;
}

.contacts div {
    display: flex;
    width: 100% !important;
    margin: 20px 0;
    font-size: 20px;
}

.contacts h3 {
    font-size: 20px;
    text-transform: uppercase !important;
    font-weight: 900 !important;
}

.review_btn {
    background-color: #e4bc36;
    color: white;
    text-transform: uppercase;
    padding: 10px;
    width: fit-content !important;
}

.review_btn a {
    text-decoration: none;
}

.message_section {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.message_section form {
    display: flex;
    flex-direction: column;
}

.message_section input {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 0;
}

.message_section textarea {
    padding: 10px;
    margin: 10px 0;
    min-height: 100px;
    border-radius: 4px;
    border: 0;
}

.names_div {
    display: flex;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    width: 100% !important;
}

.names_div input {
    width: 40%;
}

.privacy_div {
    display: flex;
    width: 100% !important;
    align-items: flex-start;
}

.privacy_div p {
    width: 95%;
    margin-left: 10px;
    margin-top: 0;
}

.message_section h4 {
    margin: 5px 0;
    font-size: 20px !important;
}

.error_message {
    color: red;
    display: block; 
}

#submitBtn {
    color: white;
    background-color: rgb(51, 49, 62);
    border: 1px solid rgb(51, 49, 62);
    width: fit-content;
    border-radius: 6px;
    padding: 10px;
    margin: 10px 0;
    font-size: 20px;
}

#submitBtn:hover {
    cursor: pointer;
    color: rgb(51, 49, 62);
    background-color: white;
    border: 1px solid rgb(51, 49, 62);
}

/* End */

/* Hear */
.background.hear {
    max-height: 600px;
}

.background.hear::before {
    background-color: rgb(211, 232, 109, 0.79);
    opacity: 0.2;
    max-height: 600px;
}

.background.hear .overlay {
    /* justify-content: left;
    text-align: left;
    align-items:start;
    justify-self: left; */
}

.background.hear img {
    height: 600px;
}

.tour_item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tour_item h3 {
    text-transform: uppercase;
    font-size: 46px;
    margin: 10px 0;
}

.inner_item {
    display: flex;
    flex-direction: row;
    max-width: 70%;
    min-width: 70%;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.inner_item div {
    padding: 10px;
}

.inner_item p {
    color: #7a7a7a;
    font-weight: 300;
    font-size: 18px;
}

/* End */

/* See */
.background.see {
    max-height: 600px;
}

.background.see::before {
    background-color: rgba(255, 255, 255, 0.79);
    opacity: 0;
    max-height: 600px;
}

.inner_item span {
    font-weight: 900;
}

/* End */

/* Taste */
.background.taste {
    max-height: 600px;
}

.background.taste::before {
    background-color: rgba(255, 255, 255, 0.79);
    opacity: 0;
    max-height: 600px;
}

/* End */

/* Smell */
.background.smell {
    max-height: 600px;
}

.background.smell::before {
    background-color: rgba(228, 235, 205, 0.79);
    opacity: 0.2;
    max-height: 600px;
}

/* End */

/* Touch */
.background.touch {
    max-height: 600px;
}

.background.touch::before {
    background-color: rgba(211,232,109,0.79);
    opacity: 0.18;
    max-height: 600px;
}

.inner_item img {
    min-width: 50%;
}

/* End */


/* Feedback */
.feedback_div {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback_div h1 {
    font-size: 65px;
    text-transform: uppercase;
}

.feedback_div h2 {
    font-size: 46px;
    text-transform: uppercase;
}

.feedback_div h2:nth-of-type(2) {
    margin: 50px auto 20px auto;
}

.feedback {
    margin: 10px auto;
    background-color: #c2ddfc;
    padding: 10px;
    border-radius: 4px;
}

.feedback_form_div {
    display: flex;
    flex-direction: row;
}

.feedback_form_div img {
    height: 507px;
    width: auto;
    padding: 0 10px;
}

#feedbackForm {
    display: flex;
    flex-direction: column;
    background-color: #0707070F;
    padding: 10px 20px;
    border-radius: 4px;
    width: 100%;
    max-width: 1200px;
}

#feedbackForm input {
    padding: 10px;
    margin: 20px 0;
    border-radius: 4px;
    border: 0;
}

#feedbackForm #privacyCheckbox {
    margin: 10px 5px;
}

#feedbackForm textarea {
    padding: 10px;
    margin: 20px 0;
    min-height: 100px;
    border-radius: 4px;
    border: 0;
    font-family: unset;
}

#feedbackForm .privacy_div p {
    margin: 5px 10px 10px 10px;
}

#feedbackForm #submitBtn {
    background-color: #5A8B82;
    border: #5A8B82;
    border-radius: 0;
    width: 100px;
    text-align: center;
    align-self: center;
}

#feedbackForm #submitBtn:hover {
    color: #e4bc36;
}

/* End */

@media only screen and (max-width: 1300px) {
    /* index */
    .inner_itinerary {
        max-width: 80%;
        min-width: 80%;
    }

    /* end */

    /* itinerary pages */
    .tour_item h3 {
        font-size: 40px;
    }

    .inner_item {
        max-width: 95%;
        min-width: 95%;
    }

    .inner_item p {
        font-size: 16px;
    }

    /* end */
}

@media only screen and (max-width: 1200px) {
    /* header */
    #navbar {
        width: 80%;
    }

    /* end */

    /* footer */
    #footer div {
        padding: 5px 30px;
    }

    /* end */

    /* index */
    .slide_img {
        width: 90vw;
        height: 50vh;
    }

    .cover_text h2 {
        font-size: 24px;
    }

    #carousel img {
        width: 90vw;
        height: 50vh;
    }

    .overlay h2 {
        font-size: 56px;
    }

    .overlay h3 {
        font-size: 24px;
    }

    .overlay p {
        font-size: 24px;
    }

    .inner_itinerary {
        max-width: 80%;
    }

    .main_itineraries h2 {
        font-size: 44px;
    }

    .main_itineraries h3 {
        font-size: 26px;
    }

    .inner_itinerary img {
        width: 70%;
    }

    /* end */

    /* itinerary pages */
    .tour_item h3 {
        font-size: 36px;
    }

    .inner_item {
        max-width: 95%;
        min-width: 95%;
    }

    /* end */

    /* about */
    .background.about h1 {
        font-size: 80px;
        margin: 20px 0;
    }
    
    .background.about .overlay p {
        font-size: 30px;
        margin: 20px 0;
    }

    .about_text {
        font-size: 24px;
        margin: 40px auto 50px auto;
    }

    .about_content {
        flex-direction: column;
        align-items: center;
    }

    .about_content div {
        width: 90%;
    }

    .about_guide h2 {
        font-size: 40px;
    }

    .background.about_2 h1 {
        font-size: 80px;
    }

    .quote_section div {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }

    /* end */

}

@media only screen and (max-width: 900px) {
    /* header */
    #navbar {
        width: 100%;
    }

    #menu {
        display: none;
        background: black;
        flex-direction: column;
        transition: transform 0.5s ease-in-out;
        overflow: scroll;
        position: absolute;
        top: 9vh;
        width: 100%;
        z-index: 3;
        align-items: center;
    }

    #menu li a{
        color: white;
    }

    #menu li {
        color: white;
        padding: 5px 0;
    }

    .menu_items {
        flex-direction: column;
        width: max-content;
        font-size: 22px;
    }

    .sub_items {
        display: flex;
    }

    #itineraryMenu {
        display: none;
    }

    #logoDiv {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #logo {
        margin: auto;
    }

    #navBarHamburger {
        display: block!important;
        opacity: 0; 
        width: 6vh;
        height: 6vh;
        position: absolute;
        top: 1vh;
        left: 2.5vw;
        z-index: 3;
    }
    
    .hamburger_lines {
        display: flex!important;
        height: 4vh;
        width: 5.1vh;
        position: absolute;
        top: 2vh;
        left: 3vw;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: black;
    }
    
    .hamburger_lines .line {
        display: block;
        height: 6px;
        width: 100%;
        border-radius: 10px;
        background: black;
    }
    
    .hamburger_lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }
    
    .hamburger_lines .line2 {
        transition: transform 0.2s ease-in-out;
    }
    
    .hamburger_lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    #navbar input[type="checkbox"]:checked ~ #menu {
        transform: translateX(0);
    }
    
    #navbar input[type="checkbox"]:checked ~ .hamburger_lines .line1 {
        transform: rotate(45deg);
    }
    
    #navbar input[type="checkbox"]:checked ~ .hamburger_lines .line2 {
        transform: scaleY(0);
    }
    
    #navbar input[type="checkbox"]:checked ~ .hamburger_lines .line3 {
        transform: rotate(-45deg);
    }

    .top_bar {
        display: none;
    }

    /* end */

    /* footer */
    #footer {
        font-size: 16px;
    }

    #footer div {
        display: flex;
        justify-content: space-around;
        width: 90%;
        padding: 5px 10px;
    }

    #footerLogo img {
        width: 150px;
        height: auto;
    }

    .footer_icons img {
        width: 30px;
        height: auto;
    }

    #footerInfo {
        font-size: 14px;
    }

    .footer_menu li a {
        font-size: 16px;
    }

    .footer_sub li {
        font-size: 14px;
        padding: 5px;
    }

    /* end */

    /* index */
    .cover_text h2 {
        font-size: 18px;
    }

    .overlay h2 {
        font-size: 44px;
    }

    .overlay h3 {
        font-size: 22px;
    }

    .overlay p {
        font-size: 22px;
    }

    .stars_div {
        flex-direction: column;
    }

    .stars_div p {
        font-size: 20px;
        margin: 20px 0 30px 0;
    }

    .inner_itinerary {
        max-width: 90%;
        min-width: 90%;
        font-size: 14px;
        flex-direction: column;
        padding: 30px;
    }

    .inner_itinerary.reverse {
        flex-direction: column-reverse;
    }

    /* .itinerary_item:nth-of-type(even) {
        flex-direction: column-reverse;
    } */

    .inner_itinerary img {
        margin: 10px;
    }

    .main_itineraries h2 {
        font-size: 40px;
    }

    .main_itineraries h3 {
        font-size: 22px;
    }


    /* end */

    /* itinerary pages */
    .tour_item h3 {
        font-size: 26px;
    }

    .inner_item.reverse {
        flex-direction: column-reverse;
    }

    /* end */

    /* about */
    .about_text {
        font-size: 20px;
        margin: 25px auto 40px auto;
    }

    .about_guide h2 {
        font-size: 30px;
        margin: 30px 10px 10px 20px;
    }

    .about_guide p {
        font-size: 20px;
        margin: 20px 10px 25px 20px;
    }

    .background.about_2 h1 {
        font-size: 40px;
    }

    /* end */


    /* contact */
    .background.contact .overlay {
        flex-direction: column;
    }

    .background.contact .overlay div {
        width: 100%;
    }

    .background.contact::before {
        height: fit-content;
    }

    .background.contact img {
        
    }

    .background.contact h2 {
        font-size: 32px;
        margin: 10px;
    }

    .background.contact h4 {
        font-size: 20px;
        margin: 10px;
    }

    .background.contact p {
        margin: 10px;
    }

    /* end */
}

@media only screen and (max-width: 700px) {
    /* footer */
    #footer div {
        width: 70%;
    }

    #footerInfo {
        padding-left: 20px;
    }

    .footer_icons {
        justify-content: center;
    }

    div#footerLogo, #footerLogo img {
        display: none;
    }

    div#footerMenu {
        display: none;
    }

    div.footer_icons {
        width: 80%!important;
    }

    /* end */

    /* index */
    .cover_text {
        width: 80%;
    }

    .cover_text h2 {
        font-size: 18px;
    }

    .inner_itinerary {
        max-width: 90%;
        min-width: 90%;
        font-size: 14px;
        flex-direction: column;
        padding: 20px;
    }

    /* end */

    /* itinerary pages */
    .tour_item h3 {
        font-size: 20px;
    }

    .inner_item {
        flex-direction: column;
        padding: 20px 5px;
    }

    .inner_item img {
        width: 100%;
        height: auto;
    }

    /* end */


    .background.about_2 h1 {
        font-size: 30px;
    }



    /* contact */

    .background.contact .background_img, .background.contact {
        height: 1100px;
    }

    /* end */

}

@media only screen and (max-width: 450px) {
    /* footer */
    #footer {
        font-size: 12px;
    }
    /* end */
    
    /* index */
    #carousel {
        display: none;
    }

    /* end */


    /* contact */

    .background.contact .background_img, .background.contact {
        height: 1200px;
    }

    .contact_links {
        flex-direction: column;
    }

    /* end */
    
}

@media only screen and (max-width: 350px) {
    .background.contact .background_img, .background.contact {
        height: 1250px;
    }
    
}