@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway/Raleway-VariableFont_wght.ttf');
  font-weight: 100 800;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway/Raleway-Italic-VariableFont_wght.ttf');
  font-weight: 100 800;
  font-style: italic;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter/Inter-VariableFont_opsz.ttf');
  font-weight: 100 800;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter/Inter-Italic-VariableFont_opsz.ttf');
  font-weight: 100 800;
  font-style: italic;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('fonts/Instrument_Sans/InstrumentSans-VariableFont_wdth.ttf');
  font-weight: 100 700;
  font-style: normal;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('fonts/Instrument_Sans/InstrumentSans-Italic-VariableFont_wdth.ttf');
  font-weight: 100 700;
  font-style: italic;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #333;
  background-color: #F7F7F7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Instrument Sans', sans-serif;
}

a {
  display: inline-block;
}

.p-relative {
  position: relative !important;
}

.as-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: 0.5s ease;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.overlay-blk {
  background: rgba(0, 0, 0, 0.4);
}

.overlay-blk1 {
  background: rgba(0, 0, 0, 0.7);
}

.gld-btn-link {
  padding: 8px 12px;
  background: #D4A531;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none !important;
  transition: 0.4s ease;
}

.gld-btn-link:hover {
  background: #f8bd20;
}

.gld-btn {
  padding: 10px 25px;
  background: #D4A531;
  color: #ffffff;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none !important;
  transition: 0.4s ease;
  border: none;
  font-size: 14px;
}

.gld-btn:hover {
  background: #f8bd20;
}

.back-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: #333;
  margin-bottom: 10px;
  transition: 0.3s ease;
  font-size: 18px;
}

.back-link:hover {
  color: #D4A531;
}

.xs-text {
  font-size: 14px;
  font-weight: 600;
}

.gld-txt {
  color: #D4A531;
}

.side-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.side-img-sm {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.bg-light-gld {
  background: #F3F1ED;
}

.alert {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#close-alert {
  background: transparent;
  border: none;
  transition: 0.3s ease;
}

#close-alert:hover {
  color: #D4A531;
}

#success-alert {
  transition: 0.3s linear;
}

.hide {
  height: 0px;
  overflow: hidden;
}

/**
  Navbar
**/
.navbar {
  background: #F6EDD5;
  box-shadow: 0 0 4px rgba(0,0,0,.12);
}

.navbar .navbar-brand img {
  max-height: 50px;
}

.navbar .nav-item {
  margin-left: 12px;
}

.navbar .nav-item .nav-link {
  font-weight: 500;
  transition: 0.4s ease;
  font-size: 16px;
}

.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus {
  color: #D4A531;
}

.navbar .navbar-nav .nav-link.active, 
.navbar .navbar-nav .nav-link.show {
  color: #D4A531;
}

.navbar .nav-item .nav-btn {
  color: white;
  background: #D4A531;
  border-radius: 8px;
}

.navbar .nav-item .nav-btn:hover,
.navbar .nav-item .nav-btn:focus {
  color: white;
  background-color: #f8bd20;
}

/**
  Headers
**/
.about-header {
  position: relative;
  overflow: hidden;
  height: 600px;
  padding: 160px 0px 100px 0px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.about-header .content {
  max-width: 700px;
}

.about-header .sm-title {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.about-header h1 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 15px;
  max-width: 670px;
}

.about-header .descr {
  max-width: 520px;
  margin-bottom: 0px;
}

.mini-header {
  position: relative;
  overflow: hidden;
  padding: 160px 0px 100px 0px;
  display: flex;
  align-items: center;
  color: white;
  height: 520px;
}

.mini-header .sm-title {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.mini-header h1 {
  font-weight: 600;
  font-size: 45px;
  max-width: 650px;
}

.mini-header .descr {
  max-width: 520px;
  margin-bottom: 0px;
}

/**
  Carousel
**/
#main-carousel .carousel-item .carousel-content {
  min-height: 700px;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 80px;
}

#main-carousel .carousel-control-next, 
#main-carousel .carousel-control-prev {
  width: 10%;
}

#main-carousel .carousel-details {
  max-width: 700px;
}

#main-carousel .carousel-details h1 {
  font-size: 60px;
  font-weight: 600;
}

