/* FONT IMPORT */


/* Google Font */

@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');

/* Local Font */

:root {
    --white: #FFFFFF;
    --black: #000;
    --primary: #CCA33D;
    --secondary: #C6922B;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: clip;
}

body {
    position: relative;
    background: #fff;
    overflow-x: clip;
    height: 100%;
    font-family: "Poppins";
}

section {
    position: relative;
}

.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;
}


/* 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 */


/* PRELOADER */

.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 img {
    width: 300px;
}

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

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


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    padding: 1.125rem 2.2em;
    line-height: normal;
    align-items: center;
    gap: 0.625rem;
    border: 2px solid transparent;
}

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

.borderBtn {
    background: transparent;
    border-color: var(--white);
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1.25rem 9.375rem 0 9.375rem;
    transition: 0.3s ease-in-out;
}

.topListing {
    display: flex;
    gap: 2rem;
}

.topListing li a {
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
}

.topListing li a span {
    padding-left: 0.625rem;
}

.topPara {
    font-size: 0.875rem;
    color: var(--white);
    text-align: center;
    margin: 0;
}

.topIcons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: end;
}

.topIcons li a {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8125rem;
}

.navbar {
    width: 85%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(0 0 0 / 60%);
    padding: 1rem 3rem;
    backdrop-filter: blur(5px);
    margin-top: 1.25rem;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 160px;
}

.navbar-nav {
    align-items: center;
    gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.875rem;
    color: var(--white);
    padding: 0 0;
    display: inline-block;
}

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

.form-inline {
    gap: 1.625rem;
}

.form-inline a {
    color: var(--white);
    font-size: 1.25rem;
    position: relative;
}

.form-inline a span {
    font-size: 0.75rem;
    background: var(--secondary);
    width: 20px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    position: absolute;
    top: -5px;
    right: -10px;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 825px;
}

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

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.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: center;
}

.homeSlider .slide-inner:before {
    content: "";
    position: absolute;
    background: var(--black);
    opacity: 20%;
    inset: 0;
}

.slideOne {
    margin-top: 10rem;
}

.slideOne h1 {
    color: var(--white);
    font-weight: 800;
    font-size: 3.25rem;
}

.borderLine {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.borderLine p {
    color: var(--white);
    font-size: 0.875rem;
    line-height: 1.9;
    width: 81%;
    margin: 0;
}

.slideOne .btn-group {
    gap: 1rem;
    align-items: center;
}


/* !MAIN HERO SLIDER CSS */


/* About Sec Css Start */

.aboutSec {
    padding: 4.375rem 0;
}

.aboutSec .row+.row {
    margin-top: 8.125rem;
}

.aboutImages {
    position: relative;
}

.aboutTwo {
    position: absolute;
    right: -1rem;
    top: 6rem;
}

.aboutContent {
    margin: 2rem 0 0 1.5rem;
}

.smallHeading {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.secHeading {
    color: var(--black);
    font-weight: bold;
    font-size: 2.875rem;
}

.aboutContent .borderLine p {
    color: #777777;
}

.aboutWraps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.aboutBox {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.aboutBox h3 {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--black);
}

.aboutBox p {
    margin: 0;
    color: #777777;
    line-height: 1.9;
}

.aboutContent .borderLine {
    margin: 1rem 0 1rem 0;
}

.themeBtn1 {
    background: var(--secondary);
}

.serviceWrap {
  border: 2px solid #EFEFEF;
  background: var(--white);
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
  padding: 2.625rem 2.625rem;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.serviceWrap:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.serviceWrap figure {
    text-align: center;
    margin-bottom: 1.75rem;
}

.serviceWrap figure img {
    transition: 0.5s ease;
}

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

.serviceContent h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    transition: 0.5s ease;
}

.serviceWrap:hover h3,
.serviceWrap:hover p {
    color: var(--white);
}

.serviceContent p {
    color: #777777;
    line-height: 1.9;
    margin: 0;
    transition: 0.5s ease;
}


/* About Sec Css End */


/* Video Sec Css Start */

.videoSec {
    background: url(../images/videoBg.webp)center/cover;
    padding: 11.25rem 0;
    background-attachment: fixed;
}

.videoContent p {
    color: var(--white);
    font-size: 0.875rem;
    line-height: 1.9;
    width: 70%;
    margin-bottom: 2rem;
}

.videoBox {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5rem;
}

.videoBox h4 {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 1rem;
    margin: 0;
}

.videoWrap a {
    position: relative;
}

.videoWrap a:before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 35px;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -2.5rem;
}

.videoWrap span {
    background: var(--white);
    width: 95px;
    height: 55px;
    display: grid;
    place-items: center;
    color: var(--secondary);
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    outline: 10px solid rgb(255 255 255 / 20%);
}

.videoWrap span:before,
.videoWrap span:after {
    content: "";
    position: absolute;
    background: var(--white);
    width: 140px;
    height: 95px;
    opacity: 20%;
    z-index: -1;
}

.videoWrap span:after {
    width: 160px;
    height: 110px;
}


/* Video Sec Css End */


/* Ministries Sec Css Start */

.ministriesHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.ministriesWrap figure {
    overflow: hidden;
}

.ministriesWrap figure img {
    transition: 0.8s ease;
}

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

.ministriesWrap h3 {
    font-size: 1.625rem;
    font-weight: bold;
    color: var(--black);
    border-bottom: 1px solid var(--secondary);
    margin: 0;
    padding: 1.5rem 0;
}


/* Ministries Sec Css End */


/* Staff Sec Css Start */

.staffSec {
    background: url(../images/staffBg.webp)center/cover;
    padding: 6.875rem 0;
    background-attachment: fixed;
}

.staffHeading {
    margin-bottom: 4rem;
}

.staffWrap {
    text-align: center;
}

.staffWrap figure {
    position: relative;
}

.plus {
    background: var(--secondary);
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    border: 2px solid var(--white);
    color: var(--white);
    position: absolute;
    top: 0;
    right: 4.5rem;
}

.staffContent span {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9375rem;
    display: block;
    margin: 1.2rem 0 0.625rem 0;
}

.staffContent h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}


