:root {
    --theme_color: #064787;
    --blue_color: #00cfff;
    --red_color: #e9404a;
    --yellow_color: #ffcb00;
    --white_color: #fff;
    --purple_color: #571d9d;
    --green_color: #24cc63;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    background: #064787;
    letter-spacing: 1px;
}

html {
    font-family: "Roboto", sans-serif;
}

a {
    color: #064787;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

a:hover {
    color: #3ea6c2;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.font14 {
    font-size: 14px;
}


/*Slim Scroll*/


/* Works on Firefox */

* {
    scrollbar-width: thin;
    scrollbar-color: #333 #d4d4d4;
}


/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 2px;
}

*::-webkit-scrollbar-track {
    background: #d4d4d4;
}

*::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 6px;
}

.logo {
    max-width: 100%;
    height: 100px;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}

.theme_text {
    color: var(--theme_color);
}

.blue_text {
    color: var(--blue_color);
}

.yellow_text {
    color: var(--yellow_color);
}

.purple_text {
    color: var(--purple_color);
}

.theme_bg {
    background: var(--theme_color);
}

.blue_bg {
    background: var(--blue_color);
}

.yellow_bg {
    background: var(--yellow_color);
}

.purple_bg {
    background: var(--purple_color);
}


/*Card Design*/

.card {
    border-radius: 8px;
    overflow: hidden;
    border: 0;
    transition: all 0.15s ease;
}

.card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1), 0 10px 8px rgba(0, 0, 0, 0.015);
}

.card-header {
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: solid 1px #f2f2f2;
}

.card-header h5 {
    color: #000;
}

.card-header .icon {
    width: 45px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
}

.yellow_btn {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border: solid 1px #fff;
    padding: 15px 40px;
    background: var(--yellow_color);
    border-radius: 6px;
    transform: scale(1);
    animation: pulse 1s infinite;
    transition: 0.3s;
}

.yellow_btn:hover {
    background: var(--red_color);
    border: solid 1px #fff;
    color: #fff;
}

.yellow_btn:hover .text-danger {
    color: #fff !important;
}

.red_btn {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border: solid 1px #fff;
    padding: 20px 40px;
    background: var(--red_color);
    border-radius: 6px;
    transform: scale(1);
    animation: pulse 1s infinite;
    transition: 0.3s;
}

.red_btn:hover {
    background: var(--yellow_color);
    border: solid 1px #fff;
    color: #000;
}

.red_btn:hover .text-danger {
    color: #000 !important;
}

.green_btn {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    padding: 20px 40px;
    background: var(--green_color);
    border-radius: 6px;
    transform: scale(1);
    animation: pulse 1s infinite;
    transition: 0.3s;
}

.green_btn:hover {
    background: #0fb34c;
    color: #fff;
}

.green_btn:hover .text-danger {
    color: #000 !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--yellow_color);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px #0000;
    }
    to {
        transform: scale(1);
        box-shadow: 0 0 #0000;
    }
}

.accordion-body {
    max-height: 500px;
    overflow-y: auto;
}

.accordion-button:focus {
    border-color: none;
    box-shadow: none;
}

.video_lg {
    max-width: 800px;
    width: 100%;
    height: 460px;
}

.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 10px;
    display: none;
    background: var(--yellow_color);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    z-index: 99;
}

.back-to-top:hover {
    background: var(--yellow_color) !important;
    color: #fff;
}

.whatsapp_button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
}

.whatsapp_button:hover {
    color: #66e066;
    font-weight: 600;
}

.whatsapp_button img {
    max-width: 100%;
    max-height: 36px;
}

.hr_row {
    position: relative;
    border-top: solid 1px #487fb5;
}

.hr_row:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    margin: auto;
    display: block;
    transform: rotate(45deg);
    width: 40px;
    height: 40px;
    border: solid 1px #487fb5;
    background: var(--theme_color);
}

.hr_row:after {
    font-family: bootstrap-icons !important;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    transform: rotate(90deg);
    margin: auto;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--theme_color);
}

