/* ============================================================
  Variables and base styles 
============================================================ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, 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;
  vertical-align: baseline;
    font-family: 'Verdana', sans-serif;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}


/*
  Elements
------------------------------------------------------------ */

/* Buttons */
.button-primary {
  display: inline-block;
  position: relative;
  padding: 6px 20px;
  border: 1px solid #776464;
  color: #776464;
  font-family: 'Verdana', sans-serif;
  font-size: 1em;
  text-decoration: none;
  margin: 20px auto;
  transition: color 0.4s;
}
.button-primary::after {
  content: " ";
  border: 1px solid rgba(0,0,0,0);
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.4s;
}
.button-primary:hover {
  color: #776464;
}
.button-primary:hover::after {  
  border: 1px solid #776464;
  width: calc(100% - 10px);
  height: calc(100% + 10px); 
}

.wrapper-back .button-primary {
    margin-top: 50px;
    margin-left: 60px;
}


/* Slick Slider Slides */
.slick-slide {
    min-width: 500px;
}
.slick-slide h2 {
    max-width: 800px;
    text-align: center;
    margin-top: 5%;
}

/* Slick Slider Arrows */
.slick-arrow {
    width: 50px;
    height: 50px;
    z-index: 2;
} 
.slick-arrow::before {
    color: #776464;
    font-size: 50px;
}
.slick-dots {
    bottom: -50px;
}


/* Structure */

.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Icons */

.icon-facebook {
    background-image: url('../myicons/facebook.png');
    width: 33px;
    height: 33px;
    display: block;
    background-repeat: no-repeat;
}


.icon-info {
    background-image: url('../myicons/info.png');
    width: 20px;
    height: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}


.icon-mobile-menu {
    background-image: url('../myicons/mobile-menu.png');
    width: 33px;
    height: 33px;
    display: block;
    background-repeat: no-repeat;
}


.icon-cross {
    background-image: url('../myicons/cross.png');
    width: 33px;
    height: 33px;
    display: block;
    background-repeat: no-repeat;
}