*{
    padding: 0;
    margin: 0;
    /* overflow-x: hidden; */
    font-family: 'Poppins', sans-serif;
    outline: none;
    scroll-behavior: smooth;
}
/* Universal CSS */

a:visited {
    color: inherit;
}

a {
    text-decoration: none;
    color:white;
}

.right {
    text-align: right !important;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.btn{
    padding: 5px 8px;
    margin: 5px;
    font-size: var(--h4-font-size);
    border-radius: 5px;
    border: 1.5px solid var(--first-color);
    background-color: transparent;
    color: var(--first-color);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    font-weight: var(--font-semi-bold);
}

.btn:hover{
    background-color: var(--first-color);
    color: white;
}

.btn-round{
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
}

.btn-large{
    width: 98.5%;
    cursor:auto;
    transition:all 0.3s ease-in-out !important;
}

.btn-dark{
    background-color: var(--first-color) !important;
    color: var(--input-color) !important;
}

.btn-show {
    opacity: 1;
}

.btn-hide {
    opacity: 0;
}

.hide {
    display: none !important;
}

.vis-hide {
    height: 0 !important;
    opacity: 0 !important;
    transform: translateY(-5vh) !important;
    transition: all 0.3s ease-in-out;
}

.vis-hide-nav {
    height: 0 !important;
    opacity: 0 !important;
    transform: translateY(-40vh) !important;
}

.boxShadow {
    box-shadow: 0 0 10px 0 var(--first-color-lighter);
}

.active {
    color: var(--first-color) !important;
    box-shadow: 1px 1px 10px 0px var(--first-color-lighter) !important;
}

.bold{
    font-weight: bold !important;
}

.ms-2{
    margin-left: 1rem;
}

/* ***VARIABLES CSS*** */
:root {
    --header-height: 3rem;

    /* ***Colors*** */
    /* Change favorite color */
    --hue-color: 350;
    /*Purple 250 - Mild Purple 280 - Green 142 - Blue 230 - Pink 340 - Redish Pink 350*/

    /* HSL color mode */
    --first-color: hsl(var(--hue-color), 69%, 61%);
    --first-color-second: hsl(var(--hue-color), 69%, 61%);
    --first-color-alt: hsl(var(--hue-color), 57%, 53%);
    --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
    --title-color: hsl(var(--hue-color), 8%, 15%);
    --text-color: hsl(var(--hue-color), 8%, 35%);
    --span-color: hsl(var(--hue-color), 8%, 15%);
    --text-color-light: hsl(var(--hue-color), 8%, 55%);
    --input-color: hsl(var(--hue-color), 70%, 96%);
    --body-color: hsl(var(--hue-color), 60%, 100%);
    --container-color: #fff;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
    --viewmore-transparent: hsla(var(--hue-color), 8%, 75%, 35%);

    /* ***Font and typography*** */
    /* --body-font: 'Poppins', sans-serif; */

    /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.20rem;
    --h4-font-size: 1.010rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /* ***Font weight *** */
    --font-medium: 500;
    --font-semi-bold: 600;

    /* ***Margenes Bottom *** */
    /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /* ***z index *** */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* ***Font size for large devices*** */
@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 3rem;
        --h1-font-size: 1.9rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --h4-font-size: 1.12rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/* ****Dark Theme CSS**** */

body{
    background-color: var(--body-color);
}

body.dark-theme{
    --first-color-second: hsl(var(--hue-color), 69%, 4%);
    --title-color: hsl(var(--hue-color), 8%, 97%);
    --text-color: hsl(var(--hue-color), 8%, 97%);
    --span-color: hsl(var(--hue-color), 8%, 75%);
    --input-color: hsl(var(--hue-color), 70%, 8%);
    --body-color: hsl(var(--hue-color), 60%, 6%);
    --container-color: hsl(var(--hue-color), 60%, 7%);;
    --viewmore-transparent: hsla(var(--hue-color), 8%, 2%, 35%);
}

/* Preloader CSS */

#preloader{
    display: flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

#preloader img{
    width: 400px;
    animation: rotate 10s infinite;
} 

@keyframes rotate{
    0%{
      transform: rotateZ(0Deg);
    }
    25%{
      transform: rotateZ(45Deg);
    }
    50%{
      transform: rotateZ(90Deg);
    }
    75%{
      transform: rotateZ(135Deg);
    }
    100%{
      transform: rotateZ(180Deg);
    }
  }

/* ***Header CSS*** */

.uil::before{
    font-weight:var(--font-semi-bold) !important;
}

header {
    position: sticky;
    top: 0px;
    z-index: var(--z-fixed);
}

nav{
    background-color: transparent;
    /* padding: 2vh 10vw;
    margin: 0 0 5vh 0; */
}

#navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: var(--input-color);
    font-weight: var(--font-semi-bold);
    z-index: var(--z-fixed);
    transition: all 0.2s ease-in-out;
    /* background-color: black; */
}

