@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: #000;
}

a {
  text-decoration: none;
  color: #000;
}

.container {
  width: 100%;
  max-width: 1320px;
  padding: 0px 30px;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0px 30px;
  margin: 0 auto;
}

.greenButton {
  background: #64b161;
  padding: 6px 20px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.redButton {
  background: #ca381f;
  padding: 6px 20px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.greenButton:hover {
  color: #64b161;
  background: none;
  border-color: #64b161;
}

.redButton:hover {
  color: #ca381f;
  background: none;
  border-color: #ca381f;
}

.showMobile {
  display: none;
}

.showDesktop {
  display: block;
}

h2.sectionHeading {
  font-size: 48px;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  margin-bottom: 30px;
}

h2.sectionHeading span {
  font-size: 22px;
  font-weight: 500;
  color: #ca381f;
  font-family: "Jost", sans-serif;
  display: block;
}

/*  */

#header {
  background: #fdeed9;
  height: 70px;
  display: flex;
  align-items: center;
}
#header .menuBar {
  display: flex;
  align-items: center;
}
#header .menuBar .logo {
  color: #000;
  font-family: "EB Garamond", serif;
  font-size: 26px;
  display: flex;
  align-items: center;
}
#header .menuBar .logo span {
  color: #ca381f;
  display: flex;
  align-items: center;
}
#header .menuBar .logo span:before {
  content: "";
  width: 21px;
  height: 1px;
  background: #ca381f;
  display: block;
}
#header .menuBar .menuWrap {
  display: flex;
  align-items: center;
  margin-left: auto;
}
#header .menuBar .menuWrap ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
}
#header .menuBar .menuWrap ul a {
  padding: 15px 0px;
  color: #000;
  display: block;
}
#header .menuBar .menuWrap ul a:hover {
  color: #ca381f;
}

/* Slider */

.slider {
  background-color: #fff5e9;
  background-image: url(../images/slider_bg.png);
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 50px 0px;
}

.slider h1 {
  font-size: 60px;
  margin-bottom: 0px;
}

.slider h1 span {
  display: block;
  color: #ca381f;
}

.slider p {
  background: rgba(202, 56, 31, 0.1);
  padding: 6px 20px;
  font-size: 28px;
  width: max-content;
  border-radius: 5px;
  font-weight: 500;
  margin-bottom: 45px;
}

.slider .sliderImgFrame {
  width: 659px;
  height: 608px;
  position: relative;
  margin-left: auto;
  zoom: 90%;
}

.slider .sliderImgFrame img {
  position: absolute;
  display: block;
}

.slider .sliderImgFrame img.frame-1 {
  top: 25px;
  left: 0;
}

.slider .sliderImgFrame img.frame-2 {
  top: 0px;
  right: 0;
}

.slider .sliderImgFrame img.frame-3 {
  bottom: 0px;
  left: 75px;
}

.slider .sliderImgFrame img.frame-4 {
  bottom: 0px;
  right: 92px;
}

/* About Us */

.aboutWrap {
  padding: 60px 0px;
  background-image: url(../images/about-bg-img.png);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
}

.aboutWrap .aboutImgWrap {
  position: relative;
  border: 1px solid #fecbd9;
  padding: 20px;
}

.aboutWrap .aboutImgWrap .profileImageWrap {
  position: absolute;
  right: -45px;
  bottom: -75px;
  border: 1px solid #fecbd9;
  padding: 15px;
}

.aboutWrap h5 {
  font-size: 22px;
  font-weight: 500;
  text-align: right;
  padding-right: 200px;
  color: #ca381f;
  margin-top: 20px;
}

.aboutTextWrap {
  padding-left: 70px;
}

.aboutWrap .aboutTextWrap p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Exhibition */

.exhibition {
  text-align: center;
  padding: 50px 0px;
}

.exhibition ul.nav {
  justify-content: center;
  gap: 30px;
}

.exhibition ul.nav li a {
  color: #000;
  background: rgba(202, 56, 31, 0.1);
  padding: 9px 24px;
  border-radius: 25px;
}

.exhibition ul.nav li a.active {
  color: #fff;
  background: rgba(202, 56, 31, 1);
}

.exhibition .tab-content {
  padding-top: 50px;
}

.exhibition .tab-content .row {
  gap: 20px 0px;
}

.exhibition .tab-content .row .col-md-3:nth-child(even) {
  margin-top: 50px;
}

.exhibition .exhibitionItem {
  position: relative;
  text-align: left;
}

.exhibition .exhibitionItem img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.exhibition .exhibitionItem .itemInfo {
  position: absolute;
  background: #fff;
  bottom: -36px;
  left: 0px;
  width: 90%;
  z-index: 9;
  padding: 15px;
  padding-left: 0px;
}

.exhibition .exhibitionItem p {
  font-size: 16px;
  margin-bottom: 10px;
}

.exhibition .exhibitionItem h4 {
  font-size: 22px;
  margin-bottom: 0px;
  font-family: "EB Garamond", serif;
}

.exhibition a.redButton {
  margin: auto;
  margin-top: 70px;
  display: block;
  width: max-content;
}

