/* Minification failed. Returning unminified contents.
(1764,10): run-time error CSS1038: Expected hex color, found '#ffff'
(3233,9): run-time error CSS1036: Expected expression, found '}'
 */
body{
  margin:0;
  position: relative;
  overflow-x: hidden;
}
div,section,article,header,footer,main,p,strong,em,input,select,textarea{
	box-sizing:border-box;
}
ul,ol{
	list-style:none;
	margin:0;
	padding:0;
}
a{
	text-decoration:none;
	color:inherit;
}
p{
  line-height: 1.7;
}
html{
	/* scroll-behavior: smooth; */
}
#scroll-container {
  overflow:hidden;
}
:focus{
  outline:none;
}


body{
	font-family: 'Open Sans', sans-serif;
	color:#1A1818;
}
h1,h2,h3,h4,h5,h6{	
	font-family: 'Lora', serif;
}


.title{
	font-size:36px;
	margin:0 0 20px 0;
}
.title--center{
	text-align:center;
}
.title--left-border{
  border-left:2px solid #FF595A;
  padding-left:20px;
}
.subtitle{
	font-size:14px;
	max-width:596px;
	margin:0 auto 77px;
}
.subtitle--center{
	text-align:center;
}
@media(max-width:767px){
	.title{
		font-size:24px;
  }
  .subtitle{
    margin-bottom: 30px;
  }
}
.btn{
    line-height:42px;
    border-radius:120px;
    padding:0 40px;
    display:inline-block;
    transition:all 0.2s ease-in-out;
    border: none;
    font-family: "Open Sans";
    cursor: pointer;
}
.btn--primary{
    background: #00A19C;
    color:#ffffff;
}

.btn--primary:hover,.btn--primary:focus{
    background: #027774;
}
.btn--dark{
  background: #1A1818;
  color:#ffffff;
}
.btn--dark:hover,.btn--dark:focus{
  background: rgb(19, 18, 18);
}
.btn--white{
  background: #ffffff;
  color:#00A19C;
}
.btn--white:hover,.btn--white:focus{
  background: #f7f7f7;
}
.btn--secondary{
    background: #FF595A;
    color:#ffffff;
}
.btn--secondary-outline{
  border: 1px solid #FF595A;
  color:#FF595A;
}
.btn--secondary-outline:hover, .btn--secondary-outline:focus{

  background-color: #f9f9f9;
}
.btn--medium{
	line-height:39px;
	font-size:14px;
}
.btn--secondary:hover,.btn--secondary:focus{
    background: #f04d4e;
}


#btnSubmit span {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 100%;
    transition: all 0.2s ease-out;
}

#btnSubmit {
    position: relative;
    transform: scale(1);
    transition: all 0.2s ease-out;
    overflow:hidden;
}

    #btnSubmit:active {
        transform: scale(0.95);
    }

    #btnSubmit span.button-default {
        position: static;
    }

    #btnSubmit.button--sending span.button-default,
    #btnSubmit.button--success span.button-default {
        transform: translateY(-100%);
    }

    #btnSubmit.button--sending span.button-sending {
        transform: translateY(-100%);
    }

    #btnSubmit.button--success span.button-ok {
        transform: translateY(-100%);
    }
.input {
    height: 42px;
    padding: 5px 26px;
    background: transparent;
    border: 1px solid #DDDDDD;
    border-radius: 50px;
    width:100%;
    font-family: 'Open Sans';
}
textarea.input{
  border-radius: 21px;
  min-height: 84px;
}
.input:focus::placeholder{
  color: transparent;
}
select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

/* For IE10 */
select::-ms-expand {
  display: none;
}

.input:focus{
  outline:none;

}


.input__group {
  position: relative;
  margin-bottom: 30px;
}
.input__label {
  position: absolute;
  top: 0;
  font-size: 10px;
  transform: translate(20px, -110%);
  color: #dadada;
  opacity:1;
  transition: all 0.2s ease-out;
  left: 0;
}
.input__group .input:placeholder-shown ~ .input__label{
  opacity:0;
}
.input__group .input:focus ~ .input__label{
  opacity:1;
}
.input__group .input:-ms-input-placeholder ~ .input__label{
  opacity:0;
}

