/* 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;
  }
}

