/*
Theme Name: Start WordPress
Author: Tomas Stolp
Description: Bootstrap Blog template converted to WordPress
Version: 0.0.1
Tags: bootstrap
*/
:root {
  --silver: #c0c0c0;
  --darkgray: #434d54;
  --black: #050505;
  --white: #fff;
  --lightgray: #f5f5f5;
  --red: #aa132c;
}

@font-face {
  font-family: 'Montserrat';
  src: url("css/fonts/Montserrat-SemiBold.ttf");
  font-weight: bold;
}

@font-face {
  font-family: 'Montserrat';
  src: url("css/fonts/Montserrat-Light.ttf");
  font-weight: normal;
}

html, body {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 100%;
  padding: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

h1 {
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.875rem;
}

h1 span {
  font-weight: bold;
}

h1, h2 {
  text-transform: uppercase;
  margin: 0 0 2em;
  font-weight: bold;
}

h3 {
  font-family: 'Montserrat', 'open-sans';
  font-weight: bold;
  margin: 0 0 1rem;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  letter-spacing: .2rem;
}

p, ul {
  letter-spacing: .15rem;
  line-height: 1.857em;
}

form input {
  padding: .5rem 0;
  border: 2px solid transparent;
  border-bottom: 2px solid var(--red);
  border-bottom: 2px solid #aa132c;
  margin-bottom: 1rem;
  display: block;
  width: 100%;
}

input[type='submit'] {
  background-color: var(--white);
  background-color: #fff;
  border: var(--darkgray) solid 2px;
  border: #434d54 solid 2px;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: bold;
  width: calc(100%/2);
  -webkit-transition: all .25s;
  transition: all .25s;
  margin-top: 1.5rem;
}

input[type='submit']:hover {
  color: var(--white);
  color: #fff;
  background-color: var(--darkgray);
  background-color: #434d54;
  border-color: var(--darkgray);
  border-color: #434d54;
  -webkit-transition: all .25s;
  transition: all .25s;
}

form input:focus, form input:active {
  outline: none;
  border: var(--red) 2px solid;
  border: #aa132c 2px solid;
  -webkit-transition: all .25s;
  transition: all .25s;
  padding: .5rem;
}

form input::-webkit-input-placeholder {
  font-family: inherit;
}

form input:-ms-input-placeholder {
  font-family: inherit;
}

form input::-ms-input-placeholder {
  font-family: inherit;
}

form input::placeholder {
  font-family: inherit;
}

body > footer {
  border-top: var(--red) 15px solid;
  border-top: #aa132c 15px solid;
  background-color: var(--darkgray);
  background-color: #434d54;
  color: var(--white);
  color: #fff;
  padding: 4rem 0 0 0;
}

body > footer .row:nth-of-type(2) {
  margin-top: 4em;
  margin-bottom: 0;
}

body > footer .row:nth-of-type(2) p {
  font-size: .5em;
  margin: 0;
}

body > footer .menu-menu-container {
  display: contents;
}

body > footer .menu-menu-container i.fab {
  font-size: 1em;
}

body > footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 0 auto;
  width: 10em;
  margin-left: 1em;
}

body > footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}

footer nav ul {
  list-style-type: none;
  padding: 0;
}

footer a {
  color: var(--white);
  color: #fff;
  line-height: 2rem;
}

footer a:hover {
  text-decoration: underline;
  color: #fff;
}

iframe {
  display: block;
}

/* =============================================================================
===============================  BOOTSTRAP  ====================================
==============================================================================*/
/* image in carousel */
nav {
  background-color: var(--darkgray);
  background-color: #434d54;
  min-height: 3.125em;
}

#myCarousel {
  outline: none;
}

#testimonials .carousel-inner > .next, .carousel-inner > .prev {
  position: absolute;
  top: unset;
  width: 100%;
}

.wrapper {
  width: 100%;
  padding: 0 2.25em 0 0;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header {
  outline: none;
}

header > nav {
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.75);
  position: fixed;
  width: 100%;
  top: 0;
}

