/**
Theme Name: valasys
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valasys
Template: astra
*/
/* ---------- Author Box ---------- */
.custom-author-box {
    display: flex;
    align-items: flex-start;
    background: #f9f9f9;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    border-radius: 8px;
}
.author-avatar { margin-right: 20px; flex-shrink: 0; }
.author-avatar img { border-radius: 50%; }
.author-details h4 { margin: 0 0 8px; font-size: 18px; }
.author-details p { margin: 0; color: #555; }

/* ---------- Hero Section ---------- */
.whitepapers-hero {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    color: white;
    margin-bottom: 40px;
}
.whitepapers-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}
.whitepapers-hero h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}
.whitepapers-hero p {
    font-size: 1.4rem;
    margin-bottom: 0;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

/* ---------- Animations ---------- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Whitepaper Cards ---------- */
.whitepaper-archive-container {
    padding: 0 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.whitepaper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.whitepaper-card {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whitepaper-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.whitepaper-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.whitepaper-card-body { padding: 20px; flex-grow: 1; }
.whitepaper-card-title { font-size: 1.25rem; margin-bottom: 10px; color: #003366; }
.whitepaper-card-excerpt { font-size: 0.95rem; margin-bottom: 15px; color: #555; }
.whitepaper-card-button {
    margin-top: auto;
    display: inline-block;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.whitepaper-card-button i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.whitepaper-card:hover .whitepaper-card-button i {
    transform: translateX(3px);
}
.resource-type-label {
    position: absolute;
    top: 10px; right: 10px;
    background: #e55325;
    color: #fff;
    padding: 2px 8px;
    font-size: .60rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}

/* ---------- Filter Form ---------- */
form#whitepaper-filter-form {
    display: flex;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    align-items: baseline;
}
.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0073aa;
    border-radius: 50%;
    width: 40px; height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ---------- Custom Multi-Select ---------- */
.custom-rmultiselect {
    position: relative;
    width: 300px;
    display: inline-block;
}
.select-rbox {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}
.select-rbox:hover { border-color: #0073aa; }
.checkboxes {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.checkboxes label {
    display: block;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s;
}
.checkboxes label:hover { background: #f5f5f5; }
.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #0073aa;
}

/* ---------- Search Filter ---------- */
.filter-form-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.search-filter {
    display: flex;
    flex-grow: 1;
    max-width: 400px;
}
.search-rinput {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    margin: 0;
}
.search-rinput:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

/* ---------- Pagination ---------- */
.custom-ajax-pagination { margin: 20px; }
.custom-ajax-pagination a {
    padding: 10px;
    border: 1px solid #c4c4c4;
    margin: 5px;
}
a.pagination-link.current {
    background: #e55325;
    color: #fff;
}

/* ---------- Search Input ---------- */
input#whitepaper-search {
    padding: 8px;
    width: 100%;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .whitepaper-grid { grid-template-columns: 1fr; }
    .whitepapers-hero { padding: 70px 20px; }
    .whitepapers-hero h1 { font-size: 2.5rem; }
    .whitepapers-hero p { font-size: 1.1rem; }
    .filter-form-container { flex-direction: column; align-items: stretch; }
    .custom-rmultiselect,
    .search-filter { width: 100%; max-width: 100%; }
    .search-filter { flex-direction: column; }
    .filter-button { margin-left: 0; margin-top: 10px; width: 100%; }
}
/* from customizer additonal css */
.entry-title{
	display:block !important;
}
#primary {
    margin: 0em 0 !important;
}
#secondary{
margin: 0em 0 2.5em !important;
}

body:before {
  content: "";
  display: block;
  height: 70px;/*for sticky header adjustment*/
}
body.page-id-32380:before,
body.page-id-40888:before,
body.page-id-45367:before,
body.page-id-45463:before,
body.page-id-45463:before,
body.page-id-45359:before,
body.page-id-45691:before,
body.page-id-49679:before,
body.page-id-49822:before,
body.page-id-47133:before,
body.page-id-50650:before,
body.page-id-52138:before,
body.page-id-51661:before
{
  display: none; /* removes spacer on specific pages page */
}

/*@media (max-width: 768px) {
  body:before {
    height: 60px;
  }
}*/
/* ASTRA CSS */

/* Global Site padding */
.ast-container, .ast-container-fluid {
     padding: 0px;
}
.elementor-kit-184 h6{
	margin-bottom:15px;
}
input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    padding: 10px;
    outline: none;
    width: 230px;
    max-width: 100%;
    display: block;
    margin: 0 0 20px;
    font-size: 15px;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
}
@media (min-width: 922px) {
    .ast-separate-container.ast-two-container.ast-right-sidebar #secondary {
        padding-left: 0;
        padding-right: 0;
    }
}

/* BETHEME CSS */
/* twitter x icon*/
.elementor-repeater-item-312b670{
background-color: #000 !important;
}
/* countdown */
.elementor-26684 .elementor-element.elementor-element-15e1b08 .eael-countdown-label{
line-height: 3em !important;
}
@media (max-width: 1024px){
.elementor-26684 .elementor-element.elementor-element-15e1b08 .eael-countdown-label{
line-height: 1.2em !important;
}	
}
@media screen and (min-device-width: 1800px) and (max-device-width: 2024px) { 
	.vaicounter{
		margin-left:-50px;
	}
}
input.wpcf7-form-control.wpcf7-intl_tel.wpcf7-validates-as-required.wpcf7-intl-tel {
    width: 100% !important;
}
.intl-tel-input.allow-dropdown {
    width: 100%;
}
/* recaptcha */
.grecaptcha-badge{
bottom:80px !important;
}

/* Sales IQ */
.siqc_body .flogo{
display:none !important;
}
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    border-radius: 15px;
}

/* blog cf7*/
.intl-tel-input ul.country-list{
width:280px;
}
.intl-tel-input.allow-dropdown .conlist{
	background-color: #060A3E;
  border-radius: 5px;
	color:#fff;
}
#wpcf7-f715-o4 .iti-arrow{
	border-top: 4px solid #fff;
}
input.wpcf7-form-control.wpcf7-text {
    width: 100% !important;
}
/* cf7 submit disabled */
input[type=submit]:disabled{
opacity: unset;
}
/*Email field color*/
.form-vai input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email {
    color: #000 !important;
}
.form-vai input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required{
	 color: #000 !important;
}

