/**
* Template Name: EduHub
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #fab827; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --secondary-color: #365ca9;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #272828;  /* The default color of the main navmenu links */
    --nav-hover-color: #365ca9; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #365ca9; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    scroll-behavior: smooth;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 60px;
    margin-right: 8px;
}

.header .logo h1 {
    font-weight: 700;
    font-size: 30px;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 -20px 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.header .btn-getstarted-no-background {
    background: none;
    color: #444444;
    margin-left: 30px;
    margin-right: -5px;
    padding: 8px 1px;
}

.header .btn-getstarted-no-background:hover {
    background-color: unset !important;
    color: #444444;
}

.header .btn-getstarted-blue {
    background-color: #0a53be!important;
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    margin-bottom: 0;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--surface-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --default-color: var(--contrast-color);
    --background-color: var(--accent-color);
    --heading-color: var(--contrast-color);
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 40px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
    padding: 20px 0;
}

.page-title nav a {
    color: var(--default-color);
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 70px;
    overflow: clip;
}

.page-content ul {
    margin-bottom:20px;
}
.page-content li {
    list-style: square;
    margin-left:50px;
    margin-bottom:5px;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--nav-font);
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
}

.hero-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/*.hero:before {*/
/*  content: "";*/
/*  background: color-mix(in srgb, var(--background-color), transparent 60%);*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  z-index: 2;*/
/*}*/

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    color:white;
    margin-top: -50px;
    margin-bottom:50px;
    font-size: 2.5rem!important;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}

.hero .btn-get-started {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: 0.4s;
    margin-top: 30px;
    border: 2px solid var(--default-color);
    color: var(--default-color);
}

.hero .btn-get-started:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-view-all {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: 0.4s;
    margin-top: 30px;
    background-color: var(--accent-color);
    color: white;
}

.btn-view-all:hover {
    color:white!important;
    background-color: var(--accent-color);
    opacity: .8;
}



@media (max-width: 768px) {

    .hero p {
        font-size: 18px;
    }
}


/* =========================
   What we offer (with bottom S-wave)
   ========================= */

.edh-offers{
    --edh-bg: #365CA9;
    --edh-top-blue: #B9CBFF;
    --edh-top-amber: #F4B52A;
    --edh-wave-h: clamp(90px, 10vw, 170px);

    position: relative;
    background: var(--edh-bg);

    /* reserve space for the wave so it doesn't overlap next section */
    padding-bottom: calc(3rem + var(--edh-wave-h));
    overflow: hidden; /* prevents any accidental horizontal scroll */
}

/* title */
.edh-title{
    color:#fff;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1.1;
    font-size: clamp(28px, 3.2vw, 44px);
    text-shadow: 0 2px 10px rgba(0,0,0,.12);
}

/* cards */
.edh-card{
    border-radius:28px;
    overflow:visible;
}

.edh-card--blue  { --edh-top: var(--edh-top-blue); }
.edh-card--amber { --edh-top: var(--edh-top-amber); }

/* TOP AREA (out-of-frame effect) */
.edh-card__top{
    background: var(--edh-top);
    height: 200px;
    position: relative;
    overflow: visible;
    border-radius: 28px 28px 0 0; /* no vendor duplicates needed */
}

/* white stripe (separator) */
.edh-card__top::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height: 14px;
    background:#fff;
    z-index: 3;
}

/* illustration */
.edh-card__img{
    position:absolute;
    left:50%;
    top:30%;
    width: clamp(280px, 22vw, 300px);
    max-width:none;
    height:auto;
    z-index: 2;
    transform:
            translate(-50%, -50%)
            translate(var(--edh-img-x, 0px), var(--edh-img-y, 0px))
            scale(var(--edh-img-scale, 1));
}

/* lists */
.edh-list{
    list-style:none;
    padding-left:0;
    margin:0;
    line-height:1.55;
    color:#334155;
}
.edh-list > li{ margin:0 0 .65rem; }
.edh-list > li::before{
    content:"→ ";
    font-weight:700;
    color:#0f172a;
}
.edh-list--sub{
    margin-top:.35rem;
    color:#475569;
}
.edh-list--sub > li{ margin:0 0 .35rem; }
.edh-list--sub > li::before{
    content:"→ ";
    font-weight:600;
    color:#334155;
}

/* CTA */
.edh-offers__cta{
    display: block;
    margin-bottom: 35px;
}