.select {
  border-radius: 40px;
  min-width: 80px;
  padding: 0 11px;
  margin-right: 10px;
  border-color: #ddd;
}
nav {
    display: flex;
    padding: 1rem 0;
    align-items:center;
    position:relative;
}
header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:all 0.2s ease-out;
    background:transparent;
    box-shadow:0 0 5px rgba(0,0,0,0);
}
header.active{
    position:fixed;
    background:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
header.header--static{
  position: relative;
}
header.header--casestudy:not(.active){
 color:#ffffff;
}
.menu__toggle-button{
  background: transparent;
  border: none;
}
@media(min-width:768px){
   .menu__toggle-button{
        display:none;
    }
    .menu {
    display: flex;
    }
   .menu__link--has-dropdown:after{
    content:"";
    width:6px;
    height:6px;
    border-right:1px solid #AAAAAA;
    border-bottom:1px solid #AAAAAA;
    display:inline-block;
    transform:rotate(45deg) translate(0px,-3px);
    transform-origin:center;
    margin-left:2px;
    transition:all 0.2s ease-out;
  }
  header.header--casestudy:not(.active) .menu__link--has-dropdown:after{
    border-right:1px solid #ffffff;
    border-bottom:1px solid #ffffff;
  }
.menu__link--has-dropdown:hover:after{
    transform:rotate(-135deg) translate(-3px,0px);
    border-color:#FF595A;
}
.menu__link--has-dropdown:hover .menu__dropdown{
    display:block;
    color:#1A1818;
}

.menu__dropdown {
    display: none;
    position:absolute;
    background:#fff;
    padding:22.5px 30px;
    border-radius:0.25rem;
     box-shadow:0 0 10px rgba(0,0,0,0.1); 
    top:100%;
    left:0;
    z-index: 1;
}
.menu__link {
    margin-right: 3rem;
    padding:12px 0;
}
}
.menu__divider{
    height:22px;
}
 
#logo{
    margin-right: auto;
}
.menu__sublink a {
    padding: 7.5px 0;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.menu__sublink a:after {
        content: '';
        display: block;
        width: 7px;
        height: 7px;
        border-right: 1px solid;
        border-bottom: 1px solid;
        transform: rotate(-45deg);
        color: #666;
        margin-left:30px;
}

.menu__sublink a:hover:after {
        color: #ff595a;
}

.menu__link a:hover{
    color:#FF595A;
}

.menu__link--has-dropdown{
    position:relative;
}

.menu__sublink{
    white-space:nowrap;
    font-size:14px;
    font-weight:400;
}
.menu__sublink--has-dropdown{
    font-weight:bold;
}
@media(max-width:767px){
    header{
        /*background:#fff;*/
    }
    header.header--casestudy:not(.active){
      background: transparent;
      color: inherit;
    }
    .menu:not(.active),.menu__cta{
          display:none;
      }
      .menu__link.menu__link--has-dropdown {
          margin-top: 20px;

       }
       .menu__link.menu__link--has-dropdown > a{
      pointer-events: none;
          color: #666;
        }
      .menu{
          position: fixed;
          top: 55px;
          right:0px;
          width:100%;
          background:#fff;
          padding: 14px 30px;
          border-top: 1px solid #eee;
          height: calc(100% - 55px);
          overflow: auto;
      }
      .header--static nav{
        position: static;
      }
      .header--static .menu{
        position:absolute;
        height: auto;
      }
      .menu__divider{
          display:none;
      }
    .menu__sublink.menu__sublink--has-dropdown{
        margin-bottom:20px;
    }
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}/*!
 * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar}*,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit;}.container{width:100%;padding-right: 30px;padding-left: 30px;margin-right:auto;margin-left: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}}.container-fluid,.container-sm,.container-md,.container-lg,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width: 1170px;}}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}.flex-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:.25rem !important}.mt-1,.my-1{margin-top:.25rem !important}.mr-1,.mx-1{margin-right:.25rem !important}.mb-1,.my-1{margin-bottom:.25rem !important}.ml-1,.mx-1{margin-left:.25rem !important}.m-2{margin:.5rem !important}.mt-2,.my-2{margin-top:.5rem !important}.mr-2,.mx-2{margin-right:.5rem !important}.mb-2,.my-2{margin-bottom:.5rem !important}.ml-2,.mx-2{margin-left:.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:.25rem !important}.pt-1,.py-1{padding-top:.25rem !important}.pr-1,.px-1{padding-right:.25rem !important}.pb-1,.py-1{padding-bottom:.25rem !important}.pl-1,.px-1{padding-left:.25rem !important}.p-2{padding:.5rem !important}.pt-2,.py-2{padding-top:.5rem !important}.pr-2,.px-2{padding-right:.5rem !important}.pb-2,.py-2{padding-bottom:.5rem !important}.pl-2,.px-2{padding-left:.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-.25rem !important}.mt-n1,.my-n1{margin-top:-.25rem !important}.mr-n1,.mx-n1{margin-right:-.25rem !important}.mb-n1,.my-n1{margin-bottom:-.25rem !important}.ml-n1,.mx-n1{margin-left:-.25rem !important}.m-n2{margin:-.5rem !important}.mt-n2,.my-n2{margin-top:-.5rem !important}.mr-n2,.mx-n2{margin-right:-.5rem !important}.mb-n2,.my-n2{margin-bottom:-.5rem !important}.ml-n2,.mx-n2{margin-left:-.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:.25rem !important}.mt-sm-1,.my-sm-1{margin-top:.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:.25rem !important}.m-sm-2{margin:.5rem !important}.mt-sm-2,.my-sm-2{margin-top:.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:.25rem !important}.pt-sm-1,.py-sm-1{padding-top:.25rem !important}.pr-sm-1,.px-sm-1{padding-right:.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem !important}.pl-sm-1,.px-sm-1{padding-left:.25rem !important}.p-sm-2{padding:.5rem !important}.pt-sm-2,.py-sm-2{padding-top:.5rem !important}.pr-sm-2,.px-sm-2{padding-right:.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem !important}.pl-sm-2,.px-sm-2{padding-left:.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem !important}.m-sm-n2{margin:-.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:.25rem !important}.mt-md-1,.my-md-1{margin-top:.25rem !important}.mr-md-1,.mx-md-1{margin-right:.25rem !important}.mb-md-1,.my-md-1{margin-bottom:.25rem !important}.ml-md-1,.mx-md-1{margin-left:.25rem !important}.m-md-2{margin:.5rem !important}.mt-md-2,.my-md-2{margin-top:.5rem !important}.mr-md-2,.mx-md-2{margin-right:.5rem !important}.mb-md-2,.my-md-2{margin-bottom:.5rem !important}.ml-md-2,.mx-md-2{margin-left:.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:.25rem !important}.pt-md-1,.py-md-1{padding-top:.25rem !important}.pr-md-1,.px-md-1{padding-right:.25rem !important}.pb-md-1,.py-md-1{padding-bottom:.25rem !important}.pl-md-1,.px-md-1{padding-left:.25rem !important}.p-md-2{padding:.5rem !important}.pt-md-2,.py-md-2{padding-top:.5rem !important}.pr-md-2,.px-md-2{padding-right:.5rem !important}.pb-md-2,.py-md-2{padding-bottom:.5rem !important}.pl-md-2,.px-md-2{padding-left:.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem !important}.m-md-n2{margin:-.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:.25rem !important}.mt-lg-1,.my-lg-1{margin-top:.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:.25rem !important}.m-lg-2{margin:.5rem !important}.mt-lg-2,.my-lg-2{margin-top:.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:.25rem !important}.pt-lg-1,.py-lg-1{padding-top:.25rem !important}.pr-lg-1,.px-lg-1{padding-right:.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem !important}.pl-lg-1,.px-lg-1{padding-left:.25rem !important}.p-lg-2{padding:.5rem !important}.pt-lg-2,.py-lg-2{padding-top:.5rem !important}.pr-lg-2,.px-lg-2{padding-right:.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem !important}.pl-lg-2,.px-lg-2{padding-left:.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem !important}.m-lg-n2{margin:-.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:.25rem !important}.mt-xl-1,.my-xl-1{margin-top:.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:.25rem !important}.m-xl-2{margin:.5rem !important}.mt-xl-2,.my-xl-2{margin-top:.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:.25rem !important}.pt-xl-1,.py-xl-1{padding-top:.25rem !important}.pr-xl-1,.px-xl-1{padding-right:.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem !important}.pl-xl-1,.px-xl-1{padding-left:.25rem !important}.p-xl-2{padding:.5rem !important}.pt-xl-2,.py-xl-2{padding-top:.5rem !important}.pr-xl-2,.px-xl-2{padding-right:.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem !important}.pl-xl-2,.px-xl-2{padding-left:.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem !important}.m-xl-n2{margin:-.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover,a.text-primary:focus{color:#0056b3 !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover,a.text-secondary:focus{color:#494f54 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#cbd3da !important}.text-dark{color:#343a40 !important}a.text-dark:hover,a.text-dark:focus{color:#121416 !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;overflow-wrap:break-word !important}.text-reset{color:inherit !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position: -webkit-sticky) or (position: sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visible{visibility:visible !important}.invisible{visibility:hidden !important}

.footer__row {
    display: flex;
    flex-wrap: wrap;
}
.footer__menu{
    
    margin-right:60px;
}
.footer__menu .footer__has-sublink:nth-of-type(3) {
    margin-top: 25px;
}

.footer {
    padding-top: 60px;
    border-top: 1px solid #FF595A;
}

.footer__copyright {
    margin-top: 90px;
    border-top: 1px solid #ddd;
    padding: 32px 0;
    display: flex;
    font-size: 14px;
    color: #AAAAAA;
}

.footer__link {
    display: block;
    margin-top:15px;
    white-space:nowrap;
}
.footer__has-sublink{
    font-weight:600;
}
.footer__sublink{
    margin-left:15px
}
.footer__title {
    font-weight: bold;
    margin-bottom: 20px;
}
.footer__logos{
    max-width:300px;
    margin-left:30px;
}
.footer__logos img {
    margin-bottom: 20px;
height:36px;
    margin-right: 30px;
}
.footer__copyright > a {
    margin-left: 10px;
}
.footer__social {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.footer__social a {
    margin-left: 15px;
    display: block;
}

.footer__social img {
    display: block;
}

@media(min-width:768px){
    
}
.footer__logos img:nth-child(5) {
    margin-right: 20px;
}
.footer__copyright > a {
    display: none;
}
@media(max-width:767px){
  .footer__menu{
    margin-bottom: 40px;
  }
    .footer__logos{
        margin-left:0;
    }
    .footer__sublink {
        margin-left: 0;
    }
  .footer__copyright{
    display: block;
    text-align: center;
    margin-top: 40px;
  }
  .footer__social{
    margin-top: 20px;
    justify-content: center;
  }
}


/* ad banner*/
.adbanner {
    width: 400px;
   
    max-width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity:0;
    transform:translateY(100%);
    transition:all 0.3s ease-out;
    box-shadow: -5px -5px 20px rgba(0,0,0,0.2);
}
.adbanner.active{
    opacity:1;
    transform:translateY(0%);
}
.adbanner {
    position: fixed;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index:99;
}
    .adbanner > a{
        display:flex;
    }
    .adbanner img{
        max-width:100%;
    }
    .adbanner__image {
        position: absolute;
        left: 0;
        top: -1px;
    }

.adbanner__title {
    font-family: lora;
    font-weight: 700;
    font-size: 43px;
    text-align: center;
    margin-bottom: 26px;
    line-height: 1;
}

    .adbanner__title small {
        display: block;
        font-size: 26px;
        line-height: 1;
    }

.adbanner__footer {
    max-width: 271px;
    margin-top: 30px;
    font-size: 19px;
}
.adbanner__close {
    position: absolute;
    right: 10px;
    cursor:pointer;
    top: 10px;
}

@media(max-width:399px){
    .adbanner__title{
        font-size:36px;
    }
    .adbanner__title small{
        font-size:21px;
    }
    .adbanner__footer{
        font-size:16px;
    }
}
.media{
	display:flex;
}
.media__image{
  margin-right:20px;
}
.media__text{
  width:220px;
}
.media__title{
  font-size:16px;
  font-weight:bold;
  margin:0 0 20px 0;
  font-family: 'Open Sans';
}
.media__content--small{
  font-size:14px;
}
.media__center{
	display:flex;
	align-items:center;
}

/*Media Medium */
.media__is-medium{ 
  justify-content: center;  
  align-items: center;
}
.media__text--width-medium{
  max-width: 478px;
  margin-left:20px;
}
.media__title--large{
  font-size: 44px;
  margin-bottom: 10px;
  line-height: 1;
  margin-top: 0px;
}
.media__content--large{
  font-size:18px;
}

/*== Media Card ===*/
.media__card {
  text-align: center;
  padding: 50px 40px 60px;
  box-shadow: 0 3px 7px rgba(0,0,0,0.07);
}
.media__card-content {
  margin: 0;
  font-size: 14px;
}

.media__card-title {
  font-size: 16px;
  font-family: 'Open Sans';
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 40px;
}

.media__card-image img {
  display: block;
  margin: auto;
}

.media__card-link {
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 20px;
}
/*== media rect ===*/
.media__rect {
  
  margin-top: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 7px rgba(0,0,0,0.07);
}

.media__rect-image img {
  display: flex;
}

.media__rect-text {
  padding-left: 63px;
}

.media__rect-content {
  max-width: 478px;
  margin: 0;
}


.media__rect-title {
  font-size: 32px;
  margin: 20px 0;
  line-height: 1;
}

/*=== media fullwidth ===*/
.media__fullwidth{
  margin-top:150px;
  display: flex;
  align-items:center;
}
.media__fullwidth-image{
  margin-right:100px;
}
.media__fullwidth-title{
  font-size: 44px;
  max-width: 544px;
  margin:0;
}
.media__fullwidth-text{
  max-width: 581px;
  /* margin-left: auto; */
}
.media__fullwidth-content{
  margin-top: 80px;
  display: flex;
  justify-content: space-between;

}
.media__fullwidth-subcontent{
  width:230px;
}
.media__fullwidth-subcontent-title{
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.media__fullwidth-subcontent-content{
  font-size: 14px;
  margin:0;
}
.media__fullwidth-image--right-aligned{
  margin-left:100px;
  margin-right:0;
  order:2;
}

.media__fullwidth-text--left-aligned{
  margin-left:auto;
}

/*=== media case study ===*/


.media__casestudy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media__casestudy-image {
  flex: 0 0 512px;
  min-width: 512px;
  height: auto;
}

.media__casestudy-tag {
  display: inline-block;
  padding: 6px 10px;
  background: #FF595A;
  border-radius: 50px;
  font-size: 10px;
  color: #fff;
}

.media__casestudy-title {
  font-size: 20px;
  font-family: 'Open Sans';
  margin-top: 10px;
  margin-bottom: 10px;
}

.media__casestudy-link {
  color: #FF595A;
  text-decoration: underline;
}
.media__casestudy--small .media__casestudy-image,
.media__casestudy--small .media__casestudy-shapes {
 
  flex: 0 0 370px;
  min-width: 370px;
  height: 370px;
  width: 370px;

}
.media__casestudy--small  .media__casestudy-image {
    transform: scale(0.73);
}
.media__casestudy.media__casestudy--small {
  max-width: 700px;
}
.media__casestudy.media__casestudy--image-right{
  flex-direction: row-reverse;
  position: relative;
  left:140px;
}

.media__casestudy--large .media__casestudy-image svg {
  margin-left: -386px;
}

.media__casestudy--large .media__casestudy-text {
  min-width: 403px;
}

@media(max-width: 767px){

  .media__casestudy.media__casestudy--large {
      display: block;
      text-align: center;
      padding-top: 0px;
  }

  .media__casestudy-image {
      width: 100%;
      min-width: 0px;
  }

  .media__casestudy--large .media__casestudy-image svg {
      margin: 0;
      width: 100%;
      height: auto;
  }

  .media__casestudy--large .media__casestudy-text {
      min-width: 0px;
      margin-top: 50px;
  }
  .media__casestudy-text .title {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

}
/*Media blob*/

.media__blob {
  display: flex;
  margin-bottom: 60px;
  align-items: flex-start;
}

.media__blob-content {
  /* width: 380px; */
  margin-left: 20px;
}

h3.media__blob-heading {
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 0;
  font-family: 'Open Sans';
}

span.media__blob-date {
  font-size: 12px;
  font-weight: 400;
  margin-left: 20px;
}

ul.media__blob-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}

ul.media__blob-list li:before {
  content: '';width: 9px;
  height: 9px;position: absolute;
  border: 1px solid #00A19C;
  
  border-radius: 50%;left: 0;
  top: 50%;
  transform: translateY(-50%);}
  .media__blob-image span {
    font-size: 70px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.media__blob-image {
    flex: 0 0 140px;
    max-width: 140px;
    position: relative;
}
.media__blob-image img{
  width:100%;
}

/*Media product */
.media__product-wrapper {
  display: flex;
  justify-content: center;
}

.media__product {
  display: flex;
}

.media__product-text {
  width: 300px;
  margin-right: 10px;
  margin-left: 20px;
}

.media__product-title {
  font-weight: bold;
  margin-bottom: 8px;
}


@media(max-width: 767px){
  .media__product-wrapper {
    flex-wrap: wrap;
    padding: 15px 0;
}

.media__product-text {
    width: auto;
    margin-right: 0;
    margin-left: 15px;
}

.media__product-image {
    min-width: 70px;
}

.media__product-image img {
    width: 100%;
    height: auto;
}
ul.media__blob-list li{
  margin-bottom: 15px;
}
.media__blob{
  margin-bottom: 45px;
}
}

.testimonial__video {
    margin: 80px 0;
}

video {
    width: 100%;
    border-radius: 16px;
}

.testimonials {
    text-align: center;
    max-width: 710px;
    margin: auto;
    z-index: 99;
}

.testimonials__block {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

    .testimonials__block:not(.slick-active) {
        opacity: 0;
    }

.testimonials__logo img {
    display: inline-block;
}

.testimonials__content {
    margin: auto;
    font-style: italic;
    padding: 0 20px;
}

    .testimonials__content p {
        line-height: 1.5;
    }

.testimonials__logo {
    margin: 20px 0;
    display: none;
}

.testimonials__place {
    font-size: 17px;
    font-weight: bold;
}

.testimonials__person {
    font-size: 16px;
    font-weight: bold;
    margin: 25px 0 5px;
}

.testimonials__position {
    font-size: 13px;
    margin-bottom: 4px;
}

.testimonials--grey .testimonials__person,
.testimonials--grey .testimonials__position {
    color: inherit;
}

.testimonial__placedetail {
    font-size: 11px;
    margin-top: 5px;
    color: #666666;
}

.testimonial__heading {
    font-weight: bold;
    font-size: 20px;
}

.slick-arrow.slick-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.slick-arrow {
    position: absolute;
    top: 23%;
    left: -20%;
    font-size: 0px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
}

    .slick-arrow.slick-next {
        left: auto;
        right: -20%;
    }

    .slick-arrow:before {
        content: "";
        width: 8px;
        height: 8px;
        position: absolute;
        border-right: 1px solid #00a19c;
        border-bottom: 1px solid #00a19c;
        transform: rotate(-45deg);
        left: 12px;
        top: 14px;
    }

    .slick-arrow.slick-prev:before {
        transform: rotate(-225deg);
        left: 15px;
    }

.testimonial #whattheysay {
    padding: 500px 0 100px;
    margin-top: 20%;
}

.testimonial .testimonial_video {
    margin: -20px 0 0 24px;
}

.testimonial .testimonial_title {
    font-size: 18px;
    font-weight: normal;
    font-family: 'Open Sans';
    color: #666666;
    margin: 0px;
}

.testimonial .testimonial_heading {
    font-weight: bold;
    font-size: 36px;
    font-family: 'Lora' !important;
    margin: 0px 0px 60px 0px;
}

.testimonial .testimonial_description {
    font-size: 16px;
    font-weight: normal;
    font-style: italic;
    font-family: 'Open Sans';
    margin: 0px 0px 10px 0px;
    width: 327px;
    line-height: 24px;
    position: relative;
}

    .testimonial .testimonial_description::after {
        position: absolute;
        content: url('../../img/icon_open_double_quote_left.svg');
        top: -29px;
        left: -8px;
        z-index: -1;
    }

.testimonial .testimonial_name {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Open Sans';
}

.testimonial .testimonial_deg {
    font-size: 13px;
    font-weight: normal;
    font-family: 'Open Sans';
    color: #666666;
}

.testimonial .testimonial_video_content {
    position: relative;
    height: 100vh;
}

    .testimonial .testimonial_video_content .testimonial_video_content_img {
        display: inline-block;
        cursor: pointer;
        position: absolute;
        z-index:10;
    }

    .testimonial .testimonial_video_content .testimonial_video_content_details {
        position: absolute;
        top: 25%;
        left: 52%;
    }

    .testimonial .testimonial_video_content .testimonial_video_content_img_right {
        position: absolute;
        right: -26%;
        top: 12%;
        z-index:-1;
    }

    .testimonial .testimonial_video_content.left .testimonial_video_content_details {
        left: 9%;
        top: 32%;
    }

    .testimonial .testimonial_video_content.left .testimonial_video_content_img {
        right: -16%;
    }

    .testimonial .testimonial_video_content.left .testimonial_video_content_img_right {
        left: -52%;
    }
.testimonial_video_content_details.hidden-sm {
    display: inline-block;
}

.testimonial_video_content_details.hidden-lg {
    display: none;
}
@media screen and (max-width: 992px) {
    .testimonial .testimonial_video {
        margin: 0px;
        padding: 0px 20px 0px 20px;
    }
    .testimonial .testimonial_video_content .testimonial_video_content_img{
        position:relative;
    }
        .testimonial .testimonial_video_content .testimonial_video_content_img img{
            width:100%;
        }
    .testimonial .testimonial_video_content .testimonial_video_content_details {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
    }
    .testimonial .testimonial_video_content .testimonial_video_content_img_right{
        position:relative;
    }
    .testimonial .testimonial_video_content.left .testimonial_video_content_details {
        left: auto;
        top: auto;
    }
    .testimonial .testimonial_video_content.left .testimonial_video_content_img {
        left: auto;
        right:auto;
    }
    .testimonial .testimonial_video_content .testimonial_video_content_img_right{
        left:auto;
        right:auto;
        top:auto;
    }
    .testimonial_video_content_details.hidden-sm{
        display:none;
    }
    .testimonial_video_content_details.hidden-lg {
        display: inline-block;
    }
    .testimonial_video_content.left .testimonial_video_content_img img {
        width:120%;
    }
}
.faqs__container {
    margin-top: 50px;
}

.faqs__block {
    border-top: 1px solid #E4E4E4;
    position: relative;
}

.faqs__question {
    padding: 25px 25px 25px 0;
    font-weight: bold;
    cursor:pointer;
    position:relative;
}
.faqs__question:after,
.faqs__question:before{
    content:"";
    width:12px;
    height:2px;
    background:#fff;
    display:block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    transition:all 0.2s ease-out;
}
.faqs__question:before{
    transform:rotate(90deg);
}
.faqs__answer p {
    margin-top: 0;
}
.faqs__answer p:last-child{
    margin-bottom:0;
    padding-bottom:25px;
}
.faqs__answer {
    font-size: 14px;
    max-width: 800px;
    display:none;
    opacity: 0;
}
.faqs__block{
    transition:all 0.3s ease-out;
}
.faqs__block:before {
    position: absolute;
    width: 5px;
    content: "";
    height:96%;
    height: calc(100% - 50px);
    background: transparent;
    left: 0;
    top: 25px;
}
.faqs__block--active {
    padding-left: 25px;
}
.faqs__block--active:before{
    background:#fff;
}

.faqs__block--active .faqs__answer {
   display:block;
   opacity: 0;
   animation: opacity 0.5s forwards;
}
@keyframes opacity{
  to{
    opacity:1;
  }
}
.faqs__block--active .faqs__question:before{
    transform:rotate(0deg);

}
.faqs__viewalllink {
    margin-top: 30px;
}


.faqs__viewalllink a {
    text-decoration: underline;
    font-weight: 600;
}

/*==FAQ bg grey ==*/
.faqs__grey {
  background: #F4F4F4;
  padding: 55px 0 86px;
}
.faqs__grey .faqs__viewalllink{
  color:#00A19C;
}

.faqs__grey .faqs__block--active:before{
  background:#FF595A;
}
.faqs__grey .faqs__question:after, 
.faqs__grey .faqs__question:before{
  background:#00A19C;
}

/*FAQ white */
/*==FAQ bg grey ==*/
.faqs__white {
  background: #ffffff;
  padding: 55px 0 86px;
}
.faqs__white .faqs__viewalllink{
  color:#00A19C;
}

.faqs__white .faqs__block--active:before{
  background:#FF595A;
}
.faqs__white .faqs__question:after, 
.faqs__white .faqs__question:before{
  background:#00A19C;
}

.faqs__no-answers-block {
  max-width: 420px;
}

.faqs__no-answers-block-title {
  font-size: 32px;
  margin-bottom: 0;
}
.faqs__no-answers-block-content {
  font-size: 18px;
  line-height: 1.4;
  color:#666666;
  margin-bottom: 20px;
}
.banner{
 
  padding: 100px 0;
  
  width:100%;
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.banner__block{
  display: flex;
  align-items: center;
}
.banner__text{
  width:575px;
  margin-left:auto;
  line-height: 1.4;
}
.banner__content{
  max-width: 553px ;
}
.banner__content--large{
  max-width: 553px ;
}
.banner__textcenter{
  text-align: center;
  justify-content: center;

}
.banner__rightimage{
  background-size: 844px auto;
  background-position: right center;
}
.banner__cta{
  margin-top:40px;
}
.banner__title{
  font-size:36px;
  max-width:526px;
  margin-bottom: 0;
}
.banner__logo{
  margin-bottom: 10px;
}
.banner__title--small{
  font-size: 36px;
  max-width:450px;
  margin-top: 0;
}
.banner__title--with-logo{
  font-size: 36px;
  display: flex;
  align-items: center;

}
.banner__title--with-logo img{
  width:63px;
  margin-right:20px;
}
.banner__subtitle{
  font-size:18px;
  max-width:478px;
}
.banner__image.banner__image--absolute {
  position: relative;
  width: 50%;
  height: 620px;
  z-index: -1;
}

.banner__image.banner__image--absolute svg {
  position: absolute;
  right: -300px;
  top: -800px;
  width: 1953px;
}
.banner__scrolldown-link{
  position: absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:56px;
  z-index:2;
  font-size:12px;
  color:#666666;
}
@media(max-width: 767px){
  .banner__block {
      flex-wrap: wrap;
  }
  .banner{
    height: auto;
    padding-bottom: 80px;
  }
  .banner__title{
    font-size: 30px;
  }
.banner__image img{
  max-width: 100%;
}
  #product-banner {
      min-height: 100vh;
      height: auto;
      overflow: hidden;

  }

  .banner__image.banner__image--absolute {
      width: 100%;
      margin-top: -76%;
      height: 620px;
  }
  .banner__image.banner__image--absolute svg {
    position: absolute;
    right: -160px;
    top: -197px;
    width: 1000px;
    height: auto;
  }
  .banner__title--small{
    font-size: 24px;
  }
  .banner__content{
    font-size: 14px;
  }
  .banner__scrolldown-link{
    display: none;
  }
}
.hoverslider__wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hoverslider__slide {
  position: relative;
  margin: 0 0.5em;
}

.breadcrumb {
  font-size: 14px;
  color: #666666;
}
.breadcrumb--offset{
      top: 80px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
}
.breadcrumb--case-study{
  color:#fff;
}
.breadcrumb__link:not(.breadcrumb__link--disabled):after {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  transform: rotate(45deg);
  border-top: 1px solid;
  border-right: 1px solid;
  vertical-align: middle;
  margin: 0 12px;
}
.breadcrumb__link--disabled{
  pointer-events: none;
}
@media(max-width: 767px){
  .breadcrumb--offset{
   top:60px;
  }
}
/*
CSS for Search
*/

.search{
  
}
.search__input-group{
  position:relative;
  width: 100%;
  max-width: 440px;

}
.search__input-group:before{
  content: url('https://dlk7g2xemcwe7.cloudfront.net/img/search.svg');
  position: absolute;
  left:20px;
  top:10px;

}
.search__cancel{
  opacity: 0;
  pointer-events: none;
  transition:all 0.2s ease-out;
  right:20px;
  top:8px;
  position: absolute;
}
.search__cancel:before{
  content: url('https://dlk7g2xemcwe7.cloudfront.net/img/close.svg');
}
.search__input:valid ~ .search__cancel{
  pointer-events: all;
  opacity:1;
  cursor: pointer;
}
.search__input{
  width: 100%;
  border:1px solid #666666;
  color:#666666;
  border-radius:50px;
  height:39px;
  line-height: 39px;
  padding-left: 39px;
  font-size: 14px;
  font-family: 'Open Sans';
}
@media(min-width:769px){
  
}
/*
.search, .article__search--categories{
    display: flex;
    position:relative;
    padding:15px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.article__search--area{
    border-radius: 30px;
    padding:10px 50px;
    border: 1px solid #666;
    width: 440px;
    font-size: 14px;
}
.search:after{
    content:url('/img/search.png');
    height:auto;
    width:auto;
    position:absolute;
    top:24px;
    left:20px;
}
.article__search--categories{
    margin:20px 0;
}
.article__search--categories a{
    padding:6px 20px;
    border: 1px solid;
    border-radius: 20px;
    margin:5px;
    font-size: 14px;
    border:1px solid #00A19C;
    color:#00A19C;
}
.article__search--categories .active{
    margin-left:0;
    background:#00A19C;
    
    color:#fff;
    
}
.article__search--count{
    font-size:16px;
    font-weight: 300;
    color:#666666;
    font-family: 'Open Sans', sans-serif;
}
*/
/* CSS for Pagination */

.pagination{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pagination__link{
    
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color:#00A19C;
    text-align:center;
    height:36px;
    border:1px solid #00a19c;
    width:36px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.pagination__link--current{
    background:#FF595A;
    color:#fff;
    border-color: #FF595A;
}
.pagination__link--prev{
    background:#00A19C;
}
.pagination__link--next{
    background:#00A19C;
    transform: rotate(180deg);
}

.pagination__gap{
    margin-right: 20px;
}

.pagination__gap img{
    display: block;
}
@media(max-width: 767px){
    .pagination__gap,.pagination__link{
        margin-right: 10px;
    }
    .pagination__link{
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}
.author {
  border: 1px solid #B2E3E1;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  font-size: 12px;
  justify-content: space-between;
}

.author__details {
  align-items: center;
  display: flex;
}

.author__img {
  margin-right: 10px;
}

.author__social-links-title {}

.author__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.author__position {
  display: inline;
  font-size: 10px;
  margin-left: 4px;
}

.author__designation {
  display: inline-block;
  line-height: 1;
}

.author__role {
  display: inline-block;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid #1A1818;
  line-height: 1;
}

.author__social-links {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 7px;
}

.author__social-links a {
  margin-left: 22px;
}

.author__social-links a:first-child {
  margin: 0;
}

@media(max-width: 767px){
  .author {
    padding: 30px;
    display: block;
}

.author__social-content {
    margin-top: 18px;
}

.author__social-links {
    justify-content: flex-start;
}
}
.badge {
  margin: 20px 0 40px;
}

.badge__button {
  border: 1px solid;
  line-height: 31px;
  padding: 0 20px;
  border-radius: 50px;
  margin-bottom: 10px;
  background: no-repeat;
  font-family: 'Open Sans';
  font-size: 14px;
  color: #DDDDDD;
  position: relative;
}

.badge__button--active {
  color: #00a19c;
}

.badge__button--current {
  color: #ffffff;
  background: #00a19c;
  border-color: #00a19c;
}

.badge__button.badge__button--active,.badge__button.badge__button--current {
  cursor: pointer;
}

.badge__number {
  position: absolute;
  background: #000;
  line-height: 1;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #ffff;
  border-radius: 50%;
  top: -10px;
  right: 1px;
  font-size: 10px;
  font-weight: bold;
}
.tabs__linksrow {
    display: flex;
    margin-top: 50px;
}
.tabs__link {
    /* flex-grow: 1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    background:transparent;
    border:none;
    padding-bottom:10px;
    cursor:pointer;
    position: relative;
    font-family:'Open Sans';
    min-width: 25%;
}
.tabs__contents{
  position: relative;
  display: flex;
  padding-top:25px;
}

.tabs__contents > svg{
  position: absolute;
  left:440px;
  top: -120px;
  z-index: -1;
}
.tabs__content{
  min-width: 100%;
}
.tabs__content:not(.active){
  opacity: 0;
  display: none;
}
.tabs__content.active .tabs__text{
  animation: opacity 1s ease forwards;
}
.tabs__text p{
  margin-top: 10px;
  margin-bottom: 40px;
}
@keyframes opacity{
  0%{
    opacity:0;
  }
  100%{
    opacity: 1;
  }
}
.tabs__link img:nth-child(2) {
    position: absolute;
    opacity: 0;
    transform: translateX(-50%);
    left:50%;
    top: 0;
}

.tabs__link.active img {
    opacity: 0;
}

.tabs__link.active img:nth-child(2) {
    opacity: 1;
}
.tabs__content{
  display: flex;
  align-items: f;
}
.tabs__text{
  min-width: 400px;
  padding-top: 50px;
  margin-left:80px;
}
.tabs__image {
  margin-left: -80px;
}
.tabs__linksrow {
    border-bottom: 2px solid #ddd;
}

.tabs__link:after {
    position: absolute;
    content: "";
    height: 5px;
    width: 90%;
    left: 5%;
    background: transparent;
    bottom: -1px;
    transform: translateY(50%);
}
.tabs__link.active{
  font-weight: 600;
}
.tabs__link.active:after {
    background: #ff595a;
}
.tabs__link *{
  transition:all 0.2s ease-out;
}
.tabs__link .fill-pink{
  fill:#aaaaaa;
}
.tabs__link .fill-lightpink{
  fill:#e4e4e4;
}
.tabs__link .stroke-lightpink{
  stroke:#e4e4e4;
}
.tabs__link .fill-dark{
  fill:#666666;
}
.tabs__link.active .fill-pink{
  fill:#ff595a;
}
.tabs__link.active .fill-dark{
  fill:#1a1818;
}
.tabs__link.active .fill-lightpink{
  fill:#ffdde2;
}
.tabs__link.active .stroke-lightpink{
  stroke:#ffdde2;
}
.tabs__image{
  position: relative;;
}
.tabs__image img:first-child {
/*animation-name: fadeout;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-direction: alternate;*/
}
.tabs__image img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    animation-name: fade;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 4s;
}
.tabs__image img{
  
}
@keyframes fade{

 0% {
    opacity: 0;
  }
 10%{
     opacity:1;
 }
  50%{
    opacity: 1
  }
  60%{
      opacity:0;
  }
  100% {
    opacity: 0;
  }
}
/*@keyframes fadeout{
 0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}*/
/*@keyframes fadein{
  0%{
    opacity: 0;
  }
  30%{
    opacity: 0;
  }
  70%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}*/
@media(max-width: 767px){
  .tabs__linksrow{
    overflow: auto;
    border:none;
    white-space: nowrap;
  }
  .tabs__content.active .tabs__text{
    margin:0;
    padding: 0;
    min-width: 0px;
  }
  .tabs__content{
    display: block;
  }

  .tabs__image img{
    width:120%;
  }
  .tabs__linksrow button{
    min-width: auto;
    justify-content: flex-end;
    margin-right: 10px;
  }
  .tabs__link:after{
    bottom: 1px;
    transform: none;
  }
  .tabs__link:before{
    bottom: 2px;
    height: 2px;
    background: #eee;
    content: '';
    width: 100%;
    position: absolute;
    left:0;

  }
}
.blockqoute{
  max-width: 873px;
  margin:auto;
  display: flex;
  align-items: center;
}
.blockqoute__right{
  border-left:2px solid #F9BF3B;
   padding-left: 20px;
}
.blockqoute__left {
    margin-right: 20px;
    text-align: center;
    min-width: 107px;
}

.blockqoute__name {
    font-weight: bold;
}

.blockqoute__position {
    font-size: 13px;
    font-weight: 600;
}

.blockqoute__heading {
    margin: 0;
    font-size: 20px;
    margin-bottom: 10px;
}

.blockqoute__content {
    font-style: italic;
}
@media(max-width: 767px){
  .blockqoute {
    display: block;
}
.blockqoute__left{
  margin-right: 0;
  text-align: left;
  display: table;
  width: 100%;
}
.blockqoute__image{
  float: left;
  margin-right: 10px;
}
.blockqoute__name{
  margin-top: 8px;
}
.blockqoute__right {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid #f9bf3b;
    margin: 10px 0;
    padding-top: 15px;
}

}
.comments__title {
    font-size: 14px;
    font-family: 'Open Sans';
    margin-top: 0;
    margin-bottom: 20px;
}

.comment__textarea {
    width: 100%;
    border: 1px solid #CCECEB;
    padding: 30px;
    font-family: 'Open Sans';
    
    font-style: italic;
}

.comments__submit {
    text-align: right;
}

.comments__response {
    display: flex;
    padding-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #cceceb;
}

.comments__response-img {
    min-width: 30px;
    margin-right: 10px;
}

.comments__response-text {
    font-size: 14px;
}

.comments__response-title {
    font-weight: bold;
    margin-bottom: 15px;
}

span.comments__response-time {
    font-weight: 300;
    font-size: 12px;
    margin-left: 10px;
    font-style: italic;
}

.comments__response:first-of-type {
    border: none;
}

.hovertab__links{
	display: flex;
	justify-content: center;
	align-items: center;
}
.hovertab__links a{
	transform: scale(0.66);
	padding:10px;
	transition: all 0.2s ease-out;
}
.hovertab__links a.active{
	transform: scale(1);
}
.hovertab__content{
	display: none;
}
.hovertab__content.active{
	display: block;
	animation: fadeTab 0.8s forwards;
}
@keyframes fadeTab{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
@media(max-width: 767px){
	.hovertab__links a{
		padding: 8px;
	}
}
@media(max-width: 359px) {
	.hovertab__links a {
		padding: 2px;
	}
}
/* ==============
     1. Home Banner
	 2. GIS Solutions
	 3. Case Studies
 ===============*/

/*==== 1. Home Banner ===*/

.homebanner {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}
.homebanner__indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
/*    z-index: 99;*/
    transform: scale(0.1) translate(430%, 400%);
}
.homebanner__indicator-dot {
    width:40px;
    height:40px;
    background:black;
    position: absolute;
    left: 0;
    top: 0;
    border-radius:50%;
    z-index:99;
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.homebanner__moving-panel {
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.homebanner__images-panel,
.homebanner__text-panel,
.homebanner__moving-panel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    transform-style: preserve-3d;
}

.homebanner__images-panel {
    transform: perspective(2000px) rotateY(0deg) scale(1);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

    .homebanner__images-panel.homebanner__left-prespective {
        transform: perspective(2000px) rotateY(18deg) scale(1.05);
    }

    .homebanner__images-panel.homebanner__right-prespective {
        transform: perspective(2000px) rotateY(-18deg) scale(1.05);
    }

.homebanner__text-panel {
    font-size: 17px;
    pointer-events: none;
}

.homebanner__image {
    cursor: pointer;
    transform-style:preserve-3d;
}

.homebanner__image,
.homebanner__title {
    position: absolute;
}

.homebanner__title {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(350px) rotate(0.02deg);
}

.homebanner__heading {
    font-size: 50px;
    font-weight: 400;
    margin: 0;
    font-family: 'Open Sans';
}

    .homebanner__heading em {
        font-weight: 700;
    }
.homebanner__indicator-box{
    border:1rem solid rgba(0,0,0,0.2);
    transition:all 0.2s ease-out;
    z-index:99;
    position:absolute;
    width:220px;
    height:190px;
}
.homebanner__image-1,
.homebanner__title-1,
.homebanner__indicator-box--1 {
    left: 2%;
    top: 2%;
}

.homebanner__image-2,
.homebanner__title-2 {
    left: 70%;
    top: -10%;
}

.homebanner__indicator-box--2{
    left:70%;
    top:2%;
}
.homebanner__image-3 {
    padding-right: 200px;
}

.homebanner__image-3,
.homebanner__title-3{
    top: 30%;
    left: 20%;
}
.homebanner__indicator-box--3{
    top:40%;
    left:28%;
}
.homebanner__image-4,
.homebanner__title-4,
.homebanner__indicator-box--4 {
    left: 10px;
    top: 89%;
}

.homebanner__image-4 {
    height: 150px;
}

.homebanner__image-5,
.homebanner__title-5,
.homebanner__indicator-box--5{
    left: 70%;
    top: 80%;
}

.homebanner__title-1 {
    margin-left: 150px;
    width: 420px;
}

.homebanner__title-2 {
    margin-top: 144px;
    margin-left: 180px;
    width: 420px;
}

.homebanner__title-3 {
    margin-top: 90px;
    margin-left: 420px;
    width: 600px;
}

.homebanner__title-4 {
    margin-top: 15px;
    margin-left: 360px;
    width: 400px;
}

.homebanner__title-5 {
    margin-top: 178px;
    margin-left: 219px;
    width: 475px;
    transform: translateZ(500px) translateY(50px) rotate(0.02deg);
}

.homebanner__text-panel.active-1 .homebanner__title-1,
.homebanner__text-panel.active-2 .homebanner__title-2,
.homebanner__text-panel.active-3 .homebanner__title-3,
.homebanner__text-panel.active-4 .homebanner__title-4,
.homebanner__text-panel.active-5 .homebanner__title-5 {
    opacity: 1;
}

.homebanner__indicators.active-1 .homebanner__indicator-box--1,
.homebanner__indicators.active-2 .homebanner__indicator-box--2,
.homebanner__indicators.active-3 .homebanner__indicator-box--3,
.homebanner__indicators.active-4 .homebanner__indicator-box--4,
.homebanner__indicators.active-5 .homebanner__indicator-box--5 {
    background: #009F9A;
    border-color:  #009F9A;
}
.homebanner__scroll-down-link {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
}

/* 3d banner*/

.homebanner__images-panel img {
    position: absolute;
    bottom: 0;
}

.homebanner__image-3 img:first-child {
    left: 214px;
    transform: translate3d(1px,3px,5px);
}

.homebanner__image-3 img:nth-child(2) {
    bottom: 126px;
    left: 53px;
    transform: translate3d(0px, 0px, 15px);
}

.homebanner__image-3 img:nth-child(3) {
    left: 52px;
    transform: translate3d(0, 0px, 35px);
}

.homebanner__image-3 img:last-child {
    left: 0;
    transform: translate3d(0, 0px, 50px);
}

.homebanner__image-5 img:first-child {
    left: 0;
    transform: translate3d(1px,3px,5px);
}

.homebanner__image-5 img:nth-child(2) {
    left: 30px;
    transform: translate3d(0px, 0px, 15px);
    bottom: 5px;
}

.homebanner__image-5 img:nth-child(3) {
    left: 55px;
    transform: translate3d(0, 0px, 35px);
    bottom: 18px;
}

.homebanner__image-5 img:last-child {
    left: 63px;
    transform: translate3d(0, 0px, 50px);
    bottom: 32px;
}
.homebanner__image-2 img:first-child {

    transform: translate3d(30px, 40px, 50px);

}
@media(max-width:768px) {
    .homebanner {
        display: none;
    }
}
/*===== Mobile banner */

.mobilebanner {
    padding: 75px 30px 60px 30px;
    position: relative;
    min-height: 463px;
}

    .mobilebanner:not(.slick-initialized) {
        display: flex;
    }

        .mobilebanner:not(.slick-initialized) .mobilebanner__slide {
            width: 100%;
            flex: 0 0 100%;
        }

.mobilebanner__text {
    max-width: 300px;
    margin: auto;
}

.mobilebanner__slide {
    text-align: center;
}

.mobilebanner__image {
    max-width: 100%;
    /* height: auto; */
    margin: auto;
    height: 150px;
}

.mobilebanner__title {
    font-size: 26px;
    font-family: "Open Sans";
    font-weight: 400;
    max-width: 300px;
    margin: 20px auto;
}

    .mobilebanner__title em {
        font-weight: bold;
    }

@media(min-width:769px) {
    #mobilebanner-container {
        display: none;
    }
}

#mobilebanner-container {
    position: relative;
}

.mobilebanner-slidenumbers {
    position: absolute;
    top: 250px;
    left: 50%;
    font-size: 12px;
    color: #1A1818;
    font-weight: 300;
    letter-spacing: 2px;
    transform: translate(-50%,-50%);
}

.mobilebanner__content {
    margin-top: 40px;
}

.mobilebanner .slick-arrow {
    top: auto;
    bottom: 10px;
    left: 50%;
    right: auto;
    background: #00a19c;
    transform: translateX(5px);
    border: 1px solid #00a19c;
}

    .mobilebanner .slick-arrow.slick-prev {
        left: auto;
        right: 50%;
        transform: translateX(-5px);
    }

    .mobilebanner .slick-arrow.slick-disabled {
        background: transparent;
        border-color: #00a19c;
    }

        .mobilebanner .slick-arrow.slick-disabled:before {
            border-color: #00a19c;
        }

    .mobilebanner .slick-arrow:before {
        border-color: #fff;
    }
/*==== 2. Home Logo Carousel ===*/
.home-logo-carousel {
    white-space: nowrap;
    overflow: auto;
    display: flex;
    margin-top: 160px;
    padding: 0 0 150px 0;
    justify-content: space-between;
}

@media(max-width:769px) {
    .home-logo-carousel {
        padding: 50px 0;
        margin-top: 0;
    }

    .home-logo-carousel__img {
        margin: 0 1rem 0 0;
    }
}

/*===== 2. GIS Solutions =====*/
@media(min-width:768px) {
    .gissolution {
        display: flex;
        align-items: center;
        position: relative;
    }

    .gissolutions__left-content {
        flex: 0 0 413px;
        position: relative;
    }

    .gissolutions__mobile-nav {
        display: none;
    }
}

.gissolutions__right-bottom-content {
    position: relative;
    left: 126px;
    display: flex;
    width: 540px;
}

.gissolutions__right-content {
    height: 565px;
}

.gissolutions__right-bottom {
    display: flex;
    align-items: flex-start;
    margin-left: 10px;
}

.gissolutions__emblems {
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .gissolutions__emblems img {
        margin-bottom: 5px;
        height: 36px;
    }

.gissolutions__right-bottom img {
    margin-left: 10px;
}

.gissolutions__testimonial {
    font-style: italic;
    font-size: 12px;
    font-weight: bold;
    padding-left: 20px;
    position: relative;
    min-width: 284px;
}

.gissolutions__testimonialname {
    font-weight: 400;
    font-size: 10px;
    font-style: normal;
    margin-top: 6px;
}

.gissolutions__testimonial:before {
    content: url(https://dlk7g2xemcwe7.cloudfront.net/img/qoute.svg);
    color: #ff595a;
    position: absolute;
    left: 4px;
    top: 0px;
}

.gissolutions__mobile-nav {
    white-space: nowrap;
    overflow: auto;
    margin-bottom: 10px;
    /* overflow: hidden; */
}

    .gissolutions__mobile-nav a {
        display: inline-block;
        padding: 5px;
        margin-right: 10px;
        border-bottom: 3px solid transparent;
    }

        .gissolutions__mobile-nav a.active {
            border-bottom-color: #FF595A;
            font-weight: bold;
        }

.gissolutions__bar {
    position: absolute;
    left: -30px;
    top: 0;
    width: 2px;
    background: #DDDDDD;
    height: 100%;
}

.gissolutions__title {
    font-size: 18px;
    font-family: 'Open Sans';
    font-weight: 400;
    margin: 0;
    padding: 30px 0 12px;
    line-height: 20px;
}

.gissolutions__content {
    font-size: 14px;
    color: #666666;
    margin-top: 0px;
    margin-bottom: 10px;
    cursor: default;
}

.gissolutions__block {
    height: 80px;
    overflow: hidden;
}

.gissolutions__content {
    display: none;
}

.gissolutions__link {
    font-size: 14px;
    font-weight: bold;
    color: #FF595A;
    text-decoration: underline;
    margin-right: 1rem;
}

.gissolutions__links {
    padding-bottom: 25px;
    display: none;
}

.gissolutions__block--active {
    height: 194px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .gissolutions__block--active .gissolutions__title {
        font-weight: 700;
    }

    .gissolutions__block--active .gissolutions__content {
        display: block;
    }

    .gissolutions__block--active .gissolutions__links {
        display: block;
    }

.gissolutions__img {
    width: 893px;
    margin-left: -67px;
    position: relative;
}

.gissolutions__active-bar {
    height: 176px;
    background: #1A1818;
    width: 4px;
    transition: all 0.3s ease-out;
    transform: translate(-1px,0px);
}

.gissolutions__parallex {
    bottom: 0;
    right: -38px;
    width: 500px;
    transform-style: preserve-3d;
    z-index: -1;
    position: relative;
}

    .gissolutions__parallex svg {
        position: absolute;
        left: -250px;
        top: -171px;
        transform-style: preserve-3d;
        perspective: 500px;
    }


        .gissolutions__parallex svg g {
            transform-origin: center;
            -ms-transform-origin: center;
        }

@media(max-width:767px) {
    #gissolutions {
        margin-top: 50px;
    }

    .gissolutions__parallex svg {
        width: 900px;
        height: auto;
    }

    .gissolutions__img {
        width: 136vw;
        height: auto;
        margin-left: -30vw;
        margin-bottom: 10px;
    }

    .gissolutions__title {
        display: none;
    }

    .gissolutions__block {
        display: none;
        height: auto;
    }

    .gissolutions__block--active {
        display: block;
        height: auto;
        margin-bottom: 20px;
    }

    .gissolutions__right-bottom-content {
        left: 0;
        flex-wrap: wrap;
        width: 100%;
    }

    .gissolutions__parallex {
        right: 0;
        width: 100%;
    }

    .gissolutions__testimonial {
        margin-bottom: 1rem;
        min-width: 0;
    }

    .gissolutions__mobile-nav a {
        margin-right: 5px;
    }

    .gissolutions__right-content {
        height: auto;
    }
}

/*========= home case studies section ===*/
@media(min-width:768px) {
    .homecasestudies__block:nth-child(even) {
        text-align: right;
    }

    .homecasestudies {
        position: relative;
        padding-top: 50px;
        height: 626px;
    }

    .homecasestudies__block {
        height: 250px;
        padding: 50px 0;
        position: absolute;
        cursor: default;
    }

        .homecasestudies__block:first-child {
            left: 0;
            top: 50px;
        }

        .homecasestudies__block:nth-child(2) {
            right: 0;
            top: 50px;
        }

        .homecasestudies__block:nth-child(3) {
            left: 0;
            top: 300px;
        }

        .homecasestudies__block:last-child {
            right: 0;
            top: 300px;
        }

    .homecasestudies__links {
        opacity: 0;
        transition: all 0.3s ease-out;
    }

    .homecasestudies__block:hover .homecasestudies__links,
    .homecasestudies__block.active .homecasestudies__links {
        opacity: 1;
    }

    .homecasestudies__image {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

.homecasestudies__map--image {
    opacity: 0;
    transition: all 0.5s ease-out;
}

    .homecasestudies__map--image.active {
        opacity: 1;
    }

#homecasestudies {
    padding-top: 200px;
}


.homecasestudies__block {
    width: 314px;
}

.homecasestudies__title {
    font-size: 20px;
    font-weight: bold;
}

.homecasestudies__content {
    margin: 10px 0;
}


.homecasestudies__links a {
    color: #FF595A;
    text-decoration: underline;
}

.homecasestudies__path {
    transform-origin: center;
    transform: scale(1);
    transition: all 0.2s ease-out;
}

/*@supports (mix-blend-mode:multiply) {
    .homecasestudies__path path {
        opacity: 1;
        mix-blend-mode: multiply;
    }
}*/

@media(max-width:767px) {
    #homecasestudies {
        padding-top: 80px;
    }

        #homecasestudies h2 {
            margin-bottom: 0;
        }

    .homecasestudies__block {
        text-align: center;
    }

    .homecasestudies__image svg {
        width: 100%;
        height: auto;
    }

    .homecasestudies .slick-arrow {
        top: auto;
        bottom: 10px;
        left: 50%;
        right: auto;
        background: #00a19c;
        transform: translateX(5px);
        border: 1px solid #00a19c;
    }

        .homecasestudies .slick-arrow.slick-prev {
            left: auto;
            right: 50%;
            transform: translateX(-5px);
        }

        .homecasestudies .slick-arrow.slick-disabled {
            background: transparent;
            border-color: #00a19c;
        }

            .homecasestudies .slick-arrow.slick-disabled:before {
                border-color: #00a19c;
            }

        .homecasestudies .slick-arrow:before {
            border-color: #fff;
        }

    .homecasestudies__slider {
        padding-bottom: 80px;
        margin-top: -15px;
    }
}
/*=== Become a consultant */

.becomeaconsultant__subtitle {
    font-size: 14px;
    max-width: 518px;
    margin: 0px auto 77px;
    text-align: center;
}

.becomeaconsultant .media {
    margin-bottom: 55px;
}

.becomeaconsultant__cta {
    text-align: center;
}

@media(max-width:767px) {
    #becomeaconsultant {
        margin-top: 100px;
    }

    .becomeaconsultant .media {
        margin-bottom: 20px;
    }

    .becomeaconsultant .media__image img {
        width: 66px;
        height: auto;
    }
}

/*== Our consultants logo */
.consultantpartners__logos {
    max-width: 420px;
    margin: auto;
    text-align: center;
}

.consultantpartners__subheading {
    max-width: 484px;
    margin-bottom: 36px;
}

.consultantpartners__logos img {
    display: inline-block;
    vertical-align: middle;
    margin: 20px;
}

.consultantpartners {
    position: relative;
    padding: 200px 0;
}

.consultantpartners__leftbubble {
    position: absolute;
    left: -600px;
    top: -23%;
    z-index: -1;
}

.consultantpartners__rightbubble {
    position: absolute;
    right: -1000px;
    top: -63%;
    z-index: -1;
}

@media(max-width:767px) {
    .consultantpartners__leftbubble {
        transform: scale(0.3);
        top: -73%;
    }

    .consultantpartners__rightbubble {
        width: 300px;
        right: -180px;
        top: -18%;
        left: auto;
    }

        .consultantpartners__rightbubble svg {
            width: 100%;
        }
}
/*======= Experience the Difference ==== */
.experiencethedifference__content {
    font-size: 14px;
    margin-top: 5px;
}

.experiencethedifference__title {
    margin: 0;
    font-family: 'Open Sans';
    font-size: 16px;
    position: relative;
}

.experiencethedifference__block {
    margin-bottom: 50px;
}

.experiencethedifference__title:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #FF595A;
    left: -10px;
}

@media(max-width:767px) {
    .experiencethedifference__block {
        padding-left: 10px;
        margin-bottom: 25px;
    }

    .experiencethedifference .title,
    .experiencethedifference .subtitle {
        text-align: left;
    }
}
/*========== What they Say ======*/

#whattheysay {
    background-image: url(https://dlk7g2xemcwe7.cloudfront.net/img/wave-bg.svg);
    color: #ffffff;
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 500px 0 280px;
}

@media(min-width:1500px) {
    #whattheysay {
        background-size: cover;
    }
}

#whattheysay:after {
    content: "";
    width: 100%;
    height: 80%;
    top: 40%;
    background: #00a19c;
    position: absolute;
    left: 0;
    z-index: -1;
    display: block;
}

#whattheysay .testimonial__dots {
    display: flex;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

    #whattheysay .testimonial__dots button:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        bottom: -3px;
        background: #ffffff;
        opacity: 0.3;
    }

    #whattheysay .testimonial__dots button {
        min-width: 25%;
        position: relative;
        padding: 15px;
        background: transparent;
        border: none;
        font-family: 'Open Sans';
        color: #ffffff;
        border-bottom: 5px solid transparent;
        cursor: pointer;
        font-size: 16px;
    }

        #whattheysay .testimonial__dots button.active {
            border-bottom: 5px solid #ffffff;
            font-weight: bold;
        }

