@import url('https://fonts.googleapis.com/css?family=Signika');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    direction: ltr;
    overflow-x: hidden;
    font-family: Signika;
}

p {
}

.row {
    margin-bottom: 0;
}

.clear {
    clear: both;
}

.container {
    width: 80%;
}

/* Start Loading */

.loading-overlay {
    background: #2d435e;
    color: #FFF;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.loader,
.loader:before,
.loader:after {
    background: #ffffff;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}

.loader {
    color: #ffffff;
    text-indent: -9999em;
    margin: 300px auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

    .loader:before,
    .loader:after {
        position: absolute;
        top: 0;
        content: '';
    }

    .loader:before {
        left: -1.5em;
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .loader:after {
        left: 1.5em;
    }

@-webkit-keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

/* End Loading */

/* Start Header */

header .header {
    background-color: #2d435e;
    padding: 10px;
    color: #fff;
}

    header .header .contact ul,
    header .header .social ul {
        overflow: hidden;
        margin: 0;
    }

        header .header .contact ul li {
            float: left;
            margin-right: 15px;
            line-height: 1.8;
        }

            header .header .contact ul li a,
            header .header .social ul li a {
                color: #fff;
                text-decoration: none;
            }

                header .header .contact ul li a:hover {
                    color: #fff;
                    text-decoration: underline;
                }

                header .header .contact ul li a .fa {
                    float: left;
                    margin-right: 5px;
                    line-height: 2;
                }

                header .header .contact ul li a p {
                    display: inline;
                    font-size: 14px;
                }

        header .header .social ul li {
            float: left;
            margin-left: 10px;
        }

            header .header .social ul li a .fa {
                padding: 10px 11px;
                border: 1px solid #ddd;
                border-radius: 50%;
                color: #fff;
                opacity: 0.9;
                cursor: pointer;
                transition: all .5s ease-in-out;
            }

                header .header .social ul li a .fa:hover {
                    color: #fff;
                    opacity: 1;
                    transition: all .5s ease-in-out;
                }

    header .header .social .fa-facebook:hover {
        background-color: #3b5998;
        transition: all .5s ease-in-out;
    }

    header .header .social .fa-skype:hover {
        background-color: #55acee;
        transition: all .5s ease-in-out;
    }

    header .header .social .fa-google-plus:hover {
        background-color: #dd4b39;
        transition: all .5s ease-in-out;
    }

    header .header .social .fa-youtube:hover {
        background-color: #bb0000;
        transition: all .5s ease-in-out;
    }

    header .header .social .fa-whatsapp:hover {
        background-color: #4dc247;
        transition: all .5s ease-in-out;
    }

/* End Header */

/* Start Navbar */

section .navbar nav {
    height: 95px;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgb(45, 67, 94),0 2px 10px 0 rgb(6, 124, 170);
}

    section .navbar nav .brand-logo img {
        /*logo1*/
        width: 250px;
        /*logo2*/
        /*width: 150px;*/
        /*logo3*/
        /*width: 100px;*/
    }

nav ul li.active {
    background-color: transparent;
    border-bottom: 3px solid #067caa;
}

nav .dropdown-button {
    margin-top: 8px;
}

    nav .dropdown-button img {
        width: 50px;
        border: 2px solid #2d435e;
        border-radius: 10px;
    }

    nav .dropdown-button i 
    {
        margin: 0;
    }

section .navbar .dropdown-content {
    border-top: 3px solid #067caa;
    min-width: 150px;
}

section .navbar .right .dropdown-content a {
    font-size: 14px;
    padding: 15px 10px;
}

section .navbar .dropdown-content li
{
    color: #2d435e;
}

section .navbar .dropdown-content li:hover,
.dropdown-content li.active,
.dropdown-content li.selected {
    background-color: transparent;
}

section .navbar nav .right {
}

    section .navbar nav .right a {
        color: #2d435e;
        position: relative;
        font-size: 16px;
        padding: 0 10px;
        transition: all .5s ease-in-out;
    }

        section .navbar nav .right a:hover {
            background-color: transparent;
            transition: all .5s ease-in-out;
        }

        section .navbar nav .right a:after {
            display: block;
            position: absolute;
            left: 50%;
            bottom: 0px;
            width: 0;
            height: 3px;
            background-color: #067caa;
            content: "";
            transition: width 0.5s;
        }

        section .navbar nav .right a:before {
            display: block;
            position: absolute;
            right: 50%;
            bottom: 0px;
            width: 0;
            height: 3px;
            background-color: #067caa;
            content: "";
            transition: width 0.5s;
        }

        section .navbar nav .right a:hover:after {
            width: 50%;
        }

        section .navbar nav .right a:hover:before {
            width: 50%;
        }

section .navbar nav .button-collapse i {
    color: #2d435e;
}

section .navbar nav .side-nav {
    background-color: #2d435e;
}

    section .navbar nav .side-nav a {
        color: #fff;
    }

        section .navbar nav .side-nav a:hover {
            background-color: transparent;
        }

        section .navbar nav .side-nav a:after {
            display: block;
            position: absolute;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #fff;
            content: "";
            transition: width 0.5s;
        }

        section .navbar nav .side-nav a:hover:after {
            width: 40%;
        }

    section .navbar nav .side-nav img {
        width: 100%;
        background-color: #fff;
    }

/* End Navbar */

/* Start Slider */

section .slider {
    height: 500px;
    margin-top: 5px;
    border-bottom: 1px solid #fff;
}

    section .slider img {
        height: 500px;
        width: 100%;
    }

    section .slider .slides li .caption h3,
    section .slider .slides li .caption h5 {
        display: inline-block;
        padding: 10px;
        margin-bottom: 0;
        background-color: rgba(6,124,170,.7);
    }

/* End Slider */

/* Start About Us */

.about-bg .img {
    background-image: url(../img/Topbar.png);
    border-top: 2px solid #067caa;
    background-size: cover;
    height: 400px;
}

    .about-bg .img h1 {
        margin: 0;
        padding: 100px 0 0 0;
        color: #fff;
        border-bottom: 4px solid #fff;
        display: inline-block;
    }

h2 {
    color: #2d435e;
    display: inline-block;
    margin-bottom: 60px;
    border-bottom: 4px solid;
}

.about {
    margin-top: 40px;
    margin-bottom: 80px;
}

    .about p {
        font-size: 16px;
        line-height: 1.9;
        color: #067caa;
        margin-top: 0;
        font-weight: bold;
    }

    .about img {
        width: 480px;
        min-height: 450px;
        border-radius: 5px;
    }

/* End About Us */

/* Start Features */

.features-bg .img {
    background-image: url(../img/business.png);
    border-top: 2px solid #067caa;
    background-size: cover;
    height: 300px;
}

    .features-bg .img h1 {
        margin: 0;
        padding: 100px 0 0 0;
        color: #fff;
        border-bottom: 4px solid #fff;
        display: inline-block;
    }

.features {
    padding-bottom: 40px;
}

    .features .card {
        border: 1px solid #067caa;
        border-radius: 5px;
        margin-bottom: 20px;
        transition: all .5s ease-in-out;
    }

        .features .card:hover {
            box-shadow: 0 0 30px #067caa;
            transform: scale(1);
            transition: all .5s ease-in-out;
        }

        .features .card .card-content span {
            color: #067caa !important;
        }

        .features .card .card-content a {
            color: #2d435e;
        }

        .features .card .card-reveal span {
            color: #2d435e !important;
        }

        .features .card .card-reveal p {
            color: #067caa;
            font-size: 17px;
        }

            .features .card .card-reveal p > span {
                color: #2d435e !important;
                font-weight: bold;
            }

/* End Features */

/* Start Testimonial */

.testimonial {
    padding-top: 40px;
}

.testimonial-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper {
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
}

    .testimonials-wrapper h4 {
        font-size: 17px;
        font-weight: 400;
        line-height: 23px;
        position: relative;
        padding: 30px;
        color: #2d435e;
        border-radius: 5px;
        background: #fff;
        box-shadow: 0px 0px 15px 0 rgba(6,124,170,0.6);
    }

.testimonials-blob,
.testimonials-img {
    border-radius: 100%;
}

.testimonials-img {
    position: relative;
    left: 50%;
    overflow: hidden !important;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    margin-left: -50px;
    box-shadow: 0 0 0 5px #2d435e;
    transition: all ease-out .5s;
    transform: translateY(-30%);
    filter: brightness(2);
}

.testimonial-carousel .active .testimonials-img {
    transform: translateY(0);
    filter: brightness(1);
}

.testimonials-person-info {
    text-align: center;
    color: #fff;
}

.testimonials-blob {
    position: relative;
    left: 80%;
    width: 3px;
    height: 3px;
    transform: rotate(45deg);
}

@keyframes anim {
    0% {
        opacity: 0;
        box-shadow: 0 0 0 0 #2d435e, 0 0 0 0 #2d435e;
    }

    50% {
        box-shadow: 0 15px 0 0 #2d435e, 0 0 0 0 #2d435e;
    }

    100% {
        opacity: 1;
        background: #2d435e;
        box-shadow: 0 15px 0 4px #2d435e, 0 35px 0 6px #2d435e;
    }
}

.testimonial-carousel .active .testimonials-blob {
    transform-origin: 50% 50%;
    animation: anim linear .5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.testimonial-carousel {
    overflow: hidden;
    cursor: grab;
}

    .testimonial-carousel:active {
        cursor: grabbing;
    }

    .testimonial-carousel .owl-item {
        overflow: hidden;
        transition: all ease-out .3s;
        transform: scale(.7);
        opacity: 0;
    }

        .testimonial-carousel .owl-item.active {
            transform: scale(1);
            opacity: 1;
        }

    .testimonial-carousel .owl-next,
    .testimonial-carousel .owl-prev {
        font-size: 13px;
        line-height: 35px;
        position: absolute;
        top: 50%;
        padding: 0 10px;
        transition: all ease-out .25s;
        transform: translateY(-100%);
        opacity: 1;
        color: #fff;
        border-radius: 3px;
        background: #2d435e;
    }

        .testimonial-carousel .owl-next:hover,
        .testimonial-carousel .owl-prev:hover {
            color: #fff;
            background: #2d435e;
        }

    .testimonial-carousel .owl-prev {
        left: 0;
    }

    .testimonial-carousel .owl-next {
        right: 0;
    }

        .testimonial-carousel .owl-next.disabled,
        .testimonial-carousel .owl-prev.disabled {
            opacity: 0;
        }

/* End Testimonial */

/* Start Offers */

.offers {
    padding-top: 40px;
    padding-bottom: 80px;
}

    .offers .price-box {
        background-color: #fff;
        border: 2px solid #2d435e;
        color: #2d435e;
        padding: 10px 20px;
        margin-bottom: 20px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }

        .offers .price-box:hover {
            transform: scale(1.03, 1.03);
            box-shadow: 0 12px 15px 0 rgb(45, 67, 94),0 17px 50px 0 rgb(6, 124, 170);
            cursor: pointer;
            transition: all .3s ease-in-out;
        }

        .offers .price-box h3 {
            font-size: 35px;
        }

        .offers .price-box .price span {
            font-size: 40px;
            border: 4px solid #067caa;
            border-radius: 50%;
            display: inline-block;
            padding: 32px 20px;
            background-color: #2d435e;
            color: #fff;
            font-weight: normal;
            transition: all .5s ease-in-out;
        }

        .offers .price-box:hover .price span {
            transform: scale(1.03,1.03) rotate(360deg);
            transition: all .5s ease-in-out;
        }

        .offers .price-box p {
            font-size: 16px;
            color: #067caa;
            font-weight: bold;
        }

/* End Offers */

/* Start Certifications */

.certificates {
    padding-bottom: 80px;
}

    .certificates h2 {
        padding-top: 40px;
        margin-bottom: 0;
    }

.certificate-bg .img {
    background-image: url(../img/Topbar.png);
    border-top: 2px solid #067caa;
    background-size: cover;
    height: 300px;
}

    .certificate-bg .img h1 {
        margin: 0;
        padding: 100px 0 0 0;
        color: #fff;
        border-bottom: 4px solid #fff;
        display: inline-block;
    }

/* End Certifications */

/* Start Footer */

footer .footer {
    background-color: #2d435e;
    padding: 60px 0 0 0;
}

    footer .footer h5 {
        color: #fff;
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 20px;
    }

    footer .footer .google-maps {
        position: relative;
        padding-bottom: 75%;
        height: 0;
        margin-bottom: 40px;
        overflow: hidden;
    }

        footer .footer .google-maps iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
        }

    footer .footer input[type=email] {
        border-bottom: 1px solid #067caa;
        color: #fff;
    }

        footer .footer input[type=email]:focus:not([readonly]) {
            border-bottom: 1px solid #2d435e;
            box-shadow: 0 1px 0 0 #067caa;
        }

    footer .footer .input-field.col label {
        color: #fff;
    }

    footer .footer button {
        width: 75px;
        margin-top: 25px;
        background-color: #2d435e;
    }

        footer .footer button:hover {
            background-color: #2d435e;
            color: #fff;
        }

    footer .footer .body p {
        color: #fff;
    }

    footer .footer .body span {
        color: #C5CAE9;
        font-size: 14px;
    }

.social-media ul {
    overflow: hidden;
}

    .social-media ul li {
        float: left;
        margin-right: 10px;
    }

        .social-media ul li a .fa {
            padding: 10px 11px;
            border: 1px solid #ddd;
            border-radius: 50%;
            color: #fff;
            opacity: 0.9;
            cursor: pointer;
            transition: all .5s ease-in-out;
        }

            .social-media ul li a .fa:hover {
                color: #fff;
                opacity: 1;
                transition: all .5s ease-in-out;
            }

.social-media .fa-facebook {
    background-color: #3b5998;
    transition: all .5s ease-in-out;
}

.social-media .fa-skype {
    background-color: #55acee;
    transition: all .5s ease-in-out;
}

.social-media .fa-google-plus {
    background-color: #dd4b39;
    transition: all .5s ease-in-out;
}

.social-media .fa-youtube {
    background-color: #bb0000;
    transition: all .5s ease-in-out;
}

.social-media .fa-whatsapp {
    background-color: #4dc247;
    transition: all .5s ease-in-out;
}

.footer-bottom,
.us {
    margin-bottom: 60px;
}

/* End Footer */

/* Start Foot */

footer .foot {
    background-color: #213042;
    color: #fff;
    padding: 1px;
}

/* End Foot */

/* Start Date */

/* =========
   Get Fonts */
@import url(http://fonts.googleapis.com/css?family=Quicksand);
/* ================
   Assign Variables */
/* ===========================
   Setup Mixins/Helper Classes */
.clearfix:after, .calendar ol:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.calender-bg .img {
    background-image: url(../img/calender.png);
    border-top: 2px solid #067caa;
    background-size: cover;
    height: 300px;
}

    .calender-bg .img h1 {
        margin: 0;
        padding: 100px 0 0 0;
        color: #fff;
        border-bottom: 4px solid #fff;
        display: inline-block;
    }


/* ================
   Calendar Styling */

.calendar {
    position: relative;
    padding: 3em;
    padding-top: 5em;
}

    .calendar .fa {
        cursor: pointer;
        color: #2d435e;
    }

    .calendar h1.month {
        margin-top: 0;
        font-weight: normal;
        font-size: 3em;
        display: inline-block;
        margin: 0 15px 40px 15px;
        color: #067caa;
    }

    .calendar ol {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .calendar ol li {
            float: left;
            width: 14.28571%;
        }

    .calendar .day-names {
        border-bottom: 1px solid #eee;
    }

        .calendar .day-names li {
            text-transform: uppercase;
            margin-bottom: .5em;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #2d435e;
        }

    .calendar .days li {
        border-bottom: 1px solid #eee;
        min-height: 8em;
        padding: .5em 0;
    }

        .calendar .days li .day {
            margin-bottom: .5em;
            color: #067caa;
        }

            .calendar .days li .day .name {
                display: none;
            }

            .calendar .days li .day .month {
                display: none;
            }

        .calendar .days li .event {
            background: #2d435e;
            font-size: .75em;
            padding: 0 .75em;
            line-height: 2em;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border-radius: 1em;
            margin-bottom: 1px;
        }

            .calendar .days li .event.span-2 {
                width: 200%;
            }

            .calendar .days li .event.begin {
                border-radius: 1em 0 0 1em;
            }

            .calendar .days li .event.end {
                border-radius: 0 1em 1em 0;
            }

            .calendar .days li .event.all-day {
                background: #2d435e;
            }

            .calendar .days li .event.clear {
                background: none;
            }

        .calendar .days li:nth-child(n+29) {
            border-bottom: none;
        }

        .calendar .days li.outside .day {
            color: #ddd;
        }

#view-switch {
    display: none;
}

    #view-switch + label {
        float: right;
        display: inline-block;
        position: relative;
        line-height: 2em;
        padding: 0 1em 0 2.5em;
        background: white;
        text-transform: uppercase;
        border-radius: 2em;
        border: 1px solid #067caa;
        cursor: pointer;
        transition: all ease-in-out .2s;
        width: 150px;
        text-align: center;
    }

        #view-switch + label:before {
            content: 'Calendar';
            border-bottom: 0px;
            border-right: 0px;
            border: 0;
            transform: rotate(0deg);
            margin-left: 40px;
            top: -5px;
            color: #067caa;
        }

        #view-switch + label .switch {
            transition: left ease-in-out .2s, margin ease-in-out .2s;
            display: block;
            position: absolute;
            top: -0.11em;
            margin-left: 0px;
            left: 0;
            background: #2d435e;
            width: 1.75em;
            height: 1.75em;
            border-radius: 2em;
            vertical-align: middle;
        }

    #view-switch:checked + label {
        padding: 0 2.5em 0 1em;
    }

        #view-switch:checked + label:before {
            content: 'Agenda';
        }

        #view-switch:checked + label .switch {
            left: 100%;
            margin-left: -25px;
        }

    #view-switch:checked ~ ol li {
        width: auto;
        float: none;
    }

    #view-switch:checked ~ .day-names {
        display: none;
    }

    #view-switch:checked ~ .days li {
        min-height: 0;
    }

        #view-switch:checked ~ .days li .day .name {
            display: inline;
        }

            #view-switch:checked ~ .days li .day .name:after {
                content: ', ';
            }

        #view-switch:checked ~ .days li .day .month {
            display: inline;
        }

        #view-switch:checked ~ .days li .day .number {
            display: inline;
        }

        #view-switch:checked ~ .days li .event.span-2 {
            width: auto;
        }

        #view-switch:checked ~ .days li.outside {
            display: none;
        }