#main-carousel .carousel-details p {
  max-width: 600px;
}

/**
  About Section
**/
.about-section {
  padding: 100px 0px;
}

.about-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

/**
  Our Team
**/
.team {
  padding: 100px 0px;
}

.team-title {
  max-width: 500px;
  margin: 0px auto 80px auto;
  text-align: center;
}

.team-title h2 {
  font-weight: 600;
  font-size: 42px;
}

.team-title p {
  font-size: 18px;
}

.team-profile {
  text-align: center;
}

.team-profile img {
  max-width: 100%;
  border-radius: 100%;
  height: 200px;
  width: 200px;
  object-fit: cover;
  margin: 0px auto 20px auto;
}

.team-profile h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.team-profile p {
  font-size: 18px;
}

/**
  Services Section
**/
.services-section {
  padding: 100px 0px;
  background-color: #F6EDD5;
}

.services-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

/**
  Works Section
**/
.works-section {
  padding: 100px 0px;
}

.works-section .title-area {
  text-align: center;
  padding-bottom: 50px;
  max-width: 620px;
  margin: 0px auto;
}

.works-section .title-area h2 {
  font-weight: 600;
  line-height: 1.5em;
}

.work-card {
  border-radius: 12px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0,0,0,.12);
  font-size: 16px;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.work-card .img-area {
  display: block;
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
}

.work-card .img-area img:hover {
  transform: scale(1.2);
}

.work-card .body-area {
  padding: 20px;
  display: grid;
  grid-template-rows: 1fr auto;
}

.work-card p {
  color: #777777;
}

.work-card .body-area .date {
  margin-bottom: 5px;
  font-size: 13px;
}

.work-card .body-area h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.work-card .body-area .link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #D4A531;
  transition: 0.3s ease;
  font-size: 14px;
}

.work-card .body-area .link:hover {
  color: #f8bd20;
}

/**
  Consultation
**/
.consultation {
  position: relative;
  padding: 100px 0px;
  overflow: hidden;
  color: #fff;
}

.consultation .content {
  text-align: center;
  max-width: 680px;
  margin: 0px auto;
}

.consultation .content h2 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
}

.consultation .content p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5em;
}

/**
  Values
**/
.values {
  padding: 100px 0px;
  background: #F3F1ED;
}

.values .title-area {
  max-width: 520px;
  margin: 0px auto 50px auto;
  text-align: center;
}

.values .title-area h2 {
  font-weight: 600;
  font-size: 42px;
}

.values .title-area p {
  font-size: 18px;
}

.values .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}

.values .values-grid .item {
  padding: 30px 20px 40px 20px;
  background: #ffffff;
  font-size: 14px;
}

.values .values-grid .item i {
  color: #D4A531;
  font-size: 16px;
}

.values .values-grid .item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

/**
  Service Section
**/
.service-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  grid-column-gap: 5px;
}

/**
  Strengths Section
**/
.strengths-title {
  text-align: center;
}

.strengths-title p {
  max-width: 800px;
  margin: 0px auto 60px auto;
}

.strength-item {
  text-align: center;
}

.strength-item span {
  font-size: 28px;
  margin-bottom: 10px;
  display: inline-block;
}

/**
  FAQs Section
**/
.faq-section {
  padding: 100px 0px;
}

.faq-section .title-sect {
  max-width: 700px;
  text-align: center;
  margin: 0px auto 50px auto;
}

.faq-section .title-sect h2 {
  font-size: 34px;
  font-weight: 600;
}

.faq-section .title-sect p {
  font-size: 18px;
}

#faqAccordion .accordion-item {
  border: 0px;
  border-bottom: 1px solid rgba(8, 4, 3, 0.2);
  border-radius: 0px;
  background: transparent;
}

#faqAccordion .accordion-item:first-child {
  border-top: 1px solid rgba(8, 4, 3, 0.2);
}

#faqAccordion .accordion-button {
  padding: 20px 0px;
  border-radius: 0px;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  box-shadow: none !important;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 40px;
  align-items: center;
}

#faqAccordion .accordion-button span {
  font-size: 20px;
  transition: 0.3s ease-in-out;
}

#faqAccordion .accordion-button.collapsed span {
  transform: rotate(180deg);
}

