/*
Theme Name: GM Products Theme
Theme URI: https://gmproducts.com
Author: Imagina Web
Author URI: http://imaginaweb.pe/
*/

@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Calibri', san-serif; }

p {
  line-height: 1.7em;
  color: #4d4d4d;
  font-size: .85em; }

.header {
  position: relative;
  background-color: #fff;
  padding: 1em 0;
  z-index: 99999; }
  .header__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    @media screen and (max-width: 991px) {
      .header__container {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center; } }
  .header__list {
    margin-bottom: 0;
    padding-left: 0; }
    .header__list li {
      display: inline-block;
      margin-left: 2em; }
      .header__list li:first-child {
        margin-left: 0; }
      .header__list li a {
        font-size: .9em;
        color: #737373; }

.logo {
  height: 62px; }

.toggle-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  order: 1;
  display: none; }
  @media screen and (max-width: 768px) {
    .toggle-button {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  .toggle-button span {
    position: relative;
    display: block;
    background-color: #fff;
    width: 1.8em;
    height: 2px; }
    .toggle-button span::before, .toggle-button span::after {
      content: '';
      background-color: #fff;
      width: 1.8em;
      height: 2px;
      position: absolute;
      left: 0;
      -webkit-transition: all .2s;
      -o-transition: all .2s;
      transition: all .2s; }
    .toggle-button span::before {
      top: -.5em; }
    .toggle-button span::after {
      top: .5em; }
  .toggle-button.active span::before, .toggle-button.active span::after {
    top: 0; }

.main-nav {
  background-color: #1a1a1a;
  position: relative; }
  .main-nav--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 0.2em 0.3em rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.2em 0.3em rgba(0, 0, 0, 0.2);
    z-index: 999; }
    .main-nav--fixed .main-nav__container {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
    .main-nav--fixed .main-nav__logo {
      position: relative;
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0); }
    .main-nav--fixed .main-nav__menu li a {
      line-height: 3.5em; }
  .main-nav__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .main-nav__logo {
    height: 35px;
    overflow: hidden;
    position: absolute;
    opacity: 0;
    -webkit-transform: translateY(-5em);
    -ms-transform: translateY(-5em);
    transform: translateY(-5em);
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s; }
  .main-nav__menu {
    padding-left: 0;
    margin-bottom: 0;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s; }
    @media screen and (max-width: 768px) {
      .main-nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        overflow: hidden;
        background-color: #1a1a1a;
        width: 100%;
        opacity: 0;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        z-index: 99999999; } }
    .main-nav__menu.active {
      opacity: 1;
      -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
      transform: scaleY(1); }
    .main-nav__menu li {
      float: left;
      display: inline-block; }
      @media screen and (max-width: 768px) {
        .main-nav__menu li {
          float: none;
          display: block; } }
      .main-nav__menu li a {
        display: block;
        font-size: .9em;
        line-height: 3.2em;
        color: #fff;
        padding: 0 2em;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s; }
        .main-nav__menu li a.active, .current-menu-item {
          background-color: #e6a905; }
        .main-nav__menu li a:hover {
          background-color: #4d4d4d;
          text-decoration: none; }

.footer {
  background-color: #1a1a1a;
  color: #fff;
  font-size: .85em;
  padding: 2em 0; }

.footer-list {
  padding-left: 0;
  list-style: none; }
  .footer-list dt {
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid #e6a905;
    padding-bottom: .3em;
    margin-bottom: .8em; }
  .footer-list li {
    color: rgba(255, 255, 255, 0.4); }
  .footer-list a {
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7em; }
    .footer-list a:hover {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none; }

.container__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: .6em;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: .05em; }
  .container__title::after {
    content: '';
    background-color: rgba(26, 26, 26, 0.2);
    width: 100%;
    height: 1px;
    margin-left: 1em; }
  .container__title--white {
    color: #fff; }
    .container__title--white::after {
      background-color: rgba(255, 255, 255, 0.2); }
  .container__title--center {
    font-size: 1.8em; }
    .container__title--center::before {
      content: '';
      background-color: rgba(26, 26, 26, 0.2);
      width: 100%;
      height: 1px;
      margin-right: 1em; }
  .container__title--white-center {
    font-size: 1.8em;
    color: #fff; }
    .container__title--white-center::before, .container__title--white-center::after {
      background-color: rgba(255, 255, 255, 0.2); }
    .container__title--white-center::before {
      content: '';
      width: 100%;
      height: 1px;
      margin-right: 1em; }

.alt-column {
  background: whitesmoke;
  padding: 15px;
}

.container__subtitle {
  margin-top: .3em;
  margin-bottom: 3em; }

.slick-active .slider__info {
  left: 0;
  opacity: 1; }

.slider {
  position: relative; }
  .slider__content {
    height: 100%; }
  .slider__item {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 480px; }
    .slider__item::before {
      content: '';
      background-color: rgba(26, 26, 26, 0.6);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
  .slider__info {
    position: absolute;
    top: 35%;
    left: 10em;
    opacity: 0;
    padding: 0 15px;
    z-index: 99;
    -webkit-transition: all .8s ease .2s;
    -o-transition: all .8s ease .2s;
    transition: all .8s ease .2s; }
    @media screen and (max-width: 768px) {
      .slider__info {
        left: 0;
        right: 0;
        text-align: center; } }
  .slider__title {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 3em;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: .5em; }
    @media screen and (max-width: 480px) {
      .slider__title {
        font-size: 2em; } }
  .slider__description {
    width: 100%;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.6); }
    @media screen and (max-width: 768px) {
      .slider__description {
        display: none; } }
  .slider__btn-primary, .slider__btn-secondary {
    display: inline-block;
    font-weight: 600;
    line-height: 2.5em;
    padding: 0 .8em;
    border-radius: .3em;
    margin-bottom: .5em;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s; }
    @media screen and (max-width: 480px) {
      .slider__btn-primary, .slider__btn-secondary {
        display: block; } }
  .slider__btn-primary {
    background-color: #e6a905;
    color: #fff; }
    .slider__btn-primary:hover {
      color: #fff;
      background-color: #cd9704;
      text-decoration: none; }
  .slider__btn-secondary {
    margin-left: 1em;
    border: 1px solid #fff;
    color: #fff; }
    @media screen and (max-width: 380px) {
      .slider__btn-secondary {
        margin-left: 0; } }
    .slider__btn-secondary:hover {
      background-color: #1a1a1a;
      color: #fff;
      text-decoration: none;
      border-color: #1a1a1a; }

.slick-dots {
  list-style: none;
  padding-left: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .slick-dots li {
    float: left;
    margin: 0 .2em; }
    .slick-dots li button {
      text-indent: -9999px;
      white-space: nowrap;
      border: 0;
      width: 2.3em;
      height: 4px; }
      .slick-dots li button:focus {
        outline: none; }
  .slick-dots .slick-active button {
    background-color: #e6a905; }

.breadcrumb {
  position: relative;
  padding: 2em 0;
  background-size: cover;
  background-position: center; }
  .breadcrumb::after {
    content: '';
    background-color: rgba(26, 26, 26, 0.8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .breadcrumb__container {
    z-index: 99; }
  .breadcrumb__link {
    color: #e6a905;
    font-size: .9em; }
    .breadcrumb__link:hover {
      color: #e6a905; }
  .breadcrumb__separator {
    color: #fff;
    margin: 0 .3em; }
    .breadcrumb__separator::after {
      content: '›'; }
  .breadcrumb__actual {
    color: #fff;
    font-weight: 500;
    margin-top: .2em; }

.new-container {
  padding-top: 1em;
  padding-bottom: 1.5em; }

.new__item {
  background-color: whitesmoke;
  padding: .5em;
  height: 100%;
  margin-bottom: 1em;
  border: 1px solid #ebebeb;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s; }
  .new__item:hover {
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.05); }
    .new__item:hover .new__thumbnail img {
      -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
      transform: scale(1.15); }

.new__thumbnail, .new__thumbnail--inner {
  position: relative;
  display: block;
  overflow: hidden; }
  .new__thumbnail--inner, .new__thumbnail--inner--inner {
    margin: 1.5em 0; }
  .new__thumbnail img, .new__thumbnail--inner img {
    width: 100%;
    height: auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }

.new__info {
  padding: 0 .5em; }

.new__title {
  display: block;
  margin: 1em 0 .8em;
  color: #1a1a1a; }
  .new__title h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #1a1a1a;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .new__title:hover {
    color: #1a1a1a; }

.new__date {
  display: block;
  font-size: .95em;
  color: #676767; }

.new__read-more {
  display: inline-block;
  background-color: #e6a905;
  color: #fff;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 600;
  padding: .5em 1em;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  .new__read-more:hover {
    text-decoration: none;
    color: #fff;
    background-color: #1a1a1a; }

.new-small {
  margin-bottom: 1em; }
  .new-small__item {
    margin-bottom: 1em; }
    .new-small__item:last-child {
      margin-bottom: 0; }
  .new-small__container {
    background-color: #1a1a1a;
    padding: 15px; }
  .new-small__thumbnail {
    width: 100%; }
  .new-small__title {
    color: rgba(255, 255, 255, 0.7);
    line-height: .5em !important; }
    .new-small__title:hover {
      color: #fff;
      text-decoration: underline; }

.pagination .current .page-numbers {
    background-color: #e6a905;
    color: #fff;
}

.page-numbers {
  display: inline-block;
  background-color: whitesmoke;
  border: 1px solid #ebebeb;
  width: 2em;
  height: 2em;
  text-align: center;
  line-height: 2em;
  margin-right: .5em;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  .page-numbers.current {
    background-color: #e6a905;
    color: #fff; }

a.page-numbers {
  color: #1a1a1a; }
  a.page-numbers:hover {
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none; }

.form-return {
  display: none;
  font-size: .9em;
  color: #fff;
  padding: .5em 1em;
  margin-top: .5em;
  border-radius: .4em; }
  .form-return.loading {
    display: block;
    background: #F89406; }
  .form-return.error {
    display: block;
    background: #EF4836; }

.btn-primary {
  background-color: #1a1a1a;
  border: 0;
  cursor: pointer; }
  .btn-primary:hover {
    background-color: #e6a905; }

.thanks-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding-top: 3em;
  padding-bottom: 3em;
  margin: auto; }

.thanks-content {
  margin: auto;
  text-align: left; }
  @media screen and (max-width: 576px) {
    .thanks-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center; } }

.thanks__title {
  margin-top: .2em;
  font-size: 3em;
  font-weight: 500; }

.thanks__icon {
  width: 100%;
  max-width: 140px;
  padding-right: 2em;
  float: left;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; }
  @media screen and (max-width: 576px) {
    .thanks__icon {
      float: none;
      margin: auto;
      padding-right: 0; } }

.thanks__p {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2; }

.thanks-buttons {
  margin-top: 1em; }

.thanks-btn {
  display: inline-block;
  padding: .3em .8em;
  border: 2px solid #e6a905;
  border-radius: .4em;
  color: #e6a905;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  .thanks-btn:hover {
    text-decoration: none;
    background-color: #e6a905;
    color: #fff; }
  .thanks-btn:last-child {
    margin-left: 1em; }

.locked {
  overflow: hidden; }

.preloader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  z-index: 999999; }
  .preloader img {
    max-width: 350px;
    margin: auto; }

.big-p {
  font-size: 1.2em;
  font-weight: 600; }

.aboutus-container, .contact-container {
  padding: 3em 0; }

.contact-container--inner {
  background-color: whitesmoke; }

.social-info__item {
  background-color: #e6a905;
  margin: auto;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  color: #fff;
  line-height: 2em;
  text-align: center;
  font-size: 1.5em;
  transition: all .3s; }

.linkedin:hover {
  background-color: #0077B5; }
.facebook:hover {
  background-color: #3b5998; }
.wsp:hover {
  background-color: #4dc247; }

.aboutus__image {
  width: 100%; }

.services-container {
  background-color: #1a1a1a;
  padding: 3em 0; }
  .services-container--inner {
    background-color: #fff;
    padding-top: .5em; }

.service__item {
  position: relative;
  overflow: hidden;
  height: 320px;
  margin-top: 30px; }
  .service__item:hover .service__info {
    top: 0; }
  .service__item:hover .service__more-icon {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }

.service__info {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  top: calc(100% - 40px);
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.6);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: 2; }

.service__title {
  background-color: #e6a905;
  width: 100%;
  font-size: 1.3em;
  font-weight: 600;
  text-align: center;
  color: #fff;
  line-height: 40px; }

.service__more-icon {
  margin: auto;
  color: #fff;
  font-size: 4em;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s; }
  .service__more-icon:hover {
    color: #e6a905; }

.service__thumbnail {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(0.2);
  filter: grayscale(0.2);
  -o-object-fit: cover;
  object-fit: cover; }

.remove-padding-left {
  padding-left: 0; }
