:root {
    --main-red: #ED213A;
    --logo-red: #B51D31;
    --bright-red: #FF0000;
    --darker-red: #C52D2F;
    --navy: #1C2331;
}

a {
    color: #FFFFFF;
}

a:hover,
a:focus {
    color: var(--main-red);
}

.view,
body,
html {
    height: 100%;
}

#social a:hover {
    border-bottom: 1px solid #fff;
}

hr {
    margin-top: 10px;
    margin-bottom: 1px;
    border: 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}

.justify {
    text-align: justify!important;
}

.ml-auto {
    margin-left: auto
}

.mr-auto {
    margin-right: auto
}

.btn-primary {
    background-color: var(--navy);
    color: #fff;
    border-radius: 3px;
    border: none;
    transition: all 1.2s 0s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    outline: transparent;
    box-shadow: none;
    color: white;
    background-image: linear-gradient(0deg, var(--logo-red), var(--main-red));
}

.btn-primary.gradient {
    background-image: -webkit-linear-gradient(91deg, rgba(173, 0, 2, 1.00) 0%, rgba(255, 0, 0, 1.00) 100%);
    background-image: -moz-linear-gradient(91deg, rgba(173, 0, 2, 1.00) 0%, rgba(255, 0, 0, 1.00) 100%);
    background-image: -o-linear-gradient(91deg, rgba(173, 0, 2, 1.00) 0%, rgba(255, 0, 0, 1.00) 100%);
    background-image: linear-gradient(359deg, rgba(173, 0, 2, 1.00) 0%, rgba(255, 0, 0, 1.00) 100%);
}

.btn-primary.gradient:hover,
.btn-primary.gradient:focus,
.btn-primary.gradient:active,
.btn-primary.gradient.active,
.open>.dropdown-toggle.btn-primary {
    background-image: -webkit-linear-gradient(270deg, rgba(173, 0, 2, 1.00) 0%, rgba(255, 0, 0, 1.00) 100%);
    background-image: -moz-linear-gradient(270deg, rgba(173, 0, 2, 1.00) 0%, rgba(255, 0, 0, 1.00) 100%);
    background-image: -o-linear-gradient(270deg, rgba(173, 0, 2, 1.00) 0%, rgba(255, 0, 0, 1.00) 100%);
    background-image: linear-gradient(180deg, rgba(173, 0, 2, 1.00) 0%, rgba(255, 0, 0, 1.00) 100%);
}

.btn-primary.grey {
    background-image: -webkit-linear-gradient(91deg, rgba(63, 76, 86, 1.00) 0%, rgba(51, 51, 51, 1.00) 100%);
    background-image: -moz-linear-gradient(91deg, rgba(63, 76, 86, 1.00) 0%, rgba(51, 51, 51, 1.00) 100%);
    background-image: -o-linear-gradient(91deg, rgba(63, 76, 86, 1.00) 0%, rgba(51, 51, 51, 1.00) 100%);
    background-image: linear-gradient(359deg, rgba(63, 76, 86, 1.00) 0%, rgba(51, 51, 51, 1.00) 100%);
}

.btn-primary.grey:hover,
.btn-primary.grey:focus,
.btn-primary.grey:active {
    background-image: -webkit-linear-gradient(270deg, rgba(34, 64, 86, 1.00) 0%, rgba(0, 0, 0, 1.00) 100%);
    background-image: -moz-linear-gradient(270deg, rgba(34, 64, 86, 1.00) 0%, rgba(0, 0, 0, 1.00) 100%);
    background-image: -o-linear-gradient(270deg, rgba(34, 64, 86, 1.00) 0%, rgba(0, 0, 0, 1.00) 100%);
    background-image: linear-gradient(180deg, rgba(34, 64, 86, 1.00) 0%, rgba(0, 0, 0, 1.00) 100%);
}

.btn-transparent {
    border: 3px solid #fff;
    /* [disabled]background: transparent; */
    color: #fff;
}

.btn-transparent:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-default {
    color: #FFFFFF;
    background-color: var(--navy);
    border-color: #ccc;
    font-weight: bolder;
    text-transform: uppercase;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
    color: #FFFFFF;
    background-color: #4F4F4F;
    border-color: #adadad;
    background-image: -webkit-linear-gradient(270deg, rgba(143, 143, 143, 1.00) 0%, rgba(79, 79, 79, 1.00) 100%);
    background-image: -moz-linear-gradient(270deg, rgba(143, 143, 143, 1.00) 0%, rgba(79, 79, 79, 1.00) 100%);
    background-image: -o-linear-gradient(270deg, rgba(143, 143, 143, 1.00) 0%, rgba(79, 79, 79, 1.00) 100%);
    background-image: linear-gradient(180deg, rgba(143, 143, 143, 1.00) 0%, rgba(79, 79, 79, 1.00) 100%);
}

.btn-white-outline {
    border: 2px solid white;
    border-radius: 5px;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline:active {
    background-color: white;
    color: var(--navy);
    transition: 0.4s;
}

.center h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.media>.pull-left {
    margin-right: 20px;
}

.media>.pull-right {
    margin-left: 20px;
}

.center {
    text-align: center;
    padding-bottom: 15px;
}

.scaleIn {
    -webkit-animation-name: scaleIn;
    animation-name: scaleIn;
}

.transparent-bg {
    background-color: transparent !important;
    margin-bottom: 0;
}

@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.navbar-brand {
    margin-left: 20px;
}

.navbar>.container .navbar-brand {
    margin-left: 0;
}

.top-bar {
    padding: 10px 0;
    background-color: black;
    line-height: 28px;
}

.top-bar a {
    color: #797979;
}

.top-bar a:hover {
    color: #C52D2F;
}

.top-number {
    color: #fff;
}

.top-number p {
    margin: 0
}

.social {
    text-align: right;
    padding-bottom: 5px;
}

.no-margin {
    margin: 0;
    padding: 0;
}

#main-slider .carousel .carousel-content {
    margin-top: 2px;
}

#main-slider .carousel .slide-margin {
    margin-top: 40px;
}

#main-slider .carousel h1 {
    color: #fff;
}

#main-slider .carousel .btn-slide {
    padding: 8px 20px;
    background: #c52d2f;
    color: #fff;
    border-radius: 4px;
    margin-top: 25px;
    display: inline-block;
}

#main-slider .carousel .slider-img {
    text-align: right;
    position: relative;
}

#main-slider {
    position: relative;
    min-width: 100%;
    max-height: 100vh;
}

.carousel-item {
    min-width: 100%;
    max-height: 100vh;
    overflow: hidden;
    object-fit: cover;
}

#main-slider .carousel .item {
    height: 100vh;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    opacity: 0;
    top: 0;
    position: relative;
    display: block;
    -webkit-transition: opacity ease-in-out 500ms;
    -moz-transition: opacity ease-in-out 500ms;
    -o-transition: opacity ease-in-out 500ms;
    -ms-transition: opacity ease-in-out 500ms;
    transition: opacity ease-in-out 500ms;
    overflow: hidden;
}

#main-slider .carousel .item:first-child {
    top: auto;
    /* [disabled]position: relative; */
}

#main-slider .carousel .item.active {
    opacity: 1;
    -webkit-transition: opacity ease-in-out 500ms;
    -moz-transition: opacity ease-in-out 500ms;
    -o-transition: opacity ease-in-out 500ms;
    -ms-transition: opacity ease-in-out 500ms;
    transition: opacity ease-in-out 500ms;
    z-index: 1;
}

#main-slider .prev,
#main-slider .next {
    position: absolute;
    top: 50%;
    background-color: #c52d2f;
    color: #fff;
    display: inline-block;
    margin-top: -25px;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 4px;
    z-index: 5;
}

#main-slider .prev:hover,
#main-slider .next:hover {
    background-color: #000;
}

#main-slider .prev {
    left: 10px;
}

#main-slider .next {
    right: 10px;
}


/*
#main-slider .carousel-indicators li {
  width: 20px;
  height: 20px;
  background-color: #fff;
  margin: 0 15px 0 0;
  position: relative;
}

#main-slider .carousel-indicators li:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #FFF;
  left: -3px;
  top: -3px;
}

#main-slider .carousel-indicators .active{
	width: 20px;
	height: 20px;
	background-color: #c52d2f;
	margin: 0 15px 0 0;
	border: 1px solid #c52d2f;

}

#main-slider .carousel-indicators .active:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #c52d2f;
  border: 1px solid #c52d2f;
  left: -3px;
  top: -3px;
}
*/

#main-slider .animation.animated-item-1 {
    backface-visibility: hidden;
    -webkit-animation: fadeIn 1s linear .5s both;
    -moz-animation: fadeIn 1s linear .5s both;
    -o-animation: fadeIn 1s linear .5s both;
    -ms-animation: fadeIn 1s linear .5s both;
    animation: fadeIn 1s linear .5s both;
}

#main-slider .animation.animated-item-2 {
    backface-visibility: hidden;
    -webkit-animation: fadeInRight 700ms linear 1.5s both;
    -moz-animation: fadeInRight 700ms linear 1.5s both;
    -o-animation: fadeInRight 700ms linear 1.5s both;
    -ms-animation: fadeInRight 700ms linear 1.5s both;
    animation: fadeInRight 700ms linear 1.5s both;
}

#main-slider .animation.animated-item-3 {
    backface-visibility: hidden;
    -webkit-animation: fadeInLeft 700ms linear 2.5s both;
    -moz-animation: fadeInLeft 700ms linear 2.5s both;
    -o-animation: fadeInLeft 700ms linear 2.5s both;
    -ms-animation: fadeInLeft 700ms linear 2.5s both;
    animation: fadeInLeft 700ms linear 3s both;
}

