/*!
Theme Name: Vpn Guider
Theme URI: https://vpnguider.com
Author: Linknbit
Author URI: http://linknbit.com/
Description: This is the v1.0.0 of Latest Vpn Guider Theme. Built for speed and performance.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vpn-guider

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Vpn Guider is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #ff6a00;
  --color-primary-2: #ffd8be;
  --color-brownish: #2d2d2d;
  --color-base: #1a1a1a;
  --color-dark-base: #eaeaea;
  --color-gradient-1: #ee732e;
  --color-gradient-2: #ee3a2e;

  --color-secondary-light: #151515;
  --color-secondary-dark: #eaeaea;
  --color-input-text: #6d6d6d;
  --color-gray-text: #505050;

  --color-dark-arrow: rgba(255, 255, 255, 0.2);
  --color-border-stream: #e5e7eb;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
}

[data-slider] {
  cursor: grab;
  user-select: none;
}

.site {
  max-width: calc(1280px + (12px * 2));
  min-height: 100vh;
  margin-inline: auto;
  padding: 32px 12px 80px;
}

.site-header {
  padding: 12px 40px;
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  position: sticky;
  top: 16px;
  z-index: 99999;
  transition: all 0.3s ease;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ee732e33;
  backdrop-filter: blur(12px);
  border-radius: 50px;
  transition: all 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.header-nav,
.nav-container,
.desktop-nav,
.header-actions,
.logo-link {
  position: relative;
  z-index: 1;
}
.hero-image-col {
  width: 100%;
  max-width: 532px;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.custom-svg-logo {
  max-width: 169px;
  height: auto;
}

.site-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary-light);
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  list-style: none;
  gap: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary-light);
}

.desktop-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--color-primary);
}
.desktop-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--color-primary) !important;
}

.header-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
.btn {
  isolation: isolate;
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: linear-gradient(90deg, #ee732e 29.67%, #ee3a2e 91.45%);
  color: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  width: min-content;
  flex-shrink: 0;
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  scale: 1.03;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #ee732e 29.67%, #ee3a2e 91.45%);
  z-index: -1;
  transition: all 0.4s;
  opacity: 0;
}

.btn:hover::before {
  opacity: 1;
}
.btn:disabled {
  cursor: default;
  pointer-events: none;
  background: linear-gradient(90deg, #cccccc 29.67%, #aaaaaa 91.45%) !important;
}
.btn:disabled:hover {
  transform: none !important;
}
.btn-large {
  font-size: 18px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: white;
  z-index: 1000;
  transition: right 0.5s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary-light);
}

.sidebar-close {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.close-icon {
  width: 36px;
  height: 36px;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  padding: 0 24px 24px;
}

.sidebar .menu-item {
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(61, 72, 112, 0.16);
  transition: all 0.3s ease;
  overflow: hidden;
}

.sidebar .menu-item:not(:last-child) {
  margin-bottom: 14px;
}

.sidebar .menu-item-content {
  display: flex;
  align-items: center;
  padding: 10px;
  position: relative;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.sidebar .menu-item-content * {
  pointer-events: none;
}

.menu-icon-container {
  background: rgba(255, 106, 0, 0.1);
  border-radius: 8px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.menu-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

.menu-link,
.submenu-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary-light);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: capitalize;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-link:hover,
.submenu-link:hover {
  color: var(--color-primary);
}

.menu-item.has-children > .menu-item-content > .menu-link::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  transition: all 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='black' class='dark:fill-dark-base'%3E%3Cpath d='M7.42899 12.1714L0.236257 4.9763C-0.0786648 4.66058 -0.0786648 4.14907 0.236257 3.83255C0.551176 3.51684 1.06269 3.51684 1.37761 3.83255L7.99963 10.457L14.6217 3.83335C14.9366 3.51764 15.4481 3.51764 15.7638 3.83335C16.0787 4.14907 16.0787 4.66138 15.7638 4.9771L8.57114 12.1722C8.25948 12.4831 7.73993 12.4831 7.42899 12.1714Z'%3E%3C/path%3E%3C/svg%3E");
}
.menu-item.has-children > .menu-item-content > .menu-link.active::after {
  rotate: 180deg;
}

.sidebar .menu-item.has-children .sidebar .menu-item-content::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23151515' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
  flex-shrink: 0;
}

.sidebar .menu-item.has-children.active .sidebar .menu-item-content::after {
  transform: rotate(180deg);
}

.submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
  padding-left: 0;
  overflow: hidden;
}

.submenu.active {
  grid-template-rows: 1fr;
}

.submenu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}

.submenu-item:first-child {
  margin-top: 6px;
}

.submenu-item:last-child {
  margin-bottom: 20px;
}

.submenu-content {
  min-height: 0;
  overflow: hidden;
  padding-left: 30px;
}

.submenu-icon-container {
  background: rgba(255, 106, 0, 0.1);
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.submenu-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submenu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sidebar-divider.mobile-nav-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  display: none;
}

.sidebar
  .menu-item:not(.has-children):not(.coming-soon)
  .sidebar
  .menu-item-content:hover {
  background: rgba(255, 106, 0, 0.03);
}

.mobile-nav-section .sidebar .menu-item {
  margin-block: 14px;
}

.sidebar .menu-item:not(.coming-soon):hover {
  box-shadow: 0 4px 20px 0 rgba(61, 72, 112, 0.2);
  transform: translateY(-1px);
}

.sidebar .menu-item.has-children.active {
  background: rgba(255, 106, 0, 0.02);
}

.sidebar .menu-item-content:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.sidebar-divider {
  border: none;
  margin: 16px 0;
}

.sidebar-footer {
  padding: 20px 24px 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.sidebar-footer > span {
  display: block;
  font-size: 14px;
  color: #666;
  padding-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.social-icons img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  z-index: 999;
  transition: all 0.2s;
  visibility: hidden;
  opacity: 0;
}

.sidebar-overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-section {
  display: none;
}

.sidebar-main-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 24px;
}

.sidebar-btn {
  margin-top: auto;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sidebar.active {
  animation: fadeIn 0.3s ease-out;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  margin-top: 40px;
  border-radius: 24px;
  padding: 59px 40px 13px;
  background: #2c2c2c;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  max-width: 286px;
}

.footer-logo-container {
  margin-bottom: 19px;
}

.footer-logo {
  height: auto;
  max-width: 150px;
}

.footer-description {
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}

.footer-social-icons {
  display: flex;
  gap: 8px;
}

.social-icon-img {
  display: block;
}

.social-icon-img {
  width: 38px;
  height: 38px;
}

.footer-title {
  color: #eaeaea;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.contact-location {
  align-items: flex-start;
}

.contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-img {
  width: 100%;
  height: 100%;
}

.contact-link {
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-primary);
}

.copyright {
  padding-top: 12px;
  border-top: 1px solid #9f9f9f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-policies {
  color: #eaeaea;
  font-size: 14px;
  text-align: center;
}

.policy-link {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-link:hover {
  color: var(--color-primary);
}

.policy-separator {
  margin: 0 8px;
  color: #eaeaea;
}

.footer-powered {
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

#single-best-vpn {
  position: relative;
  margin-top: 30px;
  border-radius: 24px;
  padding: 40px 35px 55px;
  background-size: cover;
}

.best-vpn {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin-bottom: 62px;
}

.best-vpn-back {
  background: rgba(0, 0, 0, 0.06);
  height: 44px;
  width: 44px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
}

.best-vpn-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 10px;
}

.vpn-description {
  margin-bottom: 20px;
}

.best-vpn-img img {
  margin-left: auto;
  display: block;
}

.best-vpn-img {
  max-width: min(40%, 598px);
}

.best-vpn-content {
  max-width: min(60%, 598px);
}

.best-vpn-content,
.best-vpn-img {
  flex: 1;
}

.vpn-pros-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.vpn-pros {
  display: flex;
  column-gap: 8px;
}

.key-point {
  font-size: 14px;
}

.checked-img {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-title.center {
  text-align: center;
}
.section-title > span,
.gradient-text {
  background: linear-gradient(90deg, #ee732e 29.67%, #ee3a2e 91.45%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card {
  margin-bottom: 33px;
}
.description-vpn {
  flex: 1 1 300px;
  max-width: 400px;
}

.best-vpn-card {
  border-radius: 20px;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 16px rgba(100, 100, 111, 0.1);
}

.best-vpn-card:hover .top-left,
.best-vpn-card:hover .top-mid,
.best-vpn-card:hover .top-right,
.best-vpn-card:hover .top-left-no-mid,
.best-vpn-card:hover .top-right-no-mid,
.best-vpn-card:hover .inner-bottom {
  border-color: #ee732e;
}

.top-left:hover,
.top-mid:hover,
.top-right:hover,
.inner-bottom:hover {
  border-color: #fff;
}

.inner-top {
  height: 51px;
  display: flex;
}
.top-left {
  flex: 1;
  border: 2px solid #fff;
  border-radius: 20px 20px 0 0;
  border-bottom: 0;
  margin-bottom: 16px;
  padding: 2px;
  position: relative;
  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.32);
}
.top-left-no-mid {
  flex: 1;
  border: 2px solid #fff;
  border-radius: 20px 0px 0 0;
  border-bottom: 0;
  border-right: none;
  margin-bottom: 16px;
  padding: 2px;
  position: relative;
  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.32);
}
.number {
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  width: calc(100% - 4px);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}
.number-inner {
  display: block;
  color: #fff;
  background: #ee732e;
  padding: 8px 0 4px;
  width: min(50px, 100%);
  text-align: center;
}
.number-fade {
  background: linear-gradient(123deg, #e0eafc 6.54%, #cfdef3 87.81%);
  font-size: 20px;
  font-weight: 600;
  color: #000;
  border-radius: 14px 2px 2px 2px;
  width: fit-content;
  padding: 8px 22px 4px;
  position: absolute;
}
.hero-images {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.top-mid {
  transition: border-color 0.3s ease;
  border: 2px solid #fff;
  border-radius: 0 0 20px 20px;
  margin-inline: -2px;
  border-top: none;
  height: 31px;
  align-self: end;
  position: relative;
  width: fit-content;
  max-width: 85%;
  background: rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: end;
}
.header-mid {
  height: 51px;
  padding: 10px 31px;
  width: calc(100% - 10px);
  margin: 0 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
  border-radius: 14px;
  background-color: #8b5cf6;
  color: #fff;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}

.header-mid div + div {
  border-left: 1px solid #fff;
  padding-left: 16px;
}

.top-right {
  flex: 1;
  border: 2px solid #fff;
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  margin-bottom: 16px;

  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.32);
}
.top-right-no-mid {
  flex: 1;
  border: 2px solid #fff;
  border-radius: 0 20px 0 0;
  border-bottom: none;
  border-left: none;
  margin-bottom: 16px;

  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.32);
}
.card .tag {
  padding: 11px 21px;
  background: linear-gradient(90deg, #61bc40 0%, #4e9633 100%);
  color: white;
  position: absolute;
  top: 16px;
  right: -20px;
  border-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}
.card .tag::after {
  content: "";
  width: 20px;
  height: 16px;
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.26) 0%,
      rgba(0, 0, 0, 0.26) 100%
    ),
    #61bc40;
  clip-path: polygon(100% 1%, 0% 100%, 0 0);
}

.inner-bottom {
  padding: 48px 24px 42px 44px;
  border: 2px solid #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top: none;
  margin-top: -16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.32);
  gap: 20px;
}

.review-text {
  font-size: 14px;
  margin-top: 10px;
}
.description-vpn .protect {
  color: #505050;
  font-size: 14px;
  max-width: 100%;
  line-height: 1.4;
}

.description-vpn .protect:not(:last-child) {
  margin-bottom: 18px;
}

.checked-text {
  display: flex;
  column-gap: 8px;
  align-items: start;
  color: #505050;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.3;
}
.best-vpn-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 80px;
}
.rating {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='800px' width='800px' version='1.1' id='Capa_1' viewBox='0 0 47.94 47.94' xml:space='preserve'%3E%3Cpath style='fill:%23cacaca;' d='M26.285,2.486l5.407,10.956c0.376,0.762,1.103,1.29,1.944,1.412l12.091,1.757 c2.118,0.308,2.963,2.91,1.431,4.403l-8.749,8.528c-0.608,0.593-0.886,1.448-0.742,2.285l2.065,12.042 c0.362,2.109-1.852,3.717-3.746,2.722l-10.814-5.685c-0.752-0.395-1.651-0.395-2.403,0l-10.814,5.685 c-1.894,0.996-4.108-0.613-3.746-2.722l2.065-12.042c0.144-0.837-0.134-1.692-0.742-2.285l-8.749-8.528 c-1.532-1.494-0.687-4.096,1.431-4.403l12.091-1.757c0.841-0.122,1.568-0.65,1.944-1.412l5.407-10.956 C22.602,0.567,25.338,0.567,26.285,2.486z'/%3E%3C/svg%3E");
  height: 24px;
  background-size: contain;
  width: 120px;
}

.rating::before {
  content: var(--label);
  position: absolute;
  inset: 0 calc(100% + 20px) 0 auto;
  margin: auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  height: fit-content;
}

.rating::after {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(var(--rating, 0) * 100% / 5);
  height: 100%;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='800px' width='800px' version='1.1' id='Capa_1' viewBox='0 0 47.94 47.94' xml:space='preserve'><path style='fill:%23fecd2c;' d='M26.285,2.486l5.407,10.956c0.376,0.762,1.103,1.29,1.944,1.412l12.091,1.757 c2.118,0.308,2.963,2.91,1.431,4.403l-8.749,8.528c-0.608,0.593-0.886,1.448-0.742,2.285l2.065,12.042 c0.362,2.109-1.852,3.717-3.746,2.722l-10.814-5.685c-0.752-0.395-1.651-0.395-2.403,0l-10.814,5.685 c-1.894,0.996-4.108-0.613-3.746-2.722l2.065-12.042c0.144-0.837-0.134-1.692-0.742-2.285l-8.749-8.528 c-1.532-1.494-0.687-4.096,1.431-4.403l12.091-1.757c0.841-0.122,1.568-0.65,1.944-1.412l5.407-10.956 C22.602,0.567,25.338,0.567,26.285,2.486z'/></svg>");
  background-size: auto 100%;
  background-repeat: repeat no-repeat;
}

.progress-score {
  position: relative;
}

.progress-score::before {
  content: attr(data-progress);
  margin: 10px;
  position: absolute;
  inset: 0;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.progress {
  --progress-value: 60;
  --progress: calc(var(--progress-value) * 10%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-size: 100% 100%;
  background-position: 0px 0px, 0px 0px;
  background-image: radial-gradient(75% 75% at 50% 50%, red 58%, #ffffff00 58%),
    conic-gradient(
      from 0deg at 50% 50%,
      var(--progress-color) 0%,
      var(--progress-color) var(--progress),
      #33333300 var(--progress),
      #33333300 100%
    );
  transition: all 0.5s;
  mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 76 76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38 0C58.9868 0 76 17.0132 76 38C76 58.9868 58.9868 76 38 76C17.0132 76 0 58.9868 0 38C0 17.0132 17.0132 0 38 0ZM38 6C20.3269 6 6 20.3269 6 38C6 55.6731 20.3269 70 38 70C55.6731 70 70 55.6731 70 38C70 20.3269 55.6731 6 38 6Z' fill='white'/%3E%3C/svg%3E%0A");
  mask-position: center;
}

.progress::after {
  content: attr(data-progress);
  font-size: 50px;
  font-family: sans-serif;
  color: white;
}

.initial-circle,
.final-circle {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
}

.initial-circle:before,
.final-circle:before {
  --size: 5px;
  content: "";
  width: var(--size);
  height: var(--size);
  background: var(--progress-color);
  border-radius: 100%;
}

.initial-circle {
  rotate: 1deg;
}

.final-circle {
  rotate: calc(var(--progress-value) * 36deg);
}

.progress-inner {
  position: absolute;
  inset: 0;
}
.best-vpn-btn {
  padding: 10px 47px;
}
.progress-container {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
  font-weight: 500;
}
.link {
  color: #2a91f2;
  text-decoration: underline;
  font-size: 14px;
  margin-top: 4px;
}
.btn-container {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
}
.learn {
  font-weight: 400;
  max-width: 468px;
  color: #151515;
  margin-bottom: 30px;
}
.rate-card {
  padding: 20px 36px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 2px 12px 0 rgba(61, 72, 112, 0.16);
  border: 1px solid #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 145px;
  width: 100%;
}

.rate-card-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  width: fit-content;
}
.rate-card-text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 12px;
  white-space: nowrap;
}
.faqs {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 20px;
}

.accordion {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: #ffffff80;
}

.accordion:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.accordion-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.accordion-question * {
  pointer-events: none;
}

.accordion-question svg {
  transition: transform 0.3s ease;
  min-width: 24px;
}

.accordion-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.accordion-question.open svg {
  transform: rotate(180deg);
}

.accordion-answer {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  padding: 20px 0 0;
  color: #666;
  padding: 0 25px 20px;
}

.accordion-answer p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #666;
  font-weight: 400;
}

.accordion-answer ul {
  padding-left: 20px;
  margin: 15px 0;
}

.accordion-answer li {
  line-height: 1.6;
  margin-bottom: 8px;
  color: #666;
}

.accordion-answer strong {
  color: #000;
  font-weight: 600;
}

.hero-tag {
  display: block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 106, 0, 0.3);
  border: 1px solid rgba(255, 106, 0, 0.6);
  width: fit-content;
  margin-bottom: 12px;
  text-align: center;
}

.hero-title {
  display: flex;
  gap: 0 0.5ch;
  font-size: 40px;
  flex-wrap: wrap;
}
.hero-title:first-child:last-child {
  margin-bottom: 0;
}
.hero-title span {
  font-weight: 600;
}
.hero-title .highlight {
  background: transparent;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: black;
}
.hero-title .highlight svg {
  display: block;
  margin-top: -8px;
}
.hero {
  padding: 82px 40px 92px 70px;
  width: 100%;
  display: block;
  border-radius: 24px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before,
#single-best-vpn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    90deg,
    rgba(238, 115, 46, 0.28),
    rgba(238, 58, 46, 0.28)
  );
  border-radius: 26px;
  z-index: -1;
}
.hero-btn {
  margin-bottom: 41px;
}

.featured-vpns {
  padding-block: 92px 110px;
  max-width: 1169px;
  margin-inline: auto;
}
.featured-vpns-main {
  position: relative;
}
.featured-vpns-main::after {
  display: block;
  position: absolute;
  inset: 0 0 0 auto;
  width: 93px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) -37.56%,
    #fff 89.35%
  );
  filter: blur(2px);
  transition: all 0.2s;
}
.featured-vpns-slider {
  display: flex;
  gap: 26px;
  overflow: scroll;
}
.featured-vpns-slider::-webkit-scrollbar {
  width: 0;
}
.vpn-card-slider-btn {
  position: absolute;
  top: 92px;
  translate: 0 -50%;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5148 4.51477L13.6239 5.40567L17.5882 9.37003H0V10.63H17.5882L13.6239 14.5943L14.5148 15.4852L20 9.99996L14.5148 4.51477Z' fill='%23FF6A00'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: hsla(25, 100%, 92%, 1);
  border-radius: 50%;
  border: none;
  display: block;
  transition: all 0.2s;
  cursor: pointer;
}
#featured-vpn-next {
  right: 0;
}
.vpn-card-slider-btn.disabled {
  scale: 0;
}
#featured-vpn-prev {
  rotate: 180deg;
}
.vpn-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 213px;
  color: black;
  text-decoration: none;
}
.vpn-card-img {
  display: grid;
  place-content: center;
  padding: 15px;
  aspect-ratio: 213/182;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
}
.vpn-card-img img {
  transition: all 0.5s;
  margin-inline: auto;
  aspect-ratio: 166.99 / 92.94;
  object-fit: contain;
}
.vpn-card-name {
  margin-block: 20px 14px;
  font-size: 18px;
  font-weight: 600;
}
.vpn-card-link {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-weight: 600;
}
.vpn-card-link span:last-child {
  display: block;
  width: 15px;
  height: 11px;
  transition: all 0.5s;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.94657 0.218643C9.23939 -0.072955 9.71421 -0.0728072 10.0071 0.218643L14.7803 4.97194C15.0732 5.26361 15.0732 5.73639 14.7803 6.02806L10.0071 10.7814C9.71421 11.0728 9.23939 11.073 8.94657 10.7814C8.65375 10.4898 8.6539 10.0169 8.94657 9.72523L12.4395 6.24687H0V4.75313H12.4395L8.94657 1.27477C8.6539 0.983079 8.65375 0.510242 8.94657 0.218643Z' fill='url(%23paint0_linear_3734_1253)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3734_1253' x1='0' y1='5.5' x2='15' y2='5.5' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.2967' stop-color='%23EE732E'/%3E%3Cstop offset='0.9145' stop-color='%23EE3A2E'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
.vpn-card:hover .vpn-card-img img {
  scale: 1.1;
}
.vpn-card:hover .vpn-card-link span:last-child {
  translate: 10px;
}

.hero-description {
  max-width: 507px;
  margin-bottom: 33px;
}
.hero-logo-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;

  max-width: 459px;
  margin-bottom: 10px;
}
.section-description {
  width: min(628px, 100%);
  margin: 0 0 50px;
}
.section-description.center {
  margin: 0 auto 50px;
  text-align: center;
}

section.blog {
  max-width: 1132px;
  margin-inline: auto;
}
.blog-main {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
  padding: 15px 10px;
  overflow: auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  min-width: 300px;
}

.blog-card-best-vpn-meta {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-block: 10px 30px;
  font-size: 14px;
  font-weight: 500;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  column-gap: 5px;
  align-items: center;
  text-transform: uppercase;
}
.blog-card-link::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='11' viewBox='0 0 10 11' fill='none'%3E%3Cpath d='M9.21053 0.5C9.64665 0.5 10 0.853349 10 1.28947V8.39679C9.99986 8.8328 9.64657 9.18627 9.21053 9.18627C8.77449 9.18627 8.42119 8.8328 8.42105 8.39679V3.19531L1.34766 10.2687C1.03927 10.5771 0.539677 10.5771 0.23129 10.2687C-0.0770967 9.96032 -0.0770966 9.46073 0.23129 9.15234L7.30469 2.07895H2.10321C1.6672 2.07881 1.31373 1.72551 1.31373 1.28947C1.31373 0.853435 1.6672 0.500139 2.10321 0.5H9.21053Z' fill='%23F48133'/%3E%3C/svg%3E");
}

.blog-card-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card-author {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card-img {
  position: relative;
  aspect-ratio: 360/188;
  overflow: hidden;
  background: var(--color-primary);
}

.blog-card-time-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #848484;
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px 0 0 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.4s;
}
.blog-card:hover .blog-card-img img {
  scale: 1.05;
}

.blog-btn {
  width: fit-content;
  margin-inline: auto;
}

.about {
  position: relative;
  padding: 80px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.12);
  margin-block: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.about-abs-link {
  position: absolute;
  inset: 0;
}
.about,
.about-home {
  position: relative;
  border-radius: 20px;
  transition: all 0.3s;
}
.about-home {
  margin: -20px;
  padding: 20px;
}
.about:hover,
.about-home:hover {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  translate: 0 -5px;
}
.about-us {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-block: 80px;
}
.about-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  max-width: 1115px;
  width: 100%;
  margin: 0 auto;
}
.about-main:where(:nth-child(even)) {
  flex-direction: row-reverse;
}
.about-img img {
  display: block;
}

.rate-card img {
  max-width: 60px;
  height: auto;
}
.cta {
  background: var(
    --Gradient,
    linear-gradient(90deg, #ee732e 29.67%, #ee3a2e 91.45%)
  );
  padding: 50px;
  border-radius: 28px;
  color: #fff;
}
.cta-main {
  max-width: 1128px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.cta-title,
.cta-description {
  margin-bottom: 0;
}
.cta-description {
  max-width: 595px;
  font-weight: 500;
}
.cta-btn {
  background: transparent;
  border: 1px solid #fff;
}
.use {
  padding-block: 100px 120px;
}
.use-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.use-card {
  position: relative;
  isolation: isolate;
  padding: 2px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 12px 0 rgba(61, 72, 112, 0.1);
}

.use-card::before {
  content: "";
  position: absolute;
  width: 80px;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #ee732e, #ee3a2e);
  border-radius: 50%;
  top: 0;
  left: 0;
  translate: -50% -50%;
  animation: borderShine 15s linear infinite;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.8;
  background: var(--color);
  animation-delay: var(--delay);
}

.use-card-inner {
  position: relative;
  padding: 24px 34px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  z-index: 2;
  height: 100%;
}
.use-card-icon {
  position: relative;
  border-radius: 12px;
  isolation: isolate;
  padding: 12.5px;
  width: fit-content;
  border: 2px solid var(--color);
}
.use-card-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color);
  opacity: 0.1;
}
.use-card-icon svg {
  display: block;
}
.use-card-icon svg path {
  fill: var(--color);
}
@keyframes borderShine {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: 0;
    left: 100%;
  }
  50% {
    top: 100%;
    left: 100%;
  }
  75% {
    top: 100%;
    left: 0;
  }
  100% {
    top: 0;
    left: 0;
  }
}
.use-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
}
.use-card-detail {
  font-size: 14px;
  color: #505050;
}
.feedback-section {
  margin-bottom: 100px;
}

.feedback-cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.feedback-cards::-webkit-scrollbar {
  display: none;
}

.feedback-card {
  padding: 32px 28px 28px;
  background: #ffe9da;
  border-radius: 20px;
  width: 360px;
  flex: 0 0 auto;
  min-height: 280px;
}

.Quotation-img {
  max-width: 40px;
  height: auto;
  margin-bottom: 14px;
}

.feedback-card-desc {
  font-size: 14px;
  color: #333;
  margin-block: 20px 28px;
  line-height: 1.5;
}

.feedback-card-user {
  font-size: 20px;
  font-weight: 500;
}

.feedback-card-role {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-controls:has(.prev-btn.disabled):has(.next-btn.disabled) {
  display: none;
}

.slider-btn {
  width: 40px;
  height: 40px;
  padding: 0;
}

.slider-btn:hover {
  transform: scale(1.1);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.what-is-vpn {
  padding: 60px;
  background: rgba(255, 106, 0, 0.12);
  border-radius: 24px;
}

.what-is-vpn-main {
  max-width: 988px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.what-is-vpn-content {
  max-width: 488px;
}

.hero-logo {
  width: auto;
  max-height: 29px;
}

.stats {
  padding: 43px;
  background: rgba(255, 106, 0, 0.2);
  margin-block: 40px 100px;
  border-radius: 24px;
}

.stats-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1128px;
  margin-inline: auto;
}

.stat {
  flex: 1;
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: #cccccc;
}

.stats-value {
  font-size: 40px;
  font-weight: 600;
}

.stats-key {
  color: #333;
}

.about-content {
  width: 100%;
  max-width: calc(50% - 28px);
}

.about-content p {
  margin-bottom: 20px;
}

.about-us .about-content {
  max-width: 544px;
}

.about-us .about .about-main .about-content,
.about-us .about ~ .about-main .about-content {
  max-width: 515px;
}

.about-main:nth-child(2) .about-image img {
  max-width: min(100%, 418px);
}
.statement {
  border-radius: 24px;
  background: linear-gradient(270deg, #ee732e 29.67%, #ee3a2e 91.45%);
  padding: 40px;
  margin-block: 84px 80px;
}

.statement h3 {
  color: #fff;
}

.statement p {
  color: white;
}

.statement p:not(:last-child) {
  margin-bottom: 25px;
}

.tabs {
  display: flex;
  gap: 14px;
  max-width: fit-content;
  margin-inline: auto;
  white-space: nowrap;
}

.tab-button {
  position: relative;
  padding: 10px 24px;
  font-weight: 500;
  border: 1px solid var(--color-primary);
  background: transparent;
  border-radius: 100px;
  isolation: isolate;
  transition: all 0.3s;
  cursor: pointer;
}

.tab-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  z-index: -1;
  background: linear-gradient(90deg, #ee732e 29.67%, #ee3a2e 91.45%);
  transition: all 0.3s;
  opacity: 0;
}

.tab-button.active {
  color: #fff;
}

.tab-button.active::before {
  opacity: 1;
}

.tab-toggler {
  display: none;
  border-radius: 100px;
  background: linear-gradient(90deg, #ee732e 29.67%, #ee3a2e 91.45%);
  min-width: 40px;
  height: 40px;
  place-content: center;
  position: absolute;
  right: 5px;
}

.tab-dropdown {
  display: none;
}

a.tab-toggler svg {
  width: 13px;
  height: auto;
}

.news {
  padding-block: 45px 60px;
  max-width: 1131px;
  margin: 0 auto;
}

.news-title {
  margin-block: 56px 40px;
}

.share-card div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sidebar-card {
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3.574px 8.935px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 22px;
}
.share-card h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.share-card {
  padding: 25px;
  margin-block: 20px;
}
.single-blog-img {
  display: block;
  margin-bottom: 40px;
}

.single-blog-img img {
  width: 100%;
  aspect-ratio: 360/188;
  height: unset;
  object-fit: cover;
  margin-bottom: -6px;
  border-radius: 10px;
}

.single-blog-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.single-blog-tag {
  font-size: 12px;
  padding: 10px 16px;
  color: #635e5e;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid #d7dbe3;
}

.toc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 25px;
  font-weight: 600;
  cursor: pointer;
  gap: 20px;
}

.toc-content {
  margin-top: 23px;
  display: none;
}

.toc-list {
  padding-left: 20px;
}

.toc-title svg,
.tab-toggler svg {
  transition: all 0.5s;
}

.toc-title svg {
  rotate: -180deg;
}
.toc-title.active svg {
  rotate: 0deg;
}
.tab-toggler.active svg {
  rotate: -180deg;
}

.toc a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}

.toc a:hover {
  color: var(--color-primary);
}

.single-blog-trust {
  display: flex;
  align-items: center;
  color: inherit;
  margin-bottom: 30px;
  width: fit-content;
}

.single-blog-trust span {
  padding-inline: 10px 8px;
  font-weight: 600;
}

#single-post .blog {
  padding-block: 80px 60px;
}
#single-post .blog .blog-main {
  padding-top: 40px;
  overflow: auto;
}
.breadcramp a,
.breadcramp span {
  color: inherit;
  display: block;
  text-decoration: none;
  transition: all 0.2s;
}
.breadcramp a:hover {
  color: var(--color-primary);
}

.breadcramp {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
section.single-blog {
  padding-top: 40px;
}
.single-blog-main {
  display: flex;
  align-items: start;
  gap: 14px;
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.single-blog-content,
.single-blog-header {
  width: 100%;
  max-width: calc(70% - 14px);
}

.single-post-content {
  width: 100%;
  max-width: 30%;
  position: sticky;
  top: 100px;
}

div#posts .single-post-content {
  display: none;
}

.static-page {
  padding-block: 80px;
  max-width: 80ch;
  margin-inline: auto;
}

.static-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 100%;
}

.static-description h1,
.static-description h2,
.static-description h3,
.static-description h4,
.static-description h5,
.static-description h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #1a1a1a;
  scroll-margin-top: 100px;
}

.static-description h1 {
  font-size: 2.25em;
}
.static-description h2 {
  font-size: 1.875em;
}
.static-description h3 {
  font-size: 1.5em;
}
.static-description h4 {
  font-size: 1.25em;
}
.static-description h5 {
  font-size: 1.125em;
}
.static-description h6 {
  font-size: 1em;
}

.static-description p {
  margin-bottom: 1.25em;
}

.static-description ul,
.static-description ol {
  margin-bottom: 1.25em;
  padding-left: 2em;
}

.static-description li {
  margin-bottom: 0.5em;
}

.static-description ul ul,
.static-description ol ol,
.static-description ul ol,
.static-description ol ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.static-description a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.static-description a:hover {
  color: var(--color-gradient-2);
}

.static-description img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em 0;
}

.site-ad img {
  width: 100%;
}

.static-description figure {
  margin: 1.5em 0;
}

.static-description figcaption {
  font-size: 0.875em;
  color: #666;
  text-align: center;
  margin-top: 0.5em;
  font-style: italic;
}

.static-description blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #0073aa;
  background-color: #f7f7f7;
  font-style: italic;
  color: #555;
}

.static-description blockquote p:last-child {
  margin-bottom: 0;
}

.static-description code {
  background-color: #f4f4f4;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
  color: #d63384;
}

.static-description pre {
  background-color: #f4f4f4;
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 1.25em;
}

.static-description pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.static-description table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}

.static-description th,
.static-description td {
  padding: 0.75em;
  border: 1px solid #ddd;
  text-align: left;
}

.static-description th {
  background-color: #f8f8f8;
  font-weight: 600;
}

.static-description tr:nth-child(even) {
  background-color: #fafafa;
}

.static-description hr {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 2em 0;
}

.static-description strong,
.static-description b {
  font-weight: 700;
}

.static-description em,
.static-description i {
  font-style: italic;
}

.static-description .wp-block-button__link {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.static-description .wp-block-button__link:hover {
  background-color: #005177;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  animation: fadeIn 0.3s ease;
}

.video-modal.is-active {
  display: block;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  animation: slideUp 0.4s ease;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.video-modal-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: black;
}

.video-modal-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.app-store-buttons {
  display: flex;
  gap: 10px;
}

.app-store-buttons {
  max-width: min(100%, 300px);
}

.footer-contact .footer-description {
  margin-block: 30px 0;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(-40%);
    opacity: 0;
  }
  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

.coupons {
  padding: 82px 34px 84px;
  margin-top: 30px;
  position: relative;
  border-radius: 24px;
  border: 1px solid #ee732e;
}

.coupon-img {
  max-width: 63px;
  aspect-ratio: 63/38;
  object-fit: contain;
}

.block-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
}

.coupons-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.search-label {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  width: min(333px, 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.search-label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_4104_268)'%3E%3Cpath d='M10.6945 0C6.66629 0 3.38906 3.27723 3.38906 7.30547C3.38906 9.13008 4.06146 10.8006 5.17145 12.0823L0.154441 17.0998C-0.0515039 17.3057 -0.0514687 17.6396 0.154477 17.8456C0.360422 18.0515 0.694301 18.0515 0.900246 17.8456L5.91718 12.8281C7.19895 13.9384 8.86968 14.6109 10.6945 14.6109C14.7228 14.6109 18 11.3337 18 7.30547C18 3.27723 14.7228 0 10.6945 0ZM10.6945 13.5563C7.24781 13.5563 4.44375 10.7522 4.44375 7.30547C4.44375 3.85879 7.24785 1.05469 10.6945 1.05469C14.1412 1.05469 16.9453 3.85879 16.9453 7.30547C16.9453 10.7522 14.1412 13.5563 10.6945 13.5563Z' fill='%23151515'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4104_268'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
  content: "";
  display: block;
}

.search-label input {
  background: transparent;
  border: none;
  flex: 1;
  outline: none;
}

.search-label:focus-within {
  background: rgba(0, 0, 0, 0.2);
}

.coupons-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.coupon-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(61, 72, 112, 0.16);
  padding: 17px 14px;
  display: flex;
  container-type: inline-size;
}

.coupon-content {
  padding-left: 30px;
  margin-left: 30px;
  border-left: 2px dashed #66666654;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coupon-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.coupon-tag {
  margin-block: 10px;
  padding: 2px 10px;
  border-radius: 6px;
  background: #f8a634;
  font-weight: 500;
  color: #fff;
}

.coupon-discount {
  font-size: 24px;
  font-weight: 600;
}

.coupon-off {
  font-weight: 500;
  margin-top: -7px;
}

.coupon-title {
  font-size: 20px;
  font-weight: 600;
  text-wrap-style: pretty;
}

.coupon-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.coupon-verified {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-tick::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7504 2.06377C13.4168 1.73006 12.8767 1.73004 12.543 2.06374L4.48137 10.1254L1.45698 7.10102C1.12336 6.76731 0.583291 6.76728 0.249642 7.10099C-0.0832141 7.43387 -0.0832141 7.97547 0.249642 8.3083L3.87773 11.9364C4.2113 12.2699 4.75144 12.27 5.08504 11.9364L13.7504 3.27105C14.0832 2.9382 14.0832 2.39657 13.7504 2.06377Z' fill='%2371DE56'/%3E%3Cpath d='M13.7481 2.06377C13.4145 1.73006 12.8744 1.73004 12.5408 2.06374L6.65625 7.94826V10.3629L13.7481 3.27105C14.0809 2.9382 14.0809 2.39657 13.7481 2.06377Z' fill='%2371DE56'/%3E%3C/svg%3E");
  width: 14px;
  height: 14px;
  display: block;
}

.coupon-tick {
  display: flex;
  align-items: center;
  gap: 5px;
}

button.coupon-code-btn {
  border-radius: 2px;
  border: 0.5px dashed #666;
  background: rgba(255, 106, 0, 0.1);
  padding: 5px 55px 5px 10px;
  position: relative;
  font-size: 14px;
  cursor: pointer;
}

.coupon-btn {
  font-size: 10px;
  background: #ff6a00;
  position: absolute;
  inset: 0px 6px 0px auto;
  margin: auto;
  height: fit-content;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.4s;
  width: 38.52px;
}

button.coupon-code-btn.active .coupon-btn {
  width: calc(100% - (6px * 2));
}

@container (width <= 500px) {
  .coupon-tag {
    font-size: 11px;
  }
  .coupon-content {
    padding-left: 11px;
    margin-left: 22px;
  }
  .coupon-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .coupon-verified {
    font-size: 10px;
  }
  .coupon-tick::before {
    width: 8px;
    height: 8px;
    background-size: contain;
  }
  button.coupon-code-btn {
    width: 135px;
  }
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -45px;
    width: 36px;
    height: 36px;
  }
}

@media screen and (width <= 1080px) {
  .vpn-card-slider-btn.disabled {
    scale: 0;
  }
  .featured-vpns-main.next-disabled::after {
    opacity: 0;
  }
  .featured-vpns-main::after {
    content: "";
  }
}

@media (width > 768px) {
  .news.featured-first .blog-card:first-child {
    grid-column-end: span 3;
    display: grid;
    grid-template-columns: 577fr 554fr;
  }

  .news.featured-first .blog-card:first-child .blog-card-img {
    aspect-ratio: unset;
    order: 1;
  }

  .news.featured-first .blog-card:first-child .blog-card-content {
    padding: 32px;
  }

  .news.featured-first .blog-card:first-child .blog-card-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 17px;
    -webkit-line-clamp: 2;
  }

  .news.featured-first .blog-card:first-child .blog-card-description {
    font-size: 14px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news.featured-first .blog-card:first-child .blog-card-link {
    font-size: 16px;
    gap: 10px;
  }

  .news.featured-first .blog-card:first-child .blog-card-link::after {
    width: 15px;
    height: 15px;
    background-size: cover;
  }

  .news.featured-first .blog-card:first-child .blog-card-author {
    font-size: 16px;
  }
}

@media (width <= 1080px) {
  .hero {
    padding: 50px 30px 50px 30px;
  }

  .pageWrapper:not(#home) .blog-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .news.featured-first .blog-card:first-child {
    grid-column-end: span 2;
  }

  .toc-title {
    font-size: 16px;
  }

  .toc a {
    font-size: 14px;
  }

  .share-card h3 {
    font-size: 16px;
  }

  .toc-content {
    margin-top: 10px;
  }
}

@media (width <= 991px) {
  .desktop-nav,
  .header-actions .btn {
    display: none;
  }
  .mobile-nav-section,
  .sidebar-divider.mobile-nav-divider {
    display: block;
  }
  .mobile-nav-section {
    margin-top: 24px;
  }
  .sidebar-main-content {
    margin-top: 0;
  }

  .hero {
    padding: 50px 30px 50px 30px;
    flex-direction: column;
  }
  .hero-tag,
  .hero-image-col,
  .hero-title,
  .about-desc,
  .about-img,
  section.what-is-vpn h2,
  .what-is-vpn-main img {
    order: -1;
  }

  .hero-title {
    margin-bottom: 0;
  }

  .hero-btn,
  .hero-tag {
    margin-inline: auto;
  }

  .hero-title {
    justify-content: center;
  }

  .hero-description {
    text-align: center;
  }

  .hero-content,
  .about-content,
  .what-is-vpn-content {
    display: contents;
  }

  .hero-image-col {
    margin-bottom: 20px;
  }

  .about {
    gap: 40px;
  }

  .about-main {
    max-width: min(600px, 100%);
  }

  .about-img {
    margin-bottom: 20px;
    margin-inline: auto;
  }

  .cta-main,
  .what-is-vpn-main,
  .about-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .cta-description {
    margin-block: 10px 30px;
    max-width: 100%;
    width: 100%;
  }

  .use-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-is-vpn {
    padding: 40px;
  }

  .what-is-vpn-main {
    width: min(100%, 500px);
  }

  .what-is-vpn-main img {
    margin-bottom: 20px;
  }

  section.what-is-vpn p {
    margin-bottom: 30px;
  }

  .stats-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(even)::after {
    display: none;
  }

  .stat {
    padding-inline: 18px;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    padding-bottom: 30px;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    padding-top: 30px;
  }

  .stat:nth-child(1)::before,
  .stat:nth-child(2)::before {
    content: "";
    position: absolute;
    height: 1px;
    background: #cccccc;
    width: calc(100% - (18px * 2));
    margin-inline: auto;
    inset: auto 0 0 0;
  }

  .footer-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-column:nth-child(1),
  .footer-column:nth-child(4) {
    grid-column-end: span 2;
    max-width: 100%;
  }

  .footer-description {
    margin-bottom: 20px;
  }

  .footer-title {
    margin-bottom: 16px;
  }

  .footer-link,
  .contact-link {
    font-size: 14px;
  }

  .footer-policies,
  .footer-powered {
    font-size: 12px;
  }

  .copyright {
    justify-content: center;
    gap: 10px;
  }

  .tabs {
    border-radius: 100px;
    border: 1px solid #ff6a00;
    background: linear-gradient(90deg, #ffd8c3 29.67%, #ffcecb 91.45%);
    padding: 5px 52px 5px 5px;
    max-width: 100%;
    overflow: hidden;
    width: fit-content;
    z-index: 2;
    position: relative;
  }

  .tab-button.active {
    color: #ff6a00;
    font-weight: 600;
    padding: 10px 20px;
  }

  button.tab-button::before {
    display: none;
  }

  .tab-button {
    border: none;
  }

  .tab-toggler {
    display: grid;
    z-index: 1;
  }

  .tab-dropdown {
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #ff6a00;
    padding: 30px 13px 4px;
    width: 100%;
    position: absolute;
    top: 50%;
    background: #fff;
    z-index: 1;
  }

  .blog-header {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    position: sticky;
    top: 100px;
    z-index: 2;
  }

  .tab-btn {
    display: block;
    width: 100%;
    padding-block: 8px;
    background: transparent;
    border: none;
    text-align: start;
    font-size: 12px;
    transition: all 0.2s;
  }

  .tab-btn.active {
    color: #ff6a00;
  }

  .tab-btn:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .single-blog-main {
    flex-direction: column;
    padding-bottom: 40px;
  }

  #single-post .blog {
    padding-block: 40px 0;
  }

  #single-post .blog .blog-main {
    padding-top: 10px;
  }

  .single-blog-content,
  .single-blog-header {
    max-width: 100%;
  }

  .single-post-content {
    display: contents;
  }

  .sidebar-card,
  .share-card {
    width: 100%;
    padding: 10px 15px;
  }

  .single-blog-trust span {
    font-size: 14px;
  }

  .sidebar-card.toc,
  .single-blog-header {
    order: -1;
  }

  #single-post .hero-title {
    justify-content: start;
  }

  .about-main img {
    margin-bottom: 20px;
  }

  .about-image {
    order: -1;
  }

  #about .about-main p {
    font-size: 14px;
  }

  #about .about-main p:last-child {
    margin-bottom: 0;
  }

  .about-us {
    padding-block: 40px;
  }

  .statement {
    margin-block: 0 40px;
  }

  .about-us {
    gap: 40px;
  }

  .about {
    padding: 30px 8px;
  }

  .best-vpn-back,
  .best-vpn-date,
  .section-title,
  .review-logo,
  .progress-container {
    order: -1;
  }

  .best-vpn .section-title {
    font-size: 22px;
  }

  .best-vpn-date {
    margin-bottom: 20px;
  }

  .best-vpn-img {
    margin-bottom: 20px;
  }

  .vpn-description {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .key-point,
  .header-mid {
    font-size: 12px;
  }

  .vpn-pros-container {
    grid-template-columns: 1fr;
    margin-bottom: 25px;
  }

  #single-best-vpn {
    padding: 20px 16px 40px;
  }

  .checked-img {
    width: 16px;
    height: 16px;
    margin: 0;
  }

  .description-vpn,
  .btn-container {
    flex-basis: 100%;
    max-width: 100%;
  }

  .btn-container[style*="opacity: 0"] {
    display: none;
  }

  .description-vpn {
    margin-block: 40px 80px;
  }

  .best-vpn-card:has(.btn-container[style*="opacity: 0"]) .description-vpn {
    margin-bottom: 0;
  }

  .inner-bottom {
    align-items: center;
    padding: 39px 20px 28px;
  }

  .card .tag {
    top: auto;
    bottom: 140px;
  }

  .header-mid {
    padding: 12px;
  }

  .coupons-main {
    gap: 10px;
  }
}

@media (width <= 768px) {
  .static-description {
    font-size: 15px;
  }

  .static-description h1 {
    font-size: 1.875em;
  }
  .static-description h2 {
    font-size: 1.5em;
  }
  .static-description h3 {
    font-size: 1.25em;
  }

  .site {
    padding-block: 10px;
  }

  .hero {
    padding: 40px 22px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-title .highlight svg {
    max-width: 130px;
  }

  .about {
    padding: 30px 18px;
  }

  .btn-large,
  .vpn-card-name,
  .blog-card-title,
  .feedback-card-user {
    font-size: 16px;
  }

  .blog-card-description,
  .blog-card-best-vpn-meta {
    font-size: 14px;
  }

  .blog-card-best-vpn-meta svg {
    width: 16px;
  }

  .hero-logo-title,
  .hero-description,
  .section-description,
  .stats-key,
  .accordion-answer {
    font-size: 14px;
  }

  .cta {
    padding: 40px 23px;
  }

  .blog-card-content {
    padding: 16px 20px 12px;
  }

  .blog-card-title {
    margin-bottom: 36px;
  }

  .stats-value {
    font-size: 32px;
  }

  .blog-main {
    overflow: unset;
    padding: 0;
    grid-template-columns: 1fr !important;
  }

  .stats {
    padding: 50px 0;
    margin-bottom: 40px;
  }

  .accordion-question {
    font-size: 15px;
    padding: 16px 24px;
  }

  .section-description.center {
    margin-bottom: 30px;
  }

  .use-main {
    grid-template-columns: 1fr;
  }

  .rate-card-main {
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    margin: auto;
    gap: 20px;
  }

  .use-card-title {
    font-size: 18px;
  }

  .featured-vpns,
  .use {
    padding-block: 40px;
  }
  .about {
    margin-block: 35px;
  }
  .feedback-section {
    margin-bottom: 40px;
  }

  .news.featured-first .blog-card:first-child {
    grid-column-end: span 1;
  }

  .blog-card-description {
    display: none;
  }

  #best-vpns-archive .blog-card-description {
    display: block;
  }

  #best-vpns-archive .blog-card-title {
    margin-bottom: 20px;
  }

  #single-post .hero-title {
    font-size: 25px;
  }

  .breadcramp {
    font-size: 10px;
  }

  .vpn-card-img {
    padding-inline: 12px;
  }

  .best-vpn {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .best-vpn-content {
    display: contents;
  }
  .best-vpn-img {
    max-width: 100%;
  }
  .best-vpn-img {
    order: -1;
  }

  .coupons {
    padding: 50px 8px;
    border: none;
    background: none !important;
  }

  .coupons-main {
    grid-template-columns: 1fr;
  }

  .coupons-header {
    flex-direction: column;
  }
}