header > nav .primary-menu {
  right: -100%;
  position: fixed;
  -webkit-transition: right .5s ease;
  transition: right .5s ease;
  top: 0;
  background-color: #fff;
  padding: 5em 0em;
  -webkit-box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
}

header > nav .primary-menu::before {
  content: '';
  background-image: url(images/logo_JEAUTOMOTIVE.svg);
  width: 4em;
  position: absolute;
  height: 4em;
  background-repeat: no-repeat;
  top: .5em;
  left: .5em;
}

header > nav .primary-menu .menu-menu-container {
  display: contents;
}

header > nav .primary-menu ul {
  padding: 0;
}

header > nav .primary-menu li {
  list-style-type: none;
}

header > nav .primary-menu li a {
  text-align: center;
  text-decoration: none;
  padding: 1.125em 7em;
  display: block;
  letter-spacing: .15rem;
  color: var(--darkgray);
  color: #434d54;
  font-weight: bold;
  text-transform: uppercase;
}

header > nav .primary-menu li a:hover {
  text-decoration: underline;
}

header > nav .show-menu {
  right: 0%;
  -webkit-transition: right .5s ease;
  transition: right .5s ease;
}

header > nav button {
  z-index: 999999999;
  background-color: transparent;
  border: none;
  outline: none;
}

header > nav .social {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 0 auto;
  width: 10em;
}

header > nav i.fab {
  font-family: 'Font Awesome 5 Brands';
  font-size: 1.5em;
  color: var(--darkgray);
  color: #434d54;
}

.menu-toggle {
  position: relative;
  width: 1.5em;
  height: 1.625em;
  margin: auto .5em;
  margin: 0 0 calc(.5em - 0.25em) 0px;
}

.menu-toggle .icon-bar {
  transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  background-color: var(--darkgray);
  background-color: #434d54;
  width: 100%;
  height: .25em;
  left: 0;
  position: absolute;
}

.menu-toggle .icon-bar:first-child {
  bottom: 0;
}

.menu-toggle .icon-bar:nth-child(2) {
  bottom: .5em;
}

.menu-toggle .icon-bar:nth-child(3) {
  bottom: 1em;
}

.menu-toggle.open .icon-bar:first-child {
  bottom: .5em;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.menu-toggle.open .icon-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .icon-bar:nth-child(3) {
  bottom: .5em;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4em;
  padding: 10px 0;
  font-size: 18px;
  line-height: 20px;
  width: 16em;
}

nav a img {
  height: auto;
  width: 100%;
}

.carousel {
  height: 85vh;
  overflow: hidden;
}

.carousel-inner {
  height: 85vh;
}

.box {
  background-color: #fff;
  padding: 3em;
  margin: 0 auto;
  width: 95%;
}

#recensies {
  background-color: var(--lightgray);
  background-color: #f5f5f5;
  padding: 1em 0;
}

#recensies #testimonials
.carousel-indicators li {
  border-color: var(--darkgray);
  border-color: #434d54;
}

#recensies .carousel-indicators {
  border-color: var(--darkgray);
  border-color: #434d54;
}

#recensies .carousel-indicators .active {
  background-color: var(--darkgray);
  background-color: #434d54;
}

#recensies .carousel-inner {
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}

#recensies .carousel-inner p {
  padding: 0 2em;
}

#recensies .carousel-inner .author {
  font-weight: bold;
  text-align: right;
  display: block;
}

#recensies .carousel-inner span {
  font-size: 4.5em;
  color: rgba(0, 0, 0, 0.4);
  font-weight: bold;
  display: block;
  margin-bottom: -.6125em;
}

#recensies .carousel-inner span:nth-of-type(2) {
  text-align: right;
  display: block;
  margin-top: -.5em;
}

section .container {
  padding: 4rem .9375rem;
}

section:focus, section:active {
  outline: none;
}

.btn {
  font-size: 1rem;
}

