@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #0f394c;
}

a {
    color: #4b6cb2;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #3aaa35;
    border-top-color: #eee542;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #eee542;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #4b6cb2;
    line-height: 0;
}

.back-to-top:hover {
    background: #4b6cb2;
    color: #fff;
}

.back-to-top:hover i {
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #3aaa35;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info {
    color: #fff;
}

#topbar .contact-info a {
    line-height: 1;
    color: #fff;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #eee542;
}

#topbar .contact-info i {
    color: #fff;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: #fff;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #eee542;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-blurred {
    background: rgba(225, 225, 225, 0.8);
}

#header.header-scrolled {
    background: #fff;
    top: 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #4b6cb2;
}

#header .logo img {
    max-height: 40px;
}

/**
* Appointment Button *
*/
.appointment-btn {
    margin-left: 25px;
    background: #4b6cb2;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.appointment-btn:hover {
    background: #3aaa35;
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #4b6cb2;
    white-space: nowrap;
    transition: 0.3s;
    padding: 5px 2px;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 20px;
    background-color: #eee542;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    width: 40px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #4b6cb2;
    border-color: #eee542;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 20px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #082744;
    border: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #1977cc;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #2c4964;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile > ul > li {
    padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #4b6cb2;
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #1977cc;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #1977cc;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    background: url("/images/hero-bg.jpg");
    position: relative;
    padding: 220px 0 0 0;
}

#hero:before {
    content: "";
    background: rgba(238,229,66,0.91);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: rgba(75, 108, 178, 1);
}

#hero h1 span {
    color: #fff;
    border-bottom: 4px solid #4b6cb2;
}

#hero h2 {
    color: rgba(75, 108, 178, 1);
    margin-bottom: 40px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: rgba(58, 170, 53, 1);
}

#hero .btn-get-started:hover {
    background: rgba(75, 108, 178, 1);
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        padding-top: 80px;
    }

    #hero .animated {
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        max-width: 50%;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
}

.wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
}

.wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
}

.wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    /*background-color: #f4fbfe;*/
    background-image: linear-gradient(105deg, #f4fbfe, transparent 80%);
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #0f394c;
}

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #fafaff;
    min-height: 40px;
    margin-top: 110px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(238,229,66, 0.8), rgba(238,229,66, 0.91)), url("../images/hero-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h1 {
    color: rgba(75, 108, 178, 1);
    font-size: 40px;
    font-weight: 900;
}

.cta h3 {
    color: rgba(75, 108, 178, 1);
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: rgba(75, 108, 178, 1);
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    border-radius: 50px;
    background: rgba(58, 170, 53, 1);
    color: #fff;
}

.cta .cta-btn:hover {
    background: rgba(75, 108, 178, 1);
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #0f394c;
    font-size: 14px;
    background: #3aaa35;
    padding: 0 0 30px 0;
}

#footer .footer-top {
    padding: 30px 0 10px 0;
    background: #eee542;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
    margin-bottom: 10px;
    text-align: center;
    background: rgba(225, 225, 225, 0.5);
    border-radius: 15px;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-style: italic;
}

#footer .footer-top .footer-contact a {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-style: italic;
    color: #0f394c;
}

#footer .footer-top .footer-contact a:hover {
    color: #4b6cb2;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #4b6cb2;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #4b6cb2;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f394c;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    padding: 70px 10px;
    margin-bottom: 10px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #4b6cb2;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #0f394c;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #3aaa35;
}

#footer .footer-newsletter {
    padding: 70px 10px;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
}

#footer .footer-top .footer-newsletter form .subscribe {
    background: #fff;
    padding: 6px 10px 6px 15px;
    position: relative;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #3aaa35;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #4b6cb2;
    color: #fff;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #fff;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .credits a {
    color: #fff;
}
#footer .credits a:hover {
    color: #0f394c;
}

@media (max-width: 575px) {
    #footer .footer-top .footer-contact {
        margin: -20px 10px 30px 10px;
        width: calc(100% - 20px);
    }

    #footer .footer-top .footer-links {
        margin: -20px 0 30px 0;
        padding: 10px 10px;
    }

    #footer .footer-newsletter {
        margin: -20px 0 30px 0;
        padding: 10px 10px;
    }
}

