@import url('normalize.css');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Fauna+One&display=swap');

/* ========================================================================== */
/* ========================================================================== */
/* [Table of contents] */
/* ========================================================================== */
/* ========================================================================== */

/*	

    1. RESET
    2. TYPOGRAPHY
    3. BUTTOMS
    4. SPACE AND ALIGMENT
    5. NAV SECTION
    6. CAROUSEL SECTION
    7. FOOTER SECTION
    8. CONTACT SECTION
    9. TEMPLATE PAGES
    10. ABOUT PAGE
    11. TEAM SECTION
    12. ERROR PAGE
    13. SERVICES PAGE
    14. FAQ PAGE
    15. CONTACT PAGE
    16. BLOG CLASSIC
    17. BLOG SINGLE
    18. PRODUCTS PAGE
    19. PRODUCTS DETAILS
    20. COUNTER SECTION
    21. SCROLLING TOP
    22. IMAGE GALLERY
    23. FILTER GALLERY
    24. MASONRY GRID
    25. LOADER
        
*/ 

/*###############################
  ---------- 1. RESET. ----------
  ###############################*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
sup {
  font-size: 75%;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body{
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  background-color: #FFF;
}

html {
  font-size: 24px;
  font-weight: 100;
  line-height: 1.5;
}

/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #e2dedc;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #3e934c; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #46866c; 
}

/*####################################
  ---------- 2. TYPOGRAPHY. ----------
  ###################################*/
h1, h2, h3, h4, h5, h6, p, ul,ol{
  margin-top: 0;
  margin-bottom: 1rem;
  color: #323B3C;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  line-height: 1.1;
  font-family: 'Fauna One', sans-serif;
}

h1, .h1 {
  font-size: 1.602rem;
  font-weight: 600;
}

h2, .h2 {
  font-size: 1.8rem;
  color: #1b2c5a;
}

h3, .h3 {
  font-size: 0.90rem;
  color: #1b2c5a;
}

h4, .h4 {
  font-size: 0.85rem;
  color: #1b2c5a;
  margin-bottom: 5px;
}

h5, .h5 {
  font-size: 0.70rem;
  color: #7e4272;
  font-weight: 500;
  text-transform: uppercase;
}

h6, .h6 {
  font-size: 0.889rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #1b2c5a;
}

p, dd, dt {
  font-size: 0.75rem;
  font-family: 'Fauna One', sans-serif;
  color: #8c8c8c;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 0px;
}

dt {
  font-weight: bold;
}

a {
  color: #FFF;
  text-decoration: none;
  transition: 0.3s;
}

a:hover, a:hover p {
  color: #add580;
  text-decoration: none;
}

.cryptedmail:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld); 
}

/*#################################
  ---------- 3. BUTTONS. ----------
  #################################*/

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: 'Fauna One', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-custom {
  color: #3e934c;
  transition: 0.9s;
  padding: 0.3rem 1.125rem;
  font-size: 1rem;      
  background: transparent;
  border: solid 2px #3e934c;
}

.btn-custom:hover {
  color: #FFF;
  background: #3e934c;

}

.btn-custom:focus, .btn-custom.focus {
  box-shadow: none;
}

.btn-custom.disabled, .btn-custom:disabled {
  color: #3e934c;
  background-color: #e2dedc;
  border-color: #e2dedc;
}

.btn-custom:not(:disabled):not(.disabled):active, .btn-custom:not(:disabled):not(.disabled).active,
.show > .btn-custom.dropdown-toggle {
  color: #fff;
  background-color: none;
  border-color: none;
}

.btn-custom:not(:disabled):not(.disabled):active:focus, .btn-custom:not(:disabled):not(.disabled).active:focus,
.show > .btn-custom.dropdown-toggle:focus {
  box-shadow: none;
}

a.btn-hover-corner {
  display: inline-block;
  text-decoration: none;
  color: #7e4272;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  padding: 0.5rem 2.5rem;
  overflow: hidden;
  transition: 0.3s ease;
  margin-bottom: 0px;
  font-family: 'Fauna One', sans-serif;
}

a.btn-hover-corner:before {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  border-bottom: 2px solid #7e4272;
  border-left: 2px solid #7e4272;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s ease;
}

a.btn-hover-corner:after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  border-top: 2px solid #7e4272;
  border-right: 2px solid #7e4272;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s ease;
}

a.btn-hover-corner:hover:before,
a.btn-hover-corner:hover:after {
  width: 1rem;
  height: 1rem;
}

a.btn-hover-corner.white {
  color: #fff;
}

a.btn-hover-corner.white:before, a.btn-hover-corner.white:after {
  border-color: #fff;
}

.btn-tags {
  color: #516163;
  transition: 0.6s;
  padding: 0.2rem 0.7875rem;
  font-size: 14px;  
  background: #f0f5f5;
  border-radius: 0px;
  text-transform: none;
  font-weight: 400;
  font-family: 'Fauna One', sans-serif;
}

