.new-color {
color: #fff;
}

.flex-shrink-0 {
    flex-shrink: 0!important;
}

.badge-primary {
    background-color: #262626!important;
    color: #fff;
}

.rounded-4 {
    border-radius: .375rem!important;
}

*#video-background {
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;     
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .pricing .box:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  }
  
  .pricing h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .pricing .price {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
  }
  
  .pricing .price sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
  }
  
  .pricing .price span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
  }
  
  .pricing img {
    padding: 30px 40px;
  }
  
  .pricing ul {
    padding: 0;
    list-style: none;
    color: #ccc;
    text-align: center;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .pricing ul li {
    padding-bottom: 10px;
  }
  
  .pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
  }
  
  .pricing .btn-buy {
    display: inline-block;
    padding: 8px 40px 10px 40px;
    border-radius: 50px;
    color: #000;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #000;
  }
  
  .pricing .btn-buy:hover {
    background: #FFC406;
    color: #000;
  }
  
  .pricing .featured {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #FFC406;
    color: #000;
  }

  /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
  #btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #262626!important;
    color: #FFC406;
    }

  /*--------------------------------------------------------------
# Yellow button
--------------------------------------------------------------*/

.btn-gold {
    color: #000;
    background-color: #FFC406;
    border: 1px solid #FFC406;
}

.btn-gold:hover {
    color: #fff;
    background:#000;
}

.btn-gold-up {
    color: #000;
    font-size : 1rem;
    background-color: #FFC406;
    border: 2px solid #FFC406;
}

.btn-gold-up:hover {
    color: #fff;
    background:#000;
}

.btn-gold-switch {
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
}

.btn-gold-switch:hover {
    color: #fff;
    border-color: #FFC406;
}

.btn-gold-round {
    color: #000;
    background-color: #FFC406;
    border: 1px solid #000;
}

.btn-gold-round:hover {
    color: #fff;
    background: #000;
    border-color: #FFC406;
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/

.steps .step {
  display: block;
  width: 100%;
  margin-bottom: 35px;
  text-align: center
}

.steps .step .step-icon-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 80px;
  text-align: center
}

.steps .step .step-icon-wrap::before,
.steps .step .step-icon-wrap::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 50%;
  height: 3px;
  margin-top: -1px;
  content: '';
  z-index: 1
}

.steps .step .step-icon-wrap::before {
  left: 0
}

.steps .step .step-icon-wrap::after {
  right: 0
}

.steps .step .step-icon {
  display: inline-block;
  position: relative;
  width: 80px;
  border: 3px solid #4154f1;
  border-radius: 50%;
  font-size: 42px;
  line-height: 70px;
  z-index: 5
}

.steps .step .step-title {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700
}

.steps .step:first-child .step-icon-wrap::before {
  display: none
}

.steps .step:last-child .step-icon-wrap::after {
  display: none
}

.steps .step.completed .step-icon-wrap::before,
.steps .step.completed .step-icon-wrap::after {
  background-color: #262626!important;
}

.steps .step.completed .step-icon {
  border-color: #262626!important;
  background-color: #262626!important;
  color: #FFC406;
}

@media (max-width: 576px) {
  .flex-sm-nowrap .step .step-icon-wrap::before,
  .flex-sm-nowrap .step .step-icon-wrap::after {
      display: none
  }
}

@media (max-width: 768px) {
  .flex-md-nowrap .step .step-icon-wrap::before,
  .flex-md-nowrap .step .step-icon-wrap::after {
      display: none
  }
}

@media (max-width: 991px) {
  .flex-lg-nowrap .step .step-icon-wrap::before,
  .flex-lg-nowrap .step .step-icon-wrap::after {
      display: none
  }
}

@media (max-width: 1200px) {
  .flex-xl-nowrap .step .step-icon-wrap::before,
  .flex-xl-nowrap .step .step-icon-wrap::after {
      display: none
  }
}

.bg-faded, .bg-secondary {
  background-color: #f5f5f5 !important;
}

/*--------------------------------------------------------------
# Partenaires
--------------------------------------------------------------*/

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.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;
}
.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;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counter-box {
	display: block;
	background: #262626!important;
	padding: 40px 20px 37px;
	text-align: center
}

.counter-box p {
	margin: 5px 0 0;
	padding: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500
}

.counter-box i {
	font-size: 60px;
	margin: 0 0 15px;
	color: #fff
}

.counter { 
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	line-height: 28px
}

/*--------------------------------------------------------------
# Social Link Header
--------------------------------------------------------------*/
.social-links {
  margin-top: 40px;
  margin-left: 90px;
  display: flex;
}

.social-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.social-links a:hover {
  background: #000;

}

@font-face {
  font-family: 'underratedultra_bold';
  src: url('/police/underrated-ultrabold_personal_use-webfont.woff2') format('woff2'),
       url('/police/underrated-ultrabold_personal_use-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

h2 {
  font-family: 'underratedultra_bold', Arial, sans-serif;
  font-weight:normal;
  font-style:normal;
  }

.test {
  margin-right: 45px;
}