/* Precious Moments */

.precious {
  background: #fff5e9;
  padding: 70px 0px;
  text-align: center;
}

.precious .awardYear {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: row-reverse;
}

.precious .awardYear:before {
  content: "";
  height: 5px;
  background: rgba(202, 56, 31, 0.5);
  display: block;
  width: 100%;
  position: absolute;
  top: 40px;
}

.precious .awardYear p {
  font-size: 18px;
  font-family: "EB Garamond", serif;
  color: #000;
  font-weight: 500;
  width: max-content;
  text-align: center;
}

.precious .awardYear p:after {
  content: "";
  height: 28px;
  width: 20px;
  background: url(../images/ic_awardYear.png) no-repeat center;
  background-size: contain;
  display: block;
  margin: auto;
}

.precious .awardYear ul {
  margin-top: 21px;
  display: flex;
  gap: 30px;
}

.precious .awardYear ul li {
  font-size: 16px;
  max-width: 200px;
  text-align: center;
}

.precious .awardYear ul li::before {
  content: "";
  height: 41px;
  width: 41px;
  background: url(../images/awardIcon.png) no-repeat center;
  background-size: contain;
  display: block;
  margin: auto;
  position: relative;
  z-index: 9;
}

/* gallery */

.gallery {
  padding: 70px 0px;
  text-align: center;
}

.gallery ul {
  display: flex;
  align-items: center;
  overflow-x: auto;
  flex-wrap: nowrap;
  margin-bottom: 0px !important;
  margin: 0px 30px;
}

.gallery ul li:first-child a {
  margin-left: 0px !important;
}

.gallery ul li:last-child a {
  margin-right: 0px !important;
}

.gallery li a {
  padding: 5px 15px !important;
  background: #f2f1f1 !important;
  margin: 0px 10px !important;
  width: max-content !important;
  display: block !important;
  border-radius: 20px !important;
  color: #000 !important;
}

.gallery li a.active {
  background: #ca381f !important;
  color: #fff !important
}

.gallery li a:hover {
  background: #ca381f !important;
  color: #fff !important;
}

.gallery ul::-webkit-scrollbar-track {
  display: none;
}

.gallery ul::-webkit-scrollbar {
  display: none;
}

.gallery ul::-webkit-scrollbar-thumb {
  display: none;
}

.galleryData {
  padding: 45px 0px;
}

.galleryData ul {
  display: flex;
  gap: 20px;
}

.galleryData ul li {
  width: calc(20% - 16px);
}

.galleryData ul li img {
  width: 100%;
  height: 345px;
  object-fit: cover;
  min-width: 240px;
}

/* Press Clippings */

.pressClippings {
  background: #fff5e9;
  padding: 70px 0px;
}

.pressClippings ul {
  margin-bottom: 45px;
}

.pressClippings ul li {
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}

.pressClippings ul li:before {
  content: "";
  height: 6px;
  width: 6px;
  background: #ca381f;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 8px;
}

/* testimonials */

.testimonials {
  background: url(../images/review-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 0px;
  text-align: center;
}

.testimonials h2 {
  color: #fff;
}
.testimonials .reviewItemWrap {
  background: #fff;
  padding: 30px 20px;
  border-radius: 5px;
}
.testimonials .reviewItemWrap i {
  font-size: 28px;
  color: #ca381f;
  margin-bottom: 10px;
}
/* .testimonials .reviewItemWrap i:before {
  transform: rotate(180deg);
} */
.testimonials .reviewItemWrap p.reviewText {
  min-height: 110px;
  text-align: center;
  font-size: 19px;
  overflow-y: auto;
  margin-bottom: 20px;
}
.testimonials .reviewItemWrap h5 {
  font-size: 20px;
  color: #ca381f;
  margin-bottom: 0px;
}
.testimonials .reviewItemWrap h5 span {
  display: block;
  font-size: 16px;
  color: #000;
}

/* Insta Feeds */
.instafeeds {
  text-align: center;
  padding-top: 70px;
}
.instafeeds .instafeedsRow {
  display: flex;
  overflow-x: auto;
  margin-top: 30px;
}
.instafeeds .instafeedsRow .instaImgWrap {
  flex: 1;
  min-width: 200px;
}
.instafeeds .instafeedsRow .instaImgWrap img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

/* Footer */

#footer {
  background: url(../images/footerBg.jpg) no-repeat center;
  background-size: cover;
  padding: 1px 0px;
}

.formWrap {
  background: #fff;
  padding: 50px 75px;
  max-width: 1124px;
  border-radius: 5px;
  margin: 50px auto;
}

.formWrap h2 {
  margin-bottom: 20px;
}

.formWrap .ContactInfo li {
  font-size: 16px;
  margin-bottom: 10px;
}

.formWrap .ContactInfo li i {
  font-size: 20px;
  margin-right: 10px;
}

.formWrap .footerSocial {
  display: flex;
  margin-top: 20px;
  gap: 20px;
  font-size: 20px;
}

.footerForm {
  max-width: 415px;
  margin: auto;
}