.btn-primary:hover {
  color: var(--darkgray);
  color: #434d54;
  background-color: var(--white);
  background-color: #fff;
  border-color: var(--white);
  border-color: #fff;
  -webkit-transition: all .25s;
  transition: all .25s;
}

.btn-primary.focus, .btn-primary:focus,
.btn-primary:active, .btn-primary:active:focus {
  background-color: var(--red);
  background-color: #aa132c;
  color: var(--white);
  color: #fff;
  border-color: var(--red);
  border-color: #aa132c;
  outline: var(--red);
  outline: #aa132c;
}

.whatsapp-contact-btn {
  position: fixed;
  bottom: 2rem;
  width: 3rem;
  right: 2rem;
}

.cta-insurances {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 1rem;
  color: black;
  border-radius: .4rem;
  -webkit-box-shadow: 3px 3px 7px -3px grey;
          box-shadow: 3px 3px 7px -3px grey;
}

.cta-insurances:hover {
  color: black;
  text-decoration: underline;
}

.cta-insurances i.circle {
  background-color: #aa132c;
  padding: 1rem;
  border-radius: 50%;
  color: #fff;
  margin-right: .75rem;
}

.cta-insurances i.fa-arrow-right {
  margin-left: .75rem;
}

figure {
  overflow: hidden;
  background-color: var(--white);
  background-color: #fff;
  height: 100%;
}

figure header {
  overflow: hidden;
}

figure header img {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  max-height: 30em;
}

figure header:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

figure footer p {
  margin: 0;
}

#deals .deal {
  background-image: linear-gradient(-21deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url(../jeautomotive/images/videocall_JE4.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#deals .deal .lead {
  font-size: 1rem;
}

#deals .deal,
#deals .row {
  margin-bottom: 0;
}

#deals .card .card-title {
  line-height: 1.5rem;
}

#deals .card .card-img-top {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 20rem;
}

#deals .card .card-body {
  line-height: 2rem;
}

#deals .card .card-body ul {
  padding-left: 1rem;
}

@media screen and (min-width: 48em) {
  #deals .card .card-body {
    padding: 3rem;
  }
}

#deals .card .btn-primary {
  background-color: var(--red);
  background-color: #aa132c;
  color: var(--white);
  color: #fff;
  border-color: var(--red);
  border-color: #aa132c;
  outline: var(--red);
  outline: #aa132c;
  max-width: 30rem;
  display: block;
}

#deals .card .btn-primary.--center {
  margin: 0 auto;
}

#deals .card .btn-primary i {
  margin-left: 1rem;
}

#diensten {
  background-color: var(--lightgray);
  background-color: #f5f5f5;
}

#diensten figcaption {
  padding: 2rem;
  height: 100%;
}

#occasions {
  background-image: url(images/occasion.jpg);
  color: var(--white);
  color: #fff;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#occasions::before {
  content: '';
  background-color: rgba(5, 5, 5, 0.71);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#occasions h2 {
  color: #fff;
}

#occasions .btn-group-lg > .btn, .btn-lg {
  background-color: rgba(128, 128, 128, 0);
  border: var(--white) solid 2px;
  border: #fff solid 2px;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: bold;
  width: 100%;
  -webkit-transition: all .25s;
  transition: all .25s;
}

#occasions .container > .row .row:nth-of-type(2) {
  margin-top: 4rem;
}

#banner-video {
  padding: 0;
  margin-top: 4.5rem;
  max-width: 100%;
  display: block;
}

video {
  margin: 0 auto;
}

.pagination > li.disabled {
  display: none;
}

#verzekeringen {
  /* Fix input from overflowing */
}

#verzekeringen h2 {
  margin-bottom: 8rem;
}

#verzekeringen .eVfwVC.eVfwVC {
  margin-bottom: 0;
}

#verzekeringen .jAbdSa {
  top: 6rem;
}

#contact {
  padding: 0 0;
}

#contact .custom-line-heigt {
  line-height: 1.375em;
}

#contact h2 {
  margin: 0 0 1em;
}

