body {
    font-family: "Open Sans", sans-serif;
    color: #777;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

h1 {
    color: #fff;
}

.bold {
    font-weight: 700;
    color: #04488e !important;
}

.hide {
    display: none;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #1a224c;
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #04488e;
            color: #fff;
        }



#header {
    background: #1a224c;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

    #header.header-scrolled {
        top: 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    #header .logo {
        font-size: 20px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.7px;
        text-transform: uppercase;
        color: #fff;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 55px;
        }

@media (max-width: 992px) {
    #header {
        top: 0;
        padding: 15px 0;
    }

        #header .logo {
            font-size: 14px;
        }
}

@media (max-width: 767px) {
    #header .logo {
        font-size: 16px;
    }

        #header .logo img {
            max-height: 60px;
        }
}

#hero {
    width: 100%;
    height: 70vh;
    background-color: rgba(9, 9, 9, 0.8);
    overflow: hidden;
    position: relative;
}

    #hero .carousel,
    #hero .carousel-inner,
    #hero .carousel-item,
    #hero .carousel-item::before {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }

    #hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 112px;
        left: 50px;
        right: 50px;
    }

    #hero .container {
        text-align: center;
        border: 3px solid #fff;
        border-radius: 5px;
        padding: 30px;
    }

    #hero h1 {
        color: #fff;
        margin-bottom: 20px;
        font-size: 48px;
        font-weight: 700;
    }

    #hero h2 {
        color: #fff;
        font-size: 24px;
    }

    #hero p {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
    }

    #hero .carousel-inner .carousel-item {
        transition-property: opacity;
        background-position: center top;
    }

    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-left,
    #hero .carousel-inner .active.carousel-item-right {
        opacity: 0;
    }

    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-left,
    #hero .carousel-inner .carousel-item-prev.carousel-item-right {
        opacity: 1;
        transition: 0.5s;
    }

        #hero .carousel-inner .carousel-item-next,
        #hero .carousel-inner .carousel-item-prev,
        #hero .carousel-inner .active.carousel-item-left,
        #hero .carousel-inner .active.carousel-item-right {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 10%;
        top: 112px;
    }

@media (max-width: 992px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        top: 66px;
    }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 36px;
    line-height: 1;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
}

    #hero .carousel-control-next-icon:hover,
    #hero .carousel-control-prev-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.8);
    }

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

    #hero .carousel-indicators li.active {
        opacity: 1;
        background: #1a224c;
    }

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #1a224c;
}

    #hero .btn-get-started:hover {
        background: #4499f1;
    }

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }

        #hero .carousel-container {
            top: 66px;
        }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
    }

    #hero h2 {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: #e8a824;
    }

        .section-title h2::before {
            content: "";
            position: absolute;
            display: block;
            width: 130px;
            height: 3px;
            background: #ccc;
            bottom: 1px;
            left: calc(50% - 60px);
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 5px;
            background: #f3223c;
            bottom: 0;
            left: calc(50% - 20px);
        }

    .section-title p {
        margin-bottom: 0;
        font-size: 14px;
        color: #444;
        text-align: left;
    }

#whyaud .container {
    top: 65px;
}

.whyaud .icon-box {
    padding: 20px;
}

.whyaud .icon-box-bg {
    background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.whyaud .icon {
    margin-bottom: 15px;
}

    .whyaud .icon i {
        color: #1a224c;
        font-size: 42px;
    }

.whyaud .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.whyaud .content h3 {
    font-weight: 700;
    font-size: 28px;
}

.whyaud .content ul {
    list-style: none;
    padding: 0;
}

    .whyaud .content ul li {
        padding-bottom: 10px;
    }

    .whyaud .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #1a224c;
    }

.whyaud .content p:last-child {
    margin-bottom: 0;
}

.applybutton {
    background: #1a224c;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

    .applybutton:hover {
        background: #04488e;
        color: #fff;
    }

.whyaud .programlist p {
    font-weight: 700;
    color: #666;
    padding: 0 25px;
}

    .whyaud .programlist p:after {
        content: "";
        display: block;
        width: 25px;
        height: 2px;
        background: #f3223c;
        margin-top: 3px;
    }

.programbg {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.75);
    border-top: 3px solid #1a224c;
    border-bottom: 3px solid #1a224c;
}

.whyaud p {
    color: #333;
    font-size: 16px;
}

.whyaud h4 {
    padding-top: 8px;
    color: #04488e;
    padding-left: 10px;
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .whyaud h4 {
        padding-top: 0;
        color: #000;
        padding-left: 0;
    }

    .programbg h4 {
        text-align: center;
        color: #04488e;
    }

    .whyaud .programlist p {
        padding: 0 8px;
    }
}

.accreditations .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

    .accreditations .owl-item img {
        width: 100%;
        transition: 0.2s;
    }

        .accreditations .owl-item img:hover {
            opacity: 1;
        }

.accreditations .owl-nav,
.accreditations .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.accreditations .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

    .accreditations .owl-dot.active {
        background-color: #1a224c !important;
    }

.whyaud .register-form {
    width: 100%;
    border-top: 3px solid #1a224c;
    border-bottom: 3px solid #1a224c;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

    .whyaud .register-form .form-group {
        padding-bottom: 8px;
    }

    .whyaud .register-form .validate {
        color: #f3223c;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .whyaud .register-form .error-message {
        display: none;
        color: #fff;
        background: #f3223c;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .whyaud .register-form .error-message br + br {
            margin-top: 25px;
        }

    .whyaud .register-form .sent-message {
        color: #fff;
        background: #04488e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .whyaud .register-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .whyaud .register-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .whyaud .register-form input,
    .whyaud .register-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

        .whyaud .register-form input:focus,
        .whyaud .register-form textarea:focus {
            border-color: #1a224c;
        }

    .whyaud .register-form input {
        height: 44px;
    }

    .whyaud .register-form textarea {
        padding: 10px 12px;
    }

.whyaud .submitbutton {
    background: #1a224c;
    border: 0;
    padding: 10px 32px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

    .whyaud .submitbutton:hover {
        background: #04488e;
    }

.footer-sketch {
    width: 100%;
}

#footer {
    background: #1a224c;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    padding-bottom: 0;
}

    #footer h3 {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        position: relative;
        font-family: "Poppins", sans-serif;
        padding: 0;
        margin: 10px 0 15px 0;
    }

    #footer .copyright {
        margin: 0 0 45px 0;
    }

.hide {
    display: none;
}
.s90 {
    padding-left: 90px !important
}
