/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 18 2025 | 23:45:54 */
:root {  
    --e-global-color-primary-rgb: 255, 244, 81; /* RGB equivalent of #fff451 */
}
@font-face {
    font-family: "Allumi-300";
    src: url(https://sdverse.auto/wp-content/uploads/2025/01/fonnts.com-Allumi_Std_Light.otf);
    font-weight: 300;
}
a.back-button {
    position: absolute;
    top: -10%;
    left: -2%;
}
.logo-carousel .swiper-button-prev, .logo-carousel .swiper-button-next {
    display: none;
}
.carousel-style10 .elementor-image-carousel-wrapper:after {
     content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    bottom: 0;
    right: 0;
    border-width: 0 0 93px 48px;
    border-color: transparent transparent #151515 var(--e-global-color-primary);
}
.carousel-style10 .elementor-image-carousel-wrapper,.carousel-style11 .elementor-image-carousel-wrapper,.carousel-style12 .elementor-image-carousel-wrapper {
    position:relative !important;
	 background: var(--e-global-color-primary);
}

.carousel-style11 .elementor-image-carousel-wrapper:after {
     content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    bottom: 0;
    right: 0;
    border-width: 0 0 165px 88px;
    border-color: transparent transparent #151515 var(--e-global-color-primary);
}


.carousel-style12 .elementor-image-carousel-wrapper:after {
     content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    bottom: 0;
    right: 0;
    border-width: 0 0 270px 123px;
    border-color: transparent transparent #151515 var(--e-global-color-primary);
}



.carousel-style9 .elementor-image-carousel {
    background: var(--e-global-color-primary);
    padding:10px;
}

.carousel-style9 .elementor-image-carousel:after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;bottom: 0;
    right: 0;
    border-width: 0 0 300px 300px;
    border-color: transparent transparent #151515 var(--e-global-color-primary);
}

.swiper-backface-hidden .swiper-slide {
 margin-right: 22px ! IMPORTANT;
}
.contact-section a {
    color: #fff;
}
.contact-section a:hover {
    color: var(--e-global-color-primary);
}
.single-post-thumbnail p.post-date {
   color: var(--e-global-color-primary);
    margin-bottom: 25px;
}
.we-offer .xpro-box-icon-wrapper-inner {
       transform: skew(5deg) translate3d(0, 0, 0);
}




/*Single post start*/
.type-post .elementor-section a {
     color: var(--e-global-color-primary);
}

main#content.type-post {
    padding: 60px 0;
	background: #000;
    color: #fff;
}
.single-post-thumbnail img {
    border-radius: 10px;
}
.type-post h1.entry-title {
    font-size: 35px;
}
/*Single post ends*/

/* News template start */
/* Container for each blog item */
.custom-blog-item {
    display: flex;
    background: #1A1A1A;
    padding: 15px;
    text-align: left;
    border-radius: 10px;
    margin-bottom: 20px;
    height: auto;
    flex-wrap: wrap; /* Allow the items to wrap when needed */
}

/* Image on the left side */
.custom-blog-image {
    flex: 0 0 40%; /* 40% width for the image */
    max-width: 180px; /* Limit the image width */
    margin-right: 20px; /* Space between image and text */
	height:111px;
}

.custom-blog-item img {
    width: 100%; /* Ensure image takes the full width of its container */
    height: 111px;
    border-radius: 8px;
    object-fit: cover; /* Ensures the image is cropped correctly */
}

/* Text content on the right side */
.custom-blog-text {
    flex: 1; /* Takes the remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Title */
.custom-blog-item h3 {
    font-size: 18px;
    margin: 10px 0;
	text-align:left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical; /* Required for the line clamp */
    line-height: 1.3;
	margin-top:0;
    max-height: 2.6em; /* 2 lines * line-height */
}
.custom-blog-item .read-more a:hover {
    background-color: transparent !important;
    color: var(--e-global-color-primary);
}
.custom-blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 20px 0;
}
.custom-blog-pagination span.page-numbers.current {
    background: var(--e-global-color-primary);
    color: #000;
    padding: 0px 9px;
    padding-bottom: 3px;
    border-radius: 3px;
	margin-top: 3px;
}
.custom-blog-pagination, .custom-blog-pagination a {
    color: #fff;   
}
.custom-blog-pagination a:hover{
	color: var(--e-global-color-primary);
}
.custom-blog-item .read-more a:hover {
    text-decoration: underline;
}
.custom-blog-item h3:hover {
	color:var(--e-global-color-primary);
}
/* Description (Excerpt) */
.custom-blog-item .custom-blog-desc {
        color: rgb(255 255 255 / 60%);
    font-size: 13px;
    margin-bottom: 15px;
	text-align:left;
}