#contact a {
  color: var(--darkgray);
  letter-spacing: .1em;
}

#contact address:nth-of-type(2) a {
  display: block;
}

#contact table p {
  line-height: 1.375em;
  margin: 0;
}

#contact table td {
  width: 8em;
}

#contact .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 5em;
  margin: 0 auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#contact .row {
  margin-bottom: 0;
}

#contact .container-fluid {
  margin: 0;
  padding: 0;
}

/* Privacy policy */
.privacy-policy {
  letter-spacing: .2rem;
}

.gm-style .place-card-large,
.place-card .place-card-large {
  display: none;
}

/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*
 * Styles copied from the Grid example to make grid rows & columns visible.
 */
.container {
  padding-right: 15px;
  padding-left: 15px;
}

h4 {
  margin-top: 25px;
}

.row {
  margin-bottom: 20px;
}

.row .row {
  margin-top: 10px;
  margin-bottom: 0;
}

[class*="col-"] {
  padding-top: 15px;
  padding-bottom: 15px;
}

.well-sm {
  margin-top: 1rem;
}

.banner-image {
  max-height: 30rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 4.5rem;
}

/* Regular page */
.page .main-content {
  margin: 8rem 0 8rem;
}

@media (max-width: 62em) {
  .page .main-content {
    margin: 3rem 0 3rem;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 48em) {
  input[type='submit'] {
    width: calc(100%/3);
  }
}

/* Medium devices (desktops, up to 992px) */
@media (max-width: 62em) {
  .row-eq-height {
    display: unset;
  }
  h1 {
    font-size: 1.75em;
    margin: 0 0 .5em;
  }
  footer nav {
    display: none;
  }
  #recensies #testimonials .carousel-inner .box {
    width: 80%;
  }
  .box {
    padding: 1em;
    max-height: 25em;
    overflow: hidden;
  }
}

@media (max-width: 48em) {
  .box {
    font-size: .9em;
  }
  #recensies #testimonials .carousel-inner .box {
    width: 90%;
  }
  .box {
    padding: .75em;
    max-height: 30em;
    overflow: hidden;
  }
  .carousel-inner > .item > a > img, .carousel-inner > .item {
    width: 100%;
    overflow: hidden;
  }
  .carousel-inner > .item > a > img > img, .carousel-inner > .item > img {
    height: 30em;
  }
  #myCarousel.carousel-inner > .item > a > img, .carousel-inner > .item > img, .carousel-inner > .item > img.img-responsive, .thumbnail a > img, .thumbnail > img {
    max-width: unset;
  }
  #myCarousel.carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right,
  .item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #verzekeringen {
    /* Fix input from overflowing */
  }
  #verzekeringen h2 {
    margin-bottom: 8rem;
  }
  #verzekeringen .eVfwVC.eVfwVC {
    margin-bottom: 0;
  }
  #verzekeringen .jAbdSa {
    top: 8rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media (max-width: 22em) {
  h1 {
    font-size: 1.25em;
  }
  header > nav .primary-menu li a {
    padding: 1.125em 5em;
  }
  #recensies #testimonials .carousel-indicators {
    bottom: -10px;
  }
  .navbar-brand img {
    width: 90%;
  }
}

@media (min-width: 62em) {
  header > nav .primary-menu {
    width: 30%;
  }
  #recensies #testimonials .carousel-inner .box {
    width: 60%;
  }
  figure header img {
    max-height: 20em;
  }
}

@media (min-width: 120em) {
  header > nav .primary-menu {
    width: 25%;
  }
}