@media(max-width:767px) {
    #whattheysay {
        /*background-position: 67%;
    padding: 250px 0;*/
    }

        #whattheysay .testimonial__dots {
            margin-bottom: 10px;
        }

        #whattheysay .title,
        #whattheysay .subtitle {
            text-align: left;
        }

        #whattheysay .testimonials {
            text-align: left;
        }

        #whattheysay .testimonials__content {
            padding: 0;
        }

        #whattheysay .testimonial__dots button {
            min-width: auto;
            white-space: nowrap;
            font-size: 14px;
        }

        #whattheysay .slick-arrow {
            bottom: 0;
            left: 40px;
            top: 103%;
        }

            #whattheysay .slick-arrow.slick-next {
                margin-right: -4px
            }

            #whattheysay .slick-arrow.slick-prev {
                margin-left: -40px;
            }
}
/*===== FAQs Section =====*/
/*#faqs:before {
  background-image: url(https://dlk7g2xemcwe7.cloudfront.net/img/wave-bg-dark.svg);
  content: "";
  position: absolute;
  width: 100%;
  height: 623px;
  top: -622px;
  background-size: 150%;
  background-position: center top;
  background-color: #00A19C;
  background-repeat: no-repeat;
}
*/
#faqs.faqs--grey:before {
    background-color: #EFF1F3;
}

