/* FONT IMPORT */
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
    --white: #fff;
    --black: #000;
    --primary: #ff0000;
    --secondary: #333333;

}

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

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

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

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

h1,
h2,
h3 {
    font-family: "Aclonica", sans-serif;
}

h4,
h5,
h6 {
    color: #000;
    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 */

body.loading {
    overflow: hidden;
    height: 100vh;
}

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

.preLoader .counter {
    color: var(--white);
    font-size: 15rem;
    font-family: "Aclonica", sans-serif;
    font-weight: 700;
    position: absolute;
    bottom: 0rem;
    right: 5rem;
}

.preLoader .bar {
    height: 20%;
    width: 100vw;
    background-color: #373E43;
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: transparent;
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1em 1.9em;
    border: 1px solid #fff;
    line-height: normal;
}

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




/* NAV HEADER CSS */

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

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

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

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 1320px;
    background: url(../images/mainBnnr.webp)center/cover no-repeat;
    display: flex;
    align-items: center;
}


.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 5.625rem;
    line-height: 1.4;
    font-weight: 400;
    text-transform: capitalize;
}

.main-slider h4 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin: 26px 0 30px 0;
}

.right-bnr figure img {
    position: absolute;
}

.bnrimg1 {
    bottom: 10rem;
}

.bnrimg2 {
    bottom: -3.4rem;
    right: 1rem;
}

.bnrimg3 {
    top: 10rem;
    right: -1rem;
}

.left-bnr figure img {
    position: absolute;
}

.bnrimg4 {
    bottom: 11rem;
    right: -2rem;
}

.bnrimg5 {
    top: -7rem;
    left: 0;
}

.bnrimg6 {
    top: 13rem;
    right: -5rem;
}

.slideOne {
    margin-top: -8rem;
}

/* !MAIN HERO SLIDER CSS */

.border-heading {
    padding: 3rem 0 0 0;
    background: #1F2528;
    text-align: center;
}

.border-heading h4 {
    font-size: 130px;
    -webkit-text-stroke: 1px rgb(255 255 255 / 20%);
    -webkit-text-fill-color: transparent;
    margin-top: -7rem;
    text-transform: uppercase;
}

/* about-section */
.about-section {
    background: #1F2528;
    padding: 5.5rem;
}

.about-content h2 {
    font-size: 3.125rem;
    font-weight: 400;
    color: #fff;
}

.about-content h4 {
    font-size: 1.125rem;
    color: #fff;
    position: relative;
}

.about-content h4::before {
    position: absolute;
    content: "";
    width: 300px;
    height: 1px;
    background: linear-gradient(45deg, #fff, #1F2528);
    left: 6rem;
    top: 11px;
}

.about-content p {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2;
}

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

section.about-section figure::before {
    position: absolute;
    content: "";
    border: 1px solid #fff;
    width: 400px;
    height: 550px;
    top: 3rem;
    right: 36px;
    z-index: -1;
}

/* about-section */

/* ladies-abstract */
.ladies-abstract {
    background: #373E43;
    padding: 4rem 10px;
}

.abstract-head {
    text-align: center;
}

.abstract-head h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.abstract-head h2 {
    font-size: 4.375rem;
    color: #fff;
    font-weight: 400;
}

.ladies-cntnt h3 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
}

.ladies-cntnt p {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
}

.ladies-cntnt {
    margin: 1rem 0 73px 0;
}

.ladies-cntnt a {
    font-size: 1.5rem;
    color: #fff;
    display: inline-block;
    transform: rotate(320deg);
}

/* ladies-abstract */

/* high-resolution */
.high-resolution {
    background-color: #1F2528;
    padding: 8rem 0;
}

.high-resolution h2 {
    font-size: 69px;
    font-weight: 400;
    color: #fff;
}

section.high-resolution figure img {
    position: absolute;
}

.high1 {
    bottom: -6rem;
}

.high2 {
    bottom: 1rem;
    left: 15rem;
}

.high4 {
    left: 63%;
    bottom: -10rem;
}

.high3 {
    right: 39%;
    top: 9px;
}

/* high-resolution */


/* insta-sectoin */
.insta-section {
    background: #373E43;
}

.insta-section h2 {
    font-size: 4.375rem;
    font-weight: 400;
    text-align: center;
    color: #fff;
    margin-bottom: 2.5rem;
}

.instbtn {
    text-align: center;
    margin-top: 2rem;
}

/* insta-sectoin */


/* contact-section */

.contactsform .form-group .form-control {
    height: 70px;
    border-radius: unset;
    border-bottom: 1px solid #fff;
    background: unset;
    outline: unset;
    box-shadow: none;
    border-top: unset;
    border-right: unset;
    border-left: unset;
    color: #fff;
}

.contactsform .form-group .form-control::placeholder {
    font-weight: 400;
    color: #fff;
    font-size: 15px;
}

.contactsform .form-group textarea {
    height: 170px !important;
    padding-top: 1.5rem;
}

.contactForm .form-group {
    margin-bottom: 1.5rem;
}

.contactInner {
    background: #1F2528;
    padding: 5rem 0;
}

.contactInner h3 {
    font-size: 4.375rem;
    color: #fff;
}

.viewWork {
    margin-top: 2.5rem;
}

/* contact-section */



/* footer */
footer {
    background: #1F2528;
    padding-top: 4rem;
}

.quickList h2 {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 0 1.5rem;
    position: relative;
    padding-bottom: 20px;
}

.quickList h2:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 69px;
    height: 1px;
    background: var(--white);
}

.quickList ul li a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

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



form.subscribe {
    position: relative;
}

form.subscribe input {
    width: 100%;
    background: #fff;
    border: 0;
    border: 1px solid #fff;
    font-size: 1rem;
    padding-bottom: 10px;
    font-weight: 400;
    padding-left: 2rem;
    height: 50px;
}

form.subscribe input::placeholder {
    color: #717171;
    font-size: 17px;

}

form.subscribe button {
    position: absolute;
    left: 6px;
    background: transparent;
    border: 0;
    color: #717171;
    top: 9px;
}

.copyRight p {
    text-align: center;
    margin: 5rem 0 0;
    border-top: 1px solid #A2A2A2;
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
    padding: 1.9rem 0;
}

.calFoter .themeBtn {
    margin-top: 2rem;
}

/* footer */


.themeBtn:hover {
    background: #ee4c0c;
    color: #fff;
}

.ladies-cntnt a:hover {
    color: #ee4c0c;
    transform: rotate(0);
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ee4c0c;
}

.quickList ul li a:hover {
    color: #ee4c0c;
}

/* innerpages Start */

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

.innerBan h2 {
    font-size: 50px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    text-align: center;
}

.innerBan {
    position: relative;
}

.about-content p a {
    color: #fff;
    text-decoration: underline !important;
    font-size: 1.125rem;
}

.ladies-cntnt h4 {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
}

.exhibitions-page {
    background-color: #1F2528;
    padding-top: 6rem;
}