/*--------------------------------------------------------------
# Iconbox 1
--------------------------------------------------------------*/
.icon-box1 {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    margin: 0 10px 0 10px;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.icon-box1:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.icon-box1 .icon {
    position: absolute;
    left: -20px;
    top: calc(50% - 30px);
}

.icon-box1 .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}

.icon-box1 .title {
    margin-left: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.icon-box1 .title a {
    color: #0f394c;
    transition: ease-in-out 0.3s;
}

.icon-box1 .title a:hover {
    color: #3aaa35;
}

.icon-box1 .description {
    font-size: 14px;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
}

.icon-box1 .date {
    font-size: 14px;
    font-weight: 700;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
}

.icon-box1 .date i {
    padding-right: 5px;
    font-size: 16px;
    color: #4b6cb2;
}

.icon-box1 .booking {
    margin-bottom: 0;
    margin-left: 40px;
}

.icon-box1 .booking i {
    padding-right: 10px;
}

.booking-btn {
    background: #eee542;
    color: #4b6cb2;
    border-radius: 50px;
    padding: 8px 25px;
    margin-top: 10px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.booking-btn:hover {
    background: #3aaa35;
    color: #fff;
}

@media (max-width: 768px) {
    .icon-box1 {
        height: 95%;
    }
}

/*--------------------------------------------------------------
# Iconbox 2
--------------------------------------------------------------*/
.icon-box2 {
    padding-top: 40px;
}

.icon-box2 .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #eee542;
    border-radius: 50px;
    transition: 0.5s;
}

.icon-box2 .icon i {
    color: #eee542;
    font-size: 32px;
}

.icon-box2:hover .icon {
    background: #eee542;
    border-color: #eee542;
}

.icon-box2:hover .icon i {
    color: #fff;
}

.icon-box2 .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.icon-box2 .title a {
    color: #0f394c;
    transition: 0.3s;
}

.icon-box2 .title a:hover {
    color: #eee542;
}

.icon-box2 .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Iconbox 3
--------------------------------------------------------------*/
.icon-box3 {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    margin: 0 10px 40px 10px;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.4s ease-in-out;
}

.icon-box3:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.icon-box3 .icon {
    position: absolute;
    left: -30px;
    top: calc(50% - 45px);
}

.icon-box3 .title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.icon-box3 .title a {
    color: #2a2c39;
    transition: ease-in-out 0.3s;
}

.icon-box3 .title a:hover {
    color: #3aaa35;
}

.icon-box3 .description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: center;
    padding-right: 50px;
    padding-left: 50px;
}

.icon-box3 .description a {
    line-height: 50px;
    color: #4b6cb2;
}

.icon-box3 .description a:hover {
    color: #3aaa35;
}

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/
.card {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.3);
    transition: 0.3s;
    height: 100%;
}

.card:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card .card-header {
    background: #3aaa35;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    min-height: 65px;
}

/*.card .card-body {
    min-height: 350px;
}*/

.card .card-body .card-title {
    color: #4b6cb2;
    font-size: 14px;
}

.card .card-body .card-title i {
    color: #3aaa35;
    font-size: 16px;
    padding-right: 10px;
}

.card .card-footer {
    background: #eee542;
}

.card .card-footer .badge {
    background-color: #4b6cb2;
}

/*--------------------------------------------------------------
# Card1
--------------------------------------------------------------*/
.card1 {
    border: 0;
    padding: 160px 20px 20px 20px;
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.card1 .card-body {
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    transition: ease-in-out 0.4s;
    border-radius: 5px;
}

.card1 .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.card1 .card-title a {
    color: #2a2c39;
}

.card1 .card-text {
    color: #0f394c;
}

.card1:hover .card-body {
    background: #4b6cb2;
}

.card1:hover .card-title,
.card1:hover .card-text {
    color: #fff;
}

/*--------------------------------------------------------------
# Card2
--------------------------------------------------------------*/
.card2 {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
}

.card2 .card-img {
    position: relative;
    overflow: hidden;
}

.card2 .card-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../images/team/team-shape.svg) no-repeat center bottom;
    background-size: auto;
    z-index: 1;
}

