/* Header */

.top-header {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 15px 20px; 
  border-bottom: 1px solid #f1f1f1;
}
.site-branding {
  display: flex; 
  align-items: center;
}
.header-right {
  display: flex; 
  align-items: center; 
  gap: 20px;
}
.contact-link {
  display: flex; 
  align-items: center; 
  color: #d12f2f; 
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-poppins);
  padding-right: 20px;
}
.contact-link svg {
    width: 30px;
    height: 30px;
}
.main-navigation {
  background-color: #f7f8fb; 
  border-top: 1px solid #eee;
}
.main-navigation ul {
   flex-wrap: wrap;
}
.navbar-expand-lg .navbar-nav .nav-link {
   padding: 0px;	
}
.menu-container {
  display: flex; 
  justify-content: left; 
  gap: 40px; 
  padding: 12px 15px;
}
#primary-menu li a span {
  text-transform: uppercase;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}


/* Slick Banner Slider */
.banner-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 770px; /* or a fixed height */
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: #fff;
}

.slide-inner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.slide-content {
    max-width: 800px;
    margin-left: 0 auto;
    text-align: left;
}
.slide-content h1 {
  margin-bottom: 15px;
}
.slick-slide {
  display: flex !important;  /* force flex instead of block */
}
.banner-slider .slick-dots {
    bottom: 15px;
}

/* Team Members */
.team-section {
    padding: 60px 20px;
    background-color: #ecf2f6;
    text-align: center;
}
.team-heading {
    font-weight: 700;
    margin-bottom: 60px;
    color: #222;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #c82828;
}
.team-role {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #888;
}
.team-bio {
    font-size: 14px;
    color: #555;
}
.team-section .row .col-3 {
  margin-bottom: 30px;
}

/* Retail Locator */
.retail-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.retail-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.retail-map {
    flex: 1;
    position: relative;
    min-width: 300px;
}
.retail-map img {
    max-width: 100%;
    height: auto;
}
.retail-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.stat-box {
    text-align: center;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    flex: 1;
    margin: 0 5px;
}
.stat-box h3 {
    color: #000;
    font-size: 22px;
    margin-bottom: 5px;
}
.retail-info {
    flex: 1;
    min-width: 300px;
}
.retail-info h3 {
    /* font-size: 28px; */
    font-weight: 700;
    margin-bottom: 10px;
}
.retail-info p {
    margin-bottom: 20px;
    color: #444;
}
.retail-search {
    display: flex;
    margin-bottom: 20px;
}
.retail-search input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}
.retail-search button , .retail-search [type="submit"] {
    padding: 10px 20px;
    background: #f0b43c;
    color: #FFFFFF;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
    cursor: pointer;
}
.retail-search form p {
    display: flex;
}
.retail-search-form {
    display: flex;
    max-width: 100%;
    gap: 0;
}
.retail-input {
    margin-right: 10px;
    height: 60px;
    padding-left: 25px;
    background-color: #fff;
    border: 1px solid #acacac;
    border-radius: 0;
    font-size: 18px;
    color: #111;
}
.retail-input::placeholder {
    color: #888;
    font-style: italic;
}
.retail-submit {
    background-color: #c7dc2c;
    border: 1px solid #c7dc2c;
    border-radius: 0 5px 5px 0;
    padding: 12px 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
}
.retail-submit:hover {
    background-color: #b4cd24;
}
.retail-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.service-box {
    background: #f0b43c;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1 0 20%;
    min-width: 120px;
    justify-content: center;
    text-align: center;
}
.service-box img {
    width: 24px;
    height: 24px;
}

/* Accordion Section */

