@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
    --white: #fff;
    --black: #000;
    --primary: #BD9748;
    --secondary: #04070B;
    --heading: 'Trajan', sans-serif;
    --accent: #080C13;
}

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

body {
    position: relative;
    background: var(--secondary);
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@font-face {
    font-family: "Trajan";
    src: url('../font/trajan-bold.ttf');
}

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

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-family: 'Trajan', 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;
}


/* 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);
}

.preLoader video {
    width: 100%;
    height: 100vh;
}


/* loader */


/* btn css */

.themeBtn {
    background: var(--primary);
    font-size: 14px;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 9px 8px 9px 26px;
    border: 1px solid transparent;
    /* padding: 1em 1.75em; */
    border-radius: 30px;
    line-height: normal;
    border: 2px solid transparent;
}

.themeBtn i {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    margin-left: 13px;
}

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

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

.themeBtn:hover {
    color: var(--primary);
    background-color: white;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.01);
}

.themeBtn.borderBtn.primaryBtn {
    border-color: var(--primary);
    color: var(--primary);
}

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


/* btn css */


/* navigation css */

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

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    width: 85%;
}

.navbar-nav .nav-item .nav-link {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
}

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

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

.topBar {
    background-color: #121823;
    padding: 1rem 0;
}

.topBar ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topBar li {
    color: var(--primary);
    font-size: 14px;
}


/* navigation css */


/* slider css */

.heroSection {
    height: 1171px;
    position: relative;
    background: url('../images/mainbanner.png') center center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    /* overflow: hidden; */
}

.heroText {
    position: relative;
    z-index: 2;
}

.heroText h1 {
    font-size: 6.25rem;
    text-transform: uppercase;
    line-height: 1;
}

.heroText h2 {
    font-size: 4.75rem;
    line-height: 1;
    text-transform: uppercase;
}

.heroText p {
    width: 90%;
    line-height: 2;
    font-size: 1rem;
    margin: 1rem 0 2rem;
}

.buttonGroup {
    display: flex;
    gap: 22px;
}

.pathObj {
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 2.5rem;
}

.obj {
    position: absolute;
    animation: spin 15s linear infinite;
    z-index: 1;
}

.obj1 {
    bottom: 14%;
    left: 12%;
    animation-duration: 60s;
}

.obj2 {
    bottom: -2%;
    left: 43%;
}

.obj3 {
    bottom: 30%;
    right: 10%;
    animation-duration: 30s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* slider css */


/* Typography CSs */

.heading1 {
    font-size: 5.25rem;
    text-transform: uppercase;
    line-height: 1;
}

.heading2 {
    font-size: 4.75rem;
    text-transform: uppercase;
    line-height: 1;
}

.heading3 {
    font-size: 2.875rem;
    text-transform: uppercase;
    line-height: 1;
}

.heading {
    font-size: 3.75rem;
    text-transform: uppercase;
    line-height: 1;
}


/* !@Typography CSs */


/* About Section */

.aboutSection {
    position: relative;
    padding: 5.25rem 0;
}

.aboutObj {
    position: absolute;
    right: 2rem;
    bottom: -8rem;
}

.aboutSection p {
    line-height: 2;
}

.aboutFigure {
    position: relative;
    height: 570px;
}

.aboutFigure img {
    position: absolute;
}

.aboutFigure img:nth-child(2) {
    top: 18px;
    left: -18px;
    z-index: -1;
    animation: spin 120s linear infinite;
}


/* !@About Section */

.background {
    background: url('../images/bgimg.png') no-repeat center center;
}

.newbackground {
    background: url('../images/bgimg.png') no-repeat center center;
}


/* Product Section */

.productSlider {
    padding: 5px;
}

.swiper-button-prev {
    left: 170px;
    width: 75px;
    height: 75px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    width: 75px;
    height: 75px;
    background: url(../images/leftarrow.png) no-repeat center center;
    background-size: contain;
    transition: 0.5s;
}

.swiper-button-next {
    right: 170px;
    width: 75px;
    height: 75px;
}

.swiper-button-next::after {
    background: url(../images/rightarrow.png) no-repeat center center;
    background-size: contain;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    filter: brightness(0) invert(1);
}

.productCard {
    text-align: center;
    padding: 1rem 0;
    display: block;
    border-radius: 10px;
    transition: 0.5s ease;
}

.productSlider .productCard:hover,
.productInner .productCard:hover {
    box-shadow: 0 0 0px 1px var(--primary);
}

.productCard figure {
    margin-bottom: 2rem;
}

.productCard figure img {
    max-height: 160px;
}

.productCard h4 {
    font-size: 1.125rem;
}

.productCard p u {
    font-size: 1.125rem;
    font-weight: 500;
}


/* !@Product Section */


/* Offer Section */

.offerSection .productCard {
    cursor: pointer;
}

.offerSection .productCard figure {
    width: 158px;
    height: 158px;
    background-color: rgba(241, 144, 35, 0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
    margin: 2rem auto;
}

.offerSection .productCard h4 {
    font-size: 1rem;
    height: 3rem;
}

.productCard a {
    color: var(--white);
    text-transform: uppercase;
    text-decoration: underline !important;
    font-weight: 1.125rem;
}

.offerSection .productCard:hover figure {
    background-color: var(--primary);
}

.offerSection .productCard figure img {
    transition: 0.5s;
}

.offerSection .productCard:hover figure img {
    filter: brightness(0) invert(0);
    transform: scale(0.95);
}


/* !@Offer Section */

.ctaSection {
    position: relative;
    padding: 100px 0 134px 0;
}

.ctaSection p {
    width: 80%;
}

.ctaSection .maintrade {
    position: absolute;
    top: 30%;
    right: 10%;
    transform: translateY(-50%);
    max-width: 800px;
    z-index: -1;
}

.ctaSection .small {
    font-size: 15px;
    color: var(--white);
}

.blogSection {
    background: url('../images/blogimg.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 16.875rem 0 15rem;
    position: relative;
}

.blogSection::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 150%;
    background: url('../images/bgnew.png') no-repeat top center;
    z-index: -1;
}

.blogSlider {
    padding: 5px;
}

.blogCard {
    text-align: center;
    padding-bottom: 12px;
    transition: 0.5s ease;
}

.blogCard:hover {
    box-shadow: 0 0 0 1px var(--primary);
}

.blogCard img {
    margin-bottom: 2rem;
    width: 100%;
    transition: 0.5s;
}

.blogCard:hover img {
    transform: scale(1.05) rotate(2deg);
}

.blogCard a {
    color: var(--white);
    font-size: 1.125rem;
    text-transform: uppercase;
    text-decoration: underline !important;
}

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

.blogCard h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.showcase {
    text-align: center;
    margin-top: -10rem;
    position: relative;
    z-index: 1
}


/* Partners */

.partnersWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.partnersWrapper .partner {
    display: grid;
    place-items: center;
    width: 190px;
    height: 124px;
    background-color: var(--black);
    border: 2px solid #191F2A;
}


/* !@Partners */


/* Newsletter */

.newsletterBox {
    border-radius: 55px;
    background-color: #1A2027;
    display: flex;
    align-items: center;
    padding: 22px;
}

.newsletterBox input,
.newsletterBox input:focus {
    background-color: transparent !important;
    box-shadow: none !important;
    color-scheme: dark;
    border: 0;
    color: var(--white);
}


/* !@Newsletter */


/* footer */

footer {
    background: url('../images/footerbg.png') no-repeat top center;
    background-size: cover;
    padding: 16.5rem 0 5rem;
}

.footerLogo {
    margin-bottom: 2rem;
    display: inline-block;
}

footer h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem
}

footer a {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
}

footer li {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white);
}

