.grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.span-1, .span-2, .span-3, .span-4, .span-5, .span-6,
.span-7, .span-8, .span-9, .span-10, .span-11, .span-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .span-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .span-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .span-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .span-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .span-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .span-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .span-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .span-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .span-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .span-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .span-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .span-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/*-

Description: This is a stylesheet containing styling for mobile devices.

Use this file as a reference for Custom CSS or to build
a child theme color scheme. Do not edit this file directly -
it is not loaded into the theme!!

Author: Obox Themes
Author URI: http://www.oboxthemes.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/*--------------------------------------------------------------*/
/*- SMALL SCREENS ----------------------------------------------*/
/*--------------------------------------------------------------*/
@media only screen and (max-width: 480px){

  /*-------------------------------*/
  /*- NAVIGATION ------------------*/

  /*-------------------------------*/
  /*- HEADER RIGHT REPSONSIVE NAV -*/
  .header-right .responsive-nav{
    margin-left: 0;
  }

  /*---------------------------*/
  /*- TABBED NAV --------------*/
  .nav-tabs{
    padding: 5px;
  }
  .nav-tabs li{
    width: 50%;
    padding: 5px;
    margin: 0;
  }

  /*---------------------------*/
  /*- VERTICAL NAV SUB MENUS --*/
  .nav-vertical{
    display: block;
  }
  .nav-vertical .sub-menu{
    width: auto;
    position: static;
    visibility: visible;
    opacity: 1;
    left: auto;
    right: auto;
    top: auto;
    box-shadow: none;
    border: none;
    font-size: 1.2rem;
  }
  .nav-vertical .sub-menu .sub-menu{
    margin-left: 10px;
  }
  .nav-vertical .sub-menu li{
    border: none;
    width: auto;
  }

  /*-------------------------------*/
  /*- SLIDER ----------------------*/

  .swiper-slide .section-title.large .heading{
    font-size: 3rem;
  }
  .swiper-slide .section-title.large .excerpt{
    font-size: 2rem;
  }

  /*-------------------------------*/
  /*- CONTENT ---------------------*/

  /*---------------------------*/
  /*- META INFO ---------------*/
  .single .meta-item{
    display: block;
  }

  /*-------------------------------*/
  /*- COMPONENTS ------------------*/

  /*---------------------------*/
  /*- MEDIA BLOCK -------------*/
  .media.image-right .media-image,
  .media.image-left .media-image{
    float: none;
    max-width: none;
    margin: 0 0 20px;
  }

  /*-------------------------------*/
  /*- FOOTERS ---------------------*/

  /*---------------------------*/
  /*- COPYRIGHT ---------------*/
  .copyright .column{
    margin-bottom: 10px;
  }
  .copyright .column:last-child{
    margin-bottom: 0;
  }
  .copyright .logo{
    display: none;
  }
  .copyright .t-right{
    text-align: left;
  }
  .copyright .pull-right{
    float: none;
  }
  .copyright .nav-horizontal{
    margin-top: 10px;
  }
  .copyright .nav-horizontal li{
    margin: 0 10px 0 0;
  }


}

/*--------------------------------------------------------------*/
/*- EVERYTHING BIGGER THAN A PHONE -----------------------------*/
/*--------------------------------------------------------------*/
@media only screen and (min-width: 481px){

  /*---------------------------*/
  /*- HEADERS -----------------*/
  .header-secondary{
    display: block;
  }
  .body-header-sidebar .header-secondary .container{
    max-width: none;
    padding: 0 10px;
  }

  /*---------------------------*/
  /*- MEDIA BLOCK -------------*/

  /*-----------------------*/
  /*- IMAGE LEFT / RIGHT --*/
  .image-left .media-image{
    max-width: 49%;
    margin-right: 20px;
  }
  .image-right .media-image{
    order: 1;
    max-width: 49%;
    margin-right: 0;
    margin-left: 20px;
  }
  .image-left .media-body,
  .image-right .media-body{
    margin-top: 0;
  }

}

