* {
    font-family: 'Poppins';
}

:root {
    --black: #000;
    --white: #fff;
    --primary: #35ad45;
}

a {
    text-decoration: none;
    color: var(--primary);
}

p {
    line-height: 1.7;
    font-size: 15px;
    color: #000000b3;
}

h1,
.h1 {
    font-size: clamp(1.563rem, 1.625rem + 0.9615vw, 2.5rem);
}

h2,
.h2 {
    font-size: clamp(1.375rem, 1.3846rem + 0.9615vw, 2.25rem);
}

h3,
.h3 {
    font-size: clamp(1.38rem, 1.1346rem + 0.9615vw, 2.0rem);
}

h4,
.h4 {
    font-size: clamp(1.25rem, 1.0577rem + 0.7692vw, 1.75rem);
}

h5,
.h5 {
    font-size: clamp(1.125rem, 0.9808rem + 0.5769vw, 1.5rem);
}

h6,
.h6 {
    font-size: clamp(1.0rem, 0.8808rem + 0.4669vw, 1.25rem);
}

/*------------ common css starts -----------*/
.heading {
    color: var(--black);
}

.btn {
    border-radius: 30px;
    background: var(--primary);
    padding: 8px 25px;
    width: fit-content;
    color: var(--white);
    font-weight: var(--fw-5);
    font-size: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    animation: ripple 0.4s ease-out;
    opacity: 0;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/*---- back to top ----*/
.top-btn {
    background: var(--primary);
    fill: var(--white);
}

/*---------- .header css starts -----------*/
.scrolled {
    background: var(--black);
    border-bottom: 1px solid #7f7d7d30;
}

.header {
    background: #000;
}

.header nav ul li a:not(.show-ul li a) {
    color: var(--white);
}

.dropdown li a:not(.show-ul .dropdown li a) {
    color: var(--black);
}

.header nav ul a:hover {
    color: var(--primary) !important;
}

.search-form form input {
    background: var(--white);
    border: 1px solid #cccccc96;
    color: var(--black);
}

.header .search-bar-show {
    background-color: #edf2f5;
    transform: translateY(0);
}

.hero-nav .search-bar-show+.toggle-slide-btn+.mob-search-btn {
    transform: translate(-80px, 0px);
}

.header ul .dropdown ul {
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.15);
    transition: all .4s ease-in-out;
    opacity: 0;
    border: 1px solid #cccccc59;
    transform: translate(40px);
}

.header .dropdown:hover>ul {
    visibility: visible;
    transform: translate(0);
    opacity: 1;
}

.show-ul li a {
    color: var(--black);
}

.header-btn .btn {
    border-radius: 5px;
}

/*----------------- hero css starts -------------*/
.hero-content .hero-title span {
    font-weight: var(--fw-5);
}

.hero-content .hero-title,
.hero-sub-title,
.hero-content .hero-title span {
    color: var(--white);
}

/*-------- Services css starts --------*/
.service-box {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #e2e2e2;
}

.service-title {
    color: var(--black);
    font-size: 20px;
    font-weight: var(--fw-6);
}

.overlap-bg {
    background: var(--white);
    border-radius: 10px;
}

/*----------------- faqs css starts ------------*/
:is(.faq, .accordion) details {
    border-bottom: 2px solid #e3e3e3;
}

:is(.faq, .accordion) .actives::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="15" height="15" fill="%233c3c3c"><path d="M432 256c0 17.7-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32h352c17.7 0 32 14.3 32 32"/></svg>');
}

/*------------ Testimonial css starts --------*/
.testimonial-card {
    background: var(--white);
    box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, .1);
}

.info span {
    color: #6d6d6dc9;
}

.testimonial-slider :is(.button-prev, .button-next) {
    background: var(--white);
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, .1);
}

.info .name {
    font-size: 17px;
    color: #3c3c3cd1;
    font-weight: var(--fw-6);
}

.info span {
    font-size: 14px;
}

/*------------ blog-cards css starts ---------*/
.blog-card,
.grid-35 {
    --light: #3c3c3c;
    --date: #3c3c3cc7;
    --cat-bg: #edf2f5;
    --cat-clr: #565656;
}

.overlay-card {
    --position: absolute;
    --h-100: 100%;
    --light: var(--white);
    --date: var(--white);
    --cat-bg: var(--white);
    --cat-clr: var(--black);
    --ellipsis-p: #ffffffa3;
}

.blog-btn,
.blog-title {
    color: var(--light);
}

.img-placeholder {
    background-color: #edf2f5;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
}

.blog-title:hover {
    color: var(--primary);
}

.blog-btn:hover {
    letter-spacing: 0.7px;
    color: var(--primary);
    fill: var(--primary);
}

