/* MIXINS */

a:focus {
  outline: none !important;
}

p strong {
  color: #000000;
}

::-webkit-scrollbar {
  height: 10px;
  width: 10px;
  border-radius: 4px;
  background: #ebebeb;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #aba6a6;
}

::-webkit-scrollbar-thumb {
  background: #c6c7ca;
  border-radius: 4px;
}

html,
body {
  color: #666666;
  background: #ffffff;
  font-size: 1rem;
}

html .h1,
html .h2,
html .h3,
html .h4,
html .h5,
html .h6,
html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html .small-title,
body .h1,
body .h2,
body .h3,
body .h4,
body .h5,
body .h6,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .small-title {
  color: #1a1a1a;
}

html .no-overflow,
body .no-overflow {
  height: 100vh;
  width: 100%;
  position: fixed;
  overflow-y: hidden;
}

html .list-group-item,
body .list-group-item {
  border-bottom: 0px;
}

strong {
  color: #000000;
}

small {
  font-weight: 500;
}

.btn {
  border-radius: 3px;
  background: #1a1a1a;
  color: #ffffff;
  outline: none !important;
  font-size: .9rem;
  font-weight: bold;
  margin-top: 1rem;
}

.btn.loading {
  text-indent: -9999px;
  background: url(/img/loader.svg) center center no-repeat #000000;
  background-size: 40px;
  width: 100px;
}

.btn.loading:hover {
  text-indent: -9999px;
  background: url(/img/loader.svg) center center no-repeat #000000;
  background-size: 40px;
  width: 100px;
  cursor: default;
}

.btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(136, 136, 136, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(136, 136, 136, 0.25);
}

.btn.white {
  background: #ffffff;
  color: #1a1a1a !important;
}

.btn.white:hover {
  background: #7cd138;
  color: #ffffff !important;
}

.btn:focus {
  outline: none !important;
}

.btn:hover {
  background: #2d2d2d;
}

.text-btn {
  position: relative;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: bold;
}

.text-btn.white {
  color: #ffffff;
}

.text-btn.white:before {
  background: #ffffff;
}

.text-btn.white:hover {
  color: #ffffff;
  text-decoration: none;
}

.text-btn.white:hover:before {
  width: 100%;
  transition: 200ms all;
  -moz-transition: 200ms all;
  -webkit-transition: 200ms all;
}

.text-btn:before {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 0px;
  bottom: -5px;
  transition: 200ms all;
  -moz-transition: 200ms all;
  -webkit-transition: 200ms all;
  background: #1a1a1a;
}

.text-btn:hover {
  color: #2d2d2d;
  text-decoration: none;
}

.text-btn:hover:before {
  width: 100%;
  transition: 200ms all;
  -moz-transition: 200ms all;
  -webkit-transition: 200ms all;
}

.text-btn svg {
  height: 14px;
  width: auto;
  position: relative;
  top: 0px;
}

input[type="checkbox"] {
  width: 0px;
  overflow: hidden;
  display: inline;
  visibility: hidden;
  position: absolute;
  z-index: -1;
}

.checkbox-span {
  width: 4px;
  margin: 2px 4px 0 0;
  height: 6px;
  float: left;
  position: relative;
  display: block;
  background: #ffffff;
  margin-right: 10px;
  padding: 8px;
  outline: 0;
  background-size: contain;
  transition: 300ms all;
  -moz-transition: 300ms all;
  -webkit-transition: 300ms all;
  border: 1px solid #b3b3b3;
  cursor: pointer;
  border-radius: 3px;
}

.checkbox-span.checked {
  background: url(/img/spunta_form.svg) #ffffff center center no-repeat;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
}

.wrapper label.error {
  width: 100%;
  bottom: -12px;
  top: initial !important;
  background: #e2413e;
  padding: 2px 17px;
  left: 0;
  font-size: 10px;
  text-transform: uppercase;
  color: #ffffff;
  height: 17px;
}

.wrapper.privacy label:not(.error) {
  display: none !important;
}

.wrapper.privacy label.error {
  bottom: -20px;
}

.wrapper.privacy .checkbox-span.error {
  border-color: #b3b3b3;
}

footer {
  background: #69b32e;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
  outline: none !important;
}

.wrapper input.text,
.wrapper select.text,
.wrapper textarea.text {
  border-radius: 3px;
}

.clear-form {
  width: 100%;
  clear: both;
}

@media (max-width: 575px) {
  body {
    padding-top: 45px;
  }

  .navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 45px;
    z-index: 1005;
    background: #f2f2f2;
  }

  .navbar:after {
    content: "";
    position: absolute;
    width: 100%;
    right: -100vw;
    height: 100%;
    background: #1a1a1a;
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
  }

  .navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 45px;
    border-radius: 0px;
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
    outline: none !important;
    background: #1a1a1a;
    border: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1;
  }

  .navbar-toggler:hover {
    background: #000000;
  }

  .navbar-toggler span {
    font-weight: 400;
    font-size: .9rem;
    line-height: .1rem;
    color: #ffffff;
  }

  .navbar-toggler img {
    max-height: 15px;
  }

  .navbar-brand {
    padding-top: .4rem;
    padding-bottom: .4rem;
  }

  .navbar-brand img {
    height: 1.8rem;
    width: auto;
  }

  .menu_ul {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 5rem;
  }

  #menu-control {
    width: 28px;
    height: 22px;
  }

  #menu-control.open {
    width: 28px;
    height: 17px;
  }

  .close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    width: 1.2rem;
    height: 1.2rem;
    background: url(/img/close.svg) center center no-repeat;
    background-size: contain;
  }

  .open.navbar {
    background-color: transparent;
  }

  .open.navbar:after {
    content: "";
    position: absolute;
    width: 100%;
    right: 0;
    height: 100%;
    background: #1a1a1a;
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
    z-index: 0;
  }

  .open .navbar-brand {
    opacity: 0;
    filter: alpha(opacity=0);
  }

  .collapse {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100vw;
    background: #1a1a1a;
    z-index: 1001;
    padding-top: 5rem;
    overflow-y: auto;
    top: 0;
    display: block;
    transition: 300ms right;
    -moz-transition: 300ms right;
    -webkit-transition: 300ms right;
  }

  .collapse ::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    border-radius: 0px;
    background: #1a1a1a;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .collapse ::-webkit-scrollbar-thumb:hover {
    background: #1a1a1a;
  }

  .collapse ::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 0px;
  }

  .collapse.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    right: 0;
    transition: 300ms right;
    -moz-transition: 300ms right;
    -webkit-transition: 300ms right;
  }

  .collapsing {
    background: #1a1a1a;
  }

  .nav-link {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 1rem;
    transition: 100ms all;
    -moz-transition: 100ms all;
    -webkit-transition: 100ms all;
    padding-right: 0px;
    font-weight: 700;
  }

  .nav-link.user {
    margin-top: 30px;
  }

  .nav-link:before {
    content: "";
    position: absolute;
    left: 1.05rem;
    height: 1px;
    width: 0px;
    bottom: 5px;
    transition: 200ms all;
    -moz-transition: 200ms all;
    -webkit-transition: 200ms all;
    background: #ffffff;
  }

  .nav-link:hover {
    color: #ffffff;
  }

  .nav-link:hover:before {
    width: calc(100% - 1rem);
    transition: 200ms all;
    -moz-transition: 200ms all;
    -webkit-transition: 200ms all;
  }

  .dropdown-toggle:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    position: relative;
    vertical-align: .255em;
    content: "";
    border-top: 0.25em solid;
    border-right: .25em solid transparent;
    border-bottom: 0;
    border-left: .25em solid transparent;
    top: 2px;
  }

  .dropdown-menu {
    position: relative !important;
    -webkit-transform: none !important;
            transform: none !important;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    margin-left: 1rem;
    width: 100%;
    font-size: .9rem;
    color: #ffffff;
    text-align: left;
    list-style: none;
    background-color: transparent;
    background-clip: padding-box;
    border: 0;
    border-left: 1px solid #ffffff;
    border-radius: 0px;
  }

  .dropdown-menu.show {
    margin-bottom: 1.3rem;
  }

  .dropdown-item {
    display: inline-block;
    width: auto;
    max-width: 100vw;
    padding: .5rem 1.3rem;
    clear: both;
    color: #999999;
    text-align: inherit;
    white-space: normal;
    line-height: 15px;
    background-color: transparent;
    border: 0;
    float: left;
    font-weight: 500;
  }

  .dropdown-item:hover {
    background-color: transparent;
    color: #ffffff;
  }

  .owl-carousel .owl-item {
    min-height: calc(100vh - 55px);
  }

  .owl-carousel .owl-item > div {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
  }

  .owl-carousel .owl-item article {
    text-align: center;
    padding: 2rem 1.25rem 4rem 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .owl-carousel h2 {
    color: #ffffff;
    font-size: 1.6rem;
  }

  .owl-carousel p {
    color: #ffffff;
  }

  .owl-dots {
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 0;
    bottom: 20px;
  }

  .owl-dots .owl-dot {
    border-radius: 20px;
    background: #ffffff63;
    height: 10px;
    width: 10px;
    margin-right: 7px;
    display: inline-block;
  }

  .owl-dots .owl-dot.active {
    background: #ffffff;
  }

  .owl-dots .owl-dot:last-child {
    margin-right: 0px;
  }
}