.btn-tags:hover {
  color: #FFF;
  background-color: #0A178F;
}

.btn-tags:focus, .btn-tags.focus {
  box-shadow: none;
}

.btn-tags.disabled, .btn-tags:disabled {
  color: #fff;
  background-color: #e9b416;
  border-color: #e9b416;
}

.btn-shop {
  font-family: Fauna One;
  background-color: #472f9280;
  color: #FFF;
  text-align: center;
  border-radius: 0;
  line-height: 0;
  margin-left: auto;
  margin-right: 1rem;
  padding: 2rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.shrink .btn-shop {
  background-color: #472f92e6;
}

.btn-cta {
  font-family: Fauna One;
  position:fixed;
  width:120px;
  height:45px;
  bottom:40px;
  right:40px;
  background-color: #3e934c;
  color:#FFF;
  text-align:center;
  border-radius: 2rem;
  box-shadow: 2px 2px 3px #999;
  z-index: 4;
  line-height: 2.5rem;
}

.btn-shop:hover,
.btn-cta:hover {
  color: #fff;
}

/*############################################
  ---------- 4. SPACE AND ALIGMENT. ----------
  ############################################*/
.container, .container-fluid{
  margin: 3rem auto;
}

.inner-color{
  padding: 1rem 0rem 0.1rem;
  background-color: #F7FAFA;
  margin: 0rem;
}

.inner-color-2{
  padding: 1rem 0rem;
  background-color: #1b2c5a;
  margin: 0rem;
  height: 270px;
  position: relative;
}

section{
  overflow-x: hidden;
  position: relative;
  background-color: #FFF;
}

/*####################################
  ---------- 5. NAV SECTION ----------
  ####################################*/
.main-nav{
  position: relative;
  margin-top: 20px;
}

.main-nav .container-fluid{
  height: 60px;
  background: transparent;
  margin: 0px auto;
}

.main-nav.shrink .logo-brand {
  width: 175px;
}

.shrink .navbar {
  background-color: rgba(63, 147, 76, 0.8);
}

.affix {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.affix .container-fluid{
  margin-top: 0px;
}

.affix.navbar .nav-item > a, 
.affix.navbar .navbar-brand {
  color: #fff;
}

.navbar-expand-lg{
  padding: 7px 0px;
}

.nav-link {
  transition-duration: 0.4s;
  display: block;
  padding: 0.5rem 3rem;
  margin: 0px 5px 0px 10px;
  font-family: 'Fauna One', sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #fff;
}

.nav-link:hover {
  color: #FFF;
}

.nav-link:focus {
  text-decoration: none;
  color: #FFF;
}

.nav-item{
  margin: 0px;
}

.nav-item.active a {
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #FFF;
}

.logo-brand{
  width: 15rem;
  transition: 0.5s;
  position: relative;
  /*margin-left: 40px;*/
}

.logo-brand img{
  width: 100%;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 200px;
  padding: 10px 0;
  margin: 2px 0 0;
  font-size: 16px;
  text-align: left;
  list-style: none;
  background-color: #FAFCFC;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #eff5f5;
  border-radius: 4px;
}

.dropdown-menu > li > a {
  display: block;
  padding: 2px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.5;
  white-space: nowrap;
  transition: 0.4s;
  font-family: 'Fauna One', sans-serif;
  color: #595959;
  font-weight: normal;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #EEC344;
  text-decoration: none;
  background-color: transparent;
}

.dropdown-menu .divider-top {
  display: none;
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #eff5f5;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #eff5f5;
}

.dropdown-toggle::after {
  display:none;
}

.caret-drop{
  position: relative;
  color: #FFF;
  margin-left: 5px;
  transition: 0.3s;
}

.nav-link:hover .caret-drop{
  text-decoration: none;
  color: #EEC344;
}

.nav-link:focus .caret-drop{
  text-decoration: none;
  color: #EEC344;
}

.caret-drop:before{
  content: "\f107";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.navbar-nav>.open>a, .navbar-nav>.open>a:hover, .navbar-nav>.open>a:focus{
  background-image:none;
  color: #fff;
  background-color: rgba(0,0,0,0.5); 
}

.navbar-toggler:active {
  text-decoration: none;
  color: #ddd;
}

/*#########################################
  ---------- 6. CAROUSEL SECTION ----------
  #########################################*/
.main-slider{
  height: 900px;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}

.carousel-item {
  height: 900px;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /*background-color: #f6efe3;*/
}

.carousel-item:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000, #000);
  opacity: 0.3;
}

.carousel-caption {
  position: absolute;
  top: 39%;
  right: 15%;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.carousel-caption h2{
  font-weight: 400;
}

.carousel-caption span{
  font-weight: 700;
  text-transform: uppercase;
}

.carousel-content {
  background-color: rgba(138, 199, 91, 0.3);
  border-radius: 5rem;
  padding: 1rem;
}

.display-4{
  color: #FFF;
  font-size: 3.5rem;
  line-height: 1.2;
  font-family: 'Amatic SC', cursive;
}

.lead{
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 300;
}

.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("../img/master/left-arrow.svg");
}

.carousel-control-next-icon {
  background-image: url("../img/master/right-arrow.svg");
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 40px;
  height: 4px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}


.carousel-indicators .active {
  opacity: 1;
  background-color: #add580;
}

/*#######################################
  ---------- 7. FOOTER SECTION ----------
  #######################################*/

footer{
  height: auto;
  width: 100%;
  background: #fff;
}

footer .container{
  margin: 2rem auto 5rem;
}

footer h4{
  font-weight: 600;
}

.footer-col p{
  margin-bottom: 0px;
}

.footer-col p.copyright{
  font-size: 0.9rem;
}

.copyright a {
  color: #71412C;
}

.footer-logo{
  /*width: 150px;*/
  /*margin-bottom: 1rem;*/
}

.footer-logo img{
  width: 100%;
  margin-bottom: 1rem;
}

footer nav a {
  color: hsl(240,4%,20%);
  font-family: 'Fauna One';
  font-size: 0.7rem;
  margin-right: 1rem;
  text-align: center;
}

.location, .newsletter-box{
  margin-top: 20px;
}

.location p{
  line-height: 1.5;
  margin-bottom: 15px;
}

.newsletter-box {
  margin: 15px 0px 15px 0px;
}

.newsletter-box p{
  margin-bottom: 20px;
}

.newsletter-box form {
  display: flex;
  align-items: center;
}

.newsletter-box .input {
  width: 70%;
  height: 38px;
  background: #F7FAFA;
  border: none;
  font-family: inherit;
  color: #737373;
  letter-spacing: 1px;
  text-indent: 5%;
  font-size: 12px;
  font-family: 'Fauna One', sans-serif;  
}

.newsletter-box .button {
  width: 30%;
  height: 38px;
  background-color: #EEC344;
  border: none;
  border-radius: 0 5px 5px 0;
  font-family: inherit;
  font-weight: 500;
  color: inherit;
  letter-spacing: 1px;
  cursor: pointer;
  color: #FFF;
  font-size: 12px;
  font-family: 'Fauna One', sans-serif;  
}

p.cursive{
  font-style: italic;
  font-size: 13px;
}

.footer-center-col, .footer-col-right{
  margin-top: 40px;
}

/*########################################
  ---------- 8. CONTACT SECTION ----------
  ########################################*/
.home-contact{
  position: relative;
  padding: 0px;
  margin-bottom: 0rem;
}

.contact-info{
  padding: 3.5rem;
  background-color: #3e934c;
  height: 600px;
}

.home-contact .col-lg-6{
  padding: 0px;
}

.contact-info h2{
  margin-bottom: 1.5rem;
  color: #FFF;
}

.contact-info h4,
.contact-info .h4{
  font-size: 1rem;
  color: #FFF;
}

.contact-info p{
  margin-bottom: 0px;
  color: #EEC344;
}

.block-address, .block-phone, .block-email{
  margin: 1rem 0rem;
}

.address-icon, .phone-icon, .email-icon{
  float: left;
  width: 40px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  margin-right: 1rem;
}

.address-icon img{
  width: 100%;
}

.phone-icon img{
  width: 100%;
}

.email-icon img{
  width: 100%;
}

.inner-info h4,
.inner-info .h4{
  margin-bottom: 0px;
  font-weight: 500;
}

.inner-info p{
  font-size: 1rem;
  color: #FFF;
}

.social-networks{
  margin-top: 2rem;
}

.networks-list{
  display: inline-block;
  margin-right: 10px;
}

.networks-list .fab{
  font-size: 18px;
  color: #FFF;
  transition: 0.3s;
}

.networks-list .fab:hover{
  color: #EEC344;
}

.form-box{
  background: #FFF;
  max-width: 450px;
  height: auto;
  padding: 30px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;  
}

.customize {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-family: 'Fauna One', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #f0f5f5;
  background-clip: padding-box;
  border: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 3px 0px;
  transition: 0.6s;
}

.customize::-ms-expand {
  background-color: transparent;
  border: 0;
}

.customize:focus {
  color: #495057;
  background-color: #e0ebeb;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.contact-btn p{
  margin-bottom: 0rem;
}

.with-errors{
  font-size: 12px;
  font-family: 'Fauna One', sans-serif;
  text-align: left;
}

.alert-success {
  color: #FFF;
  background-color: #E63946;
  border-color: #E63946;
  font-family: 'Fauna One', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.close {
  float: right;
  margin-left: 5px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  text-shadow: none;
  opacity: 1;
}

.map-iframe{
  width: 100%;
  height: 600px;
  border: none;
}

/*########################################
  ---------- 9. TEMPLATE PAGES  ----------
  #########################################*/
.sections{
  background-image: url("http://placehold.it/1920x1080");
  height: 450px; 
  margin-top: -80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.sections:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000, #000);
  opacity: 0.2;
}

.services-background{
  background-image: url("http://placehold.it/1920x1080"); 
}

.gallery-background{
  background-image: url("http://placehold.it/1920x1080"); 
}

.faq-background{
  background-image: url("../img/header_bg.jpg"); 
}

.products-background{
  background-image: url("../img/images/bg-what.jpg"); 
}

.blogs-background{
  background-image: url("http://placehold.it/1920x1080"); 
}

.blog-grid-background{
  background-image: url("http://placehold.it/1920x1080"); 
}

.blog-single-background{
  background-image: url("http://placehold.it/1920x1080"); 
}

.sections .container{
  margin: 0px auto;
}

.pages-title{
  position: absolute;
  bottom: 30px;
  color: #FFF;
}

.pages-title span{
  font-weight: 700;
  font-size: 2.5rem;
}

.pages-title h1{
  font-size: 1.4rem;
  color: #FFF;
  font-weight: 400;
  margin-bottom: 5px;
}

.pages-title p{
  color: #FFF;
}

hr.divider{
  margin: 2rem 0rem;
}

.section-title{
  margin-bottom: 1.7rem;
  border-left: solid 4px #7e4272;

}

.section-title h2{
  margin-left: 20px;
  margin-bottom: 5px;
  font-weight: 400;
}

.section-title p{
  line-height: 1.8;
  margin-left: 20px;
}

.section-title span{
  font-weight: 700;
}

.section-title.title-right {
  border-left: none;
  border-right: solid 4px #7e4272;
  text-align: right;
  padding-right: 1rem;
}

/*###################################
  ---------- 10. ABOUT PAGE----------
  ###################################*/
figure.about-pic img{
  width: 100%;
}

.about-service-icon{
  width: 60px;
  float: left;
  margin: 0px 15px 20px 0px;
}

.about-service-icon img{
  width: 100%;
}

.inner-service-bar h3{
  margin-bottom: 5px;
}

.inner-service-bar .caption p{
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0px;
}

.front-thumb{
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.from-thumb-pic img{
  width: 100%;
}

.thumb-caption{
  padding: 30px 15px;
}

.thumb-caption h4{
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 600;
}

.thumb-caption p{
  text-align: center;
  margin-bottom: 15px;
}

.btn-box p{
  margin-bottom: 0px;
}

.btn-more-box{
  margin-top: 1rem;
}

.mission-thumb img{
  width: 100%;
}

.vision-thumb img{
  width: 100%;
}

.about-col .caption{
  padding-top: 20px;
}

.signature{
  width: 180px;
  margin-top: 1rem;
}

.signature img{
  width: 100%;
}

.partners-logo img{
  width: 100%;
}

/*#####################################
  ---------- 11. TEAM SECTION ----------
  #####################################*/
.slider .slide{
  margin: 0px 10px;
  cursor: pointer;
}

.member-headshot img{
  width: 100%;
}

.team-caption{
  text-align: center;
  padding: 30px 0px 0px;
}

.team-caption h3{
  margin-bottom: 5px;
  transition: 0.3s;
}

.team-caption p{
  color: #46866C;
  margin-bottom: 0px;
}

.team-caption:hover h4{
  color: #E63946;
}

.team-caption p{
  margin-bottom: 0px;
}

.image-hover figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.image-hover figure:hover+span {
  bottom: -36px;
  opacity: 1;
}

.hover-effects figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover-effects figure:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.member-social{
  height: 30px;
  margin-top: -40px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.social-items{
  display: inline-block;
  margin: 0px 2px;
  transition: 0.3s;
  text-align: center;
}

.icon-fa{
  display:inline-block;
  font-size: 16px;
  line-height: 35px;
  color: #333;
  width: 35px;
  height: 35px;
  text-align: center;
  vertical-align: bottom;
  border-radius: 50%;
  background: #EEC344;
  transition: 0.3s;
}

.icon-fa:hover{
  color: #FFF;
  background: #46866C;

}

.slick-dots li {
  display: none;

}

/*####################################
  ---------- 12. ERROR PAGE ----------
  ####################################*/
.error-page-bg{
  background-image: url("http://placehold.it/1920x1080");
  height: 800px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.error-page-bg:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000, #000);
  opacity: 0.4;
}

.error-page .container{
  margin: 0px auto;
}

.error-page .middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFF;
}

.error-page .middle .error-number{
  font-family: 'Fauna One', sans-serif;
  font-weight: 600;
  font-size: 6rem;
  color: #FFF;
}

.error-page .middle h4{
  color: #EEC344;
  margin-top: -20px;
  font-weight: 400;
}

.error-page .middle p {
  color: #FFF;
}

/*#######################################
  ---------- 13. SERVICES PAGE ----------
  #######################################*/
.box-services{
  border: solid 3px #7e4272;
  padding: 30px;
  margin: 0.80rem 0rem;
}

.service-icon{
  width: 60px;
}

.service-icon img{
  width: 100%;
}

.box-services h3{
  margin: 15px 0px 10px;
}

.box-services p{
  line-height: 1.7;
}

.wide-section-bg{ 
  background-image: url("http://placehold.it/1920x1080");
  height: 500px; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.wide-section-bg:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #EEC344, #000);
  opacity: .4;
}

.wide-section-box{
  width: 80%;
  padding: 10px;
  z-index: 1;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 240px;
}

.wide-section-info{
  height: 500px;
  padding: 3rem;
}

.section-hide{
  display: none;
}

.wide-section-box h2{
  font-weight: 400;
  text-transform: uppercase;
}

.wide-section-box span{
  font-weight: 700;
}

.wide-section-box p{
  margin-bottom: 10px;
}

.inner-wide-section{
  margin: 1.5rem 0rem;
  height: 70px;
}

.inner-wide-section .circle-icon{
  background-color: #EEC344;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  float: left;
  margin-right: 15px;
}

.icon-center{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
}

.icon-center img{
  width: 100%;
}

.inner-wide-section .caption{
  padding-top: 10px;
}

.inner-wide-section .caption h4{
  margin-bottom: 5px;
}

.inner-wide-section .caption p{
  line-height: 1.5;
  margin-bottom: 0px;
}

/*##################################
  ---------- 14. FAQ PAGE ----------
  ##################################*/
.accordion {
  border-top: 1px solid #d9e5e8;
}

.accordion-side{
  padding-right: 40px;
}

.accordion li {
  border-bottom: 1px solid #d9e5e8;
  position: relative;
  list-style-type:none;
}

.accordion li p {
  display: none;
  padding: 10px 20px;
  color: #516163;
  font-size: 14px;
  font-family: 'Fauna One', sans-serif;
}

.accordion a {
  width: 100%;
  font-family: 'Fauna One', sans-serif;
  display: block;
  cursor: pointer;
  font-weight: 500;
  line-height: 3;
  font-size: 16px;
  user-select: none;
}

.accordion li a.active{
  color: #EEC344;
}

.accordion a.hover{
  color: #EEC344;
}

.accordion a:after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #EEC344;
  border-bottom: 1px solid #EEC344;
  position: absolute;
  right: 5px;
  content: " ";
  top: 20px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a.active:after {
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-right: 1px solid #EEC344;
  border-bottom: 1px solid #EEC344;
}

.faq a {
  color: #3e934c;
  font-weight: bold;
}

.faq h1 {
  font-size: 1.5rem;
}

.faq p {
  margin-bottom: 1rem;
}

/*######################################
  ---------- 15. CONTACT PAGE ----------
  ######################################*/
.contact-box .section-title{
  width: 100%;
}

.map-wide{
  margin: 0px;
}

.map-iframe-2{
  width: 100%;
  height: 500px;
  border: none;
}

.span-contact{
  clear: both;
  margin-bottom: 1rem;
}

.span-contact p{
  padding-top: 1px;
}

.contact-icon{
  float: left;
  margin-right: 10px;
}

.contact-icon .fas{
  font-size: 1.3rem;
  color: #46866C;
}

.with-errors li,
.with-errors{
  font-size: 0.8rem;
  font-family: 'Fauna One', sans-serif;
  color: red;
}

.alert-success {
  color: #FFF;
  background-color: #EEC344;
  border-color: #EEC344;
  font-family: 'Fauna One', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.close {
  float: right;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: none;
  opacity: 1;
}

/*#######################################
  ---------- 16. BLOG CLASSIC -----------
  #######################################*/

.post-list{
  background-color: #FFF;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  padding-bottom: 5px;
}

figure.post-preview{
  position: relative;
}

.post-preview img{
  width: 100%;
}

.post-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #EEC344;
}

figure.post-preview:hover .post-overlay {
  opacity: 0.4;
}

.post-caption{
  margin: 30px 25px;
}

.post-caption h3{
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.post-caption p{
  line-height: 1.7;
}

.post-caption a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.post-caption a:hover {
  color: #EEC344;
  text-decoration: none;
}

hr.posts{
  margin: 20px auto 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bottom-post{
  clear: both;
  height: 60px;
}

.post-author{
  float: left;
  width: 80%;
  height: 60px;
}

.author-avatar{
  width: 60px;
  height: 60px;
  float: left;
  margin-right: 10px;
}

.author-avatar img{
  width: 100%;
  border-radius: 50%;
}

.about-author{
  padding: 8px;
}

.about-author h4{
  font-size: 0.80rem;
  margin-bottom: 0px;
  font-weight: 500;
}

.about-author p{
  font-size: 13px;
}

aside h3{
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

aside h3:after {
  background: #EEC344;
  content: '';
  display: block;
  height: 3px;
  margin: 15px 0px;
  width: 60px;
}

.aside-list-group, .aside-related-posts{
  margin-bottom: 2rem;
  clear: both;
}

.aside-list-group .list-group-item {
  position: relative;
  display: block;
  padding: 0.50rem 0rem;
  margin-bottom: -1px;
  background-color: #fff;
  font-family: 'Fauna One', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #516163;
}

.aside-list-group .list-group-item .badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 100%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 5px;
  float: right;
  font-family: 'Fauna One', sans-serif;
  background: #46866C;
  color: #FFF;
  font-weight: 400;
}

.badge .fa{
  color: #7e4272;
  transition: 0.6s;
}

.list-group-item:hover .fa{
  color: #FFF;
}

.aside-list-group .list-group-item a {
  color: #516163;
  text-decoration: none;
  transition: 0.6s;
}

.aside-list-group .list-group-item a:hover {
  color: #EEC344;
  text-decoration: none;
}

.varieties-list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

aside.left ul.varieties-list .list-group-item {
  min-width: 7rem;
  flex: 1;
  border-left-color: #7e4272;
}

aside.left ul.varieties-list .list-group-item:hover {
  background-color: #1b2c5a;
  cursor: pointer;
}

aside.left ul.varieties-list .list-group-item:last-child {
  flex: 0;
  min-width: 7.8rem;
}

.media-list{
  margin-top: 1.3rem;
  clear: both;
  height: 80px;
}

.media-thumb{
  width: 80px;
  height: 80px;
  float: left;
  margin-right: 15px;
}

.media-thumb img{
  width: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.media-post h4{
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}

.tags-btn{
  display: inline-block;
  margin-right: 5px;
}

.media-post a {
  color: #516163;
  text-decoration: none;
  transition: 0.6s;
}

.media-post a:hover {
  color: #EEC344;
  text-decoration: none;
}

.blogs-pagination{
  margin-top: 2.5rem;
}

.site-pagination{
  margin-top: 1rem;
}

.site-pagination .pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0rem;
}

.site-pagination .page-link {
  position: relative;
  display: block;
  padding: 0.3rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #333;
  background-color: #fff;
  border: none;
  font-family: 'Fauna One', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.site-pagination .page-link:hover {
  z-index: 2;
  color: #46866C;
  text-decoration: none;
  background-color: #F0F5F5;
  border-color: #F0F5F5;
}

.site-pagination .page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: none;
}

.page-link .fas{
  font-size: 18px;
}

.site-pagination .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #46866C;
  border-color: #46866C;
  border-radius: 0.25rem;
}

/*#######################################
  ---------- 17. BLOG SINGLE ------------
  #######################################*/
.single-post-caption{
  padding: 30px 0px;
}

.post-single a {
  color: #333;
  text-decoration: none;
  transition: 0.6s;
}

.post-single a:hover {
  color: #EEC344;
  text-decoration: none;
}

.single-post-caption h2{
  line-height: 1.3;
  margin-bottom: 1rem;
}

.single-post-caption p{
  line-height: 2;
  margin-bottom: 1rem;
}

.single-post-details{
  height: 40px;
  margin-bottom: 1rem;  
}

.single-post-details .author-avatar{
  width: 40px;
  height: 40px;
}

.single-post-details .author-avatar img{
  width: 100%
}

.single-post-details .about-author{
  padding: 2px;
}

.single-post-details .author-name{
  font-size: 15px;
  margin-bottom: 0px;
}

.single-post-social{
  float: right;
}

.single-post-social .social-share{
  margin-right: 13px;
}

.single-post-social .button {
  position: relative;
  -webkit-perspective: 300px;
  perspective: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #EEC344;
}

.single-post-social .back {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
  text-decoration: none;
}

.post-views, .social-share{
  display: inline-block;
  margin-right: 5px;    
}

.post-comments{
  display: inline-block;  
}

.single-post-social .fas{
  color: #EEC344;
  font-size: 15px;
}

.single-post-social .far{
  color: #EEC344;
  font-size: 15px;
}

blockquote{
  display:block;
  background: #fff;
  padding: 30px 20px 30px 45px;
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 15px;
  line-height: 2;
  color: #516163;
  border-left: 10px solid #EEC344;
  border-right: 2px solid #EEC344;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  font-family: 'Fauna One', sans-serif;
  font-style: italic;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #EEC344;
  position: absolute;
  left: 10px;
  top: 5px;
  line-height: 1.5;
}

blockquote::after{
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #EEC344;
}

blockquote a:hover{
  color: #666;
}

blockquote em{
  font-style: italic;
}

.related-posts h2:after {
  background: #ED213A;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #93291E, #ED213A);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #93291E, #ED213A); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  content: '';
  display: block;
  height: 3px;
  margin: 15px 0px 30px;
  width: 80px;
}

.comments h3{
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.user-avatar{
  width: 90px;
  height: 150px;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}

.user-avatar img{
  width: 100%;
  border-radius: 50%;
}

.comment-details h4{
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 2px;
}

p.comment-date{
  font-size: 14px;
  color: #9dadaf;
  margin-bottom: 2px;
}

p.comment{
  line-height: 1.7;
  margin-bottom: 10px;
}

.comment-interaction .fas{
  color: #46866C;
  transition: 0.6s;
}

.vote-up, .vote-down, .replay-box{
  display: inline-block;
  margin-right: 8px;
}

.replay-box .fas{
  font-size: 19px;
}

hr.comments{
  margin: 20px auto 30px;
}

.comment-interaction .replay-box:hover .fas{
  color: #EEC344;
}

.comment-interaction .vote-up:hover .fas{
  color: #EEC344;
}

.comment-interaction .vote-down:hover .fas{
  color: #EEC344;
}

.comment-form{
  clear: both;
  margin-top: 1.5rem;
}

.comment-form h3{
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.customize {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-family: 'Fauna One', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #f0f5f5;
  background-clip: padding-box;
  border: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 5px 0px;
  transition: 0.6s;
}

.customize::-ms-expand {
  background-color: transparent;
  border: 0;
}

.customize:focus {
  color: #495057;
  background-color: #e0ebeb;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.btn-comments{
  margin-top: 1rem;
}

.btn-comments a {
  color: #EEC344;
  text-decoration: none;
  transition: 0.6s;
}

.btn-comments a:hover {
  color: #FFF;
  text-decoration: none;
}

/*#######################################
  ---------- 18. PRODUCTS PAGE ----------
  #######################################*/
.product-media img{
  width: 100%;
}

.product-info p{
  margin-bottom: 1rem;
}

.product-info h2{
  text-transform: uppercase;
}

/*##########################################
  ---------- 19. PRODUCTS DETAILS ----------
  ##########################################*/
aside.left .list-group-item {
  font-family: 'Fauna One', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.inner-service-block{
  margin-bottom: 30px;
}

aside.left .list-group-item .badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: none
}

aside.left .list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 10px;
  background-color: #F7FAFA;
  border: none;
  border-left: solid 3px #EEC344;
  border-radius: 0px;
  transition: 0.5s;
}

aside.left .list-group-item:hover {
  background-color: #EEC344;
}

aside.left .list-group-item:hover a:link{
  color: #FFF;
}

aside.left .list-group-item a:link {
  text-decoration: none;
  color: #333;
}

aside.left .list-group-item a:visited {
  text-decoration: none;
  color: #333;
}

aside.left .list-group-item a:hover {
  text-decoration: none;
  color: #FFF;
}

aside.left .list-group-item a:active {
  text-decoration: none;
  color: #EEC344;
}

aside.left .list-group-item:hover a{
  color: #FFF;
}

aside.left .list-group-item .fas{
  color: #EEC344;
}

aside.left .list-group-item:hover .fas{
  color: #FFF;
}

.product-details .section-title{
  width: 100%;
}

.product-caption{
  margin-top: 1.5rem;
}

.product-caption p{
  margin-bottom: 1rem;
}

.product-caption span{
  font-weight: 700;
  border: none;
}

.product-caption h2{
  margin-bottom: 0.7rem;
}

.box-values{
  padding: 30px;
  margin: 0.80rem 0rem;
  background-color: #FFF;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.box-values .service-icon{
  width: 60px;
}

.box-values .service-icon img{
  width: 100%;
}

.box-values h3{
  margin: 15px 0px 10px;
}

.box-values p{
  line-height: 1.7;
}

/*#########################################
  ---------- 20. COUNTER SECTION ----------
  #########################################*/
.wheat-bg{
  width: 250px;
  position: absolute;
  bottom: 5px;
  right: 0;
  opacity: 0.2;
}

.wheat-bg img{
  width: 100%;
}

.inner-counter{
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}

.last-box-counter{
  border: none;
}

.counter-statistics .counter{
  font-family: 'Fauna One', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #add580;
  text-align: center;
}

.counter-statistics h5{
  text-transform: uppercase;
  margin-bottom: 0px;
  text-align: center;
  font-size: 16px;
  color: #516163;
  font-weight: 400;
}

/*#######################################
  ---------- 21. SCROLLING TOP ----------
  #######################################*/

@media only screen and (min-width: 1024px) {
  main p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(238, 195, 68, 1) url(../img/master/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;

  border-radius: 50%;  
  z-index: 4;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}

.no-touch .cd-top:hover {
  background-color: #FB5607;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  } 
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/*########################################
  ---------- 22. MAGNIFIC POPUP ----------
  ########################################*/

.magnific-img {
  width: 100%;
  height: 100%;
}

.magnific-img img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  cursor: pointer;
}

a.image-popup-vertical-fit {
  cursor: -webkit-zoom-in;
  z-index: 0;
  position: relative;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
  border-right: none !important;
}
.mfp-arrow-right:before {
  border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
  opacity: 0 !important;
  transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
  opacity: 1 !important;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.9; 
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; 
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
.mfp-preloader a {
  color: #CCC; }
.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; 
}

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }
.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #FFF;
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap; 
  font-family: 'Fauna One', sans-serif;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
  margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }
.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }
.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.magnific-img .image-popup-vertical-fit img a:link {
  text-decoration: none;
  border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:visited {
  text-decoration: none;
  border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:hover {
  text-decoration: none;
  border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:active {
  text-decoration: none;
  color: #000;
  border: solid 2px #000;
}

.mfp-figure button.mfp-close {
  cursor: pointer;
}
.popup-gallery a {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-figure figure {
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: zoom-out;
}

/*########################################
  ---------- 23. FILTER GALLERY ----------
  ########################################*/

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills >li.active > a:hover {
  color: #FFF;
  text-align: center;
  background-color: #3e934c;
}

.center-pills {
  display: flex;
  justify-content: center;
}

.nav-pills a {
  color: #455354;
  margin-right: 5px;
  font-family: 'Fauna One', sans-serif;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 0.5rem;
  border: 2px solid #3e934c;
}

.nav >li > a:focus, .nav> li > a:hover {
  background: transparent;
  color: #EEC344;
}

.portfolio-filter{
  margin-bottom: 30px;
}

.portfolio-item {
  margin: 0px;
  padding: 5px;
}

.portfolio-item img {
  width: 100%;
}

.portfolio-item:hover img {
  -webkit-filter: grayscale(50%);
  filter: grayscale(40%);
}

figure {
  margin: 0;
}

/*######################################
  ---------- 24. MASONRY GRID ----------
  #####################################*/

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: calc(100% / 2);
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

/*#################################
  ---------- 25. LOADER -----------
  #################################*/

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
  background-color: #F2F2F2;
}

@-webkit-keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: 10px;
  }
}
@keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: 10px;
  }
}
@-moz-keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: 10px;
  }
}

* {
  margin: 0;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27.5px;
  margin-top: -27.5px;
}

.square {
  background: #add580;
  width: 15px;
  height: 15px;
  float: left;
  top: -10px;
  margin-right: 5px;
  margin-top: 5px;
  position: relative;
  opacity: 0;
  -webkit-animation: enter 2s infinite;
  animation: enter 2s infinite;
}

.enter {
  top: 0px;
  opacity: 1;
}

.square:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.square:nth-child(2) {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.square:nth-child(3) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8ss;
  animation-delay: 0.8ss;
  background: #1b2c5a;
}

.square:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.square:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.square:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.square:nth-child(8) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.square:nth-child(9) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.clear {
  clear: both;
}

.last {
  margin-right: 0;
}

.nobot {
  display: none;
}

.col-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.col-box p {
  font-size: 0.9rem;
}

.col-box h2 {
  text-transform: uppercase;
  font-family: 'Amatic SC', cursive;
}

.col-box p,
.col-box h2,
.bg-orange p,
.bg-orange h2,
.bg-yellow p,
.bg-yellow h2 {
  color: #202225;
}

.bg-purple {
  background-color: #472F92;
}

.bg-green {
  background-color: #3F934C;
}

.bg-red {
  background-color: #F04E30;
}

.bg-orange {
  background-color: #FAA634;
}

.bg-yellow {
  background-color: #FFD530;
}

.bg-green p,
.bg-green h2,
.bg-purple p,
.bg-purple h2,
.bg-red p,
.bg-red h2 {
  color: #FFF;
}


.text-purple {
  color: #472F92;
}

.text-green {
  color: #3F934C;
}

.text-red {
  color: #F04E30;
}

.text-orange {
  color: #FAA634;
}

.text-yellow {
  color: #FFD530;
}

.overlay {
  display: block;
  position: absolute;
  background-color: #000;
  width: 100%;
  opacity: 0.3;
  top: 0;
  height: 100%;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  right: 5%;
  color: white;
  font-size: 5rem;
  font-family: 'Amatic SC', cursive;
}

small.text-muted {
  font-family: 'Fauna One', sans-serif;
  font-size: 80%;
  color: #AAA;
  text-align: left;
}

.announcement {
  color: black;
  font-size: 0.85rem;
  margin: auto;
  background-color: white;
}