html {
    font-size: 16px;
}

body {
    padding-bottom: 20px;
    font-size: 1rem;
    font-family: Raleway, sans-serif;
}

.banner-text, h1, h2, h3, h4, h5 {
    font-family: Poppins, sans-serif;
}
/* carousel */
#featured-event {
    padding: 0 10px 30px 10px;
    margin: 30px 0px 0px;
}

    #featured-event .carousel-item, #featured-event .item, #featured-event .event-details {
        height: 350px;
        overflow: hidden;
    }

    /* Control buttons  */
    #featured-event .carousel-control {
        background: none;
        color: #222;
        font-size: 2.3em;
        text-shadow: none;
        margin-top: 30px;
        position: absolute;
        top: 0;
    }

        /* Previous button  */
        #featured-event .carousel-control.left {
            left: -12px;
        }
        /* Next button  */
        #featured-event .carousel-control.right {
            right: -12px !important;
        }

    /* Changes the position of the indicators */
    #featured-event .carousel-indicators {
        right: 50%;
        top: auto;
        bottom: 0px;
        margin-right: -19px;
    }

        /* Changes the color of the indicators */
        #featured-event .carousel-indicators li {
            background: #c0c0c0;
        }

        #featured-event .carousel-indicators .active {
            background: #333333;
        }

@media (min-width: 768px) {
    #featured-event {
        margin-bottom: 0;
        padding: 0 40px 30px 40px;
        margin-top: 30px;
    }
}

/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) {
    #featured-event .carousel-indicators {
        bottom: -20px !important;
    }

        #featured-event .carousel-indicators li {
            display: inline-block;
            margin: 0px 5px;
            width: 15px;
            height: 15px;
        }

            #featured-event .carousel-indicators li.active {
                margin: 0px 5px;
                width: 20px;
                height: 20px;
            }
}

#circle {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
}

.loader {
    width: 100%;
    height: 100%;
    border: 8px solid #162534;
    border-top: 8px solid #09f;
    border-radius: 50%;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}