#faqs {
    background-image: url(https://dlk7g2xemcwe7.cloudfront.net/img/wave-bg-dark.svg);
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    padding-bottom: 100px;
    padding-top: 600px;
    margin-top: -600px;
    color: #fff;
}

@media(min-width:1500px) {
    #faqs {
        background-size: 150%;
        padding-top: 760px;
    }
}

#faqs:after {
    content: "";
    width: 100%;
    height: 40%;
    top: 60%;
    background: #006660;
    position: absolute;
    left: 0;
    z-index: -1;
}

@media(max-width:767px) {
    #faqs {
        padding-bottom: 50px;
    }

        #faqs:before {
            height: 388px;
            top: -387px;
            background-size: 1500px;
            background-position:
        }
}

/*==== Schedule a demo ====*/
#scheduleademo {
    background: #1A1818;
    padding: 105px 0;
    color: #fff;
}

.scheduleademo .contactus__message,
.partnerform__form .contactus__message {
    position: static;
    color: #eee;
    font-size: 13px;
    max-width: 100%;
    color: #ffffff;
}

.scheduleademo__title {
    margin: 0;
    font-family: 'Open Sans';
    font-size: 36px;
}

.schedduleademo__subtitle {
    max-width: 340px;
    margin: 10px 0 30px;
    color: #DDDDDD;
}

