@charset "UTF-8";

:root{
  --black: #222;
  --white: #fff;
  --grey: #f5f5f5;
  --border-grey: #dfdfdf;
  --blue: #1f51ff;
  --linkedin: #0a66c2;
  --menu-height: 82px;
}

/* reset */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{
    display: block;
}

body{
    line-height: 1;
}

ol, ul{
    list-style: none;
}

blockquote, q{
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after{
    content: '';
    content: none;
}

/* /reset */

/* grid */

.container{
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px){

    .container{
        max-width: 540px;
    }
}

@media (min-width: 768px){

    .container{
        max-width: 720px;
    }
}

@media (min-width: 992px){

    .container{
        max-width: 960px;
    }
}

@media (min-width: 1200px){

    .container{
        max-width: 1140px;
    }
}

@media (min-width: 1400px){

    .container{
        max-width: 1320px;
    }
}

/* /grid */

/* font */

@font-face{
    font-family: 'figtree-text';
    src: url('../font/figtree/figtree-text.woff2') format('woff2');
    font-display: swap;
}

@font-face{
    font-family: 'figtree-title';
    src: url('../font/figtree/figtree-title.woff2') format('woff2');
    font-display: swap;
}

/* /font */

*, *::before, *::after {
    box-sizing: border-box;
}

html{
    height: 100%;
    background-color: var(--grey);
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    scroll-behavior: smooth;
    --black: #222;
    --white: #fff;
    --grey: #f5f5f5;
    --border-grey: #dfdfdf;
    --blue: #1f51ff;
    --linkedin: #0a66c2;
}

body{
    font-family: 'figtree-text', sans-serif;
    min-height: 100%;
    background-color: var(--grey);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--grey);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 5px;
}

section{
    flex: 1;
}

.d-flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-direction-column{
    flex-direction: column;
}

.justify-content-center{
    justify-content: center;
}

.justify-content-end{
    justify-content: flex-end;
}

.justify-content-between{
    justify-content: space-between;
}

.align-content-center{
    align-content: center;
}

.align-items-center{
    align-items: center;
}

/* header */

header{
    width: 100%;
    position: fixed;
    z-index: 1000;
    background-color: var(--white);
    border: 0.063rem solid var(--border-grey);
}

nav{
    height: 80px;
    margin: 0 1rem;
    padding: 0 2rem;
}

#logo a{
    font-size: 1rem;
    color: var(--white);
    line-height: 0;
    text-decoration: none;
    outline: none;
}

#logo a:hover, #logo a:focus, #logo a:active,
footer a:hover, footer a:focus, footer a:active{
    color: var(--black);
}

nav ul{
    display: inline-flex;
}

nav ul li{
    margin-left: 0.75rem;
    margin-right : 0.75rem;
}

nav ul li:first-child{
    margin-left: 0;
}

nav ul li:last-child{
    margin-right: 0;
}

nav a{
    font-size: 1rem;
    color: var(--black);
    line-height: 1.625rem;
    text-decoration: none;
    outline: none;
}

.active{
    color: var(--blue);
}

#menu-open{
    display: none;
    cursor: pointer;
}

#menu-open svg{
      width: 1.5rem;
      height: 1.5rem;
      color: var(--black);
}

#menu-open svg:hover, #menu-close svg:hover{
  color: var(--blue);
}

#menu{
    transition: transform 0.3s ease;
    z-index: 10;
}

#menu-close{
    display: none;
    cursor: pointer;
}

#menu-close svg{
    width: 2rem;
    height: 2rem;
    color: var(--black);
}

#overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s;
  z-index: 5;
}

#overlay.active{
  opacity: 1;
  visibility: visible;
}

/* /header */

/* home */

#home{
    min-height: calc(100vh - var(--menu-height));
    padding-top: var(--menu-height);
}

#home .bck{
    background-image: url(../picture/background-accueil.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: calc(100vh - var(--menu-height));
}

#home .bck div:first-child{
    padding: 0 2rem;
}

#home h1{
    font-family: 'figtree-title', sans-serif;
    font-size: 4rem;
    color: var(--black);
    line-height: 4.625rem;
    margin-bottom: 6.250rem;
}

#home .cta{
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.75rem;
    text-decoration: none;
    outline: none;
    background-color: var(--blue);
    border: 0.063rem solid var(--blue);
    border-radius: 2rem;
    padding: 0.75rem 1.625rem;
    display: inline-block;
}

#home .cta:first-child{
    margin-right: 1rem;
}

