* {
	font-family: 'Poppins', Arial, sans-serif;
}

:root {
	--black: #000;
	--white: #fff;
	--primary: #f48120;
	--sc: #0e103b;
}

a {
	text-decoration: none;
	color: var(--primary);
}

p {
	line-height: 2;
	font-size: 16px;
	color: #000000b3;
}

ul,
ol {
	list-style: none;
}

input,
select,
textarea {
	font-size: initial;
	border-radius: 4px;
	border: 1px solid #ccc;
}

input:focus,
select:focus,
textarea:focus {
	border: none;
	outline: none
}

button {
	cursor: pointer;
	outline: none;
	border: unset;
	font-size: 16px;
}

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: 5px;
	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: 5px;
	animation: ripple 0.4s ease-out;
	opacity: 0;
}

.btn.btn-unfil {
	background: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
}

.btn svg:not(.header .btn svg) {
	transform: rotate(-45deg);
}

@keyframes ripple {
	0% {
		transform: scale(0);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0;
	}
}

/*---------- .header css starts -----------*/
.scrolled {
	background: var(--white);
}

.header {
	border-bottom: 1px solid #cccc;
}

.dropdown li a:not(.show-ul .dropdown li a) {
	color: var(--black);
}

.header nav ul 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: #fffaf6;
	transform: translateY(0);
}

.hero-nav .search-bar-show+.toggle-slide-btn+.mob-search-btn {
	transform: translate(120px, -10px);
}

.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);
}


/*//hero-banner*/

.hero-content .hero-title {
	font-size: 50px;
}

.hero-sub-title {
	font-size: 18px;
	line-height: 2;
}

.floating {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.stats-counter {
	background: var(--sc) !important;
	border-radius: 0 100px 100px 0 !important;
}

.stats-counter :is(div, p) {
	color: var(--white);
}


.light-bg {
	background: #f4812017;
}

.primary-bg {
	background: var(--sc);
}

.primary-bg :is(h2, p) {
	color: var(--white);
}

.sponser__logos img {
	background: #b6b7b812;
	border: 1px solid #cccccc59;
	border-radius: 5px;
}

.subheading {
	background: linear-gradient(to right, #dbdcdb66 0%, rgba(255, 255, 255, 0) 100%);
	color: var(--black);
}

.primary-bg .subheading {
	color: var(--white);
}

.service-box {
	background: var(--white);
	border-radius: 10px;
	border: 1px solid #e2e2e2;
}

.benefit-con .service-box {
	border: 1px solid #ccc;
	flex-direction: column;
	text-align: center;
}

.benefit-con .service-box img {
	height: 100px;
	width: 100px;
	padding: 15px;
	background: #fef4eb;
	border-radius: 50%;
	box-shadow: 2px 2px 2px #f481203b;
}

.service-title {
	color: var(--black);
	font-size: 20px;
	font-weight: var(--fw-6);
	margin-bottom: 10px;
}

.primary-bg .service-title {
	color: var(--white);
}


/*//blogs__card--styling*/

.img-placeholder {
	background-color: #c7c7c7;
	aspect-ratio: 16 / 9;
}

.img-placeholder,
.img-placeholder img {
	border-radius: 8px;
	width: 100%;
}

.calender {
	color: var(--white);
	font-size: 14px;
	border-radius: 4px;
}

.calender span:first-child {
	padding: 4px 12px;
	background: var(--sc);
}

.calender span:last-child {
	background: #ffffff;
	padding: 4px 12px;
	color: var(--sc);
}

.catg {
	color: var(--primary);
	width: fit-content;
	transition: all .3s ease-in-out;
}

.crd-title {
	color: #0000;
	transition: .4s;
	font-size: 22px;
	font-weight: 600;
	background: linear-gradient(90deg, var(--primary) 50%, #000 0) var(--_p, 100%) / 200% no-repeat;
	background-clip: text;
}

.crd-title:hover {
	--_p: 0%;
}

.crd-btn svg {
	transition: all .3s ease-out 0s;
}

.crd-btn:hover {
	color: var(--primary);
	transform: translateX(20px);
}

.crd-btn:hover svg {
	transform: translateX(-110px);
}

.crd-btn:hover svg path {
	stroke: var(--primary) !important;
}

:is(.faq, .accordion) details {
	padding: 20px;
	background: #cccccc17;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.show__on_feed>div {
	font-size: 30px;
	font-weight: 600;
	color: var(--primary);
}

.show__on_feed>span {
	font-size: 14px;
	color: #9d9d9d;
}

.review-card {
	background: #fdfaf7;
	border: 1px solid #ccc;
	border-radius: 5px;
}

/*----------------- Footer css starts -------------*/
.footer {
	background: var(--black);
}

.footer .newsletter {
	position: relative;
}

.newsletter form input {
	background: transparent;
	border: none;
	border-bottom: 1px solid #7f7d7dbf;
	color: #919191;
	padding-inline: 0;
	border-radius: 0;
}

.footer .newsletter:after {
	content: '';
	left: 0;
	bottom: -40px;
	background: #cccccc2b;
	height: 0.1px;
	width: 100%;
	position: absolute;
}

.footer .footer-right span,
.footer .list-heading {
	font-size: 20px;
	color: #e5e5e5;
	font-weight: var(--fw-6);
}

.footer-right ul li a {
	display: inline-block;
	transition: all 0.2s;
}

.footer p:not(.btm-footer p) {
	color: var(--white) !important;
	font-size: 15px;
	margin-top: 15px;
}

.footer-left p,
.footer-right ul li a,
.btm-footer p,
.footer .footer-site-info a {
	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);
}

.footer-site-info {
	background: #131313a6;
	padding: 5px 30px 30px;
}

.btm-footer .bwe-service-logo {
	background: var(--white);
	padding: 30px 20px;
	position: relative;
}

.btm-footer .bwe-service-logo:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 45px;
	background: var(--white);
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	top: -44.5px;
	left: 0px;
}

.btm-footer .bwe-service-logo:after {
	position: absolute;
	content: "";
	width: 35px;
	height: 45px;
	background: #929292b8;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
	top: -45px;
	right: -35px;
}

.site-cta {
	background: #f48120;
	border-radius: 20px;
}

.site-cta :is(h2, .h2, p, a){
	color: var(--white);
}

.site-cta .btn {
    --primary: var(--white);
    margin: 30px auto 0;
}

.site-cta:after,
.site-cta:before {
	content: '';
	height: 130px;
	width: 185px;
	filter: brightness(0) invert(1);
	position: absolute;
	background: url(https://webavior.com/wp-content/uploads/2025/06/cta-sep.svg) no-repeat;
}

.site-cta:after {
	left: 0;
	bottom: 50px;
	transform: scaleX(-1);
}

.site-cta:before {
	right: -20px;
	top: -20px;
	transform: rotate(-15deg);
}

.site-cta .btn-grp a {
	border: 1px solid #fff;
}

/* //contact-us**start */

.contact-wrap {
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 30px;
}

.info-cols {
	padding: 18px;
	border-radius: 10px;
	background: rgba(244, 129, 32, 0.09);
	height: 100%;
	box-shadow: 2px 2px 2px #f4812026;
}

.info-cols p {
	font-weight: 700;
	margin-bottom: 0;
}

/* //single-blog**start */

.wp-single-blog-block :is(ul, ol) {
	line-height: 2;
	color: #000000b3;
}

.wp-single-blog-block ul {
	list-style: disc;
}

.wp-single-blog-block ol {
	list-style: decimal;
}

.post-summary {
	background: #fff7ef;
	border-radius: 5px;
	box-shadow: 0px 5px 0px #ffebd8;
}

.error-page {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="525" fill="none"><path fill="red" fill-opacity=".03" fill-rule="evenodd" d="M.064 339.843c-1.767-63.858 32.172-86.668 37.489-171.323S166.317 9.882 238.565 24.801s117.801-57.44 231.873-5.29 223.393 416.473-5.184 483.693c-228.576 67.221-287.117-1.092-345.802-21.701C60.768 460.895 1.83 403.701.064 339.843" clip-rule="evenodd"/></svg>') 50%/contain no-repeat
}

.flex-single-ath-profile {
	font-size: 25px;
	font-weight: 600;
}

.flex-single-ath-profile img {
	border-radius: 6px;
}

 .list-wrap .list-col{
    border: 1px solid #ccc;
    border-radius: 6px;
}

#tableofcontent{
      background: #fff7ef;
      margin-block: 50px 30px;
      border-radius: 20px;
      width: fit-content;
      overflow: hidden;
   }

   #tableofcontent .head-th{
      background: var(--primary);
      padding: 15px 30px;
      color: var(--white);
      font-size: 18px;
      font-weight: 600;
   }

   #tableofcontent ul{
      margin-block: 0;
      list-style: none;
      padding: 30px;
   }

   :is(#tableofcontent ul li, .sources) a:hover{
      text-decoration: underline;
   }