/*Valasys AI LP CSS*/

.gradient-heading {
	    background: linear-gradient(94.74deg, #EE763C -10.89%, #FF3E00 93.01%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
	    font-size: 50px;
}

.elementor-element.elementor-element-addb3d2.e-con-full.e-flex.wpr-sticky-section-no.e-con.e-child {
    border-bottom: 4px solid;
    border-image-source: linear-gradient(90.62deg, rgba(248, 99, 17, 0) -62.38%, rgba(248, 99, 17, 0) 1.74%, rgba(255, 91, 0, 0.5) 51.6%, rgba(248, 99, 17, 0.04) 98.53%, rgba(248, 99, 17, 0) 112.07%);
    border-image-slice: 1;
	border-radius:30px;
}

.head-g2{
	 display: flex;
  align-items: center;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #8ef898;
    font-weight: 400;
}
label.accptCont{
	color:#9d9d9d !important;
}
/* HB forms */
.inputs-list .hs-form-booleancheckbox{
list-style: none !important;
 margin: 0 0 !important;
}
.hs-button{
background: linear-gradient(221.71deg, #F16B30 26.39%, #C03D0D 76.59%);
}
.legal-consent-container .field.hs-form-field{
    margin-left: -30px;
}
.hs-error-msgs{
	margin-left:0px !important;
	list-style: none !important;
}

/*Flipbook Magzine*/
.flipbook-main-wrapper {
    display: inline-block;
    background-image: url(/wp-content/uploads/2025/03/magzine-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
/* for dm page */
/*.pum-theme-537 .pum-container, .pum-theme-enterprise-blue .pum-container{
    background-color: transparent;
}*/



.img-gr .eael-feature-list-icon{
    box-shadow: 0px 0px 20px 2px rgba(255, 59.99999999999996, 0, 0.4) !important;
    border-radius: 10px;
    border: 0.5px solid #FF3E00;
}

/* To remove Box after clicking on any link*/
a {
    outline: none !important;
/*     box-shadow: none !important; */
}
/*End*/

/* To increase size of fonts in recent blogs sidebar*/
.rpwe-title a {
    font-size: 16px;
}
/*End*/


/* sidebar single blog page */
@media (min-width: 922px) {

#custom_html-12{
	padding-left: 10px !important;
    padding-right: 10px !important;
}
}
/* scroll to top */
#ast-scroll-top{
	margin-bottom:60px;
}