.ev-accordion-section {
  padding: 60px 0;
}
.custom-accordion-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 50px;
}
.accordion-left {
  width: 47%;
  padding: 20px;
  padding-right: 150px;
}
.accordion-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion-tab {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: background 0.3s;
}
.accordion-header {
  display: flex;
  align-items: flex-start;
}
.accordion-header img {
  margin-right: 10px;
}
.accordion-header h5 {
  font-size: 18px;
  font-weight: 600;
}
.accordion-right {
  width: 47%;
  position: relative;
}
.accordion-image {
  display: none;
  position: relative;
}
.accordion-image.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.accordion-image img {
  width: 100%;
  max-height: 415px;
  display: block;
  object-fit: cover;
}
.quote-btn {
  position: relative;
  text-align: center;
}

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

.accordion-panel {
  display: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}
.accordion-tab.active .accordion-panel {
  display: block;
}

/* Testimonials */

.testimonials {
  padding: 60px 0;
}
.testimonial-slider {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 50px;
}
.slick-slide {
  padding: 10px;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  padding: 20px;
  margin: 10px;
  height: 100%;
  transition: border 0.3s;
  border: 2px solid #CECECE;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.slick-center .testimonial-card {
  border: 2px solid #1c4cc1; /* Blue border on active */
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
  object-fit: cover;
}
.testimonial-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.testimonial-message {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  min-height: 60px;
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
}
.testimonial-rating .star {
  font-size: 16px;
  color: #ccc;
}
.testimonial-rating .star.filled {
  color: #c82828;
}


/* Slick Dots Styling */
.slick-dots {
  margin-top: 20px;
  text-align: center;
  bottom: -50px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
}
.slick-dots li button {
  background-color: #ECECEC;
}
.slick-dots .slick-active button {
  background: #c82828;
}

/* Contact Info */

.contact-strip {
  background-color: #b00d0d; 
  padding: 40px 0;
  width: 100%;
}
.contact-strip .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.contact-col {
  flex: 1 1 33.333%;
  max-width: 33.333%;
  padding: 10px 20px;
  box-sizing: border-box;
}
.contact-icon i {
  font-size: 28px;
  margin-bottom: 15px;
  display: inline-block;
  color: #FFFFFF;
}
.contact-col h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.contact-col p {
  font-size: 14px;
  color: #111;
  line-height: 1.6;
  color: #FFFFFF;
}

/* Footer */