.edh-offers__cta img{
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* ===== FULL-WIDTH WAVE (attached to offers section) ===== */
.edh-offers__wave{
    position: absolute;
    left: 50%;
    bottom: -1px;                 /* avoid 1px seam */
    transform: translateX(-50%);
    width: 100vw;                 /* edge-to-edge */
    height: var(--edh-wave-h);
    pointer-events: none;
    z-index: 5;
}
.edh-offers__wave svg{
    width: 100%;
    height: 100%;
    display: block;
}

/* mobile tweaks */
@media (max-width: 575.98px){
    .edh-card__top{ height: 220px; }
    .edh-card__top::after{ height: 12px; }
}

@media (max-width: 991px) {
    .what-we-offer-3 {
        margin-top:55px;
    }
}

@media (max-width: 768px) {
    .what-we-offer-2 {
        margin-top: 55px;
    }
    .what-we-offer-3 {
        margin-top: 55px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    background-color: #365CA9;
}

.about h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color:white;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 24px 12px 24px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}

.about .content .read-more:hover i {
    margin-left: 10px;
}

/*--------------------------------------------------------------
# How to
--------------------------------------------------------------*/
.how-to {
    margin-top:-80px;
}

.edh-how-to__title{
    color: white;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
    position:relative;
    bottom: 30px;
}

/* =========================
   EDH Course section (like screenshot)
   ========================= */

.edh-course{
    --edh-blue: #365CA9;
    --edh-white: #ffffff;
    --edh-text: rgba(255,255,255,.92);
    --edh-text-strong: #ffffff;
    --edh-accent: #FAB827;

    background: var(--edh-blue);
    padding: clamp(28px, 4vw, 56px) 0;
}

.edh-course__title{
    color: var(--edh-text-strong);
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
}

.edh-course__grid{
    margin-top: clamp(18px, 3vw, 34px);
    row-gap: 26px;
}

/* Center art placeholder */
.edh-course__art{
    width: min(420px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

/* Bullets */
.edh-bullets{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 22px;
}

.edh-bullets__item{
    color: var(--edh-text);
}

.edh-bullets__h{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--edh-text-strong);
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 6px;
}

.edh-ico{
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}

.edh-bullets__p{
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35;
}

/* Bottom text */
.edh-course__foot{
    margin-top: clamp(18px, 3vw, 34px);
    color: var(--edh-text);
}

.edh-course__lead{
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.35;
    font-weight: 700;
    color: rgba(255,255,255,.88);
}

.edh-course__price{
    margin-top: 10px !important;
    font-size: clamp(18px, 1.55vw, 22px);
    line-height: 1.35;
    font-weight: 800;
    color: rgba(255,255,255,.96);
}

.edh-course__compare{
    margin-top: 10px !important;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.35;
    color: rgba(255,255,255,.86);
}

.edh-accent{
    color: var(--edh-accent);
    font-weight: 900;
}

/* Responsive tightening */
@media (max-width: 991.98px) {
    .edh-bullets__h {
        font-size: 1.25rem;
    }

    .edh-bullets__p {
        font-size: 1.05rem;
    }

    .edh-course__art {
        aspect-ratio: 16 / 10;
    }
}

@media (width <= 1100px) {
    .edh-how-to__title {
        bottom:-10px;
    }
}
/* =========================
   EDH Reviews (wave SAME as offers)
   ========================= */

.edh-reviews{
    --edh-blue: #365CA9;
    --edh-card-radius: 28px;
    --edh-wave-h: clamp(90px, 10vw, 170px);

    position: relative;
    background: var(--edh-blue);

    /* reserve space for the wave so it doesn't overlap next section */
    padding: clamp(32px, 5vw, 70px) 0 calc(3rem + var(--edh-wave-h));
    overflow: hidden;
}

/* ensure content sits above the wave */
.edh-reviews > .container{
    position: relative;
    z-index: 2;
}

/* header images */
.edh-reviews__head{ margin-bottom: clamp(18px, 4vw, 40px); }
.edh-reviews__hand{ display:block; margin:0 auto; height:auto; max-width: min(1100px, 100%); }
.edh-reviews__hand--top{ width: min(1100px, 100%); margin-bottom: clamp(10px, 2vw, 18px); }
.edh-reviews__hand--mid{ width: min(520px, 92%); }

/* Make swiper height stable (tallest slide) */
.edh-reviews__swiper .swiper-wrapper{ align-items: stretch; }
.edh-reviews__swiper .swiper-slide{
    height: auto;
    display: flex;
}
.edh-review{ height: 100%; }

/* Card */
.edh-review{
    position: relative;
    background:#fff;
    border-radius: var(--edh-card-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    padding: 34px 40px 22px;
}
.edh-review--wide{
    width: min(1200px, 100%);
    margin: 0 auto;
}

/* Avatar top-left, bigger */
.edh-review__avatar{
    position:absolute;
    left: 24px;
    top: 24px;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0,0,0,.06);
    z-index: 2;
}
.edh-review__avatar img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
}

/* Reserve space so text never goes under avatar */
.edh-review__content{
    padding-left: 148px; /* 112 + 36 gap */
    padding-top: 6px;
}

/* Text */
.edh-review__text{
    font-size: clamp(18px, 1.15vw, 22px);
    line-height: 1.65;
    color: #1f2937;
    font-style: italic;
    text-align: center;
}

/* Meta */
.edh-review__meta{
    margin-top: 14px;
    text-align: right;
    color:#111827;
}
.edh-review__name{
    font-size: 18px;
    opacity: .9;
    margin-bottom: 6px;
}
.edh-review__grade{
    font-size: 18px;
}
.edh-review__grade strong{
    font-weight: 900;
}

/* Pagination must be STATIC and below the card */
.edh-reviews__swiper .swiper-pagination{
    position: static !important;
    margin-top: 34px;
    padding-bottom: 6px;
}

.edh-reviews__pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.45);
    opacity: 1;
}
.edh-reviews__pagination .swiper-pagination-bullet-active{
    background: rgba(255,255,255,.95);
}

