@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,500&display=swap');
@import url('lib/normalize.css');


/*====================================================
  * Template:   Creation
  * Version:    1.0
  * Author:     Rodando
  * Created :   Sept. 27, 2020
====================================================*/

/*==================================================*/
             /* [Table of contents] */
/*==================================================*/

/*	
    1. RESET.
    2. COLOR PALETTE.
    3. TYPOGRAPHY. 
    4. SPACE AND ALIGMENT. 
    5. BUTTONS. 
    6. SCROLLING TOP.
    7. PRELOADER 
    8. YOUTUBE POPUP.
    9. MODAL POPUP.
    10. MEDIA QUERIES.
*/

/* =====================================
   	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,
small, 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;
}
/* 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;
    overflow-y: scroll;
}

html {
  font-size: 24px;
  font-weight: 100;
  line-height: 1.5;
}

img{
  width: 100%;
}

/* =====================================
   	2. COLOR PALETTE.
   ===================================== */

:root {
  --main-yellow-color: #e6a100;  
  --main-dark-color: #26292E;  
  --main-text-color: #737373;  
  --lg-margin-top: 3rem;    
  --md-margin-top: 2rem;    
  --sm-margin-top: 2rem; 
  --col-lg-m: 2rem;    
  --col-md-m: 2rem;    
  --col-sm-m: 2rem;  
  --col-left-padding: 2rem;    
}

/* ===================================== 
	3. TYPOGRAPHY. 
   ===================================== */
  h1, h2, h3, h4, h5, h6, p, ul,ol{
    margin-top: 0;
    margin-bottom: 1rem;
  }

  h1, h2, h3, h4, h5, h6, ul {
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    color: var(--main-dark-color);
  }

  h1, .h1 {
    font-size: 2.5 rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  h2, .h2 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  h3, .h3 {
    font-size: 1.75rem;
  }
  
  h4, .h4 {
    font-size: 1.5rem;
  }
  
  h5, .h5 {
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    color: #a3b0b4;
  }
  
  h6, .h6 {
    font-size: 1rem;
  }

p {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: var(--main-text-color);
  font-weight: 400;
  line-height: 32px;
}

@media screen and (min-width: 0px) { 
    html { 
        font-size: calc(15px + 6 * ((100vw - 320px) / 680)); 
    } 
} 
@media screen and (min-width: 1200px) { 
    html { 
        font-size: 18px; 
    } 
}

a {
    color: var(--main-dark-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
	  color: var(--main-green-color);
    text-decoration: none;
}

/*====================================================
    4. SPACE AND ALIGMENT. 
  ====================================================*/
  .container {
    padding: 2rem 0rem;
  }

  section{
    overflow: hidden;
  }

  .bg-wrapper{
    background-color: #F9F9F9;
    padding: 4rem 0rem;
  }

  .mt-5,
  .my-5 {
    margin-top: 5rem !important;
  }
  
  .mb-5,
  .my-5 {
    margin-bottom: 5rem !important;
  }
  
  .mt-4,
  .my-4 {
    margin-top: 3rem !important;
  }
  
  .mb-4,
  .my-4 {
    margin-bottom: 3rem !important;
  }

  .xmt-5{
    margin-top: 8rem !important;
  }

  .xmb-5{
    margin-bottom: 9rem !important;
  }

/* ===================================== 
	    5. BUTTONS. 
   ===================================== */
   .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 50rem !important;
    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: 'Poppins', sans-serif;
    margin-top: 20px;
  }
  
  
  .custom-btn {
    color: #fff;
    background-color: var(--main-yellow-color);
    border-color: var(--main-yellow-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.4s;
  }
  
  .custom-btn:hover {
    color: #fff;
    background-color: var(--main-dark-color);
    border-color: var(--main-dark-color);
  }
  
  .custom-btn:focus, .custom-btn.focus {
    color: #fff;
    background-color: var(--main-dark-color);
    border-color: var(--main-dark-color);
    box-shadow: none;
  }
  
  .custom-btn.disabled, .custom-btn:disabled {
    color: #fff;
    background-color: var(--main-dark-color);
    border-color: var(--main-dark-color);
  }
  
  .custom-btn:not(:disabled):not(.disabled):active, .custom-btn:not(:disabled):not(.disabled).active,
  .show > .custom-btn.dropdown-toggle {
    color: #fff;
    background-color: var(--main-dark-color);
    border-color: var(--main-dark-color);
    box-shadow: none;
  }

  .custom-btn:not(:disabled):not(.disabled):active:focus, .custom-btn:not(:disabled):not(.disabled).active:focus,
  .show > .custom-btn.dropdown-toggle:focus {
    box-shadow: none
  }

/*====================================================
    6. 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;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: var(--main-yellow-color) url(../images/icons/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    border-radius: 5px;
    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;
  }
  
  .no-touch .cd-top:hover {
    background-color: #B4E602;
  }
  
  @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;
    }
  }

  /*====================================================
      7. PRELOADER 
    ====================================================*/
    #loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1031;
      background-color: #26292E;
      z-index: 999999;
    }

    #loader-wrapper .loader {
      position: absolute;
      top: 50%;
      left: 48%;
    }
    
    #loader-wrapper .line {
      animation: expand 1s ease-in-out infinite;
      border-radius: 10px;
      display: inline-block;
      transform-origin: center center;
      margin: 0 3px;
      width: 1px;
      height: 25px;
    }
    
    #loader-wrapper .line:nth-child(1) {
      background: #27ae60;
    }
    
    #loader-wrapper .line:nth-child(2) {
      animation-delay: 180ms;
      background: #e6a100;
    }
    
    #loader-wrapper .line:nth-child(3) {
      animation-delay: 360ms;
      background: #e67e22;
    }
    
    #loader-wrapper .line:nth-child(4) {
      animation-delay: 540ms;
      background: #2980b9;
    }
    
    @keyframes expand {
      0% {
        transform: scale(1);
      }
      25% {
        transform: scale(2);
      }
    }

 /*====================================================
      8. YOUTUBE POPUP.
  ====================================================*/
  .popup-youtube .video-image {
    position: relative;
    display: inline-block;
  }

  .popup-youtube .video-image img {
    width: 100%
  }

  .popup-youtube .video-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent url(../img/master/play-button.png) center center no-repeat;
  }

  .popup-youtube .video-image img a:link {
    text-decoration: none;
    color: #FFF;
  }

  .popup-youtube .video-image img a:visited {
    text-decoration: none;
    color: #FFF;
  }

  .popup-youtube .video-image img a:hover {
    text-decoration: none;
    color: #FFF;
  }

  .popup-youtube .video-image img a:active {
    text-decoration: none;
    color: #FFF;
  }
