*
{
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', cursive;
}
.header
{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)), url(images/naples_milan_cover_photo-min.jpg);
    background-position: bottom 30% right 50%;
    background-size: cover;
    position: relative;
}
nav
{
    display: flex;
    padding: 2% 5%;
    justify-content: space-between;
    align-items: center;
}
nav img
{
    width: 150px;
    position: relative;
    left: 700px;
}
.nav-links
{
    flex: 1;
    text-align:  right;
}
.nav-links ul li
{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a
{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after
{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after
{
    width: 100%;
}
.text-box
{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1
{
    font-size: 52px;
}
.text-box p
{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn
{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover
{
    border: 1px solid #D78244;
    background: #D78244;
    transition: 1s;
}

nav .fa
{
    display: none;
}

@media(max-width: 700px)
{
    .header
    {
        min-height: 70vh;
        width: 100%;
        height: 50%;
        background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)), url(images/Compressed/naples_milan_cover_photo-min.jpg);
        background-position: bottom 30% right 50%;
        background-size: cover;
        position: relative;
    }
    .text-box h1
    {
        font-size: 20px;
    }
    .nav-links ul li
    {
        display: block;
    }
    .nav-links
    {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    
    nav img
    {
        width: 120px;
        position: relative;
        display:flex;
        top: 0px;
        left: 190px;
    }
    
    nav .fa
    {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul
    {
        padding: 30px;
    }
}

/*------ Tours ------*/

.tours
{
    width: 100%;
    margin: inherit;
    text-align: center;
    padding-top: 80px;
}
.tours h1
{
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}
.tours p
{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: center;
}
.tours-row
{
    margin-top: 2%;
    display: flex;
    justify-content: space-evenly;
}
.tours-col
{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    margin-left: 0px

}
h3
{
    text-align: center;
    font-weight: 600;
    margin: 10px;
}

.tours-col:hover
{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.tour-btn
{
    display: block;
    width: 50%;
    text-decoration: none;
    color: black;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    margin: 0 auto;
}
.tour-btn:hover
{
    border: 1px solid #D78244;
    background: #D78244;
    transition: 1s;
}
.tour-left
{
    flex-basis: 65%;
}
.tour-left img
{
    width: 100%;
}
.tour-left p
{
    color: #999;
    padding: 0;
}


@media(max-width: 700px)
{
    .tours
    {
        width: 100%;
        margin: auto;
        text-align: center;
        padding-top: 80px;
    }
    .tours h1
    {
        font-size: 35px;
        font-weight: 600;
        text-align: center;
    }
    .tours p
    {
        color: #777;
        font-size: 14px;
        font-weight: 300;
        line-height: 22px;
        padding: 10px;
        text-align: center;
    }
    .tours-row
    {
        margin-top: 5%;
        display:block;
        justify-content:space-evenly;
    }
    .tours-col 
    {
        flex-basis: 50%;
        background: #fff3f3;
        border-radius: 10px;
        margin-bottom: 5%;
        padding: 10px 12px;
        box-sizing: border-box;
        transition: 0.5s;
        margin-left: 0px

    }
     .tour-btn
    {
        display: block;
        text-decoration: none;
        color: white;
        border: 1px solid #fff;
        padding: 12px 34px;
        font-size: 13px;
        background: transparent;
        position: relative;
        cursor: pointer;
    }
    .tour-btn:hover
    {
        border: 1px solid #D78244;
        background: #D78244;
        transition: 1s;
    }
}


/*------ Discover ------*/

.discover
{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 45px;
}

.discover h1
{
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}

.discover a
{
    font-weight: 600;
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    text-decoration: none;
}

.discover p
{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: center;
}

.discover-col
{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.discover-col img
{
    width: 100%;
    display: inline-grid;
}

@media(max-width: 700px)
{
   .discover
    {
        width: 80%;
        margin: auto;
        text-align: center;
        padding-top: 45px;
    }

    .discover h1
    {
        font-size: 35px;
        font-weight: 600;
        text-align: center;
    }
    .discover p
    {
        color: #777;
        font-size: 14px;
        font-weight: 300;
        line-height: 22px;
        padding: 10px;
        text-align: center;
    }

    .discover-col
    {
        flex-basis: 32%;
        border-radius: 10px;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }

    .discover-col img
    {
        width: 100%;
        display: block;
    } 
}


.layer
{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover
{
    background: rgba(215,130,68,0.7); 
}
.layer h3
{
    display:inline-block;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 34px;
    font-size: 25px;
    font-weight: 500;
    width: 50%;
    top: 0;
    left: 0%;
    transform: translateX(0%);
    background: rgba(100,100,100,0.3);
    position:relative;
    cursor: pointer;
    opacity: 0;
    transition: 0.5s;
    text-align: center;
    align-content: center;
}
.layer:hover h3
{
    top: 40%;
    opacity: 1;
}



@media(max-width: 700px)
{
    .layer
    {
        background: transparent;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: 0.5s;
    }
    .layer:hover
    {
        background: rgba(226,0,0,0.7); 
    }
    .layer h3
    {
        display: inline-block;
        text-decoration: none;
        color: #fff;
        border: 2px solid #fff;
        padding: 12px 0px;
        font-size: 20px;
        font-weight: 500;
        width: 90%;
        top: 0;
        left: 0%;
        transform: translateX(0%);
        background: rgba(100,100,100,0.3);
        position: relative;
        cursor: pointer;
        opacity: 0;
        transition: 0.5s;
        text-align: center;
        align-content: center;
    }
    .layer:hover h3
    {
        top: 45 %;
        opacity: 1;
    }
}

/*------ dtlv ------*/

.dtlv
{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.dtlv-col
{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.dtlv-col img
{
    width: 100%;
    border-radius: 10px;
}
.dtlv-col p
{
    padding: 0;
}
.dtlv-col h3
{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/*------ gems------*/

.gems
{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.gems-col
{
    flex-basis: 31%;
    border-radius: 5px;
    margin-bottom: 5%;
    padding: 5px;
}
.gems-col img
{
    width: 100%;
    padding: 5px;
}


@media(max-width: 700px)
{
    .gems
    {
        width: 80%;
        margin: auto;
        text-align: center;
        padding-top: 100px;
    }
    .gems-col
    {
        flex-basis: 31%;
        border-radius: 5px;
        margin-bottom: 5%;
        padding: 5px;
    }
    .gems-col img
    {
        width: 100%;
        padding: 5px;
    }
}

/*------ reviews ------*/

.reviews
{
    width: 100%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.reviews-col
{
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 5px;
    cursor: pointer;
    display: flex;
}
.reviews-col img
{
    height: 45px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 40%;
    padding-top: 5px;
}
.reviews-col p
{
    padding: 5px;
}
.reviews-col h3
{
    margin-top: 15px;
    text-align: left;
}
.reviews-col .fa
{
    color: goldenrod;
}

@media(max-width: 700px)
{
    .reviews
    {
        width: 100%;
        margin: 0px 0px 0px 0px;
        padding-top: 100px;
        text-align: center;
    }
    .reviews-col
    {
        flex-basis: 32%;
        border-radius: 10px;
        margin-bottom: 5%;
        text-align: left;
        background: #fff3f3;
        padding: 5px;
        cursor: pointer;
        display:block;
    }
    .reviews-col img
    {
        height: 45px;
        margin-left: 5px;
        margin-right: 30px;
        border-radius: 40%;
        padding-top: 5px;
    }
    .reviews-col p
    {
        padding: 5px;
    }
    .reviews-col h3
    {
        margin-top: 15px;
        text-align: left;
    }
    .reviews-col .fa
    {
        color: goldenrod;
    }
}

/*------ call to action ------*/

.cta
{
    margin: 50px auto;
    width: 87%;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/Compressed/naples_scooter_photo-min.jpg);
    background-position: bottom;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1
{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px)
    {
        .cta h1
        {
        font-size: 24px;
        }
    }

    /*------ footer ------*/

    .footer
    {
        width: 100%;
        text-align:center;
        padding: 30px 0;
    }
    .footer h4
    {
        margin-bottom: 25px;
        margin-top: 20px;
        font-weight: 600;
    }
    .icons .fa-brands
    {
        color: #D78244;
        margin: 0 13px;
        cursor: pointer;
        padding: 18px 0;
    }
    .fa-coffee
    {
        color: #D78244;
    }

/*------ about me ------*/

.sub-header
{
    min-height: 75vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/maria_overlooking_naples_photo.jpg);
    background-position: bottom 80% right 50%;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1
{
    margin-top: 100px;
}

.about-me
{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col
{
    flex-basis: 48%;
    padding: 30px 2px;`
}
.about-col img
{
    height: 70%;
    width: 48%;
    position: relative;
    top: 70px;
    left: 10px;
}
.about-col h1
{
    padding-top: 0;
}
.about-col p
{ 
    padding: 15px 0 25px;
}
.about-row
{
    margin-top: 5%;
    display: inline-flex;
    justify-content: space-evenly;
}
.brn-btn
{
    border: 1px solid #D78244;
    background: transparent;
    color: #D78244;
    position: relative;
    
}
 .brn-btn:hover
{
    color: white;
}

@media(max-width: 700px)
{
    .sub-header
    {
        min-height: 30vh;
        width: 100%;
        background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Compressed/maria_overlooking_naples_photo.jpg);
        background-position: bottom 80% right 50%;;
        background-size: cover;
        text-align: center;
        color: #fff;
    }
    .sub-header h1
    {
        margin-top: 100px;
    }

    .about-me
    {
        width: 80%;
        margin: auto;
        padding-top: 60px;
        padding-bottom: 0px;
    }
    .about-col
    {
        margin-left: auto;
        margin-right: auto;
    }
    .about-col img
    {
        display: inline;
        width: 70%;
        height: auto;
        left: 45px;
        top: auto;
    }
    .about-col h1
    {
        padding-top: 0;
    }
    .about-col p
    { 
        padding: px;
    }
    .about-row
    {
        display: grid;
    }
    .brn-btn
    {
        display: block;
        width: 40%;
        margin: 0 auto;
        border: 1px solid #D78244;
        background: transparent;
        color: #D78244;
        text-align: center;
    }
}



/*------- blog-content -------*/

.blog-content
{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-row
{
    margin-top: 2%;
    display: flex;
    justify-content: space-evenly;
}
.blog-left
{
    flex-basis: 65%;
}
.blog-left img
{
    width: 100%;
}
.blog-left h2
{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p
{
    color: #999;
    padding: 0;
}

.blog-right
{
    flex-basis: 32%;
}
.blog-right h3
{
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right div
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 5px 12px;
    box-sizing: border-box;
}

.comment-box
{
    border: 1px solid #ccc;
    margin: 100px 0;
    padding: 10px 20px;
}
.comment-box h3
{
    text-align: left;
    
}
.comment-form input, .comment-form textarea
{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button
{
    margin: 10px 0;
}

@media(max-width: 700px)
{
    .sub-header h1
    {
        font-size: 24px;
    }
    .blog-row
    {
        display: grid;
    }
    .blog-left
    {
        flex-basis: 100%;
        display: table;
    }
    .blog-left h2
    {
        color: #222;
        font-weight: 600;
        margin: 30px 0;
    }
    .blog-left p
    {
        color: #999;
        padding: inherit;
    }
    .blog-right
    {
        flex-basis: 30%;
    }
    .blog-right h3
    {
        background: #f44336;
        color: #fff;
        padding: 7px 0;
        font-size: 16px;
        margin: 25px 10px 10px 10px;
    }
    .blog-right div
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #555;
        padding: 5px 12px;
        box-sizing: border-box;
    }
    .comment-form button
    {
        position: inherit;
        margin: 10px 90px;
    }
}


/*------ contact us page ------*/

.location
{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe
{
    position: relative;
    top: 100%;
    left: 20%;
    width: 60%;   
}
.contact-me
{
    width: 80%;
    margin: 80px;
}
.contact-col
{
    flex-basis: 40%;
    margin-bottom: 30px;
}

.contact-col div
{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 10px
}
.contact-col div .fa-regular
{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 10px;
}

.contact-col div .fa-solid
{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 10px;
}

.contact-col div p
{
    padding: 5px;
}
.contact-col div h5
{
    font-size: 18px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 600;
}
.contact-col input, .contact-col textarea
{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.contact-row
{
    margin-top: 5%;
    display: flex;
    justify-content: space-evenly;
}
  /* Turn Invalid Email Red */
.contact-col input[type="email"]:invalid
  {
    border: 1.5px solid red;
    box-sizing: border-box;
  }
  
.contact-col input[type="email"]:placeholder-shown
  {
    border: 1px solid #ccc;
    box-sizing: border-box;
  }

@media(max-width:700px)
{
    .location
    {
        display: block;
        width: 80%;
        padding: 50px 0;
        margin-top: 20px;
    }
    .location iframe
    {
        position: relative;
        left: 5%;
        width: auto;
        height: auto;
    }
    .contact-me
    {
        width: 85%;
        margin: 30px;
    }
    .contact-col
    {
        flex-basis: 40%;
        margin-bottom: 30px;
    }

    .contact-col div
    {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        margin-top: 10px
    }
    .contact-col div .fa-regular
    {
        font-size: 28px;
        color: #f44336;
        margin: 10px;
        margin-right: 10px;
    }
    
    .contact-col div .fa-solid
    {
        font-size: 28px;
        color: #f44336;
        margin: 10px;
        margin-right: 10px;
    }
    
    .contact-col div p
    {
        padding: 0px;
    }
    .contact-col div h5
    {
        font-size: 18px;
        margin-bottom: 5px;
        color: #555;
        font-weight: 600;
    }
    .contact-col input, .contact-col textarea
    {
        width: 100%;
        padding: 15px;
        margin-bottom: 17px;
        outline: none;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }
    .contact-row
    {
        margin-top: 5%;
        display: table;
        justify-content: space-evenly;
    }
}

/*------ Booking Calender ------*/

.calender
{
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    
}

.cal-text
{
    text-align: center;
    margin: 10px
}
.cal-text h1 span img
{
    margin: 0 10px;

}
.cal-text h1
{
    align-content: center;
    font-size: 40px;
    margin: 30px;
}
.cal-text p
{   display: inline-flex;
    text-align: center;
    font-size: large;
    margin: auto;
}
.cal-form
{
    margin-top: 50px;
    width: 100;
    display: flex;
    text-align: center;
    margin: 10px;
    padding: 10px
}

.cal-form div
{
    margin-top: 30px;
}

.cal-form .cal-wrapper input, select
{
    width: 70%;
    position: relative;
    right:5px;
    margin-top: 10px;
    background: none;
    border: 1px solid blue;
    font-size: 15px;
    outline: none;
    padding: 5px 0 3px 10px;
    border-radius: 10px;
}

/*------ Phone Start ------*/

.phone-wrapper
{
    display: flex;
    text-align: center;
    margin: 0 auto;
}
.phone-wrapper .code
{
    position: relative;
    display: block;
    width: 20%;
    text-align: center;
    left: 160px;
}
.phone-wrapper .phoneno
{
    position: relative;
    display: block;
    width: 40%;
    text-align: center;
    left: 140px;
}
.phone-wrapper .phoneno input
{
    width: 70%;
    margin-top: 10px;
    background: none;
    border: 1px solid blue;
    font-size: 15px;
    outline: none;
    padding: 5px 0 3px 10px;
    border-radius: 10px;
}
/*------ Tour Type ------*/

.tourtype
{
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}
.tourtype select
{
    background: none;
    border: 1px solid blue;
    font-size: 15px;
    outline: none;
    padding: 5px 0 3px 10px;
    border-radius: 10px;
    text-align: center;
}

/*---- date & time ----*/

.timedate
{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    align-content: center;
    text-align: center;   
}
.date-wrapper
{
    box-sizing:content-box;
    width: 30%;
    position: relative;
    left: 140px;
    padding: 10px;
    text-align: center;   
}
.date-wrapper input
{
    margin-top: 10px;
    background: none;
    border: 1px solid blue;
    font-size: 15px;
    outline: none;
    padding: 5px 0 3px 10px;
    border-radius: 10px;
    text-align: center;
}
.time-wrapper
{
    position: relative;
    box-sizing:content-box;
    width: 25%;
    padding: 10px;
    text-align: center;
    left: 130px;
}
.time-wrapper select
{
    text-align: center;
    width:100%;
}

.guests-wrapper
{
    margin-top: 40px;
    display: inline-flex;
    text-align: center;
}
.adults
{
    position: relative;
    margin: 0 auto;
    left: 25%;
}
.u3
{
    position: relative;
    margin:0 auto;
    left: 20%
}
.u3 label
{
    position: relative;
    right: 30px;
}
.guestcount
{
    position: relative;
    margin: 0;
    left: 9%;
    
}
.guestcount label
{
    position: relative;
    right: 15%;
}
.adults input
{
    position: relative;
    display: block;
    background: none;
    border: 1px solid blue;
    font-size: 15px;
    outline: none;
    padding: 5px 0 3px 10px;
    border-radius: 10px;
    text-align: center;
    width: 50%;
    left: 25%;
    margin-top: 10px;
}
.u3 input
{
    position: relative;
    display: block;
    background: none;
    border: 1px solid blue;
    font-size: 15px;
    outline: none;
    padding: 5px 0 3px 10px;
    border-radius: 10px;
    text-align: center;
    width: 50%;
    left: 9%;
    margin-top: 10px;
}

.guestcount input
{
    position: relative;
    display: block;
    background: none;
    border: 1px solid blue;
    font-size: 15px;
    outline: none;
    padding: 5px 0 3px 10px;
    border-radius: 10px;
    text-align: center;
    width: 50%;
    margin-top: 10px;
}

.totalprice
{
    position: relative;
    display: block;
    text-align: center;
    align-content: center;
    margin-top: 40px;
}
.totalprice input
{
    display: block;
    width: 20%;
    padding: 5px;
    background: none;
    border: 1px solid blue;
    font-size: 15px;
    outline: none;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    text-align: center;
}

.cal-form h3
{
    position: relative;
    margin: 10px;
    font-size: 15px;
}

.cal-wrapper textarea
{
    position: relative;
    display: block;
    border: 1px solid blue;
    text-align: center;
    box-sizing: content-box;
    width: 50%;
    height: 100px;
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    left: 24%;
}

#submit
{
    width: auto;
    margin-top: 20px;
    align-items: center;
    position: relative;
    display: inline-block;
    left: 40%;
    
}

/*--------- Price Calculator -------*/

.cal-form .totalprice
{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}


/*----- " booking calender phone formatted " -----*/

@media(max-width:700px)
{
    .calender
    {
        margin-top: 100px;
        margin-left: auto;
        margin-right: auto;
        width:auto;
    }
    .cal-text
    {
        text-align: center;
        margin: 10px
    }
    .cal-text h1 span img
    {
        margin: 0 10px;
    }
    .cal-text h1
    {
        align-content: center;
        font-size: 40px;
        margin: 30px;
    }
    .cal-text p
    {   
        display: inline-flex;
        text-align: center;
        font-size: large;
        margin: auto;
    }
    .cal-form
    {
        width: auto;
        margin: 10px;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 10px
    }

    .cal-form div
    {
        width: 350px;
        margin-top: 30px;
    }

    .cal-form .cal-wrapper input
    {
        width: inherit;
        margin-top: 10px;
        background: none;
        border: 1px solid blue;
        font-size: 15px;
        outline: none;
        padding: 5px 0 3px 10px;
        border-radius: 10px;
    }

    /*------ Phone Start ------*/

    .phone-wrapper
    {
        width: auto;
        margin: 10px;
        display: flex;
        flex-direction: row;
        text-align: center;
        padding: 10px
    }
    .phone-wrapper div
    {
        width: 350px;
        margin-top: 30px;
    }
    .phone-wrapper .code
    {
        width: 100%;
        position: relative;
        left: auto;
        margin-top: 25px;
        font-size: 15px;
        outline: none;
        padding: 5px 0 3px 10px;
        right: 30px;
    }
    .phone-wrapper .phoneno
    {
        width: 100%;
        position: relative;
        left: auto;
        margin-top: 10px;
        font-size: 15px;
        outline: none;
        padding: 5px 0 3px 0px;
        right: 30px;
    }
    .phone-wrapper .phoneno input
    {
        width: 100%;
    }
    /*------ Tour Type ------*/

    .tourtype
    {
        width: auto;
        margin: 10px;
        display: block;
        text-align: center;
        padding: 10px
    }

    /*---- date & time ----*/


    .timedate
    {
        width: auto;
        margin: 10px;
        display: flex;
        flex-direction: row;
        text-align: center;
        padding: 10px
    }
    .timedate .date-wrapper
    {
         width: 100%;
        position: relative;
        left: auto;
        margin-top: 25px;
        font-size: 15px;
        outline: none;
        padding: 5px 0 3px 10px;
        
    }
    .timedate .time-wrapper
    {
        width: 100%;
        position: relative;
        left: auto;
        margin-top: 25px;
        font-size: 15px;
        outline: none;
        padding: 5px 0 3px 10px;
    }
    .time-wrapper select
    {
        text-align: center;
        width:80%;
    }
    .date-wrapper input
    {
        text-align: center;
        width: 90%;
    }

    .guests-wrapper
    {
        width: auto;
        margin: 10px;
        display: flex;
        flex-direction: row;
        text-align: center;
        padding: 10px
    }
    .guests-wrapper .adults
    {
        width: 100%;
        position: relative;
        left: auto;
        margin-top: 25px;
        font-size: 15px;
        padding: 5px 0 3px 10px;
    }
    .guests-wrapper .u3
    {
        width: 100%;
        position: relative;
        left: auto;
        right: 10px;
        margin-top: 25px;
        font-size: 15px;
        padding: 5px 0 3px 10px;
        text-align: center;
    }
    .guests-wrapper .guestcount
    {
        width: 70%;
        position: relative;
        left: auto;
        right: 12px;
        margin-top: 5px;
        font-size: 15px;
        padding: 5px 0 3px 0px;
        top: 4px;
    }
    .guests-wrapper .guestcount label
    {
        position: relative;
        right: 25px;
    }
    .guests-wrapper .u3 label
    {
        position: relative;
        right: 20px;
    }

    .cal-wrapper .totalprice
    {
        width: auto;
        margin: 10px;
        display: block;
        text-align: center;
        padding: 10px;
    }

    .comment h3
    {
        position: relative;
        margin: 10px;
        display: block;
        font-size: 20px;
        left: 8px;
    }
    .cal-wrapper .comment
    {
        width: 100%;
        display: block;
        position: relative;
        right: 10px;
        text-align: center;
    }
    .cal-wrapper #submit
    {
        box-sizing: border-box;
        display: block;
        margin: 10px;
        left: auto;   
    }

    /*--------- Price Calculator -------*/

    .cal-form .totalprice
    {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
    
    .calender .footer
    {
        width: auto;
        text-align: center;
        padding: 30px 0;
        position: relative;
    }
    .calender .footer h4
    {
        margin-bottom: 25px;
        margin-top: 20px;
        font-weight: 600;
    }
    .calender .icons .fa-brands
    {
        color: #f44336;
        margin: 0 13px;
        cursor: pointer;
        padding: 18px 0;
    }
    .calender .fa-coffee
    {
        color: #f44336;
    }
}

/*------ My Tours Pages ------*/

.mytours h1
{
    text-align: center;
    font-weight: 600;
    margin: 50px 10px 10px;
}
.mytours h2
{
    text-align: center;
    font-weight: 600;
    margin: 10px;
}

.mytours p
{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    margin: 10px 500px 10px;
    display: inline-block;
    text-decoration: none;
    color: black;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
}
.mytours p:hover
{
    border: 1px solid brown;
    background: #D78244;
    transition: 1s;
    color: aliceblue;
}

.mytours a
{
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    color: whitesmoke;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: #D78244;
    cursor: pointer;
    margin: 0 auto;
}

#schedule
{
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mytours a:hover
{
    border: 1px solid white;
    background: white;
    transition: 1s;
    color: #D78244;
}
@media(max-width:700px)
{
    .mytours h1
    {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        padding: none;
    }
    .mytours h2
    {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 10px;
        padding: none;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .mytours
    {
        width: 100%;
    }
    .mytours p
    {
        width: auto;
        margin: 0 auto;
        text-align: center;
        left: 2.%;
    }
    .mytours a
    {
        width: 50%;
        font-weight: 700;
        text-decoration: none;
        color: whitesmoke;
        border: 1px solid white;
        font-size: 13px;
        background: #D78244;
        cursor: pointer;
    }
    #schedule
    {
        margin-top: 30px;
        margin-bottom: auto;
    }
}


/*------ Image Gallery ------*/

*
{
    box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.img_gallery
{
    position: relative;
    width: 70%;
    margin: 0 auto
}

/* Hide the images by default */
.mySlides
{
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor
{
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next
{
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next
{
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover
{
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext
{
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 14px;
    left: 14px;
}

/* Container for image text */
.caption-img_gallery
{
    text-align: center;
    background-color: #222;
    padding: 20px 16px;
    color: white;
}

.gallery-row:
{
    justify-content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.gallery-col
{
    display:table-cell;
    margin-left: 40%;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo
{
    opacity: 0.6;
}

.active,
.demo:hover
{
    opacity: 1;
}


/*--------- Blog Home Page ----------*/

#blog
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    border-bottom: 1px solid rgba0,0,0,0,0.05();
}

.blog-heading
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.blog-heading span
{
    color: #f33c3c;
}
.blog-heading h3
{
    font-size: 2.4rem;
    color: #2b2b2b;
    font-weight: 600;
}

.blog-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;
}
.blog-box
{
    width: 350px;
    height: auto;
    background-color: #ffffff;
    border: 1px solid #ececec;
    margin: 20px;
}
.blog-img
{
    width: 100%;
    height: auto;
}
.blog-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:center;
}
.blog-text
{
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.blog-text span
{
    color: #f33c3c;
    font-size: 0.9rem;
}
.blog-text .blog-title
{
    font-size: 1.3rem;
    font-weight: 500;
    color: #272727;
}
.blog-text .blog-title:hover
{
    color: #f33c3c;
    transition: all ease 0.3s;
}
.blog-text p
{
    color: #9b9b9b;
    font-size: 0.9rem;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 5px 0px;
}
.blog-text a
{
    color: #0f0f0f;
}
.blog-text a:hover
{
    color: #f33c3c;
    transform: all ease 0.3s;
}

/*--------- media for photo reel ---------*/
@media(max-width:700px)
{
    /*------ Image Gallery ------*/

    *
    {
      box-sizing: border-box;
    }

    /* Position the image container (needed to position the left and right arrows) */
    .img_gallery
    {
        width: 80%;
        position: relative;
        margin-left: 10%;
        margin-top: 10%;
    }

    /* Hide the images by default */
    .mySlides
    {
        display: none;
    }
    .gallery-row:
    {
        justify-content: "";
        display: table;
        clear: both;
    }

/* Six columns side by side */
    .gallery-col
    {
        display: none;
        margin-left: 40%;
        width: 16.66%;
    }

    /* Add a pointer when hovering over the thumbnail images */
    .cursor
    {
      cursor: pointer;
    }

    /* Next & previous buttons */
    .prev,
    .next
    {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -50px;
      color: white;
      font-weight: bold;
      font-size: 20px;
      border-radius: 0 3px 3px 0;
      user-select: none;
      -webkit-user-select: none;
    }

    /* Position the "next button" to the right */
    .next
    {
      right: 0;
      border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover,
    .next:hover
    {
      background-color: rgba(0, 0, 0, 0.8);
    }

    /* Number text (1/3 etc) */
    .numbertext
    {
      color: #f2f2f2;
      font-size: 12px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
    }

    /* Container for image text */
    .caption-img_gallery
    {
      text-align: center;
      background-color: #222;
      padding: 2px 16px;
      color: white;
    }

    .row:after
    {
      content: "";
      display: table;
      clear: both;
    }

    /* Six columns side by side */
    .column
    {
        float: left;
        width: 25%;
    }

    /* Add a transparency effect for thumnbail images */
    .demo
    {
      opacity: 0.6;
    }

    .active,
    .demo:hover
    {
      opacity: 1;
    }
}