.scheduleademo__form {
    display: flex;
    align-items: center;
}

.scheduleademo__input_group {
    position: relative;
}

    .scheduleademo__input_group label {
        position: absolute;
        top: 0;
        font-size: 10px;
        transform: translate(20px, -110%);
        color: #dadada;
        opacity: 1;
        transition: all 0.2s ease-out;
        left: 0;
    }

    .scheduleademo__input_group .input:placeholder-shown ~ label {
        opacity: 0;
    }

    .scheduleademo__input_group .input:-ms-input-placeholder ~ label {
        opacity: 0;
    }

.scheduleademo__input_group {
    margin-right: 20px;
    width: 204px;
    position: relative;
}

    .scheduleademo__input_group .input {
        color: #ffffff;
    }

        .scheduleademo__input_group .input:focus ~ label {
            opacity: 1;
        }

    .scheduleademo__input_group ::-webkit-input-placeholder { /* Edge */
        color: #DDDDDD;
    }

    .scheduleademo__input_group :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #DDDDDD;
    }

    .scheduleademo__input_group ::placeholder {
        color: #DDDDDD;
    }

    .scheduleademo__input_group:focus-within ::-webkit-input-placeholder,
    .scheduleademo__input_group:focus-within ::placeholder {
        color: transparent;
    }