/*====================================================
      9. MODAL POPUP.
  ====================================================*/
.modal-box {
  text-align: center;
}

.modal-box p {
  margin: 15px 0px 15px 0px;
}

.modal-sm .modal-content {
  background: #FFF;
  border: 1px solid #ddd;
  border: 1px solid rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  padding: 10px 20px 10px 20px;
}

.close {
  color: #000;
}

@media (min-width: 992px) {
  .modal-md {
    width: 600px;
  }
}

.btn-popup {
  display: inline-block;
  margin-left: 5rem;
  margin-top: -10px;
}

.popup-youtube {
  position: relative;
}

.pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--main-green-color);
  width: 70px;
  height: 70px;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  line-height: 73px;
  font-size: 30px;
  transform: translate(-50%, -50%);
  padding-left: 4px;
}

.pulse::before,
.pulse::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--main-yellow-color);
  top: -15px;
  right: -15px;
  left: -15px;
  bottom: -15px;
  animation: pulse 1.5s linear infinite;
}

.pulse::after {
  animation-delay: .5s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  to {
    transform: scale(1.2);
    opacity: 0;
  }
}

/*====================================================
    10. GALLERY FILTER.
  ====================================================*/
  /* * {
    -webkit-transform-origin: center !important;
    transform-origin: center !important;
  } */

  .filter-container {
    width: 100%;
    margin: 0rem auto 2.5rem;
    text-align: center;
  }

  .filter {
    padding: 0;
    list-style: none;
  }

  .filter li {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 2;
    padding: 0 25px;
    position: relative;
    color: var(--main-text-color);
    font-weight: 600;
    border: solid 2px var(--main-yellow-color);
    border-radius: 10px;
    margin: 0px 5px;
  }

  .filter li.active {
    color: #FFF;
    background-color: var(--main-yellow-color);
  }

  #kehl-grid {
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    /*  max-width:1920px; */
  }

  #kehl-grid:after {
    content: '';
    display: block;
    clear: both;
  }

  .grid-box {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: calc(100% / 3);
    margin: 0;
    padding: 5px;
    /*   box-sizing: border-box;
        -webkit-transform: translate3d(1px,0,0);
        transform: translate3d(1px,0,0); */
    clear: both;
  }

  #kehl-grid h3 {
    color: #262626;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 1;
  }

  #kehl-grid p {
    color: #333;
    z-index: 4;
    font-size: 12px;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
  }

  /* clear fix */
  .grid:after {
    content: '';
    display: block;
    clear: both;
  }

  /* ---- .grid-item ---- */
  .grid-sizer,
  .grid-box {
    width: 33.333%;
  }

  .grid-two-col .grid-sizer,
  .grid-two-col .grid-box {
    width: 49%;
  }

  .grid-four-col .grid-sizer,
  .grid-four-col .grid-box {
    width: 25%;
  }

  .grid-box {
    float: left;
  }

  .grid-box img {
    display: block;
    width: 100%;
  }

  .grid-box .image-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(256, 256, 256, 0);
    z-index: 1;
    transition: all 300ms linear;
  }

  .grid-box:hover .image-mask {
    background: rgba(256, 256, 256, .8);
  }

  .grid-box h3 {
    position: absolute;
    width: 100%;
    bottom: 30%;
    left: 0;
    margin-bottom: -16px;
    line-height: 26px;
    text-align: center;
    z-index: 4;
    opacity: 0;
    transition: all 300ms linear;
  }

  .grid-box:hover h3 {
    bottom: 50%;
    opacity: 1;
  }

  .grid-box p {
    position: absolute;
    top: 15px;
    left: 25px;
    opacity: 0;
    font-style: italic;
    line-height: 18px;
    transition: all 300ms linear;
  }

  .grid-box:hover p {
    top: 60px;
    left: 25px;
    opacity: 0;
  }

  /*====================================================
    11. MAGNIFIC POPUP.
  ====================================================*/
  .magnific-img {
    width: 100%;
    height: 100%;
  }

  .magnific-img img {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }

  .mfp-with-zoom .mfp-container,
  .mfp-with-zoom.mfp-bg {
    opacity: 0;
    -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;
  }

  .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: -10px;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
  }

  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1;
  }

  .mfp-close:active {
    top: -10px;
  }

  .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: 25px;
    right: 50%;
    left: 50%;
    color: #CCC;
    font-size: 20px;
    line-height: 18px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
  }

  .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;
  } */
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    z-index: 1;
    right: 0 !important;
    font-size: 50px;
    cursor: pointer !important;
  }

  .mfp-image-holder .mfp-close:hover,
  .mfp-iframe-holder .mfp-close:hover {
    color: white;
    border-color: white;
  }

  .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 {
    background: url(https://image.flaticon.com/icons/svg/860/860790.svg) no-Repeat top left !important;
    width: 60px;
    height: 60px;
    left: 30px;
  }

  .mfp-arrow-right {
    background: url(https://image.flaticon.com/icons/svg/709/709586.svg) no-Repeat top left !important;
    width: 60px;
    height: 60px;
    right: 30px;
  }

  /* .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:after {
      border-left: 17px solid #FFF;
      margin-left: 39px;
    }
    .mfp-arrow-right:before {
      border-left: 27px solid #3F3F3F;
    } */

  /*====================================================
    12. MASONRY GALLERY. 
  ====================================================*/
    /* ---- isotope ---- */
    /* .grid {
      background: #DDD;
    } */
    /* clear fix */
    .grid:after {
      content: '';
      display: block;
      clear: both;
    }

    /* ---- .grid-item ---- */
    .grid-sizer,
    .grid-item {
      width: 33.333%;

    }

    .grid-item {
      float: left;
    }

    .grid-item img {
      display: block;
      max-width: 100%;
    }

    @media (max-width:992px) {

      .grid-sizer,
      .grid-item {
        width: 50%;
      }
    }

/*====================================================
    13. MEDIA QUERIES.
  ====================================================*/    
@media (max-width:1200px) {
  .container {
    max-width: 95%;
  }
}

@media (max-width:992px) {
  .button {
    padding: 6px 26px;
    font-size: 1rem;
  }

  .col-mt-lg {
    margin-top: var(--lg-margin-top);
  }

  .col-lg-m {
    margin-top: var(--col-lg-m);
    margin-bottom: var(--col-lg-m);
  }

  .order-md-6 {
      -ms-flex-order: 6;
      order: 6;
  }
      
}

@media (max-width:991px) {
  .order-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-last {
    -ms-flex-order: 13;
    order: 13;
  }
      
  .order-md-12 {
      -ms-flex-order: 6;
      order: 6;
  }
      
  .order-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-last {
    -ms-flex-order: 13;
    order: 13;
  }
    
}

@media (max-width:767px) {
  .button {
    padding: 5px 22px;
    font-size: 16px;
    line-height: 1.8;
  }

  .col-mt-md {
    margin-top: var(--md-margin-top);
  }

  .col-md-m {
    margin-top: var(--col-md-m);
    margin-bottom: var(--col-md-m);
  }

}

@media (max-width:576px) {
  .button {
    padding: 5px 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .col-mt-sm {
    margin-top: var(--sm-margin-top);
  }

}