@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,600&family=Libre+Baskerville&family=Quintessential&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Open+Sans&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');

:root {
    ---headfont: "Quintessential", cursive;
    ---parafont: "Open Sans", sans-serif;
    ---aboreto: 'Aboreto', cursive;
    ---primeColor: #d9ba73;
    ---secondColor: #504508;
}

body {
    background-color: #EEE;
}

.socialbtn {
    list-style-type: none;
}


/* =========================================== Header ============================================== */
.detail {
    height: 50px;
    background-color: var(---secondColor);

}

.firstNav {

    height: 50px;
    padding: 10px;

}

.firstNav ul {
    list-style-type: none;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 0%;
}

.firstNav li i {
    color: #fff;
    font-size: 1rem;
    margin-right: 2px;
}

.logo-text {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
}

.contact-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
}

.social-icon-link {
    color: #fff;
    padding: 10px;
    align-items: right;
    float: right;
    list-style-type: none;
    display: flex;
    transition: 0.4s ease-in-out;
    text-decoration: none;
}

.socialLinks ul {
    list-style: none;
    display: flex;
    margin-bottom: 0;
}

.social-icon-link:hover {
    background-color: rgb(242 202 103);
    transition: 0.4s ease-in-out;
    transform: scale(1.3);
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 500px) {
    .firstNav ul {
        align-items: left;
        margin: 0px;
        padding: 0px;
    }

    .firstNav a {
        padding-left: 3px;
        font-size: 12px;
    }
}


/* ========================================== NavBar =========================================== */


/* ======================== Navbar ====================== */

.navbar {
    background: #202020;
    z-index: 100;
    /* box-shadow: 0 2px 4px #808080; */
    padding: 0 0;
    color: #fff;
}

.sticky {
    position: fixed;
    top: 0;
    transition: 0.5s ease all;
    background: #fff;
    box-shadow: 0 3px 7px #808080;
}

.navbar-brand {
    display: flex;
    width: 100px;

    height: 70px;
    transform: scale(1.5, 1);
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
}


.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
}

.navbar-nav li.nav-item {
    position: relative;
    cursor: pointer;
    font-size: 20px;
}

.navbar .nav-item {
    padding: 0px 18px;
}

.navbar .nav-item .nav-link {
    font-size: 1.2rem;
    color: #fff;
    font-family: var(---headFont);
    font-weight: 500;
    transition: 0.4s ease-in-out;
    text-transform: uppercase;

}

.sticky .nav-item .nav-link {
    color: #fff;


}

.nav-item .nav-link.active {
    color: #fff !important;
}

.navbar .nav-item .nav-link::before {
    position: absolute;
    opacity: 0.5;
    height: 2px;
    width: 100%;
    content: '';
    background: rgb(80, 69, 8);
    transition: all 0.3s;
    margin: 0 5px;
}

.navbar .nav-item .nav-link::after {
    margin: 0 5px;
    position: absolute;
    opacity: 0.5;
    height: 2px;
    width: 100%;
    content: '';
    background: gold;
    transition: all 0.3s;
}

.navbar .nav-item .nav-link:before {
    left: 0px;
    top: 0px;
}

.navbar .nav-item .nav-link:after {
    right: 0px;
    bottom: 0px;
}

.navbar .nav-item .nav-link:hover:before,
.navbar .nav-item .nav-link:hover:after {
    opacity: 1;
    height: 100%;
    width: 2px;
}

/* .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before,.navbar .nav-item .nav-link:hover::before {
    width: 0%;;
    height:100%;
    transition: 0.5s ease-in-out;
} */


/* #secondNavbar .nav-item .nav-link {
    color: #111;
} */

.navbar-collapse {
    flex-grow: inherit;
    justify-content: right;
}

.navbar-nav {
    position: relative;
    display: flex;
}

.navbar-icon {
    position: relative;
    display: flex;
    justify-content: center;
    transform: translateY(20%);
}

.nav-icon-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.dropdown-menu {
    position: fixed;
    top: 60px;
    right: 5%;
    z-index: 1000;
}

.nav-icon {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    transition: .4s ease all;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-icon span {
    padding: 0 5px;
    text-transform: capitalize;
}

.nav-icon:hover {
    color: #fff;
}

#menuToggle {
    display: none;
}

#afterLoginLink {
    display: none;
}

@media(max-width:990px) {

    .navbar>.container,
    .navbar>.container-fluid,
    .navbar>.container-lg,
    .navbar>.container-md,
    .navbar>.container-sm,
    .navbar>.container-xl,
    .navbar>.container-xxl {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .navbar-brand {
        display: flex;
        width: 100px;

        height: 70px;
        transform: scale(1.5, 1);
        margin: 0;
        padding: 0;
    }

    .navbar-brand img {
        width: 100%;
        height: 100%;
    }


    .navbar-brand .h1 {
        font-size: 1.6rem;
        line-height: 5px;
        font-weight: 600;
        text-align: left;
    }

    .navbar-brand p {
        font-size: 1rem;
        text-align: left;
    }

    .navbar-icon {
        right: 10px;
        position: absolute;
        transform: translateY(-50%);
    }

    .nav-icon-item {
        padding: 0 5px;
    }

    .navbar .navbar-nav>li>a:focus {
        outline: none !important;
        box-shadow: none;
    }

    .navbar-toggler-icon {
        display: block;
        position: relative;
    }

    .navbar-toggler-icon,
    .navbar-toggler-icon:before,
    .navbar-toggler-icon:after {
        width: 2rem !important;
        height: 2px !important;
        cursor: pointer;
        background: #d6b469;
        transition: transform .5s ease-in-out;
        left: 0px;
    }

    .sticky .navbar-toggler-icon,
    .sticky .navbar-toggler-icon:before,
    .sticky .navbar-toggler-icon:after {
        background-color: #111;
    }

    .navbar-toggler-icon:before,
    .navbar-toggler-icon:after {
        content: '';
        position: absolute;
        left: 0;
    }

    .navbar-toggler-icon:before {
        bottom: 6px;
    }

    .navbar-toggler-icon:after {
        top: 6px;
    }

    #navbarNav {
        height: fit-content;
        width: 300px;
        opacity: 0;
        position: fixed;
        z-index: 100;
        top: -100%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        transition: 0.5s ease;
        border-radius: 10px;
    }

    #navbarNav:after {
        font-family: 'Material Icons';
        content: "\e5cd";
        position: absolute;
        top: -80px;
        right: 0;
        color: #fff;
        font-size: 2rem
    }

    .backBlur {
        position: fixed;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        left: 0;
        top: -100%;
        opacity: 0;
        background: rgba(0, 0, 0, 0.3);
    }

    .topNavbar {
        left: 0
    }

    #menuToggle:checked~#navbarNav {
        top: 50%;
    }

    #menuToggle:checked~.backBlur {
        top: 50%;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .navbar .nav-item {
        padding: 0 20px;
        text-align: center;
    }

    .navbar .nav-item .nav-link {
        padding: 5px 5px 15px 5px;
        text-decoration: none;
        font-size: 16px;
        color: #111;
        display: block;
        transition: 0.3s;
        position: relative;
    }

    .nav-item .nav-link.active {
        color: #111 !important;
    }



    .navbar .nav-item .nav-link::before {
        position: absolute;
        opacity: 0.5;
        height: 2px;
        width: 100%;
        content: '';
        background: none;
        transition: all 0.3s;
        margin: 0 5px;
    }

    .navbar .nav-item .nav-link::after {
        margin: 0 5px;
        position: absolute;
        opacity: 0.5;
        height: 2px;
        width: 100%;
        content: '';
        background: none;
        transition: all 0.3s;
    }

    .navbar .nav-item .nav-link:before {
        left: 0px;
        top: 0px;
    }

    .navbar .nav-item .nav-link:after {
        right: 0px;
        bottom: 0px;
    }

    /* .nav-item .nav-link.active::before,
    .navbar .nav-item .nav-link:hover::before {
        width: 0%;
        transition: 0.5s ease-in-out;
    }
    .navbar .nav-item .nav-link.linkLine::before {
        content: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        background: #fff;
        width: 100%;
        height: 1px;
    } */
    #afterLoginLink {
        padding: 0;
        position: relative;
        display: block;
    }

    .navbar-toggler-icon-close {
        display: block;
        position: relative;
        position: absolute;
        right: 20px;
        top: 30px;
        cursor: pointer;
    }

    .navbar-toggler-icon-close:hover {
        transform: rotate(400deg);
    }

    .navbar-toggler-icon-close,
    .navbar-toggler-icon-close:before,
    .navbar-toggler-icon-close:after {
        width: 1.6rem;
        height: 2px;
        background: #111;
        transition: transform .5s ease-in-out;
        transform: rotate(45deg)
    }

    .navbar-toggler-icon-close:before,
    .navbar-toggler-icon-close:after {
        content: '';
        position: absolute;
        left: 0;
    }

    .navbar-toggler-icon-close:before {
        bottom: 6px;
        opacity: 0;
    }

    .navbar-toggler-icon-close:after {
        top: 0px;
        transform: rotate(90deg);
    }
}

