/* Theme setting custom */
.button-theme{
    background-color: #ffad03 !important;
    color: #101010 !important;
    position: relative; /* To allow sliding effect */
    animation: slideButton 2s infinite alternate ease-in-out; /* Animation definition */
}
.text-dark{
    color: black !important;
}
@keyframes slideButton {
    0% {
      transform: translateX(0); /* Start position */
    }
    50% {
      transform: translateX(10px); /* Slide slightly to the right */
    }
    100% {
      transform: translateX(0); /* Return to start position */
    }
}
.font-theme-color-orange{
    color: #ffad03 !important;
}
.font-theme-color-blue-dark{
    color: #101010 !important;
}
.font-theme-color-blue-light{
    /* color: #3bafd3 !important; */
    color: #0d49a1 !important;
}
/* End */

.pricing{
    box-shadow: 0 25px 90px rgba(13, 73, 161, 0.2) !important;
}
.pricing-total{
    background: #0d49a1;
}
.wave-primary .wave-path-1 {
	fill: rgba(0, 80, 187, 0.3);
	animation: wave5 15s ease-in-out infinite;
}

.wave-primary .wave-path-2 {
	fill: rgba(0, 80, 187, 0.15);
	animation: wave6 15s ease-in-out infinite;
}

.wave-primary .wave-path-3 {
	fill: rgba(0, 80, 187, 0.1);
	animation: wave7 15s ease-in-out infinite;
}
.context-dark .wave-primary .wave-path-1, .bg-gray-700 .wave-primary .wave-path-1, .bg-gray-800 .wave-primary .wave-path-1, .bg-primary-app .wave-primary .wave-path-1, .bg-primary .wave-primary .wave-path-1, .bg-primary-1 .wave-primary .wave-path-1, .bg-primary-2 .wave-primary .wave-path-1, .bg-wave-dark-wrap .wave-primary .wave-path-1, .bg-gradient-primary .wave-primary .wave-path-1, .bg-gradient-primary-1 .wave-primary .wave-path-1, .rd-navbar-corporate .wave-primary .wave-path-1, .rd-navbar-app .wave-primary .wave-path-1 {
	fill: rgba(59, 175, 211, 0.9);
}

.context-dark .wave-primary .wave-path-2, .bg-gray-700 .wave-primary .wave-path-2, .bg-gray-800 .wave-primary .wave-path-2, .bg-primary-app .wave-primary .wave-path-2, .bg-primary .wave-primary .wave-path-2, .bg-primary-1 .wave-primary .wave-path-2, .bg-primary-2 .wave-primary .wave-path-2, .bg-wave-dark-wrap .wave-primary .wave-path-2, .bg-gradient-primary .wave-primary .wave-path-2, .bg-gradient-primary-1 .wave-primary .wave-path-2, .rd-navbar-corporate .wave-primary .wave-path-2, .rd-navbar-app .wave-primary .wave-path-2 {
	fill: rgba(59, 175, 211, 0.8);
}

.context-dark .wave-primary .wave-path-3, .bg-gray-700 .wave-primary .wave-path-3, .bg-gray-800 .wave-primary .wave-path-3, .bg-primary-app .wave-primary .wave-path-3, .bg-primary .wave-primary .wave-path-3, .bg-primary-1 .wave-primary .wave-path-3, .bg-primary-2 .wave-primary .wave-path-3, .bg-wave-dark-wrap .wave-primary .wave-path-3, .bg-gradient-primary .wave-primary .wave-path-3, .bg-gradient-primary-1 .wave-primary .wave-path-3, .rd-navbar-corporate .wave-primary .wave-path-3, .rd-navbar-app .wave-primary .wave-path-3 {
	fill: rgba(59, 175, 211, 0.5);
}
.section-banner{
    background-color: #101010 !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::before{
    background: #ffad03;
}
#enrollFrm{
    background-color: #101010 !important;
}

.bannerCustom{
    /* background-image: url(../images/banners/c1.png); */
    background-color: #101010;
    height: 310px;
    cursor: pointer;
}

.card {
    border: 2px dotted #ffad03; /* Dotted border with a custom color */
    border-radius: 10px; /* Optional: Adds rounded corners */
    padding: 15px; /* Optional: Adds padding for better spacing */
    background-color: #fff; /* Optional: Ensures a clean background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for depth */
}  

.card-header {
    background-color: #0d49a1;
    padding: 10px 15px;
    border-bottom: 2px solid #3bafd3;
}
.card-header .card-title{
    color: white !important;
}

.custom-section {
    background-color: #0d49a1;
    color: white !important;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    text-align: center;
}
.arrow {
    width: 15px;
    height: 15px;
    background-color: white;
    position: absolute;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    animation: move 3s infinite ease-in-out;
}
.arrow-left {
    top: 25%;
    left: -50px;
    animation-delay: 0.5s;
}
.arrow-right {
    top: 25%;
    right: -50px;
    animation-delay: 1s;
}
@keyframes move {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(100vw);
    }
    100% {
      transform: translateX(0);
    }
}
.ui-to-top {
    background-color: #ffad03 !important;
}