.spinner {
    position: relative;
    width: 30px;
    height: 30px;
    left: 48%;
}

    .spinner .blob {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border: 2px solid black;
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

        .spinner .blob.top {
            top: 0;
            -webkit-animation: blob-top 1s infinite ease-in;
            animation: blob-top 1s infinite ease-in;
        }

        .spinner .blob.bottom {
            top: 100%;
            -webkit-animation: blob-bottom 1s infinite ease-in;
            animation: blob-bottom 1s infinite ease-in;
        }

        .spinner .blob.left {
            left: 0;
            -webkit-animation: blob-left 1s infinite ease-in;
            animation: blob-left 1s infinite ease-in;
        }

    .spinner .move-blob {
        background: black;
        top: 0;
        -webkit-animation: blob-spinner-mover 1s infinite ease-in;
        animation: blob-spinner-mover 1s infinite ease-in;
    }

@-webkit-keyframes blob-bottom {
    25%, 50%, 75% {
        top: 50%;
        left: 100%;
    }

    100% {
        top: 0;
        left: 50%;
    }
}

@keyframes blob-bottom {
    25%, 50%, 75% {
        top: 50%;
        left: 100%;
    }

    100% {
        top: 0;
        left: 50%;
    }
}

@-webkit-keyframes blob-left {
    25% {
        top: 50%;
        left: 0;
    }

    50%, 100% {
        top: 100%;
        left: 50%;
    }
}

@keyframes blob-left {
    25% {
        top: 50%;
        left: 0;
    }

    50%, 100% {
        top: 100%;
        left: 50%;
    }
}

@-webkit-keyframes blob-top {
    50% {
        top: 0;
        left: 50%;
    }

    75%, 100% {
        top: 50%;
        left: 0;
    }
}

@keyframes blob-top {
    50% {
        top: 0;
        left: 50%;
    }

    75%, 100% {
        top: 50%;
        left: 0;
    }
}

@-webkit-keyframes blob-spinner-mover {
    0%, 100% {
        top: 0;
        left: 50%;
    }

    25% {
        top: 50%;
        left: 100%;
    }

    50% {
        top: 100%;
        left: 50%;
    }

    75% {
        top: 50%;
        left: 0;
    }
}

@keyframes blob-spinner-mover {
    0%, 100% {
        top: 0;
        left: 50%;
    }

    25% {
        top: 50%;
        left: 100%;
    }

    50% {
        top: 100%;
        left: 50%;
    }

    75% {
        top: 50%;
        left: 0;
    }
}


/*back to top btn*/
.back-to-top {
    direction: initial;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

    .back-to-top .mdi {
        color: #fff;
        margin: 0;
        position: relative;
        left: 13px;
        top: 12px;
        font-size: 1.5rem;
        cursor: pointer;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .back-to-top:hover {
        background: rgba(0, 0, 0, 0.9);
    }

        .back-to-top:hover i {
            color: #fff;
            text-decoration: none;
        }


.eventcard-wrapper a {
    color: initial;
    text-decoration: none;
    background-color: transparent;
}

a {
    cursor: pointer;
}

.card-top {
    overflow: hidden;
    margin: 0 0 15px 0;
}

    .card-top img {
        height: auto;
        max-width: 100%;
        display: block;
    }

.eventcard-wrapper {
    padding: 1rem;
}

.eventcard {
    background-color: #F1F8FE;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

    .eventcard:hover .eventcard img {
        -webkit-filter: contrast(100%);
        filter: contrast(100%);
    }

    .eventcard .card-content {
        flex-direction: column;
        padding: 1rem;
        color: #88C8E3;
        overflow: hidden;
    }


    .eventcard .card-title {
        margin-bottom: .75rem;
        font-size: 1.4rem;
        font-weight: bold;
        opacity: .8;
        word-wrap: break-word;
        color: #002447;
    }

    .eventcard .eventcard-footer {
        width: 90%;
        padding: 1rem 1rem 0.1rem 1rem;
        color: #88C8E3;
        overflow: hidden;
    }

@media (min-width:768px) {
    .eventcard .eventcard-footer {
        position: absolute;
        bottom: 0;
    }

    .eventcard .card-content {
        flex-direction: column;
        padding: 1rem;
        color: #88C8E3;
        max-height: 45%;
        overflow: hidden;
    }
}

.eventcard .card-text {
    flex: 1 1 auto;
}

    .eventcard .card-text:last-child {
        margin-bottom: 0.5rem;
    }

    .eventcard .card-text:not(:last-child) {
        border-bottom: 2px solid #BCE0FD;
    }

.event-add-fav {
    position: absolute;
    right: 1rem;
    color: #002447;
    z-index: 100;
}

@media (min-width:768px) {
    .grid-column.featured-event .eventcard .card-text {
        font-size: 1.5rem;
    }
}

#featured-event .img-wrepper {
    width: 100%;
}

#featured-event .carousel-inner img {
    margin: 0 auto;
}

#featured-event .carousel-inner img {
    margin: 0 auto;
    border-radius: 5px;
}

.events-wrepper {
    margin-bottom: 100px;
}

.mdi {
    margin: 0px 5px 0px 5px;
    vertical-align: middle;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
}


.mdi-24px {
    font-size: 18px;
}

.mdi.mdi-32px {
    font-size: 32px;
}

.mdi.mdi-36px {
    font-size: 36px;
}

.md-48 {
    font-size: 48px;
}

.mdi.mdi-60px {
    font-size: 60px;
}

.mdi.mdi-80px {
    font-size: 80px;
}

.add-event {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 50%;
    width: 200px;
    height: 45px;
    text-decoration: none;
    background: none;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    box-shadow: 2px -2px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

    .add-event:hover .add-event-info {
        visibility: visible;
        clip: rect(-50px, 200px, 225px, -50px);
        transition: clip 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
        opacity: 1;
    }

.add-event-info {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 225px;
    padding: 25px 0;
    background: white;
    box-sizing: border-box;
    -webkit-transform: translate(0, -200px);
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate(0, -200px);
    transform: translate3d(0, -200px, 0);
    transition: visibility 0.2s 0.3s, opacity 0.2s 0.3s, clip 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    clip: rect(200px, 200px, 225px, 0);
    will-change: clip;
    opacity: 0;
}

    .add-event-info:after {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 225px;
        background: none;
        box-shadow: 2px -2px 30px rgba(0, 0, 0, 0.2);
    }

    .add-event-info .add-event-title {
        display: flex;
        flex-direction: column;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: auto;
        align-items: flex-start;
        justify-content: flex-end;
        height: 36px;
        padding: 10px 10px 5px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #333;
        box-sizing: border-box;
    }

.event-cta {
    display: flex;
    position: relative;
    height: 100%;
    align-items: center;
    background: white;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

    .event-cta .event-cta-text {
        flex-grow: 1;
        font-weight: 700;
        text-align: left;
        letter-spacing: 1px;
        color: #333;
    }

@media (max-width: 640px) {
    .add-event {
        bottom: 20px;
        width: 100%;
        height: 45px;
        text-decoration: none;
        background: none;
        border-radius: 0;
        box-shadow: 2px -2px 30px rgba(0, 0, 0, 0.2);
        cursor: pointer;
    }

    .event-cta {
        border-radius: 0;
    }

        .event-cta .event-cta-text {
            text-align: center;
        }
}

.company-logo {
    max-width: 250px;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.clear {
    clear: both;
    overflow: hidden;
}

#block_error {
    width: 845px;
    height: 384px;
    border: 1px solid #cccccc;
    margin: 72px auto 0;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fff url(../img/error.gif) no-repeat 0 51px;
}

    #block_error div {
        padding: 100px 40px 0 186px;
    }

        #block_error div h1 {
            color: #218bdc;
            font-size: 24px;
            display: block;
            padding: 0 0 14px 0;
            border-bottom: 1px solid #cccccc;
            margin-bottom: 12px;
            font-weight: normal;
        }

@media (min-width: 768px) {
    .dropzone {
        height: 120px;
    }
}

@media (min-width:768px) {
    .grid-row {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 25px;
        margin: 25px 0;
        grid-template-areas:
            "a b c";
    }

        .grid-row.grid-left {
            grid-template-areas:
                "a a b"
                "a a c";
        }

        .grid-row.grid-right {
            grid-template-areas:
                "b a a"
                "c a a";
        }

        .grid-row.grid-column {
            height: 300px;
            grid-area: a;
        }

    .grid-column.featured-event {
        height: 625px;
    }

    .eventcard {
        margin: 0;
    }

    .grid-column:not(.featured-event) .eventcard {
        height: 300px;
    }

        .grid-column:not(.featured-event) .eventcard .card-top {
            height: 100px;
        }

        /*.grid-column:not(.featured-event) .eventcard .card-title {
            max-width: 90%;
        }*/

    .grid-row.grid-left .grid-column:not(.featured-event) {
        grid-area: b;
    }

        .grid-row.grid-left .grid-column:not(.featured-event) ~ .grid-column:not(.featured-event) {
            grid-area: c;
        }



    .grid-row.grid-left .grid-column.featured-event,
    .grid-row.grid-right .grid-column.featured-event {
        grid-area: a;
    }

    .grid-row.grid-right > .grid-column:not(.featured-event) ~ .grid-column:not(.featured-event) {
        grid-area: b;
    }

    .grid-row.grid-right .grid-column:not(.featured-event) ~ .grid-column:not(.featured-event) {
        grid-area: c;
    }

    .grid-row.grid-left > .grid-column:not(.featured-event) > .eventcard,
    .grid-row.grid-right > .grid-column:not(.featured-event) > .eventcard {
        border-radius: 6px 6px 0 0;
    }

    .grid-row.grid-left > .grid-column:not(.featured-event) ~ .grid-column:not(.featured-event) > .eventcard,
    .grid-row.grid-right > .grid-column:not(.featured-event) ~ .grid-column:not(.featured-event) > .eventcard {
        border-radius: 0 0 6px 6px;
        margin-top: 15px;
    }

    .grid-column.featured-event .eventcard {
        height: 625px;
    }

        .grid-column.featured-event .eventcard .card-top {
            height: 200px;
        }
}

.form-group {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}


@media (min-width:1250px) {
    .grid-column:not(.featured-event) .eventcard .card-top {
        height: 84px;
    }

    .grid-column.featured-event .eventcard .card-top {
        height: 177px;
    }
}

@media (min-width:992px) and (max-width:1250px) {
    .grid-column:not(.featured-event) .eventcard .card-top {
        height: 92px;
    }

    .grid-column.featured-event .eventcard .card-top {
        height: 94px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .grid-column:not(.featured-event) .eventcard .card-top {
        height: 43px;
    }
}


.form-group .input-group {
    flex-wrap: nowrap;
}

.validation-summary-errors {
    font-size: 1.1rem;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #f60000;
    background-color: #ffe0e0;
    display: block;
}

.md-dialog .modal-body {
    max-height: 500px;
    overflow: auto;
}

.input-group > .control-label {
    margin-left: 1rem;
}

.btn {
    background-color: #008fdb;
    color: white;
    border: 1px solid #A0D3E9;
}

a h3 {
    color: #002447;
}

.clearfix {
    clear: both;
}

.btn-secondary {
    background-color: white;
    color: #008fdb;
}

.btn:hover {
    background: #88C8E3;
}

.btn-secondary:hover {
    border: 1px solid #008FDB;
}

.btn-default {
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
}

.btn-outline-primary {
    background-color: white;
    color: #008fdb;
    border-color: #88C8E3;
}

    .btn-outline-primary:hover {
        background-color: #0069d9;
        border-color: #0062cc;
        color: white;
    }

.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5, .col-xl-1-5 {
    width: 12.49995%;
}

.rectangle-heading {
    width: 349px;
    height: 56px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    background: #008fdb;
    text-align: left;
    color: white;
    padding-top: 13px;
    padding-left: 2rem;
}

.color-inverse {
    color: white;
    background-color: #002447;
}

.card-light .card-header {
    color: white;
    background-color: #002447;
    padding: 0;
}

    .card-light .card-header > div {
        align-items: initial;
    }


.card-block-header {
    font-size: 24px;
    font-weight: bold;
    padding-left: 1rem;
    background-color: #FAFDFF;
    height: 4rem;
    vertical-align: middle;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

    .card-block-header img {
        height: 2rem;
        margin-right: 1rem;
    }

.card-table {
    display: flex;
    border-bottom: 1px solid #dee2e6;
}

    .card-table > div {
        width: 24%;
        display: inline-flex;
        padding: 8px 16px;
        border-left: 1px solid #dee2e6;
        position: relative;
        min-height: 70px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .card-table > div:first-child {
            width: 28%;
            padding-right: 20px;
            border-left: 0;
            align-items: flex-start;
        }

    .card-table.d30-d70 > div:not(:first-child) {
        width: 70%;
        align-items: flex-start;
    }

    .card-table.d30-d70 > div:first-child {
        width: 30%;
    }


.card-header .card-table {
    border-bottom: 0;
}

    .card-header .card-table > div {
        align-items: inherit;
        padding-bottom: 0px;
    }


ul.bordered {
    padding: 0;
}

    ul.bordered li {
        list-style: none;
        padding: 10px;
        border-bottom: 1px solid #d9d9d8;
    }

        ul.bordered li:last-child {
            border-bottom: none
        }


ul.bullets {
}

    ul.bullets li {
        list-style: none;
    }



ol.list-agreement {
}

    ol.list-agreement li {
        margin-bottom: 2rem;
    }

        ol.list-agreement li p:first-child {
            font-size: 2rem;
        }

        ol.list-agreement li::marker {
            font-size: 2rem;
        }

        ol.list-agreement li ol {
            list-style-type: lower-alpha;
        }

            ol.list-agreement li ol li {
                margin-bottom: 1rem;
            }

                ol.list-agreement li ol li::marker {
                    font-size: 1rem;
                }


.img-frame {
    padding: .25rem;
    background-color: #fff;
    border: 2px solid #002447;
    border-radius: .25rem;
    max-width: 100%;
    height: auto;
}

/* end general */

header {
    box-shadow: 0px 3px 6px #00000029;
    height: 70px;
    /*margin: 0 -15px;*/
}

.navbar {
    padding-top: 0;
}

.nav-item {
    margin-top: 17px;
    margin-left: 4rem;
}

    .nav-item > .nav-link {
        font-family: Raleway;
        font-size: 14px;
        color: #002447;
    }

        .nav-item > .nav-link.active,
        .nav-item > .nav-link:hover {
            color: #008fdb;
        }

.navbar .btn {
    margin-top: 15px;
    margin-left: 4rem;
    padding-top: 0.3rem;
    font-size: 1em;
    margin-right: 1rem;
}

.navbar-brand {
    padding-top: 0;
}

    .navbar-brand > img {
        display: inline;
        margin-top: 17px;
        margin-left: 5rem;
        height: 38px;
        border: none;
        padding: 0px;
    }


.banner-content {
    padding-top: 60px;
}

.banner-text {
    padding-top: 1rem;
    text-align: left;
}

    .banner-text a {
        text-decoration: none;
    }

    .banner-text p {
        font-size: 16px;
        font-weight: bold;
    }

    .banner-text .banner-caption {
        font-family: Poppinsm, sans-serif;
        font-size: 20px;
        line-height: 35px;
    }

    .banner-text .banner-caption-big {
        font-family: Poppins;
        font-size: 69px;
    }

    .banner-text .banner-title {
        font-family: Poppins, sans-serif;
        font-size: 50px;
    }

    .banner-text i.mdi {
        vertical-align: middle;
    }

.banner-title a, .banner-caption a {
    color: white;
}

.banner-right {
    text-align: center;
}

    .banner-right img {
        max-width: 95%;
        max-height: fit-content;
    }

.banner-footer-alt {
    background-color: #002447;
}

@media (max-width: 992px) and (min-width: 600px) {
    .navbar button {
        margin-left: 2rem;
    }

    .nav-item {
        margin-left: 1.4rem;
    }

    .navbar-brand > img {
        margin-left: 2rem;
    }

    .banner-content {
        padding-top: 30px;
    }
}

@media (max-width: 600px) {
    .navbar button {
        margin-left: 1rem;
        margin-top: 12px;
    }

    .nav-item {
        margin-left: 1rem;
    }

    .navbar-brand > img {
        margin-left: 0;
    }

    .banner-content {
        padding-top: 10px;
    }
}

.section {
    background-color: white;
    color: #002447;
}

.colors-alt {
    background-color: #002447;
    color: white;
}

    .colors-alt a {
        color: #e0eef7;
    }

        .colors-alt a:hover {
            color: #008FDB;
        }

a.ems-feature {
    text-decoration: none;
}


h2 {
    font-family: poppins;
}

    h2.section-title {
        text-align: center;
        font-size: 48px;
    }

h3.section-title {
    text-align: center;
    font-size: 32px;
}

.section-subtitle {
    font-family: poppins;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.colors-alt .section-title {
}

.page-section {
    padding-top: 4rem;
    font-family: Raleway;
    font-size: 20px;
    color: #002447;
}


/* about page */

#aboutpage .banner-text {
    height: 681px;
    padding-top: 10rem;
    overflow: hidden;
    line-height: 68px;
    color: #002447;
    text-shadow: -2px -2px 2px white, 2px -2px 2px white, -2px 2px 2px white, 2px 2px 2px white;
}

@media (max-width: 992px) {
    #aboutpage .banner-text {
        padding-top: 5rem;
    }
}


@media (max-width: 992px) {
    .page-title {
        padding-left: 4rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        height: 681px;
        padding-left: 2rem;
        padding-top: 2rem;
    }
}

.about-back {
    background-image: url(https://www.eventact.com/images/about/cloud-blue.svg), url(https://www.eventact.com//images/about/cloud-alice.svg), url(https://www.eventact.com/images/about/back-white-left.png), url(https://www.eventact.com/images/about/hello.png);
    background-position: left -208px top 408px, right -618px top 844px, right 490px top -15px, right top;
    background-repeat: no-repeat;
    background-size: contain,contain,auto,auto;
    min-height: 128rem;
}

.support-back {
    background-image: url(https://www.eventact.com/images/about/cloud-blue.svg), url(https://www.eventact.com/images/about/cloud-alice.svg), url(https://www.eventact.com/images/about/hello.png);
    background-position: left -208px top 408px, right -618px top 844px, right top;
    background-repeat: no-repeat;
    background-size: contain,contain,auto,auto;
    min-height: 128rem;
}

@media (max-width: 768px) {
    .about-back {
        background-size: auto,auto,auto,auto;
    }
}

#contact-form > input,
#contact-form > textarea {
    background-color: rgba(247,252,255,255);
    width: 100%;
    margin-right: 50px;
    margin: 10px;
    padding: 8px;
    border: 2px solid white;
}

/* end about page */

/* home page */

#homepage .banner-content {
    background-image: url(https://www.eventact.com/images/home/back_banner.svg);
    background-repeat: no-repeat;
    background-size: 85% 85%;
    background-position-x: 100%;
    background-position-y: 48px;
}

.home-back {
    background-image: url(https://www.eventact.com/images/home/back_features.svg);
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 100px;
}

#event-planner {
    background-color: transparent;
}

#event-planner_bk, .back-topstraight {
    background-image: url(https://www.eventact.com/images/home/back_planner_type.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -235px;
}

@media (min-width: 1200px) {
    #event-planner_bk {
        background-position-y: -300px;
    }
}

@media (min-width: 1500px) {
    #event-planner_bk {
        background-position-y: -500px;
    }
}

@media (max-width: 960px) {
    .home-back {
        background-size: 2400px;
    }
}

@media (max-width: 768px) {
    .home-back {
        background-size: 1800px;
    }

    #homepage .banner-content {
        background-position-y: bottom;
    }
}

.ems-feature {
    margin-top: 1rem;
}

    .ems-feature a, .ems-feature a:hover {
        color: white;
        text-decoration: none;
    }

.ems-feature-title {
    font-family: poppins;
}

.ems-feature img {
    padding-bottom: 15px;
    width: 85px;
    height: 60px;
}

.ems-feature-text {
    padding-top: 6px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 28px;
}

.planner-type {
    text-align: center;
    border: 2px solid;
    border-radius: 3%;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

    .planner-type img {
        width: 100%;
    }

.planner-title {
    padding-top: 0.7rem;
}

.planner-type .btn {
    position: absolute;
    bottom: 1.2rem;
    transform: translate(-50%, -50%);
}

.planner-text {
    padding-right: 1rem;
    padding-left: 1rem;
}

.planner-type {
    max-width: 90%;
    width: 320px;
    height: 480px;
}

.planner-text {
    width: 100%;
}

@media (min-width: 376px) {
    .planner-type {
        width: 350px;
        height: 31rem;
    }
}

@media (min-width: 576px) {
    .planner-type {
        width: 450px;
        height: 580px;
    }
}

@media (min-width: 768px) {
    .planner-type {
        width: 225px;
        height: 32rem;
    }
}

@media (min-width: 992px) {
    .planner-type {
        width: 280px;
        height: 500px;
    }
}

/* end home page */


/* info page */

#infopage #banner {
    min-height: 14rem;
}


#infopage .banner-text {
    text-shadow: 1px 1px 2px #002447;
}

    #infopage .banner-text .blog-link {
        text-decoration: underline;
        color: white;
    }