/* End Date */

/* Start Register */

.register
{
    padding-bottom: 100px;
}

.register-body {
    -webkit-font-smoothing: antialiased;
    height: 750px;
}

    /* Container */
    .register-body .containers {
        position: relative;
        max-width: 460px;
        width: 90%;
        margin: 40px auto 100px;
    }

        .register-body .containers.active .card:first-child {
            background: #2d435d;
            margin: 0 15px;
        }

        .register-body .containers.active .card:nth-child(2) {
            background: #2d435d;
            margin: 0 10px;
        }

        .register-body .containers.active .card.alt {
            top: 20px;
            right: 0;
            width: 100%;
            min-width: 100%;
            height: 800px;
            border-radius: 5px;
            padding: 60px 0 40px;
            overflow: hidden;
        }

            .register-body .containers.active .card.alt .toggle {
                position: absolute;
                top: 40px;
                right: -70px;
                box-shadow: none;
                -webkit-transform: scale(10);
                transform: scale(10);
                -webkit-transition: -webkit-transform .3s ease;
                transition: -webkit-transform .3s ease;
                transition: transform .3s ease;
                transition: transform .3s ease, -webkit-transform .3s ease;
            }

                .register-body .containers.active .card.alt .toggle:before {
                    content: '';
                }

            .register-body .containers.active .card.alt .title,
            .register-body .containers.active .card.alt .input-container,
            .register-body .containers.active .card.alt .button-container {
                left: 0;
                opacity: 1;
                visibility: visible;
                -webkit-transition: .3s ease;
                transition: .3s ease;
            }

            .register-body .containers.active .card.alt .title {
                -webkit-transition-delay: .3s;
                transition-delay: .3s;
            }

            .register-body .containers.active .card.alt .input-container {
                -webkit-transition-delay: .4s;
                transition-delay: .4s;
            }

                .register-body .containers.active .card.alt .input-container:nth-child(2) {
                    -webkit-transition-delay: .5s;
                    transition-delay: .5s;
                }

                .register-body .containers.active .card.alt .input-container:nth-child(3) {
                    -webkit-transition-delay: .6s;
                    transition-delay: .6s;
                }

            .register-body .containers.active .card.alt .button-container {
                -webkit-transition-delay: .7s;
                transition-delay: .7s;
            }

    /* Card */
    .register-body .card {
        position: relative;
        background: #2d435d;
        border-radius: 5px;
        margin: 1px 0 0 0;
        padding: 80px 0 60px 0;
        box-sizing: border-box;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        -webkit-transition: .3s ease;
        transition: .3s ease;
        /* Title */
        /* Inputs */
        /* Button */
        /* Footer */
        /* Alt Card */
    }

        .register-body .card:first-child {
            background: #2d435d;
            height: 10px;
            border-radius: 5px 5px 0 0;
            margin: 0 10px;
            padding: 0;
        }

        .register-body .card .title {
            position: relative;
            z-index: 1;
            border-left: 5px solid #fff;
            margin: 0;
            padding: 10px 0 10px 20px;
            color: #fff;
            font-size: 30px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .register-body .card .input-container {
            position: relative;
            margin: 0 60px;
        }

            .register-body .card .input-container input {
                /*box-shadow:none;*/
                outline: none;
                z-index: 1;
                position: relative;
                background: none;
                width: 100%;
                height: 60px;
                border: 1;
                color: #fff;
                font-size: 24px;
                font-weight: 400;
            }

                .register-body .card .input-container input:focus ~ label {
                    color: #fff;
                    -webkit-transform: translate(-12%, -50%) scale(0.75);
                    transform: translate(-12%, -50%) scale(0.75);
                }

                .register-body .card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
                    width: 50%;
                }

                .register-body .card .input-container input:valid ~ label {
                    color: #9d9d9d;
                    -webkit-transform: translate(-12%, -50%) scale(0.75);
                    transform: translate(-12%, -50%) scale(0.75);
                }

            .register-body .card .input-container label {
                position: absolute;
                top: 0;
                left: 0;
                color: #fff;
                font-size: 18px;
                font-weight: 300;
                line-height: 60px;
                -webkit-transition: 0.2s ease;
                transition: 0.2s ease;
            }

            .register-body .card .input-container .bar {
                position: absolute;
                display: none;
                left: 0;
                bottom: 0;
                background: #757575;
                width: 100%;
                height: 1px;
            }

                .register-body .card .input-container .bar:before, .card .input-container .bar:after {
                    content: '';
                    position: absolute;
                    background: #ed2553;
                    width: 0;
                    height: 2px;
                    -webkit-transition: .2s ease;
                    transition: .2s ease;
                }

                .register-body .card .input-container .bar:before {
                    left: 50%;
                }

                .register-body .card .input-container .bar:after {
                    right: 50%;
                }

        .register-body .card .button-container {
            margin: 0 60px;
            text-align: center;
        }

            .register-body .card .button-container button {
                outline: 0;
                cursor: pointer;
                position: relative;
                display: inline-block;
                background: 0;
                width: 240px;
                border: 2px solid #e3e3e3;
                padding: 20px 0;
                font-size: 24px;
                font-weight: 600;
                line-height: 1;
                text-transform: uppercase;
                overflow: hidden;
                -webkit-transition: .3s ease;
                transition: .3s ease;
            }

                .register-body .card .button-container button span {
                    position: relative;
                    z-index: 1;
                    color: #ddd;
                    -webkit-transition: .3s ease;
                    transition: .3s ease;
                }

                .register-body .card .button-container button:before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    display: block;
                    background: #ed2553;
                    width: 30px;
                    height: 30px;
                    border-radius: 100%;
                    margin: -15px 0 0 -15px;
                    opacity: 0;
                    -webkit-transition: .3s ease;
                    transition: .3s ease;
                }

                .register-body .card .button-container button:hover, .card .button-container button:active, .card .button-container button:focus {
                    border-color: #067caa;
                }

                    .register-body .card .button-container button:hover span, .card .button-container button:active span, .card .button-container button:focus span {
                        color: #fff;
                    }

                    .register-body .card .button-container button:active span, .card .button-container button:focus span {
                        color: #ffffff;
                    }

                    .register-body .card .button-container button:active:before, .card .button-container button:focus:before {
                        opacity: 1;
                        -webkit-transform: scale(10);
                        transform: scale(10);
                    }

        .register-body .card .footer {
            margin: 12px 0 0;
            color: #d3d3d3;
            font-size: 16px;
            font-weight: 300;
            text-align: center;
            text-decoration: underline;
        }

            .register-body .card .footer a {
                color: inherit;
                text-decoration: none;
                -webkit-transition: .3s ease;
                transition: .3s ease;
            }

                .register-body .card .footer a:hover {
                    color: #bababa;
                }

        .register-body .card.alt {
            position: absolute;
            top: 10px;
            right: -70px;
            z-index: 10;
            width: 140px;
            height: 140px;
            background: none;
            border-radius: 100%;
            box-shadow: none;
            padding: 0;
            -webkit-transition: .3s ease;
            transition: .3s ease;
            /* Toggle */
            /* Title */
            /* Input */
            /* Button */
        }

            .register-body .card.alt .toggle {
                position: relative;
                background: #067caa;
                width: 355px;
                height: 170px;
                border-radius: 50%;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                color: #ffffff;
                font-size: 58px;
                line-height: 140px;
                text-align: center;
                cursor: pointer;
            }

                .register-body .card.alt .toggle:before {
                    content: 'Registrieren';
                    display: inline-block;
                    font: normal normal normal 14px/1 FontAwesome;
                    font-size: inherit;
                    text-rendering: auto;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    -webkit-transform: translate(0, 0);
                    transform: translate(0, 0);
                    line-height: 3;
                }

            .register-body .card.alt .title,
            .register-body .card.alt .input-container,
            .register-body .card.alt .button-container {
                left: 100px;
                opacity: 0;
                visibility: hidden;
            }

            .register-body .card.alt .title {
                position: relative;
                border-color: #ffffff;
                color: #ffffff;
            }

                .register-body .card.alt .title .close {
                    cursor: pointer;
                    position: absolute;
                    top: 0;
                    right: 60px;
                    display: inline;
                    color: #ffffff;
                    font-size: 58px;
                    font-weight: 400;
                }

                    .register-body .card.alt .title .close:before {
                        content: '\00d7';
                    }

            .register-body .card.alt .input-container input {
                color: #ffffff;
            }

                .register-body .card.alt .input-container input:focus ~ label {
                    color: #ffffff;
                }

                .register-body .card.alt .input-container input:focus ~ .bar:before, .card.alt .input-container input:focus ~ .bar:after {
                    background: #ffffff;
                }

                .register-body .card.alt .input-container input:valid ~ label {
                    color: #ffffff;
                }

            .register-body .card.alt .input-container label {
                color: rgba(255, 255, 255, 0.8);
            }

            .register-body .card.alt .input-container .bar {
                background: rgba(255, 255, 255, 0.8);
            }

            .register-body .card.alt .button-container button {
                width: 100%;
                background: #ffffff;
                border-color: #ffffff;
            }

                .register-body .card.alt .button-container button span {
                    color: #2d435d;
                }

                .register-body .card.alt .button-container button:hover {
                    background: rgba(255, 255, 255, 0.9);
                }

                .register-body .card.alt .button-container button:active:before, .card.alt .button-container button:focus:before {
                    display: none;
                }

