@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=Cormorant+Garamond:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #9A0818;
    --secondary: #333333;
}

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

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

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}


/* How to add New font */


/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

section {
    position: relative;
    padding: 6rem 0;
}

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

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

h4,
h5,
h6 {
    color: #000;
}

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


/* 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(--black);
    z-index: 11113;
}

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


/* loader */


/* btn css */

.themeBtn {
    background: linear-gradient(180deg, #D21428, #9A0818);
    font-size: 15px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.9em 2.11em;
    border-radius: 6px;
    line-height: normal;
    transition: 0.5s ease;
    overflow: hidden;
    position: relative;
}

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

.themeBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(269deg, #000000c2, #e11f32);
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn:hover::before {
    left: 0;
}


/* btn css */


/* navigation css */

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

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

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

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    padding: 8px 10px;
    display: inline-block;
    position: relative;
    transition: 0.5s ease;
}


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

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    transition: 0.5s;
    transform: scaleY(2);
    opacity: 0;
}

.navbar-nav .nav-item .nav-link:hover:before {
    opacity: 1;
    transform: scaleY(1);
}

.navbar-nav .nav-item .nav-link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    transform: scaley(0);
    z-index: -1;
}

.navbar-nav .nav-item .nav-link:hover:after {
    background: var(--primary);
    transform: scaley(1);
}

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


/* navigation css */


/* slider css */

.main-slider {
    height: 1148px;
    /*background: url(../../upload/images/mainBnnr.png) center/cover no-repeat;*/
    overflow: hidden;
}

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

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* .homeSlider .swiper-pagination {
	bottom: 8rem;
	width: fit-content;
	left: 18rem;
} */

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}


/* .homeSlider .swiper-pagination-bullet {
	height: 12px;
	width: 12px;
	display: inline-block;
	margin: 0 0.5rem !important;
	opacity: 1;
	border: 1px solid var(--white);
	background: transparent;
}

*/

.swiper-pagination-bullet-active {
    font-size: 1.875rem;
    color: #fff;
    font-weight: 600;
}

.swiper-pagination1 .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    width: 88px;
    height: 1px;
    top: 24px;
    left: 38px;
    background: #fff;
    opacity: 0;
}

.swiper-pagination1 .swiper-pagination-bullet-active::before {
    opacity: 1;
}

.swiper-pagination1 {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    right: 6rem;
    top: 0;
    left: auto !important;
    width: fit-content !important;
    justify-content: center;
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 400;
    align-items: center;
}

.swiper-pagination1 .swiper-pagination-bullet {
    margin: 0 !important;
    background: none;
    color: white !important;
    width: auto;
    position: relative;
    opacity: 1;
}

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

.main-slider h1 {
    margin: 0 0 1.5rem;
    color: var(--white);
    font-size: 4.375rem;
    line-height: 1;
    font-weight: bold;
    text-transform: capitalize;
    text-shadow: 0 3px 6px rgb(0 0 0);
}

.slideOne h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 0 3px 6px rgb(0 0 0);
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 1.125rem;
}

img.img-fluid.pinkbordr {
    position: absolute;
    bottom: -1rem;
}

.sociallinkstop {
    position: absolute;
    left: 15%;
    bottom: 10.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sociallinkstop ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.sociallinkstop ul li a {
    font-size: 1rem;
    color: #FFFFFF;
}


/* slider css */

.mainHead {
    font-size: 4.375rem;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}


/* aboutsection css start*/

.aboutcntnt h4 {
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: var(--primary);
}

.aboutcntnt p {
    color: #646464;
    width: 90%;
}

.aboutSection figure {
    position: relative;
}

.aboutSection figure::before {
    content: "";
    position: absolute;
    width: 618px;
    height: 618px;
    background: #EBCDD0;
    border-radius: 50%;
    z-index: -1;
    bottom: 0px;
    right: 21px;
}

.aboutSection figure::after {
    content: "";
    position: absolute;
    width: 618px;
    height: 618px;
    border: 2px dashed #D21428;
    border-radius: 50%;
    left: -3.4rem;
    z-index: -1;
    top: -4px;
}

img.img-fluid.hammer11 {
    position: absolute;
    right: 1rem;
    bottom: -3.5rem;
}


/* aboutsection css end */


/* homeimprove css start*/

.homeimprove {
    /*background: url(../../upload/images/experiencebg.png) no-repeat;*/
    background-size: 100% 100%;
    padding: 20rem 0;
    z-index: 1;
}

.homeimprove .mainHead {
    text-align: center;
    color: #fff;
    text-shadow: 0 3px 6px #000;
}

a.playbtnn i {
    background: #fff;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    color: var(--primary);
    display: inline-grid;
    place-items: center;
}

.homeimprove .btngroup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}