@-webkit-keyframes test {
  0% {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  5% {
    top: 50%;
    left: 75%;
    -webkit-transform: translate(-75%, -50%) scale(1);
            transform: translate(-75%, -50%) scale(1);
    opacity: .8;
  }
  10% {
    -webkit-transform: translate(-75%, -50%) scale(1.2);
            transform: translate(-75%, -50%) scale(1.2);
  }
  90% {
    opacity: .8;
  }
  100% {
    top: 50%;
    left: 75%;
    -webkit-transform: translate(-75%, -50%) scale(1.2);
            transform: translate(-75%, -50%) scale(1.2);
    opacity: 0;
  }
}

@keyframes test {
  0% {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  5% {
    top: 50%;
    left: 75%;
    -webkit-transform: translate(-75%, -50%) scale(1);
            transform: translate(-75%, -50%) scale(1);
    opacity: .8;
  }
  10% {
    -webkit-transform: translate(-75%, -50%) scale(1.2);
            transform: translate(-75%, -50%) scale(1.2);
  }
  90% {
    opacity: .8;
  }
  100% {
    top: 50%;
    left: 75%;
    -webkit-transform: translate(-75%, -50%) scale(1.2);
            transform: translate(-75%, -50%) scale(1.2);
    opacity: 0;
  }
}

@-webkit-keyframes zoom-out {
  from {
    -webkit-transform: scale(1.15) translate(2rem, 0);
            transform: scale(1.15) translate(2rem, 0);
  }
  to {
    -webkit-transform: scale(1.01) translate(-2rem, 2rem);
            transform: scale(1.01) translate(-2rem, 2rem);
  }
}

@keyframes zoom-out {
  from {
    -webkit-transform: scale(1.15) translate(2rem, 0);
            transform: scale(1.15) translate(2rem, 0);
  }
  to {
    -webkit-transform: scale(1.01) translate(-2rem, 2rem);
            transform: scale(1.01) translate(-2rem, 2rem);
  }
}

@-webkit-keyframes fade-text-above {
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-text-above {
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
    visibility: visible;
    opacity: 1;
  }
}

.slider .btn-primary {
  background-color: var(--red);
  background-color: #aa132c;
  color: var(--white);
  color: #fff;
  border-color: var(--red);
  border-color: #aa132c;
  outline: var(--red);
  outline: #aa132c;
}

.slider article {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider article img {
  width: 100%;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.slider article img[src=""] {
  padding-bottom: 66%;
}

.slider article figure {
  margin: 0;
}

.slider article .image-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider article .image-overlay::after, .slider article .image-overlay::before {
  top: 0;
  left: 0;
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
}

.slider article .image-overlay::after {
  -webkit-box-shadow: 0 0 200px rgba(0, 0, 0, 0.9) inset;
          box-shadow: 0 0 200px rgba(0, 0, 0, 0.9) inset;
  z-index: 99;
}

.slider article .image-overlay::before {
  background-color: black;
  opacity: 1;
}

.slider article .card {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  width: 100%;
  max-width: 30rem;
  opacity: 0;
  padding: 2rem;
}

.slider article .card.--left {
  left: 25%;
  -webkit-transform: translate(-25%, -50%);
          transform: translate(-25%, -50%);
}

.slider article .card.--right {
  left: 25%;
  -webkit-transform: translate(-25%, -50%);
          transform: translate(-25%, -50%);
}

.slider article header {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  z-index: 99999999;
  color: #fff;
}

.slider .card-body {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(0, 2rem);
          transform: translate(0, 2rem);
}

.slider .slick-active .card-body {
  -webkit-animation: fade-text-above .3s .3s forwards ease-out;
          animation: fade-text-above .3s .3s forwards ease-out;
}

.slider .slick-active img {
  -webkit-animation: zoom-out 12s forwards ease-out;
          animation: zoom-out 12s forwards ease-out;
}

.slider .slick-active .card {
  -webkit-animation: test 12s forwards;
          animation: test 12s forwards;
}

.slider .slick-active .card.--left {
  left: 25%;
  -webkit-transform: translate(-25%, -50%);
          transform: translate(-25%, -50%);
}

.slider .slick-active .card.--right {
  right: 25%;
  -webkit-transform: translate(-25%, -50%);
          transform: translate(-25%, -50%);
}

.slider .slick-slide {
  max-height: 100vh;
}
/*# sourceMappingURL=style.css.map */