/* "Read More" button styling */
.custom-blog-item .read-more {
    margin-top: auto; /* Push the "Read More" button to the bottom */
	text-align:right;
}

.custom-blog-item .read-more a {
    color: var(--e-global-color-primary);
    font-family: "Allumi Std", Sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
}

/* Media query for responsive design (2-column layout on larger screens, 1-column on smaller screens) */
@media (max-width: 768px) {
    .custom-blog-item {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center-align items */
    }

    .custom-blog-image {
        flex: 0 0 100%; /* Make the image take full width */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 15px; /* Add space between image and text */
		width:100%;
    }

    .custom-blog-text {
        flex: 1; /* Ensure the text section still takes remaining space */
        text-align: center; /* Center-align text content */
    }
}

@media (min-width: 769px) {
    .custom-blog-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr); /* 2-column grid on larger screens */
        gap: 20px;
    }
}
/*News template end*/





.privacy-content a {
    color: #fff451;
}
.members-connected{
    position: relative;
    width: 100%;
    height: 100%px;
   
}

    .members-connected::before,
    .members-connected::after {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
    }

    .members-connected::before {
      top: 0;
      left: 0;
      border-width: 100px 100px 0 0; /* Adjust size of the triangle */
      border-color: #000 transparent transparent transparent; /* Top-left triangle color */
    }

  .members-connected::after {
    bottom: 0;
    right: 0;
    border-width: 0 0 300px 300px;
    border-color: transparent transparent #000 transparent;
}


/*subscribe popup start*/

/* If you want to add a closing animation */
.sgpb-popup-dialog-main-div-wrapper.custom-popup-close {
  opacity: 0; /* Fade out */
  transform: translateY(100%); /* Slide down out of view */
}
.sgpb-theme-5-content {
    border-bottom: 0 !important;
	padding:30px !important;
	border-radius: 0 !important;
    border: 0 !important;
}
.sgpb-popup-dialog-main-div-theme-wrapper-5 {
    margin: 0;
    border: 0;
    box-shadow: 0;
    right: 0;
}
.sgpb-popup-dialog-main-div-theme-wrapper-5 {
    right: 0 !important;
	top: 0 !important;
	left: unset !important;
	transition: transform 1s ease-in-out;
}
.sgpb-popup-close-button-5 {
    bottom: unset;
    top: 10px;
}
/* For WebKit Browsers (Chrome, Edge, Safari) */
.sgpb-popup-dialog-main-div::-webkit-scrollbar {
    width: 5px; /* Scrollbar width */
    height: 5px; /* Horizontal scrollbar height */
}
.sgpb-popup-dialog-main-div h2.wp-block-heading {
    font-family: 'Allumi 700';
    font-size: 26px;
    margin-bottom: 25px;
}
/*subscribe popup ends*/

/*testimonial start*/
 .swiper-style1 .testimonial-right{
	position:relative;
}
  /* Swiper navigation buttons */
    .swiper-style1 .swiper-button-next,
    .swiper-style1 .swiper-button-prev {
      position: absolute;
      bottom: 15px; /* Adjust distance from bottom */
/*       transform: translateY(80%) !important; */
      z-index: 10;
/* 		top:90% !important; */
    }


