@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: "Poppins", sans-serif;
    background: #fff;
    overflow-x: hidden;
}

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #276a85;
    --primary-color: #9f8564;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4 {
    color: #000;
    font-family: "Raleway", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}

/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--theme-color);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary-color);
}

.preLoader img {
    width: 600px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(76deg) brightness(108%) contrast(101%);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
    background: var(--theme-color);
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.8em 2.15em;
    border-radius: 0;
    line-height: normal;
    border: none;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}

/* mouse animation css  */

/* navigation css */
.navbar-brand img {
    width: 200px;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-right: 3rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.an-navbar {
    padding: 0.35rem 0;
}

/* navigation css */

/* slider css */

.mainSlider {
    height: 100vh;
    position: relative;
    z-index: 1;
    padding: 0;
}

.pagetitle {
    height: 60vh;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.slideContent {
    text-align: center;
    margin-bottom: 8rem;
}

.slideContent h5 {
    font-size: 1.875rem;
    color: var(--white);
    margin: 0;
}

.slideContent h2 {
    font-size: 6.25rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.slideContent p {
    color: var(--white);
}

.slideContent .themeBtn {
    font-size: 1.125rem;
}

/* slider css */

.sectionHeading {
    position: relative;
    font-size: 3.75rem;
    font-weight: bold;
    padding-bottom: 30px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.sectionHeading img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.chooseBox {
    background: var(--white);
    box-shadow: 0 7px 10px rgb(0 0 0 / 16%);
    text-align: center;
    padding: 3rem 3rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.chooseBox::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000070;
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.chooseBox .choseImg {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.chooseBox:hover .choseImg,
.chooseBox:hover::before {
    opacity: 1;
}

.chooseBox figure {
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chooseBox :is(h2, p, a) {
    position: relative;
}

.chooseBox h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0 0 7px;
    text-transform: uppercase;
}

.chooseBox p {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
}

.chooseBox:hover figure img {
    filter: brightness(0) invert(1);
}

.chooseBox:hover h2,
.chooseBox:hover p {
    color: var(--white);
}

.chooseBox:hover .themeBtn {
    background: var(--white);
    color: var(--theme-color);
}

.storyMain {
    background: url(../images/storybg.jpg) no-repeat top center/ cover;
    position: relative;
    z-index: 1;
    height: 850px;
    margin-bottom: 4rem;
}

.storyMain:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(39 106 133 / 85%);
    z-index: -1;
}

.storyConent .sectionHeading {
    color: var(--white);
    margin-bottom: 1rem;
}

.storyConent .sectionHeading img {
    margin: 0;
    filter: brightness(0) invert(1);
}

.storyConent p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0 0 1.5rem;
    line-height: 1.9;
}

.themeBtn.whiteBg {
    background: var(--white);
    color: var(--primary-color);
}

.storyConent .themeBtn.whiteBg {
    font-size: 1.125rem;
}

.storyImg {
    position: relative;
    z-index: 1;
}

.storyImg img {
    height: 800px;
    object-fit: cover;
}

.storyImg:before {
    content: "";
    position: absolute;
    left: -25px;
    top: 25px;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    z-index: -1;
    box-shadow: 0 7px 10px rgb(0 0 0 / 16%);
}

.storyImg.storyImg--secondary:before {
    background: var(--theme-color);
    right: -25px;
    left: auto;
}

.selectBox figure {
    position: relative;
    z-index: 1;
}

.selectBox figure img {
    height: 500px;
    object-fit: cover;
}

.selectBox figure .show,
.selectBox figure .hide {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    right: 0;
}

.selectBox figure .hide {
    opacity: 0;
    padding-bottom: 3rem;
}

.selectBox figure .show h2,
.selectBox figure .hide h2 {
    padding-left: 2rem;
    font-size: 1.875rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 1.5rem;
    text-shadow: 0 0 2px black;
}

.selectBox figure .hide p,
.selectBox figure .hide a {
    margin-left: 2rem;
    padding-right: 1rem;
}

a.readBtn {
    background: var(--theme-color);
    width: 100%;
    height: 82px;
    text-align: center;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 10px rgb(0 0 0 / 16%);
}

.selectBox figure .hide h2 {
    padding-bottom: 0rem;
    margin: 0 0 2px;
    text-shadow: none;
}

.selectBox:hover figure .show {
    opacity: 0;
}

.selectBox {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-bottom: 3.5rem;
}

.selectBox:hover figure .hide {
    opacity: 1;
}

.selectBox figure .hide p {
    font-size: 15px;
    color: var(--white);
    margin: 0 2rem 10px;
    line-height: 1.8;
}

.selectBox figure .hide a {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    border-bottom: 1px solid var(--white);
    font-family: "Raleway", sans-serif;
    padding-right: 0;
    font-weight: 600;
}

.selectBox figure:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.selectBox:hover figure:before {
    opacity: 1;
}

.awayMain {
    background: url(../images/phonebg.jpg) no-repeat top center/ cover;
    position: relative;
    z-index: 1;
    background-size: 100% 406px;
}

.awayMain:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 504px;
    background-color: rgb(255 255 255 / 95%);
}

.title .sectionHeading {
    margin-bottom: 0;
    padding-bottom: 0.5rem;
}

.title p {
    font-size: 1.125rem;
}

.videoImg {
    position: relative;
}

.videoImg a {
    position: absolute;
    right: 4.5rem;
    bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.videoImg a div {
    width: 102px;
    height: 102px;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: var(--theme-color);
}

.videoImg a div:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 82px;
    height: 82px;
    background: var(--white);
    z-index: -1;
    border-radius: 50%;
}

.videoImg a span {
    font-size: 1.875rem;
    color: var(--white);
    font-weight: 400;
}

.videoImg video {
    width: 100%;
    height: 636px;
    object-fit: cover;
}

.gallerySlider {
    margin-right: -25rem;
    padding-left: 1rem;
}

:is(.gallerySlider, .gallerySlider1) .swiper-slide img {
    height: 500px;
    object-fit: cover;
}

.gallerySlider1 {
    margin-left: -25rem;
    margin-top: 2rem;
    padding-right: 1rem;
    margin-bottom: 2.5rem;
}

.galleryMain {
    background: url(../images/gallerybg.jpg) no-repeat top center/ cover;
    position: relative;
}

.galleryMain:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(255 255 255 / 95%);
}

.articleCard {
    position: relative;
    z-index: 1;
    margin-right: 3rem;
}

.articleCard:before {
    content: "";
    position: absolute;
    right: -20px;
    top: -30px;
    width: 81%;
    height: 92%;
    background: var(--primary-color);
    z-index: -1;
}

.articleHeading {
    padding: 0 2.3rem 2rem 12.3rem;
}

.articleHeading .heading {
    font-size: 3.125rem;
    color: #010101;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 4px;
}

.articleHeading p {
    color: var(--black);
}

.articleSlider .swiper-pagination {
    bottom: 0;
    left: inherit;
    width: auto;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.articleSlider {
    padding-bottom: 3rem;
}

.articleSlider .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: rgb(0 0 0 / 50%);
    opacity: 1;
}

.articleSlider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.articleSlider figure img {
    height: 611px;
    object-fit: cover;
}

.articleContent {
    background: #4d4d4d;
    padding: 9rem 8.8rem;
    margin-left: 2rem;
    position: relative;
    z-index: 9999;
}

.articleContent ul li {
    display: flex;
    align-items: center;
    gap: 3rem;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.articleContent ul li figure {
    flex-shrink: 0;
}

.articleContent ul li h6 {
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 3px;
}

.articleContent ul li p {
    color: var(--white);
    line-height: 1.8;
    margin: 0 0 4px;
}

.articleContent ul li a {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid var(--white);
}

.articleContent ul li:last-child {
    padding-bottom: 0;
    margin: 0;
    border: 0;
}

.articleMain {
    padding-bottom: 0;
}

footer {
    background: #17140f;
    padding-top: 5rem;
}

.footerLogo img {
    width: 300px;
}

.quickList h2 {
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 600;
    font-style: italic;
    margin: 0 0 1.3rem;
    text-transform: uppercase;
}

.quickList ul li a {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
}

.quickList ul li a:hover,
.calFoter ul li:hover a,
.articleContent ul li:hover a {
    color: var(--primary-color);
}

.quickList ul li+li {
    margin-top: 10px;
}

.calFoter ul li span {
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    font-style: italic;
    font-weight: 500;
}

.calFoter ul li {
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    font-style: italic;
    font-weight: 500;
}

.calFoter ul li strong {
    font-weight: 500;
}

.calFoter ul li+li {
    margin-top: 10px;
}

.calFoter ul li a {
    color: var(--white);
}

.calFoter ul {
    margin-top: 15px;
}

p.para {
    font-size: 14px;
    color: var(--white);
    margin: 0;
}

.copyRight {
    border-top: 1px solid rgb(215 215 215 / 50%);
    align-items: center;
    padding: 1.3rem 0;
    margin-top: 2rem;
}

.copyRight ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.copyRight ul li a {
    width: 41px;
    height: 41px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #17140f;
    font-size: 1.2rem;
}

.copyRight p {
    margin: 0;
    font-size: 17px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    font-style: italic;
}

.articleContent:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 80%;
    height: 23px;
    background: var(--primary-color);
    z-index: -1;
}

.copyRight ul li a:hover {
    background: var(--theme-color);
    color: var(--white);
}

.themeBtn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* About Us */
.about .aboutContent .sectionHeading {
    color: #000;
}

.about .aboutContent p {
    color: #6c6c6c;
}

.about .sectionHeading img {
    filter: none;
}

/* Products */
.product__img {
    height: 552px;
}

.product__img img {
    object-fit: cover;
}

.product__content>img {
    width: 126px;
}

/* Gallery */
.gallery__img {
    height: 545px;
    padding: 0.5rem;
}

.gallery__img>img {
    object-fit: cover;
}

/* Contact Us */
.contact__img {
    height: 608px;
}

.contact__img img {
    object-position: cover;
}

.contact__form :is(input, textarea) {
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    background-color: #c0c0c0;
    border: none;
    resize: none;
}

.contactBox .icon {
    width: 175px;
    height: 175px;
    font-size: 3rem;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px 5px #00000020;
    margin-bottom: 1rem;
    transition: all 300ms ease-in-out;
}

.contactBox :is(.title, a, address) {
    color: #000;
}

.contactBox:hover .icon {
    background: var(--theme-color);
    color: #fff;
}

/* Map */
.map {
    position: relative;
    margin-bottom: -7px;
}

/* Modal */
.poupDetail .modal-title {
    font-weight: 700;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: capitalize;
}

.poupDetail.modal .modal-body {
    padding: 1rem;
}

.poupDetail.modal .modal-body ul {
    list-style: disc;
    margin-left: 1.5rem;
    line-height: 2;
}

.selectBox figure img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}