@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato&display=swap);
@import url(https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css);
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200);
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@48,300,0,-25);

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --maroon: #60181c;
    --cream: #e7e3d7;
    --black: #121212;
    --white: #fff;
    --gray: #3a3a3a
}

body {
    font-family: Montserrat, sans-serif;
    margin: auto;
    /* max-width: 1500px; */
    overflow-x: hidden
}

a {
    text-decoration: none
}

.App {
    background: var(--cream)
}

.HomeHero {
    background: linear-gradient(180deg, #000, transparent), url(/static/media/HomeHero.b126f1b28536892672c1.jpg);
    background-size: cover;
    color: var(--white);
    height: auto;
    position: relative;
    width: 100%
}

.HomeHero .overlay {
    background: rgba(0, 0, 0, .3);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.HomeHero .content {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 40px min(40px, 8%);
    position: relative
}

.HomeHero .content .left {
    align-items: flex-start;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.HomeHero .content .left .welcome {
    align-items: center;
    display: flex;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
    text-transform: uppercase
}

.HomeHero .content .left .welcome:before {
    background: var(--white);
    content: "";
    display: block;
    height: 2px;
    margin-right: 10px;
    width: 100px
}

.HomeHero .content .left .logo {
    height: 15vw;
    max-height: 160px;
    min-height: 130px
}

.HomeHero .content .left .cta {
    background: var(--cream);
    border: none;
    border-radius: 25px;
    color: var(--maroon);
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    padding: 10px 30px;
    text-transform: uppercase
}

.HomeHero .content .right {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: center;
    position: relative;
    z-index: 0
}

.HomeHero .content .right .plate {
    height: 40vw;
    max-height: 500px;
    min-height: 400px
}

@media screen and (max-width:750px) {
    .HomeHero {
        min-height: 100vh
    }

    .HomeHero .content {
        min-height: calc(100vh - 70px);
        overflow: hidden
    }

    .HomeHero .content .right {
        left: 50%;
        position: absolute
    }

    .HomeHero .content .left .logo {
        height: 18vw;
        min-height: 120px
    }

    .HomeHero .content .left .welcome {
        font-size: 16px
    }

    .HomeHero .content .left .welcome:before {
        width: 60px
    }

    .HomeHero .content .left .cta {
        font-size: 14px
    }
}

.Navbar {
    align-items: center;
    display: flex;
    height: 70px;
    justify-content: space-between;
    overflow: hidden;
    padding: 0 min(40px, 8%);
    z-index: 1000
}

.Navbar .logo {
    height: 50px;
    z-index: 2000
}

.Navbar .logo img {
    height: 100%
}

.Navbar .routes {
    align-items: center;
    display: flex;
    flex-direction: row;
    z-index: 1000
}

.Navbar .routes a {
    color: var(--cream);
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px;
    text-decoration: none;
    text-transform: uppercase
}

.Navbar .hamburger {
    color: #fff;
    display: none;
    font-size: 32px;
    z-index: 2000
}

.Navbar.custom {
    background-color: rgba(0, 0, 0.2, 0.2);
}

@media screen and (max-width:750px) {
    .Navbar .routes {
        align-items: center;
        background: var(--maroon);
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        left: 0;
        position: fixed;
        top: 0;
        transition: all .2s linear;
        width: 100%
    }

    .Navbar .routes a {
        font-size: 20px;
        margin: 10px 0
    }

    .Navbar .hamburger {
        display: block
    }
}

.HomeAbout {
    align-items: center;
    background: var(--cream);
    display: flex;
    padding: 100px min(40px, 8%)
}

.HomeAbout .left {
    display: grid;
    flex: 1 1;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    padding: 0 min(20px, 4%);
    position: relative
}

.HomeAbout .left .image {
    max-height: 300px;
    max-width: 360px;
    min-width: 260px
}

.HomeAbout .left .image:first-child {
    grid-column: 1/4;
    grid-row: 1/4
}

.HomeAbout .left .image:last-child {
    grid-column: 2/5;
    grid-row: 2/5
}

.HomeAbout .left .image img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    width: 100%
}

.HomeAbout .right {
    flex: 1 1;
    padding: 0 min(20px, 4%)
}

.HomeAbout .right h1 {
    color: var(--maroon);
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 10px
}

.HomeAbout .right h1:after {
    background: var(--maroon);
    content: "";
    display: block;
    height: 2px;
    margin-top: 10px;
    width: 160px
}

.HomeAbout .right p {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 10px
}

.HomeAbout .right button {
    background: var(--maroon);
    border: none;
    border-radius: 25px;
    color: var(--cream);
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px;
    text-transform: uppercase
}

@media screen and (max-width:950px) {
    .HomeAbout .right h1 {
        font-size: 36px
    }

    .HomeAbout .right p {
        font-size: 16px
    }

    .HomeAbout .right button {
        font-size: 14px
    }
}

@media screen and (max-width:750px) {
    .HomeAbout {
        flex-direction: column
    }

    .HomeAbout .left .image {
        max-height: 280px;
        max-width: 320px;
        min-width: 200px
    }

    .HomeAbout .left {
        margin-bottom: 50px;
        padding: 0
    }

    .HomeAbout .right {
        padding: 0
    }
}

.Footer {
    align-items: flex-start;
    background: var(--maroon);
    color: var(--white);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 60px min(40px, 8%)
}

.Footer .two {
    padding: 0 40px
}

.Footer .one img {
    height: 100px;
    margin-bottom: 20px
}

.Footer p {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    max-width: 300px
}

.Footer h3 {
    margin-bottom: 10px
}

.Footer .three .socials {
    font-size: 30px;
    margin: 10px 0
}

.Footer .three .socials,
.Footer .three .socials>* {
    align-items: center;
    display: flex;
    flex-direction: row
}

.Footer .three .socials>* {
    cursor: pointer;
    margin-right: 10px
}

.Footer .three .socials svg:first-child {
    font-size: 36px
}

.Footer .three .socials a {
    color: #fff
}

@media screen and (max-width:750px) {
    .Footer {
        flex-direction: column
    }

    .Footer>* {
        margin: 20px
    }

    .Footer .two {
        padding: 0
    }
}

.HomeMap {
    align-items: center;
    background: linear-gradient(0deg, var(--maroon), var(--cream));
    display: flex;
    justify-content: center;
    padding: 50px min(40px, 8%) 100px
}

.HomeMap .map {
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    max-width: 1200px
}

.HomePlanning {
    align-items: center;
    background: linear-gradient(90deg, #000, transparent), url(/static/media/HomePlanning.c6e42e38d8fcfd2cb864.jpeg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px min(40px, 8%);
    position: relative
}

.HomePlanning .overlay {
    background: rgba(0, 0, 0, .3);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.HomePlanning .cards,
.HomePlanning h1 {
    position: relative;
    z-index: 1
}

.HomePlanning h1 {
    align-items: center;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 10px;
    text-align: center
}

.HomePlanning h1:after {
    background: var(--cream);
    content: "";
    display: block;
    height: 2px;
    margin-bottom: 60px;
    margin-top: 10px;
    width: 260px
}

.HomePlanning .cards {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: auto;
    width: 100%
}

.HomePlanning .cards>* {
    margin: 0 10px
}

@media screen and (max-width:950px) {
    .HomePlanning h1 {
        font-size: 36px
    }
}

@media screen and (max-width:750px) {
    .HomePlanning h1:after {
        margin-bottom: 40px;
        width: 200px
    }

    .HomePlanning .cards {
        flex-direction: column
    }

    .HomePlanning .cards>* {
        margin: 20px 0
    }
}

.OccasionCard {
    background: var(--cream);
    border-radius: 10px;
    position: relative
}

.OccasionCard .Image img {
    object-fit: cover;
    position: relative;
    z-index: 1
}

.OccasionCard .Image img,
.OccasionCard .Image:before {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 360px;
    width: 280px
}

.OccasionCard .Image:before {
    background: linear-gradient(0deg, var(--cream), transparent, transparent, transparent);
    content: "";
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 2
}

.OccasionCard h3 {
    color: var(--maroon);
    font-size: 20px;
    padding: 16px 0;
    text-align: center
}

@media screen and (max-width:950px) {
    .OccasionCard h3 {
        font-size: 18px
    }

    .OccasionCard .Image img,
    .OccasionCard .Image:before {
        height: 300px;
        width: 220px
    }
}

@media screen and (max-width:750px) {
    .OccasionCard .Image img {
        height: 360px;
        width: 280px
    }

    .OccasionCard .Image:before {
        height: 362px;
        width: 280px
    }
}

@media screen and (max-width:300px) {

    .OccasionCard .Image img,
    .OccasionCard .Image:before {
        width: 240px
    }
}

.HomeTestimonials {
    background: var(--cream);
    padding: 100px min(40px, 8%)
}

.HomeTestimonials h1 {
    align-items: center;
    color: var(--maroon);
    display: flex;
    flex-direction: column;
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 10px;
    text-align: center
}

.HomeTestimonials h1:after {
    background: var(--maroon);
    content: "";
    display: block;
    height: 2px;
    margin-bottom: 60px;
    margin-top: 10px;
    width: 260px
}

.HomeTestimonials .cards {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: auto;
    width: 100%
}

.HomeTestimonials .cards>* {
    margin: 0 10px
}

@media screen and (max-width:950px) {
    .HomeTestimonials h1 {
        font-size: 36px
    }
}

@media screen and (max-width:750px) {
    .HomeTestimonials h1:after {
        margin-bottom: 40px;
        width: 200px
    }

    .HomeTestimonials .cards {
        flex-direction: column
    }

    .HomeTestimonials .cards>* {
        margin: 20px 0
    }
}

.TestimonialCard {
    align-items: center;
    background: var(--maroon);
    border-radius: 10px;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    height: 420px;
    padding: 40px 20px;
    text-align: center;
    width: 280px
}

.TestimonialCard img {
    border-radius: 50%;
    height: 70px;
    margin-bottom: 20px;
    width: 70px
}

.TestimonialCard .content {
    font-family: Lato, sans-serif;
    font-size: 18px
}

.TestimonialCard .name {
    font-size: 20px;
    font-weight: 500;
    justify-self: flex-end;
    margin-top: auto
}

@media screen and (max-width:950px) {
    .TestimonialCard {
        height: 460px;
        width: 220px
    }
}

@media screen and (max-width:750px) {
    .TestimonialCard {
        height: 420px;
        width: 280px
    }
}

@media screen and (max-width:300px) {
    .TestimonialCard {
        height: 420px;
        width: 240px
    }
}

.AboutHero {
    background: linear-gradient(180deg, #000, transparent), url(/static/media/AboutHero.c307acb9a15dd9c9bfa5.jpg);
    background-size: cover;
    color: var(--cream);
    height: auto;
    position: relative;
    width: 100%
}

.AboutHero .overlay {
    background: rgba(0, 0, 0, .3);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.AboutHero .content {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 40px min(40px, 8%);
    position: relative
}

.AboutHero .content .left {
    align-items: flex-start;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.AboutHero .content .left .winner {
    align-items: center;
    display: flex;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
    text-transform: uppercase
}

.AboutHero .content .left .winner:after {
    background: var(--cream);
    content: "";
    display: block;
    height: 2px;
    margin-left: 10px;
    width: 60px
}

.AboutHero .content .left h1 {
    font-size: min(max(42px, 5vw), 52px)
}

.AboutHero .content .left .cta {
    background: var(--cream);
    border: none;
    border-radius: 25px;
    color: var(--maroon);
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    padding: 10px 30px;
    text-transform: uppercase
}

.AboutHero .content .right {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: center;
    position: relative;
    z-index: 0
}

.AboutHero .content .right .awarding {
    border-radius: 10px;
    height: 40vw;
    max-height: 480px;
    min-height: 340px
}

@media screen and (max-width:1000px) {
    .AboutHero .content .left .winner span {
        display: none
    }
}

@media screen and (max-width:750px) {
    .AboutHero {
        min-height: 100vh
    }

    .AboutHero .content {
        align-items: flex-start;
        flex-direction: column-reverse;
        min-height: calc(100vh - 70px);
        overflow: hidden
    }

    .AboutHero .content .right {
        flex: initial;
        margin-bottom: 20px
    }

    .AboutHero .content .left {
        flex: initial
    }

    .AboutHero .content .left h1 {
        font-size: min(max(32px, 10vw), 42px)
    }

    .AboutHero .content .left .winner {
        font-size: 16px
    }

    .AboutHero .content .right .awarding {
        height: 90vw;
        min-height: 280px
    }
}

.AboutStory {
    padding: 40px min(40px, 8%)
}

.AboutStory .myhead {
    color: var(--maroon);
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 10px
}

.AboutStory .mypara {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 10px
}

.AboutStory .missionvision {
    display: flex;
    margin-top: 40px
}

.AboutStory .missionvision>* {
    margin-right: 20px
}

@media screen and (max-width:950px) {
    .AboutStory .myhead {
        font-size: 36px
    }

    .AboutStory .mypara {
        font-size: 16px
    }
}

@media screen and (max-width:750px) {
    .AboutStory .missionvision {
        flex-direction: column
    }

    .AboutStory .missionvision>* {
        margin-bottom: 20px;
        margin-right: 0
    }
}

.AboutCard {
    background: var(--maroon);
    border-radius: 10px;
    color: var(--cream);
    max-width: 400px;
    min-width: 240px;
    padding: 30px
}

.AboutCard h1 {
    color: var(--cream);
    font-size: 32px;
    line-height: 110%;
    margin: 0 0 0 10px
}

.AboutCard .head {
    align-items: center;
    display: flex;
    font-size: 32px;
    margin-bottom: 20px
}

.AboutCard p {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin: 0
}

@media screen and (max-width:950px) {
    .AboutStory h1 {
        font-size: 26px
    }

    .AboutStory p {
        font-size: 16px
    }

    .AboutCard .head {
        font-size: 26px
    }
}

.AboutTeam {
    height: auto;
    padding: 20px min(45px, 8%) 100px;
}

.AboutTeam .head {
    color: var(--maroon);
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 20px
}

.AboutTeam .content {
    align-items: center;
    display: flex;
    flex-direction: row
}

.AboutTeam .content .para {
    padding: 0 40px
}

.AboutTeam .content .para p {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 10px
}

.AboutTeam .content .Image img {
    border-radius: 10px;
    height: 300px
}

@media screen and (max-width:1050px) {
    .AboutTeam .content {
        display: inline-block
    }

    .AboutTeam .content .Image {
        float: left;
        margin-right: 20px
    }

    .AboutTeam .content .para {
        padding: 0;
        text-align: left
    }
}

@media screen and (max-width:950px) {
    .AboutTeam .head {
        font-size: 36px
    }

    .AboutTeam .content .para p {
        font-size: 16px
    }
}

@media screen and (max-width:750px) {
    .AboutTeam .content {
        display: flex;
        flex-direction: column
    }

    .AboutTeam .content .Image {
        align-self: flex-start;
        float: none;
        margin-bottom: 20px;
        margin-right: 0
    }

    .AboutTeam .content .Image img {
        border-radius: 10px;
        height: auto;
        max-width: 400px;
        min-width: 240px;
        width: 85vw
    }
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
    .web-mobile {
        margin-top: -2rem !important;
    }

}

.AboutClients {
    height: auto;
    padding: 0 min(45px, 8%) 100px
}

.AboutClients .head {
    color: var(--maroon);
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 10px
}

.AboutClients .clients {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.AboutClients .clients>* {
    margin-right: 20px;
    margin-top: 20px
}

@media screen and (max-width:950px) {
    .AboutClients .head {
        font-size: 36px
    }
}

.AboutClientCard {
    align-items: center;
    background: var(--maroon);
    border-radius: 10px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    height: 240px;
    justify-content: center;
    padding: 10px;
    text-align: center;
    width: 200px
}

.AboutClientCard .Img {
    height: 80px;
    width: 80px
}

.AboutClientCard .Img img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    width: 100%
}

.AboutClientCard .content {
    margin-top: 10px
}

.AboutClientCard .content h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%
}

.AboutClientCard .content h4 {
    color: var(--cream);
    font-size: 12px;
    font-weight: 600;
    line-height: 150%
}

.Services .sections {
    padding: 50px 0
}

.ServicesHero {
    background: linear-gradient(180deg, #000, transparent), url(/static/media/ServicesHero.c94134dd30b52805e9be.jpg);
    background-size: cover;
    color: var(--cream);
    height: auto;
    position: relative;
    width: 100%
}

.ServicesHero .overlay {
    background: rgba(0, 0, 0, .3);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.ServicesHero .content {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 40px min(40px, 8%);
    position: relative
}

.ServicesHero .content .left {
    align-items: flex-start;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.ServicesHero .content .left .winner {
    align-items: center;
    display: flex;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
    text-transform: uppercase
}

.ServicesHero .content .left .winner:after {
    background: var(--cream);
    content: "";
    display: block;
    height: 2px;
    margin-left: 10px;
    width: 60px
}

.ServicesHero .content .left h1 {
    font-size: min(max(42px, 5vw), 52px)
}

.ServicesHero .content .left .cta {
    background: var(--cream);
    border: none;
    border-radius: 25px;
    color: var(--maroon);
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    padding: 10px 30px;
    text-transform: uppercase
}

.ServicesHero .content .right {
    align-items: end;
    display: flex;
    flex: 1 1;
    justify-content: center;
    position: relative;
    z-index: 0
}

.ServicesHero .content .right .food {
    border-radius: 10px;
    height: 40vw;
    max-height: 480px;
    min-height: 340px
}

@media screen and (max-width:1000px) {
    .ServicesHero .content .left .winner span {
        display: none
    }
}

@media screen and (max-width:750px) {
    .ServicesHero {
        min-height: 100vh
    }

    .ServicesHero .content {
        align-items: flex-start;
        flex-direction: column-reverse;
        min-height: calc(100vh - 70px);
        overflow: hidden
    }

    .ServicesHero .content .right {
        flex: initial;
        margin-bottom: 20px
    }

    .ServicesHero .content .left {
        flex: initial
    }

    .ServicesHero .content .left h1 {
        font-size: min(max(32px, 10vw), 42px)
    }

    .ServicesHero .content .left .winner {
        font-size: 16px
    }

    .ServicesHero .content .right .food {
        height: 90vw;
        min-height: 280px
    }
}

.ServiceSection {
    padding: 50px min(40px, 8%)
}

.ServiceSection h1 {
    color: var(--maroon);
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 20px
}

.ServiceSection .content {
    display: inline-block
}

.ServiceSection .content img {
    border-radius: 10px;
    float: left;
    height: 350px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 20px;
    max-width: 500px;
    min-width: 400px;
    object-fit: cover;
    width: 40vw
}

.ServiceSection .reverse img {
    float: right;
    margin-left: 20px;
    margin-right: 0
}

.ServiceSection .content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 10px;
    padding: 0;
    text-align: left
}

@media screen and (max-width:950px) {
    .ServiceSection h1 {
        font-size: 36px
    }

    .ServiceSection .content img {
        height: 300px
    }

    .ServiceSection .content p {
        font-size: 16px
    }
}

@media screen and (max-width:750px) {
    .ServiceSection {
        padding: 20px min(40px, 8%)
    }

    .ServiceSection .content {
        display: flex;
        flex-direction: column
    }

    .ServiceSection .content img {
        height: 260px;
        max-width: 400px;
        min-width: 220px;
        width: 85vw
    }

    .ServiceSection .reverse img {
        margin-left: 0;
        margin-right: 0
    }
}

.PhotoGallery {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 50px min(40px, 8%);
    position: relative;
    -webkit-row-gap: 10px;
    -moz-row-gap: 10px;
    row-gap: 10px
}

.PhotoGallery .gallery {
    border-radius: 5px;
    height: auto !important;
    margin: 4px 0;
    width: 100% !important
}

.PhotoGallery .horizontal {
    aspect-ratio: 16/9
}

.PhotoGallery .vertical {
    aspect-ratio: 9/16
}

@media (max-width:1000px) {
    .PhotoGallery {
        -webkit-column-count: 3;
        column-count: 3
    }
}

@media (max-width:800px) {
    .PhotoGallery {
        -webkit-column-count: 2;
        column-count: 2
    }
}

@media (max-width:600px) {
    .PhotoGallery {
        -webkit-column-count: 1;
        column-count: 1
    }
}

.Contact {
    height: 100%;
    width: 100%
}

.Contact .content {
    padding: 50px min(40px, 8%);
    width: 100%
}

.Contact .content h1 {
    color: var(--maroon);
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 30px
}

.Contact .content .cards {
    align-items: stretch;
    display: flex;
    flex-direction: row;
    width: 100%
}

.Contact .content .cards .card {
    background: var(--maroon);
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    color: var(--cream);
    flex: 1 1;
    padding: 20px;
    width: 360px
}

.Contact .content .cards .card:first-child {
    background: linear-gradient(45deg, var(--maroon), rgba(0, 0, 0, .6)), url(/static/media/ContactPhone.6a5fa6a85a8655089b77.jpg);
    background-size: cover
}

.Contact .content .cards .card:nth-child(2) {
    background: linear-gradient(45deg, var(--maroon), rgba(0, 0, 0, .6)), url(/static/media/ContactAddress.8ebe5a2c90f690174745.jpg);
    background-size: cover
}

.Contact .content .cards .card:nth-child(3) {
    background: linear-gradient(45deg, var(--maroon), rgba(0, 0, 0, .6)), url(/static/media/ContactSocial.98b67b7ca614b000cacf.jpg);
    background-size: cover
}

.Contact .content .cards .card:nth-child(2) {
    margin: 0 20px
}

.Contact .content .cards .card h2 {
    font-size: 24px;
    margin-bottom: 20px
}

.Contact .content .cards .card .field {
    align-items: center;
    display: flex;
    font-size: 18px;
    margin: 10px 0
}

.Contact .content .cards .card p {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin-left: 5px
}

.Contact .content .cards .card a {
    color: var(--cream)
}

@media screen and (max-width:950px) {
    .Contact .content h1 {
        font-size: 36px
    }

    .Contact .content .cards .card p {
        font-size: 16px
    }
}

@media screen and (max-width:750px) {
    .Contact .content .cards {
        flex-direction: column
    }

    .Contact .content .cards .card {
        width: 85vw
    }

    .Contact .content .cards .card:nth-child(2) {
        margin: 20px 0
    }
}

.HomeHero.custom {
    background: url(/static/media/banner.b4639d5d8dc3ed28804f.jpg);
    background-size: cover;
    color: var(--white);
    position: relative;
    width: 100%
}

.HomeHero.custom .overlay {
    background: rgba(0, 0, 0, .3);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.HomeHero.custom .content {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 11rem min(40px, 8%);
    position: relative
}

.HomeHero.custom .content .left {
    align-items: flex-start;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.HomeHero.custom .content .left .welcome {
    align-items: center;
    display: flex;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
    text-transform: uppercase
}

.HomeHero.custom .content .left .welcome:before {
    background: var(--cream);
    content: "";
    display: block;
    height: 2px;
    margin-right: 10px;
    width: 100px
}

.HomeHero.custom .content .left .logo {
    height: 15vw;
    max-height: 160px;
    min-height: 130px
}

.HomeHero.custom .content .left .cta {
    background: var(--cream);
    border: none;
    border-radius: 25px;
    color: var(--maroon);
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    padding: 10px 30px;
    text-transform: uppercase
}

.HomeHero.custom .content .right {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: center;
    position: relative;
    z-index: 0
}

.HomeHero.custom .content .right .plate {
    height: 40vw;
    max-height: 500px;
    min-height: 400px
}


.f-3 {
    font-size: 3rem
}

.mt-1 {
    margin-top: 1rem
}

.w-14 {
    width: 14rem
}

.h-10 {
    height: 10rem
}

.position-rel {
    margin-top: -12%;
    position: relative;
    z-index: 99999
}

.w-5 {
    width: 5rem
}

.btn-maroon {
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    padding: 10px 30px;
    text-transform: uppercase
}

.bg-maroon,
.btn-maroon {
    background-color: #611a1f;
    color: #fff
}

.c-maroon {
    color: #611a1f
}

.text-align-justify {
    text-align: justify
}


.text-yellow {
    color: #efef4e;
}

.text-maroon {
    color: var(--maroon);
}

.border-maroon {
    border: 1px solid var(--maroon);
}

.HomeHero.custom .content .left .welcome:before,
.ServicesHero .content .left .winner:after,
.AboutHero .content .left .winner:after {
    background: #efef4e;
}


.Footer .one {}

@media screen and (max-width:750px) {
    .heading1 {
        font-size: 1.3rem !important
    }

    .web-mobile {
        margin-top: -25rem;
        position: relative
    }

    .HomeHero.custom {
        height: 100vh
    }

    .HomeHero.custom .content {
        height: auto;
        margin: -14rem min(40px, 0%);
        overflow: hidden
    }

    .HomeHero.custom .content .right {
        left: 50%;
        position: absolute
    }

    .HomeHero.custom .content .left {
        align-items: center
    }

    .HomeHero.custom .content .left .logo {
        height: 18vw;
        min-height: 120px
    }

    .HomeHero.custom .content .left .welcome {
        font-size: 16px
    }

    .HomeHero.custom .content .left .welcome:before {
        width: 60px
    }

    .HomeHero.custom .content .left .cta {
        font-size: 14px
    }

    .Footer .one,
    .Footer .two,
    .Footer .three {
        text-align: center !important;
        padding: 0 40px !important;
    }

    .Footer .three .socials {
        display: inline-flex !important;
    }

    .whats-float {
        right: -20px !important;
    }
}

@media (min-width:576px) and (max-width:991.98px) {
    .web-mobile {
        margin-top: -10rem;
        position: relative
    }

    .HomeHero.custom .content {
        margin: -11rem min(40px, 0%)
    }

    .heading1 {
        font-size: 1.3rem !important
    }

    .Footer .one,
    .Footer .two,
    .Footer .three {
        text-align: center !important;
        padding: 0 40px !important;
    }

    .Footer .three .socials {
        display: inline-flex !important;
    }

    .whats-float {
        right: -4px;
    }


}

@media screen and (min-width:400px) and (max-width:576px) {
    .web-mobile {
        margin-top: -10rem;
        position: relative
    }

    .HomeHero.custom .content {
        margin: -11rem min(40px, 0%)
    }

    .HomeHero.custom .content .left {
        align-items: center
    }

    .heading1 {
        font-size: 1.3rem !important
    }

    .Footer .one,
    .Footer .two,
    .Footer .three {
        text-align: center !important;
        padding: 0 40px !important;
    }

    .Footer .three .socials {
        display: inline-flex !important;
    }
}

@media screen and (min-width:350px) and (max-width:385px) {
    .web-mobile {
        margin-top: -15rem;
        position: relative
    }

    .HomeHero.custom .content {
        margin: -15rem min(40px, 0%)
    }

    .HomeHero.custom .content .left {
        align-items: right
    }

    h1 {
        font-size: 2.5rem !important
    }

    .Footer .one,
    .Footer .two,
    .Footer .three {
        text-align: center !important;
        padding: 0 40px !important;
    }

    .Footer .three .socials {
        display: inline-flex !important;
    }

    .whats-float {
        right: -20px !important;
    }
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
    .whats-float {
        right: 0rem !important;
    }
}

/*# sourceMappingURL=main.0b6e35fe.css.map*/

/* <> Whatsapp */

.whats-float h1 {
    color: #fff;
    font-size: 3.625em;
    text-align: center;
    margin-top: 20%;
}

.whats-float {
    position: fixed;
    transform: translate(108px, 0px);
    top: 25%;
    right: -30px;
    width: 180px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 4px 0 0 4px;
    z-index: 2000;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}

.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align: center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform: translate(0px, 0px);
}

.whats-float:hover i {
    transform: rotate(360deg);
}

/* </> */

/* Sidebar */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    background-color: var(--maroon);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #FFFFFF;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.Navbar.custom, .Navbar {
    overflow: visible;
}

.dropdown-menu.custom {
    transform: translate3d(-50px, 55.5px, 0px) !important;
}