.faq-section {
    background-color: #ffffff;
    padding: 50px 20px;
}
.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #101010;
}
.faq-item {
    background-color: #f1f1f1;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    margin-bottom: 15px;
}
.faq-item .faq-question {
    font-weight: bold;
    font-size: 1.25rem;
    color: #101010;
    padding: 15px;
    cursor: pointer;
}
.faq-item .faq-answer {
    font-size: 1rem;
    color: #101010;
    display: none;
    padding: 15px;
    border-top: 1px solid #dcdcdc;
}
.faq-item.active .faq-answer {
    display: block;
}
small{
    font-size: 15px;
}

body{
    color: black !important;
    font-family: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.custom-icon{
    text-align: center !important;
}

.training-highlight{
    height: 510px;
    background-size: contain;
    background-image: url(../images/banners/training-highlights-banner.png);
}

.animated-python {
    position: relative;
    display: inline-block;
}

.scribble {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    animation: draw-scribble 2s ease-in-out infinite;
}

.scribble-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: scribble-animation 2s ease-in-out forwards;
}

@keyframes scribble-animation {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.gradient-text {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: transparent !important;
    background: linear-gradient(to right, #ff7e5f, #feb47b, #86a8e7, #91eac9);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradient-move 3s linear infinite;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
} 

.highlight-3{
    background: linear-gradient(315deg, #ffad03 20%, #101010 80%, #0d49a1 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: large;
    font-weight: 600;
}

.swiper-slider-2 {
    overflow: hidden !important;
}


/* Responsive */
@media(min-width: 1024px)
{
    .bannerCustom{
        height: 610px;
    }
    .bannerCustom .row-30{
        margin-top: 80px;
    }
    .custom-icon{
        margin-right: 25%;
    }
    .customIframe{
        height: 310px;
    }
}

@media(max-width: 768px)
{
    .training-highlight{
        background-size: contain;
        height: auto;
    }
    .customIframe{
        height: auto;
    }
}

@media(min-width: 992px){
    .heading-4-custom{
        font-size: 18px !important;
    }
}


/* Demo */
.elementor-widget-container {
    padding: 20px 20px 20px 20px;
    background-color: #0d49a1;
    border-radius: 7px 7px 7px 7px;
    box-shadow: 5px 5px 0px 0px #101010;
}
.elementor-widget .elementor-icon-list-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.elementor-element ul.elementor-icon-list-items {
    padding: 0;
}
.elementor-widget .elementor-icon-list-item {
    margin: 0;
    padding: 0;
    position: relative;
}
.elementor-widget .elementor-icon-list-item, .elementor-widget .elementor-icon-list-item a {
    display: flex;
    font-size: inherit;
    align-items: var(--icon-vertical-align, center);
}
.elementor-widget.elementor-align-left .elementor-icon-list-item, .elementor-widget.elementor-align-left .elementor-icon-list-item a {
    justify-content: flex-start;
    text-align: left;
}
.elementor-widget .elementor-icon-list-icon {
    display: flex;
    position: relative;
    top: var(--icon-vertical-offset, initial);
}
.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon {
    text-align: var(--e-icon-list-icon-align);
}
.fa, .fab, .fad, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}
.elementor-widget .elementor-icon-list-icon i {
    width: 1.25em;
    font-size: var(--e-icon-list-icon-size);
}
.elementor-2596 .elementor-element.elementor-element-49d17d65 .elementor-icon-list-icon i {
    color: #FFDB0B;
    transition: color 0.3s;
}
.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text {
    align-self: center;
    padding-inline-start: 5px;
}
.elementor-2596 .elementor-element.elementor-element-49d17d65 .elementor-icon-list-text {
    color: #FFFFFF;
    transition: color 0.3s;
}
.elementor-2596 .elementor-element.elementor-element-49d17d65 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-2596 .elementor-element.elementor-element-49d17d65 .elementor-icon-list-item > a {
    font-family: "Poppins", Sans-serif;
    font-size: 19px;
    font-weight: 400;
}
.custom-check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Makes it a circle */
    background-color: #0d49a1; /* Circle background color */
    color: #ffad03; /* Icon color */
    font-size: 1.5rem; /* Icon size */
    border: 2px solid #101010; /* Optional border */
}
.elementor-icon-list-text{
    font-weight: bolder !important;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffad03;
    color: white;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center;
    z-index: 1000;
    font-weight: 400;
}
.countdown {
    display: flex;
    align-items: center;
    gap: 10px;
  }
.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #333;
    font-weight: bold;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border: 2px solid #ffad03;
    border-radius: 5px;
    text-align: center;
}
.modal-content{
    border: 3px solid #ffad03 !important;
    border-style: dotted !important;
}