@media(max-width:768px) {
    .navbar-brand {
        position: relative;
        height: fit-content;
        transform: scale(1.2);
    }
}


.logo2 {
    width: 100px;
    display: block;
}

.stickyLogo {
    display: block;
}

.card-title {
    font-family: var(---robotoFornt);
    font-size: x-large;
    color: var(---primeColor);
}

@media (max-width: 500px) {
    .category-text {
        font-size: 100%;
    }

    .container-fluid {
        padding: 0px;
        margin: 0px;
    }

    .navbar-brand {
        margin-left: 2rem;
    }
}

.nav-item-repeat a {
    font-size: smaller;
}

.container-fluid {
    padding-left: 50px;
}


/* ================================================ Home Section =================================== */

.homeSection {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background-color: var(---primeColor); */
    /* padding-left: 30px;
    padding-right: 30px;
    margin-top: 15px; */
}

.homeSection .carousel-inner,
.homeSection .carousel-item {
    width: 100%;
    height: 60vh;
}

#firstSlide {
    width: 100%;
    height: 100;
    background: linear-gradient(to right, rgba(46, 46, 46, 0.6), rgba(41, 41, 41, 0.6)), url("img/IMG_20211207_113759.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 115% 115%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    animation: shrink 4s infinite alternate;
}

#secondSlide {
    width: 100%;
    height: 100;
    background: url("img/IMG-20220803-WA0123.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 115% 115%;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-repeat: repeat;
    background-position: center;
    animation: shrink 4s infinite alternate;
}

#thirdSlide {
    width: 100%;
    height: 100;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/Wedding-venues1.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 115% 115%;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-position: center;
    animation: shrink 4s infinite alternate;
}

#fourthSlide {
    width: 100%;
    height: 100;
    background: linear-gradient(to right, rgba(46, 46, 46, 0.6), rgba(41, 41, 41, 0.6)), url("img/IMG_20220514_183453.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 115% 115%;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-position: center;
    animation: shrink 4s infinite alternate;
}

@keyframes shrink {
    0% {
        background-size: 115% 115%;
    }

    100% {
        background-size: 100% 100%;
    }
}

@media (max-width: 1045px) {
    #home {
        padding: 10px 0px;
        margin: 0px;
        height: 400px;
    }

    .col-md-6 .homeContent h1 {
        font-size: 30px;
        text-align: center;
        padding: 15px 5px;
        text-align: center;
        font-family: var(---headfont);
    }

    .col-md-6 .homeContent h6 {
        font-size: 15px;
        padding: 15px 5px;
        text-align: center;
        font-family: var(---parafont);
    }
}

.homeLine {
    background-color: #620f0f;
    height: 25px;
    z-index: 1;
}

.homeContent h6 {
    padding-top: 25px;
    color: #e1e1e1;
    padding-left: 25px;
    font-family: var(---parafont);
}

.homeContent h1 {
    color: #fff;
    font-family: var(---headfont);
    font-size: 90px;
    padding-top: 20px;
    padding-left: 25px;
}

.videobtn {
    display: flex;
}

.videobtn a {
    font-size: 30px;
    color: #ffffff;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
}


/* ===================================== Section 2(Our Service) ========================================== */

.secondSec {
    padding-left: 60px;
    padding-right: 60px;
}

.sectservice {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    /* background-color: #620f0f; */
}

.serviceimg {
    height: 50vh;
    padding-bottom: 20px;
    padding-top: 20px;
}

.serviceimg img {
    width: 100%;
    height: 100%;
    /* -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px; */
    transition: all 1s ease;
}

.serviceimg1 {
    height: 70vh;
    padding-bottom: 20px;
    padding-top: 20px;
}

.serviceimg1 img {
    width: 100%;
    height: 100%;
    /* -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px; */
    transition: all 1s ease;
}

.serviceimg img:hover {
    transform: scale(1.1);
}

.servicetext {
    height: auto;
}

.servicetext h1 {
    position: relative;
    font-family: var(---headfont);
    padding-top: 20px;
    color: #000;
    font-size: 30px;
}
.servicetext h2 {
    position: relative;
    font-family: var(---headfont);
    padding-top: 20px;
    color: #000;
    font-size: 30px;
}

.servicetext h1::after {
    content: '';
    position: absolute;
    /* top:20px; */
    left: 0;
    bottom: -5px;
    z-index: 1;
    width: 60%;
    background-color: goldenrod;
    height: 2px;
}

.servicetext h2::after {
    content: '';
    position: absolute;
    /* top:20px; */
    left: 0;
    bottom: -5px;
    z-index: 1;
    width: 60%;
    background-color: goldenrod;
    height: 2px;
}

.servicetext h6 {
    color: #000;
    font-size: larger;
    font-weight: bold;
    font-family: var(---parafont);
}

/* .servicetext h1 {
    font-size: 53px;
    font-family: var(---headfont);
} */

.servicetext p {
    color: #000;
    font-size: 1rem;
    padding-top: 10px;
    font-family: var(---parafont);
}

.servicetext a {
    width: 150px;
    height: 40px;
    display: flex;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    color: #000;
    display: flex;
    border-radius: 50px;
    padding: 10px 0;
    /* padding-left: 30px; */
    margin-left: 10px;

}

.servicetext .link {
    display: flex;
    padding-top: 80px;
    padding-bottom: 20px;
}

.servicetext .link a {
    text-decoration: none;
}

.servicetext .link a:hover {
    /* font-style: italic; */
    border: none;
    color: #fff;
    background: goldenrod;
}

@media (max-width: 1045px) {
    .secondSec {
        padding: 0px;
    }

    .servicetext h6 {
        font-size: 15px;
        padding: 0px;
        margin: 0px;
        font-family: var(---parafont);
    }

    .servicetext h1 {
        font-family: var(---headfont);
        font-size: 25px;
        padding: 10px 0px;
    }

    .servicetext p {
        font-family: var(---parafont);
        font-size: 15px;
        padding: 0px 5px;
    }

    .servicetext .link a {
        text-decoration: none;
        text-align: left;
        padding: 5px 10px;
    }

    .servicetext .link {
        padding: 0px 0px;
    }

    .servicetext .link h5 {
        font-size: 15px;
        font-family: var(---parafont);
    }

    .serviceimg {
        padding: 5px 3px;
        height: 45vh;
    }
}

@media (max-width: 500px) {
    .sectservice {
        padding-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
        background-color: #620f0f;
    }
}


/*  =========================== Section 3 (Service List ) ================================ */

.serviceList .col-md-3 h1 {
    padding: 15px;
    font-family: var(---headfont);
    text-align: center;
    font-size: 30px;
}

.serviceList .col-md-3 a {
    text-align: center;
    justify-content: center;
    display: flex;
    color: #111;
    text-decoration: none;
    font-family: var(---parafont);
}

.servList {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    border-left: 2px solid goldenrod;
    border-top: 1px solid #000;
    border-bottom: 2px solid goldenrod;
    border-right: 1px solid #000;
    height: 180px;
    min-height: 100%;

}

.servList h2 {
    font-size: 1rem;
    text-transform: capitalize;

}

.servList:hover {
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 3px 5px 14px #80808080;
}

.serviceList h6 {
    position: relative;
    color: #000;
    font-size: .8rem;
    text-transform: capitalize;
    text-align: center;
    font-family: var(---parafont);
}

.serviceList h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 30px;
    background-color: goldenrod;
    height: 2px;
}

.serviceList .col-md-3 p {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-family: var(---parafont);
}

.serviceIcon {
    width: 60px;
    height: 60px;
    margin: 15px 0 30px 0;

}

.serviceIcon img {
    width: 100%;
    height: 100%;

}

.homeSection .section3 {
    padding: 0px;
    background: #eee;
}

@media (max-width: 1045px) {
    .section3 {
        padding: 0px;
    }

    .serviceList {
        padding: 0px;
    }

    .serviceList .col-md-3 .servList h2 {
        font-size: 25px;
    }

    .serviceList .col-md-3 .servList h6 {
        font-size: 15px;
    }

    .serviceList .col-md-3 .servList p {
        font-size: 15px;
    }
}


/* ====================== Section 4 (Products in Demand) ================================= */

.productDemondSection {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background-color: var(---primeColor); */
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 15px;
}

.sectionFour {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    /* background-color: #620f0f; */
}

.productDemand h5 {
    font-family: var(---parafont);
    font-size: 18px;
    color: #000;
}