.card2 .social {
    position: absolute;
    right: -100%;
    top: 30px;
    opacity: 0;
    border-radius: 4px;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
    right: 8px;
    opacity: 1;
}

.card2 .social a {
    transition: color 0.3s;
    color: rgba(1, 41, 112, 0.5);
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center;
}

.card2 .social a:hover {
    color: rgba(1, 41, 112, 0.8);
}

.card2 .social i {
    font-size: 18px;
}

.card2 .card-text {
    padding: 10px 15px 20px 15px;
}

.card2 .card-text h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #4b6cb2;
}

.card2 .card-text span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #3aaa35;
}

.card2 .card-text p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
}

.card2:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card2:hover .social {
    right: 8px;
    opacity: 1;
}

/*--------------------------------------------------------------
# Gradient Card
--------------------------------------------------------------*/
.gradient-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 30px;
}

@media screen and (max-width: 991px) {
    .gradient-cards {
        grid-template-columns: 1fr;
    }
}

.gradient-cards .box {
    max-width: 600px;
    border: 0;
    width: 100%;
    margin-inline: auto;
    z-index: 0;
    font-family: "Montserrat", sans-serif;
}

.container-box {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(71deg, #f5f5f5d9, #fff, #f5f5f5d9);
    background-clip: padding-box;
    border-radius: 45px;
    padding: 40px;
    height: 100%;
}

.container-box img {
    margin-bottom: 32px;
}
.bg-green-box,
.bg-black-box,
.bg-yellow-box,
.bg-blue-box {
    position: relative;
}

.bg-green-box::after,
.bg-black-box::after,
.bg-yellow-box::after,
.bg-blue-box::after {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    z-index: -1;
    border-radius: 45px;
}

.bg-green-box::after {
    background: linear-gradient(71deg, #fffff9, #3aaa35, #fffff9);
}

.bg-black-box::after {
    background: linear-gradient(71deg, #fffff9, #000000, #fffff9);
}

.bg-yellow-box::after {
    background: linear-gradient(71deg, #fffff9, #eee542, #fffff9);
}

.bg-blue-box::after {
    background: linear-gradient(71deg, #fffff9, #4b6cb2, #fffff9);
}

.card-title {
    font-weight: 600;
    color: #0f394c;
    letter-spacing: -0.02em;
    line-height: 40px;
    font-style: normal;
    font-size: 28px;
    padding-bottom: 8px;
}

.card-description {
    /*font-weight: 600;
    line-height: 32px;*/
    color: #0f394c;
    /*font-size: 14px;*/
    max-width: 470px;
}

/*--------------------------------------------------------------
# Services Button
--------------------------------------------------------------*/
#services .services-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.3s;
    color: #4b6cb2;
    background: #eee542;
    margin-top: 50px;
}

#services .services-btn:hover {
    background: #3aaa35;
    color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 40px 0 0 0;
}

.about h3 {
    font-size: 28px;
    font-weight: 700;
    color: #4b6cb2;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    padding: 60px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: linear-gradient(rgba(75,108,178, 0.6), rgba(75,108,178, 0.81)), url("../images/02-1.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
}

.contact .section-title h2,
.contact .section-title p {
    color: #fff;
}

.contact .info-item + .info-item {
    margin-top: 40px;
}

.contact .info-item i {
    font-size: 20px;
    background: #eee542;
    color: #4b6cb2;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item:hover i {
    background: #3aaa35;
    color: #fff;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .contact-form {
    width: 100%;
}

.contact .contact-form .form-group {
    padding-bottom: 8px;
}

.contact .contact-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .contact-form .error-message br + br {
    margin-top: 25px;
}

.contact .contact-form .sent-message {
    display: none;
    color: #fff;
    background: #3aaa35;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .contact-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .contact-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #3aaa35;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.contact .contact-form input,
.contact .contact-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contact .contact-form input {
    height: 44px;
}

.contact .contact-form textarea {
    padding: 10px 12px;
}

.contact .contact-form button[type=submit] {
    background: #eee542;
    border: 0;
    padding: 10px 35px;
    color: #4b6cb2;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .contact-form button[type=submit]:hover {
    background: #3aaa35;
    color: #fff;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/
.contact .info-wrap {
    padding: 30px;
}

.contact .info-wrap i {
    font-size: 20px;
    background: #eee542;
    color: #4b6cb2;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
}

.contact .info:hover i {
    background: #3aaa35;
    color: #fff;
}



/*--------------------------------------------------------------
# Toast
--------------------------------------------------------------*/
.toast {
    margin-top: 15px;
}

.toast-error {
    background-color: #df1529;
    color: #fff;
}

.toast-success {
    background-color: #eee542;
    color: #4b6cb2;
}



/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.course-information {
    background-color: #fff;
    border-radius: 15px;
    padding: 50px;
    ;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
}

.nav-link {
    color: #4b6cb2;
}

.nav-tabs > li > .nav-link.active {
    background-color: #f4fbfe;
}

.form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.form .error-message br + br {
    margin-top: 25px;
}

.form .sent-message {
    display: none;
    color: #fff;
    background: #3aaa35;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #3aaa35;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.form button[type=submit] {
    background: #eee542;
    border: 0;
    padding: 10px 35px;
    color: #4b6cb2;
    transition: 0.4s;
    border-radius: 5px;
}

.form button[type=submit]:hover {
    background: #3aaa35;
    color: #fff;
}

.booking-form {
    width: 100%;
}

.booking-form button[type=submit] {
    background: #eee542;
    border: 0;
    padding: 10px 35px;
    color: #4b6cb2;
    transition: 0.4s;
    border-radius: 5px;
}

.booking-form button[type=submit]:hover {
    background: #3aaa35;
    color: #fff;
}

#units {
    text-align: center;
}

.currency {
    text-align: right;
}

.booking-form .disclaimer {
    font-size: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
    color: red;
}

.booking-form .disclaimer2 {
    font-size: 14px;
    line-height: 1.3;
    padding: 0;
    margin-bottom: 15px;
    margin-top: 15px;
}

.booking-form .promotion {
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    padding: 0;
    margin-bottom: 15px;
    margin-top: 15px;
}

.booking-form .course-name {
    color: #4b6cb2;
    font-weight: 700;
}

.booking-form .subdetails {
    color: #444444;
    font-size: 14px;
    line-height: 1.3;
    margin-top: -10px;
}

.booking-form .btn-booking {
    color: #4b6cb2;
    border-color: #4b6cb2;
}

.booking-form .btn-booking:hover {
    color: #fff;
    background: #4b6cb2;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background: #4b6cb2;
    color: #fff;
    border-color: #4b6cb2;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
. postcard a, a:hover {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.postcard {
    flex-wrap: wrap;
    display: flex;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
    border-radius: 10px;
    margin: 0 0 2rem 0;
    overflow: hidden;
    position: relative;
    color: #ffffff;
}

.postcard.light {
    background-color: #e1e5ea;
}

.postcard .t-dark {
    color: #18151f;
}

.postcard a {
    color: inherit;
}

.postcard h1, .postcard .h1 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.postcard .small {
    font-size: 80%;
}

.postcard .small .author {
    display: inline;
}

.postcard .postcard__title {
    font-size: 1.75rem;
}

.postcard .postcard__img {
    max-height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.postcard .postcard__img_link {
    display: contents;
}

.postcard .postcard__bar {
    width: 50px;
    height: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
}

.postcard .postcard__text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: "Baloo 2", cursive;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    font-weight: initial;
}

.postcard .postcard__preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%;
}

.postcard .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 20px 0 0 0;
    padding: 0;
    justify-content: center;
}

.postcard .postcard__tagbox .tag__item {
    display: inline-block;
    background: rgba(83, 83, 83, 0.4);
    border-radius: 3px;
    padding: 2.5px 10px;
    margin: 0 5px 5px 0;
    cursor: default;
    user-select: none;
    transition: background-color 0.3s;
}

.postcard .postcard__tagbox .tag__item:hover {
    background: rgba(83, 83, 83, 0.8);
}

.postcard:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 1;
    border-radius: 10px;
}

.postcard:hover .postcard__bar {
    width: 100px;
}


@media screen and (min-width: 769px) {
    .postcard {
        flex-wrap: inherit;
    }

    .postcard .postcard__title {
        font-size: 2rem;
    }

    .postcard .postcard__tagbox {
        justify-content: start;
    }

    .postcard .postcard__img {
        max-width: 300px;
        max-height: 100%;
        transition: transform 0.3s ease;
    }

    .postcard .postcard__text {
        padding-right: 3rem;
        padding-left: 3rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        width: 100%;
    }

    .postcard .media.postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        background: #18151f;
        top: -20%;
        height: 130%;
        width: 45px;
    }

    .postcard:hover .postcard__img {
        transform: scale(1.1);
    }

    .postcard:nth-child(2n+1) {
        flex-direction: row;
    }

    .postcard:nth-child(2n+0) {
        flex-direction: row-reverse;
    }

    .postcard:nth-child(2n+1) .postcard__text::before {
        left: -12px !important;
        transform: rotate(4deg);
    }

    .postcard:nth-child(2n+0) .postcard__text::before {
        right: -12px !important;
        transform: rotate(-4deg);
    }
}

@media screen and (min-width: 1024px) {
    .postcard__text {
        padding: 2rem 3.5rem;
    }

    .postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        top: -20%;
        height: 130%;
        width: 45px;
    }

    .postcard.dark .postcard__text:before {
        background: #18151f;
    }

    .postcard.light .postcard__text:before {
        background: #e1e5ea;
    }
}

.postcard .postcard__tagbox .green.play:hover {
    background: #79dd09;
    color: black;
}

.green .postcard__title:hover {
    color: #79dd09;
}

.green .postcard__bar {
    background-color: #79dd09;
}

.green::before {
    background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.green:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .blue.play:hover {
    background: #0076bd;
}

.blue .postcard__title:hover {
    color: #0076bd;
}

.blue .postcard__bar {
    background-color: #0076bd;
}

.blue::before {
    background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.blue:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .red.play:hover {
    background: #bd150b;
}

.red .postcard__title:hover {
    color: #bd150b;
}

.red .postcard__bar {
    background-color: #bd150b;
}

.red::before {
    background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.red:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .yellow.play:hover {
    background: #bdbb49;
    color: black;
}

.yellow .postcard__title:hover {
    color: #eee542;
}

.yellow .postcard__bar {
    background-color: #eee542;
}

.yellow::before {
    background-image: linear-gradient(-30deg, rgba(238, 229, 66, 0.8), transparent 50%);
}

.yellow:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(238, 229, 66, 0.8), transparent 50%);
}

@media screen and (min-width: 769px) {
    .green::before {
        background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }

    .green:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }

    .blue::before {
        background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }

    .blue:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }

    .red::before {
        background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }

    .red:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }

    .yellow::before {
        background-image: linear-gradient(-80deg, rgba(238, 229, 66, 0.8), transparent 50%);
    }

    .yellow:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(238, 229, 66, 0.8), transparent 50%);
    }
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #012970;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #4154f1;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: #5465f2;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li + li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #012970;
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: #4154f1;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #0257ee;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #d7e6ff;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #4154f1;
    background: #4154f1;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #a5c5fe;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: #012970;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #4154f1;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #4084fd;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

    .blog .entry .entry-meta ul li + li {
        padding-left: 20px;
    }

