
/* ---------------------------------------------------------------- */
/* 01.Base                               
/* ---------------------------------------------------------------- */
/*body, html {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #331D2C;
  margin: 0;
  padding: 0;
}*/

::-moz-selection {
  background: #FFB07F;
  color: #000;
}

::selection {
  background: #FFB07F;
  color: #000;
}

a:link, a:hover, a:active, a:visited {
  text-decoration: none;
}

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

textarea, textarea:focus, input, input:focus, button, button:focus {
  outline: none;
  resize: inherit;
}

/* ---------------------------------------------------------------- */
/* 02.Typography                               
/* ---------------------------------------------------------------- */
/*h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 3rem;
}

h2, .h2 {
  font-size: 46px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 22px;
}

h5, .h5 {
  font-size: 20px;
}

h6, .h6 {
  font-size: 18px;
}

p {
  line-height: 28px;
  margin: 0;
}*/

/* ---------------------------------------------------------------- */
/* 03.Helper Class                              
/* ---------------------------------------------------------------- */
.page-wrapper {
  overflow: hidden;
  position: relative;
}

.section {
 /* padding: 100px 0;*/
  overflow: hidden;
}

.section .section-heading {
  margin-bottom: 50px;
  text-align: center;
}

.section .section-heading .section-sup-title {
  margin-bottom: 10px;
  color: #FFB07F;
  font-weight: 600;
}

.section .section-heading .section-title {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.section .section-heading .section-title span {
  margin-left: 15px;
  color: #FFB07F;
}

.section .section-heading .section-title:after, .section .section-heading .section-title:before {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section .section-heading .section-title:after {
  width: 100px;
  height: 2px;
  background: #000;
  bottom: 0;
}

.section .section-heading .section-title:before {
  width: 40px;
  height: 10px;
  background: #FFB07F;
  z-index: 5;
  bottom: -4px;
}

.pb-minus-70 {
  padding-bottom: 70px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  .section .section-heading .section-title {
    font-size: 2rem;
  }
}

/* ---------------------------------------------------------------- */
/* 04.Buttons                            
/* ---------------------------------------------------------------- */
.mt-button {
  display: inline-block;
  background: #FFB07F;
  color: #000 !important;
  padding: 20px 70px;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  letter-spacing: 2px;
  position: relative;
  font-weight: 500;
}

.mt-button .mt-btn-dark-text,
.mt-button .mt-btn-front-text {
  display: block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.mt-button .mt-btn-dark-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.mt-button:hover {
  background: #ff914c;
  color: #000 !important;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 5px 10px 0 rgba(51, 29, 44, 0.5);
          box-shadow: 0 5px 10px 0 rgba(51, 29, 44, 0.5);
}

.mt-button:hover .mt-btn-dark-text {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.mt-button:hover .mt-btn-front-text {
  opacity: 0;
  visibility: hidden;
}

/* ---------------------------------------------------------------- */
/* 05.Hero                               
/* ---------------------------------------------------------------- */
.hero {
  height: 650px;
  background: #331D2C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero h2, .hero h1, .hero p {
  color: #fff;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 10px;
}

.hero p {
  line-height: 28px;
  margin-bottom: 60px;
  opacity: 0.8;
}

/* ---------------------------------------------------------------- */
/* 06.Portfolio (Gallery)                          
/* ---------------------------------------------------------------- */
.gallery-filter-btn-wrapper {
  text-align: center;
  margin: 0 auto 50px auto;
}

.gallery-filter-btn-wrapper .portfolio-filter {
  display: inline-block;
}

.gallery-filter-btn-wrapper .portfolio-filter::after, .gallery-filter-btn-wrapper .portfolio-filter::before {
  content: "";
  display: block;
  clear: both;
}

.gallery-filter-btn-wrapper a {
  float: left;
  padding: 15px 40px;
  background: #FFB07F;
  color: #000;
  text-transform: uppercase;
  margin-right: 0;
  font-weight: 500;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.gallery-filter-btn-wrapper a.current, .gallery-filter-btn-wrapper a:hover {
  background: #ff914c;
  color: #000;
}

.gallery-filter-btn-wrapper a:hover .mt-filter-btn-front-text {
  opacity: 0;
  visibility: hidden;
}

.gallery-filter-btn-wrapper a:hover .mt-filter-btn-back-text {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.gallery-filter-btn-wrapper .mt-filter-btn-back-text,
.gallery-filter-btn-wrapper .mt-filter-btn-front-text {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.gallery-filter-btn-wrapper .mt-filter-btn-back-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.glry-item {
  margin-bottom: 30px;
}

.glry-item .glry-item-inner {
  position: relative;
  overflow: hidden;
}

.glry-item .portfolio-item-img {
  position: relative;
  overflow: hidden;
}

.glry-item .portfolio-item-img img {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.glry-item:hover .portfolio-buttons {
  -webkit-transform: none;
          transform: none;
}

.glry-item:hover img {
  opacity: 0.2;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.glry-item:hover .portfolio-detail-title {
  -webkit-transform: none;
          transform: none;
}

.glry-item:hover .portfolio-detail-title:after {
  opacity: 1;
  visibility: visible;
}

.glry-item:hover .glry-item-inner {
  -webkit-box-shadow: 0 23px 49px 0 rgba(51, 29, 44, 0.2);
          box-shadow: 0 23px 49px 0 rgba(51, 29, 44, 0.2);
}

.glry-item .portfolio-detail-title {
  top: 0;
  left: 0;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  display: block;
  padding: 40px 20px;
  font-size: 18px;
  background: #fff;
  color: #000;
  position: absolute;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 5px 15px 0 rgba(51, 29, 44, 0.1);
          box-shadow: 0 5px 15px 0 rgba(51, 29, 44, 0.1);
}

.glry-item .portfolio-detail-title:after {
  content: "";
  border: 20px solid white;
  border-color: white transparent transparent transparent;
  position: absolute;
  bottom: -40px;
  opacity: 0;
  left: 50%;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.glry-item .portfolio-buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.glry-item .portfolio-buttons .portfolio-zoom-link {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.glry-item .portfolio-buttons a {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  color: #000;
  display: block;
  padding: 40px 50px;
  font-size: 17px;
  background: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.glry-item .portfolio-buttons a:hover {
  background: #ff914c;
  color: #000;
  border-color: #ff914c;
}

.portfolio-cobbles-item {
  padding: 0;
  margin: 0;
}

button.mfp-arrow {
  background: #FFB07F;
}

.mfp-arrow-left:after {
  border-right: 20px solid #000;
}

.mfp-arrow-left:before {
  border-right: 20px solid transparent;
}

.mfp-arrow-right:after {
  border-left: 20px solid #000;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  .glry-item .portfolio-detail-title {
    padding: 22px 20px;
    font-size: 16px;
  }
  .glry-item .portfolio-buttons a {
    padding: 22px 20px;
    font-size: 16px;
  }
  .gallery-filter-btn-wrapper a {
    float: none;
    font-size: 14px;
    width: 100%;
    padding: 10px 40px;
    display: block;
  }
  .mfp-arrow-left {
    left: 6px;
    margin-top: -44px;
  }
  .mfp-arrow-right {
    right: 5px;
  }
}

/* ---------------------------------------------------------------- */
/* 07.Footer                               
/* ---------------------------------------------------------------- */
footer.footer {
  padding: 30px;
  background: #331D2C;
}

footer.footer .copyright-text {
  text-align: center;
  opacity: 0.8;
  color: #fff;
}

footer.footer .copyright-text span {
  margin-right: 5px;
  margin-left: 5px;
}
/*# sourceMappingURL=style.css.map */