/* ===== FULL-WIDTH WAVE (attached to reviews section) ===== */
.edh-reviews__wave{
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 100vw;
    height: var(--edh-wave-h);
    pointer-events: none;
    z-index: 5;
}
.edh-reviews__wave svg{
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile */
@media (max-width: 575.98px){
    .edh-review{ padding: 26px 18px 18px; }
    .edh-review__avatar{
        left: 16px;
        top: 16px;
        width: 88px;
        height: 88px;
    }
    .edh-review__content{
        padding-left: 112px; /* 88 + 24 */
    }
    .edh-review__text{
        text-align: left;
    }
}

/*--------------------------------------------------------------
# Products title home
--------------------------------------------------------------*/

/* centered, 20px “air” above the wave */
.edh-bridge-title{
    position:absolute;
    left:0;
    right:0;
    text-align:center;
    z-index:6;
    pointer-events:none;
    padding: 0 12px;

    bottom: var(--edh-wave-h)
}

/* style like "Курс за самоподготовка за ДЗИ по БЕЛ" */
.edh-hero-title {
    color:#fff;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
    position:relative;
    bottom:-35px;
}

/* =========================
   EDH Mini Products – FINAL CSS (grid + mobile centered + big thumbs + no overlap)
   ========================= */

/* Desktop (>=992): 3 columns */
.edh-mini-products .edh-wc-grid ul.products{
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 1.5rem; /* like g-4 */
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Reset theme floats/widths that can break the grid */
.edh-mini-products .edh-wc-grid ul.products > li.product{
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

/* <= 991px: 1 product per row, centered content, bigger thumbs, no overlap */
@media (max-width: 991.98px){

    /* one per row */
    .edh-mini-products .edh-wc-grid ul.products{
        grid-template-columns: 1fr;
    }

    /* center all typical loop text */
    .edh-mini-products .edh-wc-grid ul.products > li.product,
    .edh-mini-products .edh-wc-grid ul.products > li.product .woocommerce-loop-product__link,
    .edh-mini-products .edh-wc-grid ul.products > li.product .woocommerce-loop-product__title,
    .edh-mini-products .edh-wc-grid ul.products > li.product .price{
        text-align: center !important;
    }

    /* link wrapper: give room below image + clip scaled image */
    .edh-mini-products .edh-wc-grid ul.products > li.product .woocommerce-loop-product__link{
        display: block;
        width: 100%;
        max-width: none !important;
        margin: 0 !important;

        position: relative;
        overflow: hidden;          /* prevents image overlap */
        padding-bottom: 18px;      /* air under the image */
    }

    /* bigger thumbnails without overlapping the title */
    .edh-mini-products .edh-wc-grid ul.products > li.product a img,
    .edh-mini-products .edh-wc-grid ul.products > li.product .attachment-woocommerce_thumbnail{
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        display: block;
        margin: 0 auto 14px;       /* spacing to the title */

        transform: scale(1.04);    /* subtle “bigger” feel */
        transform-origin: center;
    }

    /* title safety spacing */
    .edh-mini-products .edh-wc-grid ul.products > li.product .woocommerce-loop-product__title{
        margin-top: 6px !important;
        padding-top: 0 !important;
    }

    /* optional breathing room between items */
    .edh-mini-products .edh-wc-grid ul.products > li.product{
        padding: 10px 0;
    }

    .edh-mini-products .edh-wc-grid ul.products{
        gap: .9rem; /* пробвай 12-16px */
    }

    /* махаме theme margin-bottom ако има */
    .edh-mini-products .edh-wc-grid ul.products > li.product{
        margin-bottom: 0 !important;
        padding: 0 !important;  /* ако искаш още по-стегнато */
    }
}

@media (width <= 1100px) {
.edh-bridge-title {
    margin-bottom: 20px;
}
}


/* =========================
   EDH Compare (UPDATED)
   ========================= */

.edh-compare{
    --edh-blue: #365CA9;
    --edh-wave-h: clamp(90px, 10vw, 170px);
    --edh-radius: 18px;

    position: relative;
    background: var(--edh-blue);
    overflow: hidden;

    /* room for wave + some breathing space */
    padding-bottom: calc(3rem + var(--edh-wave-h));
}

/* Make ALL content sit above the wave */
.edh-compare__main,
.edh-compare__bottom{
    position: relative;
    z-index: 2;
}

/* Title – big white */
.edh-compare__title{
    color:#fff;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
}

/* Table “card” wrapper */
.edh-compare__table-wrap{
    background:#fff;
    border-radius: var(--edh-radius);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

/* Table base */
.edh-compare__table{
    margin: 0;
    border-color: rgba(15, 23, 42, .12);
}

/* Header */
.edh-compare__th{
    background: #fff;
    font-weight: 800;
    color: #0f172a;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(15, 23, 42, .14);
}
.edh-compare__th--criteria{ width: 30%; }

.edh-compare__table thead th{
    text-align: center !important;
    vertical-align: middle;
}

/* cells */
.edh-compare__table td{
    padding: 18px 18px;
    vertical-align: middle;
    color: #0f172a;
    border-top: 1px solid rgba(15, 23, 42, .10);
}

/* criterion column */
.edh-compare__criterion{
    color:#334155;
    font-weight: 600;
}

/* (REMOVED) focus row styling
.edh-compare__row--focus .edh-compare__criterion{ ... }
*/

/* content inside cells with mark */
.edh-compare__cell{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    color:#0f172a;
}

/* yes/no marks */
.edh-compare__mark{
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-weight: 900;
    color: #fff;
}
.edh-compare__mark--yes{ background: #16a34a; }
.edh-compare__mark--no{  background: #dc2626; }

.edh-compare__mark--yes::before{ content: "✓"; }
.edh-compare__mark--no::before{  content: "✕"; }

/* logo */
.edh-compare__logo{
    height: 60px;
    display: block;
    margin: 0 auto;
}

/* Bottom area (note + next title) */
.edh-compare__bottom{
    margin-top: clamp(26px, 3vw, 38px);
}

/* note text (white) */
.edh-compare__note{
    color:#fff;
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 700;
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0,0,0,.12);
}

/* Next section title style (“Курс за самоподготовка…” vibe, big white) */
.edh-compare__next-title{
    margin-top: 26px;
    color:#fff;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:0.5;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
    position: relative;
    bottom: -8px;
}

/* Wave (put it BEHIND the text) */
.edh-compare__wave{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 100vw;
    height: var(--edh-wave-h);
    pointer-events: none;

    z-index: 1; /* ✅ важно: под текста */
}
.edh-compare__wave svg{
    width: 100%;
    height: 100%;
    display: block;
}

/* mobile tweaks */
@media (max-width: 575.98px){
    .edh-compare__th,
    .edh-compare__table td{
        padding: 14px 12px;
    }
    .edh-compare__logo{ height: 28px; }
}


/* =========================
   EDH FAQ (Bootstrap 5 accordion)
   ========================= */

.edh-faq{
    --edh-blue: #365CA9;
    --edh-radius: 18px;
    --edh-accent: #fab827;

    background: var(--edh-blue);
}

.edh-faq__title{
    color:#fff;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
}

.edh-faq__wrap{
    background:#fff;
    border-radius: var(--edh-radius);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

/* Accordion base cleanup */
.edh-faq__accordion .accordion-item{
    border: 0;
    border-top: 1px solid rgba(15,23,42,.10);
}
.edh-faq__accordion .accordion-item:first-child{
    border-top: 0;
}

/* Button */
.edh-faq__accordion .accordion-button{
    font-weight: 800;
    color: #0f172a;
    padding: 18px 20px;
    background: #fff;
    box-shadow: none !important;
}
.edh-faq__accordion .accordion-button:focus{
    border-color: transparent;
    box-shadow: none !important;
}

/* Expanded state */
.edh-faq__accordion .accordion-button:not(.collapsed){
    background: var(--edh-accent);
    color: #0f172a;
}

/* Chevron color */
.edh-faq__accordion .accordion-button::after{
    filter: saturate(0) brightness(.35);
}
.edh-faq__accordion .accordion-button:not(.collapsed)::after{
    filter: none;
}

/* Body */
.edh-faq__accordion .accordion-body{
    padding: 16px 20px 20px;
    color: #334155;
    line-height: 1.65;
    font-size: 1.05rem;
}
.edh-faq__accordion .accordion-body a{
    color: #0f172a;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Lists inside answers */
.edh-faq__list{
    margin: 0 0 14px 0;
    padding-left: 1.2rem;
}
.edh-faq__list li{ margin-bottom: .4rem; }

.edh-faq__steps{
    margin: 0 0 14px 0;
    padding-left: 1.2rem;
}
.edh-faq__steps li{ margin-bottom: .5rem; }

/* Under-accordion row */
.edh-faq__after{
    margin-top: 22px;
    color: rgba(255,255,255,.92);
    font-weight: 700;
    font-size: clamp(16px, 1.2vw, 20px);
    text-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.edh-faq__after a{
    color:#fff;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* FAQ: force bullets/numbering to be visible (home was missing them due to reset CSS) */
.edh-faq .accordion-body ul,
.edh-faq .accordion-body ol{
    padding-left: 1.25rem;
    margin: 0 0 14px 0;
}

.edh-faq .accordion-body ul{ list-style: disc!important; }
.edh-faq .accordion-body ol{ list-style: decimal!important; }

.edh-faq .accordion-body ul li,
.edh-faq .accordion-body ol li{
    display: list-item;
    list-style: inherit;
}

/* Mobile tightening */
@media (max-width: 575.98px){
    .edh-faq__accordion .accordion-button{ padding: 16px 16px; }
    .edh-faq__accordion .accordion-body{ padding: 14px 16px 18px; }
}

/* =========================
   FAQ now hosts the "EduBlog" title + wave at the bottom
   ========================= */

.edh-faq{
    --edh-wave-h: clamp(90px, 10vw, 170px);

    position: relative;
    overflow: hidden;

    /* reserve space for the wave so it doesn't overlap the next section */
    padding-bottom: calc(3rem + var(--edh-wave-h));
}

/* everything inside container sits above the wave */
.edh-faq > .container{
    position: relative;
    z-index: 2;
}

/* "ЕдуБлог" title style (stable, no weird bottom offsets) */
.edh-faq__next-title{
    color:#fff;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1.1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
}

/* wave at the bottom of FAQ */
.edh-faq__wave{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 100vw;
    height: var(--edh-wave-h);
    pointer-events: none;
    z-index: 1; /* behind the text */
}
.edh-faq__wave svg{
    width: 100%;
    height: 100%;
    display: block;
}
@media (width <= 1100px) {
    .edh-faq__next-title {
        margin-bottom: -35px!important;
    }
}

/* =========================
   EDH Partners
   ========================= */

.edh-partners{
    --edh-blue: #365CA9;
    --edh-accent: #F4B52A;

    background: var(--edh-blue);
}

/* Title (same vibe като другите ти големи заглавия) */
.edh-partners__title{
    color:#fff;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
}

/* Grid layout (като screenshot: 5 на ред на десктоп, после пада) */
.edh-partners__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 34px);
    align-items: center;
    justify-items: center;
}

/* Breakpoints */
@media (max-width: 1199.98px){
    .edh-partners__grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 991.98px){
    .edh-partners__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 575.98px){
    .edh-partners__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Item */
.edh-partners__item{
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 12px;
    border-radius: 16px;
    text-decoration: none;
    background: transparent;
    transition: background .18s ease, transform .18s ease;
}

/* Hover (леко, без да разваля) */
.edh-partners__item:hover{
    background: rgba(255,255,255,.06);
    transform: translateY(-2px);
}

/* Logo sizing (еднаква височина, без да се реже) */
.edh-partners__item img{
    display: block;
    width: 100%;
    max-width: 190px;
    height: 64px;
    object-fit: contain;
}

/* Mobile: малко по-ниски лога */
@media (max-width: 575.98px){
    .edh-partners__item img{
        height: 54px;
        max-width: 170px;
    }
}


/*--------------------------------------------------------------
# Payment methods homepage
--------------------------------------------------------------*/
.edh-way-of-payment_title {
    color: #222B3E;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
    position:relative;
    bottom: 30px;
}

/*--------------------------------------------------------------
# Contacts home page
--------------------------------------------------------------*/
.edh-contacts_title {
    color: white;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
    font-size: clamp(28px, 3.2vw, 60px);
    position:relative;
    bottom: 30px;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
    padding: 25px 0;
}

.counts .stats-item {
    padding: 30px;
    width: 100%;
}

.counts .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--accent-color);
    font-weight: 700;
}

.counts .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
    color: var(--contrast-color);
    background: var(--secondary-color);
    padding: 30px;
}

.why-us .why-box h3 {
    color: var(--contrast-color);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.why-us .why-box p {
    margin-bottom: 30px;
}

.why-us .why-box .more-btn {
    display: inline-block;
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    padding: 8px 40px 10px 40px;
    color: var(--contrast-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
}

.why-us .why-box .more-btn i {
    font-size: 14px;
}

.why-us .why-box .more-btn:hover {
    color: var(--accent-color);
    background: var(--surface-color);
}

.why-us .icon-box {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
    color: var(--accent-color);
    font-size: 32px;
    margin-bottom: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    transition: 0.3s;
}

.why-us .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.why-us .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
    color: var(--contrast-color);
    background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    padding: 10px 0;
}

.features .features-item {
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
}

.features .features-item i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 0;
}

.features .features-item h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.features .features-item h3 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.features .features-item:hover {
    border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 5px;
}

.courses .course-content {
    padding: 15px;
    height: 260px;
}

.courses .course-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.courses .course-content h3 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.courses .course-content h3 a:hover {
    color: var(--accent-color);
}

.courses .course-content .category {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0;
    border-radius: 5px;
}

.courses .course-content .price {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
    padding-top: 15px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
    max-width: 50px;
    border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
    padding-left: 10px;
    font-weight: 600;
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
    color: var(--accent-color);
}

.courses .trainer .trainer-rank {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
    font-size: 22px;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    text-align: center;
    margin-bottom: 20px;
}

.trainers-index .member img {
    margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
    padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.trainers-index .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
    margin-top: 15px;
}

.trainers-index .member .social a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    transition: 0.3s;
}

.trainers-index .member .social a:hover {
    color: var(--accent-color);
}

.trainers-index .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about-us .content ul {
    list-style: none;
    padding: 0;
}

.about-us .content ul li {
    padding-bottom: 10px;
}

.about-us .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}

.about-us .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    position: relative;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid var(--background-color);
    position: absolute;
    left: -45px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/*--------------------------------------------------------------
# Courses Course Details Section
--------------------------------------------------------------*/
.courses-course-details {
    padding-bottom: 20px;
}

.courses-course-details h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.courses-course-details h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    bottom: 0;
    left: 0;
}

.courses-course-details h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.courses-course-details .course-info {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 10px 15px;
    margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    font-family: var(--nav-font);
}

.courses-course-details .course-info p {
    margin: 0;
    font-weight: 600;
}

.courses-course-details .course-info a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
    padding-top: 30;
}

.tabs .nav-tabs {
    border: 0;
}

.tabs .nav-link {
    background-color: var(--background-color);
    border: 0;
    padding: 12px 15px;
    transition: 0.3s;
    color: var(--default-color);
    border-radius: 0;
    border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    font-weight: 600;
    font-size: 15px;
}

.tabs .nav-link:hover {
    color: var(--accent-color);
}

.tabs .nav-link.active {
    background-color: var(--surface-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.tabs .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tabs .details p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .tabs .nav-link {
        border: 0;
        padding: 15px;
    }

    .tabs .nav-link.active {
        color: var(--accent-color);
        background: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
    position: relative;
}

.trainers .member .member-img {
    margin: 0 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1024px) {
    .trainers .member .member-img {
        margin: 0 60px;
    }
}

.trainers .member .member-img img {
    position: relative;
    z-index: 1;
}

.trainers .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.trainers .member .member-img .social a {
    transition: 0.3s;
    color: var(--contrast-color);
    font-size: 20px;
    margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
    color: var(--accent-color);
}

.trainers .member .member-info {
    margin-top: 30px;
}

.trainers .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
}

.trainers .member .member-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.trainers .member .member-info p {
    margin-bottom: 0;
    font-size: 14px;
}

.trainers .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
    background-color: var(--background-color);
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.events .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
    height: 400px;
}

.events .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.events .card-body {
    z-index: 10;
    background: var(--surface-color);
    border-top: 4px solid var(--surface-color);
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
}

.events .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.events .card-title a {
    color: var(--default-color);
    transition: 0.3s;
}

.events .card-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
    transform: scale(1.1);
}