.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
}

.blog .entry .entry-meta a {
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #012970;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #0d64fd;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #013289;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #4154f1;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px;
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #0f394c;
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
    color: rgba(1, 41, 112, 0.5);
    margin-right: 5px;
}

.blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
    width: 60px;
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #4154f1;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #012970;
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #013ca3;
    margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #a0aaf8;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #a0aaf8;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #4b6cb2;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    color: #4b6cb2;
    background-color: #eee542;
}

/*--------------------------------------------------------------
# Course
--------------------------------------------------------------*/
.course .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.course .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #012970;
    position: relative;
}

.course .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.course .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.course .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.course .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #4154f1;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.course .sidebar .search-form form button i {
    line-height: 0;
}

.course .sidebar .search-form form button:hover {
    background: #5465f2;
}

.course .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.course .sidebar .categories ul li + li {
    padding-top: 10px;
}

.course .sidebar .categories ul a {
    color: #012970;
    transition: 0.3s;
}

.course .sidebar .categories ul a:hover {
    color: #4154f1;
}

.course .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.course .sidebar .providers {
    margin-bottom: -10px;
}

.course .sidebar .providers ul {
    list-style: none;
    padding: 0;
}

.course .sidebar .providers ul li {
    display: inline-block;
}

.course .sidebar .providers ul a {
    color: #0257ee;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #d7e6ff;
    display: inline-block;
    transition: 0.3s;
}

