/*====================================================
    ROOT VARIABLES
====================================================*/ :root {
  --primary: #111111;
  --secondary: #b88b4a;
  --text: #555555;
  --white: #ffffff;
  --light: #f8f8f8;
  --border: #e8e8e8;
  --heading: 'Cormorant Garamond', serif;
  --body: 'Jost', sans-serif;
  --shadow: 0 15px 45px rgba(0, 0, 0, .08);
  --transition: .35s ease;
}
/*====================================================
    RESET
====================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  background: #fafafa;
  overflow-x: hidden;
}
img {
  width: none;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}
section {
  padding: 30px 0;
}
.container {
  max-width: 1200px;
}
/*====================================================
    TYPOGRAPHY
====================================================*/
h1, h2, h3, h4, h5 {
  font-family: var(--heading);
  color: #111;
}
h1 {
  font-size: 4.4rem;
  line-height: 1.05;
  margin-bottom: 25px;
}
h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 2.2rem;
}
h4 {
  font-size: 1.7rem;
}
p {
  color: var(--text);
  margin-bottom: 18px;
}
.section-heading {
  margin-bottom: 20px;
}
.section-heading span {
  display: block;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-subtitle {
  color: var(--secondary);
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}
.hero-line {
  width: 80px;
  height: 3px;
  background: var(--secondary);
  margin-bottom: 35px;
}
/*====================================================
    BUTTONS
====================================================*/
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
}
.btn-main:hover {
  background: var(--secondary);
  color: #111;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border: 2px solid #111;
  color: #111;
  border-radius: 50px;
}
.btn-outline:hover {
  background: #111;
  color: #fff;
}
/*====================================================
    HERO SECTION
====================================================*/
.hero-section {
  padding-top: 40px;
  background: #fff;
}
.hero-image {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: var(--shadow);
}
.hero-image img {
  width: 100%;
  transition: .5s;
}
.hero-image:hover img {
  transform: scale(1.06);
}
.image-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  color: #777;
}
/*====================================================
    DOCUMENTATION
====================================================*/
.documentation-section {
  background: #f7f7f7;
}
.document-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .35s;
  height: 100%;
}
.document-card:hover {
  transform: translateY(-8px);
}
.document-image {
  overflow: hidden;
}
.document-image img {
  width: 100%;
  transition: .5s;
}
.document-card:hover img {
  transform: scale(1.05);
}
.document-content {
  padding: 28px;
}
.document-content h4 {
  margin-bottom: 15px;
}
.document-content a {
  color: var(--secondary);
  font-weight: 600;
}
.document-content a i {
  margin-left: 8px;
}
.description-box {
  margin-top: 20px;
  background: #fff;
  border-left: 5px solid var(--secondary);
  padding: 35px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.description-box p {
  margin-bottom: 0;
}
/*====================================================
    GALLERY
====================================================*/
.gallery-section {
  background: #fff;
}
.gallery-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: .6s;
}
.gallery-card:hover img {
  transform: scale(1.08);
}
.gallery-caption {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  color: #666;
}
/*====================================================
    SERIES SECTION
====================================================*/
.series-section {
  background: #f5f5f5;
  padding: 40px 0;
}
.series-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.series-box span {
  display: inline-block;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}
.series-box h2 {
  margin-bottom: 40px;
}
.series-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
/*====================================================
    FOOTER
====================================================*/
.footer-section {
  background: #111111;
  color: #ffffff;
  padding: 70px 0 30px;
}
.footer-section h3 {
  color: #ffffff;
  margin-bottom: 15px;
}
.footer-section p {
  color: #bbbbbb;
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.footer-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--secondary);
  color: #111111;
  transform: translateY(-5px);
}
.footer-section hr {
  border-color: rgba(255, 255, 255, .15);
  margin: 40px 0 20px;
}
.copyright {
  color: #999999;
  font-size: 15px;
}
/*====================================================
    IMAGE HOVER
====================================================*/
.hero-image, .document-card, .gallery-card {
  cursor: pointer;
}
.gallery-card {
  transition: var(--transition);
}
.gallery-card:hover {
  transform: translateY(-8px);
}
/*====================================================
    FADE ANIMATION
====================================================*/
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/*====================================================
    SCROLLBAR
====================================================*/ ::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #eeeeee;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9d7338;
}
/*====================================================
    TEXT SELECTION
====================================================*/ ::selection {
  background: var(--secondary);
  color: #ffffff;
}
/*====================================================
    RESPONSIVE
====================================================*/
@media (max-width:1199px) {
  h1 {
    font-size: 3.8rem;
  }
  h2 {
    font-size: 2.6rem;
  }
}
@media (max-width:991px) {
  section {
    padding: 80px 0;
  }
  .hero-section {
    text-align: center;
  }
  .hero-line {
    margin: 25px auto 35px;
  }
  .hero-image {
    margin-top: 40px;
  }
  .section-heading {
    margin-bottom: 50px;
  }
  .gallery-card img {
    height: 340px;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
    margin-top: 30px;
  }
}
@media (max-width:767px) {
  section {
    padding: 70px 0;
  }
  h1 {
    font-size: 2.7rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  p {
    font-size: 16px;
  }
  .hero-section {
    padding-top: 80px;
  }
  .btn-main, .btn-outline {
    width: 100%;
    margin-bottom: 15px;
  }
  .series-box {
    padding: 40px 25px;
  }
  .series-buttons {
    flex-direction: column;
  }
  .gallery-card img {
    height: 260px;
  }
  .document-content {
    padding: 22px;
  }
  .description-box {
    padding: 25px;
  }
}
@media (max-width:480px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .gallery-card img {
    height: 220px;
  }
  .footer-social {
    gap: 10px;
  }
  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}
/*====================================================
    END OF FILE
====================================================*/

.redcolor{
	color: #E40D10;
}

.perf-height{
	min-height: 275px;
}