/* =========================================
   NAVBAR DROPDOWN
========================================= */

.navbar-nav .dropdown {
    position: relative;
}

/* Dropdown menu */
.navbar-nav .dropdown-menu {
    display: block;
    position: absolute;
    top: 58%;
    left: 0;
    min-width: 220px;
    margin: 12px 0 0;
    padding: 10px 0;
    background: #ffffff;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
    z-index: 9999;
}

/* Open dropdown */
.navbar-nav .dropdown.show > .dropdown-menu,
.navbar-nav .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dropdown list */
.navbar-nav .drop-down-pages {
    margin: 0;
    padding: 0;
}

/* Dropdown item */
.navbar-nav .dropdown-menu .nav-item {
    margin: 0;
    padding: 0;
}

/* Dropdown link */
.navbar-nav .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;

    width: 100%;
    padding: 11px 20px;

    color: #333;
    font-size: 15px;
    font-weight: 500;

    background: transparent;
    border: 0;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}

/* Hover */
.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: #ffffff;
    background: #007bff;
    padding-left: 25px;
}

/* Active submenu */
.navbar-nav .dropdown-menu .nav-item.active > .dropdown-item {
    color: #ffffff;
    background: #007bff;
}

/* Small arrow for dropdown */
.navbar-nav .dropdown-toggle::after {
    margin-left: 7px;
    vertical-align: middle;

    transition: transform 0.25s ease;
}

/* Rotate arrow when open */
.navbar-nav .dropdown.show > .dropdown-toggle::after,
.navbar-nav .dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
}


/* =========================================
   OPTIONAL: NICE DROPDOWN TOP INDICATOR
========================================= */

.navbar-nav .dropdown-menu::before {
    content: "";

    position: absolute;
    top: -6px;
    left: 25px;

    width: 12px;
    height: 12px;

    background: #ffffff;

    transform: rotate(45deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .navbar-nav .dropdown-menu {
        position: static;

        width: 100%;
        min-width: 100%;

        margin: 5px 0 10px;

        box-shadow: none;
        border-radius: 5px;

        transform: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        display: none;
    }

    .navbar-nav .dropdown.show > .dropdown-menu {
        display: block;
    }

    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: none;
    }

    .navbar-nav .dropdown.show:hover > .dropdown-menu {
        display: block;
    }

    .navbar-nav .dropdown-menu::before {
        display: none;
    }

}
.middle-portion ul .icons i {background-color:#f9bb61;}
.middle-portion .links_col {
     padding-left: 0px; 
}
input#started {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 24px 40px;
    text-align: center;
    color: var(--e-global-color-accent);
    display: inline-block;
    background-color: #e1ccad;
    border-radius: 35px 0px 35px 0px;
    transition: all 0.3s ease-in-out;
    outline: none;
    border: none;
    overflow: hidden;
    position: relative;
    width: fit-content;
}
span.wpcf7-not-valid-tip {
	display: none;
}
.wpcf7-not-valid,input.is-invalid {
	border: 2px solid #c62523 !important;
}

.wpcf7-response-output {
	font-size: 12px;
	margin: 0px !important;
}
.wpcf7-form p {margin:0px;}
.wpcf7-response-output {
	color: #fff !important;
	background-color: #f24224;
	border: 0px !important;
}
.our_team_box_lower_portion h3 {
    color: #212529;
}
.dark{background-color:#fff8eda1;}
section.aboutus_section.light {background:#fff;}
/* =========================================
   BLOG PAGINATION - CENTERED
========================================= */

.blog-pagination {
    width: 100%;
    margin: 50px auto 30px;
    text-align: center;
}

.blog-pagination .nav-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

/* Pagination buttons */
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 44px;
    height: 44px;
    padding: 0 15px;

    border: 1px solid #f4c400;
    border-radius: 8px;

    background: #ffffff;
    color: #222222;

    font-size: 15px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    transition: all 0.3s ease;
}

/* Hover */
.blog-pagination .page-numbers:hover {
    background: #f4c400;
    border-color: #f4c400;
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 6px 15px rgba(244, 196, 0, 0.25);
}

/* Active page */
.blog-pagination .page-numbers.current {
    background: #f4c400;
    border-color: #f4c400;
    color: #ffffff;

    box-shadow: 0 5px 15px rgba(244, 196, 0, 0.30);
}

/* Previous / Next */
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    padding: 0 20px;

    background: #222222;
    border-color: #222222;
    color: #ffffff;
}

/* Previous / Next hover */
.blog-pagination .page-numbers.prev:hover,
.blog-pagination .page-numbers.next:hover {
    background: #f4c400;
    border-color: #f4c400;
    color: #ffffff;
}

/* Dots */
.blog-pagination .page-numbers.dots {
    min-width: auto;
    padding: 0 5px;

    border: none;
    background: transparent;
    color: #222222;
}