.blog-btn svg {
    transform: translateX(-15px);
    transition: all 0.3s;
    opacity: 0;
}

.blog-btn:hover svg {
    transform: translateX(5px);
    opacity: 1;
}

/* -----------------Single-Author starts ------------- */

.flex-single-ath-profile {
    font-size: 20px;
    font-weight: 600;
}

.flex-single-ath-profile img {
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2);
}

.related-head {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px
}


.VMV-container .col-lg-4:nth-child(1) .o-vmv-col .col-ttl {
    background: #35ad45c2;
}

.VMV-container .col-lg-4:nth-child(2) .o-vmv-col .col-ttl {
    background: #ff000078;
}

.VMV-container .col-lg-4:nth-child(3) .o-vmv-col .col-ttl {
    background: #000f3fb3;
}

.o-vmv-col {
    background: #cccccc3b;
    border-radius: 20px;
}

.o-vmv-col .col-ttl {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.vpn-adv-col {
    background: #35ad450d;
    border-radius: 10px;
    border: 1px solid var(--primary);
}

.vpn-adv-col .vpn-ttl {
    font-size: 18px;
    font-weight: 600;
}

.vpn-big-adv-col {
    background: var(--primary);
    border: unset;
}

.vpn-big-adv-col :where(div, p) {
    color: var(--white);
}

/*----------------- Footer css starts -------------*/
.footer {
    background: var(--black);
}

.footer .footer-right span,
.footer .list-heading {
    font-size: 18px;
    color: #e5e5e5;
    font-weight: var(--fw-6);
}

.footer-right ul li a {
    display: inline-block;
    transition: all 0.2s;
}

.newsletter+p {
    color: var(--white) !important;
    font-size: 18px;
}

.footer-left p,
.footer-right ul li a,
.btm-footer p {
    color: #919191;
}

.footer-right ul li a:hover {
    transform: translateX(10px);
    color: var(--primary);
}

.btm-footer {
    background: #0e0e0e;
}

.footer-left p a {
    font-weight: var(--fw-6);
}

.media ul li a:hover {
    transform: rotate(360deg);
}

/*------------ single page css starts --------------*/
.wid-title {
    font-size: 22px;
    font-weight: var(--fw-6);
    margin-bottom: 15px;
}

.also-read ul a {
    color: unset;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 1px;
}

.also-read ul a:hover {
    color: var(--primary);
}

.br-2 {
    border-radius: 20px;
}

/* ------ */
.blog-details span {
    color: #7d7d82;
    letter-spacing: 2px;
}

/*------*/
:is(.author-page, .sticky) ul li a {
    background: #f7f5ff;
}

.contact-bx ul li a {
    background: var(--white);
}

.author-page .media ul li a {
    background: var(--white);
}

/*---------- table of content css starts --------*/
.toc-.header {
    color: var(--white);
    fill: var(--white);
    background: var(--primary);
}

.toc-body::-webkit-scrollbar-thumb {
    background: var(--primary);
}

.toc-body::-webkit-scrollbar {
    background: #ccc;
    width: 5px;
}

.toc-body .active-li>a {
    color: var(--primary);
}

.toc-body ul li a {
    color: var(--black);
    font-size: 14px;
}

#tableofcontent {
    background: #35ad451a;
    width: fit-content;
    border-radius: 10px;
    overflow: hidden;
    margin-block: 10px 30px
}

#tableofcontent .head-th {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
}

#tableofcontent ul {
    padding: 10px 40px;
}

/*------- sources css starts ----------*/

.sources {
    background: #35ad450f;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 2px solid var(--primary)
}

/*------- pros.cons css starts ----------*/
.pc-container:first-child .pc-.header {
    background: #e6f1ec;
    border-bottom: 2px solid #02783f;
}

.pc-container:last-child .pc-.header {
    background: #ffeae5;
    border-bottom: 2px solid #fe2f00;
}

.pc-container:last-child .pc-body ul li::marker {
    color: #ff0000;
}

/*------- authhor profile css starts ----------*/
.author-profiles {
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}

.author-profiles:hover {
    transform: translateY(5px);
    box-shadow: none;
}

.auth-img {
    outline: 1px solid var(--primary);
    outline-offset: 5px;
}

.auth-img img,
.auth-img {
    border-radius: 50%;
}

.about-profile span {
    color: #6d6d6d;
    font-size: 14px;
}

.footer .grid-blog-card .date span {
    color: #919191;
    font-size: 14px
}

.footer .grid-blog-card a {
    color: var(--cat-bg);
}