.accordion .wp-block-create-block-bwe-addons-details{
      margin-bottom: 20px;
   }

.sources{
    background: #fff7ef;
    padding: 15px;
    border-left: 3px solid var(--primary);
}

body.single-post blockquote{
      padding: 30px;
      margin: 0;
      border: 0;
      background: var(--sc);
      border-radius: 10px;
	position:relative
   }

body.single-post blockquote:after{
      content: '';
      position: absolute;
      right: 30px;
      top: 30px;
      height: 60px;
      width: 60px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" fill="white" height="60" viewBox="0 0 40 40" xml:space="preserve"><path d="M27.758 32.244 34 19.074V7.756H21.241V19.76h4.87l-4.87 12.484zm-4.612-14.389V9.662h8.948v8.983l-5.543 11.693h-2.522l4.868-12.482h-5.751zM12.517 32.244l6.242-13.17V7.756H6V19.76h4.871L6 32.244zM7.905 17.855V9.662h8.948v8.983l-5.542 11.693H8.789l4.868-12.482H7.905z"/></svg>') no-repeat;
	opacity:.5
   }

   body.single-post blockquote :is(p, ul li, a, span, strong){
      color: var(--white);
   }

/* -------------- 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;
	}
}

.primary-bg :is(h1, p) {
    color: white;
}


/*Added By Nikhil */

.header:not(body.home .header) {
 background: #ffffff;
}

/* For table */
 .bsw-table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bsw-table {
        width: 100%;
        max-width: 100%;
        border-collapse: separate;
        border-spacing: 0 8px;
        min-width: 600px; 
    }

    .bsw-table th {
        background-color: #f58020;
        color: #ffffff;
        padding: 12px 10px;
        text-align: center;
        font-weight: bold;
        white-space: nowrap;
    }

    .bsw-table td {
        padding: 10px;
        background-color: #f7f7f7;
        color: #333;
        white-space: nowrap;
        text-align: center;
    }

    .bsw-table tr:nth-child(even) td {
        background-color: #f0f0f0;
    }

    .bsw-table thead tr {
        border: none;
    }

    .bsw-table tbody tr {
        transition: background-color 0.3s ease;
    }

    .bsw-table tbody tr:hover td {
        background-color: #eaeaea;
    }

   
    @media (max-width: 768px) {
        .bsw-table th,
        .bsw-table td {
            padding: 8px 10px;
        }
    }

/* close */