.blog-pagination .page-numbers.dots:hover {
    background: transparent;
    color: #f4c400;

    transform: none;
    box-shadow: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .blog-pagination {
        margin-top: 35px;
    }

    .blog-pagination .nav-links {
        gap: 6px;
    }

    .blog-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }

    .blog-pagination .page-numbers.prev,
    .blog-pagination .page-numbers.next {
        padding: 0 12px;
    }

}
.post-thumbnail-entry img {
    width: 64px;
    height: 48px;
}

.post-thumbnail-entry {
    display: flex;
    align-items: center;
    gap: 20px;
}
.page-id-58 .blog-pagination {
    display: none;
}
.post-image {
    height: 150px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
a.custom-btn {
    position: relative;
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 24px 40px;
    text-align: center;
    color: var(--e-global-color-accent);
    display: inline-block;
    background-color: #f9bb61;
    border-radius: 35px 0px 35px 0px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.aboutus_content li {
    font-size: 20px;
    line-height: 28px;
	color:var(--e-global-color-text);
}
li {
    
	color:var(--e-global-color-text) !important;
}
 .single-post li,.single-post h2,.single-post h3,.single-post h4,.single-post h5 {
    
	color:var(--e-global-color-text) !important;
}
.post-thumbnail-content,.widget .nav-item a,li.cat-item {
    font-size: 18px;
    line-height: 24px;
	color:var(--e-global-color-text);
}
,a#recent-tab {
    font-size: 18px;
    line-height: 24px;
}
.pricing_plans_box_lower_portion.aboutus_content p {color:var(--e-global-color-text);}
.pricing_plans_box_lower_portion.aboutus_content a {color:var(--e-global-color-text);}
.message_content p {padding-right:0px;}
.message_content input,.message_content textarea {width:100%;}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin:15px 0px;
}

.message_contentx input,.message_contentx textarea {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 20px;
    border-radius: 0;
    width: 98%;
    margin-bottom: 16px;
    outline: none;
    border: none;
}









input[type="checkbox"] {
    margin: 0px;
}
.testi-rating {
    width: 100%;
}

.testi-rating i.fas.fa-star {
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
/* ==========================================
   DROPDOWN PARENT
========================================== */

.navbar-nav .dropdown {
    position: relative;
}


/* Parent link + chevron stay on ONE line */

.navbar-nav .dropdown > .dropdown-parent-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}


/* ==========================================
   CHEVRON BUTTON
========================================== */

.navbar-nav .dropdown > .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 38px;

    margin-left: 2px;
    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    cursor: pointer;

    color: #fff;
}


/* Chevron itself */

.navbar-nav .dropdown > .submenu-toggle .submenu-arrow {
    display: inline-block;

    color: #fff;

    font-size: 10px;
    line-height: 1;

    transition: transform 0.2s ease;
}


/* Rotate chevron when submenu is open */

.navbar-nav .dropdown.show > .submenu-toggle .submenu-arrow {
    transform: rotate(180deg);
}


/* Remove Bootstrap/browser button effects */

.navbar-nav .dropdown > .submenu-toggle:hover,
.navbar-nav .dropdown > .submenu-toggle:focus,
.navbar-nav .dropdown > .submenu-toggle:active {
    color: #fff;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
}


/* ==========================================
   DROPDOWN MENU
========================================== */

.navbar-nav .dropdown-menu {
    display: none;

    margin: 0;
    padding: 0;

    min-width: 200px;

    z-index: 9999;
}


/* Open submenu */

.navbar-nav .dropdown.show > .dropdown-menu {
    display: block;
}


/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 992px) {

    .navbar-nav .dropdown {
        display: inline-flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .navbar-nav .dropdown > .dropdown-parent-link {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .navbar-nav .dropdown > .submenu-toggle {
        flex: 0 0 auto;
    }

    .navbar-nav .dropdown > .dropdown-menu {
        position: absolute;

        top: 100%;
        left: 0;

        width: auto;
        min-width: 220px;

        margin-top: 0;

        z-index: 99999;
    }

}


/* ==========================================
   MOBILE / TABLET
========================================== */

@media (max-width: 991px) {

    .navbar-nav .dropdown {
        position: relative;
        display: block;
        width: 100%;
    }

    .navbar-nav .dropdown > .dropdown-parent-link {
        display: inline-flex;
        align-items: center;

        white-space: nowrap;

        max-width: calc(100% - 40px);
    }

    .navbar-nav .dropdown > .submenu-toggle {
        position: absolute;

        top: 0;
        right: 0;

        width: 40px;
        height: 100%;
    }

    .navbar-nav .dropdown > .dropdown-menu {
        position: static;

        width: 100%;

        margin: 0;
    }

}