/* -------------- media query starts --------------- */
@media screen and (max-width:1024px) {

    .header nav {
        transform: translateY(100%);
        display: block;
        background-color: #f7f5ff;
    }

    .show-ul {
        transform: translate(0) !important;
    }

    .header .dropdown.show-dropdown>ul {
        transform: scaleY(1);
        visibility: visible;
        opacity: 1;
        display: block;
        width: 100%;
        margin-bottom: 0;
        border: 1px solid #ffffff1a;
    }

    .footer-left {
        border: unset;
    }

    .heading {
        font-size: 24px;
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .hero-nav .search-bar-show+.toggle-slide-btn+.mob-search-btn {
        transform: translate(200px, -10px);
    }
}

@media screen and (max-width:600px) {
    .vpn-list li {
        border-right: 0 !important;
        padding-right: 0 !important;
    }

    .hero-nav .search-bar-show+.toggle-slide-btn+.mob-search-btn {
        transform: unset;
    }
}

.table {
    margin-bottom: 40px;
    width: 100%;
    border: 1px solid #f0e9e9
}

table tr {
    border: 1px solid #aaa
}

table th {
    font-weight: 600;
    font-size: 20px
}

.table>tbody>tr:nth-of-type(odd)>* {
    background-color: #fff;
    background-color: rgb(0 0 0 / .05)
}

.table>:not(caption)>*>* {
    padding: 13px;
    text-align: left
}

.wp-block-table.is-style-stripes table thead {
    background: #009634
}

.wp-block-table table th,.wp-block-table table thead,.wp-block-table table tr {
    border-radius: 4px 4px 0 0;
    overflow: hidden
}

.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th {
    border-color: #d3d3d3
}

.wp-block-table.is-style-stripes table thead th {
    font-weight: 700;
    color: #fff
}

@media screen and (max-width: 1023px) {
    .wp-block-table table tr td {
        border-bottom: 1px solid #d8d8d8;
        border-right: 1px solid #d8d8d8;
        padding: 15px !important
    }
}

@media screen and (max-width: 600px) {
    table th {
        font-size:16px
    }
}

.wp-block-table thead tr th {
    font-size: 18px !important
}

.wp-block-table tr th {
    padding: 15px !important;
    color: var(--secondary-color)
}

.wp-block-table table th,.wp-block-table table thead,.wp-block-table table tr {
    border-radius: 4px 4px 0 0 !important;
    border: 1px solid #d8d8d8!important;
    border-radius: 4px 4px 0px 0px !important;
    overflow: hidden
}

.is-style-stripes tr td {
    background-color: #c7c7c724;
    border-right: unset!important
}

thead {
    border: unset !important
}

.is-style-stripes table {
    border-collapse: separate !important
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 4px 4px 0px 0px
}

.wp-block-table td {
    padding: 15px !important;
    border-bottom: 1px solid #d8d8d8 !important;
}

.wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th {
    border-bottom: unset !important;
    border: unset !important
}

.white-space tr td {
    padding: 15px 5px !important;
    text-align: center !important
}

.wp-block-table.is-style-stripes {
    border-bottom: unset !important
}

.way-widget {
    background: #f9f9f9;
    box-shadow: 0 0 2px 0 rgb(0 0 0 / .25);
    border-radius: 4px;
    padding: 25px;
    position: relative;
    z-index: 1;
}

.way-widget::before {
    position: absolute;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="215" height="193" viewBox="0 0 215 193" fill="none"><path d="M252 186C243.333 181.333 221.8 160.2 205 113C188.2 65.8 163.5 72.5 122 72.5C85 71.1667 7.99907 54.6518 8 -1C8.00094 -57.5 8.00074 -45 8.00071 -121" stroke="%23FF0000" stroke-opacity="0.1" stroke-width="15"/></svg>');
    background-position: right;
    right: 0;
    top: 0
}

.way-widget::after {
    position: absolute;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="196" height="238" viewBox="0 0 196 238" fill="none"><path d="M192 307C183.333 302.333 161.8 281.2 145 234C128.2 186.8 103.5 193.5 62 193.5C25 192.167 -52.0009 175.652 -52 120C-51.9991 63.5 -51.9993 76 -51.9993 0" stroke="%23FF0000" stroke-opacity="0.1" stroke-width="15"/></svg>');
    background-position: left bottom;
    left: 0;
    bottom: 0
}

.way-widget-title {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    width: 100%
}

.way-widget-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e7e7e7;
    bottom: -10px;
    left: 0
}

.way-widget-title::after {
    background-color: var(--primary-color)
}

.way-widget-title::after {
    position: absolute;
    content: "";
    width: 10%;
    height: 3px;
    bottom: -11px;
    left: 0
}

.way-top-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px
}