@font-face {
  font-family: 'Nunito';
  font-weight: 100;
    src: url('../fonts/Nunito-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-weight: 400;
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    opacity : 0;
    transition: opacity .3s linear;

}

body.loaded {
    opacity : 1;
}

/* type */

a {
    text-decoration: none;
    color: #8e8a26;
}

.center {
    text-align: center;
}

h1 {
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 100;
    line-height: 45px;
    color: #8e8a26;
    margin: 0;
}

.product-info h1 {
    font-size: 50px;
    line-height: 45px;
    margin-top: -15px;
}

.products-info h1 {
    font-size: 85px;
    line-height: 80px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.item-image h1 {
    font-weight: 400;
    color: white;
    position: absolute;
    z-index: 2;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.header-text-home h2 {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 50px;
    line-height: 50px;
    margin: 0;
    margin-bottom: 25px;
    font-weight: 100;
    /*color: white;*/
    color: #8e8a26;
}

.item-title {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 50px;
    line-height: 45px;
    font-weight: 100;
    color: #8e8a26;
    margin: 25px 0;
}

p {
    font-family: 'Nunito', Arial, sans-serif;
    text-align: left;
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    color: #5a5a5a;
    margin: 10px 0 10px 0;
}

.header-text-home p {
    /*color: white;*/
}

.breadcrumbs {
    margin: 0;
    margin-bottom: 30px;
}

.breadcrumbs a {
    font-family: 'Nunito', Arial, sans-serif;
    display: inline-block;
    margin: 0;
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    color: #5a5a5a;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -ms-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;  
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

.breadcrumbs span {
    color: #c1c1c1;
    margin: 0 10px 0 10px;
}

hr {
    height: 1px;
    border: none;
    color: #d8d8d8;
    background-color: #d8d8d8;
    margin: 25px 0 25px;
}

.product-price {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #5a5a5a;
    float: left;
    margin-right: 15px;
    margin-bottom: 30px;
}

.products-info .product-price {
    float: none;
    margin-right: 0;
    margin-top: -10px;
}

.button {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 25px;
    font-weight: 400;
    padding: 7px 13px;
    color: white;
    background-color: #8e8a26;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -ms-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;  
    border-radius: 7px;
    margin-top: -8px;
    display: inline-block;
}

.button:hover {
    opacity: 0.8;
}

@media only screen and (max-width : 1200px) {

    .header-text-home h2 {
        font-family: 'Nunito', Arial, sans-serif;
        font-size: 30px;
        line-height: 30px;
    }

    h1, .item-title {
        font-size: 30px !important;
        line-height: 25px !important;
        font-weight: 400 !important;
        margin: 20px 0 !important;
    }

    .header-text-home h2 {
        color: #8e8a26;
    }

    .header-text-home p {
        color: #5a5a5a;
    }

    .breadcrumbs {
        margin-top: 8px;
    }

    .button {
        font-size: 15px;
    }

}

/* nav */

.copyright {
    position: fixed;
    right: 30px;
    bottom: 30px;
}
.copyright p {
    font-size: 11px;
    line-height: 13px;
    font-weight: 400;
    text-align: right;
    color: #a7a7a7;
    margin: 0;
}

.logo {
    position: fixed;
    z-index: 4;
    left: 30px;
    width: 190px;
    box-shadow: 5px 15px 60px 0px rgba(29, 33, 28, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.logo img {
    width: 100%;
    float:left;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#nav-toggle { 
    position: fixed; 
    z-index: 4;
    right: 30px; 
    top: 25px;
    cursor: pointer;
    padding: 10px 35px 16px 0px; 
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  height: 3px;
  width: 35px;
  background: #5a5a5a;
  position: absolute;
  display: block;
  content: '';
}
#nav-toggle span:before {
  top: -10px; 
}
#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  transition: all .3s ease-in-out;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg) ;
}
#nav-toggle.active span:after {
  transform: rotate(-225deg);
}

@media only screen and (max-width : 1200px) {

    .copyright {
        padding-left: 25px;
        padding-bottom: 25px;
        position: initial;
        display: inline-block;
    }

    .copyright br  {
        content: ' '
    }
    .copyright br:after {
        content: ' '
    }

    .logo {
        border: none;
        left: 15px;
        width: 80px;
        padding: 0px;
        box-shadow: none;
    }

    .nav {
        background-color: white;
        width: 100%;
        height: 65px;
        z-index: 2;
        position: fixed;
        top: 0;
        left: 0;
    }
    
    #nav-toggle {
        cursor: pointer;
        padding: 10px 35px 16px 0px;
        right: 21px;
        top: 21px;
    }

}

/* menu */

.full-menu {
    visibility: hidden;
    display: table;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background-color: hsla(0, 0%, 100%, 0.97);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.full-menu-open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.full-menu--transition {
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.full-menu-center {
    display: table-cell;
    vertical-align: middle;
}

.main-nav {
    list-style: none;
    padding: 0;
    text-align: center;
}

.main-nav li {
    margin: 0 0 30px 0;
}

.main-nav li a {
    color: #5a5a5a;
    line-height: 70px;
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 400;
    font-size: 40px;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;  
}

@media (max-width: 1200px) {
    .main-nav li a {
        line-height: 50px;
        font-size: 30px;
    }
}

@media (max-width: 400px) {
    .main-nav li a {
        line-height: 30px;
        font-size: 30px;
    }
}

.main-nav li a:hover,
.main-nav li a:focus {
    color: #8e8a26;
}

/* slider */

.owl-dots {
    margin-top: -10%;
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 5%;
}

.owl-theme .owl-dots .owl-dot span {
    background: white !important;
    border: 1px solid #8e8a26;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #8e8a26 !important;
}

.owl-carousel, .owl-stage-outer, .owl-stage, .owl-item {
    height: 100%;
}

.owl-carousel {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.product-img {
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
}

/* product */

.product-image {
    width: 100%;
    height: 100%;
    margin-left: 15%;
    float: left;
    position: absolute;
    background-size: cover;
    background-position: 50% 50%;
    animation: imageSize 3.5s ease-in-out forwards;
    -webkit-animation: imageSize 3.5s ease-in-out forwards;
}

.product-image-container {
    overflow: hidden;
    width: 100%;
    margin-left: -30%;
    height: 100%;
    float: left;
    position: fixed;
    animation: imageContainer 3.5s ease-in-out;
    -webkit-animation: imageContainer 3.5s ease-in-out forwards;
    box-shadow: 5px 15px 60px 0px rgba(29, 33, 28, 0.4);
}

@keyframes imageContainer {
  0% {
    width: 100%;
    transform: scale(1.03);
    margin-left: 0;
  }

  60% {
    width: 100%;
    transform: scale(1);
    margin-left: 0;
  }

  100% {
    width: 100%;
    transform: scale(1);
    margin-left: -30%;
  }
}

@keyframes imageSize {
  0% {
    margin-left: 0;
  }

  60% {
    margin-left: 0;
  }

  100% {
    margin-left: 15%;

  }
}

@-webkit-keyframes imageContainer {
  0% {
    width: 100%;
    transform: scale(1.03);
    margin-left: 0;
  }

  60% {
    width: 100%;
    transform: scale(1);
    margin-left: 0;
  }

  100% {
    width: 100%;
    transform: scale(1);
    margin-left: -30%;
  }
}

@-webkit-keyframes imageSize {
  0% {
    margin-left: 0;
  }

  60% {
    margin-left: 0;
  }

  100% {
    margin-left: 15%;

  }
}

.product-info {
    width: 30%;
    float: right;
    padding: 95px;
}

@media only screen and (max-width : 1200px) {

    .product-image-container {
        height: 85%;
        margin-top: 65px;
        margin-left: 0;
        position: initial;
        animation: none;
    }
    
    .product-image {
        height: 85%;
        margin-left: 0;
        animation: none;
    }

    .product-info {
        width: 100%;
        padding: 21px;
    }

}

/* page */

.products-image {
    width: 30%;
    animation: none;
    margin-left: 0;
    position: fixed;
    box-shadow: 5px 15px 60px 0px rgba(29, 33, 28, 0.4);
}

.products-info {
    width: 70%;
}

.products-info .product-price {
    float: none;
}

.item {
    display: block;
    margin-top: 30px;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -ms-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;  
}

.item:hover {
    opacity: 0.8;
}

.content {
    padding: 21px;
    padding: 100px;
    padding-top: 130px;
}

.item-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.66%;
    background-size: cover;
    background-position: 50% 50%;
    box-shadow: 5px 15px 60px 0px rgba(29, 33, 28, 0.4);
    border-radius: 20px;
}

@media only screen and (max-width : 1200px) {

    .products-image {
        width: 100%;
        height: 65%;
        margin-top: 65px;
        left: 0;
        position: initial;
        border-radius: 0;
    }

    .products-info {
        width: 100%;
        padding: 21px;
    }

    .product-price {
        margin-top: -5px;
    }
}

/* pagination */

.MarkupPagerNav {
        clear: both;
        margin: 1em 0;
        font-family: 'Nunito', Arial, sans-serif;
        margin-top: 30px;
        padding: 0;
}
.MarkupPagerNav li {
    display: inline;
    list-style: none;
    margin: 0;
}

.MarkupPagerNav li a,
.MarkupPagerNav li.MarkupPagerNavSeparator {
    display: block;
    float: left;
    padding: 2px 9px;
    color: #fff;
    background: #5a5a5a;
    margin-right: 6px;
    font-size: 18px;
    font-weight: 400;
    padding: 13px;
    border-radius: 5px;
}

.MarkupPagerNav li.MarkupPagerNavOn a,
.MarkupPagerNav li a:hover {
    color: #fff;
    background: #8e8a26;
    text-decoration: none;
}

.MarkupPagerNav li.MarkupPagerNavSeparator {
    display: inline;
    color: #777;
    background: #d2e4ea;
    padding-left: 3px;
    padding-right: 3px;
}

/* home */

.mouse {
  position: absolute;
  width: 42px;
  height: 82px;
  bottom: 80px;
  left: 50%;
  margin-left: -12px;
  border-radius: 32px;
  border: 2px solid white;
  animation: intro 1s;
}

.scroll {
  display: block;
  width: 3px;
  height: 10px;
  margin: 6px auto;
  border-radius: 4px;
  background: white;
  animation: finger 1s infinite;
}
        
@keyframes intro {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.header-image-home {
    /*width: calc(100% - 95px);*/
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: 50% 50%;
    box-shadow: 5px 15px 60px 0px rgba(29, 33, 28, 0.4);
}

.header-content-home {
    position: absolute;
    top: 50%;
    right: 155px;
    left: 55%;
    transform: translate(0, -50%);
}

.header-buttons-home {
    padding-top: 24px;
}

.header-buttons-home .button {
    margin-right: 10px;
}

@media only screen and (max-width : 1200px) {

    .header-image-home {
        width: 100%;
        height: 65%;
        margin-top: 65px;
        position: relative;
        background-position: 23% 50%;
    }

    .header-content-home {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
    }

    .header-text-home {
        border-radius: 0;
        background-color: rgba(0, 0, 0, 0.0);
        box-shadow: none;
        width: 100%;
        padding: 25px;
        padding-bottom: 10px;
    }

    .header-buttons-home {
        padding: 25px;
        padding-top: 0;
    }

}

/* grid */

 .block-group,.block,.block-group:after,.block:after,.block-group:before,.block:before{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
 .block-group{
    *zoom:1 ;
    margin: 0 0 0 -50px;
}
 .block-group:before,.block-group:after{
    display:table;
    content:"";
    line-height:0;
}
 .block-group:after{
    clear:both;
}
 .block-group{
    list-style-type:none;
    padding:0;
}
 .block-group>.block-group{
    clear:none;
    float:left;
    margin:0 !important;
}
 .block{
    float:left;
    width:100%;
    padding: 0 0 0 50px;
}
 .col-1 {
    width: 8.33%;
}
 .col-2 {
    width: 16.66%;
}
 .col-3 {
    width: 25%;
}
 .col-3:nth-child(4n+1) {
    clear:left;
}
 .col-4 {
    width: 33.33%;
}
 .col-4:nth-child(3n+1) {
    clear:left;
}
 .col-5 {
    width: 41.66%;
}
 .col-6 {
    width: 50%;
}
 .col-6:nth-child(2n+1) {
    clear:left;
}
 .col-7 {
    width: 58.33%;
}
 .col-8 {
    width: 66.66%;
}
 .col-9 {
    width: 75%;
}
 .col-10 {
    width: 83.33%;
}
 .col-11 {
    width: 91.66%;
}
 .col-12 {
    width: 100%;
}

@media (max-width: 700px) {
  .block {
    width: 100%;
    }
}

.container {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; 
}

.container-basic {
    width: 50%;
}

@media (max-width: 1200px) {
    .container-basic {
        width: 100%;
    }
}