/* Staff Sec Css End */


/* Testimonial Sec Css Start */

.testimonialSec {
    padding: 4rem 0 2rem 0;
}

.testimonialSec:before {
    content: "";
    position: absolute;
    background: var(--black);
    height: 72%;
    width: 56%;
    right: 0;
    bottom: 0;
}

.testimonialHeading p {
    color: #777777;
    line-height: 1.9;
    width: 95%;
    margin: 0.75rem 0 0 0;
}

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

.testimonialContent h4 {
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
    color: var(--white);
}

.testimonialContent {
    margin-top: 1rem;
}

.mySwiper .swiper-slide-next .testimonialImage img {
    transform: scale(1.5);
}

.testimonialImage img {
    transition: 0.5s ease;
}

.mySwiper {
    padding: 3rem 0;
}

.mySwiper2 .swiper-pagination-bullet {
    background: var(--white);
    height: 7px;
    width: 30px;
    border-radius: unset;
    opacity: 1;
    transition: 0.5s ease;
}

.mySwiper2 .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 50px;
}

.mySwiper2 .swiper-pagination {
    display: flex;
    justify-content: end;
}

.mySwiper2 {
    padding-bottom: 4rem;
}


/* Testimonial Sec Css End */


/* Footer Css Start */

footer {
    padding-top: 4.375rem;
}

footer h3 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--black);
}

.footerSocials p {
    color: #767676;
    font-size: 0.875rem;
    width: 50%;
    margin: auto;
}

.footerSocials {
    text-align: center;
}

.footerSocials ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
}

.footerSocials ul li a {
    background: var(--secondary);
    width: 58px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1.25rem;
}

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

.sndMessage {
    font-size: 0.875rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    letter-spacing: 2px;
}

.newsletterWrap {
    margin-top: 5rem;
}

.newsletterWrap h3 {
    margin-bottom: 1rem;
}

.newsForm {
    background: #E0E0E0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsForm input {
    border: unset;
    background: unset;
    outline: unset;
    box-shadow: unset;
    font-size: 0.9375rem;
    color: #757575;
    letter-spacing: 1px;
    padding-left: 1.125rem;
}

.newsForm input::placeholder {
    color: #757575;
}

.newsForm .themeBtn1 {
    font-weight: 500;
    letter-spacing: 1.2px;
    padding: 14.5px 2.78em;
    border: unset;
    outline: unset;
}

.copyRight {
    background: var(--secondary);
    margin-top: 4.0625rem;
    padding: 0.8125rem 0;
}

.copyRight p {
    color: var(--white);
    text-align: center;
    margin: 0;
}

.copyRight p span {
    font-weight: 600;
}


/* Footer Css End */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */

/* inner-pages */
.padd-y {
    padding: 5rem 0;
}

.inner-banner, .inner-banner img {
    width: 100%;
    height: 680px;
}