#infopage .banner-title {
    color: white;
}

#infopage .banner-info {
    color: white;
}

#infopage #banner.alt .banner-info {
    color: #002447;
}

#infopage .banner-caption {
    max-width: 75%;
}

#infopage .banner-text {
    text-shadow: 1px 1px 2px #002447;
    color: #008FDB;
}

    #infopage .banner-text .blog-link {
        text-decoration: underline;
        color: #008FDB;
    }


/* planner page */

#plannerpage #banner {
    background-color: #e0eef7;
}

#plannerpage .banner-footer {
    background-image: url(https://www.eventact.com/images/planner/back_banner.svg);
    background-repeat: repeat-x;
    height: 150px;
}

@media (max-width: 992px) {
    #plannerpage .banner-footer {
        background-size: 2000px;
    }
}

@media (max-width: 768px) {
    #plannerpage .banner-footer {
        background-size: 1200px;
    }
}

.features-rows .row {
    margin-top: 50px;
}

.feature-img {
    text-align: center;
}

    .feature-img img {
        position: relative;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        max-height: 85%;
    }

.feature-text {
    text-align: left;
    color: #002447;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.feature-title {
    font-size: 33px;
}

.feature-desc {
    font-size: 1.1rem;
}


/* end planner page */

/* blog page */