.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding-top: 70px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 70px;
}
.footer-col {
  color: #ccc;
  font-size: 14px;
}
.logo-col {
  flex: 1 1 25%;  
  max-width: 25%;
}
.menu-col {
  flex: 1 1 15.5%; 
  max-width: 15.5%;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  padding-left: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-widget p {
    margin-bottom: 20px !important;
}
.footer-bottom-wrap {
  background: #111;
  padding: 15px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: #999;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .logo-col,
  .menu-col {
    max-width: 100%;
  }
}

/* Service Page */

.services {
    padding: 60px 20px;
    background-color: #ecf2f6;
    text-align: center;
}
.service-heading {
    font-weight: 700;
    margin-bottom: 60px;
    color: #222;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
    gap: 20px;
}
.service-box {
    background: #b00d0d;
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    min-height: 225px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.service-box:hover {
    transform: translateY(-5px);
}
.service-box span {
	color: #FFFFFF;
}
.service-box img {
    min-height: 70px;
    max-height: 70px;
    width: auto;
    margin-bottom: 10px;
}
.service-box h4 {
    color: #FFFFFF;
    font-weight: 600;
}

/* Single Service Page */

/* Full Width Banner */
.single-banner {
    height: 450px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.service-banner h1 {
    color: var(--white_color);
}
.service-banner h5 {
    color: var(--white_color);
}
.secondry_btn {
	background-color: #25D366 !important;
	color: #FFFFFF !important;
}
/* Location Maps */
.location-maps-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}
.location-maps-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.location-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.location-card {
  width: 100%;
  max-width: 31%;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
.location-info {
  padding: 15px;
}
.location-info p {
  margin: 5px 0;
}
/* Oil Change Section */
.maintenance-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}
.maintenance-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.maintenance-image img {
  max-width: 100%;
  width: 100%;
  border-radius: 6px;
  padding-right: 50px !important;
}
.maintenance-content {
  flex: 1;
}
.maintenance-content h3 {
  color: var(--primary_red);
  margin-bottom: 10px;
}
.maintenance-content .subheading {
  font-weight: 500;
  margin-bottom: 20px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.checklist li {
  margin-bottom: 10px;
  font-size: 15px;
}
.checklist .bullet {
  color: #00aaff;
  margin-right: 8px;
  font-weight: bold;
}
.checklist .bullet img {
  width: 30px;
  height: 30px;
}
.note {
  font-size: 12px;
  color: #777;
  margin-bottom: 15px;
}
.extra-info {
  font-size: 15px;
  margin-bottom: 20px;
}
/* Stats Section */
.stats-section {
  background: #111; /* or add your background image here */
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.stat-item {
  background-color: var(--primary_red);
  padding: 20px;
  border-radius: 8px;
  width: 345px;
  box-sizing: border-box;
}
.icon-circle {
  margin: 0 auto 10px;
}
.icon-circle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.percentage {
  font-size: 28px;
  margin: 0;
  font-weight: bold;
}
.label {
  font-size: 16px;
  margin: 5px 0 0;
}
/* Why Choose Section */
.why-choose-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.why-choose-section .section-heading {
  font-size: 32px;
  margin-bottom: 16px;
  color: #333;
}
.why-choose-section .section-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}
.choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.choose-item {
  width: 345px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}
.choose-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}
.choose-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.choose-title {
  font-size: 20px;
  margin: 8px 0;
  color: #222;
}
.choose-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
}
@media (max-width: 768px) {
  .choose-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Video Wrapper */
.youtube-video {
  padding: 60px 0;
  background-color: #ecf2f6;
}
.service-video {
    max-width: 900px;
    min-height: 450px;
    margin: 0 auto;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* USPs */
.usps-section {
    padding: 60px 0;
    background: linear-gradient(to bottom right, #ff0000b0, #ffff00);
}
.service-usps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.usp-box {
    background: #fff;
    border-left: 8px solid #FF6B00;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    text-align: center;
}
.usp-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}
.usp-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.usp-desc {
    font-size: 14px;
    color: #666;
}

/* Booking Form */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

/* FAQs */
.faq-section {
  margin: 50px 0; 
}
.faq-accordion {
    padding: 50px;
    background: #f8f9fa;
    border-radius: 25px;
    margin-top: 50px;
}
.faq-accordion .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  color: #c82828;
}
.faq-icon {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.faq-answer {
    display: none;
    padding: 10px 17px;
    color: #000;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(0deg);
}

/* About Us Page */

.about-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
.about-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,0.5); /* default fallback */
}
.about {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start; /* default for left layout */
}
.about-text {
  max-width: 600px;
}

/* Layout overrides */

.layout-left .about {
    justify-content: flex-start;
    text-align: left;
    align-items: center;
    height: 100%;
    min-height: 650px;
}
.layout-right .about {
  justify-content: flex-end;
  text-align: left;
  align-items: center;
  height: 100%;
  min-height: 650px;
}

/* Optional: if you want full width text centered */
.layout-center .about {
  justify-content: center;
  text-align: center;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .about {
    justify-content: center !important;
    text-align: center !important;
  }
}

/* News Blog Page */

.news-section {
    padding: 60px 20px;
    background-color: #ecf2f6;
    text-align: center;
}
.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: left;
}

.news-card {
  width: 31%;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s;
}
.news-card a img {
    width: 100%;
    margin-bottom: 15px;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
}
.news-footer a {
    color: #de303b;
    font-weight: 600;
}
.news-content {
  padding: 0 20px 20px;
}
.news-content p{
  margin-top: 10px;
}
#primary-menu li a:hover span {
    color: #f69435;
}
.news-card h6 a {
    color: #de303b;
}

.brands {
  padding: 60px 0;
}
.brand-slider {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 50px;
}
.brand-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ddd;
  object-fit: cover;
}