.inner-banner img {
    object-fit: cover;
}

.inner-banner::before {
    content: "";
    background: rgba(0, 0, 0, 20%);
    position: absolute;
    inset: 0;
}

.inner-banner__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.inner-banner__content h1 {
    font-size: 3.125rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white);
    margin: 0;
}

.aboutSec.about-inner .row+.row {
    margin-top: 3.875rem;
}

.about-inner .aboutBox.borderLine p {
    width: 100%;
}

/* shop-section */
.shop-section .secHeading {
    color: #022147;
}

.shopcard {
    margin-bottom: 3rem;
}

.shopcard__img {
    display: block;
    background: var(--white);
    padding: 1rem;
    margin: 0 auto;
}

.shopcard__img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.shopcard__content {
    border-width: 0 2px 2px 2px;
    border-style: solid;
    border-color: #EFEFEF;
    padding: 1.375rem;
}

.shopcard__content a h4 {
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: capitalize;
    color: #022147;
    margin: 0 0 1rem;
}

.shopcard__content .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.shopcard__content .price h6 {
    font-size: 14px;
    font-weight: bold;
    color: #F74F22;
    margin: 0;
}

.shopcard__content .price .cost-price {
    font-weight: 400;
    color: #777777;
}

.ministries-inner .row:not(:last-child) {
    margin-bottom: 3.75rem;
}

.ministries-inner__content h4 {
    font-size: 2.625rem;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--black);
}

.ministries-inner__content p {
    line-height: 1.9;
    color: #777777;
    margin: 0;
}

/* contact-section */
.contact-box {
    background: var(--white);
    box-shadow: 0 0 60px 30px rgb(0, 0, 0, 3%);
    border-radius: 0.625rem;
    padding: 0.625rem;
}

.contact-info {
    position: relative;
    padding: 2.5rem;
    background: var(--secondary);
    border-radius: 0.3125rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8rem;
    overflow: hidden;
}

.contact-info-title h4 {
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white);
}

.contact-info-title p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
}

.contact-info-list,
.contact-info-link {
    display: flex;
    align-items: flex-start;
}

.contact-info-list {
    flex-direction: column;
    gap: 3.125rem;
}

.contact-info-list li a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    display: flex;
}

.contact-info-list li a span i {
    font-size: 1.125rem;
    margin-right: 1.75rem;
}

.contact-info-link {
    gap: 1.5rem;
}

.contact-info-link li a {
    display: grid;
    place-items: center;
    width: 40px;
    aspect-ratio: 1;
    border: 1px solid var(--white);
    border-radius: 50%;
    color: var(--white);
}

.contact-shape-sm {
    width: 138px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgb(72, 72, 72, 50%);
    position: absolute;
    bottom: 4.375rem;
    right: 4.375rem;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.contact-shape-lg {
    width: 270px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    bottom: -5.375rem;
    right: -5.5625rem;
    user-select: none;
    pointer-events: none;
}

.contactForm {
    padding: 0 3.125rem;
}

.contactForm-group,
.contactForm-subject {
    margin-bottom: 2.75rem;
}

.contactForm-group label {
    font-size: 1rem;
    font-weight: 500;
    color: #8D8D8D;
    margin: 0;
}

.contactForm-group :is(input[type="text"], input[type="email"], input[type="tel"], textarea) {
    display: block;
    width: 100%;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #8D8D8D;
    padding: .45em 0;
    outline: none;
    font-size: 1rem;
    color: var(--black);
}

.contactForm-subject h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.radiowrap .radiobtn:not(:last-child) {
    margin-right: .5rem;
}

.radiowrap .radiobtn label {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
}

.contactForm-btn .themeBtn {
    border-radius: 0.3125rem;
    display: block;
    margin: 0 0 0 auto;
    outline: none;
}

.aboutBox div {
    flex: 1;
}

/* modal css start */

.team-modal .modal-dialog {
    max-width: 50%;
}

.team-modal .modal-content {
    background: var(--primary);
}

.team-modal .modal-content .close {
    all: unset;
    position: absolute;
    right: 0;
    cursor: pointer;
    text-shadow: unset;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 11;
}


.team-modal .modal-dialog .modal-body {
    padding: 2rem 3rem;
}
.staffContent a {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
}

/* modal css end */


/* hide sections */
.serviceContent p .themeBtna {
    display: none;
}

.serviceWrap .serviceContent p + p {
    display: none;
}

.serviceWrap p {
    height: 175px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
}

.serviceWrap p + br {
    display: none;
}