.main-nav{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(25, 0, 0);
    transition: all 0.2s ease-in-out;
}

.gallery-nav{ /* Used for Gallery NavBar */
    background-color: rgb(25, 0, 0) !important;
}

#left-nav a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--input-color);
    transition: all 0.4s ease-in-out;
}


#logoImg{
    width: 90px;
}

#left-nav p{
    font-size: var(--h4-font-size);
    color: var(--input-color);
    transition: color 0.2s ease-in-out;
}

#left-nav a:hover p{
    color: var(--first-color);
}

.large-nav-right > ul{
    display: flex;
    flex-direction: row;
    list-style: none;
}

.large-nav-right a{
    text-decoration: none;
    list-style: none;
    color: var(--input-color);
    padding: 0 10px;
    font-size: var(--h4-font-size);
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.large-nav-right a:hover{
    color:var(--first-color);
}

.small-nav-right{
    display: none;
    justify-content: right;
    align-items: right;
}

.small-nav-content ul{
    text-align: center;
    list-style-type: none;
    padding: 10px;
}

.small-nav-content ul li{
    padding: 10px 0;
}


/* Section: Home CSS */

#home{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: -120px;
    padding-top: 130px;
    height: 90vh;
    background: url(/assets/img/bgImg.jpg)center/cover;
    color: var(--input-color);
    font-size: var(--h2-font-size);
}

#left-home{
    width: 40vw;
    margin-left: 9vw;
    margin-bottom: 5vh;
}

#left-home > h3{
    margin-bottom: 3vh;
}

#right-home{
    margin-right: 4vw;
    align-self: flex-end;
    margin-bottom: 7vh;
}


#fixed-whatsapp-btn{
    background-color: green;
    color: white;
    border: none;
    font-size: var(--h1-font-size) !important;
    position: fixed;
    z-index: var(--z-fixed);
    bottom: 40px;
    right: 50px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

#back-to-top-btn{
    background-color: var(--first-color);
    color: white;
    border: none;
    font-size: var(--h2-font-size) !important;
    position: fixed;
    z-index: var(--z-fixed);
    bottom: 110px;
    right: 55px;
    width: 50px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

#back-to-top-btn:hover{
    transform: translateY(-1vh);
}



.uil-whatsapp::before{
    font-weight: var(--font-medium) !important;
}


#fixed-whatsapp-btn:hover{
    transform: scale(1.10);
}

/* Section: AboutUs CSS */

.about-div{
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 10vh; */
    padding: 20vh 0 6vh 0;
    flex-wrap: wrap;
    flex-direction: row;
}

.left-about{
    width: 40%;
    padding-right : 5vw;
    margin: 0 20px;
}

.left-about > p{
    font-family:  'Balsamiq Sans' !important;
    font-size: var(--h4-font-size);
    color: var(--text-color);
}

.left-about > h3{
    font-size: var(--h1-font-size);
    color: var(--title-color);
    padding: 2vh 0;
}

.right-about{
    padding-top: 12vh;
}

.right-about > img{
    width: 420px;
    border-radius: 10px;
}

/* Section: Gallery CSS */

#gallery > h3{
    font-size: var(--h1-font-size);
    /* margin-top: 20vh; */
    padding: 20vh 0 10vh 0;
}

.cardGroups{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding-bottom:10vh;
    flex-wrap: wrap;
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 240px !important;
    overflow: hidden;
    border: 2px solid var(--first-color); 
    border-radius: 5px;
    cursor: pointer;
    margin: 30px 20px;
    /* overflow: hidden; */
    /* transition: all 0.2s ease-in-out; */
}

.upper-card > img{
    height: 240px;
    min-width: 260px;
    margin-bottom: 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom: 2px solid var(--first-color);
    transition: all 0.5s ease-in-out;
}

.small-img > img{
    height: 150px !important;
    min-width: 150px !important;
}

.card:hover .upper-card > img{
    transform: scale(1.1);
    border-bottom: none;
}

.card:hover .bottom-card p{
    color: var(--input-color);
    font-weight: var(--font-medium);

}

.card:hover .bottom-card{
    border-top: 2px solid var(--first-color);
    background-color: var(--first-color);
}

.upper-card{
    width: 240px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-card{
    width: 250px;
    text-align: center;
    /* border-top: 2px solid var(--first-color); */
    padding: 2vh 0 2vh 0;
    align-self: center;
    transition: all 0.1s ease-in-out;
}

.bottom-card > p{
    padding: 0 2vw;
    color: var(--first-color);
    font-weight: var(--font-semi-bold)  ;
}

#gallery .btn{
    color: var(--first-color);
}

#gallery .btn:hover{
    color: var(--input-color);
}

/* Section: Why Us CSS */