/*--------------------------------------------------------------*/
/*-  MOBILE LANDSCAPE MODES ------------------------------------*/
/*--------------------------------------------------------------*/
@media only screen and (min-width: 481px) and (max-width: 640px){

  /*---------------------------*/
  /*- MEDIA BLOCK -------------*/

  /*-----------------------*/
  /*- IMAGE LEFT / RIGHT --*/
  .image-left .media-image,
  .image-right .media-image{
    float: none;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .image-left .media-body,
  .image-right .media-body{
    margin-top: 10px;
  }

}


/*--------------------------------------------------------------*/
/*- EVERYTHING UP TO TABLET ------------------------------------*/
/*--------------------------------------------------------------*/
@media only screen and (max-width: 768px){

  /*---------------------------*/
  /*- MASONRY -----------------*/
  .container.list-masonry{
    padding: 0 10px;
  }


  /*---------------------------*/
  /*- HEADER INLINE -----------*/
  .header-inline .container{
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .header-inline .inline-site-logo{
    display: -webkit-flex;
    -webkit-flex: 1;

    display: flex;
    flex: 1;
  }
  .header-inline .inline-right-nav{
    display: -webkit-flex;
    -webkit-flex-direction: row-reverse;

    display: flex;
    flex-direction: row-reverse;
  }
  .header-inline .inline-left-nav,
  .header-site.header-inline nav{
    display: none;
  }

  .pull-left,
  .pull-right{
    float: none;
  }

  /*---------------------------*/
  /*- FORM ROWS ---------------*/
  .form-row{
    margin-bottom: 15px;
  }

  /*---------------------------*/
  /*- CLOSE OFF CANVAS --------*/
  .admin-bar section[class*=' off-canvas-'] .close-canvas{
    top: 46px;
  }

  /*---------------------------*/
  /*- OFF CANVAS SIDEBAR ------*/
  .admin-bar div[class*=" off-canvas-"]{
    padding-top: 47px;
  }


}

/*--------------------------------------------------------------*/
/*- EVERYTHING BIGGER THAN TABLETS -----------------------------*/
/*--------------------------------------------------------------*/
@media only screen and (min-width: 769px) {

  /*-------------------------------*/
  /*- GRIDS -----------------------*/

  /*---------------------------*/
  /*---------------------------*/
  /*- GUTTERS -----------------*/
  .offset-1{margin-right: 8.5%;}
  .offset-2{margin-right: 17%;}
  .offset-3{margin-right: 25.5%;}
  .offset-4{margin-right: 34%;}
  .offset-5{margin-right: 42.5%;}
  .offset-6{margin-right: 51%;}
  .offset-7{margin-right: 59.5%;}
  .offset-8{margin-right: 68%;}
  .offset-9{margin-right: 76.5%;}
  .offset-10{margin-right: 85%;}
  .offset-11{margin-right: 93.5%;}

  .offset-left-1{margin-left: 8.5%;}
  .offset-left-2{margin-left: 17%;}
  .offset-left-3{margin-left: 25.5%;}
  .offset-left-4{margin-left: 34%;}
  .offset-left-5{margin-left: 42.5%;}
  .offset-left-6{margin-left: 51%;}
  .offset-left-7{margin-left: 59.5%;}
  .offset-left-8{margin-left: 68%;}
  .offset-left-9{margin-left: 76.5%;}
  .offset-left-10{margin-left: 85%;}
  .offset-left-11{margin-left: 93.5%;}

  .pull-left-1{margin-left: -8.5%;}
  .pull-left-2{margin-left: -17%;}
  .pull-left-3{margin-left: -25.5%;}
  .pull-left-4{margin-left: -34%;}
  .pull-left-5{margin-left: -42.5%;}
  .pull-left-6{margin-left: -51%;}
  .pull-left-7{margin-left: -59.5%;}
  .pull-left-8{margin-left: -68%;}
  .pull-left-9{margin-left: -76.5%;}
  .pull-left-10{margin-left: -85%;}
  .pull-left-11{margin-left: -93.5%;}

  .pull-right-1{margin-right: -8.5%;}
  .pull-right-2{margin-right: -17%;}
  .pull-right-3{margin-right: -25.5%;}
  .pull-right-4{margin-right: -34%;}
  .pull-right-5{margin-right: -42.5%;}
  .pull-right-6{margin-right: -51%;}
  .pull-right-7{margin-right: -59.5%;}
  .pull-right-8{margin-right: -68%;}
  .pull-right-9{margin-right: -76.5%;}
  .pull-right-10{margin-right: -85%;}
  .pull-right-11{margin-right: -93.5%;}


  /*-------------------------------*/
  /*- HEADERS ---------------------*/

  .header-site .container{
    padding: 20px;
  }

  /*---------------------------*/
  /*- NAV DISPLAY -------------*/
  .nav-horizontal ul{
    display: inline-block;
  }
  .responsive-nav{
    display: none;
  }

  /*---------------------------*/
  /*- ALIGNMENT CENTER --------*/
  .header-center{
    text-align: center;
  }
  .header-center .container,
  .header-center > .header-block{
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .header-center .site-description{
    display: block;
    margin: 0;
  }
  .header-center .site-logo-link + .site-description{
    margin: 10px 0 0;
  }
  .header-center .site-logo-link + .tagline{
    margin-top: 10px;
  }
  .header-center nav{
    margin-top: 20px;
    text-align: center;
    line-height: 20px;
  }

  /*---------------------------*/
  /*- ALIGNMENT INLINE --------*/
  .header-inline .container,
  .header-inline > .clearfix{
    -webkit-justify-content: center;
    justify-content: center;
  }
  .header-inline .inline-site-logo{
    display: -webkit-flex;
    -webkit-justify-content: center;

    display: flex;
    justify-content: center;

    width: 20%;
    margin: 0 20px;
    z-index: 1;
  }

  .header-inline .logo{
    text-align: center;
  }
  .header-inline .site-description{
    display: block;
    margin: 0;
  }
  .header-inline .site-logo-link + .site-description{
    margin-top: 10px;
  }

  .header-inline .inline-left-nav{
    display: -webkit-flex;
    -webkit-justify-content: flex-end;

    display: flex;
    justify-content: flex-end;

    width: 40%;
    position: relative;
    z-index: 2;
  }
  .header-inline .inline-right-nav{
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    width: 40%;
    position: relative;
    z-index: 2;
  }
  .header-inline .inline-right-nav nav{
    display: block;
  }

  /*---------------------------*/
  /*- NAV BOTTOM --------------*/
  .nav-clear .container,
  .nav-clear > .header-block{
    -webkit-flex-direction: column;
    -webkit-align-items: flex-start;

    flex-direction: column;
    align-items: flex-start;
  }
  .nav-clear .site-logo-link + .sitename{
    margin-top: 10px;
  }
  .nav-clear .site-logo-link + .tagline{
    margin-top: 10px;
  }
  .nav-clear nav{
    width: 100%;
    margin: 20px 0 0;
    line-height: 20px;
  }

  /*---------------------------*/
  /*- HEADER SIDEBAR ----------*/
  .header-side-wrapper{
    display: flex;
    flex: 1;
    flex-direction: row;
  }
  .header-side-wrapper .header-site{
    order: 1;
    width: 280px;
  }
  .header-side-wrapper .wrapper-content{
    order: 2;
    width: calc(100% - 280px);
    min-height: 100vh;
  }

  .header-side-wrapper .header-site .container,
  .header-side-wrapper .header-site > .header-block{
    -webkit-flex-direction: column;
    -webkit-align-items: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  .header-side-wrapper .header-site nav{
    width: 100%;
    margin: 20px 0 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-side-wrapper .header-site .nav-horizontal > ul{
    float: none;
    display: block;
    width: 100%;
  }
  .header-side-wrapper .header-site .nav-horizontal li{
    float: none;
    margin: 0;
  }
  .header-side-wrapper .header-site .nav-horizontal > ul > li > a{
    padding: 0;
    text-align: left;
  }

  /*-----------------------------*/
  /*- VERTICAL MENU POSITIONING -*/
  .header-side-wrapper .header-site .menu-item-has-children > a::after {
    content: "\e600";
  }
  .header-side-wrapper .header-site .nav li > .sub-menu,
  .header-side-wrapper .header-site .nav li .children{
    top: 0;
    left: 200px;
    right: auto;
  }
  .header-side-wrapper .header-site .nav li:hover > .sub-menu,
  .header-side-wrapper .header-site .nav li:hover .children{
    top: 0;
    left: 200px;
  }

  /*-----------------------------*/
  /*- HEADER CART POSITIONING ---*/
  .header-side-wrapper .header-site .header-cart{
    margin-left: 0px;
    width: 280px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    border-radius: 0px;
  }

  /*---------------------------*/
  /*- STICKY HEADER VARIATIONS */

  /*-----------------------*/
  /*- HEADER CENTER -------*/
  .header-sticky.is_stuck.header-center .logo{
    display: none;
  }
  .header-sticky.is_stuck.header-center nav{
    margin-top: 0;
  }

  /*-----------------------*/
  /*- NAV BOTTOM ----------*/
  .header-sticky.is_stuck.nav-clear .logo{
    display: none;
  }
  .header-sticky.is_stuck.nav-clear nav{
    margin-top: 0;
  }

  /*-----------------------*/
  /*- HEADER INLINE -------*/
  .header-sticky.is_stuck.header-inline .site-description{
    display: none;
  }

  /*-----------------------*/
  /*- HEADER IN ADMIN MODE */
  .admin-bar .header-sticky.is_stuck.is_stuck_show{
    margin-top: 30px;
  }

  /*-------------------------------*/
  /*- THUMBNAILS ------------------*/

  /*---------------------------*/
  /*- OVERLAY -----------------*/
  .with-overlay{
    overflow: hidden;
  }
  .with-overlay .thumbnail-body{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .with-overlay .thumbnail-body{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s all ease-in-out;
    text-align: center;
  }
  .with-overlay .image-rounded + .thumbnail-body{
    border-radius: 100%;
  }
  .with-overlay .overlay{
    display: block;
    position: relative;
    top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .with-overlay .thumbnail-body{
    background: rgba(0, 0, 0, 0.65) !important;
  }
  .with-overlay .heading{
    opacity: 0;
    color: #fff;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    transition: 0.2s all ease-in-out 0.1s;
  }
  .with-overlay .heading a{
    color: #fff;
  }
  .with-overlay .excerpt {
    color: #fff;
  }
  .with-overlay .meta-info .meta-info {
    margin-top: 10px;
  }
  .with-overlay .meta-info a.layers-author {
    color: #999;
    font-size: 11px;
  }

  .with-overlay .button{
    margin-top: 15px;
    position: relative;
    opacity: 0;
    background: none;
    border: 2px solid #fff;
    position: relative;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    transition: transform 0.2s ease-in-out 0.2s, opacity 0.2s ease-in-out 0.25s;
  }

  /*.with-overlay .excerpt{display: none;}*/
  /*.with-overlay .meta-info{display: none;}*/

  /*-----------------------*/
  /*- OVERLAY HOVER -------*/
  .with-overlay:hover .thumbnail-media img{
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  .with-overlay:hover .thumbnail-body{
    visibility: visible;
    opacity: 1;
  }
  .with-overlay:hover .heading{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .with-overlay:hover .button{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  /*-----------------------*/
  /*- MEDIA SMALL ---------*/
  .has-image .image-left.small .media-body,
  .has-image .image-right.small .media-body{
    margin-top: 0;
  }

  /*-------------------------------*/
  /*- OFF CANVAS MENU -------------*/

  /*---------------------------*/
  /*- OFF CANVAS MENU ---------*/
  section[class*=' off-canvas-'] .nav-mobile{
    display: none;
  }

  /*-------------------------------*/
  /*- SLIDER ----------------------*/

  /*---------------------------*/
  /*- SLIDER CONTENT ----------*/
  .swiper-slide .container{
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-slide.text-center .excerpt{
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-slide.image-left .container{
    -webkit-flex-direction: row-reverse;
    -webkit-justify-content: flex-start;

    flex-direction: row-reverse;
    justify-content: flex-start;
  }
  .swiper-slide.image-left .image-container{
    width: 50%;
    padding-right: 20px;
  }
  .swiper-slide.image-left .copy-container{
    width: 50%;
    padding-left: 20px;
  }

  .swiper-slide.image-right .container{
    -webkit-flex-direction: row;
    -webkit-justify-content: flex-start;

    flex-direction: row;
    justify-content: flex-start;
  }
  .swiper-slide.image-right .image-container{
    width: 50%;
    padding-left: 20px;
  }
  .swiper-slide.image-right .copy-container{
    width: 50%;
    padding-right: 20px;
  }
  .swiper-slide.text-right .excerpt{
    float: right;
  }

  .swiper-slide.image-right .copy-container + .image-container,
  .swiper-slide.image-left .copy-container + .image-container{
    margin-top: 0;
  }

}

@media only screen and (max-width: 480px), screen and (max-device-width: 480px), screen and (max-width: 600px) {

  /*---------------------------*/
  /*- BACK TO TOP -------------*/
  #back-to-top{
    display: none;
  }

}