.events .card:hover .card-body {
    border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    width:95%;
}

.pricing .pricing-item h3 {
    margin: -20px -20px 10px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .pricing-item h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 16px;
    font-weight: 300;
}

.pricing .pricing-item ul {
    padding: 15px 0;
    list-style: none;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    height: 230px;
}

.pricing .pricing-item ul li {
    padding-bottom: 10px;
}

.pricing .pricing-item ul i {
    color: var(--accent-color);
    font-size: 18px;
    padding-right: 4px;
}

.pricing .pricing-item ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-decoration: line-through;
}

.pricing .btn-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    margin: 0 -20px -20px -20px;
    padding: 20px 15px;
    text-align: center;
}

.pricing .btn-buy {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
    background: var(--secondary-color);
    color: var(--contrast-color);
}

.pricing .advanced {
    background: var(--secondary-color);
    color: var(--contrast-color);
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
}

/* =========================
   Contact (EduHub polish)
   ========================= */

.contact{
    /* по-стегнато и чисто */
    padding-top: 14px;
    padding-bottom: 52px;
}

/* лявата колона (икони + текст) – малко по-изразено */
.contact .info-item{
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.03); /* почти невидимо, но добавя “слой” */
}

.contact .info-item i{
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

/* ====== CF7 form fields ======
   Хващаме и CF7, и твоя .php-email-form (ако я имаш) */
.contact .wpcf7-form input[type="text"],
.contact .wpcf7-form input[type="email"],
.contact .wpcf7-form input[type="tel"],
.contact .wpcf7-form textarea,
.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea{
    font-size: 15px;
    padding: 12px 14px;

    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.18);     /* по-видим бордър */
    background: rgba(255,255,255,.92);        /* ясна повърхност */
    color: #0f172a;

    box-shadow: 0 8px 18px rgba(0,0,0,.06);   /* лека “карта” */
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

/* placeholder да е по-четим */
.contact .wpcf7-form input::placeholder,
.contact .wpcf7-form textarea::placeholder,
.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder{
    color: rgba(15,23,42,.45);
}

/* фокус: оранжев ринг (EduHub) */
.contact .wpcf7-form input[type="text"]:focus,
.contact .wpcf7-form input[type="email"]:focus,
.contact .wpcf7-form input[type="tel"]:focus,
.contact .wpcf7-form textarea:focus,
.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus{
    outline: none;
    border-color: var(--accent-color);
    box-shadow:
            0 10px 24px rgba(0,0,0,.08),
            0 0 0 4px rgba(244,181,42,.28); /* оранжев halo */
    transform: translateY(-1px);
}

/* textarea – да не изглежда “малко” */
.contact .wpcf7-form textarea,
.contact .php-email-form textarea{
    min-height: 220px;
    resize: vertical;
}

/* Submit button (CF7 uses input[type=submit]) */
.contact .wpcf7-form input[type="submit"],
.contact .php-email-form button[type="submit"]{
    background: var(--accent-color);
    color: #fff;
    border: 0;
    padding: 12px 34px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .2px;

    box-shadow: 0 14px 26px rgba(0,0,0,.18);
    transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.contact .wpcf7-form input[type="submit"]:hover,
.contact .php-email-form button[type="submit"]:hover{
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0,0,0,.22);
}

/* CF7 validation highlight (по-ясно) */
.contact .wpcf7-not-valid{
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220,38,38,.18) !important;
}