/* Keyframes */
@-webkit-keyframes buttonFadeInUp {
    0% {
        bottom: 30px;
        opacity: 0;
    }
}

@keyframes buttonFadeInUp {
    0% {
        bottom: 30px;
        opacity: 0;
    }
}

.modal h4 {
    color: #fff;
}

/* End Register */

/* Start Contact Us */

.register-bg .img {
    background-image: url(../img/Topbar.png);
    border-top: 2px solid #067caa;
    background-size: cover;
    height: 450px;
}

    .register-bg .img h1 {
        margin: 0;
        padding: 100px 0 0 0;
        color: #fff;
        border-bottom: 4px solid #fff;
        display: inline-block;
    }


.Contact .call-us {
    background-image: url(../img/Topbar.png);
    background-size: cover;
    border-top: 2px solid #067caa;
    padding: 60px 0;
    color: #fff;
    height: 300px;
}

    .Contact .call-us h2 {
        display: block;
        border-bottom: 0;
        margin-bottom: 20px;
        padding-left: 20px;
        color: #fff;
        font-size: 40px;
    }

    .Contact .call-us p {
        color: #ecebeb;
    }

.Contact .Contact-body h5 {
    padding-top: 40px;
    color: #2d435d;
}

.Contact .Contact-body h6 {
    color: #ababab;
    margin-bottom: 30px;
}