#main-slider .active .animation.animated-item-4 {
    backface-visibility: hidden;
    -webkit-animation: fadeInUp 700ms linear 5.5s both;
    -moz-animation: fadeInUp 700ms linear 5.5s both;
    -o-animation: fadeInUp 700ms linear 5.5s both;
    -ms-animation: fadeInUp 700ms linear 5.5s both;
    animation: fadeInUp 700ms linear 5.5s both;
}

#main-slider p {
    font-size: 1.2rem;
    padding: .75rem 0;
}

.carousel-caption {
    position: absolute;
    top: 35% !important;
    display: inline-block;
    color: #fff;
    text-align: center;
    text-shadow: 0.075em 0.08em 0.1em rgba(0, 0, 0, .75);
}

@media (max-width:767.98px) {
    .carousel-caption {
        position: absolute;
        align-content: middle;
        display: inline-block;
        color: #fff;
        text-align: center;
        text-shadow: 0.075em 0.08em 0.1em rgba(0, 0, 0, .75);
    }
    .carousel-indicators {
        display: none;
    }
    #main-slider img {
        height: 50vh!important;
        min-width: 100%;
        object-fit: cover;
    }
    #main-slider h1 {
        font-size: 2rem;
    }
    #main-slider p {
        display: none;
    }
    .navy .navbar-collapse {
        padding-bottom: 2rem;
    }
}


/*
.features{
  padding: 0;
}

.feature-wrap {
  margin-bottom: 35px;
  overflow: hidden;
}

.feature-wrap h2{
  margin-top: 10px;
}

.feature-wrap .pull-left {
  margin-right: 25px;
}

.feature-wrap i{
  font-size: 48px;
  height: 110px;
  width: 110px;
  margin: 3px;
  border-radius: 100%;
  line-height: 110px;
  text-align:center;
  background: #ffffff;
  color: #c52d2f;
  border: 3px solid #ffffff;
   -webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
   box-shadow: inset 0 0 0 5px #f2f2f2;
  float: left;
  margin-right: 25px;
}

.feature-wrap i:hover {
  background: #c52d2f;
  color: #fff;
   -webkit-box-shadow: inset 0 0 0 5px #c52d2f;
  border: 3px solid #c52d2f;
  box-shadow: inset 0 0 0 5px #c52d2f;
}

#recent-works .col-xs-12.col-sm-4.col-md-3{
  padding: 0;
}

#recent-works{
    padding-bottom: 70px;
}

.recent-work-wrap {
  position: relative;
}

.recent-work-wrap img{
  width: 100%;
}

.recent-work-wrap .recent-work-inner{
  top: 0;
  background: transparent;
  opacity: .8;
  width: 100%;
  border-radius: 0;
  margin-bottom: 0;
}

.recent-work-wrap .recent-work-inner h3{
  margin: 5px 0; text-align:center;
	color:white;
}

.recent-work-wrap .recent-work-inner h3 a{
  font-size: 24px;
  color: #fff;
	text-align: center;
}

.recent-work-wrap .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	border-radius: 0;
	background-color: #C52D2F;
	color: #fff;
	vertical-align: middle;
	-webkit-transition: opacity 800ms;
	-moz-transition: opacity 800ms;
	-o-transition: opacity 800ms;
	transition: opacity 800ms;
	padding: 20px;
}

.recent-work-wrap .overlay .preview {
  bottom: 0;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  color: #fff;
}

.recent-work-wrap:hover .overlay {
	opacity: 0.9;
}



#middle {
  background: #f2f2f2;
}

.skill h2{
  margin-bottom: 25px;
}
.accordion h2{
  margin-bottom: 25px;
}
.panel-default{
  border-color: transparent;
}
.panel-default>.panel-heading,
.panel{
 
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.102);
  box-shadow:none;
}
.panel-default>.panel-heading+.panel-collapse .panel-body{
  background: #fff;
  color: #858586;   
}
.panel-body{
  padding: 20px 20px 10px;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.panel-group .panel+.panel{
  margin-top: 10px;
  border-top: 1px solid #d9d9d9;
}

.panel-group .panel{
  border-radius: 0;
}

.panel-heading{
  border-radius: 0;
}

.panel-title>a{
  color: #4e4e4e;
}

.accordion-inner img{
  border-radius: 4px;
}

.accordion-inner h4{
  margin-top: 0;
}

.panel-heading.active{
  background: #1f1f20;
}

.panel-heading.active .panel-title>a{
  color:#fff;
}

a.accordion-toggle  i{
  width: 45px;
  line-height: 44px;
  font-size: 20px;
  margin-top: -10px;
  text-align: center;
  margin-right: -15px;
  background: #c9c9c9;
}

.panel-heading.active a.accordion-toggle i{
  background: #c52d2f;
  color: #fff;
}

.panel-heading.active a.accordion-toggle.collapsed i{
  background: #c52d2f;
  color: #fff;
}
.about-us h2, 
.skill_text h2 {
  color:#4e4e4e;
  font-size: 30px;
  font-weight: 600;
}

.about-us p {
	color: #FFFFFF;
}



#carousel-slider .carousel-indicators {
  bottom: -25px;
}

#carousel-slider .carousel-indicators li {
  border: 1px solid #ffbd20;
}

#carousel-slider a i {
  border: 1px solid #777;
  border-radius:50%;
  font-size: 28px;
  height: 50px;
  padding: 8px;
  position: absolute;
  top: 50%;
  width: 50px;
  color:#777;
}

#carousel-slider a i:hover {
    color: #fff;
    border: 1px solid #bfbfbf;
}

#carousel-slider 
.carousel-control {
  width:inherit;
}

#carousel-slider .carousel-control.left i {
  left:-25px
}

#carousel-slider .carousel-control.right i {
  right: -25px;
}

#carousel-slider
.carousel-control.left, 
#carousel-slider
.carousel-control.right {
  background: none;
}


.media_image {
  margin-bottom: 10px;
}

ul.social_icons,
ul.tag {
  list-style: none;
    color:rgba(255,255,255,1.00);
  padding: 0;
  margin: 10px 0;
  display: block;
}

ul.social_icons li,
ul.tag li {
  display: inline-block;
  margin-right: 5px;
}

ul.social_icons li  a i{
  border-radius: 50%;
  color: #FFFFFF;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  padding: 0;
  text-align: center;
  width: 25px;
  opacity:.8;
}
*/

.form-group .form-control {
    padding: 7px 12px;
    border-color: #f2f2f2;
    box-shadow: none;
}

ul.pagination>li>a {
    border: 1px solid #F1F1F1;
    margin-right: 5px;
    border-radius: 5px;
    font-size: 16px;
    padding: 5px 14px;
}

ul.pagination>li>a i {
    margin-left: 5px;
    margin-right: 5px;
}

ul.pagination>li.active>a,
ul.pagination>li:hover>a {
    background-color: #c52d2f !important;
    border-color: #c52d2f !important;
    color: #fff;
}

.form-control:focus {
    box-shadow: none;
    outline: 0 none;
}

#footer {
    background-image: -webkit-linear-gradient(270deg, rgba(28, 35, 49, .75) 26.74%, rgba(0, 0, 0, 0.90) 99.59%), url(/img/8820.jpg);
    background-image: -moz-linear-gradient(270deg, rgba(28, 35, 49, .75) 26.74%, rgba(0, 0, 0, 0.90) 99.59%), url(/img/8820.jpg);
    background-image: -o-linear-gradient(270deg, rgba(28, 35, 49, .75) 26.74%, rgba(0, 0, 0, 0.90) 99.59%), url(/img/8820.jpg);
    background-image: linear-gradient(180deg, rgba(28, 35, 49, .75) 26.74%, rgba(0, 0, 0, 0.90) 99.59%), url(/img/8820.jpg);
    background-size: cover;
    padding: 6em 0;
    color: #fff;
    text-align: center;
    -webkit-box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.43);
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.43);
}

#footer a {
    color: inherit;
}

#footer ul {
    list-style: none;
    align-self: center;
    padding: 10px 10px 10px 0;
}

#footer ul>li {
    display: inline-block;
    line-height: 40px;
    width: 50px;
    height: 50px;
    border: thin solid var(--bright-red);
    border-radius: 50%;
    background-color: transparent;
    padding: 10px;
}

#footer ul>li:visited,
#footer ul>li:hover,
#footer ul>li:active,
#footer ul>li:focus {
    color: var(--navy);
    border: thin solid;
    background-color: var(--main-red);
}

#footer .feet a:hover {
    color: var(--main-red);
    text-decoration: none;
}