footer li+li {
    margin-top: 12px;
}

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

.copyRight {
    border-top: 1px solid var(--primary);
    padding: 30px 0;
    margin-top: 3rem;
}

.sociallinks {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sociallinks a {
    width: 44px;
    height: 44px;
    border: 1px solid #A6B1BE;
    color: #A6B1BE;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.sociallinks a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* !@footer */


/* Inner Pages */

.heroSection.innerpageHero {
    height: 900px;
    background: url('../images/innerimg.png') no-repeat center center;
}

.heroSection.innerpageHero .obj1 {
    bottom: 18%;
}

.heroSection.innerpageHero .obj2 {
    bottom: -2.5%;
}

.heroSection.innerpageHero .obj3 {
    bottom: 39%;
}

.heroText h3 {
    font-size: 5rem;
}

.blogSection.inner {
    background-image: none;
    padding: 8rem 0 3rem;
}

.blogSection.inner::before {
    display: none;
}

.inner .blogCard {
    margin-bottom: 4rem;
}

.inner .blogCard a {
    font-size: 1.875rem;
    text-decoration: none !important;
}

.productSection.inner .productCard {
    margin-bottom: 4rem;
    display: inline-block;
    padding: 1rem 1rem;
}

.serviceInner .row+.row {
    margin-top: 3rem;
}

.contact .form-group {
    background-color: var(--white);
    border-radius: 35px;
    padding: 10px 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    /* gap: 5px; */
}

.contact .form-group.textarea {
    align-items: flex-start;
    border-radius: 24px;
}

.contact .form-group.textarea textarea {
    border: 0;
    width: 100%;
    outline: none;
}

.contact .form-group.textarea i {
    margin-top: 10px;
}

.contact label {
    color: var(--white);
}

.contact .form-group .form-control {
    border: 0;
    width: 100%;
    box-shadow: none;
}

.contact .themeBtn {
    margin-top: 1rem;
}

.contacttile {
    font-size: 2.3125rem;
}

.contactItem {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contactItem .iconBox {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: var(--primary);
    box-shadow: 0 0 0 0 rgba(189, 151, 72, 0.3);
    font-size: 1.875rem;
    color: var(--white);
}

.contactItem .contactDetail {
    flex: 1;
}

.contactDetail h5 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    /* margin-bottom: 1; */
}

.contactDetail p,
.contactDetail a {
    line-height: 1.6;
    font-size: 14px;
    color: var(--white);
}

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

.map {
    filter: grayscale(100%);
}

.partnerSection .objc1 {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -3rem;
}

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

h4.sp-testimonial-client-name {
    color: #FF9F1C !important;
}

.sp-testimonial-client-designation {
    color: #FF9F1C !important;
}

.testi {
    font-size: 55px;
}