.Contact .Contact-body form {
    padding-bottom: 40px;
}

    .Contact .Contact-body form .btn {
        background-color: #0a7fad;
    }

    .Contact .Contact-body form .input-field label {
        color: #0a7fad;
    }

    .Contact .Contact-body form input:not([type]),
    .Contact .Contact-body form input[type=text],
    .Contact .Contact-body form input[type=password],
    .Contact .Contact-body form input[type=email],
    .Contact .Contact-body form input[type=url],
    .Contact .Contact-body form input[type=time],
    .Contact .Contact-body form input[type=date],
    .Contact .Contact-body form input[type=datetime],
    .Contact .Contact-body form input[type=datetime-local],
    .Contact .Contact-body form input[type=tel],
    .Contact .Contact-body form input[type=number],
    .Contact .Contact-body form input[type=search],
    .Contact .Contact-body form textarea.materialize-textarea {
        border-bottom: 1px solid #0a7fad;
    }

        .Contact .Contact-body form input:not([type]):focus:not([readonly]),
        .Contact .Contact-body form input[type=text]:focus:not([readonly]),
        .Contact .Contact-body form input[type=password]:focus:not([readonly]),
        .Contact .Contact-body form input[type=email]:focus:not([readonly]),
        .Contact .Contact-body form input[type=url]:focus:not([readonly]),
        .Contact .Contact-body form input[type=time]:focus:not([readonly]),
        .Contact .Contact-body form input[type=date]:focus:not([readonly]),
        .Contact .Contact-body form input[type=datetime]:focus:not([readonly]),
        .Contact .Contact-body form input[type=datetime-local]:focus:not([readonly]),
        .Contact .Contact-body form input[type=tel]:focus:not([readonly]),
        .Contact .Contact-body form input[type=number]:focus:not([readonly]),
        .Contact .Contact-body form input[type=search]:focus:not([readonly]),
        .Contact .Contact-body form textarea.materialize-textarea:focus:not([readonly]) {
            border-bottom: 1px solid #0a7fad;
            box-shadow: 0 1px 0 0 #0a7fad;
        }