@media(max-width:767px) {
    #scheduleademo {
        padding: 50px 0;
    }

    .scheduleademo__title {
        font-size: 24px;
    }

    .scheduleademo__form {
        flex-wrap: wrap;
    }

    .scheduleademo__input_group {
        margin-bottom: 20px;
        width: 100%;
    }
}


#esrideployment-banner .banner__image{
  margin-left: -120px;
}
.fielddatacollection{
  padding-bottom: 50px;
  margin-top: 250px;
  position: relative;
}
.fielddatacollection__subtitle{
  max-width: 693px;
  margin-bottom: 70px;
}
.fielddatacollection__logos-row {
  justify-content: center;
  display: flex;
  align-items: center;
}

.fielddatacollection__logos-row img {
  margin: 0 32px;
}
.fielddatacollection__content{
  max-width: 553px;
  margin: auto;
  min-height:190px;
  text-align: center;
  margin-top: 25px;
}

.fielddatacollection__leftbubble {
  position: absolute;
  left: -600px;
  top: -18%;
  z-index: -1;
}
.fielddatacollection__rightbubble {
  position: absolute;
  right: -1000px;
  top: -97%;
  z-index: -1;
}
@media(max-width:767px){
  .fielddatacollection__leftbubble{
    transform:scale(0.3);
    top:-40%;
  }
  .fielddatacollection__rightbubble{
    width: 300px;
    right: -180px;
    top: -50%;
    left: auto;
  }
  .fielddatacollection__rightbubble svg{
    width:100%;
  }
 
}

.arcgisenterprise{
  margin-top: 262px;
}
.arcgisenterprise__content {
  max-width: 786px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: end;
}

.arcgisenterprise__content .media__content {
  width: 290px;
  margin-right: 0;
}

.arcgisenterprise__content .media__image {
  width: 84px;
  text-align: right;
}

.arcgisenterprise__content .media {
  margin-bottom: 74px;
}

.arcgisenterprise__content .media__text {
  width: 265px;
  font-weight: 600;
}

.arcgisenterprise__content .media:nth-child(even) {
  margin-left: auto;
}
#whattheysay.whattheysay__grey--esri {
    padding-bottom: 120px !important;
}
#whattheysay.whattheysay__grey--esri:after{
    top:50% !important;
} 
@media(max-width: 767px) {
    #esrideployment-banner .banner__image {
      margin-left: 0;
      margin-top: -100px;
  }

  #esrideployment-banner .banner__text {
      margin-top: -140px;
  }
  .fielddatacollection {
    margin-top: 50px;
}

.arcgisenterprise {
    margin-top: 50px;
}

.arcgisenterprise__content .media {
    margin-bottom: 30px;
}

.arcgisenterprise__content .media__text {
    width: auto;
}

.arcgisenterprise__content .media__content {
    width: auto;
}

.arcgisenterprise__content {
    padding: 0;
}

.arcgisenterprise {
    margin-bottom: 50px;
}
}
#urbandeployment-banner{
 
}

.howtodeploy {
  margin-top: 200px;
}
.howtodeploy__block {
  display: flex;
}

.howtodeploy__left {
  width: 510px;
  margin-right: auto;
}
#urban-deployment-casestudies .title{
margin-bottom: 54px;
}

#faqs.urban-deployement-faq:before{

  background-color:#EFF1F3;
}
#urban-deployment-casestudies{
  position: relative;
}

@media(max-width: 767px){
	section.howtodeploy {
    margin-top: 80px;
}

.howtodeploy__block {
    flex-wrap: wrap;
}

.howtodeploy__left {
    width: auto;
    margin-bottom: 50px;
}

.howtodeploy .media__blob-image {
    flex: 0 0 80px;
    max-width: 80px;
}

.howtodeploy .media__blob-image span {
    font-size: 40px;
}

/*#urban-deployment-casestudies .media__casestudy.media__casestudy--large {
    padding-top: 0;
}*/

#urban-deployment-casestudies .media__casestudy-text {
    max-width: initial;
}

#urban-deployment-casestudies .media__casestudy--large .media__casestudy-text{
  margin-top: 15px;
}
#urban-deployment-casestudies .media__casestudy .media__casestudy-image {
    transform: scale(1);
    width: auto;
}
#urban-deployment-casestudies{
  padding-top: 60px;
}
}
#bg__geozone{
  background: url(https://dlk7g2xemcwe7.cloudfront.net/img/geozone-bg.jpg);
}
#bg__geocomment{
  background: url(https://dlk7g2xemcwe7.cloudfront.net/img/geocomment-bg.jpg);
}
#bg__geolocator{
  background: url(https://dlk7g2xemcwe7.cloudfront.net/img/geolocator-bg.jpg);
}
#bg__geozone,
#bg__geocomment,
#bg__geolocator{
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

