@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One&family=Bebas+Neue&family=Cardo:wght@400;700&family=Cormorant+SC:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300&family=Source+Sans+Pro:wght@200;300;400;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One&family=Bebas+Neue&family=Cardo:wght@400;700&family=Cormorant+SC:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300&family=Ubuntu+Condensed&display=swap');



* {
    margin: 0;
    padding: 0;
    transition: 0.5s;
    box-sizing: border-box;
    object-fit: cover;
    text-transform: uppercase;
    font-family: 'Alumni Sans Collegiate One', sans-serif;
    font-family: 'Bebas Neue', cursive;
    font-family: 'Cardo', serif;
    font-family: 'Cormorant SC', serif;
    font-family: 'Roboto Condensed', sans-serif;
    font-family: 'Source Sans Pro', sans-serif;
}




:root {
    --blue: rgb(8, 76, 139) !important;
    --gray: rgb(172, 172, 172);
    --white: rgb(226, 226, 226);
    --black: rgb(29, 27, 27);
    --para: rgb(52, 40, 40);
    --red: rgb(191, 1, 1);
    --border: rgb(150, 149, 149);
}

.tours {
    text-align: center;
    padding: 30px;
    width: 100%;
    cursor: pointer;
}

.tours .tours-title {
    margin-bottom: 20px;
}

.tours .tours-title h1 {
    font-weight: bolder;
    color: var(--blue);
}

.tours .tours-title p {
    text-transform: initial;
    font-weight: bolder;
}

.tours .tours-title h1 span {
    color: var(--black);
}

.tours .tour-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: relative;
}

.tours .tour-content .tour-image {
    width: 30%;
    height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: justify;
    overflow: hidden;

}

.tours .tour-content .tour-image img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.tours .tour-content .tour-image .tour-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 50%;
    top: -100%;
    transform: translate(-50%);
    background: var(--blue);
    width: 100%;
    height: 100%;
    transition: 1s;
    padding: 30px;
}