/*
.contact-info i{
  width: 60px;
  height: 60px;
  font-size: 40px;
  line-height: 60px;
  color: #fff;
  background: #000;
  text-align: center;
  border-radius: 10px;
}

.contact-info h2{
  margin-top: 0;
  color: #000;
}

.contact-info{
  color:#000;
}

#contact-info{
	background-image: -webkit-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(242,242,242,1.00) 100%);
	background-image: -moz-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(242,242,242,1.00) 100%);
	background-image: -o-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(242,242,242,1.00) 100%);
	background-image: linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(242,242,242,1.00) 100%);
}



.contact-info i{
  width: 60px;
  height: 60px;
  font-size: 40px;
  line-height: 60px;
  color: #fff;
  background: #000;
  text-align: center;
  border-radius: 10px;
}

.contact-info h2{
  margin-top: 0;
  color: #000;
}

.contact-info{
  color:#000;
}

#contact-info{
	background-image: -webkit-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(242,242,242,1.00) 100%);
	background-image: -moz-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(242,242,242,1.00) 100%);
	background-image: -o-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(242,242,242,1.00) 100%);
	background-image: linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(242,242,242,1.00) 100%);
}

.space{min-height:20px; padding: 20px 0;}
.spacelil{min-height:5px; padding: 5px 0;}
.spaceExtra{min-height:40px; padding: 40px 0;}
.map{
    margin: 0px;
    padding: 0px;
    z-index: 0;
    background-image: url(/img/globe.png);
        background-size: cover;
    background-position: center;
}
 
.mapContent{
	position: relative;
	z-index: 1;
	width: 800px;
	margin: 0 auto;
}
.landing{
    background-position: 50% 0;
    background-size: cover;
    background: #485563;
    background: -webkit-linear-gradient(to left, #485563 , #29323c);
    background: linear-gradient(to left, #485563 , #29323c);
    background-image: url(/img/businessman-working-on-modern-technology_fy754qHd.jpg);
}
*/

.no-deco {
    list-style: none;
}

.check {
    list-style: none;
}

.fa-check {
    color: var(--bright-red);
}

.box {
    width: 100%;
}

.white {
    color: white;
}


/*
.boxShadow {
	-webkit-box-shadow: 3px 0 5px 0 #9F9F9F;
	-moz-box-shadow: 0 4px #ebebeb;
	box-shadow: 3px 0 5px 0 #9F9F9F;
	text-align: center;
}

.intro{margin:0;}


.careers{
    background-image: url(/img/careers.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    color: white;	 
	}
.indent{
padding-left:15px;}
.indentBig{padding-left:40px;}
.benefits i{
	color: #224056;
	
	}

.partners, .partners h3{
    background-image: url(/img/Business-Partners.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.boxed-content {
  text-align: center;
  margin-bottom: 35px;
}
.boxed-content > i {
	font-size: 8em;
	color: #C30D10;
}
.boxed-content .boxed-content-title {
  font-size: 22px;
  font-weight: 700;
}
.boxed-content.left-aligned {
  text-align: left;
}
.boxed-content.left-aligned .boxed-content-title {
  margin-bottom: 10px;
  line-height: 28px;
  font-weight: normal;
}
.boxed-content.left-aligned i {
  float: left;
  margin-right: 10px;
  font-size: 2em;
}
.boxed-content.left-boxed-icon i {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	padding: 10px;
	width: 60px;
	height: 60px;
	background-color: #C30D10;
	color: #fff;
	text-align: center;
	line-height: 40px;
}
.boxed-content.left-boxed-icon .boxed-content-title,
.boxed-content.left-boxed-icon p {
  padding-left: 80px;
}

.box-gray  {
	background: #f8f8f8;
	padding: 20px 20px 30px;
}
.box-gray  h4,.box-gray  i {
	margin-bottom: 20px;
}
.box-bottom {
	padding: 20px 0;
	text-align: center;
	background-image: -webkit-linear-gradient(91deg,rgba(0,43,79,1.00) 0%,rgba(0,0,0,1.00) 100%);
	background-image: -moz-linear-gradient(91deg,rgba(0,43,79,1.00) 0%,rgba(0,0,0,1.00) 100%);
	background-image: -o-linear-gradient(91deg,rgba(0,43,79,1.00) 0%,rgba(0,0,0,1.00) 100%);
	background-image: linear-gradient(359deg,rgba(0,43,79,1.00) 0%,rgba(0,0,0,1.00) 100%);
	margin-bottom: 20px;
	
}
.box-bottom a {
	color: #fff;
	font-weight: 700;
}
.box-bottom a:hover {
	color: #eee;
	text-decoration: none;
}
*/

.grey {
    background-image: -webkit-linear-gradient(24deg, rgba(240, 240, 240, 1.00) 0%, rgba(255, 255, 255, 1.00) 100%);
    background-image: -moz-linear-gradient(24deg, rgba(240, 240, 240, 1.00) 0%, rgba(255, 255, 255, 1.00) 100%);
    background-image: -o-linear-gradient(24deg, rgba(240, 240, 240, 1.00) 0%, rgba(255, 255, 255, 1.00) 100%);
    background-image: linear-gradient(66deg, rgba(240, 240, 240, 1.00) 0%, rgba(255, 255, 255, 1.00) 100%);
}

