.list{
    display: block;
    list-style-type: none;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
}
ul.list > li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: rgb(252, 126, 3); /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}
/*ul.indent > li{
    margin-left: 20px;
}
/*ol.indent > li{
    margin-left:20px;
}
ol > li{
    margin-left: 5px;
}*/
.text-orange{
    color: rgb(252, 126, 3) !important;
}

.bg-light-grey{
    background: #464646;
    color: #a4a4a4;
}

.bg-light-grey p{
    font-size: 10px;
}

.web-bg{
    background: rgb(255, 255, 255) url("img/digital-web-bg.jpg") no-repeat scroll 0 0;
}

.force-black{
    color: black !important;
}

.image-full{
    max-width: 100% !important;
    width: 100% !important;
}

.constrain-height{
    max-height: 103.33px !important;
    width: auto !important;
}

.mh-60{
    max-height:60px;
}

.pt-16{
    padding-top: 12px;
}

.footer-widget ul{
    list-style: none;
    float: right;
}

.footer-widget li{
    color: white;
    float: left;
    padding-left: 10px;
    line-height: 80px;
    font-size: 20px;
}

.footer-widget a{
    color: white;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    background-color: white;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
    padding-top: 114px;
}

#navbar{
    z-index: 1000;
}

.story-bg{
    height:250px;
    background: url('img/228east45-2.jpg') center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.parallax-window {
    min-height: 200px;
    background: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7));
}

.footer-form h2{
    color:white;
}

.var-area{
    background: white;
}

.footer-bg input::placeholder{
    color:white;
}

.breadcrumb img{
    vertical-align: middle;
    margin-right:20px;
    height: 100px;
    width: 100px;
}

.hilight-box p{
    border: 3px solid lightgrey;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
    font-weight: bold;
    font-family: "poppins";
    line-height:  200px;
    font-size: 30px;
}

.hilight-box p:hover{
    border: 3px solid rgb(252, 126, 3);
}

.bg-white{
    background: white;
}

.footer-sm a{
    color: white;
    font-size: 30px;
    margin: 10px 15px;
}

.footer-top h3{
    text-align: center;
}

.contact-form{
    background: rgb(252, 126, 3);
}
.page-content a{
color: rgb(252, 126, 3);
}
.article-image{
    float:right;
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
}
.article-image.left{
    float:left;
}
.center-image{
    margin: 0px auto;
    display: block;
}

.white-paper-column button{
    background: rgb(252, 126, 3);
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 5px;
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    width: 340px;
    height: 340px;
    margin-bottom: 30px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background-color: white;
}
.flip-card-inner img{
    padding: 30px;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: transparent;
    color: black;
    line-height: 300px;
}

/* Style the back side */
.flip-card-back {
    background-color: rgb(252, 126, 3);
    color: black;
    transform: rotateY(180deg);
    padding: 30px;
}

.flip-card-back p{
    font-size: 16px;
}
.grow { transition: all .3s ease-in-out; }
.grow:hover { transform: scale(1.05); }
.white-paper-background{
    background-color: #eeeeee;
    padding: 30px 0;
}
.white-paper-column{
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    padding: 15px;
}
.white-paper-column input{
    border-color: black;
    border-style: solid;
    border-width: 0 0 1px 0;
    margin-bottom: 12px;
    width: 100%;
}
.white-paper-column input:focus{
    outline: 0;
}