/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&display=swap');

/* Local Font */


:root {
    --white: #fff;
    --black: #000;
    --primary: #F9C740;
    --secondary: #333333;

}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: clip;
}

body {
    position: relative;
    background: #000;
    overflow-x: clip;
    height: 100%;
    font-family: var(--font-text);
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #D2D2D2;
    font-family: "Alegreya", serif;
}

h1,
h2,
h3 {
    font-family: "Roboto Slab", serif;
}

h4,
h5,
h6 {
    color: #fff;
    font-family: var(--font-heading);
}

.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.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */




.themeBtn {
    background: transparent;
    font-size: 0.8rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    padding: 1.5em 1.96em;
    border-radius: 0;
    line-height: normal;
    border: 1px solid #F9C740;
    position: relative;
    overflow: hidden;
    transition: .3s;
    z-index: 1;

}

.themeBtn::before {
    content: '';
    width: 0;
    height: 300%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--primary);
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.themeBtn:hover::before {
    width: 100%;
}

.themeBtn:hover {
    color: #000;
}


/* NAV HEADER 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 {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 51px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.75rem;
    color: #D2D2D2;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0 0;
    display: inline-block;
}

.rightnav .themeBtn {
    font-size: 0.75rem;
    color: var(--primary);
    padding: 1rem 1.4rem;
}

ul.rightnav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

ul.rightnav li a i {
    border: 1px solid rgb(242 242 242 / 80%);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: rgb(242 242 242 / 80%);
    transition: 0.5s ease;
}

div#navMenu:not(.show) {    
    justify-content: space-between;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 1000px;
}

.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 .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;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.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;
    color: #EDE0D4;
    font-size: 7.5rem;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 18px #B21818;
}

.slideOne h4 {
    font-size: 1.5625rem;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    font-family: "Playfair Display", serif;
}

.slideOne h2 {
    font-size: 2.625rem;
    font-weight: 600;
    color: #EDE0D4;
    text-transform: uppercase;
    letter-spacing: 13px;
    margin-bottom: 2rem;
    text-shadow: 0 0 18px #B21818;
}

.slideOne .themeBtn {
    border-color: #fff;
}

.slideOne {
    text-align: center;
}

/* !MAIN HERO SLIDER CSS */


.subHead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    font-family: "Playfair Display", serif;
}

.mainHead {

    color: #EDE0D4;
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 18px #B21818;
}


/* about-section */
figure.aboutfigure1 {
    position: relative;
}




.sideabt {
    position: absolute;
    top: 5%;
    right: -8px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-cntnt p {
    font-size: 1.125rem;
    width: 97%;
}

.abouticons {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-top: 2rem;
}

.abtcioncntn h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #EDE0D4;
}

.abtcioncntn p {
    font-size: 17.6px;
    width: 100%;
}

.about-cntnt .themeBtn {
    color: var(--primary);
    padding: 1.4em 1.7em;
    margin-top: 1rem;
}

.yearsbox h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #F9C740;
    border-top: 1px dashed #D2D2D2;
    padding-top: 16px;
    margin-top: 0;
}

.yearsbox {
    text-align: center;
    border: 1px solid #EDE0D4;
    background: #000;
    padding: 40px 36px;
    margin-top: 19rem;
}

.yearsbox h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #EDE0D4;
    text-transform: uppercase;
    border-bottom: 1px dashed #D2D2D2;
    letter-spacing: 1px;
    padding-bottom: 16px;
    margin-bottom: 0;
}

.about-section {
    border-bottom: 1px solid #f2f2f270;
}

/* about-section */

/* art-section */
.art-cntnt p {
    font-size: 17.6px;
}

.art-cntnt {
    text-align: center;
    margin-bottom: 48px;
}

figure.rightart {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.art-section .row+.row {
    margin-top: 21px;
}

/* art-section */

/* ready-section */
.ready-section {
    background: url(../images/readybg.webp)center/cover no-repeat;
    padding: 8rem 0;
}

.readycntnt {
    text-align: center;
}

.readycntnt p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #D2D2D2;
    margin: 1rem 0 1.5rem 0;
}

.readycntnt .themeBtn {
    border-color: #fff;
}

/* ready-section */

/* mett-art */
.meettop {
    text-align: center;
    margin-bottom: 49px;
}

.meet-section .themeBtn {
    margin-top: 2rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.meet-section {
    border-bottom: 1px solid #f2f2f263;
}

.insta-top {
    text-align: center;
    margin-bottom: 2rem;
}

/* mett-art */

/* Footer Css Start */

footer {
    background: #0F0F0F;
    padding-top: 6.25rem;
}

footer ul li a:hover {
    color: var(--primary);
}

.links {
    display: flex;
    justify-content: center;
    margin: 0 0 1.875rem 0;
    gap: 3rem;
}

.links li a {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
}


.socialLinks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socialLinks li a {

    color: var(--white);
}

.socialLinks li a:hover {

    color: var(--primary);
}

.copyRight {
    border-top: 1px solid rgb(255 255 255 / 24%);
    margin-top: 2.5rem;
    padding: 1.5rem 0;
}

.newsForm input {
    width: 100%;
    background: transparent !important;
    border: 1px solid #F2F2F2;
    border-radius: unset;
    height: 66px;
    padding-left: 1.5rem;
    box-shadow: unset !important;
    outline: unset !important;
    color: #fff !important;
}

.newsWraps {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.newsWraps .themeBtn {
    background: transparent;
    border: unset;
    color: var(--primary);
    height: 66px;
    border: 1px solid var(--primary);
}

.newsForm input::placeholder {
    color: rgb(255 255 255 / 50%);
}

form.newsForm {
    background: transparent;
    width: 100%;
}

footer h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #EDE0D4;
    margin-bottom: 2rem;
    text-align: center;
}

footer p {
    font-size: 1.125rem;
    color: #D2D2D2;
}

.copyRight p {
    text-align: center;
    color: #515151;
    font-size: 1.125rem;
    margin: 0;
}

.copyRight p span {
    color: #EDE0D4;
}

/* Footer Css End */


.rightnav .themeBtn:hover {
    color: var(--black);
    background: var(--primary);
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}



ul.rightnav li a:hover i {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.about-cntnt .themeBtn:hover {
    color: #000;
}

.newsWraps .themeBtn:hover {
    color: #000;
}

.meet-section .themeBtn:hover {
    color: #000;
}

/* Art sec start */

.art-section-img {
    text-align: center;
}

.art-section-img img {
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

.art-section-img h3 {
    color: var(--primary);
    margin-top: 1.285rem;
}

/* Pieces By rows Page Start */

.pieces-by-rows-img img {
    width: 100%;
    /* width: 100%; */
    height: 405px;
    margin-bottom: 2rem;
    border-radius: 17px;
}

.contact-form input{
    width: 100%;
    margin-bottom: 1.125rem;
    height: 50px;
    padding-left: 15px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #515151;
    outline: none;
    color: #D2D2D2;
    font-size: 1rem;
}

.contact-form textarea{
    width: 100%;
    resize: none;
    padding: 15px;
    background: transparent;
    border: none;
    background: transparent;
    border-bottom: 1px solid #515151;
    margin-bottom: 1.125rem;
    outline: none;
    color: #D2D2D2;
    font-size: 1rem;
}

.contact-form input::placeholder{
    font-size: 1rem;
    color: #D2D2D2;
}

.contact-form textarea::placeholder{
    font-size: 1rem;
    color: #D2D2D2;
}

.contactAnchor{
    text-align: center;
}