#products-casestudies{
  position: relative;
  margin-bottom: 80px;
}
.product{
  position: relative;
  min-height: 716px;
  display: flex;
  align-items: center;
  margin-bottom: 90px;
}
.product__image{
  position: absolute;
  top:50%;
  transform: translate(-400px,-50% );
  left:0;
}
.product__content{
  max-width: 490px;
  position: relative;
  z-index: 1;
}
.product--right .product__image{
  left: auto;
  right:0;
  transform: translate(350px,-50% );
}
.product--right .product__content{
  margin-left:auto;
  max-width: 434px;
}
.product__cta{
  margin-top: 5px;
}

#products__consultant{
  margin-top: 180px;
  margin-bottom: 188px;
}

/*Geozone */
#geozon_tabs {
    margin-top: 180px;
    min-height: 860px;
}
#product-banner{
  min-height: 768px;
}
.additionalfeatures{
  margin-bottom: 20px;
}
.additionalfeatures .container{
  max-width: 1240px;
}
.additionalfeatures .title{
  max-width: 500px;
  margin:auto;
}
.additionalfeatures .subtitle{
  max-width: 760px;
  margin:20px auto 70px;
}
.additionalfeatures__content {
  font-size: 14px;
  margin-top: 5px;
}

.additionalfeatures__title {
  margin: 0;
  font-family: 'Open Sans';
  font-size: 16px;
  position: relative;
}

.additionalfeatures__block {
  margin-bottom: 50px;
}

.additionalfeatures__title:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #F9BF3B;
  left: -10px;
}

#whattheysay.whattheysay__grey{
  background-image: url(https://dlk7g2xemcwe7.cloudfront.net/img/testimonial-bg-grey.svg);
  color:#1A1818;
  padding: 400px 0;
}
#whattheysay.whattheysay__grey:after{
  background-color: #eff1f3;
}
#whattheysay.whattheysay__grey .title{
  margin-bottom: 54px;
}
@media(max-width:767px){
  .additionalfeatures__block{
    padding-left:10px;
    margin-bottom: 25px;
  }
  .additionalfeatures .title,
  .additionalfeatures .subtitle{
    text-align:left;
  }
  #additionalfeatures {
    margin-top: 80px;
}

#geozon_tabs {
    margin-top: 80px;
    min-height:0;
}
#whattheysay.whattheysay__grey{
  /*background-size: cover;
  padding:300px 0;*/
}
#products__consultant {
    margin-bottom: 50px;
}
#products__consultant .media__product {
  margin-bottom: 30px;
}
#bg__geozone, #bg__geocomment, #bg__geolocator{
  margin-bottom: 160px;
}
#products-casestudies{
  margin-top: 80px;
}
#products-casestudies .media__casestudy--large .media__casestudy-text{
  margin-top: -30px;
}
}
.casestudies__pagetitle {
    margin-top: 50px;
}


.casestudies {
    position: relative;
    margin-bottom: 80px;

}

.media__casestudy-text {
    max-width: 330px;
}

.casestudies__left-block {
    position: absolute;
    left: 0;
    top: 0;
}

.casestudies__links {
    min-width: 220px;
    width: 220px;

    position: relative;

}

.casestudies__content {
    width: 100%;
    padding-top: 54px;
    padding-left: 250px;
}

.casestudies__link {
    display: block;
    line-height: 54px;
    padding-left: 20px;
}

.casestudies__linksindicator {
    position: absolute;
    border-left: 2px solid #ddd;
    top: 0;
    left: 0;
    display: block;
    height: 100%;

}

.casestudies__indicator-border {
    height: 54px;
    width: 5px;
    background: #ff595a;
    transform: translate(-65%, 0);
    transition: transform 0.2s ease-out;
}


.header__image {
    top: 0;
    position: fixed;
    z-index: -1;
    transform-origin: center;
    width: 1000px;
    left: 50%;
    transform: translateX(-50%);
    height: 460px;
    backface-visibility: hidden;


}


.header__image.zoomin {
    z-index: 1001;
}

.header__image.absolute {
    z-index: -1;
    position: absolute;
}

.header__image img {
    position: absolute;
    bottom: 0;
    opacity: 0;
    width: 100%;
    will-change: inherit;
    left: 50%;
    height:auto;
    transform: translate3d(-52%, 50%, 0) scale(0.5, 0.5);
    transition: all 1s ease-out;
}

.header__image.zoomin .header-shape {
    animation: zoomin 1s forwards ease-out;
}

@keyframes zoomin {
    0% {
        transform: translate3d(-52%, 50%, 0) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translate3d(-52%, -15%, 0) scale(2.86);
        opacity: 1;
    }
}



.header__image.zoomin .header-image {
   animation: zoomin2 1s forwards ease-out;
}

@keyframes zoomin2 {
    0% {
        transform: translate3d(-52%, 50%, 0) scale(0.5);
        opacity: 0;
    }

    100% {
         transform: scale(1.84, 1.84) translate3d(-30%, -27%, 0);
    opacity: 1;
    }
}


.casestudy__wrapper,
.casestudy__article {
    padding-top: 80px;
}

.container.container--small.casestudy__container {
    margin-top: 80px;
}

.casestudy__article-logos {
    margin-top: 215px;
}

h1.title.title--white {
    color: #fff;
    margin-bottom: 10px;
}

.casestudy__article-date,
.casestudy__article-time {
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
}

.breadcrumb.breadcrumb--white {
    color: #fff;
}

.casestudy__article-logos {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.casestudy__article-logos__row {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
}

.casestudy__article-logos__title {
    margin-right: 20px;
    width: 114px;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
}

.casestudy__article-logos__title:before {
    width: 2px;
    height: 100%;
    background: #AAAAAA;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
}

.casestudy__article-logos__row img {
    display: block;
    margin-right: 25px;
    width:auto;
    height:36px;

}
.casestudy__article-logos__right img {
    width: 120px;
    height:auto;
    margin-right: 0;
}

.loader {
    position: fixed;
    background-color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    transition: all 0.5s ease-out;
    height: 100%;
    z-index: 100;
}

.loader.active {
    opacity: 0;
    z-index: -1;
}


/*Content section*/
.casestudy__article-content {
    position: relative;
}

.casestudy__article-downloadlink {
    position: absolute;
    right: 0;
    color: #15a9a4;
}

.casestudy__article-downloadlink:before {
    content: url(https://dlk7g2xemcwe7.cloudfront.net/img/download-icon.svg);
    margin-right: 8px;
}

.casestudy__article-title {
    font-size: 20px;
    font-family: 'Open Sans';
    border-left: 2px solid #FF595A;
    padding-left: 15px;
}

.casestudy__article-title--small {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Open Sans';
}

.casestudy__article-block {
    margin-bottom: 50px;
}

.casestudy__article-block img {
    max-width: 100%;
}

.casestudy__article-reference-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.casestudy__article-reference-column:not(:first-child) {
    padding-left: 15px;
    border-left: 2px solid #DDDDDD;
}

.casestudy__article-reference-column {
    padding-right: 40px;
}

.casestudy__article-reference-title {
    font-size: 12px;
}

.casestudy__article-reference-content {
    font-size: 14px;
    font-weight: 600;
}

.casestudy__article-reference-subcontent {
    font-size: 12px;
    color: #666666;
}

/*related case studies section */
.relatedcasestudies__title {
    text-align: center;
    font-size: 32px;
    font-family: 'Open Sans';
    margin-top: 80px;
}

.relatedcasestudies__slider {
    display: flex;
    padding-left: 30px;
}

.relatedcasestudies__slider .media__casestudy.media__casestudy--small {
    min-width: 700px;
    margin-right: 20px;
}

.relatedcasestudies__slider .media__casestudy.media__casestudy--small:last-child {
    margin-right: 70px;
}

.relatedcasestudies {
    margin-bottom: 80px;
}


/* case studies parallex */
.media__casestudy-shapes {
    display: flex;
    width: 512px;
    height: 512px;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
}

.media__casestudy-shapes img {
    position: absolute;
}

.media__casestudy-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 512px;
}

.media__casestudy-shapes img:first-child {
    transform: scale(1.1);
    opacity: 0.75;
}

.media__casestudy-shapes img:nth-child(2) {
    transform: scale(1.23);
    opacity: 0.5;
}

@media(max-width: 767px) {
    .header__image {
        width: 400px;
        top: -100px;
    }

    .casestudy__article-logos__left {
        width: 100%;
    }

    .casestudy__article-logos__row {
        display: block;
    }

    .casestudy__article-logos__title {
        width: auto;
        margin-bottom: 20px;

    }

    .casestudy__article-logos__row img {
        display: inline-block;
        margin-right: 10px;
    }

    .casestudy__article-logos__left {
        width: 100%;
    }

    .casestudy__article-logos {
        display: block;
    }

    html {
        overflow-x: hidden;
    }

    .casestudies__links {
        width: 100%;
        overflow: auto;
    }

    .casestudies__left-block {
        width: 100%;
        left: 0 !important;
        z-index: 99;
        background: #ffffff;
        /*box-shadow: 0 0 5px rgba(0,0,0,0.1);*/

    }

    .casestudies__links {
        display: flex;
        white-space: nowrap;
    }

    .casestudies__link {
        border-bottom: 3px solid #eee;
        padding: 0 10px;
        font-size: 14px;
        line-height: 40px;
    }

    .casestudies__link.active {
        border-bottom: 3px solid #ff595a;
        background: #f9f9f9;
    }

    .casestudies__linksindicator {
        width: 100%;
        height: 2px;
        border-top: 2px solid #f9f9f9;
        position: absolute;
        display: none;
    }

    .casestudies__indicator-border {
        height: 100%;
    }

    .title.casestudies__pagetitle {
        position: absolute;
        top: -100%;
        margin-top: 0;

    }

    .casestudies__content {
        padding-left: 0;
    }


    .media__casestudy.media__casestudy--image-right {
        left: 0;
    }

    .media__casestudy {
        margin-bottom: 50px;
        display: block;
        padding-top: 60px;
    }

    .media__casestudy-shapes,
    .media__casestudy-image {
        width: 300px;
        height: 300px;
        flex: 0 0 300px;
        transform: scale(0.8);
        margin:auto;
    }

    .media__casestudy-image>img {
        transform: scale(0.8);
    }

    .casestudy__article-reference-row {
        display: block;
    }

    .casestudy__article-reference-column {
        padding: 10px 20px !important;
        border-left: 2px solid #eee !important;
    }

    .casestudies {
        margin-top: 100px;
    }
    .media__casestudy-text{
        margin: 15px auto;
        max-width: 100%;
        text-align: center;
    }
.relatedcasestudies__slider{
  overflow: auto;
}
    .relatedcasestudies__slider .media__casestudy.media__casestudy--small {
        
        min-width: 280px;

        padding-right: 50px;
    }

    .media__casestudy--small .media__casestudy-image,
    .media__casestudy--small .media__casestudy-shapes {
        min-width: 200px;
        flex: 0 0 200px;
        height: 200px;
        width: 200px;
    }
    .media__casestudy--small .media__casestudy-image{
      transform: scale(0.6);
    }
    .relatedcasestudies__title{
      padding: 0 30px;
    }
}

@media(min-width:768px){
    .contactus {
        display: table;
    }
    .contactus__content{
        float:left;
    }
    .contactus__links {
        float: left;
    }
    .contactus__form {
        float: right;
    }
}
.contactus {
    margin-top: 100px;
    width: 100%;
}
.contactus__content {
  max-width: 440px;
  padding-left: 30px;
  margin-bottom:50px;
}

.contactus__form {
  width: 320px;
  position: relative;
}

.contactus__text {
  margin-bottom: 0;
}

.contactus__title {
  font-size: 36px;
  margin: 0 0 20px 0;
  line-height: 1;

  border-left: 2px solid #FF595A;
  padding-left: 30px;
  margin-left: -30px;
}

.contactus__suptitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}
.contactus__phonegroup {
  display: flex;
}
.contactus__message {
  font-size: 14px;
  max-width: 240px;
  color: #666666;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
}
.client__title {
  font-family: 'Open Sans';
  font-size: 14px;
  margin-bottom: 30px;
}