/* FIX: Contact info icons (no stretch, proper circle) */
.contact .info-item{
    display: flex;
    align-items: flex-start;   /* предотвратява странни разтягания */
    gap: 14px;
}

/* Bootstrap Icons are ::before -> size via font-size works */
.contact .info-item i{
    flex: 0 0 56px;
    width: 56px;
    height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    align-self: flex-start;    /* критично: спира stretch */
    line-height: 1;

    color: #fff;
    background: var(--accent-color);
    border-radius: 999px;

    font-size: 22px;
    box-shadow: 0 12px 26px rgba(0,0,0,.12);

    margin-right: 0;           /* gap го поема */
}

.contact .info-item > div{
    padding-top: 4px;          /* визуално подравняване спрямо кръга */
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}


/*--------------------------------------------------------------
# Owl Slide Custom Navigations
--------------------------------------------------------------*/
/*
# Products
 */
.products-nav {
    text-align: center;
    font-size:30px;
    color: var(--heading-color);;
}

.products-nav button {
    border:none;
    background: none;
}

.products-prev {
    margin-right: 200px;
}

/*
# Pricing
 */
.pricing-nav {
    text-align: center;
    font-size:30px;
    color: var(--heading-color);
}

.pricing-nav button {
    border:none;
    background: none;
}