.productDemand h2 {
    position: relative;
    font-family: var(---headfont);
    font-size: 35px;
    color: #000;
}

.productDemand h2::after {
    content: '';
    position: absolute;
    /* top:20px; */
    margin-top: 10px;
    left: 20%;
    bottom: 0;
    z-index: 1;
    width: 60%;
    background-color: goldenrod;
    height: 2px;
}

.smallTitle {
    text-align: center;
    justify-content: center;
}

.sectionTitle {
    text-align: center;
    justify-content: center;
}

/* .productSec {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 7px 0;
    position: relative;
} */

.pdDesc {
    padding: 10px;
    position: absolute;
    top: 30%;

    width: 100%;
    height: 60%;
    color: #fff;
    font-family: "Cormorant", Sans;
    background: rgb(64 50 5 / 60%);
}

.productSec {
    position: relative;
    z-index: 100;
    cursor: pointer;
    height: 400px;
}

.productSec1 {
    position: relative;
    z-index: 100;
    cursor: pointer;
    height: 200px;
}

.productSec1 img {

    width: 100%;
    height: 100%;
}

.productSec img {
    width: 100%;
    height: 100%;

    transition: all 1s ease;
}

.productSec img:hover {
    transform: scale(1.05);
}

.productDemand {
    padding: 30px;
    /* height: 510px; */
}

@media (max-width: 500px) {
    .productDemondSection {
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: var(---primeColor);
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 15px;
    }

    .sectionFour {
        padding-top: 20px;
        padding-left: 5px;
        padding-right: 5px;
        /* background-color: #620f0f; */
    }

    .pdDesc {
        padding: 10px;
        position: absolute;
        right: 0;
        top: 30px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80%;
        color: #fff;
        font-family: "Cormorant", Sans;
        background: rgba(194, 163, 63, 0.6);
    }

    .productSec {
        width: 100%;
        height: 100%;
        display: flex;
        padding: 5px 0px;
        position: relative;
    }

    .productDemand .smallTitle h5 {
        font-size: 15px;
        padding: 0px;
        font-family: var(---parafont);
    }

    .productDemand .sectionTitle h1 {
        font-size: 25px;
        padding: 10px 0px;
        font-family: var(---headfont);
    }

    .homeSection .productDemand .col-md-6 .productSec {
        height: 90%;
        width: 100%;
    }

    .productDemand {
        height: auto;
    }

}


/* =============================== See Gallery ============================== */

.gallContent {
    padding-bottom: 10px;
    padding-top: 30px;
}

.gallContent a {
    color: #ffffff;
}

.gallContent p {
    color: #ffffff;
    font-family: var(---parafont);
}

.gall {
    padding: 10px;
    position: relative;
    border: 2px solid rgb(131, 114, 18);
    width: 70%;
    height: 70vh;
    /* padding: 10px; */
    /* background:url('img/stage/hall10.jpg'); */
}

.gall1 {
    position: relative;
    border: 2px solid rgb(131, 114, 18);
    width: 100%;
    height: 100%;
    /* padding: 10px; */
    /* background:url('img/stage/hall10.jpg'); */
}

.ownerImg {
    position: absolute;
    top: 10%;
    left: -30%;
    right: 0;
    bottom: 0;
    /* top:20%;
    right:50%; */
    width: 250px;
    height: 50vh;
    border: 1px solid #3b0505;
    /* background:#fff; */
    z-index: index 10px;
    /* padding-right: 0px;
    padding-bottom: 10px; */
}

.ownerImg img {
    width: 100%;
    height: 100%;
}

.galleryLink .gallContent h1 {
    font-family: "Cormorant Garamond", serif;
    padding-bottom: 20px;
    font-size: 55px;
}

/* .gallimg img {
    width: 100%;
    height: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    transition: all 1s ease;
} */

/* .gallimg img:hover {
    transform: scale(1.05);
} */

@media (max-width: 500px) {
    .gallContent {
        padding-bottom: 5px;
        padding-top: 0px;
    }

    .gallContent h6 {
        font-size: 15px;
        text-align: center;
        font-family: var(---parafont);
    }

    .galleryLink .gallContent h1 {
        font-family: var(---headfont);
        padding-bottom: 10px;
        font-size: 35px;
        text-align: center;
    }

    .galleryLink .gallContent p {
        font-size: 15px;
        font-family: var(---parafont);
    }

    .gall {
        padding: 10px;
        position: relative;
        border: 2px solid rgb(131, 114, 18);
        width: 100%;
        height: 50vh;
        /* padding: 10px; */
        /* background:url('img/stage/hall10.jpg'); */
    }

    .gall1 {
        position: relative;
        border: 2px solid rgb(131, 114, 18);
        width: 100%;
        height: 100%;
        /* padding: 10px; */
        /* background:url('img/stage/hall10.jpg'); */
    }

    .ownerImg {
        display: none;
        position: absolute;
        top: 10%;
        /* left:-30%; */
        right: 0;
        bottom: 0;
        /* top:20%;
        right:50%; */
        width: 250px;
        height: 50vh;
        border: 1px solid #3b0505;
        /* background:#fff; */
        z-index: index 10px;
        /* padding-right: 0px;
        padding-bottom: 10px; */
    }

    .ownerImg img {
        width: 100%;
        height: 100%;
    }

    /* .gallimg {
        width: 101%;
        padding: 10px 2px;
    } */
}


/* ==================================== Our Hall ========================= */

.hallList {
    overflow: hidden;
}

.ourHall {
    margin: 0 140px;
}

@media (max-width: 500px) {
    .ourHall {
        margin: 0 10px;
    }
}


/* ================================== Hall List ============================== */

.swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #eee;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.hallList .hallHead h1 {
    position: relative;
    font-family: var(---headfont);
    /* font-size: 50px; */
    text-align: center;
    padding-top: 40px;
}

.hallList .hallHead h1::after {
    content: '';
    position: absolute;
    left: 45%;
    bottom: 0;
    z-index: 1;
    width: 10%;
    background-color: goldenrod;
    height: 2px;
}

.hallList .hallHead h2 {
    position: relative;
    font-family: var(---headfont);
    /* font-size: 50px; */
    text-align: center;
    padding-top: 40px;
}

.hallList .hallHead h2::after {
    content: '';
    position: absolute;
    left: 45%;
    bottom: 0;
    z-index: 1;
    width: 10%;
    background-color: goldenrod;
    height: 2px;
}

.hallCards {
    padding: 0 10px;
}