.Contact .Contact-body .body p {
    color: #0a7fad;
}

.Contact .Contact-body .body span {
    color: #e05d4d;
    font-size: 14px;
}




/* End Contact Us */

/* Start Scroll To Top */

#scroll-top {
    width: 50px;
    height: 50px;
    background-color: #067caa;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    position: fixed;
    right: 20px;
    bottom: 110px;
    z-index: 9999;
    cursor: pointer;
    display: none;
}

/* End Scroll To Top */
/* Start News */

.news {
    margin-top: 30px;
}

.event {
    overflow: hidden;
    padding: 50px 0;
    border-top: 1px solid #ddd;
}

    .event .date {
        border-right: 1px solid #ddd;
    }

        .event .date h5 {
            color: #196db6;
            font-size: 72px;
            font-weight: bold;
        }

        .event .date h6 {
            color: #196db6;
            font-size: 18px;
            font-weight: bold;
        }

    .event .event-content {
        padding: 0 100px;
        color: #999;
    }

        .event .event-content h5 a {
            color: #000;
            font-size: 24px;
            font-weight: bold;
            transition: all .5s ease-in-out;
        }

            .event .event-content h5 a:hover {
                color: #f25e2a;
                transition: all .5s ease-in-out;
            }

        .event .event-content span,
        .event .event-content .fa {
            font-size: 12px;
            font-weight: bold;
            margin-right: 20px;
        }

        .event .event-content .fa {
            margin: 0;
        }

        .event .event-content p {
            margin: 20px 0;
            line-height: 2;
        }

/* End News */