.hr_row .bi {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: table;
    z-index: 9;
    font-size: 30px;
    top: -15px;
    color: #487fb5;
}


/**/

.hr_row2 {
    position: relative;
    border-top: solid 1px #fff;
}

.hr_row2:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    margin: auto;
    display: block;
    transform: rotate(45deg);
    width: 40px;
    height: 40px;
    border: solid 1px #fff;
    background: var(--purple_color);
}

.hr_row2:after {
    font-family: bootstrap-icons !important;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    transform: rotate(90deg);
    margin: auto;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--purple_color);
}

.hr_row2 .bi {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: table;
    z-index: 9;
    font-size: 30px;
    top: -15px;
    color: #fff;
}

.box_animation {
    background: var(--yellow_color);
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    transition: 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    color: #000;
}

.box_animation p,
.box_animation h4 {
    position: relative;
    color: #000;
}

.box_animation::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: .5s;
    background: var(--red_color);
    z-index: 0;
}

.box_animation:hover p,
.box_animation:hover h4 {
    color: #fff;
    position: inherit;
}

.box_animation .bi {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 30px;
}

.box_animation:hover .bi {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    background: #fff;
    color: var(--theme_color);
    display: inline-block;
}

.box_animation:hover::before {
    height: 100%;
    top: 0;
}


/**/

.box_animation2 {
    background: var(--theme_color);
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    transition: 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.box_animation2 p,
.box_animation2 h5 {
    position: relative;
    color: #fff;
}

.box_animation2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: .5s;
    background: var(--blue_color);
    z-index: 0;
}

.box_animation2:hover p,
.box_animation2:hover h4 {
    color: #fff;
    position: inherit;
}

.box_animation2 .bi {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 30px;
}

.box_animation2:hover .bi {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    background: #fff;
    color: var(--theme_color);
    display: inline-block;
}

.box_animation2:hover::before {
    height: 100%;
    top: 0;
}

.course_outline {
    background: #fff;
}

.course_outline span {
    background: var(--yellow_color);
    padding: 30px;
}

.accordion-button {
    font-size: 20px;
    border-radius: 4px !important;
}

.accordion-button:not(.collapsed) {
    color: #000 !important;
    background: var(--yellow_color) !important;
    box-shadow: none !important;
}

footer {
    color: #000;
    font-size: 14px;
}

.animate {
    animation: countdown 15s linear forwards
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease-out;
}

.button div .button-content-hover {
    position: absolute;
    inset: 0;
    transform: translateY(100%) skewY(18deg);
    transform-origin: left center;
    transition: .4s ease-out
}

.button div .button-content {
    transform: translateY(0) skew(0);
    transition: .4s ease-out;
    display: inline-block
}

.button:hover div .button-content-hover {
    transform: translateY(0%) skewY(0)
}

.button:hover div .button-content {
    opacity: 0;
    transform: translateY(-100%) skew(-18deg);
    transition: .4s ease-out
}

.show-footer-banner {
    transform: translateY(0%)
}

.footer_stikky {
    background: var(--purple_color);
    position: fixed;
    width: 100%;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
}


/*testimonials*/

.owl-nav .owl-prev {
    left: -10px;
}

.owl-nav .owl-next {
    right: -10px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.owl-carousel .owl-nav .owl-next .bi,
.owl-carousel .owl-nav .owl-prev .bi {
    color: var(--purple_color);
    font-size: 36px;
    background: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-block;
}

.testimonial_slider.owl-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
}

.testimonial_slider.owl-carousel p {
    color: #737373;
}

@media (max-width:1199px) {
    .video_lg {
        height: 400px;
    }
}

@media (max-width:767px) {
    .video_lg {
        height: 300px;
    }
}

@media (max-width:575px) {
    .video_lg {
        height: 260px;
    }
}

@media (max-width:414px) {
    .video_lg {
        height: 220px;
    }
}