:root {
    /* Fonts */
    --font-primary: "Open Sans", sans-serif;
    --font-plus: "Plus Jakarta Sans", sans-serif;

    --primary: #7d2416;
    --bg-gray: #f7f7f7;
}


.font-primary {
    font-family: var(--font-primary);
}

.font-plus {
    font-family: var(--font-plus);
}




*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 62px;
}

.h2,
h2 {
    font-size: 44px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

.h4-small {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

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

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary);
}

.color-primary {
    color: var(--primary);
}

.bg-color-gray {
    background-color: var(--bg-gray);
}

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: #B34C3A;
    color: white !important;
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 16px 36px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}


.prime-btn:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: white;
    background-color: #e66048;
}

/* Button Css End */
.sec-spacing {
    padding: 110px 0;
}



/* ---- Index Page Style start ---- */

/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1111;

}


.navbar {
    padding: 10px 0;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
    background-color: #000;

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 150px;
    height: 80px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

.navbar-brand img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.nav-item {
    width: max-content;
}

.nav-link {
    text-transform: capitalize;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: max-content;
    color: white;
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-width: max-content;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: white;

}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-nav {
    margin-left: auto;
    /* margin-right: auto; */
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.nav-item:last-child .nav-link {
    margin-right: 60px;
}

/* Header styles end */


/* Hero styles Start */
.hero-wrapper {
    position: relative;
}

.hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 720px;
}

.hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .7;
}

.hero-banner.hero-one {
    background-image: url('../assets/hero-bg.jpg');
}

.hero-banner.hero-two {
    background-image: url('../assets//hero-bg1.jpg');
}

.hero-banner.hero-three {
    background-image: url('../assets/hero-bg2.jpg');
}


.hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 111;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;

}

.hero-text-wrapper h1 {
    text-transform: capitalize;
    line-height: 80px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    max-width: 100%;
}

.hero-text-wrapper p {
    font-size: 18px;
    line-height: 30px;
    width: 100%;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding-right: 120px;
}

.hero-sec-img {
    position: absolute;
    width: 400px;
    height: 500px;
    z-index: 111;
    right: 15%;
    top: 20%;
}

.hero-sec-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.p-rel {
    position: relative;
}

.hero-sec-img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.hero-sec-img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}



.about-content {
    padding-left: 30px;
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: 40px;
}

.about-content p {
    font-size: 18px;
    color: #525252;
    line-height: 30px;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 510px;

}

.about-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.sec-title {
    margin-bottom: 40px;
}

.sub-title {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 2px;
}

.sa-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.sa-grid-item {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #b34c3a4a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sa-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 26px;
}

.sa-icon img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.sa-grid-item:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.photo-gallery-wrap {
    width: 100%;
    height: 320px;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}



.photo-gallery-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(0 0 0 / 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}



.search-icon svg {
    font-size: 50px;
    color: white;
}

.photo-gallery-wrap:hover .photo-gallery-overlay {
    opacity: 1;
}

.feedback-slider-wrap {
    margin-top: 100px;
}

.feedback-wrapper {
    position: relative;
    padding: 70px 32px 50px;
    background: #fff;
    height: 260px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.feedback-wrapper::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(170, 132, 83, 0.10);
    right: -20px;
    top: 20px;
    z-index: -1;
}

.feedback-wrapper p {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 32px;
    color: #666;
    text-align: justify;
}

.feedback-icon {
    position: absolute;
    top: -40px;
    left: 32px;
    width: 80px;
    height: 80px;
    background: var(--primary);
    padding: 16px;
}



.fdUser-name {
    margin-top: 60px;
}

.fdUser-icon {
    width: 70px;
    height: 70px;
    margin-right: 16px;
}

.fdUser-name h6 {
    font-size: 20px;
    color: #000;

}

.feedback .owl-carousel .owl-stage-outer {
    padding: 60px 0 0;
}

.feedback .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

/* Feedback Section End */



.info-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

.info-wrapper {
    padding: 50px 20px 30px 20px;
    border: 1px solid #b34c3a4a;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.info-wrapper svg {
    color: #B34C3A;
    font-size: 30px;
    margin-bottom: 30px;
}

.info-wrapper:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


.info-wrapper h5 {
    font-size: 24px;
    margin-bottom: 20px;

}

.info-wrapper p,
.info-wrapper a {
    font-size: 18px;
    line-height: 1.8;
    word-break: break-word;
    letter-spacing: 0;
    color: #686868;
}

.contact-us-iframe {
    width: 100%;
    height: 500px;
    margin-top: 60px;
}

footer {
    background: #B34C3A;
    margin-top: -5px;
}

footer p {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 400;
    color: white;
}