.mr0 {
    margin-right: 0px !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pt40 {
    padding-top: 40px !important;
}

.pt50 {
    padding-top: 50px !important;
}

.pt60 {
    padding-top: 60px !important;
}

.pt70 {
    padding-top: 70px !important;
}

.pt80 {
    padding-top: 80px !important;
}

.pt90 {
    padding-top: 90px !important;
}

.pt100 {
    padding-top: 100px !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb15 {
    padding-bottom: 15px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb30 {
    padding-bottom: 30px !important;
}

.pb40 {
    padding-bottom: 40px !important;
}

.pb50 {
    padding-bottom: 50px !important;
}

.pb60 {
    padding-bottom: 60px !important;
}

.pb70 {
    padding-bottom: 70px !important;
}

.pb80 {
    padding-bottom: 80px !important;
}

.pb90 {
    padding-bottom: 90px !important;
}

.pb100 {
    padding-bottom: 100px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mb90 {
    margin-bottom: 90px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.mt5 {
    margin-top: 5px !important;
}


/*
@media (max-width: 478px) {
  .ptEA {
   padding-top: 4em; 
      padding-bottom:4em;
  }
}
@media (min-width: 479px) {
  .ptEA {
    padding-top: 50px; 
  }
}
@media (min-width: 991px) {
  .ptEA {
    padding-top: 110px; 
  }
}


ul.recent{list-style: none;}
ul.recent li {
	margin-bottom: 20px;
	margin-left: -10px;
}

ul.recent li h6 {
	margin:0 0 10px 0;
}

ul.recent li h6 a{
	font-size:16px;
	font-weight:600;
}
.btn-outline-primary {
	color: #FFFFFF;
	background-image: none;
	background-color: transparent;
	border-color: #FFFFFF;
}

.btn-outline-primary:hover {
	color: #224056;
	background-color: #FFFFFF;
	border-color: #142735;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
	-webkit-box-shadow: 0 0 0 2px rgba(0,0,0,0.40);
	box-shadow: 0 0 0 2px rgba(0,0,0,0.40);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #0275d8;
  background-color: transparent;
}

.btn-outline-primary:active, .btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #224056;
	border-color: #142735;
}
.btn-outline-light{    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa;}

.iwrap i{
	font-size: 48px;
	height: 90px;
	width: 90px;
	margin: 2px;
	border-radius: 100%;
	line-height: 90px;
	text-align: center;
	background: #ffffff;
	color: #c52d2f;
	border: 3px solid #ffffff;
	-webkit-box-shadow: 1px 1px 2px 2px #AAAAAA;
	-webkit-transition: 500ms;
	-moz-transition: 500ms;
	-o-transition: 500ms;
	transition: 500ms;
	box-shadow: 1px 1px 2px 2px #AAAAAA;
	float: left;
	margin-right: 25px;
}

.iwrap i:hover {
	background: #c52d2f;
	color: #fff;
	border: 3px solid #c52d2f;
	-webkit-box-shadow: inset 1px 1px 2px 2px #AAAAAA;
	box-shadow: 1px 1px 2px 2px #AAAAAA;
}
.iwrap h4{align-items: center;}
.lp	{
    background-image: url(/img/LP.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: 20px;
    color: white;
    text-shadow: 2px 2px 3px #000000;
    margin-bottom: 0;
}
.shadow{-webkit-box-shadow: 1px 1px 2px 2px #fff;
	box-shadow: 1px 1px 2px 2px #fff;}
.fed{
    background-image: url(/img/banner.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: left center;
    margin-bottom: 0;
}
.blue{
	color: white;
	background-image: -webkit-linear-gradient(270deg,rgba(0,8,31,1.00) 0%,rgba(0,8,31,1.00) 39.38%,rgba(52,75,106,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(0,8,31,1.00) 0%,rgba(0,8,31,1.00) 39.38%,rgba(52,75,106,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(0,8,31,1.00) 0%,rgba(0,8,31,1.00) 39.38%,rgba(52,75,106,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(0,8,31,1.00) 0%,rgba(0,8,31,1.00) 39.38%,rgba(52,75,106,1.00) 100%);
}
.bluet{
	color: white;
	background-image: -webkit-linear-gradient(270deg,rgba(0,8,31,1.00) 0.52%,rgba(0,8,31,0.73) 39.38%,rgba(21,33,49,0.68) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(0,8,31,1.00) 0.52%,rgba(0,8,31,0.73) 39.38%,rgba(21,33,49,0.68) 100%);
	background-image: -o-linear-gradient(270deg,rgba(0,8,31,1.00) 0.52%,rgba(0,8,31,0.73) 39.38%,rgba(21,33,49,0.68) 100%);
	background-image: linear-gradient(180deg,rgba(0,8,31,1.00) 0.52%,rgba(0,8,31,0.73) 39.38%,rgba(21,33,49,0.68) 100%);
}
.blue h1{
	text-shadow: 2px 2px black;

	
}
.text-info {
	color: #03FBF5;
}
.LPhead{
    background-image: url(/img/protection.jpg);
    background-attachment: fixed;
    background-size: contain;
    text-shadow: 2px 2px 3px #000000;
}
.LPhead h1{
	color: white;
	text-shadow: 1px 1px 2px #000000;
	
}
.carehead{
    background-image: url(/img/care.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-shadow: 2px 2px 3px #000000;
}
.carehead h1{
	color: white;
	text-shadow: 1px 1px 2px #000000;
	
}
.corners{

border-radius: 10px 5px;
}
.webinar{
    background-image: url(/img/web.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}
@media (max-width: 480px) {

          .webinar {
        background-image: none;
    }

}
.header-unit {
  height: auto;
  position: relative;
  padding: 250px;
color:white;
}

#video-container {
	top:0%;
	left:0%;
	width:100%;
	position: absolute;
	overflow: hidden;
}
video {
	position:relative;
	z-index:-1;
}
video.fillWidth {
	width: 100%;
	
}
.ico{
	background-attachment: fixed;
	background-image: url(/img/shutterstock_564321550.jpg);
	background-size: cover;
}
.undersection {
    margin-top: 25px!important;
}
*/

img {
    max-width: 100%;
}

.text-blue {
    color: #355786;
}

/*
.overlay-text {

    float: right;
    width: 65%;
    bottom: 21vw; 
    padding: 20px;
    background: white;
    border: thick solid #B51D31;}

.blend{
	background-color: #000000;
	background-blend-mode: screen;
	background-image: url(file://///localhost/C$/@GMT-2020.06.22-21.01.25/Users/hcleveland/OneDrive%20-%20ELEVI%20Associates,%20LLC/Documents/Website/www/img/shutterstock_527546032.jpg);
	background-attachment: fixed;
	background-size: cover;
}

@media (min-width: 992px) {
  .half-image-content {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 30px; }
	
    .half-image-content .content-img {
      position: absolute;
      top: 0;
      width: 50%;
      height: 100%; }
      .half-image-content .content-img.pos-left {
        left: 0; }
      .half-image-content .content-img.pos-right {
        right: 0; } }

*/

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card>hr {
    margin-right: 0;
    margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}


#grey .card-body .fa {
    color: #858586;
}

.card-title {
    margin: 0.75rem 0;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text {
    color: #858586;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link+.card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header+.list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -10px;
        margin-left: -10px;
    }
    .card-deck .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 10px;
    }
}

.card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group>.card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group>.card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group>.card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group>.card:first-child .card-img-top,
    .card-group>.card:first-child .card-header {
        border-top-right-radius: 0;
    }
    .card-group>.card:first-child .card-img-bottom,
    .card-group>.card:first-child .card-footer {
        border-bottom-right-radius: 0;
    }
    .card-group>.card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group>.card:last-child .card-img-top,
    .card-group>.card:last-child .card-header {
        border-top-left-radius: 0;
    }
    .card-group>.card:last-child .card-img-bottom,
    .card-group>.card:last-child .card-footer {
        border-bottom-left-radius: 0;
    }
    .card-group>.card:only-child {
        border-radius: 0.25rem;
    }
    .card-group>.card:only-child .card-img-top,
    .card-group>.card:only-child .card-header {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }
    .card-group>.card:only-child .card-img-bottom,
    .card-group>.card:only-child .card-footer {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.text-white {
    color: white!important;
}

/*
.consult{
    height: 200px;
    background-image: url(/img/shutterstock_224725366.jpg);
    background-attachment: fixed;
    margin: 0;
    background-size: cover;
}.top-bar{
	background-color: #000000; 
	background-image: -webkit-linear-gradient(270deg,rgba(58,58,58,1.00) 20.73%,rgba(0,0,0,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(58,58,58,1.00) 20.73%,rgba(0,0,0,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(58,58,58,1.00) 20.73%,rgba(0,0,0,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(58,58,58,1.00) 20.73%,rgba(0,0,0,1.00) 100%);
}
#clients{background-color: white;}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav, #clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
	background-color: #D21818;
}

.parallax{
	background-attachment: fixed!important;
}
.info-section{
	float: left;
	width:100%;
	padding:5rem 0;
	position: relative;
	z-index: 1;
}
.info-section h2{
	font-weight: 700;
	font-size: 2.5rem;
}

.info-section .head-sec{
	float: left;
	width:100%;
}

.info-section h3{
	font-size: 1.4rem;
}
.info-section p {
    font-size: 1rem;
    line-height: 1.3rem;
}
.info-section .box h2{
    font-size:24px;
    margin-bottom:20px;
    margin-top:0;
}

.info-section .box i{
    font-size:20px;
}
.info-section .box{
    display:flex;
}
.info-section .text-box{
    flex:1 1 0;
    text-align:left;
}
.info-section .icon-box{
    line-height: 1.2;
    width:70px;
}
.info-section .service-block-overlay{
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
    background-color: #235FD7}
.info-section .service-block-overlay:hover{
	background: #fff none repeat scroll 0 0;
    border-radius: 5px;
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
    float: left;
    margin-top: -10px;
    position: relative;
    width: 100%;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.content-half{
    color:#fff;
}
.content-half ul{
    padding:0;
    list-style:none;
}
.content-half ul li{
    margin:15px 0;
    float:left;
    width:100%;
}
.content-half ul li i{
    float:left;
    font-size:30px;
    padding-top:10px;
    padding-bottom:10px;
}
.content-half ul li .list-content{
    float:left;
    margin-left:20px;
}
.content-half ul li strong{
    font-size:19px;
    font-weight:700;
}
.content-half .btn{
    margin-top:20px;
}

.reviews-area {
background: url(/img/shutterstock_518725771.jpg);
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: auto;
  position: relative;
}

.work-left-text {
  background: #3EC1D5 none repeat scroll 0 0;
}

.work-left-text {
  width: 50%;
}

.work-right-text {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  float: right;
  height: 100%;
  overflow: hidden;
  padding: 71px 0;
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
}

.work-right-text h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
}

.work-right-text h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}

.work-right-text .sus-btn {
  margin-left: 0;
  margin-top: 20px;
}

#carousel1 {
height:50px;
}
#services .box {
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  background: #fff;
  transition: 0.4s;
}

#services .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
   -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
    transform: translateY(-10px);

}

#services .box .icon {
  float: left;
}

#services .box .icon i {
  color: #444;
  font-size: 64px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}

#services .box .icon i:before {
  background: black;
  background: linear-gradient(45deg, black 0%, #F21935 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .box h4 {
	margin-left: 100px;
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 22px;
	color: #444;
}



#services .box p {
  font-size: 14px;
  margin-left: 50px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #services .box .box {
    margin-bottom: 20px;
  }
  #services .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #services .box h4, #services .box p {
    margin-left: 0;
    text-align: center;
  }
}

.description {padding-top: 15px; line-height: 1.3;
	
}

.scrollspy-example{height: 400px; overflow-y: scroll;
}

.icon-card > i {
    float: left;
    margin-right: 15px;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #000000;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

 .icon-card .icon {
  float: left;
  margin-right: 1rem;
  width: 70px;
  text-align: center; }

#main .icon-card .icon {
  float: left; font-size: 35px;
}

.icon-card .overflow-hidden {
  overflow: hidden; }

.icon-card h4 {
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 2px; }

.icon-card:hover > i {
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px); }

.futurebg{
    padding: 60px 0 30px 0;
    background-image: url(file://///localhost/C$/@GMT-2020.06.22-21.01.25/Users/hcleveland/OneDrive%20-%20ELEVI%20Associates,%20LLC/Documents/Website/www/img/web.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: 20%;}

.features {
    background: #f9f9f9;
    padding-top:100px;
}

.features .features-left {
    text-align: right;
    margin-top: 10px;
}

.features .features-left .icon-container {
    float: right;
    margin-left: 20px;
}

.features .features-right {
    text-align: left;
    margin-top: 10px;
}

.features .features-right .icon-container {
    float: left;
    margin-right: 20px;
}

.features .feature {
    margin-bottom: 23px;
}
    .features .feature:hover .icon-container .icon {
    color: #292929;
    }
.features .feature h4 {
    margin-bottom: 10px; color:black; text-transform: capitalize;
}

.features .feature .icon-container {
    display: block;
    min-height: 100px;
}

.features .feature .icon-container .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    font-size: 32px;
    text-align: center;
    -webkit-transition: all .15s linear;
       -moz-transition: all .15s linear;
        -ms-transition: all .15s linear;
         -o-transition: all .15s linear;
            transition: all .15s linear;
}

.features figure img {
    margin: 0 auto;
    display: block;
}

.brief-content {
    max-width: 500px;
}

.brief-content h1 {
    line-height: 1.3em;
}

.brief-content .btn {
    margin-top: 25px;
}

.brief figure img {
    max-height: 525px;
}

.brief-content .underline {
    margin: 15px 0;
    border-bottom: solid thin #858586;
    color: #858586;
}
ul.extra-features {

    margin-top: 50px;
}

ul.extra-features li {
    display: inline-block;
    margin-bottom: 20px;
}

ul.extra-features .icon {
    width: 55px;
    height: 55px;
    margin-right: 5px;
    float: left;
    text-align: center;
}
ul.extra-features i {
    font-size: 38px;
}
*/

.counter {
    padding: 10px;
    border-radius: 5px;
    border: solid thin white;
    margin: 20px 0 20px;
}

.count-title {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}


/*
.flex-container {
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -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 {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -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 {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -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 {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -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 {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -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 {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
        -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 {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -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 {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        -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 {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
        -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 {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-md-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        -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 {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        -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 {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-lg-grow-1 {
        -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 {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-lg-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        -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 {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        -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 {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-xl-grow-1 {
        -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 {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-xl-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        -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;
    }
}
*/

.blackover {
    background-image: -webkit-linear-gradient(144deg, rgba(0, 0, 0, 0.92) 0.52%, rgba(30, 28, 28, 0.93) 51.81%, rgba(30, 28, 28, 0.88) 100%);
    background-image: -moz-linear-gradient(144deg, rgba(0, 0, 0, 0.92) 0.52%, rgba(30, 28, 28, 0.93) 51.81%, rgba(30, 28, 28, 0.88) 100%);
    background-image: -o-linear-gradient(144deg, rgba(0, 0, 0, 0.92) 0.52%, rgba(30, 28, 28, 0.93) 51.81%, rgba(30, 28, 28, 0.88) 100%);
    background-image: linear-gradient(306deg, rgba(0, 0, 0, 0.92) 0.52%, rgba(30, 28, 28, 0.93) 51.81%, rgba(30, 28, 28, 0.88) 100%);
    color: white;
    height: 100%;
}

.blueover {
    background-image: -webkit-linear-gradient(68deg, rgba(0, 41, 87, 0.88) 0.52%, rgba(0, 0, 0, 0.70) 51.29%, rgba(0, 21, 45, 0.83) 100%);
    background-image: -moz-linear-gradient(68deg, rgba(0, 41, 87, 0.88) 0.52%, rgba(0, 0, 0, 0.70) 51.29%, rgba(0, 21, 45, 0.83) 100%);
    background-image: -o-linear-gradient(68deg, rgba(0, 41, 87, 0.88) 0.52%, rgba(0, 0, 0, 0.70) 51.29%, rgba(0, 21, 45, 0.83) 100%);
    background-image: linear-gradient(68deg, rgba(0, 17, 37, 0.88) 0.52%, rgba(0, 21, 45, 0.70) 51.29%, rgba(0, 41, 87, 0.88) 100%);
    color: white;
    height: 100%;
}

.bg-blue {
    background-image: -webkit-linear-gradient(68deg, rgba(0, 41, 87, 1.00) 0.52%, rgba(0, 0, 0, 1.00) 43.52%, rgba(0, 21, 45, 1.00) 100%);
    background-image: -moz-linear-gradient(68deg, rgba(0, 41, 87, 1.00) 0.52%, rgba(0, 0, 0, 1.00) 43.52%, rgba(0, 21, 45, 1.00) 100%);
    background-image: -o-linear-gradient(68deg, rgba(0, 41, 87, 1.00) 0.52%, rgba(0, 0, 0, 1.00) 43.52%, rgba(0, 21, 45, 1.00) 100%);
    background-image: linear-gradient(22deg, rgba(0, 41, 87, 1.00) 0.52%, rgba(0, 0, 0, 1.00) 43.52%, rgba(0, 21, 45, 1.00) 100%);
    color: white;
}

.pattern-dark {
    background-image: url(/img/pattern.png);
}


/*

.hr-light{
	
  border-top-color: #FFFFFF;
}


.main-color{font-size:12px; letter-spacing:1px;}

}

.icon-card{
    text-align: center;
    padding: 20px;
    background: #fff;
    transition: 0.4s;
    -webkit-box-shadow: 0px 0px 30px rgba(28,43,87,0.28);   
        box-shadow: 0px 0px 30px rgba(28,43,87,0.28);    
}
.c-icon {
width: 70px;
    height: 70px;
    margin-bottom: 15px;
    background:black; 
    color: #fff;
    font-size: 36px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
}

blockquote {
font-family: serif;
font-size: 18px;
font-style: italic;
padding: 0.25em 40px;
line-height: 1.45;
position: relative;
color: #383838;
}
blockquote:before {
display: block;
content: "\201C";
font-size: 80px;
position: absolute;
left: -20px;
top: -20px;
color: #7a7a7a;
}
.blockquotenot {
font-family: serif;
font-size: 18px;
font-style: italic;
padding: 0.25em 40px;
line-height: 1.45;
position: relative;
color: #383838;
}
.fetaure-details h3 {
    font-size: 20px;
    line-height: normal;
}

.fetaure-details {
    text-align: left;

}
.slow{
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;}


#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #18d26e;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #18d26e;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

.display-1 {
  font-size: 6rem; }

.display-2 {
  font-size: 5.5rem; }

.display-3 {
  font-size: 4.5rem; }

.display-4 {
  font-size: 3.5rem; }
*/

#accordion1 .card-header {
    background-color: #E6E6E6;
}

#accordion1 .card-header a {
    color: #4E4E4E;
    font-size: 1em;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

.feature.block {
    margin: 10px 0;
}

.feature i {
    font-size: 2.5rem;
}

.feature-block-image {
    max-width: 60px;
    padding-right: 5px;
}

.feature-left .feature-icon {
    position: absolute;
    float: left;
    left: 15px;
    padding: 10px;
    right: 0px;
}

.feature-left .feature.block.wimage {
    text-align: left;
    padding-left: 75px;
    padding-right: 25px;
}

.feature-left .feature {
    text-align: left;
    padding-left: 51px;
    padding-right: 10px;
}

.feature-center {
    text-align: center;
}

.feature-center .feature-icon {
    margin-bottom: 10px;
}

.feature-right .feature.block.wimage {
    text-align: right;
    padding-right: 75px;
}

.feature-right .feature-icon {
    position: absolute;
    float: right;
    right: 15px;
}

.feature-right .feature {
    text-align: right;
    padding-right: 51px;
}

.parallax {
    background-attachment: fixed !important;
}

.vcenter {
    display: flex;
    align-items: center;
}


/*.partner{ 
  display: block;
  position: relative;}
.partner::after {
  content: "";
  background:url(/img/Business-Partners.jpg);
    background-repeat:no-repeat;background-attachment: fixed;
  opacity: 0.3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}


.single_service.service_right {
	padding-right: 70px;
	padding-left: 0;
	text-align: right;
}
.single_service.service_right img {
	right: 0;
	left: auto;
	margin-top: 0;
}
.single_service:nth-child(1), .single_service:nth-child(2) {
	border-bottom: 1px dashed #333;
	padding-bottom: 15px;
}
.single_service img {
	max-width: 45px;
	position: absolute;
	left: 0;
	top: 0;
}
.single_service {
	position: relative;
	padding-left: 70px;
	margin-bottom: 35px;
}

*/

#value {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    padding: 5em 0;
}

#value h5 {
    color: #fff;
}

#value p {
    color: #fff;
    line-height: 1.5;
}