.pricing-prev {
    margin-right: 200px;
}

/*--------------------------------------------------------------
# WooCommerce Custom
--------------------------------------------------------------*/
/**
* Price
 */
.woocommerce-Price-amount {
    color: var(--accent-color);
}

/**
* Add to cart in list
 */
a.button.product_type_simple {
    color: white;
    background-color: var(--accent-color);
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover {
    color: white;
    background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

/**
* Add to cart in product
 */
button.single_add_to_cart_button.button.alt {
    background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

button.single_add_to_cart_button.button.alt:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

/**
* View cart button after added
 */
a.added_to_cart {
    background-color: var(--secondary-color);
    color:white;
}

/*--------------------------------------------------------------
# Contact Form 7
--------------------------------------------------------------*/
/**
* Submit button
 */
.wpcf7 input[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px 12px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.wpcf7 input[type=submit]:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}



.btn-inquiry {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: 0.4s;
    margin-top: 30px;
    border: 2px solid var(--default-color);
    color: var(--default-color);
}

.btn-inquiry:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.breadcrumbs {
    display: none;
}

/**
* Tutor hide Finish course button
 */
button[name="complete_course_btn"] {
    display:none!important;
}

/*--------------------------------------------------------------
# WordPress
--------------------------------------------------------------*/
/* Image Alignment */
img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block; margin-left: auto; margin-right: auto;
}

/**
* Pagination
 */
.page-numbers {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px;
}

span.page-numbers.current {
    background-color: var(--secondary-color);
}

.page-numbers:hover {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px;
}

span.input-group-text {
    border-radius: 0;
    background-color: white;
    border-color: #212529;
    border-left:none;
}

/**
Home Banner
 */
@media all and (min-width: 1280px) {
    .hero h2 {
        font-size: 2.8rem!important;

    }

    .baloons {

    }

    .baloon-left {
        height: 250px;
        margin-top: -60px;
        margin-left: -15% !important;
    }

    .baloon-right {
        height: 250px;
        margin-top: 60px;
        margin-right: -15% !important;
    }

    .lets-learn-button {
        height: 300px;
    }
}

@media all and (min-width: 1024px) and (max-width: 1279px) {
    .hero h2 {
        margin-top:-150px;
    }

    .baloons {
        margin-top:40px;
    }

    .baloon-left {
        height:225px;
        margin-top: -60px;
        margin-left:-10%!important;
    }

    .baloon-right {
        height:225px;
        margin-top: 60px;
        margin-right:-10%!important;
    }

    .lets-learn-button {
        height: 225px;
    }
}

@media all and (min-width: 992px) and (max-width: 1024px) {
    .hero h2 {
        margin-top:-150px;
    }

    .baloons {
        margin-top:40px;
    }

    .baloon-left {
        height:225px;
        margin-top: -60px;
        margin-left:-5%!important;
    }

    .baloon-right {
        height:225px;
        margin-top: 60px;
        margin-right:-5%!important;
    }

    .lets-learn-button {
        height: 225px;
    }
}

@media all and (min-width: 768px) and (max-width: 992px) {
    .hero h2 {
        margin-top: -120px;
        font-size: 2rem;
    }

    .baloons {
        margin-top:50px;
    }

    .baloon-left {
        height:200px;
        margin-top: -80px;
        margin-left:-30%!important;
    }

    .baloon-right {
        height:200px;
        margin-top: 80px;
        margin-right:-30%!important;
    }

    .lets-learn-button {
        height: 175px;
    }
}

@media all and (min-width: 574px) and (max-width: 768px) {
    .hero h2 {
        margin-top: -100px;
        font-size: 2rem!important;
    }

    .baloons {
        margin-top:30px;
    }

    .baloon-left {
        height:175px;
        margin-top: -60px;
        margin-left:-40%!important;

    }

    .baloon-right {
        height:175px;
        margin-top: 200px;
        margin-right:-40%!important;
    }

    .lets-learn-button {
        height: 175px;
        margin-top:20px;
    }
}

@media all and (max-width: 575px) {
    .hero h2 {
        font-size: 1.70rem!important;
    }


    .btn-getstarted {
        font-size:12px!important;
    }
    .hero h2 {
        font-size: 2rem!important;
    }

    .baloons {
        margin-top:40px;
    }

    .baloon-left {
        height:175px;
        margin-left:0px!important;
    }

    .baloon-right {
        height:175px;
        margin-top:20px;
        margin-right:0px!important;
    }

    .lets-learn-button {
        margin-top:20px;
        height: 175px;
    }
}

@media (width <= 370px) {
    .btn-getstarted {
        font-size:10px!important;
        margin:0!important;
    }
}

/**
* Woocommerce Checkout Process Fixes Start
*/

/**
* Widen Speedy
 */
#speedy_form {
    max-width: unset!important;
}

/**
* Solved Boostrap Conflict on Checkout
 */
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.woocommerce form .form-row {
    display: block;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    max-width: unset;
}

.woocommerce-checkout h3 {
    margin-top:30px!important;
}

li.wc_payment_method {
    list-style: none!important;
}

a.checkout-button {
    background: var(--accent-color) !important;
    transition: 0.3s!important;
}
button#place_order.button {
    background: var(--accent-color) !important;
    transition: 0.3s!important;
}

input#coupon_code {
    width:200px!important;
}

tr.cart-subtotal {
    display: none!important;
}

/**
* Woocommerce Checkout Process Fixes End
*/

/**
* reCaptcha alignment
 */
.grecaptcha-badge {
    bottom: 80px !important;
}
.woocommerce span.onsale {
    background: #ffb51b !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    min-width: auto !important;
    min-height: auto !important;

    padding: 10px 18px !important;
    margin: 0 !important;

    border-radius: 999px !important;

    top: 10px !important;
    left: 10px !important;

    right: auto !important;

    text-transform: none;
    box-shadow: none !important;
}