i:after {
    content: "\00a0";
}
.hero {
    position: relative;
    height: 500px;
    width: 100%;
    display: block;
}

.hero::before {
    content: "";
    background-image: url('/graphics/banner.jpg');
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.69;
}

.hero h1 {
    position: relative;
    color: #063970;
    font-size: 4rem;
    line-height: 0.9;
    text-align: center;
    padding-top: 50px;
}

.hero h3 {
    position: relative;
    color: #063970;
    font-size: 2rem;
    line-height: 0.9;
    text-align: center;
    padding-top: 150px;
}

@media (max-width: 479px) {
    .hero h1 {
        position: relative;
        color: #063970;
        font-size: 3rem;
        line-height: 0.9;
        text-align: center;
        padding-top: 50px;
    }

    .hero h3 {
        position: relative;
        color: #063970;
        font-size: 1rem;
        line-height: 0.9;
        text-align: center;
        padding-top: 150px;
    }
}
.logo-default{ float: left;}

.blocked {
    margin: 5px;
}

a.width-full {
    width: 100%;
}

h2.inserted {
    color: #2a4780;
    width: 100%;
    text-align: center;
    line-height: 0.05em;
    margin: 30px 0 30px;
    font-variant: small-caps;
    background: -moz-linear-gradient(left, rgba(42,71,128,0) 0%, rgba(42,71,128,0) 10%, rgba(42,71,128,0.65) 50%, rgba(42,71,128,0) 90%, rgba(42,71,128,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(42,71,128,0)), color-stop(10%,rgba(42,71,128,0)), color-stop(50%,rgba(42,71,128,0.65)), color-stop(90%,rgba(42,71,128,0)), color-stop(100%,rgba(42,71,128,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(42,71,128,0) 0%,rgba(42,71,128,0) 10%,rgba(42,71,128,0.65) 50%,rgba(42,71,128,0) 90%,rgba(42,71,128,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(42,71,128,0) 0%,rgba(42,71,128,0) 10%,rgba(42,71,128,0.65) 50%,rgba(42,71,128,0) 90%,rgba(42,71,128,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(42,71,128,0) 0%,rgba(42,71,128,0) 10%,rgba(42,71,128,0.65) 50%,rgba(42,71,128,0) 90%,rgba(42,71,128,0) 100%); /* IE10+ */
    background: linear-gradient(left, rgba(42,71,128,0) 0%,rgba(42,71,128,0) 10%,rgba(42,71,128,0.65) 50%,rgba(42,71,128,0) 90%,rgba(42,71,128,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#00000000',GradientType=1 );
}

    h2.inserted span {
        background: var(--grey-100) !important;
        padding: 0 10px;
    }


/* Create three columns of equal width */
.columns {
    float: left;
    width: 33.3%;
    padding: 8px;
}

/* Style the list */
.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* Add shadows on hover */
.price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

/* Pricing header */
.price .header {
    background-color: #2a4780;
    color: white;
    font-size: 25px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* List items */
.price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
    background-color: #ddd;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #222;
}

/* Grey list item */
.price .grey {
    background-color: #becce7;
    font-size: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #222;
}

/* The "Sign Up" button */
.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

/* Change the width of the three columns to 100%
(to stack horizontally on small screens) */
@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}
.text-color-dark h1 {
    color: #777;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #becce7;
    -webkit-transition: .4s;
    transition: .4s;
    max-height: 18px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #506080;
}

input:focus + .slider {
    box-shadow: 0 0 1px #506080;
}

input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 17px;
}

.slider.round:before {
    border-radius: 50%;
}

label.switch {
    margin: 20px 5px 15px 0;
}
@media (min-width: 768px) {
    .collapse.dont-collapse-sm {
        display: block;
        height: auto !important;
        visibility: visible;
    }
}