#home .cta:hover, #home .cta:focus, #home .cta:active{
    background-color: var(--black);
    border-color: var(--black);
}

/* /home */

/* offer */

#offer{
    scroll-margin-top: 30px;
}

#offer .section-wrap, #projects .section-wrap,
#about .section-wrap, #rating .section-wrap{
    margin-top: 6.250rem;
    padding: 0 2rem;
}

#offer h2, #projects h2, #rating h2,
#privacy h1, #error-404 h1{
    font-family: 'figtree-title', sans-serif;
    font-size: 3rem;
    color: var(--black);
    line-height: 3.625rem;
    margin: 0 1rem 3.125rem 1rem;
}

#offer .box-offer{
    background-color: var(--white);
    border: 0.063rem solid var(--border-grey);
    border-radius: 1rem;
    margin: 0 1rem 3.125rem 1rem;
    padding: 2rem;
}

#offer h3, #offer .box-subscription h3{
  font-family: 'figtree-title', sans-serif;
  font-size: 2.5rem;
  color: var(--black);
  line-height: 3.125rem;
  margin-bottom: 3.125rem;
}

#offer ul{
    margin-bottom: 2rem;
}

#offer .box-offer svg{
    width: 32px;
    height: 32px;
    color: var(--blue);
    flex-shrink: 0;
    margin-right: .5rem;
}

#offer p{
     font-size: 1.125rem;
     color: var(--black);
     line-height: 1.75rem;
}

#offer .bottom{
    margin-top: auto;
    align-items: start;
}

#offer .price{
    font-family: 'figtree-title', sans-serif;
    font-size: 2.5rem;
    color: var(--black);
    line-height: 3.125rem;
}

#offer span{
    font-size: 1.125rem;
}

#offer .box-offer .cta{
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.75rem;
    text-decoration: none;
    outline: none;
    background-color: var(--blue);
    border: 0.063rem solid var(--blue);
    border-radius: 2rem;
    padding: 0.75rem 1.625rem;
    display: inline-block;
    margin: 1rem 0;
}

#offer .box-offer .cta:hover, #offer .box-offer .cta:focus, #offer .box-offer .cta:active,
#offer .box-subscription .cta:hover, #offer .box-subscription .cta:focus, #offer .box-subscription .cta:active,
#offer .box-subscription .cta-business:hover, #offer .box-subscription .cta-business:focus, #offer .box-subscription .cta-business:active{
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

#offer .anchor{
    scroll-margin-top: 132px;
}

#offer .vat{
    font-style: italic;
    font-size: 1rem;
    line-height: 1.625rem;
}

#offer .box-subscription{
    background-color: var(--white);
    border: 0.063rem solid var(--border-grey);
    border-radius: 1rem;
    margin: 0 1rem;
    padding: 2rem;
}

#offer .box-subscription .text{
    margin-bottom: 3.125rem;
}

#offer .table-wrap{
    background-color: var(--grey);
    border: 0.063rem solid var(--border-grey);
    border-radius: 1rem;
    padding: 2rem;
}

#offer table{
    border-collapse: collapse;
    width: 100%;
}

#offer table th, #offer table td{
    padding: 1rem 0;
    vertical-align: middle;
}

#offer table .tr-background{
    background-color: var(--white);
}

#offer table .subscription-name th{
    font-family: 'figtree-title', sans-serif;
    font-size: 1.5rem;
    color: var(--blue);
    line-height: 2.125rem;
    padding-bottom: 1rem;
}

#offer table .subscription-price th{
    font-family: 'figtree-title', sans-serif;
    font-size: 2rem;
    color: var(--black);
    line-height: 2.625rem;
    padding-bottom: 1rem;
}

#offer table .subscription-price th span{
    font-size: 1rem;
    display: block;
}

#offer table tbody th{
    font-family: 'figtree-title', sans-serif;
    font-size: 1rem;
    color: var(--black);
    line-height: 1.625rem;
    text-align: left;
    padding-left: 1rem;
}

#offer table tbody td{
    font-size: 1rem;
    color: var(--black);
    line-height: 1.625rem;
    text-align: center;
}

#offer table tbody .vat{
    text-align: left;
    padding-top: 2rem;
}

#offer table tbody td svg{
    width: 32px;
    height: 32px;
    color: var(--blue);
    flex-shrink: 0;
}

#offer .box-subscription .cta{
    font-size: 1rem;
    color: var(--white);
    line-height: 1.625rem;
    text-decoration: none;
    outline: none;
    background-color: var(--blue);
    border: 0.063rem solid var(--blue);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    display: inline-block;
}