#career {
    color: white;
    text-align: justify;
    background-position: center;
    background-image: -webkit-linear-gradient(270deg, rgba(38, 38, 38, 0.83) 0%, rgba(0, 0, 0, 0.82) 100%), url(/img/awesome.jpg);
    background-image: -moz-linear-gradient(270deg, rgba(38, 38, 38, 0.83) 0%, rgba(0, 0, 0, 0.82) 100%), url(/img/awesome.jpg);
    background-image: -o-linear-gradient(270deg, rgba(38, 38, 38, 0.83) 0%, rgba(0, 0, 0, 0.82) 100%), url(/img/awesome.jpg);
    background-image: linear-gradient(180deg, rgba(38, 38, 38, 0.83) 0%, rgba(0, 0, 0, 0.82) 100%), url(/img/awesome.jpg);
    background-attachment: fixed;
    background-size: cover;
    padding: 60px 0;
}

#career h3 {
    font-size: 2rem;
    font-weight: 100;
}

.boxshadow {
    background: #fff;
    transition: 0.4s;
    -webkit-box-shadow: 0px 0px 30px rgba(18, 43, 115, 0.28);
    box-shadow: 0px 0px 30px rgba(18, 43, 115, 0.28);
}


/*
.solutions {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/steer.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: left;
    background-color: rgba(0, 0, 0, 1.00);
    color: white;
}

.staff {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/img/buildteam.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.bg-parallax {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
}

.bg-parallax.parallax-overlay:before {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.fullscreen.bg-parallax {
    height: 100%;
    width: 100%;
    background-position: top-center;
}

.fullscreen.bg-parallax .d-flex {
    height: 100%;
    position: relative;
}

.parallax-overlay {
    position: relative;
    overflow: hidden;
    display: block;
}

.parallax-overlay:before {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    content: "";
    z-index: 9;
    opacity: 0;
    background: linear-gradient(to bottom, transparent 20%, #000);
    background: -webkit-linear-gradient(to bottom, transparent 20%, #000);
    transition: opacity 0.4s;
    -webkit-transition: opacity 0.4s;
}

.parallax-overlay:hover:before {
    opacity: .9;
}

.parallax-overlay .container {
    z-index: 10;
    position: relative;
}
*/

.full-height {
    height: 100%;
}

#about {
    background-image: url(/img/about-bg.jpg) center top no-repeat fixed;
    background-size: cover;
    position: relative!important;
}

#about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}

#about .container {
    position: relative;
    z-index: 10;
}


/*
#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;

}
#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #ED213A; 
    color:white;
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
      background: white;
     color: #B51D31;
}

#about .about-col:hover i {
    color: #B51D31;
}


#about .about-col h2 {
  color: #000;
  text-align: center;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
    color: #B51D31;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
    text-align:center;
}
*/

* {
    box-sizing: border-box;
}

.column {
    float: left;
    width: 33.33%;
    display: none;
}

.show {
    display: block;
}