#blogpage #banner {
    background-color: #008fdbff;
    background-image: url(https://www.eventact.com/images/blog/cluod-left.svg), url(https://www.eventact.com/images/blog/event-marketing/arrow_right.png);
    background-position: 0px -100px, +25px -100px;
    background-repeat: no-repeat;
}

@media (min-width: 576px) {
    #blogpage #banner {
        background-position: 10px -100px, +100px -100px;
    }
}

@media (min-width: 728px) {
    #blogpage #banner {
        background-position: 200px -100px, +345px -100px;
    }
}

@media (min-width: 992px) {
    #blogpage #banner {
        background-position: 300px -100px, +445px -100px;
    }
}

@media (min-width: 1200px) {
    #blogpage #banner {
        background-position: 550px -100px, 695px -100px;
    }
}

@media (min-width: 1500px) {
    #blogpage #banner {
        background-position: 750px -100px, 895px -100px;
    }
}

@media (min-width: 1800px) {
    #blogpage #banner {
        background-position: 950px -100px, 1095px -100px;
    }
}

#blogpage .banner-text {
    text-shadow: 1px 1px 2px #008fdbff;
    color: white;
}

    #blogpage .banner-text a {
        color: white;
    }


#blogpage .banner-caption {
    max-width: 75%;
}