.tours .tour-content .tour-image .mt-div{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 10px;
    background-color: black;
    opacity: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .tours .tour-content .tour-image .mt-div i{
    color: var(--white);
    opacity: 100%;
    position: relative;
    font-size: 100px;
    
  
 }

.tours .tour-content .tour-image .tour-overlay h4 {
    font-weight: bolder;
    color: var(--white);
}

.tours .tour-content .tour-image .tour-overlay ul {
    padding-left: 0;
}

.tours .tour-content .tour-image .tour-overlay ul li {
    list-style: none;
    font-weight: bolder;
    color: rgb(128, 191, 255);
}



.tours .tour-content .tour-image .tour-overlay ul li:not(:last-child) {
    margin-bottom: 10px;

}


.tours .tour-content .tour-image .tour-overlay ul li::before {
    content: "\2714";
    color: var(--white);
    margin-right: 10px;
}


.tours .tour-content .tour-image:hover .tour-overlay {
    top: 0%;
}

.about-point .point-list ul .tour-package-points li{
    margin-bottom: 0;
}
.about-point .point-list ul .tour-package-points p{
    text-transform: initial;
    color: var(--para);
}





































































@media screen and (max-width:320px) {
    .tours {
        text-align: center;
        padding: 0px;
        width: 100%;
    }

    .tours .tours-title {
        margin-bottom: 20px;
    }

    .tours .tours-title h1 {
        font-weight: bolder;
        color: var(--blue);
    }

    .tours .tours-title p {
        text-transform: initial;
        font-weight: bolder;
    }

    .tours .tours-title h1 span {
        color: var(--black);
    }

    .tours .tour-content {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
    }

    .tours .tour-content .tour-image {
        width: 100%;
        height: 70vh;
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: justify;
        overflow: hidden;
        margin-bottom: 20px;

    }

    .tours .tour-content .tour-image img {
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .tours .tour-content .tour-image .tour-overlay {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 50%;
        top: -100%;
        transform: translate(-50%);
        background: var(--blue);
        width: 100%;
        height: 100%;
        transition: 1s;
        padding: 30px;
    }

    .tours .tour-content .tour-image .tour-overlay h4 {
        font-weight: bolder;
        color: var(--white);
        font-size: 25px;
    }

    .tours .tour-content .tour-image .tour-overlay ul {
        padding-left: 0;
    }

    .tours .tour-content .tour-image .tour-overlay ul li {
        list-style: none;
        font-weight: bolder;
        color: rgb(128, 191, 255);
        font-size: 15px;
    }



    .tours .tour-content .tour-image .tour-overlay ul li:not(:last-child) {
        margin-bottom: 10px;

    }


    .tours .tour-content .tour-image .tour-overlay ul li::before {
        content: "\2714";
        color: var(--white);
        margin-right: 10px;
    }


    .tours .tour-content .tour-image:hover .tour-overlay {
        top: 0%;
    }





}


@media screen and (min-width:321px) and (max-width:425px) {
    .tours {
        text-align: center;
        padding: 0px;
        width: 100%;
    }
    
    .tours .tours-title {
        margin-bottom: 20px;
    }
    
    .tours .tours-title h1 {
        font-weight: bolder;
        color: var(--blue);
    }
    
    .tours .tours-title p {
        text-transform: initial;
        font-weight: bolder;
    }
    
    .tours .tours-title h1 span {
        color: var(--black);
    }
    
    .tours .tour-content {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
    }
    
    .tours .tour-content .tour-image {
        width: 100%;
        height: 70vh;
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: justify;
        overflow: hidden;
        margin-bottom: 20px;
    
    }
    
    .tours .tour-content .tour-image img {
        width: 100%;
        height: 100%;
        position: absolute;
    }
    
    .tours .tour-content .tour-image .tour-overlay {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 50%;
        top: -100%;
        transform: translate(-50%);
        background: var(--blue);
        width: 100%;
        height: 100%;
        transition: 1s;
        padding: 30px;
    }
    
    .tours .tour-content .tour-image .tour-overlay h4 {
        font-weight: bolder;
        color: var(--white);
        font-size: 25px;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul {
        padding-left: 0;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul li {
        list-style: none;
        font-weight: bolder;
        color: rgb(128, 191, 255);
        font-size: 15px;
    }
    
    
    
    .tours .tour-content .tour-image .tour-overlay ul li:not(:last-child) {
        margin-bottom: 10px;
    
    }
    
    
    .tours .tour-content .tour-image .tour-overlay ul li::before {
        content: "\2714";
        color: var(--white);
        margin-right: 10px;
    }
    
    
    .tours .tour-content .tour-image:hover .tour-overlay {
        top: 0%;
    }
    
}


@media screen and (min-width:426px) and (max-width:600px) {
    .tours {
        text-align: center;
        padding: 0px;
        width: 100%;
    }
    
    .tours .tours-title {
        margin-bottom: 20px;
    }
    
    .tours .tours-title h1 {
        font-weight: bolder;
        color: var(--blue);
    }
    
    .tours .tours-title p {
        text-transform: initial;
        font-weight: bolder;
    }
    
    .tours .tours-title h1 span {
        color: var(--black);
    }
    
    .tours .tour-content {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
    }
    
    .tours .tour-content .tour-image {
        width: 100%;
        height: 70vh;
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: justify;
        overflow: hidden;
        margin-bottom: 20px;
    
    }
    
    .tours .tour-content .tour-image img {
        width: 100%;
        height: 100%;
        position: absolute;
    }
    
    .tours .tour-content .tour-image .tour-overlay {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 50%;
        top: -100%;
        transform: translate(-50%);
        background: var(--blue);
        width: 100%;
        height: 100%;
        transition: 1s;
        padding: 30px;
    }
    
    .tours .tour-content .tour-image .tour-overlay h4 {
        font-weight: bolder;
        color: var(--white);
        font-size: 25px;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul {
        padding-left: 0;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul li {
        list-style: none;
        font-weight: bolder;
        color: rgb(128, 191, 255);
        font-size: 15px;
    }
    
    
    
    .tours .tour-content .tour-image .tour-overlay ul li:not(:last-child) {
        margin-bottom: 10px;
    
    }
    
    
    .tours .tour-content .tour-image .tour-overlay ul li::before {
        content: "\2714";
        color: var(--white);
        margin-right: 10px;
    }
    
    
    .tours .tour-content .tour-image:hover .tour-overlay {
        top: 0%;
    }
    
}

@media screen and (min-width:601px) and (max-width:768px) {
    .tours {
        text-align: center;
        padding: 0px;
        width: 100%;
    }
    
    .tours .tours-title {
        margin-bottom: 20px;
    }
    
    .tours .tours-title h1 {
        font-weight: bolder;
        color: var(--blue);
    }
    
    .tours .tours-title p {
        text-transform: initial;
        font-weight: bolder;
    }
    
    .tours .tours-title h1 span {
        color: var(--black);
    }
    
    .tours .tour-content {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
    }
    
    .tours .tour-content .tour-image {
        width: 100%;
        height: 70vh;
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: justify;
        overflow: hidden;
        margin-bottom: 20px;
    
    }
    
    .tours .tour-content .tour-image img {
        width: 100%;
        height: 100%;
        position: absolute;
    }
    
    .tours .tour-content .tour-image .tour-overlay {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 50%;
        top: -100%;
        transform: translate(-50%);
        background: var(--blue);
        width: 100%;
        height: 100%;
        transition: 1s;
        padding: 30px;
    }
    
    .tours .tour-content .tour-image .tour-overlay h4 {
        font-weight: bolder;
        color: var(--white);
        font-size: 25px;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul {
        padding-left: 0;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul li {
        list-style: none;
        font-weight: bolder;
        color: rgb(128, 191, 255);
        font-size: 15px;
    }
    
    
    
    .tours .tour-content .tour-image .tour-overlay ul li:not(:last-child) {
        margin-bottom: 10px;
    
    }
    
    
    .tours .tour-content .tour-image .tour-overlay ul li::before {
        content: "\2714";
        color: var(--white);
        margin-right: 10px;
    }
    
    
    .tours .tour-content .tour-image:hover .tour-overlay {
        top: 0%;
    }
    
}

@media screen and (min-width:769px) and (max-width:992px) {
    .tours {
        text-align: center;
        padding: 0px;
        width: 100%;
    }
    
    .tours .tours-title {
        margin-bottom: 20px;
    }
    
    .tours .tours-title h1 {
        font-weight: bolder;
        color: var(--blue);
    }
    
    .tours .tours-title p {
        text-transform: initial;
        font-weight: bolder;
    }
    
    .tours .tours-title h1 span {
        color: var(--black);
    }
    
    .tours .tour-content {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        position: relative;
    }
    
    .tours .tour-content .tour-image {
        width: 30%;
        height: 70vh;
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: justify;
        overflow: hidden;
        margin-bottom: 20px;
    
    }
    
    .tours .tour-content .tour-image img {
        width: 100%;
        height: 100%;
        position: absolute;
    }
    
    .tours .tour-content .tour-image .tour-overlay {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 50%;
        top: -100%;
        transform: translate(-50%);
        background: var(--blue);
        width: 100%;
        height: 100%;
        transition: 1s;
        padding: 30px;
    }
    
    .tours .tour-content .tour-image .tour-overlay h4 {
        font-weight: bolder;
        color: var(--white);
        font-size: 25px;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul {
        padding-left: 0;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul li {
        list-style: none;
        font-weight: bolder;
        color: rgb(128, 191, 255);
        font-size: 10px;
    }
    
    
    
    .tours .tour-content .tour-image .tour-overlay ul li:not(:last-child) {
        margin-bottom: 10px;
    
    }
    
    
    .tours .tour-content .tour-image .tour-overlay ul li::before {
        content: "\2714";
        color: var(--white);
        margin-right: 10px;
    }
    
    
    .tours .tour-content .tour-image:hover .tour-overlay {
        top: 0%;
    }
    
}

@media screen and (min-width:993px) and (max-width:1024px) {

    .tours {
        text-align: center;
        padding: 0px;
        width: 100%;
    }
    
    .tours .tours-title {
        margin-bottom: 20px;
    }
    
    .tours .tours-title h1 {
        font-weight: bolder;
        color: var(--blue);
    }
    
    .tours .tours-title p {
        text-transform: initial;
        font-weight: bolder;
    }
    
    .tours .tours-title h1 span {
        color: var(--black);
    }
    
    .tours .tour-content {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        position: relative;
    }
    
    .tours .tour-content .tour-image {
        width: 30%;
        height: 70vh;
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: justify;
        overflow: hidden;
        margin-bottom: 20px;
    
    }
    
    .tours .tour-content .tour-image img {
        width: 100%;
        height: 100%;
        position: absolute;
    }
    
    .tours .tour-content .tour-image .tour-overlay {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 50%;
        top: -100%;
        transform: translate(-50%);
        background: var(--blue);
        width: 100%;
        height: 100%;
        transition: 1s;
        padding: 30px;
    }
    
    .tours .tour-content .tour-image .tour-overlay h4 {
        font-weight: bolder;
        color: var(--white);
        font-size: 25px;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul {
        padding-left: 0;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul li {
        list-style: none;
        font-weight: bolder;
        color: rgb(128, 191, 255);
        font-size: 10px;
    }
    
    
    
    .tours .tour-content .tour-image .tour-overlay ul li:not(:last-child) {
        margin-bottom: 10px;
    
    }
    
    
    .tours .tour-content .tour-image .tour-overlay ul li::before {
        content: "\2714";
        color: var(--white);
        margin-right: 10px;
    }
    
    
    .tours .tour-content .tour-image:hover .tour-overlay {
        top: 0%;
    }
    
}

@media screen and (min-width:1025px) and (max-width:1280px) {
    .tours {
        text-align: center;
        padding: 0px;
        width: 100%;
    }
    
    .tours .tours-title {
        margin-bottom: 20px;
    }
    
    .tours .tours-title h1 {
        font-weight: bolder;
        color: var(--blue);
    }
    
    .tours .tours-title p {
        text-transform: initial;
        font-weight: bolder;
    }
    
    .tours .tours-title h1 span {
        color: var(--black);
    }
    
    .tours .tour-content {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        position: relative;
    }
    
    .tours .tour-content .tour-image {
        width: 30%;
        height: 70vh;
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: justify;
        overflow: hidden;
        margin-bottom: 20px;
    
    }
    
    .tours .tour-content .tour-image img {
        width: 100%;
        height: 100%;
        position: absolute;
    }
    
    .tours .tour-content .tour-image .tour-overlay {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 50%;
        top: -100%;
        transform: translate(-50%);
        background: var(--blue);
        width: 100%;
        height: 100%;
        transition: 1s;
        padding: 30px;
    }
    
    .tours .tour-content .tour-image .tour-overlay h4 {
        font-weight: bolder;
        color: var(--white);
        font-size: 25px;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul {
        padding-left: 0;
    }
    
    .tours .tour-content .tour-image .tour-overlay ul li {
        list-style: none;
        font-weight: bolder;
        color: rgb(128, 191, 255);
        font-size: 10px;
    }
    
    
    
    .tours .tour-content .tour-image .tour-overlay ul li:not(:last-child) {
        margin-bottom: 10px;
    
    }
    
    
    .tours .tour-content .tour-image .tour-overlay ul li::before {
        content: "\2714";
        color: var(--white);
        margin-right: 10px;
    }
    
    
    .tours .tour-content .tour-image:hover .tour-overlay {
        top: 0%;
    }
    
}