.contactus__block-label {
    font-size: 12px;
    color: #666;
}

.contactus__block-content {
    font-size: 18px;
    font-weight: bold;
}

.contactus__block {
    margin-top: 30px;
    margin-left: 30px;
}
.contactus__block--bordered{
  padding-left: 30px;
  margin-left: 15px;
  border-left: 1px solid #999999;
}
.clients__logos {
  display: flex;
  justify-content: space-between;
  overflow: auto;
}

.clients {
  margin-top: 100px;
}
.contactus__form .input__label{
  color:#666;
}
@media(max-width: 767px){


  .contactus {
      display: block;
      margin-top: 50px;
  }

  .contactus__content {
      margin-bottom: 50px;
  }

  .contactus__title {
      font-size: 28px;
  }

  .contactus__form {
      width: 100%;
  }
  .contactus__links {
      margin-top: 90px;
  }

  .contactus__block {
      margin-left: 0;
  }
  .contactus__block--bordered{
    padding-left: 0;
    border:none;
  }
}
/*
CSS for Blogs/ Newsletter listing
*/
.articlelist {
    margin-bottom: 120px;
    margin-top: 50px;
}

.articlelist__switch input {
    opacity: 0;
    position: absolute;
}

.articlelist__switch label {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    cursor:pointer;
}

.articlelist__switch label span {
    display: inline-block;
    padding: 5px 20px;
    border: 1px solid #00a19c;
    color: #00a19c;
    font-size: 14px;
    border-radius: 50px;
}

.articlelist__switch {
    margin-top: 34px;
}

.articlelist__switch label input:checked~span {
    color: #fff;
    background: #00a19c;
}

.articlelist__count {
    color: #666;
    margin: 30px 0;
    font-weight: 300;

}

.articlelist__count:before {}

.articlelist__count:after {}

.articlelist__blog,
.articlelist__newsletter {
    display: none;
    opacity: 0;
}

.articlelist__blog.active,
.articlelist__newsletter.active {
    display: block;
    opacity: 1;
    animation: switch 0.6s forwards;
}

.articlelist__blog .pagination,
.articlelist__newsletter .pagination {
    margin-top: 60px;
}

@keyframes switch {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.articlelist__article {
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
    margin-top: 30px;

    border-top: 1px solid #CCECEB;
}

.articlelist__article:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.articlelist__image img {
    display: block;
}

.articlelist__image {
    width: 165px;
    margin-right: 30px;
}

.articlelist__date {
    font-size: 12px;
    color: #666666;
    margin-top: 0px;
}

.articlelist__title {
    font-size: 20px;
    font-family: 'Open Sans';
    margin: 10px 0 10px 0;
    max-width: 777px;
}

.articlelist__content {
    margin-top: 0;
    margin-bottom: 10px;
    color: #666666;
    max-width: 608px;
    line-height: 1.4;
}

.articlelist__readmore a {
    font-weight: bold;
    color: #00a19c;
    text-decoration: underline;
}

@media(max-width: 767px) {
    .articlelist__article {
        flex-wrap: wrap;
    }

    .articlelist__text {
        margin-top: 10px;
    }

}

/*Single blog page */
.article {
    margin-top: 120px;
    margin-bottom: 120px;
}

.article img {
    max-width: 100%;
}

h1.title.title--top-border.article__title {
    text-align: center;
}

.title.title--top-border.article__title:before {
    content: "";
    width: 48px;
    display: block;
    height: 2px;
    background: #FF595A;
    margin: 0 auto 20px auto;
    border-radius: 4px;
}

.article-meta {
    text-align: center;
    margin-bottom: 50px;
    font-size: 12px;
    color: #666;
}

.article__date {
    padding-right: 30px;
}

.article__content a {
    text-decoration: underline;
    color: #00A19C;
}

.article__content {
    font-size: 18px;
}

.article__content p {
    line-height: 1.56;
}
a.article__tag {
    font-size: 10px;
    padding: 6px 10px;
    background: #AAAAAA;
    border-radius: 50px;
    color: #fff;
    margin-right: 6px;
    margin-top: 5px;
    display: inline-block;
}

.article__tags-title {
    font-size: 12px;
    color: #666666;
}

.article__tags {
    margin: 30px 0;
}
@media(max-width: 767px){
    .article {
        margin: 50px 0;
    }


    .article__content {
        font-size: 15px;
    }
}
#esrideployment-banner {
    max-width: 1500px;
    margin: auto;
    height: 768px;
}
#esrideployment-banner .banner__absolute {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
#esrideployment-banner .banner__text {
    max-width: 553px;
}

#esrideployment-banner .banner__title{
	margin-top: 0;
	max-width: 450px;
}
.consultantspartner{
	margin-top: 160px;
}
.consultantspartner .title{
	margin-bottom: 60px;
	padding: 0 30px;
}
.consultantspartner__row {
    display: flex;
    
}
.consultantspartner__wrap{
	overflow: hidden;
}
.consultantspartner__wrap.consultantspartner__grey {
    background: #F4F4F4;
}

.consultantspartner__image {
    position: absolute;
    right: 107%;
    bottom: -4px;
}
.consultantspartner__image--right{
	right:auto;
	left:107%;
}
.consultantspartner__content {
    margin-left: auto;
       position: relative;
       padding: 120px 0;
}
.consultantspartner__content--right{
	margin-left: 0;
	margin-right: auto;
}
.consultantspartner__text {
    display: flex;
}
.consultantspartner__title{
	margin-bottom: 40px;
	margin-top: 0px;
	font-size: 28px;
}


#partnerform {
    padding: 100px 0;
    background: #1A1818;
    color: #fff;
}

.partnerform {
    display: flex;
    justify-content: space-between;
}

.partnerform__content {
    max-width: 420px;
}

.partnerform__title {
    font-size: 36px;
    white-space: nowrap;
    margin-top: 0;
    margin-bottom: 20px;
}

.partnerform__form {
    width: 378px;
}

.partnerform__form .input {
    color: #fff;
}

.partnerform__form .input::placeholder {
    color: #eee;
}

.partnerform__form .input:focus::placeholder {
    color: transparent;
}


.featuredpartners {
    display: flex;
}

.featuredpartners__block {
    flex-basis: 50%;
    padding: 0 20px;
    border-left: 2px solid #FF595A;
}

.featuredpartners__author {
    display: flex;
    align-items: center;
}

.featuredpartners__author-content {
    margin-left: 10px;
}

.featuredpartners__author-name {
    font-weight: bold;
}

.featuredpartners__author-position {
    font-weight: 600;
    font-size: 13px;
}

section#featuredpartners {
    margin: 120px 0;
}
.featuredpartners{
    margin-top:60px;
}
@media(max-width: 767px) {
    .featuredpartners{
        display:block;
    }
    #esrideployment-banner {
        height: auto;
        padding-bottom: 120px;
    }
	#esrideployment-banner .banner__absolute img {
	    width:100%;
	}

	#esrideployment-banner .banner__absolute {
	    top: -0%;
	    opacity: 1;
	}
 #esrideployment-banner.partner-banner{
    padding-top: 240px;
}
 #esrideployment-banner.partner-banner .banner__text{
    margin-top: 0;
}
	#esrideployment-banner {
	    padding-top: 50px;
	}

	.consultantspartner {
    margin-top: 50px;
}

.consultantspartner__content {
    padding: 100px 0 0;
    display: flex;
    flex-direction: column;
}


.consultantspartner__text {
    display: block;
}

.consultantspartner__text .media__product {
    margin-bottom: 27px;
}
.consultantspartner__title{
    font-size: 24px;
}
.consultantspartner__image {
    width: 100%;
    order: 2;
    margin-bottom: -5px;
    position: static;
}

.partnerform {
    flex-wrap: wrap;
}

.partnerform__title {
    white-space: normal;
    font-size: 30px;
}

.partnerform__form {
    margin-top: 30px;
}
.consultantspartner .title{
    font-size: 28px;
}
    .featuredpartners__block{
        margin-bottom:50px;
    }
}
.content {
    margin: 50px 0 100px;
}

.container-fluid {
    padding: 0 30px;
}

.container--small {
    max-width: 820px;
}

.services__section {
    margin-top: 150px;
}

.container--medium {
    max-width: 1030px;
}

@media(max-width:767px) {

    .services__section {
        margin-top: 50px;
    }
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

    .fancybox-container * {
        box-sizing: border-box;
    }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

    .fancybox-slide::before {
        content: '';
        display: inline-block;
        font-size: 0;
        height: 100%;
        vertical-align: middle;
        width: 0;
    }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

    .fancybox-slide--image::before {
        display: none;
    }

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

    .fancybox-error p {
        color: #444;
        font-size: 16px;
        line-height: 20px;
        margin: 0;
        padding: 0;
    }

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

    .fancybox-button,
    .fancybox-button:visited,
    .fancybox-button:link {
        color: #ccc;
    }

        .fancybox-button:hover {
            color: #fff;
        }

        .fancybox-button:focus {
            outline: none;
        }

        .fancybox-button.fancybox-focus {
            outline: 1px dotted;
        }

        .fancybox-button[disabled],
        .fancybox-button[disabled]:hover {
            color: #888;
            cursor: default;
            outline: none;
        }

        /* Fix IE11 */
        .fancybox-button div {
            height: 100%;
        }

        .fancybox-button svg {
            display: block;
            height: 100%;
            overflow: visible;
            position: relative;
            width: 100%;
        }

            .fancybox-button svg path {
                fill: currentColor;
                stroke-width: 0;
            }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

    .fancybox-close-small:hover {
        color: #fff;
        opacity: 1;
    }

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

    .fancybox-navigation .fancybox-button div {
        padding: 7px;
    }

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

    .fancybox-caption a:hover {
        color: #fff;
        text-decoration: underline;
    }

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

    .fancybox-share h1 {
        color: #222;
        font-size: 35px;
        font-weight: 700;
        margin: 0 0 20px 0;
    }

    .fancybox-share p {
        margin: 0;
        padding: 0;
    }

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

    .fancybox-share__button:visited,
    .fancybox-share__button:link {
        color: #fff;
    }

    .fancybox-share__button:hover {
        text-decoration: none;
    }

.fancybox-share__button--fb {
    background: #3b5998;
}

    .fancybox-share__button--fb:hover {
        background: #344e86;
    }

.fancybox-share__button--pt {
    background: #bd081d;
}

    .fancybox-share__button--pt:hover {
        background: #aa0719;
    }

.fancybox-share__button--tw {
    background: #1da1f2;
}

    .fancybox-share__button--tw:hover {
        background: #0d95e8;
    }

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

    .fancybox-share__button svg path {
        fill: #fff;
    }

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

    .fancybox-thumbs__list a::before {
        border: 6px solid #ff5268;
        bottom: 0;
        content: '';
        left: 0;
        opacity: 0;
        position: absolute;
        right: 0;
        top: 0;
        transition: all .2s cubic-bezier(.25, .46, .45, .94);
        z-index: 99991;
    }

    .fancybox-thumbs__list a:focus::before {
        opacity: .5;
    }

    .fancybox-thumbs__list a.fancybox-thumbs-active::before {
        opacity: 1;
    }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}