#faqAccordion .accordion-button::after {
  display: none;
}

#faqAccordion .accordion-body {
  padding: 0px 0px 20px 0px;
}

/**
  Project Page
**/
.project {
  padding: 160px 0px 100px 0px;
}

.project-title {
  font-size: 38px;
  font-weight: 600;
}

.project-info {
  color: #777777;
}

.project-img {
  width: 100%;
  border-radius: 8px;
}

.project-body {
  padding: 20px 0px;
  line-height: 1.8;
}

#light-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  margin-top: 40px;
}

#light-gallery a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  padding-bottom: 100%;
}

#light-gallery a img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.4s ease;
}

#light-gallery a:hover img {
  transform: scale(1.1);
}

/**
  Contact 
**/
.consult {
  padding: 160px 0px 100px 0px;
}

.consult-title {
  text-align: center;
}

.consult-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.consult-title p {
  font-size: 18px;
}

.contact {
  padding: 160px 0px 100px 0px;
  /* background: #ffffff; */
}

.contact h2 {
  font-size: 38px;
  font-weight: 600;
}

.contact-details p {
  display: flex;
  align-items: center;
}

.contact-details p i {
  margin-right: 10px;
}

.contact-details p a {
  color: #333;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-details p a:hover {
  color: #D4A531;
}

.contact-form .form-label {
  font-size: 14px;
  font-weight: 600;
}

.contact-form .form-control {
  padding: 12px 15px;
  box-shadow: none !important;
  border: 1px solid #CECECE;
  border-radius: 5px;
}

.contact-form .form-control:active,
.contact-form .form-control:focus {
  border: 1px solid #333;
}

/**
  Footer
**/
.footer {
  padding: 80px 0px 40px 0px;
  background: #F6EDD5;
}

.footer-content {
  padding-bottom: 60px; 
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-column-gap: 20px; 
}

.footer-content .logo {
  width: 100%;
  max-width: 100px;
}

.footer-content .links {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  list-style: none;
  padding: 0px;
  margin-bottom: 0px;
}

.footer-content .links a {
  text-decoration: none !important;
  padding: 0px 5px;
  margin: 0px 10px;
  color: #090702;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-content .links a:hover {
  color: #D4A531;
}

.footer-content .socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-content .socials a {
  text-decoration: none !important;
  margin-left: 15px;
  font-size: 15px;
  color: #090702;
  transition: 0.3s ease;
}

.footer-content .socials a:hover {
  color: #D4A531;
}

.sub-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(9, 7, 2, 0.15);
  text-align: center;
  font-size: 14px;
}


@media(max-width: 820px) {
  body {
    font-size: 14px;
  }

  .about-header h1 {
    font-size: 54px;
  }

  .values .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-section h2 {
    font-size: 30px;
  }

  .about-section h2 {
    font-size: 30px;
  }

  #light-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact h2 {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: auto 1fr auto;
  }

  .footer-content .links a {
    margin: 0px 5px;
  }

  .footer-content .socials a {
    margin-left: 15px;
  }
}

@media(max-width: 768px) {
  #main-carousel .carousel-details h1 {
    font-size: 52px;
  }

  .about-header {
    height: 600px;
  }

  .about-header h1 {
    font-size: 38px;
  }

  .mini-header {
    height: 500px;
  }

  .mini-header h1 {
    font-size: 38px;
    max-width: 560px;
  }

  #light-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }

  .footer-content .logo {
    margin: 0px auto;
  }

  .footer-content .links {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-content .socials {
    justify-content: center;
  }

  .footer-content .socials a {
    padding: 0px 5px;
    margin: 0px 5px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .navbar .nav-item {
    margin-left: 0px;
    margin-bottom: 5px;
  }

  .navbar .nav-item .nav-btn {
    padding: 8px;
  }

  #main-carousel .carousel-details h1 {
    font-size: 36px;
  }

  .about-header h1 {
    font-size: 32px;
  }

  .mini-header h1 {
    font-size: 32px;
  }

  .side-img, .side-img-sm {
    height: auto;
  }

  .values .values-grid {
    grid-template-columns: 1fr;
  }

  #light-gallery {
    grid-template-columns: 1fr 1fr;
  }
}