#offer .box-subscription .cta-span{
      font-size: 1rem;
      line-height: 1.625rem;
}

#offer table .th-empty, #offer table .td-title{
    display: none;
}

#offer table .td-title{
    font-family: 'figtree-title', sans-serif;
    font-size: 1rem;
    color: var(--black);
    line-height: 1.625rem;
}

/* /offer */

/* projects */

#projects .box, #rating .box{
    background-color: var(--white);
    border: 0.063rem solid var(--border-grey);
    border-radius: 1rem;
    margin: 0 1rem;
}

#projects .box img{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

#projects .box-bottom{
    padding: 1rem;
}

#projects h3{
    font-family: 'figtree-title', sans-serif;
    font-size: 2.5rem;
    color: var(--black);
    line-height: 3.125rem;
    margin-bottom: 3.125rem;
}

#projects p, #rating p, #privacy-legal p{
    font-size: 1.125rem;
    color: var(--black);
    line-height: 1.75rem;
}

#projects .box a{
    text-decoration: none;
    outline: none;
}

#projects .box a:hover svg, #projects .box a:focus svg, #projects .box a:active svg{
    color: var(--black);
}

#projects .box svg{
    width: 1.875rem;
    height: 1.875rem;
    color: var(--blue);
}

.owl-theme .owl-nav{
    margin: 2rem 1rem 0 1rem;
    text-align: right;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-']{
    margin: 0 0.5rem;
    display: inline-block;
    cursor: pointer;
}

.owl-nav [class*='owl-']:first-child{
    margin-left: 0;
}

.owl-nav [class*='owl-']:last-child{
    margin-right: 0;
}

.owl-theme .owl-nav [class*='owl-']:hover,
.owl-theme .owl-nav [class*='owl-']:focus,
.owl-theme .owl-nav [class*='owl-']:active{
    background: none;
    text-decoration: none;
    outline: none;
}

.owl-theme .owl-nav .disabled{
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav img{
    width: 1.25rem;
}

.owl-carousel .owl-item img{
    display: inline !important;
}

/* /projects */

/* about */

#about .box:first-child{
      flex: 70%;
      margin-right: 1rem;
}

#about .box:last-child{
      flex: 30%;
      margin: 0 1rem;
      text-align: center;
}

#about h2, #contact h2{
    font-family: 'figtree-title', sans-serif;
    font-size: 3rem;
    color: var(--black);
    line-height: 3.625rem;
    margin: 0 1rem 3.125rem 1rem;
}

#about p{
   font-size: 1.125rem;
   color: var(--black);
   line-height: 1.75rem;
   margin: 0 1rem;
}

#about img{
    width: 400px;
    border-radius: 70% 30% 30% 70% / 30% 30% 70% 70%;
    background-color: var(--blue);
    border: 0.063rem solid var(--border-grey);
}

/* /about */

/* rating */

#rating .box{
    padding: 1rem;
    border-radius: 1rem;
}

#rating .rating-img{
    width: 50px;
    height: 50px;
    border-radius: 10rem;
    margin-right: 1rem;
}

#rating .box-top{
    margin-bottom: 2rem;
}

#rating svg{
    width: 1rem;
    height: 1rem;
    color: var(--blue);
}

/* /rating */

/* contact */

#contact .section-wrap, #privacy .section-wrap, #error-404 .section-wrap{
    margin-top: 6.250rem;
    margin-bottom: 6.250rem;
    padding: 0 2rem;
}

#contact ul li{
    margin: 0 1rem 3.125rem 1rem;
}

#contact ul li:last-child{
    margin-bottom: 0;
}

#contact h3{
    font-family: 'figtree-title', sans-serif;
    font-size: 1.125rem;
    color: var(--black);
    line-height: 1.75rem;
    margin-bottom: 1rem;
}

#contact a{
    font-size: 1.75rem;
    color: var(--blue);
    line-height: 2.375rem;
    text-decoration: none;
    outline: none;
}

#contact .contact-link:hover, #contact .contact-link:focus, #contact .contact-link:active{
    color: var(--black);
}

/* /contact */

/* footer */

footer{
    background-color: var(--white);
    border-top: 0.063rem solid var(--border-grey);
}

#footer-wrap{
	width: 100%;
  height: 60px;
}

footer p{
    font-size: .875rem;
    color: var(--black);
    margin: 0 .5rem 0 3rem;
}

footer a{
    font-size: .875rem;
    color: var(--black);
    line-height: .875rem;
    text-decoration: none;
    outline: none;
    margin-right: 1.875rem;
}