.course .sidebar .providers ul a:hover {
    color: #fff;
    border: 1px solid #4154f1;
    background: #4154f1;
}

.course .sidebar .providers ul a span {
    padding-left: 5px;
    color: #a5c5fe;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Payment Confirmation
--------------------------------------------------------------*/

.bg-gray {
    background-image: linear-gradient(135deg, transparent, #c0c0c0 90%);
}

.invoice-total {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

.invoice-total .icon {
    border-radius: 50px;
    background: #eee542;
    width: 50px;
    height: 50px;
}

.invoice-total .icon i {
    color: #4b6cb2;
    font-size: 38px;
    padding-left: 5px;
}

.invoice-total h3 {
    padding-left: 70px;
    margin-top: -50px;
}

.invoice-total p {
    padding-left: 70px;
    margin-top: -10px;
    font-size: 12px;
}

.invoice-details {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

.invoice-details h4 {
    text-align: center;
}

.invoice-details .course-name {
    padding-top: 20px;
}

.invoice-details .subdetails {
    font-size: 14px;
    line-height: 1.3;
    margin-top: -10px;
}

.invoice-details .invoice-table {
    margin: 15px;
    width: 80%;
}



/*--------------------------------------------------------------
# Managed Services Table
--------------------------------------------------------------*/
.managed-services {
    border-color: #eee542;
    border-style: solid;
    border-width: 1px;
}



/*--------------------------------------------------------------
# Managed Services Boxes Ribbon
--------------------------------------------------------------*/
.ad-hoc.icon-box1 {
    overflow: visible;
}
.ad-hoc.icon-box1 .icon {
    left: 0;
    overflow: hidden;
}
.ad-hoc.icon-box1 .icon i {
    margin-left: -20px;
}
.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}
.ribbon span {
    font-size: 10px;
    /*color: #fff;*/
    color: #0f394c;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: linear-gradient(#ebe01e 0%, #eee542 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    right: -21px;
}
.ribbon span::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #eee542;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #eee542;
}
.ribbon span::after {
    content: '';
    position: absolute;
    right: 0%;
    top: 100%;
    z-index: -1;
    border-right: 3px solid #eee542;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #eee542;
}
.ribbon-straight {
    --f: .5em; /* control the folded part*/
    --r: .8em; /* control the ribbon shape */

    position: relative;
    margin-right: -30px;
    margin-bottom: -30px;
    margin-top: 30px;
    margin-left: calc(100% - 100px);
    bottom: 20px;
    right: -.5em;
    padding-inline: .25em;
    line-height: 20px;
    background: #eee542;
    background: linear-gradient(#ebe01e 0%, #eee542 100%);
    border-top: .5em solid #0005;
    border-right: .8em solid #0000;
    clip-path: polygon(0 100%,100% 100%,100% var(--f),calc(100% - var(--f)) 0, calc(100% - var(--f)) var(--f),0 var(--f), var(--r) calc(50% + var(--f)/2));
}
.blue.ribbon-straight {
    background: linear-gradient(#344b7b 0%, #4b6cb2 100%);
    color: #fff;
}
.green.ribbon-straight {
    background: linear-gradient(#2b7d27 0%, #3aaa35 100%);
    color: #fff;
}
.ribbon-straight span {
    font-size: 10px;
    color: #0f394c;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 40px;
}
.blue span {
    background: linear-gradient(#344b7b 0%, #4b6cb2 100%);
    color: #fff;
}
.blue span::before {
    border-left-color: #4b6cb2;
    border-top-color: #4b6cb2;
}
.blue span::after {
    border-right-color: #4b6cb2;
    border-top-color: #4b6cb2;
}
.green span {
    background: linear-gradient(#2b7d27 0%, #3aaa35 100%);
    color: #fff;
}
.green span::before {
    border-left-color: #3aaa35;
    border-top-color: #3aaa35;
}
.green span::after {
    border-right-color: #3aaa35;
    border-top-color: #3aaa35;
}