@media (min-width: 576px) {
  body {
    padding-top: 45px;
  }

  .navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 45px;
    z-index: 1005;
    background: #f2f2f2;
  }

  .navbar:after {
    content: "";
    position: absolute;
    width: 100%;
    right: -100vw;
    height: 100%;
    background: #1a1a1a;
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
  }

  .navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 45px;
    border-radius: 0px;
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
    outline: none !important;
    background: #1a1a1a;
    border: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1;
  }

  .navbar-toggler:hover {
    background: #000000;
  }

  .navbar-toggler span {
    font-weight: 400;
    font-size: .9rem;
    line-height: .1rem;
    color: #ffffff;
  }

  .navbar-toggler img {
    max-height: 15px;
  }

  .navbar-brand {
    padding-top: .4rem;
    padding-bottom: .4rem;
  }

  .navbar-brand img {
    height: 1.8rem;
    width: auto;
    margin-left: .3rem;
  }

  .menu_ul {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 5rem;
  }

  #menu-control {
    width: 28px;
    height: 22px;
  }

  #menu-control.open {
    width: 28px;
    height: 17px;
  }

  .close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    width: 1.2rem;
    height: 1.2rem;
    background: url(/img/close.svg) center center no-repeat;
    background-size: contain;
  }

  .open.navbar {
    background-color: transparent;
  }

  .open.navbar:after {
    content: "";
    position: absolute;
    width: 100%;
    right: 0;
    height: 100%;
    background: #1a1a1a;
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
    z-index: 0;
  }

  .open .navbar-brand {
    opacity: 0;
    filter: alpha(opacity=0);
  }

  .collapse {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100vw;
    background: #1a1a1a;
    z-index: 1001;
    padding-top: 5rem;
    overflow-y: auto;
    top: 0;
    display: block;
    transition: 300ms right;
    -moz-transition: 300ms right;
    -webkit-transition: 300ms right;
  }

  .collapse.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    right: 0;
    transition: 300ms right;
    -moz-transition: 300ms right;
    -webkit-transition: 300ms right;
  }

  .collapsing {
    background: #1a1a1a;
  }

  .nav-link {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 1rem;
    transition: 100ms all;
    -moz-transition: 100ms all;
    -webkit-transition: 100ms all;
    padding-right: 0px;
    font-weight: 700;
  }

  .nav-link.user {
    margin-top: 30px;
  }

  .nav-link:before {
    content: "";
    position: absolute;
    left: 1.05rem;
    height: 1px;
    width: 0px;
    bottom: 5px;
    transition: 200ms all;
    -moz-transition: 200ms all;
    -webkit-transition: 200ms all;
    background: #ffffff;
  }

  .nav-link:hover {
    color: #ffffff;
  }

  .nav-link:hover:before {
    width: calc(100% - 1rem);
    transition: 200ms all;
    -moz-transition: 200ms all;
    -webkit-transition: 200ms all;
  }

  .dropdown-toggle:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    position: relative;
    vertical-align: .255em;
    content: "";
    border-top: 0.25em solid;
    border-right: .25em solid transparent;
    border-bottom: 0;
    border-left: .25em solid transparent;
    top: 2px;
  }

  .dropdown-menu {
    position: relative !important;
    -webkit-transform: none !important;
            transform: none !important;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    margin-left: 1rem;
    width: 100%;
    font-size: .9rem;
    color: #ffffff;
    text-align: left;
    list-style: none;
    background-color: transparent;
    background-clip: padding-box;
    border: 0;
    border-left: 1px solid #ffffff;
    border-radius: 0px;
  }

  .dropdown-menu.show {
    margin-bottom: 1.3rem;
  }

  .dropdown-item {
    display: inline-block;
    width: auto;
    max-width: 100vw;
    padding: .5rem 1.3rem;
    clear: both;
    color: #999999;
    text-align: inherit;
    white-space: normal;
    line-height: 15px;
    background-color: transparent;
    border: 0;
    float: left;
    font-weight: 500;
  }

  .dropdown-item:hover {
    background-color: transparent;
    color: #ffffff;
  }

  .owl-carousel .owl-item {
    min-height: calc(100vh - 55px);
  }

  .owl-carousel .owl-item > div {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
  }

  .owl-carousel .owl-item article {
    text-align: center;
    padding: 2rem 1.25rem 4rem 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .owl-carousel h2 {
    color: #ffffff;
  }

  .owl-carousel p {
    color: #ffffff;
  }

  .owl-dots {
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 0;
    bottom: 20px;
  }

  .owl-dots .owl-dot {
    border-radius: 20px;
    background: #ffffff63;
    height: 10px;
    width: 10px;
    margin-right: 7px;
    display: inline-block;
  }

  .owl-dots .owl-dot.active {
    background: #ffffff;
  }

  .owl-dots .owl-dot:last-child {
    margin-right: 0px;
  }
}