footer a:hover, footer a:focus, footer a:active{
    color: var(--blue);
}

footer a:hover svg, footer a:focus svg, footer a:active svg{
    color: var(--black);
}

footer .linkedin{
    color: var(--linkedin);
}

footer svg{
    width: 1rem;
    height: 1rem;
}

/* /footer */

/* privacy */

#privacy, #error-404{
    margin-top: 3.125rem;
}

#privacy-legal h2, #privacy-policy h2{
  font-family: 'figtree-title', sans-serif;
  font-size: 2.5rem;
  color: var(--black);
  line-height: 3.125rem;
  margin: 3.125rem 1rem;
}

#privacy-legal ul{
    margin: 3.125rem 1rem;
}

#privacy-policy h3{
    font-family: 'figtree-title', sans-serif;
    font-size: 1.5rem;
    color: var(--blue);
    line-height: 2.125rem;
    margin: 2rem 1rem;
}

#privacy-policy p, #error-404 p{
   font-size: 1.125rem;
   color: var(--black);
   line-height: 1.75rem;
   margin: 0 1rem;
}

#privacy-legal a, #privacy-policy a{
    font-size: 1.125rem;
    color: var(--black);
    line-height: 1.75rem;
    text-decoration: none;
    outline: none;
}

#privacy-legal a:hover, #privacy-legal a:focus, #privacy-legal a:active
#privacy-policy a:hover, #privacy-policy a:focus, #privacy-policy a:active{
    color: var(--black);
}

/* /privacy */

/* error 404 */

#error-404 a{
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.75rem;
    text-decoration: none;
    outline: none;
    background-color: var(--blue);
    border: 0.063rem solid var(--blue);
    border-radius: 2rem;
    padding: 0.75rem 1.625rem;
    display: inline-block;
    margin: 3.125rem 1rem;
}

#error-404 a:hover, #error-404 a:focus, #error-404 a:active{
    background-color: var(--black);
    border: 0.063rem solid var(--black);
}

/* /error 404 */

/* media queries */

@media (max-width: 575.99px){
    #menu {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 250px;
      padding: 1rem 2rem 2rem 2rem;
      background-color: var(--white);
      flex-direction: column;
      transform: translateX(-100%);
      box-shadow: 0.188rem 0 0.625rem rgba(0,0,0,0.1);
      z-index: 999;
    }

    #menu.show{
      transform: translateX(0);
    }

    #menu-close{
      display: block;
      align-self: flex-end;
    }

    #menu li{
      margin: .75rem 0;
    }

    #menu li:last-child{
        margin-bottom: 0;
    }

    #menu-open {
      display: flex;
    }

    nav{
        margin: 0;
    }

    #home h1{
      font-size: 3rem;
      line-height: 3.625rem;
    }

    #home .cta:first-child {
      margin-bottom: 1rem;
    }

    #offer .section-wrap{
      padding: 0 1rem;
    }

    #offer .box-offer, #offer .box-subscription{
        padding: 1rem;
    }

    #offer .box-bottom{
      padding: 1rem;
    }

    #offer h3{
      font-size: 2rem;
      line-height: 2.625rem;
    }

    #offer li{
      align-items: start;
      margin-bottom: 10px;
    }

    #offer li:last-child{
      margin-bottom: 0;
    }

    #offer .box-offer svg{
      margin-top: -4px;
    }

    #offer p{
       font-size: 1rem;
       color: var(--black);
       line-height: 1.5rem;
    }

    #offer .table-wrap{
        padding: 1rem;
    }

    #offer table .subscription-name th:first-child,
    #offer table .subscription-price th:first-child,
    #offer table tbody th, #offer table .th-empty{
        display: none;
    }

    #offer table .subscription-name th {
        font-size: 1rem;
        line-height: 1.625rem;
    }

    #offer table .td-title{
        display: table-cell;
        background-color: var(--white);
        font-size: .875rem;
        line-height: 1.5rem;
    }

    #offer table tbody td, #offer table .subscription-price th span{
        font-size: .875rem;
        line-height: 1.5rem;
    }

    #offer table .tr-background{
        background-color: transparent;
    }

    #offer .box-subscription .cta{
        font-size: .875rem;
        line-height: 1.5rem;
    }

    #offer .box-subscription .cta-span{
        display: none;
    }

    #projects h2, #rating h2, #privacy h1, #error-404 h1{
        margin: 0 0 3.125rem 0;
    }

    #about .box-wrap{
        flex-direction: column;
    }

    #about .box:first-child{
        margin-right: 0;
        margin-bottom: 3.125rem;
    }

    #about .box:last-child{
        margin-left: 0;
    }

    #projects .box, #about p, #rating .box{
        margin: 0;
    }

    #about h2, #contact h2, #contact h3, #contact .contact-link{
        margin: 0 0 3.125rem 0;
    }

    #about .box-wrap{
        flex-direction: column;
    }

    #about img{
        width: 300px;
    }

    #rating .box-top{
        flex-direction: column;
        align-items: normal;
    }

    #rating .rating-info{
        margin-bottom: 1rem;
    }

    #footer-wrap{
        height: 100%;
        flex-direction: column;
    }

    footer .copyright{
        order: 3;
        margin: 1rem 0 2rem 0;
    }

    footer .privacy-link{
        order: 2;
        margin: 2rem 0 1rem 0;
    }

    footer .copyright p{
        margin-left: 0;
    }

    #footer-wrap div:last-child a{
        margin-right: 0;
    }

    #privacy-legal h2, #privacy-policy h2, #privacy-legal ul{
        margin: 3.125rem 0;
    }

    #privacy-policy h3{
        margin: 2rem 0;
    }

    #privacy-policy p, #error-404 p{
        margin: 0;
    }

    #privacy, #error-404{
        margin-top: 3.125rem;
    }

    #error-404 a{
        font-size: 1rem;
        line-height: 1.625rem;
        margin: 3.125rem 0;
    }
}