/* homeimprove css end */


/*servicesec css start */

img.img-fluid.ser11 {
    position: absolute;
    top: 4rem;
    right: 2rem;
}

.servcntnt h2 {
    font-weight: 600;
    font-size: 3.75rem;
}

.servcntnt p {
    color: #646464;
    width: 82%;
}

.mainimgg figure {
    position: relative;
}

.mainimgg figure::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: #EBCDD0;
    border-radius: 50%;
    z-index: -1;
    bottom: 0px;
    right: -13px;
}

img.img-fluid.ser22 {
    position: absolute;
    top: 33%;
    left: 2rem;
}

img.img-fluid.ser33 {
    position: absolute;
    right: 3rem;
    bottom: 25%;
}

.mainwrapp {
    position: relative;
}

.mainwrapp::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    border: 1px dashed #9A0818;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.servcntnt .themeBtn {
    padding: 1rem 4rem;
}

.mainimgg figure img,
.imgabt2 img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.serviceSection {
    padding-top: 2rem;
}


/*servicesec css end */


/*whychooseSec css start*/

.whychooseSec {
    /*background: url(../../upload/images/choosebg.png)no-repeat;*/
    background-size: 100% 100%;
    padding: 20rem 0;
}

ul.chooselist li a {
    color: #fff;
}

ul.chooselist li {
    margin-bottom: 30px;
    line-height: 1.8;
}

ul.chooselist li i {
    color: #FF001B;
}

ul.chooselist {
    margin: 38px 0;
}

ul.chooselist li a {
    display: inline-flex;
    align-items: baseline;
    gap: 19.7px;
}

ul.chooselist li a div strong {
    margin-right: 5px;
}

img.imgfluid.choosetop1 {
    position: absolute;
    top: -1rem;
    width: 100%;
}

.para {
    color: var(--black);
    font-weight: 400;
    width: 60%;
    margin: 0 auto 2rem;
}


/*whychooseSec css end */


/*gallerysec css start*/

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

figure.secondimg {
    display: flex;
    align-items: center;
    gap: 1.625rem;
    padding-bottom: 1.625rem;
}

figure.thirdimg {
    display: flex;
    align-items: center;
    gap: 1.625rem;
}


/* figure.thirdimg img {
    height: 290px;
}

figure.secondimg img {
    height: 290px;
} */

.gallerys figure img {
    border-radius: 10px;
}