@media (min-width: 768px) {
  body {
    padding-top: 55px;
  }

  .btn {
    font-size: 1rem;
  }

  .navbar {
    height: 55px;
  }

  .navbar-toggler {
    height: 55px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .navbar-brand img {
    height: 2.5rem;
    width: auto;
  }
}

@media (min-width: 992px) {
  .owl-carousel h2 {
    font-size: 3rem;
  }

  .owl-carousel .owl-item {
    min-height: calc(100vh - 55px);
  }

  .owl-carousel .owl-item article {
    padding: 2rem 1.25rem 6rem 1.25rem;
  }

  .owl-carousel .owl-dots {
    bottom: 70px;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .collapse {
    padding-top: 0rem;
  }

  .menu_ul {
    margin-bottom: 0rem;
    max-width: 380px;
    margin-top: 3rem;
  }

  .dropdown-item {
    line-height: 21px;
    font-size: 1.1rem;
  }

  .menu_special-buttons {
    border: 1px solid #b3b3b3;
    background: transparent;
    color: #1a1a1a;
    padding: .3rem .8rem;
    transition: 200ms all;
    -moz-transition: 200ms all;
    -webkit-transition: 200ms all;
    outline: none !important;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
  }

  .menu_special-buttons:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    text-decoration: none;
  }

  .menu_special-buttons img {
    max-width: 21px;
    margin-right: 5px;
  }

  .menu_special-buttons:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 3px;
  }

  .menu_special-buttons:last-child {
    border-left: 0px;
    border-top-left-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 0;
    margin-right: 2.5rem;
  }

  .generic-section_side-column .fixed {
    position: fixed;
  }
}

@media (min-width: 1200px) {
  .owl-carousel .owl-item {
    min-height: calc(100vh - 75px);
  }

  body {
    padding-top: 75px;
  }

  .menu-closer {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
    opacity: 0;
    filter: alpha(opacity=0);
  }

  .menu-closer.visible {
    opacity: 1;
    filter: alpha(opacity=100);
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
  }

  .owl-carousel h2 {
    font-size: 3.6rem;
  }

  .owl-carousel .owl-dots {
    bottom: 100px;
    text-align: right;
    padding-right: 8vw;
  }

  .navbar {
    height: 75px;
  }

  .navbar-toggler {
    height: 75px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .menu_special-buttons {
    padding: .4rem 1rem;
  }

  .menu_special-buttons:last-child {
    margin-right: 3.5rem;
  }

  .navbar-brand img {
    height: 3rem;
    width: auto;
    margin-left: .5rem;
  }

  .collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    transition: 300ms right;
    -moz-transition: 300ms right;
    -webkit-transition: 300ms right;
    width: 65%;
    min-width: 1170px;
    transition: all 500ms;
    -moz-transition: all 500ms;
    -webkit-transition: all 500ms;
  }

  .collapse.open {
    transition: all 500ms;
    -moz-transition: all 500ms;
    -webkit-transition: all 500ms;
  }

  .dropdown-toggle:after {
    display: none;
  }

  .navbar:after {
    width: 65%;
    min-width: 1170px;
    transition: all 500ms;
    -moz-transition: all 500ms;
    -webkit-transition: all 500ms;
  }

  .navbar.open {
    background: #f2f2f2;
  }

  .navbar.open:after {
    width: 65%;
    min-width: 1170px;
    transition: all 500ms;
    -moz-transition: all 500ms;
    -webkit-transition: all 500ms;
  }

  .navbar.open .navbar-brand {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .menu_ul {
    margin-bottom: 0rem;
    max-width: 100%;
    text-align: right;
    padding-right: 8vw;
  }

  .nav-link {
    font-size: 1.38rem;
  }

  .btn {
    margin-top: 1.7rem;
  }

  .col-xl-15 {
    max-width: 20%;
  }

  .nav-item .nav-link {
    position: relative;
    padding-left: 0px;
  }

  .nav-item .nav-link:before {
    left: 0;
  }

  .nav-item .nav-link:hover:before {
    left: 0;
    width: 100%;
  }

  .nav-item.show .nav-link:before {
    width: 100%;
  }

  .nav-item.show .dropdown-toggle:after {
    display: inline-block;
    border: 0;
    width: 18px;
    height: 11px;
    background: url(/img/svg-21.svg) center left no-repeat;
    background-size: contain;
    float: left;
    position: absolute;
    left: -36px;
    top: 0px;
    bottom: 0px;
    margin: auto auto;
  }

  .dropdown-menu {
    position: fixed !important;
    left: initial !important;
    right: 625px;
    z-index: 9999;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    margin-left: 0;
    width: 500px;
    font-size: .9rem;
    color: #ffffff;
    text-align: right;
    list-style: none;
    background-color: transparent;
    background-clip: padding-box;
    border: 0;
    border-radius: 0px;
  }

  .dropdown-menu.show {
    margin-bottom: 0px;
  }

  .dropdown-item {
    display: inline-block;
    width: auto;
    max-width: 100vw;
    padding: .5rem 1rem;
    clear: both;
    color: #999;
    text-align: inherit;
    white-space: normal;
    line-height: 24px;
    border: 0;
    float: right;
    font-weight: 500;
    font-size: 1rem;
    z-index: 9999;
  }

  .search {
    position: absolute;
    width: 477px;
    height: 100%;
    display: inline-block;
    overflow: hidden;
  }

  .search .close {
    position: absolute;
    right: 0px;
    width: 40px;
    height: 99%;
    background: url(/img/icons/ags-11.svg) center center no-repeat #1a1a1a;
    background-size: 10px;
    z-index: 1;
    top: 0;
    opacity: 1;
    border-top-left-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 0;
  }

  .search .wrapper input.text {
    position: relative;
    width: 100%;
    background: #ffffff;
    font-size: 14px;
    outline: 0 !important;
    height: 39px;
  }

  .search .wrapper label {
    position: absolute;
    left: 15px;
    font-size: 14px;
    width: 150px;
    top: 0;
    bottom: 0;
    margin: auto auto;
    line-height: 1.5;
    -webkit-transition: none;
    transition: none;
  }

  .search .wrapper.focused label {
    font-size: 9px;
    top: -11px;
    -webkit-transition: none;
    transition: none;
  }

  .search .wrapper.focused input.text {
    padding: 16px 15px 4px 15px;
  }
}

@media (max-width: 1199px) and (orientation: landscape) {
  .collapse.open {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (min-width: 1400px) {
  .owl-carousel .owl-item article {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.65)), to(transparent));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
  }

  .owl-carousel .owl-dots {
    padding-right: 15vw;
  }

  .owl-carousel h2 {
    font-size: 3.3rem;
  }
}

.attachment {
  margin-bottom: 1rem;
  margin-top: 1rem;
  display: none;
}

.remove-attachment {
  color: red;
  display: none;
}

.remove-attachment:hover {
  color: red;
}

.file-upload.btn {
  border: 2px solid #000000;
  background: transparent;
  color: #000000;
}

.file-upload.btn:hover {
  background: #000000;
  color: #ffffff;
}

.file-upload-text {
  font-size: .9rem;
  font-weight: normal;
}