.hallcard {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hallcard .card {
    -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
}

.hallcard .hallImg {
    width: 25rem;
    height: 15rem;
}

.hallcard .hallImg img {
    width: 100%;
    height: 100%;
}

.hallcard a {
    color: #111;
    font-family: var(---parafont);
}

.hallcard a:hover {
    color: #620f0f;
    font-family: var(---parafont);
}

@media (max-width: 500px) {
    .hallCards {
        padding: 0;
    }
}


/* ================================== Hall Details ==================================== */

.viewDetailCard {
    background-color: azure;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.cardImgView {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.cardTitleView .titleText {
    color: #620f0f;
    font-family: var(----fontRelawy);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 2rem;
    text-align: left;
}

.brandText {
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    color: #3d0505;
    line-height: 10px;
}

.cardDiscriptionView {
    margin: 20px 25px 20px 0;
    text-align: justify;
    font-size: 1rem;
}

.cardDiscriptionView .paraText {
    font-size: 1rem;
    text-align: justify;
    font-family: var(---parafont);
    font-weight: 500;
}

.viewCardBottom {
    display: flex;
    text-align: center;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

.viewProductPrice h3 {
    color: #3b0505;
    font-family: var(---headfont);
    font-weight: normal;
    font-size: 1.6rem;
    font-weight: 500;
}

.viewProductPrice h3 i {
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    padding-left: 10px;
}

.viewProductPrice h3 .priceInr {
    font-weight: 600;
    font-size: 1.8rem;
}

.productReview {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.modal .productQuantity {
    margin-left: 50px;
}

.modal .productQuantity input {
    background: none;
    border-radius: 5px;
    width: 35px;
    border: 2px #3d0505;
    text-align: center;
    height: 35px;
    color: azure;
    outline: none;
    margin: 0 5px;
    color: #620f0f;
}

.modal .quantityMinus,
.modal .quantityPlus {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    background-color: #3d0505;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: azure;
    padding-bottom: 4px;
}

.productReview h4 {
    font-size: 20px;
    font-family: var(---parafont);
}

.cardViewBtton {
    width: 100%;
    text-align: left;
}

.cardViewBtton .btn {
    color: #fff;
    background: #3d0505;
    width: 120px;
    font-weight: 500;
    font-family: var(---fontMonstret);
    position: relative;
    transition: 0.5s ease-in-out;
}

.fa-cart-plus {
    font-size: 1.2rem;
    margin-left: 5px;
    transform: translateX(20px) scale(0.7);
    transition: 0.5s ease-in-out;
    position: absolute;
    opacity: 0;
}

.cardViewBtton .btn:hover .fa-cart-plus {
    transform: translateX(0px) scale(1);
    transition: 0.5s ease-in-out;
    opacity: 1;
}

.modal .carousel-inner,
.modal .carousel-item {
    width: 100%;
    height: 500px;
}

.modal .carousel-item {
    padding: 30px;
}

.modal .carousel-item img {
    width: 100%;
    height: 100%;
}

.modal .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    opacity: 1;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    border: 2px solid #3b0505;
}

.modal .carousel-indicators .active {
    width: 60px;
    height: 60px;
    transition: 0.4s ease all;
    transform: translateY(-5px) scale(1.2);
}

.modal .carousel-control-next-icon,
.modal .carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-color: #3d0505;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.modal .carousel-indicators {
    border-radius: 5px;
}

.carousel-indicators button {
    background-size: 100% 100%;
    background-position: center center;
    border-radius: 5px;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.viewCardBody {
    background-color: azure;
}

.cardViewBtton .productQuantity {
    display: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.viewProductUnit {
    font-size: 0.9rem;
    color: orange;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(----fontRelawy);
}

@media (max-width: 770px) {
    .productReview {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #cardDetails {
        position: relative;
    }

    .btn-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .modal .carousel-inner,
    .modal .carousel-item {
        width: 100%;
        height: 300px;
    }

    .modal .carousel-indicators [data-bs-target] {
        width: 40px;
        height: 40px;
        opacity: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 5px;
        border: 2px solid #3b0505;
    }

    .modal .carousel-indicators .active {
        width: 40px;
        height: 40px;
        transition: 0.4s ease all;
        transform: translateY(-5px) scale(1.2);
    }

    .modal .carousel-item {
        padding: 20px;
    }

    .modal .carousel-item img {
        width: 100%;
        height: 100%;
    }

    .cardDiscriptionView {
        margin: 0px 0px 0px 0;
        text-align: justify;
        font-size: 0.9rem;
        font-weight: 400;
        font-family: var(---fontMonstret);
    }

    .cardTitleView .titleText {
        color: #3d0505;
        font-family: var(----fontRelawy);
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.4rem;
        text-align: center;
    }

    .brandText {
        text-align: center;
        font-size: 1.2rem;
        font-weight: 500;
        color: orange;
        line-height: 10px;
    }

    .productReview ul li {
        font-size: 1.2rem;
        margin-bottom: 10px;
        margin: 2px;
    }

    .viewCardBottom {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: space-around;
        position: relative;
        padding: 20px 0;
    }

    .viewProductPrice h3 {
        color: var(---primaryColor);
        font-family: var(---fontMonstret);
        font-weight: normal;
        font-size: 1.6rem;
        font-weight: 500;
    }

    .viewProductPrice h3 i {
        font-size: 1.5rem;
        font-weight: normal;
        font-style: normal;
        padding-left: 10px;
    }

    .viewProductPrice h3 .priceInr {
        font-weight: 600;
        font-size: 1.6rem;
    }

    .modal .viewCardBottom .productQuantity {
        margin-left: 0;
        display: flex;
    }

    .cardViewBtton .btn {
        color: #fff;
        background: #3d0505;
        width: 100%;
        font-weight: 500;
        font-family: var(---fontMonstret);
        position: relative;
        font-size: 0.9rem;
        transition: 0.5s ease-in-out;
    }

    .cardViewBtton {
        width: 100%;
        display: flex;
    }

    .cardViewBtton .productQuantity {
        display: flex;
        cursor: pointer;
        justify-content: center;
        align-items: center;
    }

    .modal .quantityMinus,
    .modal .quantityPlus {
        width: 25px;
        height: 25px;
    }

    .modal .productQuantity input {
        width: 25px;
        height: 25px;
    }
}


/* ================================== Our Clients ================================= */

.ourClient {
    padding-left: 60px;
    padding-right: 60px;
}

.clientSec {
    width: 100%;
    height: 500px;
    border-style: solid;
    border-width: 20px;
    border-color: #ffffff;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/sc.jpeg");
    background-size: 100% 100%;
}

.clientText {
    padding-top: 100px;
}

.clientSec h1 {
    color: #ffff;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: var(---headfont);
    font-size: 60px;
}

.clientSec h6 {
    color: grey;
    text-align: center;
    justify-content: center;
    font-size: 16px;
    font-family: var(---parafont);
}

@media (max-width: 500px) {
    .ourClient {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* .clientText {
        padding-top: 20px;
    } */
    .clientSec {
        width: 100%;
        height: 300px;
        border-style: solid;
        border-width: 10px;
        border-color: #ffffff;
        background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/1.jpg");
    }

    .clientSec h1 {
        color: #ffff;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-family: var(---headfont);
        font-size: 25px;
        padding: 10px 40px;
    }
}


/* =================================== Get Together ===================================  */

.togetherSec {
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 500px;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/s2.jpeg");
    background-size: 100% 100%;
}

.togetherSec1 {
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 500px;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/Wedding-venues1.jpg");
    background-size: 100% 100%;
}

.togetherSec h1 {
    color: #ffff;
    padding-top: 200px;
    font-family: var(---aboreto);
    font-size: 60px;
    padding-bottom: 20px;
}

.togetherSec1 h1 {
    color: #ffff;
    padding-top: 200px;
    font-family: var(---aboreto);
    font-size: 60px;
    padding-bottom: 20px;
}

.togetherSec button {
    background-color: goldenrod;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 10%;
}

.togetherSec button a {
    text-decoration: none;
    color: #fff;
    font-family: var(---parafont);
}

@media (max-width: 500px) {
    .togetherSec h1 {
        color: #ffff;
        padding-top: 30px;
        font-family: var(---aboreto);
        font-size: 30px;
        padding-bottom: 20px;
    }

    .togetherSec {
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 350px;
        background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/Wedding-venues1.jpg");
    }
}


/* ================================= About.html ============================================== 
=============================================================================================================*/

.aboutHead {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 200px;
}

.aboutHead h1 {
    font-family: var(---aboreto);
    font-size: 60px;
    color: #ffffff;
}

.aboutHome {
    padding: 0px;
}

@media (max-width: 500px) {
    .aboutHead {
        text-align: center;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .aboutHead h1 {
        font-family: var(---aboreto);
        font-size: 40px;
        color: #ffffff;
    }

    .aboutHome {
        height: 50vh;
    }
}


/* ====================================== Section 2 (Our Story) ============================= */

.ownerSection {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background-color: var(---primeColor); */
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
}

/* .sectStory {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #620f0f;
} */
.storyContent {
    padding: 20px 50px;
}

.storyContent h6 {
    font-family: var(---headfont);

    color: #000;
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 15px;
}

.storyContent h1 {
    position: relative;
    color: #000;
    font-family: var(---headfont);
    padding-bottom: 20px;
    font-size: 30px;
}

.storyContent h1::after {
    content: '';
    position: absolute;
    /* top:20px; */
    bottom: 30px;
    z-index: 1;
    width: 50%;
    background-color: goldenrod;
    height: 2px;
}

.storyContent button {
    background-color: #111;
    color: #e1e1e1;
}

.storyContent button:hover {
    background-color: #ffff;
    color: rgb(167, 12, 12);
}

.storyContP {
    color: #000;
    padding-bottom: 30px;
    padding-top: 20px;
    /* padding-left: 25px;
    padding-right: 70px; */
}

.dlinfo {

    width: 250px;
    height: 45vh;
    position: absolute;
    bottom: 25px;
    right: -30%;
    margin-top: 50px;
    /* background:url('img/dish/CHP02532.jpg'); */
}

.dlinfo img {

    width: 100%;
    height: 100%;
}

.dlinfo h2 {
    color: #000;
    font-size: 20px;
    font-family: var(---headfont);
}

.dlinfo p {
    color: #000;
}

@media (max-width: 500px) {
    .abtSection {
        width: 100%;
        height: 100%;
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 5px;
    }

    .sectStory {
        padding-top: 5px;
        padding-left: 10px;
        padding-right: 10px;
        height: auto;
        background-color: #620f0f;
    }

    .storyContent {
        padding: 10px 10px;
    }

    .storyContP {
        color: #000;
        padding-bottom: 5px;
        padding-top: 5px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .dlinfo {
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 248px;
        height: 45vh;
        position: absolute;
        bottom: 0;
        right: 0;
        margin-top: 50px;
        background: url('img/stage/hall4.webp');
    }

    .storyLink .storyContent h1 {
        position: relative;
        font-family: var(---headfont);
        padding-bottom: 0px;
        font-size: 40px;
    }

    .storyContent h1::after {
        content: '';
        position: absolute;
        /* top:20px; */
        bottom: 0;
        right: 0;
        z-index: 1;
        width: 50%;
        background-color: goldenrod;
        height: 2px;
    }

    .ownerSection {
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: var(---primeColor);

        padding: 10px;
    }

}


/* ========================================== Our Team =============================================== */

.teamText {
    padding-left: 40px;
    padding-right: 40px;
}

.teamText .col-md-6 p {
    font-size: 22px;
    padding-top: 50px;
    font-family: var(---parafont);
}

.review {
    padding: 30px 0;
    background-color: rgb(98 15 15);
    text-align: center;
}

.custreview {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.border {
    width: 160px;
    height: 5px;
    background: rgb(240, 216, 8);
    margin: 26px auto;
}

.custrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.custrow .col {
    flex: 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.testimonal {
    background-color: #620f0f;
    padding: 30px;
}

.testimonal p {
    color: #e1e1e1;
    font-family: var(---parafont);
}

.testimonal img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.name {
    font-size: 20px;
    margin: 20px 0;
    color: #fff;
}

.ourTeam {
    padding-top: 100px;
    padding-left: 50px;
    padding-right: 50px;
}

.teamText .row {
    padding-left: 35px;
    padding-right: 35px;
}

.teamText .col-md-6 h1 {
    font-family: var(---headfont);
    font-size: 54px;
}

.teamText .col-md-6 h6 {
    color: #a3a1a1;
    padding-bottom: 10px;
    font-size: var(---headfont);
}

.teamText .col-md-3 a:hover {
    font-style: italic;
}

.teamPhoto {
    padding-top: 30px;
}

.teamText {
    padding-left: 20px;
}

.latest button {
    background-color: #3d0505;
    color: #ffff;
    padding: 10px;
}

.latest button a {
    text-decoration: none;
    color: #fff;
    font-family: var(---parafont);
}

.latest {
    text-align: center;
    align-items: center;
    padding-top: 30px;
}

@media (max-width: 500px) {
    .teamText .col-md-6 p {
        font-size: 15px;
        padding-top: 15px;
        font-family: var(---parafont);
    }

    .teamText .col-md-6 h1 {
        font-family: var(---headfont);
        font-size: 30px;
    }

    .teamText .col-md-6 h6 {
        color: #a3a1a1;
        padding-bottom: 0px;
        font-family: var(---parafont);
    }

    .ourTeam {
        padding-top: 20px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .review {
        padding: 10px 0;
        background-color: rgb(98 15 15);
        text-align: center;
    }
}


/* ======================================= Some Cilents ======================================= */

.ourClients {
    background-color: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
}

.clietText h6 {
    text-align: center;
    color: #111;
    padding-top: 50px;
    font-size: 20px;
    font-family: var(---parafont);
}

.clietText h1 {
    position: relative;
    text-align: center;
    font-family: var(---headfont);
    padding: 20px 0;
}
.clietText h2 {
    position: relative;
    text-align: center;
    font-family: var(---headfont);
    padding: 20px 0;
}

.clietText h1::after {
    content: '';
    position: absolute;
    /* top:20px; */
    left: 40%;
    bottom: 15px;
    z-index: 1;
    width: 20%;
    background-color: goldenrod;
    height: 2px;
}
.clietText h2::after {
    content: '';
    position: absolute;
    /* top:20px; */
    left: 40%;
    bottom: 15px;
    z-index: 1;
    width: 20%;
    background-color: goldenrod;
    height: 2px;
}

.brandLogo {
    padding-top: 40px;
    padding-bottom: 45px;
    padding-left: 40px;
    padding-right: 40px;
}

.client-logo {
    width: 50%;
    height: auto;
}

.client-logo img {
    width: 100%;
    height: 100%;
    transition: 0.5s ease-in-out;
}

.client-logo img:hover {
    transform: scale(1.1);
    overflow: hidden;
    -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
}

@media (max-width: 500px) {
    .client-logo {
        width: 16px;
        height: auto;
    }

    .brandLogo {
        padding: 10px;
    }
}

.photoInnerA {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
    width: 100%;
    height: 50vh;
    margin-bottom: 10px;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/IMG_20211023_124433.jpg");
    background-size: 100% 100%;
}

.photoInnerB {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
    width: 100%;
    height: 50vh;
    margin-bottom: 10px;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/BP6A0034 (1).JPG");
    background-size: 100% 100%;
}

.clientPhoto {
    padding-left: 30px;
    padding-right: 30px;
}

.clientPhoto .col-md-6 h6 {
    width: 100px;
    height: 30px;
    padding: 20px;
    border: 1px solid goldenrod;
    border-radius: 50px;
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding-top: 20px;
    padding-bottom: 10px; */
    color: #ffff;
    font-family: var(---parafont);
}

.clientPhoto .col-md-6 h4 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
    color: goldenrod;
    font-family: var(---aboreto);
    font-size: 40px;
}

@media (max-width: 500px) {
    .clientPhoto .col-md-6 {
        margin-bottom: 10px;
        align-items: center;
        justify-content: center;
    }

    .clientPhoto .col-md-6 h6 {
        text-align: center;
        /* padding-top: 20px;
        padding-bottom: 10px; */
        color: #ffff;
        font-size: 12px;
        font-family: var(---parafont);
    }

    .clientPhoto .col-md-6 h4 {
        text-align: center;
        align-items: center;
        padding-top: 0px;
        padding-bottom: 10px;
        color: #ffff;
        font-family: var(---headfont);
        font-size: 18px;
    }

    .clientPhoto {
        padding: 0;
    }
}


/* ============================================== what they say ================================= */

.whatTheySay {
    background-color: #620f0f;
    text-align: center;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.whatTheySay h6 {
    color: #ffff;
    padding-top: 30px;
    font-family: var(---parafont);
}

.whatTheySay h1 {
    color: #ffff;
    padding: 40px;
    font-family: var(---headfont);
}

.whatTheySay p {
    color: orange;
    font-family: var(---parafont);
}

.whatTheySay button {
    color: #ffff;
    background-color: #111;
    padding: 10px;
}

.whatTheyBtn {
    padding-bottom: 20px;
}


/* ========================================= LICES PAGE ========================================== 
==================================================================================================== */


/* ========================================== Our Service =============================================== */

.serviceSection {
    /* background-color: #3d0505; */
    padding-top: 30px;
}

.service-inner {
    padding: 20px;
    background-color: #ffff;
    height: auto;
}

.serviceTitle h6 {
    color: #a3a1a1;
    font-size: 11px;
    padding-left: 80px;
    font-family: var(---parafont);
}

.bigTite {
    padding-top: 30px;
    /* font-family: "Cormorant Garamond", serif;
    text-align: center; */
}

.bigTite h1 {
    padding-top: 30px;
    font-family: var(---headfont);
    text-align: center;
}

.bigTite p {
    font-size: 1rem;
    /* font-family: "Cormorant Garamond", serif; */
    text-align: center;
}

.side-logo img {
    width: 100%;
    height: 100%;
}

.side-logo {
    width: 100%;
    height: 300px;
}

@media(max-width:500px) {
    .bigTite {
        padding-top: 0;
        /* font-family: Cormorant Garamond", serif;
        text-align: center; */
    }

    .serviceSection {
        /* background-color: #3d0505; */
        padding-top: 10px;
    }

    .service-inner {
        padding: 10px;
        background-color: #ffff;
        height: auto;
    }

    .serviceTitle h6 {
        color: #a3a1a1;
        font-size: 11px;
        padding-left: 80px;
        font-family: var(---parafont);
    }


    .bigTite h1 {
        padding-top: 0;
        font-family: var(---headfont);
        /* text-align: left; */
    }

    .bigTite p {
        font-size: 1rem;
        /* font-family: "Cormorant Garamond", serif; */
        text-align: center;
    }

    .side-logo img {
        width: 100%;
        height: 100%;
    }

    .side-logo {
        width: 100%;
        height: 300px;
    }

    .side-logo {
        width: 100%;
        height: auto;
    }
}

/* ======================================= service pointer =========================================== */

.servicePointers {
    background-color: #3d0505;
}

.upperPoint {
    background-color: #ffff;
    border-bottom: 20px solid #eee;
    border-top: 20px solid #eee;
    border-left: 20px solid #eee;
    padding: 40px;
}

.lowerPoint {
    background-color: #ffff;
    border-bottom: 20px solid #eee;
    border-right: 20px solid #eee;
    padding: 40px;
}

.servicePoint-inner {
    z-index: 1;
    padding-top: 0px;
    margin-left: 30px;
    margin-right: 30px;
    transform: translateY(-60px);
}

.upperPoint h2 {
    font-family: var(---headfont);
    text-align: center;
}

.lowerPoint h2 {
    font-family: var(---headfont);
    text-align: center;
}

.upperPoint h6 {
    color: #a3a1a1;
    font-size: 12px;
    text-align: center;
    font-family: var(---parafont);
}

.lowerPoint h6 {
    color: #a3a1a1;
    font-size: 12px;
    text-align: center;
    font-family: var(---parafont);
}

.upperPoint a {
    color: #111;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 14px;
}

.lowerPoint a {
    color: #111;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 14px;
}

.upperPoint p {
    text-align: center;
    padding-left: 80px;
    padding-right: 80px;
    font-family: var(---parafont);
}

.lowerPoint p {
    text-align: center;
    padding-left: 80px;
    padding-right: 80px;
    font-family: var(---parafont);
}

@media (max-width: 500px) {
    .upperPoint {
        background-color: #ffff;
        border-bottom: 20px solid #eee;
        border-top: 20px solid #eee;
        border-left: 20px solid #eee;
        padding: 10px;
    }

    .lowerPoint {
        background-color: #ffff;
        border-bottom: 20px solid #eee;
        border-right: 20px solid #eee;
        padding: 10px;
    }

    .upperPoint p {
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        font-family: var(---parafont);
    }

    .lowerPoint p {
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        font-family: var(---parafont);
    }
}


/* ========================================= Approach ===================================== */

.approachImg {

    width: 100%;
    height: 300px;
}

.approachImg img {
    width: 100%;
    height: 100%;
}

.approachSec {
    padding-top: 30px;
}

/* .approachSec .container {
    background-color: #3d0505;
} */

.approachContent {
    padding: 20px;
}

.approachContent h1 {
    color: #000;
    font-family: var(---headfont);
    padding-top: 10px;
    padding-bottom: 20px;
    word-wrap: break-word;
}

.approachContent p {
    font-size: 1rem;
    color: #000;
    font-family: var(---parafont);
}

.approachContent h6 {
    color: #ffa500;
    padding-top: 10px;
    font-family: var(---parafont);
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 500px) {
    .approachContent {
        padding: 10px;
    }

    .approachImg {
        width: 100%;
        height: 60vh;
    }

    /* .approachSec .container {
        background-color: #3d0505;
    } */
}


/* ================================ Event Planning ===================================== */

.eventPlanning {
    padding-top: 20px;
}

.eventPlanning .container {
    background-color: #ffffff;
    padding: 30px;
}

.planningImg {
    justify-content: center;
    align-items: center;
}

.planningImg {
    width: 100%;
    height: 60vh;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/birde.jpg");
    background-size: 100% 100%;
}

.planningImg h6 {
    color: #ffffff;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 30px;
    font-family: var(---parafont);
}

.planningImg h3 {
    color: #ffffff;
    text-align: center;
    font-family: var(---headfont);
}

.planningContent h6 {
    padding-top: 10px;
    font-size: 15px;
    color: #a3a1a1;
    font-family: var(---parafont);
}

.planningContent h1 {
    position: relative;
    font-family: var(---headfont);
    padding-bottom: 20px;
    padding-top: 10px;
}
.planningContent h2 {
    position: relative;
    font-family: var(---headfont);
    padding-bottom: 20px;
    padding-top: 10px;
}

.planningContent h1::after {
    content: '';
    position: absolute;
    /* top:20px; */
    bottom: 30px;
    z-index: 1;
    width: 50%;
    background-color: goldenrod;
    height: 2px;
}
.planningContent h2::after {
    content: '';
    position: absolute;
    /* top:20px; */
    bottom: 30px;
    z-index: 1;
    width: 50%;
    background-color: goldenrod;
    height: 2px;
}

@media(max-width:500px) {
    .planningContent h1::after {
        content: '';
        position: absolute;
        /* top:20px; */
        bottom: 0;
        right: 0;
        z-index: 1;
        width: 50%;
        background-color: goldenrod;
        height: 2px;
    }
}

/* ================================ Event Planning 2 ===================================== */

.nextPlanning .container {
    background-color: #3d0505;
    padding: 25px;
}

.nextplanningImg {
    width: 100%;
    height: 60vh;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/saya2.jpg");
    background-size: 100% 100%;
}

.nextplanningImg h6 {
    color: #a3a1a1;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 30px;
    font-family: var(---parafont);
}

.nextplanningImg h3 {
    color: #ffffff;
    font-family: var(---headfont);
    text-align: center;
}

.nextplanningContent h6 {
    color: #a3a1a1;
    padding-top: 10px;
    font-size: 15px;
    font-family: var(---parafont);
}

.nextplanningContent h1 {
    color: #ffa500;
    font-family: var(---headfont);
    padding-bottom: 20px;
    padding-top: 10px;
}

.nextplanningContent p {
    color: #ffffff;
    font-family: var(---parafont);
}


/*  ============================ Site Selection ============================================ */

.siteSelection {
    padding-top: 25px;
}

.siteSelection .container {
    background-color: #fff;
    padding: 25px;
}

.siteImg {
    width: 100%;
    height: 60vh;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/tulip2.jpeg");
    background-size: 100% 100%;
}

.siteImg h6 {
    padding-top: 80px;
    padding-bottom: 30px;
    color: #fff;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: var(---parafont);
}

.siteImg h3 {
    color: #fff;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: var(---headfont);
}

.siteContent h6 {
    color: #a3a1a1;
    padding-top: 10px;
    font-size: 15px;
    font-family: var(---parafont);
}

.siteContent h1 {
    padding-bottom: 20px;
    padding-top: 10px;
    font-family: var(---headfont);
}


/*  ============================ EVENT TYPES ============================================ */

.eventTypes {
    /* border:1px solid goldenrod; */
    padding-top: 20px;
    /* background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/hall5.jpg");
    background-size: 100% 100%; */
    height: auto;
}

.type-title {
    position: relative;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-family: var(---headfont);
    text-align: center;
}

/* .type-title::after {
    content: '';
    position: absolute;
    top:20px;
    bottom: 0;
    z-index: 1;
    width: 70%;
    background-color:goldenrod;
    height: 2px;
} */
.serves {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.eventList {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid goldenrod;
    height: auto;
}

.eventTypes .eventList li {
    width: 80%;
    /* text-align: center; */
    padding-top: 10px;
    color: goldenrod;
    line-height: 30px;
    list-style-type: none;
}

.servIcon {
    width: 50px;
    height: 50px;
}

.servIcon img {
    width: 100%;
    height: 100%;
}

.eventTypes .eventList span {
    /* margin-top:20px; */
    padding-top: 10px;
    color: goldenrod;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;


}

.eventTypes .col-md-6 li:hover {
    transform: scale(1.05);
}

@media(min-width:500px) and (max-width:700px) {
    .eventTypes {
        padding-top: 20px;
        background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/hall5.jpg");
        background-size: 100% 100%;
        height: auto;
    }

}


/*  ======================================= Get Together =========================================== */

.togetherbtn button {
    color: #fff;
    background-color: #111;
    padding: 10px;
}

.togetherbtn {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

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

.socialIcons ul {
    display: flex;
    margin: 10px;
    padding: 0px;
    list-style: none;
}

.socialIcons ul li {
    font-size: 1.4rem;
}

.together h6 {
    color: #a3a1a1;
    font-family: var(---parafont);
}


/* ====================================== Gallery Page ============================================= 
 ============================================================================================= */

.galleryHome {
    /* background-color: #3d0505; */
    margin: 20px 120px;
    padding-top: 20px;
}

.galleryHead h6 {
    color: #a3a1a1;
    padding-top: 80px;
    padding-bottom: 30px;
    font-family: var(---parafont);
}

.galleryHead p {
    color: #000;
    /* padding-top: 80px;
    padding-bottom: 30px; */
    font-family: var(---parafont);
}

.galleryHead h2 {
    font-family: var(---headfont);
    padding-left: 20px;
    font-size: 50px;
}

.galleryHead .col-md-6 a {
    text-decoration: none;
    color: #111;
}

.galleryHead .col-md-6 button {
    background-color: #3d0505;
    color: #fff;
    padding: 10px;
}

.ApproachBtn {
    padding-bottom: 20px;
}

.galleryHead .col-md-6 a:hover {
    font-style: italic;
}

.galleryHome-inner {
    /* background-color: #ffff; */
    margin: 20px 70px;
    padding-left: 20px;
    padding-right: 20px;
    height: 50vh;
}

@media (max-width: 500px) {
    .galleryHome {
        /* background-color: #3d0505; */
        margin: 5px 10px;
        padding-top: 20px;
    }

    .galleryHome-inner {
        /* background-color: #ffff; */
        margin: 10px 30px;
        padding-left: 20px;
        padding-right: 20px;
        height: 80vh;
    }
}

@media (max-width: 1045px) {
    .galleryHome {
        /* background-color: #3d0505; */
        margin: 5px 10px;
        padding-top: 20px;
    }

    .galleryHome-inner {
        /* background-color: #ffff; */
        margin: 10px 30px;
        padding-left: 20px;
        padding-right: 20px;
        height: 80vh;
    }

    .evetPhotos {
        padding: 0 20px;
    }
}


/* ========================================= Photos ============================================ */

.evetPhotos {
    padding: 0 20px;
    transform: translateY(-60px);
}

.eventImg {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50vh;
    -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
}

.photoCont {
    position: absolute;
}

.eventImg-inner {
    width: 100%;
    height: 100%;
    background-color: #111;
}

.eventImg-inner img {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.eventSmallHead {
    color: #ffffff;
    font-size: 8px !important;
}

.eventBigHead {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
}

.eventPhotos .row {
    padding: 20px 40px !important;
}

.eventHeader {
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 500px) {
    .evetPhotos {
        padding: 0 20px;
        transform: translateY(-130px);
    }

    .photoCont {
        position: absolute;
    }

    .photoCont h6 {
        font-size: 16px;
        font-family: var(---parafont);
    }

    .photoCont h3 {
        font-size: 20px;
        font-family: var(---headfont);
    }
}


/* ===================================== Swiper ===================================  */

.workcard {
    overflow: hidden;
    width: 100%;
    height: 250px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
}

.workcard img {
    width: 100%;
    height: 100%;
}

.smallGall {
    margin-top: -30px;
}


/* =========================================== Gallery View ============================ */

.img-wrapper {
    position: relative;
    margin: 10px 0;
}

.img-wrapper img {
    width: 100%;
}

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.img-overlay i {
    color: #fff;
    font-size: 3em;
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#overlay img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;

    @media screen and (min-width: 768px) {
        width: 60%;
    }

    @media screen and (min-width: 1200px) {
        width: 50%;
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#nextButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #nextButton {
        color: #fff;
        font-size: 3em;
        transition: opacity 0.8s;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#prevButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #prevButton {
        color: #fff;
        font-size: 3em;
        transition: opacity 0.8s;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

#exitButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #exitButton {
        color: #fff;
        font-size: em;
        transition: opacity 0.8s;
        position: absolute;
        top: 15px;
        right: 15px;
    }
}


/* ================================= some of the clients (Gallery bottom) ===============================  */

.galleryBottom-inner {
    background-color: #ffff;
    margin: 20px 70px 0px 70px;
    padding-left: 20px;
    padding-right: 20px;
    height: 80vh;
}

.galleryFoot h6 {
    color: #a3a1a1;
    padding-top: 80px;
    padding-bottom: 30px;
    text-align: center;
    align-items: center;
    font-family: var(---parafont);
}

.galleryFoot h1 {
    font-family: var(---headfont);
    padding-left: 20px;
    font-size: 50px;
    text-align: center;
}

.galleryFoot a {
    text-decoration: none;
    color: #111;
}

.galleryFoot button {
    background-color: #3d0505;
    color: #fff;
    padding: 10px;
}

.footConnectBtn {
    text-align: center;
    align-items: center;
}


/* =================================== Socail Media Page ======================================== 
================================================================================================== */


/* Social Media Home Page */

.socialHomePage {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 60vh;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/socialBg.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.social-inner h6 {
    color: #e1e1e1;
    font-family: var(---parafont);
}

.social-inner h1 {
    color: #ffffff;
    font-family: var(---headfont);
    text-align: center;
    font-size: 80px;
    padding-bottom: 20px;
}

.social-BigLogo img {
    height: 100%;
    width: 100%;
}

@media (max-width: 500px) {
    .social-inner h6 {
        color: #e1e1e1;
        text-align: center;
    }

    .social-inner h1 {
        color: #ffffff;
        font-family: var(---headfont);
        text-align: center;
        font-size: 40px;
        padding-bottom: 10px;
    }
}


/* ================================ social Strategy ===================================   */

.socialStrategy h1 {
    text-align: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 10px;
    font-family: var(---headfont);
}

.socialStrategy h5 {
    text-align: center;
    align-items: center;
    padding-bottom: 20px;
    color: #a3a1a1;
    font-family: var(---parafont);
}

.socialLogo-inner img {
    width: 100%;
    height: 100%;
}

.social-BigLogo {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.socialLogo-inner {
    width: 30%;
    height: 400px;
}

.logo-below p {
    padding-top: 40px;
    font-size: 15px;
    text-align: center;
    font-family: var(---parafont);
}

.social-BigLogo {
    position: relative;
}

@media (max-width: 500px) {
    .socialLogo-inner {
        width: 50%;
        height: 200px;
    }
}


/* ================================ Youtube  ============================= */

.youtubeHead h2 {
    font-family: var(---headfont);
    text-align: center;
    margin-top: 20px;
}


/* .social-BigLogo::after {
    content: '';
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    position: absolute;
    bottom: -135px;
    z-index: 1;
    width: 100%;
    background-color: #fff;
    height: 140px;
} */


/* =============================== Insta Facebook =============================== */

.instaFb .col-md-6 {
    padding: 10px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.instaFb .instaFeed h1 {
    text-align: center;
    font-family: var(---headfont);
}

.instaFeed .followBtn {
    padding-top: 20px;
}

.facebook .likePageBtn {
    padding-top: 10px;
}

.instaFb .facebook h1 {
    text-align: center;
    font-family: var(---headfont);
}

.instaFeed a {
    align-items: center;
    justify-content: center;
}

.instaFeed a button {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.facebook a button {
    background-color: rgb(59, 89, 152);
    color: #fff;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.facebook a {
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
}

.bichmeFb {
    align-items: center;
    justify-content: center;
    display: flex;
}


/* ================================== We create =================================== */

.weCreate {
    width: 100%;
    height: 80vh;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/s3.jpeg");
}

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

.weCreate h1 {
    padding-top: 165px;
    color: #fff;
    font-family: var(---headfont);
    font-size: 70px;
}

.weCreate-btn a button {
    background-color: #3b0505;
    color: #ffffff;
    padding: 10px;
}

.weCreate-btn {
    padding-top: 10px;
}

@media (max-width: 500px) {
    .weCreate h1 {
        padding-top: 50px;
        color: #fff;
        font-family: var(---headfont);
        font-size: 45px;
        text-align: center;
    }

    .weCreate {
        width: 100%;
        height: 300px;
        background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("img/stage/s3.jpeg");
    }
}


/* ================================ Customer Review =================================== */

.review-small-head {
    text-align: center;
    font-family: "Cormorant Garamond", serif;
}

.review-small-head h3 {
    padding-top: 20px;
    font-family: var(---parafont);
}

.reviewHead h1 {
    font-size: 30px;
    text-align: center;
    font-family: var(---headfont);
}

.wrapper {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.wrapper .box {
    background-color: #e1e1e1;
    border-radius: 3px;
    padding: 20px;
    width: calc(33% - 10px);
    margin: 20px;
}

.wrapper .box .content {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .box i.quote {
    font-size: 20px;
    color: #3d0505;
}

.wrapper .box .info .custName {
    font-size: 17px;
    font-weight: 700px;
}

.wrapper .box .info .job {
    font-size: 15px;
    font-weight: 500px;
    color: #3d0505;
}

.wrapper .box .info .stars {
    color: #3d0505;
}

.wrapper .box .custImage {
    height: 75px;
    width: 75px;
    padding: 3px;
    background-color: #3d0505;
    border-radius: 50%;
}

.wrapper .box .custImage img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

@media (max-width: 1045px) {
    .wrapper .box {
        width: calc(50%-10px);
        margin: 5px 10px;
    }
}

@media (max-width: 702px) {
    .wrapper .box {
        width: 100%;
    }
}


/* ==================================== Contact US Page ================================== */


/* ========================================================================================== */

.letsConnect {
    padding-left: 55px;
    padding-right: 55px;
}

.connect-inner {
    background: url("img/leather.jpg");
}

/* <====================================contact us page=========================> */

.info-box {
    position: absolute;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

.aboutimg {
    position: relative;
    height: 400px;
}

.socialLinks {
    display: flex;
}

.socialLinks ul {
    list-style: none;
    display: flex;
    margin-bottom: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    /* border: 1px solid black; */
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    background: rgba(100, 100, 100, 0.5);
}

.social-icon a i {
    color: #fff;
    padding: 10px;
    align-items: center;
}

.aboutimg img {
    width: 100%;
    height: 100%;
}

.info-box h3 {
    color: #fff;
}

.info-box h6 {
    color: #fff;
    text-align: center;
}

.info-box p {
    color: #C0C0C0;
    text-align: center;
}

.submitButton {
    width: 200px;
    height: 50px;
    margin-top: 10px;
    background: goldenrod;
    border: none;
    color: white;
}


.contact-info {
    width: 200px;
    height: 200px;
    border: 1px solid #000;
    padding: 20px 0;
}

.contactInfo h5 {
    color: #000;
    text-align: center;
    font-family: var(---parafont);
}

.contactInfo p {
    color: #000;
    text-align: center;
    font-family: var(---parafont);
}

.contactInfo h6 {
    color: goldenrod;
    text-align: center;
    font-family: var(---parafont);
}

.connect-inner h6 {
    color: goldenrod;
    text-align: center;
    padding-top: 10px;
    font-family: var(---parafont);
}

.connect-inner h1 {
    color: #000;
    text-align: center;
    font-size: 80px;
    padding-top: 20px;
    font-family: var(---headfont);
}

.connect-inner .row {
    padding-top: 30px;
}

.connect-inner a {
    text-decoration: none;
}

.connect-inner .col-md-4 {
    padding: 50px;
    padding-top: 80px;
}

@media (max-width: 500px) {
    .letsConnect {
        padding-left: 5px;
        padding-right: 5px;
    }

    .connect-inner h1 {
        color: #000;
        text-align: center;
        font-size: 50px;
        padding-top: 20px;
        font-family: var(---headfont);
    }

    .connect-inner .row {
        padding-top: 13px;
    }
}


/*  =========================== Map ========================================================= */

.contactMap {
    padding-left: 55px;
    padding-right: 55px;
    margin: 20px;
}

@media (max-width: 500px) {
    .contactMap {
        padding-left: 5px;
        padding-right: 5px;
        margin: 10px;
    }
}


/* ================================== Contact form ============================================  */

.contactForm-inner {
    width: 100%;
    height: 80vh;
    padding: 30px;
    background: url("img/stage/sc.jpeg");
}

.form-text h5 {
    color: #ffffff;
    text-align: center;
    font-family: var(---parafont);
}

.form-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 120px;
    font-family: var(---headfont);
}

.formCol h5 {
    color: #ffffff;
    font-family: var(---parafont);
}

.formCol .contSubmit {
    background-color: #3b0505;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 11px;
}

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

@media (max-width: 500px) {
    .contactForm-inner {
        width: 100%;
        height: auto;
        padding: 20px;
        background: url("img/stage/sc.jpeg");
    }

    .form-text h1 {
        text-align: center;
        color: #ffffff;
        font-size: 40px;
    }

    .form {
        align-items: center;
        justify-content: center;
    }
}


/* ======================================= Footer =============================================== */

.footerSection {
    background-color: #000;
    padding: 30px;
    height: auto;
}


.footermap h2 {
    padding-top: 20px;
    color: #fff;
    font-family: var(---headfont);
    font-size: 20px;
}

.foot-address p {
    color: #fff;
    font-family: var(---parafont);
    margin-right: 10px;
}

.foot-address p i {
    color: #fff;

    margin-right: 10px;
}

.foot-address h6 {
    padding-top: 20px;
    color: #fff;
    font-family: var(---headfont);
    font-size: 20px;
}

.foot-address a {
    text-decoration: none;
}

.foot-address h3 {
    font-size: 20px;
    color: #ffffff;
    padding-top: 10px;
}

.foot-logo img {
    width: 100%;
    height: 100%;
}

.foot-logo {
    width: 15vh;
    height: auto;
    padding-top: 20px;
}

.socialbtn {
    padding-left: 0%;
    display: flex;
    flex-direction: column-reverse;
}

.foot-social li {
    text-decoration: none;
}

.foot-social {
    display: flex;
    margin-left: -45px;
    list-style-type: none;
}

.foot-social a {
    list-style-type: none;
}


/* -- Gallery -- */

.gal img {
    width: 100%;
    height: 100%;
}

.gal {
    width: 70px;
    height: 50px;
    margin-bottom: 5px;
}


/* =====================================  Copyright ================================= */


/* .copyright {
    color: var(---primeColor);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    z-index: 10;
}

.copyright p {
    margin-top: 10px;
    font-family: var(---paraFont);
    color: #e6e6e6;
    padding: 15px 5px;
}

@media(max-width:500px) {
    .copyright p {
        padding: 10px;
    }
} */

.copyright {
    padding: 15px 0;
    background-color: #202020;
    text-align: center;
}

.copyright span,
.copyright a {
    color: #e6e6e6;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.copyright a:hover {
    color: #007bff;
}

.copyright-menu ul {
    text-align: right;
    margin: 0;
}

.copyright-menu li {
    display: inline-block;
    padding-left: 20px;
}


/*==========================================================================================
social medial connect float css start (call icon)
===========================================================================================*/

.floattingButton .float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(---primeColor);
    color: azure;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    animation: bot-to-top 2s ease-out;
}

.floattingButton ul {
    position: fixed;
    right: 40px;
    padding-bottom: 20px;
    bottom: 80px;
    z-index: 100;
}

.floattingButton ul li {
    list-style: none;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #fff;
}

.floattingButton ul li:first-child {
    background: green;

    border-radius: 50px;
    text-align: center;
    width: 60px;
    height: 60px;
    color: #fff;
    display: block;
}

.floattingButton ul li:last-child {
    background: green;
    border-radius: 50px;
    text-align: center;
    width: 60px;
    height: 60px;
    display: block;
}

.floattingButton ul:hover {
    visibility: visible !important;
    opacity: 1 !important;
}

.floattingButton li i {
    color: #fff;
}

.floattingButton .my-float {
    font-size: 24px;
    margin-top: 18px;
}

.floattingButton span#menu-share+ul {
    visibility: hidden;
}

.floattingButton span#menu-share:hover+ul {
    visibility: visible;
    animation: scale-in 0.5s;
}

.floattingButton span#menu-share i {
    animation: rotate-in 0.5s;
}

.floattingButton span#menu-share:hover>i {
    animation: rotate-out 0.5s;
}

@keyframes bot-to-top {
    0% {
        bottom: -40px
    }

    50% {
        bottom: 40px
    }
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate-in {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-out {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.enquireButton {
    position: fixed;
    top: 50%;
    transform: rotate(90deg);
    background: var(---primeColor);
    right: -35px;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    z-index: 58;
    border: none;
}

.enquiry_close {
    background: var(---primeColor);
}

@media(max-width:600px) {
    .enquireButton {
        height: 35px;
        right: -35px;
        font-size: 12px;
    }
}

header .item {
    height: 80vh;
    position: relative;
}

header .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(51, 51, 51, 0.6);
    display: flex;
    align-items: center;
}

header .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
}

header .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border-top: 5px solid #fff;
    border-bottom: 5px solid var(---secondColor);
    border-left: 5px solid var(---secondColor);
    /* -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%); */
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

header .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
}

header .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
    font-family: var(---aboreto);
}

header .item .cover .header-content h3 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
    font-family: var(---aboreto);
}

header .item .cover .header-content h2 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: var(---primeColor);
    font-family: var(---aboreto);
}

header .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
}

header .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

header .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

header .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

/* header .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
  } */
header .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

header .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}

header .owl-nav .owl-prev:focus {
    outline: 0;
}

header .owl-nav .owl-prev:hover {
    background: #000 !important;
}

header .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    /* -webkit-transition: all 0.4s ease-out; */
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

header .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}

header .owl-nav .owl-next:focus {
    outline: 0;
}

header .owl-nav .owl-next:hover {
    background: #000 !important;
}

header:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

header:hover .owl-next {
    right: 0px;
    opacity: 1;
}

@media(max-width:500px) {
    header .item .cover .header-content {
        position: relative;
        padding: 10px;
        overflow: hidden;
    }

    header .item .cover .header-content h2 {
        font-weight: 300;
        font-size: 25px;
        color: goldenrod;
        font-family: var(---aboreto);
    }

    header .item .cover .header-content h1 {
        font-size: 40px;
        font-weight: 600;
        margin: 5px 0 20px;
        word-spacing: 3px;
        color: #fff;
        font-family: var(---aboreto);
    }

    header .item .cover .header-content h4 {
        font-size: 1rem;
        font-weight: 300;
        line-height: 36px;
        color: #fff;
    }
}

@keyframes slideOutUp {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Border from Y to X  */
.borderYtoX a:before,
.borderYtoX a:after {
    position: absolute;
    opacity: 0.5;
    height: 100%;
    width: 2px;
    content: '';
    background: red;
    transition: all 0.3s;
}

.borderYtoX a:before {
    left: 0px;
    top: 0px;
}

.borderYtoX a:after {
    right: 0px;
    bottom: 0px;
}

.borderYtoX a:hover:before,
.borderYtoX a:hover:after {
    opacity: 1;
    height: 2px;
    width: 50%;
}