.tips {
    margin-top: 2rem;
    margin-left: 2rem;
}

.tip-box {
    margin-top: 2rem;
}

.tip-heading {
    text-align: left;
    color: #008fdb;
    font-size: 16px;
    line-height: 25px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.tip-text {
    text-align: left;
    color: #002447;
    font-size: 20px;
    line-height: 25px;
    font-weight: normal;
    padding-bottom: 1rem;
}

    .tip-text a {
        color: #002447;
    }

.tips .tip-box:not(:last-child) {
    border-bottom: #88C8E3 solid 1px;
}

.blog-list {
    background-image: url(https://www.eventact.com/images/blog/cloud-topright.svg);
    background-position: top right;
    background-repeat: no-repeat;
}


.blog-post {
    text-align: left;
    border: solid #002447 3px;
    border-radius: 14px;
    background-color: #002447;
}

    .blog-post .card-body {
        background-color: white;
        border-bottom-right-radius: 14px;
        border-bottom-left-radius: 14px;
    }

        .blog-post .card-body:first-child {
            background-color: white;
            border-top-right-radius: 14px;
            border-top-left-radius: 14px;
        }

    .blog-post .blog-footnote {
        position: absolute;
        bottom: 1.5rem;
    }

    .blog-post .blog-info {
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
    }

.blog-post {
    height: 30rem;
}

.blog-post-tall {
    height: 40rem;
}

.blog-post-wide .card-body {
    padding-left: 2rem;
}

.blog-post.blog-post-highlight .card-body {
    background: #008fdb;
    color: white;
}

.blog-post.blog-post-highlight .card-title {
    color: white;
    font-size: 48px;
    line-height: 64px;
}

.blog-post.blog-post-highlight .btn {
    background-color: white;
    color: #008fdb;
}

.blog-post.blog-post-highlight input {
    text-align: center;
    color: white;
    border: solid 2px white;
    border-radius: 4px;
    background-color: #008fdb;
    outline-color: white;
}

    .blog-post.blog-post-highlight input::placeholder {
        border: none;
        color: white;
        font-size: 16px;
    }

.blog-post .card-img-top {
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.blog-post .card-title {
    font-family: Poppins;
    color: #002447;
    font-size: 30px;
    line-height: 42px;
}

    .blog-post .card-title a {
        color: #002447;
        text-decoration: none;
    }

        .blog-post .card-title a:hover {
            color: #0056b3;
        }

.blog-post-wide .card-title {
    width: 80%;
}

/* end blog page */


/* blog article */

#articlepage #banner {
    height: 32rem;
}

#articlepage .banner-title {
    color: white;
}

#articlepage .banner-info {
    color: black;
}