/*
.img-hexagon span {
    position: absolute;
    display: block;
    float:left;
	border-left: 120px solid #fff;
	border-right: 120px solid #fff;
}

.img-top {
	top: 0;
	border-top: 0px solid transparent;
 	border-bottom: 75px solid transparent;
}

.img-bottom{
	bottom: 0px;
	border-bottom: 0px solid transparent;
	border-top: 75px solid transparent;
}

.img-hexagon {
    width: 240px;
    height: 250px;
    position: relative;
    display: inline-block;
}
.img-hexagon img{
	width: 100%;
	height: 100%;
}

.image-block{
	background: #f4f4f4;
}
.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;
}

#aboutELEVI{
    background-image: url(/www/img/team.jpg);background-size: cover;
    min-height:400px;background-attachment: fixed;background-position:center;}

#aboutELEVI::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 9;
    overflow:hidden;
}

.bg50 {
    background-image: url(/www/img/chess.jpg);
    min-height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.highlight {
    color: #ED213A;
    font-weight: bold;
} 

.check{
    list-style: initial;
}
.btn-primaryr {
    padding: 10px 20px;
    background-image: linear-gradient(0deg, rgb(94, 5, 4),rgb(253, 19, 61));
    color: #fff;
    border-radius: 8px;
    border: none;
    margin-top: 10px;
}

.btn-primaryr:hover, 
.btn-primaryr:focus
.btn-primaryr:active{
	outline: black;
	box-shadow: none;
    background:black;
} 

.under {
  position: relative;
}

.under::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fc2f70;
  transform-origin: center;
  transform: translate(-50%, 0) scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.under:hover::before {
  transform: translate(-50%, 0) scaleX(1);
}



 
.icon-action {
    margin-top: 5px;
    float: right;
    font-size: 80%;
}

.list-group-item .title {
    margin-top: 5px;
    margin-bottom: 12px;
    font-weight: 600;
}
#linky .card-header a {
    color: #606060;
}
 #linky .card-header a:hover, #linky .card-header a:focus {
    color: black;
}

.btn-grey-outline {
    border: 1px solid rgba(96,96,96,0.85);
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
    color: rgba(96,96,96,0.85);
    transition: 0.3s;
}

.btn-text{color:black;font-weight:800;}
.btn-text:hover, .btn-text:focus, btn-text:active{
    color: #B51D31;
}



*/

.site-half {
    position: relative;
    margin: 0px;
    padding: 0px;
}

.site-half .img-bg-1 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    width: 50%;
    height: 100%;
}

.site-half .img-bg-1.right {
    right: 0;
}

.site-half .img-bg-1.left {
    left: 0;
}

.caption {
    font-size: 1.2rem;
    color: grey;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 10px;
    font-weight: 300;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.site-section {
    padding: 3em 0;
}

@media (min-width: 767px) {
    .site-section {
        padding: .75em 0;
    }
}

@media (min-width: 478px) {
    .site-section {
        padding: .5em 0;
    }
}

.site-section-heading {
    position: relative;
    padding-bottom: .75rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.site-section-heading:before {
    content: "";
    left: 0%;
    bottom: 0;
    position: absolute;
    width: 20%;
    height: 2px;
    background-image: -webkit-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: -moz-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: -o-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: linear-gradient(90deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
}

.site-section-heading.text-center:before {
    content: "";
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    width: 20%;
    height: 2px;
    background-image: -webkit-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: -moz-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: -o-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: linear-gradient(90deg, rgba(181, 29, 49, .010) 0%, rgba(196, 2, 51, .49) 27.563%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
}

.serv-section-2 {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.16), 0 8px 8px rgba(0, 0, 0, 0.20);
    border-radius: 5px;
    overflow: hidden;
    padding: 20px;
    margin: 10px;
}

.serv-section-2:before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    content: " ";
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-bottom-left-radius: 136px;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.serv-section-2-icon {
    color: var(--navy);
    position: absolute;
    top: 18px;
    right: 18px;
    max-width: 80px;
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.serv-section-desc {
    position: relative;
}

.serv-section-2 h4 {
    color: #333;
}

.serv-section-2 h5 {
    color: #333;
    margin-top: 5px;
}

.serv-section-2 .card-text {
    margin-top: 5px;
}

.serv-section-2:hover .serv-section-2-icon {
    color: white;
}

.serv-section-2:hover {
    cursor: pointer;
}

.serv-section-2:hover:before {
    background-color: var(--navy);
}

.serv-section-1 {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.16), 0 8px 8px rgba(0, 0, 0, 0.20);
    border-radius: 5px;
    padding: 20px;
    margin: 5px;
}

.serv-section-1:before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    content: " ";
    width: 5em;
    height: 5em;
    background: #f5f5f5;
    border-bottom-left-radius: 11em;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.serv-section-1-icon {
    color: var(--navy);
    position: absolute;
    top: 8px;
    right: 8px;
    max-width: 5em;
    text-align: center;
    padding: 5px;
}

.serv-section-1 h4 {
    color: #333;
    font-size: 20px;
    padding-right: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
}

.serv-section-1 h5 {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 5px;
}

.serv-section-1 p {
    color: var(--navy);
    position: relative;
    line-height: 1.5;
    overflow: hidden;
    padding-right: 2.4em;
}

.serv-section-1 p.small {
    padding-right: 2.2rem;
}


/*

.serv-section-1 p:after {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
content: '';
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0);
}
.serv-section-1:hover p:after {
-webkit-transform: translate3d(50%,0,0);
transform: translate3d(-50%,0,0);
}
*/

.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    border-radius: 25%;
    margin: 15px 0;
    background-image: -webkit-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: -moz-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: -o-linear-gradient(0deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
    background-image: linear-gradient(90deg, rgba(181, 29, 49, 1.00) 27.56%, rgba(196, 2, 51, 1.00) 61.13%, rgba(96, 0, 25, 0.49) 81.66%, rgba(0, 0, 0, 0.00) 100%);
}

.tab_container {
    width: 98%;
    margin: 0 auto;
    padding-top: 70px;
    position: relative;
}

input,
#content1,
#content2,
#content3 {
    clear: both;
    padding-top: 10px;
    display: none;
}

label {
    background-color: rgba(0, 0, 0, 0.03);
    font-weight: 700;
    width: 100%;
    padding: 10px;
    margin: 5px auto;
    color: var(--navy);
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
}


/*
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
  display: block;
  padding: 20px;
  background: #fff;
  color: #999;
  border-bottom: 2px solid #f0f0f0;
}

.tab_container .tab-content,
.tab_container .tab-content p,
.tab_container .tab-content h3 {
  -webkit-animation: fadeInScale 0.7s ease-in-out;
  -moz-animation: fadeInScale 0.7s ease-in-out;
  animation: fadeInScale 0.7s ease-in-out;
}
.tab_container [id^="tab"]:checked + label {
    background: #fff;
   -webkit-box-shadow: inset 0 3px #ED213A;
    box-shadow: inset 0 3px #ED213A;
}

.tab_container [id^="tab"]:checked + label .fa {
    color: #ED213A;
}
*/

@media only screen and (max-width: 930px) {
    label span {
        font-size: 12px;
    }
    label .fa {
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    label span {
        display: none;
    }
    label .fa {
        font-size: 16px;
    }
    .tab_container {
        width: 98%;
    }
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/*
.title {
    margin-bottom: 50px;
    text-transform: uppercase;
}

*/

.greyhex {
    background-image: url(/img/greyhex.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.scott {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.scott p {
    margin: 15px 0;
    font-size: larger;
    font-weight: 200;
    line-height: 1.5;
}

.about-section {
    padding-top: 40px;
}

.about-image {
    position: relative;
}

.about-image::before {
    position: absolute;
    content: '';
    background-image: url("/img/dots.jpg");
    background-position: center center;
    background-size: 100%;
    width: 375px;
    height: 350px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about-image .single-image {
    width: 360px;
}

.float-left {
    float: left;
}

.about-image .single-image img {
    width: 100%;
}

.about-image .single-image.image-tow {
    margin-top: -200px;
    position: relative;
    z-index: 5;
}

.about-image .single-image {
    width: 360px;
}

.float-right {
    float: right;
}

.about-content h3 {
    color: #333;
    padding-bottom: 10px;
}

.about-content p {
    margin-bottom: 0px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: #646464;
}
.main-btn-grey{
    background-color:grey;
}
.main-btn {
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-weight: 800;
    text-align: center;
    border: 1px solid var(--main-red);
    padding: .4rem .6rem;
    color: #fff;
    border-radius: 5px;
    background-image: -webkit-linear-gradient(310deg, rgba( 237, 33, 58, 1) 72.54%, rgba(129, 21, 33, 1.00) 100%);
    background-image: -moz-linear-gradient(310deg, rgba(181, 29, 49, 1.00) 72.54%, rgba(129, 21, 33, 1.00) 100%);
    background-image: -o-linear-gradient(310deg, rgba(181, 29, 49, 1.00) 72.54%, rgba(129, 21, 33, 1.00) 100%);
    background-image: linear-gradient(140deg, rgba( 237, 33, 58, 1.00) 72.54%, rgba(237, 33, 58, 1.00) 100%);
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.main-btn:hover,
.main-btn:focus {
    color: #fff;
    border-color: var(--logo-red);
    text-decoration: none;
    background-image: -webkit-linear-gradient(310deg, rgba(129, 21, 33, 1.00)22.54%, rgba(181, 29, 49, 1.00) 100%);
    background-image: -moz-linear-gradient(310deg, rgba(129, 21, 33, 1.00)22.54%, rgba(181, 29, 49, 1.00) 100%);
    background-image: -o-linear-gradient(310deg, rgba(129, 21, 33, 1.00)22.54%, rgba(181, 29, 49, 1.00) 100%);
    background-image: linear-gradient(140deg, rgba(129, 21, 33, 1.00)15.54%, rgba(181, 29, 49, 1.00) 100%);
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.main-btn-grey{
    background-color:grey;
}
.center-figure {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    -webkit-align-self: center;
    align-self: center;
}

.content {
    width: 94%;
    margin: 4em auto;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
}

.cardbox {
    background-color: white;
    word-wrap: break-word;
    padding: 15px;
    margin-left: 5px;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.cardbox:hover {
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.16), 0 8px 8px rgba(0, 0, 0, 0.20);
}

.ghostwhite {
    background-color: ghostwhite;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}


/*
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px; 
    color:white;
    z-index:1;
}

.card-img img {
  z-index: -1;
  height: 100%;
  min-width: 100%;
  width: auto;
}
.card-wrap {
  position: relative;
}
.flip-card {
    padding-bottom: 2rem;
    height: 300px;
    width: 300px;
}
.card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.card-front {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-shadow: 2px 2px 2px black;}
.card-front img {
  height: 100%;
  min-width: 100%;
  width: auto;
}
.card_back {
    width: 100%;
    height: 100%;
    padding: 1em;
    color: #ffffff !important;
    background-color: #B51D31;
    z-index: 1;
    margin: 0;
    text-align: center;
    overflow: hidden;
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.card_back p, .card_back .cta-btn2  {margin-top:2rem;}

.card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.builderCard .card_cont {
  -o-backface-visibility: visible;
  -ms-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
*/

.polaroid {
    width: 50%;
    padding: 5px;
    border: 1px solid #BFBFBF;
    background-color: white;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.16), 0 8px 8px rgba(0, 0, 0, 0.20);
}

.rotate_1 {
    float: right;
    -ms-transform: rotate(-8deg);
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
    position: relative;
    left: -20px;
}

.rotate_2 {
    float: left;
    -ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
    position: relative;
}

.rotate_3 {
    float: left;
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    position: relative;
}

.rotate_4 {
    float: left;
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
    position: relative;
}

.polaroid:hover {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale (1.2);
    position: relative;
    z-index: 5;
}

.shadow-diffuse {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.16), 0 8px 8px rgba(0, 0, 0, 0.20);
}

.shadow-extra {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.11), 0 2px 2px rgba(0, 0, 0, 0.11), 0 4px 4px rgba(0, 0, 0, 0.11), 0 8px 8px rgba(0, 0, 0, 0.11), 0 16px 16px rgba(0, 0, 0, 0.11), 0 32px 32px rgba(0, 0, 0, 0.11);
}

.rtc {
    color: #B51D31;
}

.filterDiv {
    float: left;
    display: none;
}


/* The "show" class is added to the filtered elements */

.show {
    display: block;
}

#call {
    background-position: center center;
    background: linear-gradient(rgba(0, 8, 31, 0.4), rgba(0, 0, 0, 0.9)), url(/img/intersection.jpg);
    background-size: cover;
    padding: 4em 0;
    color: #fff;
}

#call h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 1px 1px 2px hsla(0, 0%, 0%, 0.75);
}

#call .cta-btn,
#career .cta-btn {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px 10px 0 0;
    border: 1px solid #fff;
    color: #fff;
}

#call .cta-btn:hover,
#career .cta-btn:hover {
    background-color: var(--main-red);
    -webkit-box-shadow: 0px 0px 30px rgba(28, 43, 87, 0.28);
    box-shadow: 0px 0px 30px rgba(28, 43, 87, 0.28);
    border: 1px solid var(--main-red);
}

#partners {
    background-image: -webkit-linear-gradient(270deg, rgba(1, 1, 1, 0.79) 0%, rgba(0, 0, 0, 0.72) 45.08%, rgba(0, 0, 0, 0.83) 100%), url(/img/alliance.jpg);
    background-image: -moz-linear-gradient(270deg, rgba(1, 1, 1, 0.79) 0%, rgba(0, 0, 0, 0.72) 45.08%, rgba(0, 0, 0, 0.83) 100%), url(/img/alliance.jpg);
    background-image: -o-linear-gradient(270deg, rgba(1, 1, 1, 0.79) 0%, rgba(0, 0, 0, 0.72) 45.08%, rgba(0, 0, 0, 0.83) 100%), url(/img/alliance.jpg);
    background-image: linear-gradient(180deg, rgba(1, 1, 1, 0.79) 0%, rgba(0, 0, 0, 0.72) 45.08%, rgba(0, 0, 0, 0.83) 100%), url(/img/alliance.jpg);
    background-size: cover;
    padding: 50px 0;
    color: white;
}

.pageIntro {
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
}

.pageIntro h1 {
    border-bottom: thin solid white;
    padding-bottom: 10px;
    display: inline-block;
}

.pageIntro p {
    font-size: 1.2rem;
    font-weight: 100;
}

#products {
    background-color: #D4D4D4;
}

#products .a {
    border: none;
    outline: none;
    padding: 12px 16px;
    margin: 20px 5px;
    color: black;
}

