/*=========================================================
MARION K SIMS
CSS PART 1
Global + Header + Hero
=========================================================*/
/*********************
RESET
*********************/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #454545;
  background: #faf9f6;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: .35s;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
:root {
  --primary: #b5433f;
  --dark: #222222;
  --text: #555555;
  --border: #e8e5df;
  --light: #ffffff;
  --bg: #faf9f6;
}
/*=========================
COMMON
=========================*/
.mks-wrapper {
  width: 100%;
  overflow: hidden;
}
.mks-container {
  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 0 0px;
}
section {
  position: relative;
}
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary);
  line-height: 1.15;
  font-weight: 600;
}
p {
  color: var(--secondary);
}
/*=========================
BUTTON
=========================*/
.mks-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  border: 1px solid #222;
  color: #222;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  margin-bottom: 10px;
}
.mks-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.mks-btn:hover {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
/*=========================
HEADER
=========================*/
.mks-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  z-index: 1000;
  position: relative;
}
.mks-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clearfix{
	clear: both;
}
/*=========================
LOGO
=========================*/
.mks-logo {
  margin-bottom: 10px;
  text-align: center;
}
.mks-logo img {
  width: 340px;
  max-width: 100%;
}
/*=========================
NAVIGATION
=========================*/
.mks-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.mks-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.mks-nav-row li a {
  color: #222;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: relative;
}
.mks-nav-row li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  color: var(--primary);
  transition: .35s;
}
.mks-nav-row li a:hover {
  color: var(--primary);
}
.mks-nav-row li a:hover::after {
  width: 100%;
}
@media (max-width:992px) {
  .mks-header {
    position: relative;
  }
  .mks-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    z-index: 999;
  }
  .mks-nav.active {
    display: block;
  }
  .mks-nav-row {
    display: block;
  }
  .mks-nav-row li {
    width: 100%;
  }
  .mks-nav-row li a {
    display: block;
    padding: 10px 25px;
    border-bottom: 1px solid #eee;
    text-align: center;
  }
}
/*=========================
MOBILE TOGGLE
=========================*/
.mks-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.mks-mobile-toggle span {
  width: 28px;
  height: 2px;
  background: #222;
  transition: .35s;
}
/* Hamburger Animation */
.mks-mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mks-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mks-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/*==================================================
HERO SECTION
==================================================*/
.mks-hero {
  position: relative;
  padding: 10px 0 10px;
  background: #fff;
}
.mks-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/*=========================
Hero Content
=========================*/
.mks-hero-content {
  max-width: 560px;
}
.mks-small-line {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 10px;
}
.mks-hero-title {
  font-size: 68px;
  line-height: 1.08;
  margin-bottom: 30px;
  font-weight: 600;
  color: #222;
}
.mks-hero-title span {
  color: var(--primary);
  font-style: italic;
}
.mks-hero-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--secondary);
  max-width: 500px;
  margin-bottom: 40px;
}
/*=========================
Hero Image
=========================*/
.mks-hero-art {

  justify-content: center;
  align-items: center;
}
.mks-main-photo2 {
  width: 100%;
  max-width: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.mks-main-photo2 img {
  width: 100%;
  display: block;
  transition: .5s ease;
}
.mks-main-photo2:hover img {
  transform: scale(1.03);
}
/*=========================
Tablet
=========================*/
@media (max-width:992px) {
  .mks-hero {
    padding: 70px 0;
  }
  .mks-hero-inner {
    gap: 50px;
  }
  .mks-hero-title {
    font-size: 52px;
  }
}
/*=========================
Mobile
=========================*/
@media (max-width:768px) {
  .mks-hero {
    padding: 60px 0;
  }
  .mks-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .mks-hero-content {
    max-width: 100%;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mks-small-line {
    margin: 0 auto 20px;
  }
  .mks-hero-title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .mks-hero-text {
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 30px;
  }
  .mks-btn {
    margin: 0 auto;
  }
  .mks-hero-art {
    order: 2;
  }
  .mks-main-photo2 {
    max-width: 450px;
    margin: auto;
  }
}
/*=========================
Small Mobile
=========================*/
@media (max-width:480px) {
  .mks-hero-title {
    font-size: 34px;
  }
  .mks-hero-text {
    font-size: 15px;
  }
  .mks-btn {
    padding: 13px 26px;
    font-size: 13px;
  }
  .mks-main-photo2 {
    max-width: 100%;
  }
}
/*=========================================================
MARION K SIMS
CSS PART 2
Collections + Cards + Quote Section
=========================================================*/
/*********************
COLLECTIONS
*********************/
.mks-collections {
  padding: 20px 0;
  background: #f8f6f2;
  position: relative;
}
.mks-collection-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
/*********************
CARD
*********************/
.mks-card {
  background: #fff;
  border: 1px solid #ece8e2;
  transition: .4s ease;
  overflow: hidden;
  position: relative;
}
.mks-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}
/*********************
IMAGE
*********************/
.mks-card-image {
  overflow: hidden;
  height: 200px;
  background: #efefef;
}
.mks-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}
.mks-card:hover .mks-card-image img {
  transform: scale(1.08);
}
/*********************
CONTENT
*********************/
.mks-card-content {
  padding: 20px 15px 10px;
  background: #e7e7e7;
  min-height: 110px;
}
.mks-card-content h3 {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #222;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/*********************
LINK
*********************/
.mks-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary);
}
.mks-card-link span {
  transition: .35s;
}
.mks-card:hover .mks-card-link span {
  transform: translateX(8px);
}
/*********************
CARD BORDER EFFECT
*********************/
.mks-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: .35s;
}
.mks-card:hover::after {
  width: 100%;
}
/*********************
QUOTE SECTION
*********************/
.mks-quote-section {
  padding: 20px 0;
  background: #e9e9e9;
  position: relative;
}
.mks-quote-wrapper {
  max-width: 980px;
  margin: auto;
  text-align: center;
  position: relative;
}
/*********************
QUOTE ICON
*********************/
.mks-quote-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 35px;
  background: #faf4f2;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mks-quote-icon span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  line-height: 1;
  margin-top: 25px;
}
/*********************
BLOCKQUOTE
*********************/
.mks-quote-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #222;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mks-quote-content h5 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  font-weight: 600;
}
/*********************
DECORATIVE ART
*********************/
.mks-quote-art {
  position: absolute;
  right: -80px;
  bottom: -30px;
  width: 170px;
  opacity: .98;
}
.mks-quote-art img {
  width: 100%;
  display: block;
}
/*********************
SECTION DECORATION
*********************/
.mks-collections::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: #d8d2cb;
}
.mks-quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--primary);
}
/*********************
SMOOTH ANIMATION
*********************/
.mks-card, .mks-card img, .mks-card-link, .mks-card-link span {
  transition: all .35s ease;
}
/*=========================================================
MARION K SIMS
CSS PART 3
Footer + Responsive + Mobile Menu
=========================================================*/
/*************************************************
FOOTER
*************************************************/
.mks-footer {
  background: #f7f4ef;
  padding:30px 0 15px;
  border-top: 1px solid #e9e4dc;
}
.mks-footer-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr 220px;
  gap: 10px;
  align-items: flex-start;
}
.mks-footer-logo img {
  width: 180px;
}
.mks-footer-about p {
  max-width: 520px;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 10px;
  text-align: center;
}
.mks-footer-copy {
  text-align: right;
}
.mks-footer-copy p {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}
/*************************************************
SOCIAL ICONS
*************************************************/
.mks-social {
  display: flex;
  gap: 15px;
}
.mks-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: .35s;
}
.mks-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
}
/*************************************************
UTILITY
*************************************************/
.text-center {
  text-align: center;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-40 {
  margin-top: 40px;
}
/*************************************************
TABLET
*************************************************/
@media (max-width:1200px) {
  .mks-container {
    width: 94%;
  }
  .mks-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .mks-hero-content {
    text-align: center;
  }
  .mks-small-line {
    margin: 0 auto 10px;
  }
  .mks-hero-text {
    margin: 0 auto 10px;
  }
  .mks-main-photo {
    position: relative;
    right: auto;
    margin: auto;
    width: 560px;
  }
  .mks-polaroid {
    width: 320px;
    right: 40px;
    bottom: 20px;
  }
  .mks-collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mks-footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mks-footer-logo img {
    margin: auto;
  }
  .mks-footer-about p {
    margin-left: auto;
    margin-right: auto;
  }
  .mks-social {
    justify-content: center;
  }
  .mks-footer-copy {
    text-align: center;
  }
}
/*************************************************
SMALL TABLET
*************************************************/
@media (max-width:992px) {
  .mks-header-inner {
    padding: 10px 0;
  }
  .mks-nav {
    display: none;
  }
  .mks-mobile-toggle {
    display: flex;
  }
  .mks-hero {
    padding: 10px 0;
  }
  .mks-hero-title {
    font-size: 56px;
  }
  .mks-main-photo {
    width: 100%;
    max-width: 520px;
  }
  .mks-polaroid {
    width: 280px;
  }
  .mks-collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .mks-card-image {
    height: 200px;
  }
  .mks-quote-content blockquote {
    font-size: 34px;
  }
  .mks-quote-art {
    display: none;
  }
}
/*************************************************
MOBILE
*************************************************/
@media (max-width:768px) {
  .mks-header {
    position: relative;
  }
  .mks-logo img {
    width: 300px;
  }
  .mks-hero {
    padding: 10px 0;
  }
  .mks-hero-title {
    font-size: 42px;
  }
  .mks-hero-text {
    font-size: 17px;
  }
  .mks-btn {
    padding: 15px 24px;
    font-size: 12px;
    letter-spacing: 2px;
  }
  .mks-main-photo {
    width: 100%;
  }
  .mks-polaroid {
    display: none;
  }
  .mks-collection-grid {
    grid-template-columns: 1fr;
  }
  .mks-card-image {
    height: 200px;
  }
  .mks-card-content {
    padding: 20px;
  }
  .mks-card-content h3 {
    font-size: 28px;
  }
  .mks-quote-section {
    padding: 30px 0;
  }
  .mks-quote-icon {
    width: 65px;
    height: 65px;
  }
  .mks-quote-icon span {
    font-size: 52px;
  }
  .mks-quote-content blockquote {
    font-size: 28px;
    line-height: 1.6;
  }
  .mks-footer {
    padding: 20px 0 25px;
  }
}
/*************************************************
SMALL MOBILE
*************************************************/
@media (max-width:480px) {
  .mks-container {
    width: 92%;
  }
  .mks-header-inner {
    gap: 20px;
  }
  .mks-logo {
    flex: auto;
  }
  .mks-logo img {
    width: 300px;
  }
  .mks-hero-title {
    font-size: 34px;
  }
  .mks-hero-text {
    font-size: 16px;
  }
  .mks-btn {
    width: 100%;
    justify-content: center;
  }
  .mks-card-image {
    height: 220px;
  }
  .mks-card-content h3 {
    font-size: 24px;
  }
  .mks-card-link {
    font-size: 12px;
  }
  .mks-quote-content blockquote {
    font-size: 18px;
    line-height: 24px;
  }
  .mks-footer-about p {
    font-size: 15px;
  }
  .mks-social a {
    width: 42px;
    height: 42px;
  }
}
/*************************************************
HAMBURGER ANIMATION
*************************************************/
.mks-mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mks-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mks-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/*************************************************
MOBILE MENU (optional if using JS)
*************************************************/
.mks-nav.mobile-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-top: 1px solid var(--border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
  z-index: 99;
}
.mks-nav.mobile-open .mks-nav-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
/*************************************************
SCROLL ANIMATION
*************************************************/
.mks-card, .mks-hero-content, .mks-main-photo, .mks-quote-wrapper, .mks-footer-wrapper {
  animation: fadeUp .8s ease both;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*************************************************
SELECTION
*************************************************/ ::selection {
  background: var(--primary);
  color: #fff;
}
::-moz-selection {
  background: var(--primary);
  color: #fff;
}
/*Gallery-page*/
/******************************
PAGE TITLE
******************************/
.page-title {
  padding: 10px;
}
.page-title h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  font-weight: 500;
  line-height: 65px;
}
.page-title p {
  margin-bottom: 10px;
  font-size: 20px;
  color: #777;
  max-width: 700px;
  line-height: 1.5;
}
.page-title2 {
  padding: 10px;
}
.page-title2 h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  font-weight: 500;
  line-height: 65px;
}
.page-title2 p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #777;
  max-width: 700px;
  line-height: 1.5;
}
/******************************
DECADE SECTION
******************************/
.decade {
  margin: 10px 0;
}
.decade p {
  padding: 0 70px;
  font-size: 16px;
  line-height: 24px;
}
.decade-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: #d11a1a;
  padding: 0 70px;
  line-height: 45px;
  z-index: 9000000;
}
.decade-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: #222;
  padding: 0 70px;
  line-height: 45px;
}
.decade-line {
  height: 2px;
  background: #e93b3b;
  margin: 18px 70px 40px;
}
/******************************
SLIDER
******************************/
.slider-wrapper {
  position: relative;
  padding: 0 70px;
}
.slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar {
  display: none;
}
/******************************
CARD
******************************/
.work {
  flex: 0 0 250px;
}
.work-image {
  overflow: hidden;
  background: #eee;
}
.work-image img {
  height: 170px;
  object-fit: cover;
  transition: .45s;
}
.work:hover img {
  transform: scale(1.05);
}
.work-title {
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.4;
}
.work-year {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
  color: #666;
}
/******************************
ARROWS
******************************/
.arrow {
  position: absolute;
  top: 55px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: .35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow:hover {
  background: #d11a1a;
}
.arrow.left {
  left: 18px;
}
.arrow.right {
  right: 18px;
}
/*=========================
SECTION
=========================*/
.gallery_section {
  padding: 40px 20px;
  background: #f6f6f3;
}
.gallery_container {
  max-width: 1100px;
  margin: auto;
}
/*=========================
CARD
=========================*/
.gallery_card {
  /*display: grid;
  grid-template-columns: 420px 1fr;*/
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, .08);
  transition: .45s;
}
.gallery_card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, .12);
}
/*=========================
IMAGE
=========================*/
.gallery_image {
  overflow: hidden;
}
.gallery_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
  border: solid 10px #222;
}
.gallery_card:hover img {
  transform: scale(1.08);
}
/*=========================
CONTENT
=========================*/
.gallery_content {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery_category {
  color: #b58c42;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.gallery_content h2 {
  font-size: 48px;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 5px;
  color: #a90301;
}
.gallery_artist {
  color: #666;
  font-size: 20px;
  margin-bottom: 25px;
}
.gallery_description {
  color: #555;
  font-size: 17px;
  max-width: 520px;
  line-height: 1.8;
}
/*=========================
FOOTER
=========================*/
.gallery_footer {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.gallery_size strong {
  display: block;
  font-size: 18px;
}
.gallery_size span {
  color: #888;
  font-size: 14px;
}
.gallery_button {
  background: #111;
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  transition: .35s;
}
.gallery_button:hover {
  background: #444;
  color: #fff;
}
/*=========================
RESPONSIVE
=========================*/
@media(max-width:900px) {
  .gallery_card {
    grid-template-columns: 1fr;
  }
  .gallery_image img {
    height: 420px;
  }
}
@media(max-width:768px) {
  .gallery_content {
    padding: 35px;
  }
  .gallery_content h2 {
    font-size: 42px;
  }
  .gallery_footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery_button {
    width: 100%;
    text-align: center;
  }
}
@media(max-width:480px) {
  .gallery_image img {
    height: 300px;
  }
  .gallery_content {
    padding: 25px;
  }
  .gallery_content h2 {
    font-size: 34px;
  }
  .gallery_description {
    font-size: 16px;
  }
}
.red-color {
  color: red;
  text-transform: uppercase;
}

.mt-30{
	margin-top: 30px;
}