.gallerys {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallerys:hover a img,
.proudlyImg:hover img{
    transform: scale(1.1);
}

.gallerys a img,
.proudlyImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery--lg {
    height: 608px;
}

.gallery--md {
    height: 290px;
}


/*gallerysec css end */


/* Testimonial Sec Css Start */

.testimonialSec {
    background: #f7f7f7;
    padding: 5rem 0;
}

.testimonialSlider {
    padding: 2rem 0;
}

.userName h5 {
    font-size: 1rem;
    text-align: right;
    font-weight: 500;
    line-height: 1.5;
}

.userName h5 span {
    font-size: 12px;
    display: block;
    font-weight: 400;
}

.userName {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.userWraps {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    margin-bottom: -2.5rem;
}

.testimonailBox p {
    font-size: 0.9375rem;
    padding-top: 1rem;
    color: var(--black);
}

.testimonailBox {
    border: 1px solid #d5d5d5;
    background: var(--white);
    padding: 10px 1.125rem;
}

.quote {
    margin-top: -2rem;
}

.userName img {
    border: 3px solid var(--primary);
    border-radius: 100%;
}

img.img-fluid.toolss {
    position: absolute;
    right: 2rem;
    top: -5rem;
}


/* Testimonial Sec Css End */


/* Footer Css Start */

footer {
    background: url(../../upload/images/footBg.png) center/cover no-repeat;
    padding-top: 5rem;
}

.newsHead h2 {
    font-size: 3.125rem;
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

.newsForm input {
    background: #f7f7f7;
    height: 5rem;
    border-radius: 50px;
    border: 1px solid #d8d8d8;
    padding-left: 2rem;
    font-size: 1.375rem;
}

.newsForm input::placeholder {
    color: rgb(0 0 0 / 60%);
}

.newsForm {
    display: flex;
    align-items: center;
    position: relative;
}

.newsForm button {
    position: absolute;
    background: transparent;
    border: unset;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.links {
    display: flex;
    justify-content: center;
    gap: 4.3rem;
    margin: 5rem 0;
}

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

.links li a {
    font-size: 1.375rem;
    text-transform: uppercase;
    color: var(--white);
}

.contactInfo {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    margin-bottom: 3rem;
}

.contactInfo li figure {
    background: linear-gradient(180deg, #D21428, #9A0818);
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 2rem;
    transition: 0.5s ease-in-out;
}

.contactInfo li h5 {
    font-size: 1.375rem;
    color: #fff;
    font-weight: 500;
}

.contactInfo li a,
.contactInfo li p {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
}

.contactInfo li p {
    line-height: 1.5;
}

.socialLinks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socialLinks li a {
    background: var(--white);
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    font-size: 1.25rem;
    color: var(--black);
}

.socialLinks li a:hover {
    background: linear-gradient(180deg, #D21428, #9A0818);
    color: var(--white);
}

.copyRight p {
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

.copyRight {
    border-top: 1px solid #707070;
    margin-top: 4rem;
    padding: 2rem 0;
}

footer .mainHead {
    font-size: 5rem;
    color: #fff;
}

.foterAbout {
    text-align: center;
    margin-top: 3rem;
}

.foterAbout h2 {
    color: var(--white);
    font-size: 3rem;
}

.foterAbout p {
    color: var(--white);
    margin: 0 auto;
    width: 80%;
}


/* Footer Css End */

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 4.375rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: bold;
}

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

.innerBan::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 136px;
    bottom: -1rem;
    background: url(../images/innerbtm.png) no-repeat top center/ cover;
}

figure.imgabt2::after {
    position: unset;
}

.gallerySection.galleryinner {
    padding: 6rem 0;
}

.innertestimonial {
    background: unset;
    padding-top: 6rem;
}

.innertestimonial .testimonailBox {
    margin-bottom: 5rem;
}

.contactpage {
    background: url(../images/contactbg.png)center no-repeat;
    padding: 9rem 0 11rem 0;
}

.contact-form p {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    background-color: var(--white);
    border-radius: 5px;
    border: 0;
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
    resize: none;
    border: 1px solid #C0C0C0;
}

textarea.form-control {
    height: 218px;
}

.contact-form input.form-control {
    height: 68px;
}

button.btn.themeBtn {
    border: unset;
    z-index: 1;
}

.form-control::placeholder {
    color: #C0C0C0;
}

.privacyContent h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 1.5rem;
}

.privacyContent h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.privacyContent ul {
    margin-left: 2.7rem;
    margin-bottom: 2.2rem;
}

.privacyContent ul li {
    list-style: disc;
    color: var(--black);
    font-weight: 400;
    font-size: 1.1rem;
}

.privacyContent ul li+li {
    margin: 5px 0 0;
}

.privacyPolicy {
    padding-bottom: 4rem;
}

/* Videos */
.videos iframe{
    height: 400px;
    margin-bottom: 1rem;
}


.proudlyImg {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 0.75rem;
}


.proudlyImg img {
    object-fit: contain;
}

.gallerys a h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: var(--white);
}

.gallerys a {
    display: block;
    position: relative;
}

.gallery--md a img {
    height: 290px;
}