#products .a:hover {
    background-color: white;
    color: var(--main-red);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.11), 0 2px 2px rgba(0, 0, 0, 0.11), 0 4px 4px rgba(0, 0, 0, 0.11), 0 8px 8px rgba(0, 0, 0, 0.11), 0 16px 16px rgba(0, 0, 0, 0.11), 0 32px 32px rgba(0, 0, 0, 0.11);
}

#products .btn.active {
    background-color: #666;
    color: black;
}

#social {
    padding: 0;
    margin: 0;
    display: inline-block;
}

#social a {
    color: white;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: var(--main-red);
    color: #fff;
    transition: all 0.4s;
}

.back-to-top:hover {
    bottom: 19px;
}

table {
    width: 100%;
    color: #212529;
}

.bg-dark {
    background-color: #1c2331 !important;
}

#jobs a {
    color: var(--main-red);
}

#jobs h5 {
    padding: 0;
}

.pill-nav a {
    display: inline-block;
    color: #212529;
    line-height: 1;
    text-align: center;
    padding: 7px 17px 9px 17px;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    text-decoration: none;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 500;
    background: #ede9e9;
}

.pill-nav a:hover {
    color: #fff!important;
    background-color: #212529!important;
}

.pill-nav a.active {
    background-color: #696969;
    color: white;
}


/*


.tabs {
    margin-bottom: 50px;
    padding:0 15px;
}


.tab{ text-align: center; }
.tab .nav-tabs{
    display: inline-block;
    position: relative;
    border-bottom: none;
}
.tab .nav-tabs li{
    margin: 0;
}
.tab .nav-tabs li a{
    display: block;
    padding: 80px 20px 10px;
    background: #fff;
    font-size: 17px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    text-align: center;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #fff;
    margin-right: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
}
.tab .nav-tabs li a span{
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #f2f2f2;
    margin: auto;
    font-size: 22px;
    color: #999;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    transform: rotate(45deg);
}

.tab .nav-tabs li.active a span{
    background-color: #ED213A;
    color: #fff;
}
.tab .nav-tabs li a span i{
    transform: rotate(-45deg);
}
.tab .nav-tabs li.active a,
.tab .nav-tabs li a:hover{
    color: #999;
    border: none;
    border-bottom: 2px solid #fff;
}
.tab .nav-tabs li.active a{
    border-bottom: 2px solid #ED213A;
}
.tab .tab-content{
    padding: 20px;
    margin-top: -5px;
    font-size: 15px;
    color: #757575;
    line-height: 26px;
    text-align: left;
    border-top: 1px solid #e5e5e5;
}
.tab .tab-content h3{
    font-size: 24px;
    margin-top: 0;
}
@media only screen and (max-width: 479px){
    .tab .nav-tabs li{
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    .tab .nav-tabs li:last-child{
        margin-bottom: 0;
    }
}
.dropdown:hover > .dropdown-menu {
    display:inline-block;
}

 .dropdown-menu {
  
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
        background-color: hsla(0,0%,0%,0.80);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.225);
    border: 0;
    padding: 0;
    margin-top: -1px;
    border-top: thin solid #c52d2f;
    border-radius: 0 0 5px 5px;
}
.dropdown-menu > li > a:hover {
    background-image: none;
    background-color: red;
}
.dropdown-menu:before{
  position: absolute;
  top:auto;    
 background-color:hsla(0,0%,0%,0.58)!important;
}
.dropdown-menu > li:last-child > a {
  border-radius: 0 0 3px 3px;
}
 .dropdown-menu, .dropdown-item {
 color: #fff;
}
.dropdown-item {
    display: inline-block;
    width: 100%;
    padding: 0.25rem .5rem;
    clear: both;
    font-weight: 400;
    color: #FFFFFF;
    text-align: inherit;
    white-space: nowrap;
border: 0;
}

nav ul {
      line-height: 40px;
      list-style: none;
      background-color: rgba(0, 0, 0, 0);
      overflow: hidden;
      color: #fff;
      padding: 0;
      text-align: right;
      margin: 0;
      padding-right: 20px;
    
}

nav.black ul {
  background-color: hsla(0,0%,0%,0.81)!important; 
}

nav ul li {
      display: inline-block;
      padding: 16px;
}

nav ul li a {
      text-decoration: none;
      color: #fff;
}

.menu-icon {
      line-height: 60px;
      width: 100%;
      background: #00000;
      text-align: right;
      box-sizing: border-box;
      padding: 15px;
      cursor: pointer;
      color: #fff;
      display: none;
}
.black{
    background-color: hsla(0,0%,0%,0.84)!important;
}

@media(max-width: 786px) {



      nav ul {
            max-height: 0px;
          background-color: hsla(0,0%,0%,0.84);
      }

      nav.black ul {
        background-color: hsla(0,0%,0%,0.84);
      }

      .showing {
            max-height:24em ;
      }

      nav ul li {
            box-sizing: border-box;
            width: 100%;
            padding: 24px;
            text-align: center;
      }

      .menu-icon {
            display: block;
      }
*/