footer {
  z-index: 10;
  position: relative;
}

.lang-container {
  display: none;
}

@media (min-height: 780px) {
  .nav-link {
    font-size: 1.78rem;
  }

  .dropdown-item {
    display: inline-block;
    width: auto;
    max-width: 100vw;
    padding: .5rem 1.3rem;
    clear: both;
    text-align: inherit;
    white-space: normal;
    line-height: 30px;
    background-color: transparent;
    border: 0;
    float: right;
    font-weight: 500;
  }
}

/* MIXINS */

.generic-section_side-column li.active a {
  color: #b16736 !important;
}

.generic-section_text-column a {
  color: #b16736 !important;
}

.generic-section_text-column a:hover {
  text-decoration: underline;
}

a.active {
  color: #b16736;
}

.download-box_icon a:hover {
  color: #b16736;
}

.cardinal {
  background: #b16736;
}

.grey-block-icon {
  background: #b16736;
}

.page-ul li::before {
  color: #b16736;
}

.category-color {
  color: #b16736;
}

.energia-elettrica .generic-section_side-column li.active a {
  color: #fec400 !important;
}

.energia-elettrica generic-section_text-column a {
  color: #fec400 !important;
}

.energia-elettrica generic-section_text-column a:hover {
  text-decoration: underline;
}

.energia-elettrica a.active {
  color: #fec400;
}

.energia-elettrica .download-box_icon a:hover {
  color: #fec400;
}

.energia-elettrica .cardinal {
  background: #fec400;
}

.energia-elettrica .grey-block-icon {
  background: #fec400;
}

.energia-elettrica .page-ul li::before {
  color: #fec400;
}

.energia-elettrica .category-color {
  color: #fec400;
}

.ledro-energia .generic-section_side-column li.active a {
  color: #b16736 !important;
}

.ledro-energia generic-section_text-column a {
  color: #b16736 !important;
}

.ledro-energia generic-section_text-column a:hover {
  text-decoration: underline;
}

.ledro-energia a.active {
  color: #b16736;
}

.ledro-energia .download-box_icon a:hover {
  color: #b16736;
}

.ledro-energia .cardinal {
  background: #b16736;
}

.ledro-energia .grey-block-icon {
  background: #b16736;
}

.ledro-energia .page-ul li::before {
  color: #b16736;
}

.ledro-energia .category-color {
  color: #b16736;
}

.acqua-potabile-e-fognatura .generic-section_side-column li.active a {
  color: #2ebcee !important;
}

.acqua-potabile-e-fognatura generic-section_text-column a {
  color: #2ebcee !important;
}

.acqua-potabile-e-fognatura generic-section_text-column a:hover {
  text-decoration: underline;
}

.acqua-potabile-e-fognatura a.active {
  color: #2ebcee;
}

.acqua-potabile-e-fognatura .download-box_icon a:hover {
  color: #2ebcee;
}

.acqua-potabile-e-fognatura .cardinal {
  background: #2ebcee;
}

.acqua-potabile-e-fognatura .grey-block-icon {
  background: #2ebcee;
}

.acqua-potabile-e-fognatura .page-ul li::before {
  color: #2ebcee;
}

.acqua-potabile-e-fognatura .category-color {
  color: #2ebcee;
}

.gas-metano .generic-section_side-column li.active a {
  color: #f9133a !important;
}

.gas-metano generic-section_text-column a {
  color: #f9133a !important;
}

.gas-metano generic-section_text-column a:hover {
  text-decoration: underline;
}

.gas-metano a.active {
  color: #f9133a;
}

.gas-metano .download-box_icon a:hover {
  color: #f9133a;
}

.gas-metano .cardinal {
  background: #f9133a;
}

.gas-metano .grey-block-icon {
  background: #f9133a;
}

.gas-metano .page-ul li::before {
  color: #f9133a;
}

.gas-metano .category-color {
  color: #f9133a;
}

.teleriscaldamento .generic-section_side-column li.active a,
.il-teleriscaldamento .generic-section_side-column li.active a {
  color: #b16736 !important;
}

.teleriscaldamento generic-section_text-column a,
.il-teleriscaldamento generic-section_text-column a {
  color: #b16736 !important;
}

.teleriscaldamento generic-section_text-column a:hover,
.il-teleriscaldamento generic-section_text-column a:hover {
  text-decoration: underline;
}

.teleriscaldamento a.active,
.il-teleriscaldamento a.active {
  color: #b16736;
}

.teleriscaldamento .download-box_icon a:hover,
.il-teleriscaldamento .download-box_icon a:hover {
  color: #b16736;
}

.teleriscaldamento .cardinal,
.il-teleriscaldamento .cardinal {
  background: #b16736;
}

.teleriscaldamento .grey-block-icon,
.il-teleriscaldamento .grey-block-icon {
  background: #b16736;
}

.teleriscaldamento .page-ul li::before,
.il-teleriscaldamento .page-ul li::before {
  color: #b16736;
}

.teleriscaldamento .category-color,
.il-teleriscaldamento .category-color {
  color: #b16736;
}

.pellet .generic-section_side-column li.active a {
  color: #b16736 !important;
}

.pellet generic-section_text-column a {
  color: #b16736 !important;
}

.pellet generic-section_text-column a:hover {
  text-decoration: underline;
}

.pellet a.active {
  color: #b16736;
}

.pellet .download-box_icon a:hover {
  color: #b16736;
}

.pellet .cardinal {
  background: #b16736;
}

.pellet .grey-block-icon {
  background: #b16736;
}

.pellet .page-ul li::before {
  color: #b16736;
}

.pellet .category-color {
  color: #b16736;
}

@media (max-width: 575px) {
  .generic-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .download-box {
    margin-top: 3rem;
  }

  .download-box li {
    padding-top: .5rem;
  }

  .download-box a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #1a1a1a;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
  }

  .download-box a:hover {
    color: #999999;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
    text-decoration: none;
  }

  .download-box ul {
    margin-top: .3rem;
  }

  .download-box_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .download-box_icon {
    padding-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .generic-section_side-column {
    margin-top: 3rem;
  }

  .generic-section_side-column svg {
    display: none;
  }

  .generic-section_side-column li {
    border-bottom: 1px dashed #d1d1d1;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .generic-section_side-column li:first-child {
    margin-top: .3rem;
  }

  .generic-section_side-column li:last-child {
    border: 0;
  }

  .generic-section_side-column li a {
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
    font-size: .9rem;
    color: #1a1a1a;
    text-decoration: none;
  }

  .generic-section_side-column li a:hover {
    color: #999999;
  }

  .news-date {
    display: inline-block;
    margin-bottom: 1.3rem;
  }
}