@media (max-width: 1799px) {

    .h1,
    h1 {
        font-size: 52px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .hero-text-wrapper {
        left: 8%;
        top: 60%;
    }

    .hero-text-wrapper p {
        font-size: 16px;
    }

    .hero-text-wrapper h1 {
        line-height: 62px;
        letter-spacing: 0;
    }

    .hero-sec-img {
        width: 320px;
        height: 420px;
    }

    .hero-banner {
        min-height: 620px;
    }

}

@media (max-width: 1599px) {

    .h1,
    h1 {
        font-size: 48px;
    }

    .h2,
    h2 {
        font-size: 38px;
    }

    h4,
    .h4 {
        font-size: 20px;
    }

    .navbar-brand {
        width: 140px;
        height: 64px;
    }

    .nav-link {
        font-size: 16px;
    }

    .hero-sec-img {
        top: 26%;
    }

    .sub-title {
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .about-image {
        height: 420px;
    }

    .sa-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .sa-grid-item {
        height: 200px;
    }

    .photo-gallery-wrap {
        height: 300px;
    }

    .feedback-wrapper p {
        font-size: 16px;
        line-height: 28px;
        text-align: unset;
    }

    .feedback-icon {
        top: -34px;
        left: 34px;
        width: 68px;
        height: 68px;
        padding: 18px;
    }

    .feedback-wrapper {
        height: 240px;
    }

    .fdUser-icon {
        width: 64px;
        height: 64px;
    }

    .fdUser-name h6 {
        font-size: 16px;
    }

    .feedback-slider-wrap {
        margin-top: 80px;
    }

    .sec-spacing {
        padding: 90px 0;
    }

    .info-wrapper p,
    .info-wrapper a {
        font-size: 16px;
        line-height: 1.5;
    }

    .info-wrapper h5 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .contact-us-iframe {
        height: 400px;
    }
}

@media (max-width: 1429px) {}

@media (max-width: 1365px) {}

@media (max-width: 1199px) {

    .h1,
    h1 {
        font-size: 42px;
    }

    .nav-link {
        margin-right: 30px;
    }

    .nav-item:last-child .nav-link {
        margin-right: 40px;
    }

    .hero-banner {
        min-height: 530px;
    }

    .hero-text-wrapper h1 {
        line-height: 50px;
        margin-bottom: 16px;
    }

    .hero-text-wrapper {
        left: 4%;
    }

    .hero-text-wrapper p {
        line-height: 28px;
        letter-spacing: 0;
        padding-right: 20px;
    }

    .hero-sec-img {
        width: 260px;
        height: 350px;
        right: 10%;
    }

    .about-content {
        padding-left: 0;
    }

    .about-content p {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .feedback-wrapper {
        padding: 50px 20px 20px;
    }
}

@media (max-width: 1023px) {}

@media (max-width: 991px) {

    /* NAVBAR TOGGLER START */
    .navbar-expand-lg .navbar-toggler {
        display: block;
    }

    .navbar-toggler {
        width: 35px;
        height: 35px;
        padding: 0;
        border: none;
        text-align: center;
        position: absolute;
        right: 40px;
        top: 50%;
        z-index: 222;
        transition: all 0.5s;
        transform: translateY(-50%);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler span {
        position: relative;
        width: 100%;
        height: 2px;
        background-color: #fff;
        display: block;
        background-image: none !important;
        margin-left: auto;
    }

    .navbar-toggler span::after,
    .navbar-toggler span::before {
        position: absolute;
        content: "";
        width: 25px;
        height: 2px;
        background-color: #fff;
        right: 0;
        transition: all 0.5s;
    }

    .show-menu .navbar-toggler span {
        height: 0;
        background-color: var(--primary);
    }

    .navbar-toggler span::before {
        top: -7px;
    }

    .navbar-toggler span::after {
        top: 7px;
    }

    .show-menu .navbar-toggler span::after,
    .show-menu .navbar-toggler span::before {
        left: 0;
        right: 0;
        margin: auto;
        transform: rotate(45deg);
        top: -1px;
        background-color: var(--primary);
    }

    .show-menu .navbar-toggler span::after {
        transform: rotate(-45deg);
    }

    body.show-menu {
        overflow: hidden;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: flex-start;
        align-items: center;
        left: 0;
        right: 0;
        min-height: 100vh;
        height: 100vh;
        width: 100%;
        background-color: white;
        z-index: 99;
        transition: 0.3s all;
        top: 0;
        transform: translateX(-100%);
        padding: 100px 60px 60px;
        margin: 0 auto;
    }

    .show-menu .header-top {
        display: none;
    }

    .show-menu .navbar-collapse {
        transform: translateX(0);
    }

    .navbar-nav {
        margin: 0 auto 40px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* NAVBAR TOGGLER END */

    .navbar-brand {
        width: 100px;
        height: 56px;
    }

    .nav-link {
        color: #010101;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .nav-item:last-child .nav-link {
        margin-right: 0;
        margin-bottom: 0;
    }

    .nav-link:hover {
        color: var(--primary);
    }

    .hero-sec-img {
        display: none;
    }

    .hero-text-wrapper {
        width: 100%;
        left: 0;
    }

    .hero-text-wrapper {
        width: 100%;
        left: 0;
        padding: 0 30px;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-image {
        height: 310px;
    }

    .photo-gallery-wrap {
        height: 280px;
    }

    .feedback-icon {
        width: 60px;
        height: 60px;
        padding: 16px;
    }

    .feedback-wrapper {
        padding: 50px 30px;
        height: auto;
    }

    .fdUser-name {
        margin-top: 30px;
    }

    .feedback-slider-wrap .item {
        margin-bottom: 50px;
    }

    .info-wrapper-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .h2,
    h2 {
        font-size: 34px;
    }

    h4,
    .h4 {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .navbar-collapse {
        padding: 80px 30px 30px;
    }

    .navbar-brand {
        width: 80px;
        height: 50px;
    }

    .hero-text-wrapper {
        padding: 0 50px;
    }

    .sa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sa-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 22px;
    }

    .sa-grid-item {
        height: 170px;
    }

    .photo-gallery-wrap {
        height: 260px;
        border-radius: 8px;
    }

    .info-wrapper-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .info-wrapper svg {
        font-size: 26px;
        margin-bottom: 26px;
    }

    .contact-us-iframe {
        height: 310px;
    }
}

@media (max-width: 575px) {

    .h1,
    h1 {
        font-size: 38px;
    }

    .hero-text-wrapper {
        padding: 0 10px;
    }

    .hero-text-wrapper p {
        padding-right: 0;
    }

    .sa-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .feedback-wrapper::after {
        display: none;
    }
}

@media (max-width: 480px) {}

@media (max-width: 350px) {}