@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);
}


header .contact-banner h1 {
    color: var(--white) ;
    font-weight: bolder;
    text-shadow: 2px 3px black;
    -webkit-text-stroke: 1px var(--blue);
}

header .contact-banner h1 a{
    -webkit-text-stroke: 1px var(--blue);
}



 /* --------------------HOME ABOUT SECTION  ---------------------------*/

 .home-about {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px;
}


 /* india tour section  */
 .home-about .home-about-content .home-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1rem;
}

.home-about .home-about-content .home-gallery img:hover {
    opacity: 50%;
}

.home-about .home-about-content .home-img-content p {
    text-transform: initial;
}

.home-about .home-about-content .home-img-content .about-list {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.home-about .home-about-content .home-img-content .about-list .first-list ul li {
    list-style: none;
    font-weight: bolder;
    color: var(--blue);
}


.home-about .home-about-content .home-img-content .about-list .first-list ul li:not(:last-child) {
    margin-bottom: 30px;

}

.home-about .home-about-content .home-img-content .about-list .first-list ul li::before {
    content: "\2714";
    margin-right: 20px;
    color: var(--black);
}


.about-point {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.about-point .point-title h3{
    font-weight: bolder;
    color: var(--black);
    -webkit-text-stroke: 1px var(--blue);
    margin-bottom: 30px;
}

.about-point .point-list ul li{
    list-style: none;
     font-weight: bolder;
     color: var(--blue);
}


.about-point .point-list ul li:not(:last-child) {
    margin-bottom: 30px;

}

.about-point .point-list ul li::before {
    content: "\2714";
    margin-right: 20px;
    color: var(--blue);
}





