/* Single Product Page */
.single-product .content-area {
    max-width: 1296px; 
    margin: 0 auto;
    padding: 0 15px;
}
.woocommerce .woocommerce-breadcrumb {
    margin: 1em 0 1em;
    padding: 0;
}
.product .product_title {
	font-size: 32px;
	margin-bottom: 10px;
}
span.price, .woocommerce-Price-amount {
	font-size: 22px !important;
	margin-bottom: 10px;
	color: #b00d0d !important;
}
.product_meta {
	font-size: 14px;
}
.product_meta .posted_in a {
	color: #b00d0d !important;
}
.woocommerce-Tabs-panel h2 {
	font-size: 22px;
}
.woocommerce-Tabs-panel {
	font-size: 16px;
}
.single_add_to_cart_button {
	font-size: 16px;
	background-color: #b00d0d !important;
	color: #FFFFFF;
}

/* Cart Page */
.bkap_edit_bookings {
    display: inline-block;
    overflow: hidden !important;
    position: relative;
    text-align: center;
    border-radius: 2px !important;
    transition: top 0.3s;
    border: 1px solid transparent !important;
    margin-top: 30px;
    padding: 12px 30px !important;
    background-color: var(--primary_red) !important;
    color: var(--white_color) !important;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s !important;
    margin-left: 30px;
}
.bkap_edit_bookings:hover{
  opacity: .8;
}
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
    padding: 0 30px;
}
.wp-block-woocommerce-cart {
    margin-top: 30px;
}
.wc-block-cart-items__header .wc-block-cart-items__header-image,
.wc-block-cart-items__header .wc-block-cart-items__header-total {
    font-size: 20px;
}
.wc-block-cart .wc-block-cart__totals-title {
    font-size: 20px !important;
}
.wc-block-components-product-name {
    font-size: 1.15em !important;
    color: #000000 !important;
}
button.wc-block-components-checkout-place-order-button {
    background-color: #c82828 !important;
    color: var(--white_color) !important;
}
.vanya-gallery {
    padding: 80px 0;
}
.vanya-gallery h2 {
    margin-bottom: 15px;
	text-align: center;
}
.vanya-gallery p {
    font-size: 24px;
    font-family: 'Dm Sans';
    text-align: center;
    max-width: 75%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.vanya-gallery-grid {
    column-count: 3;
    column-gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.vanya-gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}
.vanya-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 1400px) { 
   .accordion-left {
      width: 47%;
      padding: 20px;
      padding-right: 0px;
   }
}
@media (max-width: 1200px) { 
   .accordion-left {
      width: 47%;
      padding: 20px;
      padding-right: 0px;
   }
   .service-box {
      min-width: 47%;
   }
}

@media (max-width: 992px) {
   .team-section .row .col-3 {
      width: 50%;
   }
   .accordion-left {
      width: 100%;
      padding: 20px;
      padding-right: 30px;
   }
   .accordion-right {
      width: 100%;
      position: relative;
   }
   .retail-flex {
      flex-direction: column;
   }
   .news-card {
     width : 47%;
   }
   .location-card {
      width: 100%;
      max-width: 47%;
   }
   .vanya-gallery-grid {
      column-count: 2;
    }
}

@media (max-width: 768px) {
   .team-section .row .col-3 {
      width: 50%;
   }
   .accordion-left {
      width: 100%;
      padding: 20px;
      padding-right: 30px;
   }
   .accordion-right {
      width: 100%;
      position: relative;
   }
   .retail-stats {
      flex-direction: column;
      gap: 15px;
   }
   .news-card {
     width : 100%;
   }
   .vanya-gallery-grid {
     column-count: 1;
   }
}

@media (max-width: 576px) {
   .team-section .row .col-3 {
      width: 100%;
   }
   .accordion-left {
      width: 100%;
      padding: 20px;
      padding-right: 30px;
   }
   .accordion-right {
      width: 100%;
      position: relative;
   }
   .contact-col {
      flex: 1 1 100%;
      max-width: 100%;
   }
   .news-card {
     width : 100%;
   }
   .vanya-gallery-grid {
     column-count: 1;
   }
}