@media (min-width: 576px) {
  .generic-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .download-box {
    margin-top: 3rem;
  }

  .download-box li {
    padding-top: 1rem;
  }

  .download-box a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #1a1a1a;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
  }

  .download-box a:hover {
    color: #999999;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
    text-decoration: none;
  }

  .download-box ul {
    margin-top: .3rem;
  }

  .download-box_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .download-box_icon {
    padding-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .generic-section_side-column {
    margin-top: 3rem;
  }

  .generic-section_side-column svg {
    display: none;
  }

  .generic-section_side-column li {
    border-bottom: 1px dashed #d1d1d1;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .generic-section_side-column li:first-child {
    margin-top: .3rem;
  }

  .generic-section_side-column li:last-child {
    border: 0;
  }

  .generic-section_side-column li a {
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
    font-size: .9rem;
    color: #1a1a1a;
    text-decoration: none;
  }

  .generic-section_side-column li a:hover {
    color: #999999;
  }

  .news-date {
    display: inline-block;
    margin-bottom: 1.3rem;
  }
}

.history-btn {
  border: 1px solid #cecece;
  padding: 20px;
  min-width: auto;
  display: inline-block;
  border-radius: 5px;
  background: #f2f2f2;
  color: #000000;
  position: relative;
  left: -30px;
  cursor: pointer;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
}

.history-btn:hover {
  background: #dedddd;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
}