#articlepage .banner-caption {
    max-width: 75%;
}

#articlepage .banner-text {
    text-shadow: 0 2px 2px #008fdb, 1px 0 2px #008fdb, 0 -2px 2px #008fdb, -2px 0 2px #008fdb;
}

    #articlepage .banner-text.outline .banner-title {
        color: white;
        text-shadow: 0 2px 3px #002447, 1px 0 3px #002447, 0 -2px 3px #002447, -2px 0 3px #002447;
    }

    #articlepage .banner-text.outline .banner-info {
        color: #002447;
        text-shadow: 0px 1px white, 1px 0 white, 0 -1px white, -1px 0 white;
    }

    #articlepage .banner-text.alt-outline .banner-title {
        color: #002447;
        text-shadow: 0 2px 3px white, 1px 0 3px white, 0 -2px 3px white, -2px 0 3px white;
    }

#articlepage .banner-textalt-outline .banner-info {
    color: white;
    text-shadow: 0px 1px #002447, 1px 0 #002447, 0 -1px #002447, -1px 0 #002447;
}


#articlepage .banner-text .blog-link {
    text-decoration: underline;
    color: #008FDB;
}

.blog-article .article-info {
    font-size: 18px;
    color: #008fdb;
    font-weight: bold;
}

.blog-article h2 {
    font-family: poppins;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-article h2 {
    font-family: poppins;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}


.blog-article p {
    font-size: 21px;
    line-height: 2rem;
}


    .blog-article p + h3 {
        margin-top: 2rem;
    }

    .blog-article p + h2 {
        margin-top: 2rem;
    }

.blog-article .article-highlight, .blog-article .lead {
    color: #008fdb;
    font-size: 1.2em;
    line-height: 42px;
}


.blog-article .figure {
    border-radius: 4px;
    border: solid 1px;
    padding: 4px;
}

.full-row-img {
    max-height: 450px;
}

.left-inline-img-span {
    float: left;
    clear: right;
    margin-right: 10px;
    border-radius: 10px;
}

.right-inline-img-span {
    float: right;
    margin-left: 10px;
    border-radius: 10px;
}

.blog-article .inline-img {
    max-width: 380px;
    max-height: 280px;
}

.blog-article .inline-img-caption {
    font-size: 14px;
    font-weight: bold;
}

.author-headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

/* end blog article */

footer {
    background-color: #fafdff;
    margin-top: 8rem;
}

.footer-container {
    text-align: left;
    padding: 3rem 1.5rem 2rem 1.5rem;
    font-size: 20px;
}

#policy-footer {
    text-align: left;
    padding: 3rem 1.5rem 2rem 1.5rem;
    background-color: #002447;
}

    #policy-footer .row {
        padding: 0 1.5rem;
    }

    #policy-footer .muted-text {
        color: #fafdff;
        white-space: nowrap;
    }

    #policy-footer a:hover {
        color: #fafdff;
    }

    #policy-footer button.dropdown-toggle {
        outline: none;
        border: 0;
        background-color: transparent;
    }