.dropdown-menu {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.16), 0 8px 8px rgba(0, 0, 0, 0.20);
}

.dropdown-item {
    color: white;
}

.dropdown-item:first-child {
    border-radius: 3px 3px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 3px 3px;
}

.deepgraybg {
    background-image: -webkit-linear-gradient(270deg, rgba(1, 1, 1, 0.79) 0%, rgba(0, 0, 0, 0.72) 45.08%, rgba(0, 0, 0, 0.83) 100%);
    background-image: -moz-linear-gradient(270deg, rgba(1, 1, 1, 0.79) 0%, rgba(0, 0, 0, 0.72) 45.08%, rgba(0, 0, 0, 0.83) 100%);
    background-image: -o-linear-gradient(270deg, rgba(1, 1, 1, 0.79) 0%, rgba(0, 0, 0, 0.72) 45.08%, rgba(0, 0, 0, 0.83) 100%);
    background-image: linear-gradient(180deg, rgba(1, 1, 1, 0.79) 0%, rgba(0, 0, 0, 0.72) 45.08%, rgba(0, 0, 0, 0.83) 100%);
    color: white;
    padding: 3rem;
}

.deepbluebg {
    background: rgb(39, 48, 68);
    background: radial-gradient(circle, rgba(39, 48, 68, 1) 0%, rgba(28, 35, 49, 1) 50%);
    color: white;
    padding: 3rem;
}

.deepbluebg .card {
    color: #1C2331;
}

#aboutheader {
    background-image: url(/img/aboutheader.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.btn:focus,
.btn:active {
    outline: none !important;
}

.cta-btn {
    color: white !important;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none !important;
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 0.45rem 0.5rem;
    -webkit-box-shadow: 0px 0px 1rem rgba(28, 43, 87, 0.28);
    box-shadow: 0px 0px 1rem rgba(28, 43, 87, 0.28);
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cta-btn:hover,
.cta-btn:focus {
    color: #fff;
    background: var(--main-red);
    border: .5px solid var(--logo-red);
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cta-btn2 {
    text-transform: uppercase;
    color: white;
    display: inline-block;
    border-radius: 5px;
    transition: 0.5s;
    border: .5px solid #fff;
}

.cta-btn2:hover,
.cta-btn2:focus {
    color: var(--main-red);
    background: #fff;
    border: .5px solid var(--main-red);
}

.bluelink {
    color: navy;
    text-decoration: underline;
    cursor: pointer;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 7px 17px 9px 17px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #ede9e9;
    border-radius: 50px;
}

.portfolio #portfolio-flters li:clicked {
    transition: all ease-in-out 0.3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.active {
    color: #fff !important;
    background-color: #696969 !important;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    /* [disabled]margin-bottom: 30px; */
    overflow: hidden;
}

.portfolio .portfolio-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: white;
    transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #f7c2cc;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 15px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

.filterDiv {
    float: left;
    /* [disabled]background-color: #B51D31; */
    /* [disabled]color: #ffffff; */
    /* [disabled]width: 100px; */
    /* [disabled]line-height: 100px; */
    /* [disabled]text-align: center; */
    /* [disabled]margin: 2px; */
    display: none;
}


/* The "show" class is added to the filtered elements */

.show {
    display: block;
}

.section-block-grey {
    background-color: #f9f9f9;
}

#productdetails .row {
    margin: 2rem 0;
}

.products .card {
    height: auto;
    margin: 5px;
    border: 1px solid rgba(102, 102, 102, 0.35);
}

#productdetails .card-body p {
    font-size: .8em;
}

.nav-tabs .nav-link.active {
    font-weight: bold;
    background-color: transparent;
    border-bottom: 3px solid #dd0000;
    border-right: none;
    border-left: none;
    border-top: none;
}

#topBtn {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    align-items: center;
    z-index: 9999;
    font-size: 18px;
    background-color: #B51D31;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.4s;
}

#topBtn:hover {
    background-color: #696969;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: #01447e;
}

.heading {
    font-size: 2em;
    letter-spacing: 1.5px;
}

.introbg {
    /* [disabled]min-height: 500px; */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    text-shadow: 2px 2px 2px #0000;
}

.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-50 {
    height: 50vh !important;
}

.vh-100 {
    height: 100vh !important;
}

.tablescroll {
    max-height: 600px;
    /* [disabled]overflow-x: auto; */
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    word-wrap: normal !important;
}

.table-striped .thead-dark {
    border: 1px solid #1C2331;
}

.table-striped thead-dark th:first-child {
    border-radius: .025rem 0 0;
}

.table .thead th:last-child {
    border-radius: 0 0.25rem 0 0;
    border-left: #1C2331;
}

thead,
tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

tbody {
    display: block;
    height: 500px;
    width: 100%;
    overflow: auto;
}

nav ul a {
    font-weight: 600;
    color: ghostwhite;
}

.hovereffect {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    align-items: center;
    cursor: default;
    background-color: #1C2331;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 1rem;
}

.hovereffect img {
    display: block;
    position: relative;
    max-width: none;
    width: calc(100% + 20px);
    object-fit: cover;
    -ms-transition: opacity 0.35s, -ms-transform 0.35s;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -ms-transform: translate3d(-10px, 0, 0);
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    -ms-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hovereffect:hover img {
    opacity: 0.4;
    filter: alpha(opacity=40);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.hovereffect h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: .5em 0;
    font-size: 1.75rem;
    background-color: transparent;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

.hovereffect h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    content: '';
    -ms-transition: -ms-transform 0.35s;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.hovereffect:hover h2:after {
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.hovereffect a,
.hovereffect p {
    color: #FFF;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transition: opacity 0.35s, -ms-transform 0.35s;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.hovereffect:hover a,
.hovereffect:hover p {
    opacity: 1;
    text-decoration: none;
    filter: alpha(opacity=100);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media (max-width: 767.98px) {
    .hovereffect {
        height: 30%;
        margin-bottom: 10px;
    }
    .hovereffect h2 {
        padding: 0.2em 0;
    }
}

.card-header .accicon {
    float: right;
    width: 1.2em;
}

.card-header {
    cursor: pointer;
    border-bottom: none;
}

.card {
    border: 1px solid #ddd;
}

.card-body {
    border-top: 1px solid #ddd;
}

.card-body a {
    color: #444444 !important;
}

.card-body a:hover {
    color: var(--main-red) !important;
    font-weight: bolder;
    text-decoration: none;
}

.card-header:not(.collapsed) .rotate-icon {
    transform: rotate(180deg);
}

.card-header h5 {
    font-size: 1rem;
    line-height: normal;
    font-weight: 500;
}

.card-header:hover {
    background-color: #ddd;
}

#productaccordion th p {
    padding: 0 20px;
}

.vh50 {
    height: 50vh!important;
}

.bg-transparent {
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.bg-transparent-bl {
    background-color: rgba(28, 35, 49, 0.1);
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.navy {
    background-color: rgba(28, 35, 49, .95);
    color: ghostwhite;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.16), 0 8px 8px rgba(0, 0, 0, 0.20);
    padding: .25rem;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.navybg {
    background-color: #1C2331;
    color: white;
    cursor: default;
}

.navybg:hover {
    background-color: var(--navy);
}

#benefits {
    align-items: stretch !important;
}

#benefits .card-body {
    border: none;
    padding: 1rem;
    margin-top: .25em;
}

.showIE {
    display: none;
}

@media (max-width: 1199.98px) {
    .navbar-dark .navbar-nav .nav-link {
        text-align: center;
    }
    .dropdown-item {
        text-align: center;
        -webkit-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }
    .dropdown:hover>.dropdown-menu {
        border: 1px solid #ffffff7a;
        font-size: .9rem;
        -webkit-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }
    .pageIntro {
        text-align: center;
    }
    .pageIntro h1,
    .vh50 h1 {
        font-size: 2.2rem;
    }
    .pageIntro p,
    .pageIntro p,
    p {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    #call,
    #partners,
    #footer,
    #aboutheader,
    .pageIntro,
    .fixedbg {
        background-attachment: fixed;
    }
}

@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {
    .tablescroll {
        width: 1200px;
        min-height: 100%;
    }
    .hideIE,
    .no-deco {
        display: none !important;
    }
    .showIE {
        display: block;
    }
    .navy,
    .dropdown-menu {
        background-color: #1C2331;
    }
    .nav-link.active {
        color: #ED213A
    }
    #benefits .card-body {
        text-align: center!important;
    }
    #footer ul>li {
        border: none;
        color: white;
    }
    #footer ul>li:hover {
        /* color: #171C28;*/
        border: none;
        color: #ED213A;
    }
    .cta-btn:hover {
        background-color: #ED213A;
        border: 1px solid #ED213A
    }
    .hovereffect h2 {
        color: #FFF;
        opacity: 1;
        backface-visibility: visible;
    }
    .hovereffect a,
    .hovereffect p {
        color: #FFF;
        opacity: 0;
        filter: alpha(opacity=0);
        -ms-transition: opacity 0.35s, -ms-transform 0.35s;
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        transform: translate3d(-100px, 0, 0);
    }
    .text-block {
        position: absolute;
        bottom: 1em;
        right: 1em;
        background-color: rgba(28, 35, 49, 0.56);
        color: white;
        padding: .5em;
    }
    .overlay:hover .text-block {
        filter: alpha(opacity=0);
        opacity: 0;
        transition: all 3s, transform .5s;
        transform: translate3d(400px, 0, 0);
    }
}