.swiper-style1 .testimonial-content .testimonial-left
{
    flex: 0 0 60%; /* First div takes 60% of the width */
}

 .swiper-style1 .swiper-button-next:after,  .swiper-style1 .swiper-button-prev:after { 
    color: #000;
    font-size: 16px !important;
    font-weight: 700;
}
 .swiper-style1 .swiper-button-prev,  .swiper-style1 .swiper-button-next {
    background-image: none !important;
	width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

 .swiper-style1 .testimonial-content {
    display: flex;
    align-items: center;
	gap: 32px;
	 max-width: 90%;
    margin: 0 auto;
}
 .swiper-style1 .testimonial-content > div {
    flex: 1;
}
 .swiper-style1 .testimonialmeta {
     display: flex;
    background: var(--e-global-color-primary);
    padding: 20px;
    position: absolute;
    bottom:0;
    width: 100%;
	align-items: start;
	    flex-direction: column;
    gap: 10px;
}

 .swiper-style1 .testimonialmeta > div {
    flex: 1;
}

 .swiper-style1 .testimonial-name {
    font-family: Allumi Std;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 11px;
}

 .swiper-style1 .testimonial-designation {
    font-family: Allumi Std;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

 .swiper-style1 .testimonial-text {
    font-family: Allumi Std;
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
}
/*testimonial ends*/

/*FAQ*/
.copyrightSec .elementor-container {
    border-top: 1px solid;
}
.textYellow,.textYellow:hover {
    color: var(--e-global-color-primary);
}
.secFaq .elementor-tab-title {
    background: transparent !important;   
}
.secFaq .eael-accordion-content {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.secFaq span.eael-advanced-accordion-icon-closed,.secFaq .eael-advanced-accordion-icon-opened {
     position: absolute;
    right: 0;
    padding: 30px;
    background:  var(--e-global-color-primary);;
    color: #000;
    margin: 0 !important;
	height: 82px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
	    width: 86px;
}
.secFaq span.eael-advanced-accordion-icon-closed svg,.secFaq .eael-advanced-accordion-icon-opened svg{
 top: 50%;
    transform: translateY(-50%);
    word-wrap: break-word;
    position: absolute;
    left: 25%;	
}
   
.secFaq .eael-advanced-accordion-icon-opened {  
    background: var(--e-global-color-primary);
    color: #000;   
	border: 2px solid var(--e-global-color-primary);
}

.secFaq span.eael-advanced-accordion-icon-closed{
	background: rgba(var(--e-global-color-primary-rgb), 0.6);
	border:2px solid rgb(158 151 53);
}

.secFaq span.eael-accordion-tab-title {  
    display: flex;
    align-items: center;
    word-wrap: break-word;
    white-space: normal;
    height: 80px;
    padding: 10px 40px;
    position: relative;
}

.xpro-contact-form input:focus-visible {
    outline: 0 !important;
}
.xpro-contact-form-field-option label {
    margin-top: -5px;
}
.myBreadcrumbs .breadcrumb a {
    color: rgb(255, 255, 255, 0.6);
	    text-decoration: none;
}
.myBreadcrumbs .elementor-shortcode {
   color: #fff;
    background: rgb(0, 0, 0, 0.4);
    margin: 0 auto;
    text-align: center;
    max-width: 25%;
    width: 100%;
    padding: 10px 10px 14px 10px;
    border: 1px solid #D9D9D933;
    font-family: 'Allumi Std';
	font-size:13px;
}
.n2-ss-layer h2,.n2-ss-item-content p {
    font-family: "Allumi Std", sans-serif !important;
    font-weight: 400 !important;
    margin-bottom: 18px !important;
}

.playBtn {
    float: left;
    width: 45% !important;
}
.playBtn2 span.xpro-button-text {
    margin-top: -5px;
}

.breadcrumb {
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.experties .xpro-counter-wrapper-inner{
	position:relative;
}
.experties .elementor-column:not(:last-child):after {
    content: "";
    background: #d9d9d9;
    width: 1px;
    height: 55%;
    position: absolute;
    right: 0;
    top: 24%;
    vertical-align: middle;
}
.footerMain .latest-post .featured-image {
   flex: 0 0 48px;
}
.footerMain .latest-post h3 {
    margin-top: -6px !important;
}
.view_btn .textYellow:hover {
    text-decoration: underline;
}
.game-changing p{
	font-family:"Allumi-300" !important;
	font-weight:300;
}
@media (min-width: 1440px) {
    .HomeBanner {
        height: auto !important;
    }
}

 @media (max-width: 768px) {
	 .secFaq span.eael-advanced-accordion-icon-closed,.secFaq .eael-advanced-accordion-icon-opened {
	    width: 40px;
}
        .testimonial-content {
            flex-direction: column; /* Stack items vertically */
        }
        .testimonial-content > div {
            flex: none;
            width: 100%; 
        }
	 .testimonial-text {  
		font-size: 16px;   
		line-height: 22px;   
      }
	  .testimonialmeta {
        position: relative;
        top: auto; 
        padding: 20px; 
        overflow: visible; 
    }
	  .swiper-style1 .swiper-button-next,  .swiper-style1 .swiper-button-prev{
		 position:relative !important;
		 margin-top: 0 !important;
	 }
	 .swiper-style1 .swiper-button-prev {    
    transform: translate(-30px, -46%) !important;
}
	 .profile-image img {
    max-height: 250px;
    object-fit: contain;
}
	 .experties .elementor-column:not(:last-child):after{
		 background:none;
	 }
	 .mobileRowReverse .elementor-container {
    flex-direction: column-reverse;
}
	 .type-post h1.entry-title {
    font-size: 35px;
}
    }

 @media (max-width: 575px) {
.myBreadcrumbs .elementor-shortcode {
    max-width: 100%;
    width: 100%;    
}
.playBtn {   
    width: 100% !important;
}
}