.footer-company {
    width: 161px;
    height: 124px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    color: #002447;
}

    .footer-company > .icons {
        margin-top: 30px
    }

        .footer-company > .icons > img:first-child {
            margin: 0;
            margin-right: 10px;
        }

        .footer-company > .icons > img {
            margin: 0 10px;
        }

.inner-footer {
    background: url("https://www.eventact.com/skins/path_1502.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

    .footer-links li {
        margin: 5px 0;
    }

        .footer-links li a {
            padding: 5px 0;
            color: #008FDB;
        }

.footer-links-inline {
    color: #88c8e3;
}

@media (max-width: 720px) {
    .footer-links-inline {
        padding-left: 0;
    }
}

.footer-links-inline li {
    display: inline;
    white-space: nowrap;
}

    .footer-links-inline li:not(:last-child) a::after {
        content: "●";
        font-size: 6px;
        position: relative;
        top: -2px;
        padding: 0px 4px;
    }

.btn-outline-info {
    border-color: #88c8e3;
    color: white
}

    .btn-outline-info:hover {
        background-color: #88c8e3;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}


/* info page */

#infopage #banner {
    background-color: #008fdbff;
    background-image: url(https://www.eventact.com/images/blog/cluod-left.svg), url(https://www.eventact.com/images/banner-low-poly.png);
    background-position: 0px -100px, +25px -100px;
    background-repeat: no-repeat;
}

@media (min-width: 576px) {
    #infopage #banner {
        background-position: 10px -100px, +100px -100px;
    }
}

@media (min-width: 728px) {
    #infopage #banner {
        background-position: 200px -100px, +345px -100px;
    }
}

@media (min-width: 992px) {
    #infopage #banner {
        background-position: 300px -100px, +445px -100px;
    }
}