@media (min-width: 576px) and (max-width: 767.99px){
    #menu {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 250px;
      padding: 1rem 2rem 2rem 2rem;
      background-color: var(--white);
      flex-direction: column;
      transform: translateX(-100%);
      box-shadow: 0.188rem 0 0.625rem rgba(0,0,0,0.1);
      z-index: 999;
    }

    #menu.show{
      transform: translateX(0);
    }

    #menu-close{
      display: block;
      align-self: flex-end;
    }

    #menu li{
      margin: .75rem 0;
    }

    #menu li:last-child{
      margin-bottom: 0;
    }

    #menu-open {
      display: flex;
    }

    #home h1{
      font-size: 3rem;
      line-height: 3.625rem;
    }

    #home .cta:first-child {
      margin-bottom: 1rem;
    }

    #offer .box-bottom{
      padding: 1rem;
    }

    #offer li{
      align-items: start;
      margin-bottom: 10px;
    }

    #offer li:last-child{
        margin-bottom: 0;
    }

    #offer .box-offer svg{
      margin-top: -4px;
    }

    #offer p{
       font-size: 1rem;
       color: var(--black);
       line-height: 1.5rem;
    }

    #offer table .subscription-name th:first-child,
    #offer table .subscription-price th:first-child,
    #offer table tbody th, #offer table .th-empty{
        display: none;
    }

    #offer table .td-title{
        display: table-cell;
        background-color: var(--white);
    }

    #offer table .tr-background{
        background-color: transparent;
    }

    #offer .box-subscription .cta{
        font-size: .875rem;
        line-height: 1.5rem;
    }

    #about .box-wrap, #contact .box-wrap{
        flex-direction: column;
    }

    #about .box:first-child{
        margin-right: 0;
        margin-bottom: 3.125rem;
    }

    #about .box:last-child{
        margin-left: 0;
    }

    #rating .box-top{
        flex-direction: column;
        align-items: normal;
    }

    #rating .rating-info{
        margin-bottom: 1rem;
    }

    #privacy, #error-404{
        margin-top: 3.125rem;
    }
}

@media (min-width: 768px) and (max-width: 991.99px){
    #offer table .subscription-name th:first-child,
    #offer table .subscription-price th:first-child,
    #offer table tbody th, #offer table .th-empty{
        display: none;
    }

    #offer table .td-title{
        display: table-cell;
        background-color: var(--white);
    }

    #offer table .tr-background{
        background-color: transparent;
    }

    #offer .box-subscription .cta{
        font-size: .875rem;
        line-height: 1.5rem;
    }

    #about .box-wrap, #contact .box-wrap{
        flex-direction: column;
    }

    #about .box:first-child{
        margin-right: 0;
        margin-bottom: 3.125rem;
    }

    #about .box:last-child{
        margin-left: 0;
    }

    #privacy, #error-404{
        margin-top: 3.125rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.99px){
}

@media (min-width: 1200px) and (max-width: 1399.99px){
}

/* /media queries */

/* owl carousel theme */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    display: flex;
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    display: flex;
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: auto; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/* /owl carousel theme */