.history-btn.open {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.history-box {
  position: relative;
  padding-left: 35px;
  padding-top: 0rem;
  z-index: 0;
  overflow: hidden;
}

.history-box .expander {
  display: none;
}

.history-box:first-child {
  padding-top: 0px;
}

.history-box:last-child {
  padding-bottom: 0px;
}

.history-box:last-child:after {
  height: 30%;
}

.history-box:nth-child(2) {
  padding-top: 1.5rem !important;
}

.history-box.open {
  height: auto;
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.history-box.open .expander {
  display: block;
}

.history-box h5.page-subtitle.spaced-top {
  margin-top: 0px;
}

.history-box:after {
  content: "";
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  border-left: 1px dashed #000000;
  left: 20px;
  z-index: -1;
}

@media (min-width: 768px) {
  .generic-section_text-column {
    padding-right: 2rem;
    min-height: 100vh;
  }

  .generic-section_side-column {
    margin-top: .8rem;
  }

  .generic-section_side-column svg {
    display: inline-block;
    width: 11px !important;
    height: 12px;
    position: relative;
    top: 1px;
    margin-right: .2rem;
    vertical-align: initial;
  }
}

@media (min-width: 992px) {
  .generic-section_text-column {
    padding-right: 4rem;
  }
}

@media (min-width: 1200px) {
  .generic-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .generic-section_side-column {
    margin-top: 0rem;
  }
}

li .download-box_text {
  color: #000000;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
}

li .download-box_text:hover {
  text-decoration: underline;
}

li .download-box_icon {
  color: #000000;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
}

li.highlight .download-box_text {
  color: #007bff;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
}

li.highlight .download-box_icon {
  color: #007bff;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
}

.fa-folder-open {
  color: #000000;
}

.fa-folder-open + small {
  top: -7px;
  position: relative;
  left: 10px;
}

.download-box d-flex > .col-auto {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* MIXINS */

@media (max-width: 575px) {
  .page-subtitle {
    margin-top: .5rem;
    margin-bottom: 2.7rem;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    line-height: 1.6rem;
  }

  .page-subtitle.spaced-top {
    margin-top: 1.5rem;
  }

  .page-subtitle.less-spaced-bottom {
    margin-bottom: 1.3rem;
  }

  .small-title.with-border-top {
    width: 100%;
    border-top: 1px solid #b3b3b3;
    margin-top: 0rem;
    padding-top: .4rem;
  }

  .small-title.bigger {
    font-size: .6rem;
    line-height: 1.2rem;
  }

  .small-title.spaced-top {
    margin-top: 1.5rem;
    color: #000000;
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .small-title.spaced-bottom {
    margin-bottom: 2.3rem;
    color: #000000;
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .small-title.less-spaced-bottom {
    margin-bottom: 1.3rem;
    color: #000000;
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .table td.nowrap {
    white-space: nowrap;
  }

  .table.cardinal-block td {
    border: 0;
    padding-top: 0;
  }

  .table.cardinal-block td.no-padding {
    padding: 0;
  }

  .table.cardinal-block .cardinal {
    position: relative;
    top: -3px;
    width: 1.8rem;
    height: 1.8rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 30px;
    text-align: center;
    color: #ffffff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: .7rem;
    font-weight: bold;
  }

  .table.classic.bigger-text {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
  }

  .table.classic thead th {
    padding-bottom: .5rem;
    vertical-align: bottom;
    border-bottom: 0;
    border-top: 0px;
  }

  .table.classic thead th:first-child {
    padding-left: 0px;
  }

  .table.classic tr td {
    padding: 1.1rem .75rem;
  }

  .table.classic tr td:first-child {
    padding-left: 0px;
  }

  .table.classic tr td:last-child {
    padding-right: 0px;
  }

  .table.classic tr:last-child {
    border-bottom: 1px solid #dee2e6;
  }

  .grey-block-container {
    margin-bottom: 15px;
  }

  .grey-block {
    background: #f2f2f2;
    border-radius: 3px;
    height: 100%;
  }

  .grey-block td {
    border: 0;
    padding: 1.6rem 1.3rem .7rem 1.6rem;
  }

  .grey-block td.no-padding {
    padding: 0;
  }

  .grey-block td .grey-block-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 30px;
    text-align: center;
    color: #ffffff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: .7rem;
    font-weight: bold;
    margin-right: calc(100% - 2.2rem);
    margin-bottom: .8rem;
  }

  .grey-block td .grey-block-icon img {
    max-width: 50%;
    max-height: 50%;
  }

  .grey-block td h5 {
    font-weight: bold;
    margin-bottom: .8rem;
  }

  .page-row-spaced-bottom {
    margin-bottom: 3rem;
  }

  .page-row-spaced-bottom-x2 {
    margin-bottom: 4rem;
  }

  .page-ul.spaced {
    margin-top: 1.5rem;
    margin-bottom: 1.9rem;
  }

  .page-ul.big-text {
    padding-left: 0px;
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
    list-style: none;
  }

  .page-ul.big-text li {
    padding-left: 1.1em;
    text-indent: -1.2rem;
  }

  .page-ul.small-text {
    padding-left: 0px;
    list-style: none;
  }

  .page-ul.small-text li {
    padding-left: 1.1em;
    text-indent: -1.2rem;
    line-height: 1.5rem;
    margin-bottom: .5rem;
  }

  .page-ul ul {
    padding: 0;
    margin: 0;
  }

  .page-ul li::before {
    content: "\2022   ";
    font-size: 1.8rem;
    margin-right: .5rem;
    position: relative;
    top: .3rem;
  }

  .category-color {
    margin-bottom: 1.1rem;
    font-weight: bold;
  }
}

@media (min-width: 576px) {
  .page-subtitle {
    margin-top: .5rem;
    margin-bottom: 2.7rem;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    line-height: 1.6rem;
  }

  .page-subtitle.spaced-top {
    margin-top: 1.5rem;
  }

  .page-subtitle.less-spaced-bottom {
    margin-bottom: 1.5rem;
  }

  .small-title.with-border-top {
    width: 100%;
    border-top: 1px solid #b3b3b3;
    margin-top: 1rem;
    padding-top: .4rem;
  }

  .small-title.bigger {
    font-size: .6rem;
    line-height: 1.2rem;
  }

  .small-title.spaced-top {
    margin-top: 1.5rem;
    color: #000000;
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .small-title.spaced-bottom {
    margin-bottom: 2.3rem;
    color: #000000;
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .small-title.less-spaced-bottom {
    margin-bottom: 1.3rem;
    color: #000000;
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .table td.nowrap {
    white-space: nowrap;
  }

  .table.cardinal-block td {
    border: 0;
    padding-top: 0;
  }

  .table.cardinal-block td.no-padding {
    padding: 0;
  }

  .table.cardinal-block .cardinal {
    position: relative;
    top: -3px;
    width: 1.8rem;
    height: 1.8rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 30px;
    text-align: center;
    color: #ffffff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: .7rem;
    font-weight: bold;
  }

  .table.classic.bigger-text {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
  }

  .table.classic thead th {
    padding-bottom: .5rem;
    vertical-align: bottom;
    border-bottom: 0;
    border-top: 0px;
  }

  .table.classic thead th:first-child {
    padding-left: 0px;
  }

  .table.classic tr td {
    padding: 1.1rem .75rem;
  }

  .table.classic tr td:first-child {
    padding-left: 0px;
  }

  .table.classic tr td:last-child {
    padding-right: 0px;
  }

  .table.classic tr:last-child {
    border-bottom: 1px solid #dee2e6;
  }

  .grey-block-container {
    max-width: 50%;
    padding-right: 7.5px;
    margin-bottom: 15px;
  }

  .grey-block-container:nth-child(3n-1) {
    padding-left: 7.5px;
    padding-right: 15px;
  }

  .grey-block {
    background: #f2f2f2;
    border-radius: 3px;
    height: 100%;
  }

  .grey-block td {
    border: 0;
    padding: 1.6rem 1.3rem .7rem 1.6rem;
  }

  .grey-block td.no-padding {
    padding: 0;
  }

  .grey-block td .grey-block-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 30px;
    text-align: center;
    color: #ffffff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: .7rem;
    font-weight: bold;
    margin-right: calc(100% - 2.2rem);
    margin-bottom: .8rem;
  }

  .grey-block td .grey-block-icon img {
    max-width: 50%;
    max-height: 50%;
  }

  .grey-block td h5 {
    font-weight: bold;
    margin-bottom: .8rem;
  }

  .page-row-spaced-bottom {
    margin-bottom: 3rem;
  }

  .page-row-spaced-bottom-x2 {
    margin-bottom: 4rem;
  }

  .page-ul.spaced {
    margin-top: 1.5rem;
    margin-bottom: 1.9rem;
  }

  .page-ul.big-text {
    padding-left: 0px;
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
    list-style: none;
  }

  .page-ul.big-text li {
    padding-left: 1.1em;
    text-indent: -1.2rem;
  }

  .page-ul.small-text {
    padding-left: 0px;
    list-style: none;
  }

  .page-ul.small-text li {
    padding-left: 1.1em;
    text-indent: -1.2rem;
    line-height: 1.5rem;
    margin-bottom: .5rem;
  }

  .page-ul ul {
    padding: 0;
    margin: 0;
  }

  .page-ul li::before {
    content: "\2022   ";
    font-size: 1.8rem;
    margin-right: .5rem;
    position: relative;
    top: .3rem;
  }

  .category-color {
    margin-bottom: 1.1rem;
    font-size: 1.5rem;
    font-weight: bold;
  }
}

@media (min-width: 768px) {
  .grey-block-container {
    padding-right: 7.5px;
  }

  .grey-block-container:nth-child(3n-1) {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .grey-block-container:nth-child(3n) {
    padding-left: 7.5px;
    padding-right: 0px;
  }

  .grey-block-container.like-first-second-row {
    padding-left: 15px;
    padding-right: 7.5px;
  }

  .grey-block-container.like-second-second-row {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}

@media (max-width: 575px) {
  h1,
  h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.8rem;
  }

  h1:not(.slider),
  h2:not(.slider) {
    line-height: 1.8rem;
  }

  h1 img,
  h2 img {
    height: 2rem;
    width: auto;
    margin-right: calc(100% - 2rem);
    margin-bottom: .5rem;
  }

  h1 .dash,
  h2 .dash {
    display: none;
    color: red;
  }

  h4 {
    font-size: 1.25rem;
    font-weight: bold;
  }

  p {
    color: #666666;
  }

  .constrainer {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .constrainer.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .home_section_generic-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .home-section_button-text {
    padding: 0 1.3rem 0 1.3rem;
    min-width: 188px;
  }

  .home-section_button-text .small-title {
    color: #ffffff;
  }

  .home-section_button {
    width: 100%;
    height: 90px;
  }

  .home-section_button .constrainer {
    max-width: 100%;
    background: rgba(255, 255, 255, 0);
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
  }

  .home-section_button .constrainer:hover {
    background: rgba(255, 255, 255, 0.15);
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
  }

  .home-section_button-title {
    font-size: 1rem;
    font-weight: 500;
  }

  .small-title {
    font-size: .6rem;
    letter-spacing: .15rem;
    text-transform: uppercase;
    opacity: .8;
    filter: alpha(opacity=80);
    display: inline-block;
  }

  .home-section_info-block:first-child {
    margin-bottom: 4rem;
  }

  .home-section_grey-stripe {
    background: #f2f2f2;
  }

  .home-section_news {
    padding-bottom: 2em;
    border-bottom: 1px dashed #b3b3b3;
  }

  .section-links {
    margin-top: 4rem;
  }

  .section-links ul {
    width: 100%;
  }

  .section-links_link {
    background: #1a1a1a;
    border-color: #ffffff;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: bold;
    padding: 1.5rem 1.2rem;
  }

  .section-links_link a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .section-links_link:hover {
    background: #2d2d2d;
  }

  footer li {
    text-align: center;
  }

  footer svg {
    position: relative;
    top: -5px;
  }

  .footer-infos {
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .footer-column_important-text {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: .5rem;
    font-size: 1rem;
    display: inline-block;
  }

  .footer-column_p {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: .85rem;
  }

  .footer-column_social {
    margin-bottom: 0px;
  }

  .sub-footer a {
    color: #ffffff;
  }
}

@media (max-width: 767px) {
  .absolute-767 {
    position: absolute;
    top: 30px;
  }

  /* FORM */

  .wrapper {
    position: relative;
    margin-bottom: 20px;
  }

  .wrapper.lastFooter input.text {
    display: inline-block;
    width: calc(100% - 48px);
    border: 0px;
    background: #333333;
  }

  .wrapper.lastFooter label {
    font-size: .9rem;
  }

  .wrapper.lastFooter button {
    float: right;
    width: 48px;
    height: 48px;
    border: 0;
    background: url(/img/arrow-right.svg) center center no-repeat;
    background-size: contain;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
    cursor: pointer;
  }

  .wrapper.lastFooter button:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
  }

  .wrapper.privacy a {
    width: auto !important;
    display: inline-block;
    font-size: .9rem !important;
  }

  .wrapper input.text,
  .wrapper select.text {
    position: relative;
    width: 100%;
    padding: 12px 15px 12px 60px;
    background: #ffffff;
    font-size: 15px;
    outline: 0 !important;
    border: 1px solid #b3b3b3;
    border-radius: 0px;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
    height: 48px;
  }

  .wrapper textarea.text {
    position: relative;
    width: 100%;
    padding: 12px 15px 12px 60px;
    background: #ffffff;
    font-size: 15px;
    outline: 0 !important;
    border: 1px solid #b3b3b3;
    border-radius: 0px;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
    height: 150px;
  }

  .wrapper .icon {
    position: absolute;
    left: 0px;
    width: 50px;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto auto;
  }

  .wrapper .icon.name {
    background: url(/img/icons-grey/user.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.password {
    background: url(/img/icons-grey/password.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.mail {
    background: url(/img/icons-grey/mail.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.phone {
    background: url(/img/icons-grey/phone.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.address {
    background: url(/img/icons-grey/address.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.city {
    background: url(/img/icons-grey/city.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.cf {
    background: url(/img/icons-grey/cf.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.province {
    background: url(/img/icons-grey/province.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.message {
    background: url(/img/icons-grey/message.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.issue {
    background: url(/img/icons-grey/province.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper label {
    position: absolute;
    left: 15px;
    width: 150px;
    height: 21px;
    top: 0;
    bottom: 0;
    margin: auto auto;
    line-height: 1.4;
    pointer-events: none;
    color: #999999;
    font-size: 15px;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
  }

  .wrapper.focused label {
    font-size: 10px;
    top: -13px;
    text-transform: uppercase;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
  }

  .wrapper.focused input.text,
  .wrapper.focused select.text,
  .wrapper.focused textarea.text {
    padding: 20px 15px 4px 15px;
  }

  .wrapper.focused input:focus,
  .wrapper.focused select:focus,
  .wrapper.focused textarea:focus {
    border-color: #999999;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
    -webkit-box-shadow: inset 0px 0px 0 1px #999999;
    box-shadow: inset 0px 0px 0 1px #999999;
  }

  .wrapper.focused.textarea textarea.text {
    padding: 31px 15px 4px 15px;
  }

  .wrapper.focused.textarea label {
    top: -116px;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
  }

  .wrapper.privacy {
    width: 100%;
  }

  .wrapper.privacy p {
    font-size: 14px;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1.4rem;
    text-align: left;
  }

  .wrapper.privacy p a {
    text-decoration: none;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
  }

  .wrapper.privacy p a:hover {
    text-decoration: underline;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
  }
}

@media (min-width: 576px) {
  h1,
  h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.8rem;
  }

  h1:not(.slider),
  h2:not(.slider) {
    line-height: 1.8rem;
  }

  h1 img,
  h2 img {
    height: 2rem;
    width: auto;
  }

  h1 .dash,
  h2 .dash {
    display: none;
  }

  h4 {
    font-size: 1.25rem;
    font-weight: bold;
  }

  p {
    color: #666666;
  }

  .constrainer {
    width: 100%;
    max-width: 510px;
    margin: 0 auto;
  }

  .constrainer.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .home_section_generic-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .home-section_button-text {
    padding: 0 1.3rem 0 1.3rem;
    min-width: 188px;
  }

  .home-section_button-text .small-title {
    color: #ffffff;
  }

  .home-section_button {
    width: 100%;
    height: 90px;
  }

  .home-section_button .constrainer {
    max-width: 100%;
    background: rgba(255, 255, 255, 0);
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
  }

  .home-section_button .constrainer:hover {
    background: rgba(255, 255, 255, 0.15);
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
  }

  .home-section_button-title {
    font-size: 1rem;
    font-weight: 500;
  }

  .small-title {
    font-size: .6rem;
    letter-spacing: .15rem;
    text-transform: uppercase;
    line-height: 1.2rem;
    opacity: .8;
    filter: alpha(opacity=80);
    display: inline-block;
  }

  .home-section_grey-stripe {
    background: #f2f2f2;
  }

  .home-section_news {
    padding-bottom: 2em;
    border-bottom: 1px dashed #b3b3b3;
  }

  .section-links {
    margin-top: 4rem;
  }

  .section-links ul {
    width: 100%;
  }

  .section-links_link {
    background: #1a1a1a;
    border-color: #ffffff;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    transition: 300ms all;
    -moz-transition: 300ms all;
    -webkit-transition: 300ms all;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: bold;
    padding: 1.5rem 1.2rem;
  }

  .section-links_link a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .section-links_link:hover {
    background: #2d2d2d;
  }

  footer li {
    text-align: center;
  }

  footer svg {
    position: relative;
    top: -5px;
  }

  .footer-infos {
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .footer-column_important-text {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: .5rem;
    font-size: 1rem;
    display: inline-block;
  }

  .footer-column_p {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: .85rem;
  }

  .footer-column_social {
    margin-bottom: 0px;
  }

  .sub-footer a {
    color: #ffffff;
  }
}

@media (min-width: 768px) {
  .constrainer {
    max-width: 100%;
  }

  .constrainer.fluid {
    max-width: 690px;
  }

  .constrainer.slider {
    max-width: 65%;
  }

  footer li {
    text-align: left;
  }

  .footer-infos {
    text-align: left;
  }

  /* FORM */

  .wrapper {
    position: relative;
    margin-bottom: 20px;
  }

  .wrapper.lastFooter input.text {
    display: inline-block;
    width: calc(100% - 48px);
    border: 0px;
    background: #333333;
  }

  .wrapper.lastFooter label {
    font-size: .9rem;
  }

  .wrapper.lastFooter button {
    float: right;
    width: 48px;
    height: 48px;
    border: 0;
    background: url(/img/arrow-right.svg) center center no-repeat;
    background-size: contain;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
    cursor: pointer;
  }

  .wrapper.lastFooter button:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
  }

  .wrapper.privacy a {
    width: auto !important;
    display: inline-block;
    font-size: .95rem !important;
  }

  .wrapper input.text,
  .wrapper select.text {
    position: relative;
    width: 100%;
    padding: 12px 15px 12px 60px;
    background: #ffffff;
    font-size: 15px;
    outline: 0 !important;
    border: 1px solid #b3b3b3;
    border-radius: 0px;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
    height: 48px;
  }

  .wrapper textarea.text {
    position: relative;
    width: 100%;
    padding: 12px 15px 12px 60px;
    background: #ffffff;
    font-size: 15px;
    outline: 0 !important;
    border: 1px solid #b3b3b3;
    border-radius: 0px;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
    height: 158px;
  }

  .wrapper .icon {
    position: absolute;
    left: 0px;
    width: 50px;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto auto;
  }

  .wrapper .icon.name {
    background: url(/img/icons-grey/user.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.password {
    background: url(/img/icons-grey/password.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.mail {
    background: url(/img/icons-grey/mail.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.phone {
    background: url(/img/icons-grey/phone.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.address {
    background: url(/img/icons-grey/address.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.city {
    background: url(/img/icons-grey/city.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.cf {
    background: url(/img/icons-grey/cf.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.province {
    background: url(/img/icons-grey/province.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.message {
    background: url(/img/icons-grey/message.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper .icon.issue {
    background: url(/img/icons-grey/province.svg) center center no-repeat;
    background-size: 17px 17px;
  }

  .wrapper label {
    position: absolute;
    left: 15px;
    width: 150px;
    height: 21px;
    top: 0;
    bottom: 0;
    margin: auto auto;
    line-height: 1.4;
    pointer-events: none;
    color: #999999;
    font-size: 15px;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
  }

  .wrapper.focused label {
    font-size: 10px;
    top: -13px;
    text-transform: uppercase;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
  }

  .wrapper.focused input.text,
  .wrapper.focused select.text,
  .wrapper.focused textarea.text {
    padding: 20px 15px 4px 15px;
  }

  .wrapper.focused input:focus,
  .wrapper.focused select:focus,
  .wrapper.focused textarea:focus {
    border-color: #999999;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
    -webkit-box-shadow: inset 0px 0px 0 1px #999999;
    box-shadow: inset 0px 0px 0 1px #999999;
  }

  .wrapper.focused.textarea textarea.text {
    padding: 31px 15px 4px 15px;
  }

  .wrapper.focused.textarea label {
    top: -116px;
    transition: all 100ms;
    -moz-transition: all 100ms;
    -webkit-transition: all 100ms;
  }

  .wrapper.privacy {
    width: 100%;
  }

  .wrapper.privacy p {
    font-size: 14px;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1.45rem;
    text-align: left;
  }

  .wrapper.privacy p a {
    text-decoration: none;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
  }

  .wrapper.privacy p a:hover {
    text-decoration: underline;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
  }
}

@media (min-width: 992px) {
  .section-links {
    margin-top: 0px;
  }

  .constrainer.fluid {
    max-width: 930px;
  }

  .constrainer.slider {
    max-width: 650px;
  }

  h1,
  h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
  }

  h1:not(.slider),
  h2:not(.slider) {
    line-height: 2.2rem;
  }

  h1 img,
  h2 img {
    height: 2.5rem;
    width: auto;
  }

  h1 .dash,
  h2 .dash {
    position: relative;
    display: inline-block;
    height: 1.8rem;
    width: 1.3rem;
    margin-left: .1rem;
    margin-right: .1rem;
  }

  h1 .dash:after,
  h2 .dash:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #1a1a1a;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
  }

  .home_section_buttons-container {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    top: -44px;
    z-index: 1;
  }

  .home-section_button:nth-child(1) {
    border-top-left-radius: 3px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 3px;
  }

  .home-section_button:nth-child(3) {
    border-top-left-radius: 0px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 0px;
  }

  .home-section_button:nth-child(4) {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 3px;
  }

  .home-section_button:nth-child(5) {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 0px;
  }

  .home_section_generic-section {
    padding-top: 5.8rem;
    padding-bottom: 6rem;
  }

  .home_section_generic-section img {
    max-width: 100%;
  }

  .home_section_generic-section h1,
  .home_section_generic-section h2 {
    margin-bottom: 3.5rem;
  }

  .home_section_generic-section.first {
    padding-top: 3rem;
  }

  .home_section_generic-section.home-section_grey-stripe h1,
  .home_section_generic-section.home-section_grey-stripe h2 {
    margin-bottom: 2.5rem;
  }

  footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .wrapper.half {
    width: 49%;
    float: left;
  }

  .wrapper.half.first {
    margin-right: 1%;
  }

  .wrapper.half.last {
    margin-left: 1%;
  }

  .wrapper input.text,
  .wrapper select.text,
  .wrapper textarea.text {
    padding: 20px 15px 4px 15px;
  }

  .wrapper.focused input.text,
  .wrapper.focused select.text {
    padding: 20px 15px 4px 15px;
  }

  .wrapper.focused textarea.text {
    padding: 31px 15px 4px 15px;
  }

  .wrapper .icon {
    width: 60px;
    max-width: 60px;
  }

  .wrapper label {
    left: 15px;
    width: calc(100% - 60px);
  }
}

@media (min-width: 1200px) {
  h1,
  h2 {
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 2.8rem;
  }

  h1:not(.slider),
  h2:not(.slider) {
    line-height: 2.4rem;
  }

  h1 img,
  h2 img {
    height: 2.7rem;
    width: auto;
  }

  h1 .dash,
  h2 .dash {
    position: relative;
    display: inline-block;
    height: 2rem;
    width: 1.3rem;
    margin-left: .1rem;
    margin-right: .1rem;
  }

  h1 .dash:after,
  h2 .dash:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #1a1a1a;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
  }

  .small-title {
    font-size: .75rem;
    line-height: 1.4rem;
  }

  .small-title.bigger {
    font-size: .75rem;
  }

  .btn {
    cursor: pointer;
    padding: .5rem 1.3rem;
  }

  .constrainer.slider {
    max-width: 700px;
    text-align: left;
    margin: initial;
    margin-left: 8vw;
  }

  .constrainer.slider p {
    max-width: 500px;
  }

  .constrainer.fluid {
    max-width: 1110px;
  }

  .home_section_buttons-container {
    max-width: 1420px;
  }

  .home_section_buttons-container {
    top: -49px;
  }

  .home-section_button {
    height: 100px;
  }

  .home-section_button:nth-child(1) {
    border-top-left-radius: 3px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 3px;
  }

  .home-section_button:nth-child(3) {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
  }

  .home-section_button:nth-child(4) {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
  }

  .home-section_button:nth-child(5) {
    border-top-left-radius: 0px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 0px;
  }

  .home-section_news-container {
    padding-right: 3rem;
  }

  .home-section_info-block:first-child {
    padding-right: 20px;
  }

  .home-section_info-block:last-child {
    padding-left: 20px;
  }
}

@media (min-width: 1360px) {
  .page-title {
    position: relative;
    left: -2px;
  }

  .page-title img {
    position: absolute;
    left: -86px;
    top: 7px;
    bottom: 0;
    margin: auto auto;
  }

  .page-title .dash {
    position: absolute;
    left: -32px;
    top: 7px;
    bottom: 0;
    margin: auto auto;
  }
}

@media (max-width: 1400px) {
  .home-section_button-icon {
    display: none;
  }

  .home-section_button .align-self-center {
    margin-right: .9rem;
  }
}

@media (min-width: 1400px) {
  .constrainer.slider {
    margin-left: 15vw;
  }
}

@media (min-width: 1650px) {
  .home_section_buttons-container {
    max-width: 91%;
  }
}

.contattaci .table.classic {
  /*&:nth-of-type(2){

      tr{
        display:none;

        &:nth-child(1){
          display:table-row;
        }

        &:nth-child(2){
          display:table-row;
        }

        &:nth-child(3){
          display:table-row;
        }

        &:nth-child(7){
          display:table-row;
        }

      }

    }*/
}

.contattaci .table.classic:nth-of-type(1) tr {
  display: none;
}

.contattaci .table.classic:nth-of-type(1) tr:nth-child(1) {
  display: table-row;
}

.contattaci .table.classic:nth-of-type(1) tr:nth-child(2) {
  display: table-row;
}