.footerForm input {
  width: 100%;
  display: block;
  height: 38px;
  background: none;
  border: none;
  border-bottom: 1px solid #a7a7a7;
  margin-bottom: 20px;
}

.footerForm textarea {
  height: 70px;
  width: 100%;
  display: block;
  background: none;
  border: none;
  border-bottom: 1px solid #a7a7a7;
  margin-bottom: 20px;
  resize: none;
}

.footerForm button {
  background: #ca381f;
  width: 164px;
  height: 38px;
  border-radius: 5px;
  color: #fff;
  border: none;
}

input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none;
  box-shadow: none;
}

#footer .footerBottom {
  background: #000000;
  padding: 8px;
}

#footer .footerBottom a,
#footer .footerBottom li,
#footer .footerBottom p {
  color: #fff;
  font-size: 16px;
}

.whatsapp {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #64b161;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 999;
  /* transition: all 0.5s ease-in-out; */
}

.whatsapp span {
  position: absolute;
  width: 80px;
  background: #fff;
  color: #000;
  top: -45px;
  font-size: 16px;
  text-align: center;
  box-shadow: 0px 0px 10px 0px #0002;
  padding: 5px;
  border-radius: 5px;
}

/* About Page */

.innerBanner {
  background: url(../images/innerbanner.jpg) no-repeat center;
  background-size: cover;
  height: 35vh;
}

.innerBanner .overlay {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 30px;
}

.innerBanner .overlay h2 {
  color: #fff;

  font-weight: 500;
  margin-bottom: 0px;
  font-family: "EB Garamond", serif;
  font-size: 36px;
}

.innerBanner .overlay h2 span {
  font-size: 18px;
  display: block;
}

.moreInfo {
  padding-bottom: 40px;
}

.moreInfo p {
  font-size: 16px;
  margin-bottom: 15px;
}
/* Published Work: */
.publishedWork {
  padding: 40px 0px;
}
.publishedWork h2 {
  text-align: center;
}
.publishedWork ul {
  margin: 0px auto;
  max-width: 720px;
}
.publishedWork ul li {
  padding: 15px;
  border-bottom: 1px solid #333;
  position: relative;
  padding-left: 30px;
  font-family: "EB Garamond", serif;
  font-size: 22px;
}
.publishedWork ul li:before {
  content: "";
  height: 10px;
  width: 10px;
  background: #ca381f;
  display: block;
  position: absolute;
  left: 0px;
  top: 26px;
}
.publishedWork ul li:last-child {
  border-bottom: none;
}

/* exhibitions page */
.exhibitionsData {
  padding: 50px 0px;
}
.exhibitionsData .searchAndTabs {
  background: #fff5e9;
  border-radius: 10px;
  padding: 50px;
  padding-bottom: 20px;
}

.exhibitionsData .searchAndTabs .searchBar {
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.exhibitionsData .searchAndTabs .searchBar input {
  flex: 1;
  border: none;
  background: none;
  height: 40px;
}

.exhibitionsData .searchAndTabs .searchBar button {
  border: none;
  background: #ca381f;
  color: #fff;
  height: 40px;
  width: 150px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exhibitionsData.exhibition {
  padding-bottom: 100px;
}

.exhibitionsData.exhibition ul.nav {
  justify-content: flex-start;
}

/* artGalleryPage */

.artGalleryPage .galleryData ul {
  overflow: inherit;
  flex-wrap: wrap;
  margin: 0px 30px;
}

.artGalleryPage .galleryData {
  padding-bottom: 0px;
}

.testimonialsPage {
  padding-top: 50px;
}

.testimonialsPage .testimonialItem {
  padding: 20px 0px;
  border-bottom: 1px solid #333;
  position: relative;
  padding-top: 50px;
}

.testimonialsPage .testimonialItem i {
  font-size: 90px;
  color: #ca381f30;
  position: absolute;
  left: -15px;
  top: -10px;
}

.testimonialsPage .testimonialItem p {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
  padding-left: 40px;
}

.testimonialsPage .testimonialItem h5 {
  text-align: right;
  font-size: 20px;
  color: #ca381f;
  margin-bottom: 0px;
}

.testimonialsPage .testimonialItem h5 span {
  display: block;
  font-size: 16px;
  color: #000;
}

.contactPage {
  padding-top: 50px;
}

.contactPage .formWrap {
  background: none;
  padding: 0;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 50px;
  margin-top: 0px;
}

.contactPage iframe {
  display: block;
}

.artJourneyPage {
  padding: 50px 0px;
}

.artJourneyPage .galleryData ul {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.artJourneyPage .galleryData li {
  /* float: left; */
  width: calc(25% - 15px);
}

.artJourneyPage .galleryData img {
  /* float: left; */
  width: 100%;
}

/* .artJourneyPage ul {
}

.artJourneyPage ul li {
} */


.rightSlide{
  position: absolute;
    padding: 0px 10px;
    right: 5px;
    z-index: 9;
    background: #ca381f;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
}
.leftSlide {
  position: absolute;
    padding: 0px 10px;
    left: 5px;
    z-index: 9;
    background: #ca381f;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
}