@media (min-width: 1200px) {
    #infopage #banner {
        background-position: 550px -100px, 695px -100px;
    }
}

@media (min-width: 1500px) {
    #infopage #banner {
        background-position: 750px -100px, 895px -100px;
    }
}

@media (min-width: 1800px) {
    #infopage #banner {
        background-position: 950px -100px, 1095px -100px;
    }
}

#infopage #banner .banner-text {
    text-shadow: 1px 1px 2px #008fdbff;
}

/* Pricing page */
#pricingpage {
    font-size: 10px;
}

    #pricingpage .banner-text {
        height: 281px;
        padding-top: 10rem;
        overflow: hidden;
        line-height: 68px;
        color: #002447;
        text-shadow: -2px -2px 2px white, 2px -2px 2px white, -2px 2px 2px white, 2px 2px 2px white;
    }

@media (max-width: 992px) {
    #pricingpage .banner-text {
        padding-top: 5rem;
    }
}

.price-back {
    background-image: url(/images/pricing/back-cloud-right.png), url(/images/pricing/toprightcloud.svg), url(/Images/pricing/circlish-shape.png), url(/Images/pricing/topleftcloud.svg);
    background-position: top left, top -550px right -630px, left 75px bottom 340px, left 150px bottom 500px;
    background-repeat: no-repeat;
    background-size: 850px 1000px,contain,auto,auto;
}

    .price-back .mdi {
        color: #2699FB;
    }

#pricingpage .card {
    height: 40rem;
}

.card-light .table th {
    color: #ffffff;
    background: #002447;
}

.card-light .table th, .table td {
    border-color: #008FDB;
}

.table-dark {
    background-color: #002447;
    color: #ffffff;
}

    .table-dark a {
        color: #ffffff;
        text-decoration: underline;
    }


#pricingplans {
    background-repeat: no-repeat;
}

    #pricingplans .mdi {
        color: #2699FB;
    }

    #pricingplans .row {
        margin-bottom: 15px;
    }

#pricepackages .jumbotron {
    padding: 4rem 2rem;
    background: #ffffff;
    box-shadow: 3px 3px 11px #00000029;
    height: 21rem;
    width: 100%;
    display: inline-block;
}

#pricepackages .package-title {
    background: #E8F6FF 0% 0% no-repeat padding-box;
    padding: 13px;
    border-radius: 21px;
    opacity: 1;
    margin-top: -3rem;
    color: #008FDB;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

#pricepackages .table {
}

#pricepackages .mdi {
    color: #2699FB;
}

#pricepackages .table td, .table th {
    border-right: hidden;
    /* border-bottom: hidden; */
    border-left: hidden;
    border-color: #008FDB;
    padding: 6px !important;
    display: table-cell;
}

.package-first-row {
    border-top: hidden !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.navbar {
    display: flex;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 0;
    list-style: none;
}

.ml-auto, .mx-auto {
    margin-left: auto !important;
}

.navbar-brand > img {
    display: inline;
    margin-top: 17px;
    margin-left: 5rem;
    height: 38px;
    border: none;
    padding: 0px;
}

.navbar-expand-md .navbar-toggler {
    display: none;
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-md .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        flex-basis: auto;
    }
}

.navbar-collapse {
    flex-grow: 1;
    align-items: center;
}

.navbar .btn {
    margin-top: 15px;
    margin-left: 4rem;
    padding-top: 0.3rem;
    border: 1px solid #A0D3E9;
    display: inline-block;
    font-weight: 400;
    padding: .375rem .75rem;
    line-height: 1.5;
    border-radius: .25rem;
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