#why-us > h3{
    font-size: var(--h1-font-size);
    padding: 20vh 0 10vh 0;
}


#why-us .card {
    border: none !important;
}


/* Section: Contact-Us CSS */

#contact-us{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap-reverse;
    padding: 90px 0 20px 0;
}

#contact-us h3{
    font-size: var(--h1-font-size);
    text-align: center;
    margin-bottom: 20px;
}

.sub-contact{
    display: flex;
    padding: 10px 20px;
    margin-bottom: 10px ;
}

.sub-contact h3{
    font-size: var(--h2-font-size) !important;
    margin-bottom: 10px !important;
    text-align: left !important;
}

.sub-contact img{
    width: 70px;
    margin: 10px 30px;
}

.right-sub-contact{
    padding-top: 10px;
}


.inputTag,textarea{
    padding: 8px 15px;
    border: 2px solid var(--first-color-lighter);
    border-radius: 4px;
    margin: 5px 3px;
    font-size: var(--normal-font-size);
}


.inputTag:hover , textarea:hover{
    border: 2px solid var(--first-color);
}

textarea{
    width: 91.5%;
}


.left-contact{
    padding: 60px 0 0 0;
}

#sent-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    margin-top: 15px;
}

#sent-info p{
    font-size: var(--normal-font-size) !important;
    align-self: center;
}

.uil-check-circle{
    font-size: var(--h4-font-size) !important;
}

.left-cross{
    cursor: pointer;
    font-size: var(--h3-font-size);
}

/* Footer Section CSS */

footer{
    display: flex;
    flex-direction: column;
    background-color: var(--first-color);
    color: var(--input-color);
}

.upper-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 120px;
}

.left-upper-footer{
    font-size: var(--h3-font-size);
    width: 200px;
    font-weight: bold;
}

.right-upper-footer a{
    font-size: var(--h3-font-size);
    padding: 0 8px;
}

.right-upper-footer a:hover{
    color: var(--first-color-lighter);
}

.bottom-footer{
    text-align: center;
    padding: 20px 0;
    font-size: var(--small-font-size);
}

.bottom-footer a{
    color: var(--input-color);
}

.bottom-footer a:hover{
    color: var(--first-color-lighter);
}



/* CSS For Responsivness */

/* for Below 836px Width Devices  */

@media screen and (max-width: 836px){
    .left-about{
        width: 60%;
    }
}

/* for Below 710px Width Devices  */

@media screen and (max-width: 710px){
    .large-nav-right{
        display: none;
    }

    .small-nav-right{
        display: flex;
    }

    #logoImg{
        width: 70px;
    }

    #left-home{
        width: 60vw;
    }
    
    #nav-ham{
        font-size: var(--h1-font-size);
    }
}

/* for Below 520px Width Devices  */

@media screen and (max-width: 520px){
    .upper-footer{
        padding: 20px 60px;
    }

    .left-upper-footer{
        font-size: var(--h4-font-size);
        width: 150px;
    }

    #fixed-whatsapp-btn{
        right: 15px;
        font-size: var(--h4-font-size);
    }
    
    .btn-round{
        min-width: 50px;
        min-height: 50px;
    }

    #back-to-top-btn{
        right: 20px;
        font-size: var(--h3-font-size);
        width: 40px;
    }

    .card{
        width: 200px !important;
    }

    .upper-card > img{
        height: 200px;
        min-width: 220px;
    }

    .upper-card, .bottom-card{
        width: 200px;
    }

    .small-img > img{
        height: 130px !important;
        min-width: 130px !important;
    }


}

/* for Below 460px Width Devices  */

@media screen and (max-width: 460px){
    .right-about > img{
        width: 310px;
    }

    .left-about{
        width: 80%;
    }

    .inputTag{
        width: 29.5%;
    }

    textarea{
        width: 70%;
    }

    .right-contact{
        text-align: center;
    }

    #sent-info{
        padding: 5px 8px;
    }

    #sent-info p {
        font-size: var(--small-font-size) !important;
        text-align: left;
    }

    .btn-large{
        width: 95%;
    }

    #contact-us{
        justify-content: space-between;
    }

    .sub-contact img{
        width: 50px;
    }

    .sub-contact{
        flex-direction: column !important;
    }
}


/* Gallery CSS */

.gallery-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0 60px;
}

.gallery-item{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 10px;
    border: 2px solid var(--first-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    width: 300px;
    height: 400px;
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.gallery-item img:hover{
    transform: scale(1.05);
}

.gallery-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.gallery-heading h1{
    font-size: var(--h1-font-size);
    text-align: center;
    padding: 10px 0;
    color:#e0576e;
}

.gallery-heading p{
    font-size: var(--h4-font-size);
    text-align: center;
    padding: 10px 0;
    width: 75%;
    min-width: 300px;
    max-width: 800px;
}
