/*
Theme Name: Devute WP Pro Theme
Theme URI: https://www.devute.com
Description: Custom WordPress theme for Devute UK LTD
Author: Devute UK LTD
Author URI: https://devute.com
Template: hello-elementor
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: din-solicitors
Tags: law, solicitors, elementor, responsive, mega-menu
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");
 
 /* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* Color Variables */
:root {
  /* Primary Colors */
  --color-primary: #d40600;
  --color-primary-dark: #700400;
  --color-primary-light: #ff443d;
  
  /* Complementary Colors */
  --color-complementary: #00cfd6;
  --color-complementary-dark: #008b90;
  --color-complementary-light: #4afaff;
  
  /* Neutral Colors */
  --color-neutral-50: #fafafa;
  --color-neutral-100: #f2f2f2;
  --color-neutral-200: #e5e5e5;
  --color-neutral-300: #d4d4d4;
  --color-neutral-400: #a3a3a3;
  --color-neutral-500: #737373;
  --color-neutral-600: #525252;
  --color-neutral-700: #404040;
  --color-neutral-800: #262626;
  --color-neutral-900: #171717;
  
  /* Text Colors */
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-on-primary: #ffffff;
  --color-text-on-complementary: #ffffff;
  
  /* Status Colors */
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #d40600;
  --color-info: #00cfd6;
  
  /* Font Families */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  
  /* Spacing */
  --spacing-xs: 0.25rem;  /* 4px */
  --spacing-sm: 0.5rem;   /* 8px */
  --spacing-md: 1rem;     /* 16px */
  --spacing-lg: 1.5rem;   /* 24px */
  --spacing-xl: 2rem;     /* 32px */
  --spacing-2xl: 3rem;    /* 48px */
  --spacing-3xl: 4rem;    /* 64px */
  
  /* Border Radius */
  --border-radius-sm: 2px;
  --border-radius-md: 4px;
  --border-radius-lg: 8px;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-base: 0.3s ease;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 1024px;
}

.container-xl {
  max-width: 1280px;
}

.container-fluid {
  max-width: 100%;
}

/* Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1 0 0%;
  padding: 0 1rem;
}

/* Common columns */
.col-1 { width: 8.333333%; }
.col-2 { width: 16.666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333333%; }
.col-5 { width: 41.666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333333%; }
.col-8 { width: 66.666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

/* Typography */
body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
}

h1, h2, h3, h4, h5, h6,
.heading {
  font-family: var(--font-heading);
  margin-bottom: 0.5em;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-complementary {
  background-color: var(--color-complementary);
  color: var(--color-text-on-complementary);
}

.btn-complementary:hover {
  background-color: var(--color-complementary-dark);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-lg);
}

/* Navigation */
.nav-item {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-complementary { color: var(--color-complementary); }
.text-light { color: var(--color-text-on-primary); }
.text-dark { color: var(--color-text-primary); }

.bg-primary { background-color: var(--color-primary); }
.bg-complementary { background-color: var(--color-complementary); }
.bg-light { background-color: var(--color-neutral-100); }
.bg-dark { background-color: var(--color-neutral-900); }

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.font-light { font-weight: var(--font-weight-light); }
.font-regular { font-weight: var(--font-weight-regular); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

/* Spacing utilities */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mr-0 { margin-right: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }

.m-xs { margin: var(--spacing-xs); }
.mt-xs { margin-top: var(--spacing-xs); }
.mr-xs { margin-right: var(--spacing-xs); }
.mb-xs { margin-bottom: var(--spacing-xs); }
.ml-xs { margin-left: var(--spacing-xs); }

.m-sm { margin: var(--spacing-sm); }
.mt-sm { margin-top: var(--spacing-sm); }
.mr-sm { margin-right: var(--spacing-sm); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.ml-sm { margin-left: var(--spacing-sm); }

.m-md { margin: var(--spacing-md); }
.mt-md { margin-top: var(--spacing-md); }
.mr-md { margin-right: var(--spacing-md); }
.mb-md { margin-bottom: var(--spacing-md); }
.ml-md { margin-left: var(--spacing-md); }

.m-lg { margin: var(--spacing-lg); }
.mt-lg { margin-top: var(--spacing-lg); }
.mr-lg { margin-right: var(--spacing-lg); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.ml-lg { margin-left: var(--spacing-lg); }

.m-xl { margin: var(--spacing-xl); }
.mt-xl { margin-top: var(--spacing-xl); }
.mr-xl { margin-right: var(--spacing-xl); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.ml-xl { margin-left: var(--spacing-xl); }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pr-0 { padding-right: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }

.p-xs { padding: var(--spacing-xs); }
.pt-xs { padding-top: var(--spacing-xs); }
.pr-xs { padding-right: var(--spacing-xs); }
.pb-xs { padding-bottom: var(--spacing-xs); }
.pl-xs { padding-left: var(--spacing-xs); }

.p-sm { padding: var(--spacing-sm); }
.pt-sm { padding-top: var(--spacing-sm); }
.pr-sm { padding-right: var(--spacing-sm); }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pl-sm { padding-left: var(--spacing-sm); }

.p-md { padding: var(--spacing-md); }
.pt-md { padding-top: var(--spacing-md); }
.pr-md { padding-right: var(--spacing-md); }
.pb-md { padding-bottom: var(--spacing-md); }
.pl-md { padding-left: var(--spacing-md); }

.p-lg { padding: var(--spacing-lg); }
.pt-lg { padding-top: var(--spacing-lg); }
.pr-lg { padding-right: var(--spacing-lg); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pl-lg { padding-left: var(--spacing-lg); }

.p-xl { padding: var(--spacing-xl); }
.pt-xl { padding-top: var(--spacing-xl); }
.pr-xl { padding-right: var(--spacing-xl); }
.pb-xl { padding-bottom: var(--spacing-xl); }
.pl-xl { padding-left: var(--spacing-xl); }

/* Display utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1; }

/* Width & Height utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }

/* Media queries */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  h1 { font-size: calc(var(--font-size-4xl) * 0.85); }
  h2 { font-size: calc(var(--font-size-3xl) * 0.85); }
  h3 { font-size: calc(var(--font-size-2xl) * 0.85); }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
  }
}
body {
  overflow-x: hidden;
}







/* Responsive typography */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    h5, h6 {
        font-size: 1rem;
    }
}
/* Your custom styles will go here */
/* slider padding */
div#n2-ss-3 .n-uc-OVzBlcYnf3Wc {
    padding: 0 !important;
}
a {
	text-decoration: none !important;
}
/* Home Custom CSS */
.din-home-blog .uael-post__authorbox-wrapper {
    display: none !important;
}

#ast-scroll-top {
    background-color:  var(--color-primary);
    font-size: 15px;
    border: 1px solid #ffffff;
}

.header-custom-class  li.elementor-icon-list-item.elementor-inline-item a {
    text-decoration: none !important;
}
.uael-post__title a {
    text-decoration: none !important;
}

.devute-color {
    background: linear-gradient(89.9deg,#8e54e9 2.01%,#3867d8 98.89%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/

.envato-block__preview{overflow: visible;}

/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */

.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{
	text-align: center;
}
.envato-kit-141-top-0 h1,
.envato-kit-141-top-0 h2,
.envato-kit-141-top-0 h3,
.envato-kit-141-top-0 h4,
.envato-kit-141-top-0 h5,
.envato-kit-141-top-0 h6,
.envato-kit-141-top-0 p {
	margin-top: 0;
}

.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.envato-kit-141-bottom-0 p {
	margin-bottom: 0;
}

.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
	margin-bottom: .5rem;
}

.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {
	padding-bottom: 52px;
}

.envato-kit-141-display-inline {
	display: inline-block;
}

.envato-kit-141 .elementor-slick-slider ul.slick-dots {
	bottom: -40px;
}

/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/

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



.forminator-ui#forminator-module-8776.forminator-design--default .forminator-error-message {
    background-color: #ffffff;
    color: var(--color-primary) !important;
}
  


/* Menu CSS */

.main-nav {
  background: #fff;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  border-top: 1px solid #8b1a1a14;
}

  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    
  }

  .nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0px 0px;
    justify-content: space-around;
}

  .nav-item {
    position: static;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 25px 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-link:hover,
  .nav-item:hover .nav-link {
    color: var(--color-primary);
  }

  .mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    z-index: 100;
    border-top: 1px solid #f0f0f0;
  }

  .nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 40px;
  }

  .vertical-menu {
    width: 300px;
    border-right: 1px solid #eee;
    padding-right: 20px;
  }

  .vertical-menu-item {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    border-radius: 6px;
    margin-bottom: 5px;
    font-weight: 500;
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
    z-index: 1;
  }

  .vertical-menu-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: all 0.25s ease;
    z-index: -1;
  }

  .vertical-menu-item:hover:before,
  .vertical-menu-item.active:before {
    left: 0;
  }

  .vertical-menu-item:hover,
  .vertical-menu-item.active {
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(139, 26, 26, 0.15);
  }

  .vertical-menu-item:after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.25s ease;
    color: #fff;
  }

  .vertical-menu-item:hover:after,
  .vertical-menu-item.active:after {
    right: 20px;
    opacity: 1;
  }

  .vertical-menu-item:hover,
  .vertical-menu-item.active {
    padding-right: 40px;
  }

  .services-wrapper {
    flex: 1;
    display: none;
  }

  .services-wrapper.active {
    display: block;
  }

  .services-wrapper.active .services-grid {
    animation: slideUp 0.4s ease-out;
  }

  .services-wrapper.active .service-item {
    animation: fadeInScale 0.3s ease-out forwards;
    opacity: 0;
    transform: scale(0.95);
  }

  .services-wrapper.active .service-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .services-wrapper.active .service-item:nth-child(2) {
    animation-delay: 0.15s;
  }
  .services-wrapper.active .service-item:nth-child(3) {
    animation-delay: 0.2s;
  }
  .services-wrapper.active .service-item:nth-child(4) {
    animation-delay: 0.25s;
  }
  .services-wrapper.active .service-item:nth-child(5) {
    animation-delay: 0.3s;
  }
  .services-wrapper.active .service-item:nth-child(6) {
    animation-delay: 0.35s;
  }

  .services-wrapper.active .category-title {
    animation: slideRight 0.4s ease-out;
  }

  .services-wrapper.active .category-description {
    animation: slideRight 0.4s ease-out 0.1s forwards;
    opacity: 0;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    position: relative;
  }

  .service-item {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
  }

  .service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
  }

  .service-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
    position: relative;
    padding-right: 20px;
  }

  .service-link:after {
    content: "→";
    position: absolute;
    right: 0;
    opacity: 0;
    transition: all 0.2s ease;
  }

  .service-item:hover .service-link:after {
    opacity: 1;
    right: -5px;
  }

  .category-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
  }

.category-description-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

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

  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes slideRight {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media (max-width: 1024px) {
    .nav-list {
      display: none;
    }
    .mobile-menu-btn {
      display: block;
    }
  }

/*end menu css*/




/* wp menu CSS code */
.actual-meni-container {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
     
  }
  
  .actual-service-ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* Target the menu items */
  .actual-service-ul .menu-item {
    width: 100%;
    background-color: white;
    padding: 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
  }
  
  .actual-service-ul .menu-item:hover {
    transform: translateX(0.25rem);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  /* Style the links */
  .actual-service-ul .menu-item a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
  }
  
  .actual-service-ul .menu-item a:hover {
    color: var(--color-primary);
  }
  
  /* 3column menu mega menu*/
  .second-actual-service-ul {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .category-title a {
      color: 8b1a1a !important;
  }
span.right-arrow {
  top: 1px;
  display: inline-block;
  position: relative;
}

.category-title a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.right-arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.category-title a:hover .right-arrow {
  transform: translateX(5px);
}

/* Optional: add hover color change for the entire link */
.category-title a:hover {
  color: var(--color-primary);
}

.mega-menu-botton-area {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  border-top: 1px dotted #d3c6c7;
  padding: 30px 27px;
}

.category-main-page a {
  border: 1px solid var(--color-primary);
  padding: 9px 27px;
  color:  var(--color-primary);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  background-color: transparent;
  z-index: 1;
}

.category-main-page a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color:   var(--color-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.category-main-page a:hover {
  color: #ffffff;
}

.category-main-page a:hover::before {
  left: 0;
}

.category-main-page a .right-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.category-main-page a:hover .right-arrow {
  transform: translateX(5px);
}




.mega-menu {
  border-bottom: 3px solid #9a0e1a;
}


@keyframes pulse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

.right-arrow {
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}


.category-main-page a .right-arrow {
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}

/* When hovering the link, we can make the pulse more pronounced */
.category-main-page a:hover .right-arrow {
  animation: pulse 1.2s ease-in-out infinite;
}
.home-icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);  /* Your brand color */
}

/* Optional: Add hover effect for the home icon */
.nav-link:hover .home-icon {
  color: var(--color-primary)  /* Darker shade for hover */
}


  /* Responsive styles */
  @media (max-width: 768px) {
    .actual-service-ul {
      grid-template-columns: 1fr;
    }
  }
  .home-icon-nav {
    width: 20px;
    height: 20px;
    color: var(--color-primary);  /* Your brand color */
    margin-top: 25px;
  }
  .home-icon-nav:hover {
    color: var(--color-primary);  /* Darker shade for hover */
  }


/* more button */
.more-menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

/* Hamburger Icon */
.hamburger-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
  margin-left: 4px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}
.din-card-image {
  overflow: hidden;
}
/* Optional: case study single page */
 /* Case Study Single Page Styles */
.single-case_study .content-area {
  padding: var(--spacing-3xl) 0;
}

.single-case_study .site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.single-case_study article {
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.single-case_study .entry-header {
  padding: var(--spacing-xl) var(--spacing-xl) 0;
}

.single-case_study .entry-title {
  color: var(--color-primary);
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-md);
}

.single-case_study .entry-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  bottom: 0;
  left: 0;
}

.single-case_study .entry-thumbnail {
  margin-top: var(--spacing-xl);
  overflow: hidden;
}

.single-case_study .entry-thumbnail img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.single-case_study .entry-thumbnail img:hover {
  transform: scale(1.02);
}

.single-case_study .entry-content {
  padding: var(--spacing-xl);
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.single-case_study .entry-content h2 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin: var(--spacing-xl) 0 var(--spacing-md);
}

.single-case_study .entry-content h3 {
  color: var(--color-text-primary);
  font-size: var(--font-size-xl);
  margin: var(--spacing-lg) 0 var(--spacing-md);
}

.single-case_study .entry-content p {
  margin-bottom: var(--spacing-md);
}

.single-case_study .entry-content ul, 
.single-case_study .entry-content ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-xl);
}

.single-case_study .entry-content li {
  margin-bottom: var(--spacing-sm);
}

.single-case_study .entry-content img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin: var(--spacing-lg) 0;
}

.single-case_study .entry-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: var(--spacing-md) var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  background-color: var(--color-neutral-50);
  font-style: italic;
}

/* Media query for responsive design */
@media (max-width: 768px) {
  .single-case_study .entry-header,
  .single-case_study .entry-content {
    padding: var(--spacing-lg);
  }
  
  .single-case_study .entry-title {
    font-size: var(--font-size-3xl);
  }
  
  .single-case_study .entry-content h2 {
    font-size: var(--font-size-xl);
  }
  
  .single-case_study .entry-content h3 {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 576px) {
  .single-case_study .entry-header,
  .single-case_study .entry-content {
    padding: var(--spacing-md);
  }
  
  .single-case_study .entry-title {
    font-size: var(--font-size-2xl);
  }
}


 
  /* mobile menu */

  










/* end wp menu css code */
.more-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

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

/* More Vertical Menu */
.more-vertical-menu {
  position: fixed;
  top: 0;
  right: -500px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 999; 
}

.more-vertical-menu.active {
  right: 0;
}

/* Menu Header */
.more-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}

.more-menu-header h3 {
  font-size: 20px;
  margin: 0;
  color: #333;
}

.more-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-primary);
  cursor: pointer;
  padding: 5px;
}

/* Menu Content */
.more-menu-content {
  padding: 20px;
}

.more-menu-section {
  margin-bottom: 30px;
}

.more-menu-section h4 {
  color: var(--color-primary);
  font-size: 18px;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.more-menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.more-menu-section li {
  margin-bottom: 10px;
}

.more-menu-section a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.more-menu-section a:hover {
  background: #f8f8f8;
  transform: translateX(5px);
}

/* More Menu Toggle Button */
.more-menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
   font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 480px) {
  .more-vertical-menu {
      max-width: 100%;
  }
}
button.more-menu-close {
  padding: 0px 11px;
}
button.more-menu-close:hover {
  background: var(--color-primary);
}

/* Animated Button */
.animated-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  border-radius: var(--border-radius-md);
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 6, 0, 0.2);
}

.animated-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-primary-dark);
  z-index: -1;
  transition: width 0.3s ease;
}

.animated-btn:hover {
  color: var(--color-text-on-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 6, 0, 0.3);
}

.animated-btn:hover::before {
  width: 100%;
}

.animated-btn i {
  transition: transform 0.3s ease;
}

.animated-btn:hover i {
  transform: translateX(5px);
}

.animated-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(212, 6, 0, 0.2);
}

/* Outlined Variant */
.animated-btn.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
}

.animated-btn.btn-outline:hover {
  color: var(--color-text-on-primary);
}

/* Large Variant */
.animated-btn.btn-lg {
  padding: 14px 32px;
  font-size: var(--font-size-lg);
}

/* Small Variant */
.animated-btn.btn-sm {
  padding: 8px 20px;
  font-size: var(--font-size-sm);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .animated-btn {
      padding: 10px 24px;
  }
  
  .animated-btn.btn-lg {
      padding: 12px 28px;
  }
}


.actual-service-ul li:last-child, .custom-dropdown-menu li:last-child {
  display: none;
}
/* 
-------
-------
Final Mobile Menu 
----*/
.din-header-top {
  background: var(--color-primary);
  color: white;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--roboto);
}

.din-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 15px;
}

.din-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.din-location, .din-phone-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--poppins);
}

.din-header-main {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: var(--roboto);
}

.din-logo img {
  max-height: 50px;
  width: auto;
}

.din-menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  display: none;
}

@media (max-width: 768px) {
  .din-location span {
      display: none;
  }
  
  .din-menu-toggle {
      display: block;
  }
}



/* Mobile Menu */
.mobile-menu-trigger {
  z-index: 1000;
  background: 
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mobile-menu-trigger:hover {
  background: #721515;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: white;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 1001;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  right: 0;
}

.menu-header {
   display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s;
}

 

.mobile-menu .sub-menu {
  background: #f8f8f8;
  display: none;
  transform: translateX(30px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu .sub-menu.active {
  display: block;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu .sub-menu a {
  padding-left: 40px;
}

.mobile-menu .sub-menu .sub-menu a {
  padding-left: 60px;
}

.menu-item-has-children > a::after {
  content: '+';
  float: right;
  transition: transform 0.3s ease;
}

.menu-item-has-children.active > a::after {
  transform: rotate(45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

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

@media (max-width: 1023px) {
  .mobile-menu-trigger {
      display: block;
  }
}

/* Animation for menu items */
.mobile-menu ul > li {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  transition-delay: calc(var(--delay) * 0.1s);
}

.mobile-menu.active ul > li {
  opacity: 1;
  transform: translateX(0);
}



.mobile-top-container {
  padding: 10px 15px;
  background: var(--color-primary);
}

.mobile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.column a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.column i {
  margin-right: 5px;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}



.din-desktop-header {
  display: block;
}
.din-mobile-menu-container  {
  display: none;
}

.sidebar-logo img {
  width: 65%;
  padding-top: 10px;
  padding-bottom: 7px;
}
button.close-menu {
  background: var(--color-primary);
  margin-right: 15px;
  padding: 2px 14px;
}

.mobile-home-icon {
    width: 14px;
    height: 14;
    margin-right: 7px;
    position: relative;
    top: 1px;
}

.single-page-locator-on-mobile-menu a {
  background: var(--color-primary);
  color: white;
}
#mobile-primary-menu li:last-child {
  background:  var(--color-primary);
}
#mobile-primary-menu li:last-child a {
  color: white;
}
/* .actual-service-ul li:last-child {
  display: none ;
} */



/* mobile sidebar bottom contents */
/* Sidebar Bottom Content Area Styles */
.menu-sidebar-bottom-content-area {
  padding: 20px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Individual Content Sections */
.menu-sidebar-bottom-content-area .din-sidebar-menu-content {
  margin-bottom: 15px;
}

/* Call to Action Buttons */
.menu-sidebar-bottom-content-area .din-sidebar-menu-content:first-child {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content:first-child a {
  flex: 1;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content:first-child a:first-child {
  background-color: var(--color-primary);
  color: white;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content:first-child a:last-child {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content:first-child a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Location and Phone Styles */
.menu-sidebar-bottom-content-area .din-sidebar-menu-content:nth-child(2),
.menu-sidebar-bottom-content-area .din-sidebar-menu-content:nth-child(3) {
  padding: 12px 0;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content:nth-child(2) a,
.menu-sidebar-bottom-content-area .din-sidebar-menu-content:nth-child(3) {
  text-decoration: none;
  color: #333;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content i {
  margin-right: 8px;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

/* Social Media Icons */
.menu-sidebar-bottom-content-area .din-sidebar-menu-content ul {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content ul li {
  margin: 0;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--color-primary);
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content ul li a i {
  font-size: 16px;
  color: white;
  margin: 0;
  line-height: 1;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content ul li a:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* About Section */
.menu-sidebar-bottom-content-area .din-sidebar-menu-content:last-child {
  padding-top: 20px;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.menu-sidebar-bottom-content-area .din-sidebar-menu-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-sidebar-bottom-content-area {
      padding: 15px;
  }
  
  .menu-sidebar-bottom-content-area .din-sidebar-menu-content:first-child {
      flex-direction: column;
  }
  
  .menu-sidebar-bottom-content-area .din-sidebar-menu-content ul {
      justify-content: center;
  }
}
 
header#site-header {
  display: none !important;
}
/* header top mobile fixing */



 
/* Top Bar Styles */
.top-bar {
    background-color: var(--color-primary);
    padding: 12px 0;
    color: white;
}

 

.din-top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.din-top-bar-content a, .din-top-bar-content a{
  color: white;
}
.din-top-left-content, .din-top-right-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.address-link, .email-link, .phone-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
}

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

.social-link {
    color: white;
    font-size: 16px;
}

/* Logo Section Styles */
.logo-section {
  padding: 8px 0;
  background-color: white;
}

.din-web-logo {
  margin-top: 7px;
  padding: 0;
}

.logo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.din-web-logo img {
    height: 50px;
    width: auto;
}

.din-headercta-buttons {
    display: flex;
    gap: 16px;
}

.din-header-btn {
    padding: 8px 24px;
    text-decoration: none; 
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}
.make-a-claim-btn:hover {
    background-color:var(--color-primary);
    color: white !important;
}
.btn-outline {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

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

.btn-outline:hover {
    background-color:  var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color:  var(--color-primary);
    border-color: var(--color-primary);
}

 

.top-bar a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Email and Address link hover effect */
.address-link, .email-link {
  opacity: 0.9;
}

.address-link:hover, .email-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Phone link hover effect */
.phone-link {
  opacity: 0.9;
}

.phone-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Social media icons hover effects */
.social-links a {
  opacity: 0.9;
  display: inline-block;
  transition: all 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}



/* search form */
.header-search-container {
  position: relative;
  display: inline-block;
}

.search-toggle {
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.search-toggle:hover {
  color: #ffffff;
}
.search-toggle.active {
  color: #ffffff;
}

.search-panel {
  position: absolute;
  right: -20px;
  top: 100%;
  background: white;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 400px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.search-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-panel-inner {
  position: relative;
  width: 100%;
}

/* Styles for Ajax Search Lite plugin */
.search-panel .wpdreams_asl_container {
  width: 100% !important;
}

.search-panel #ajaxsearchlite1 {
  width: 100% !important;
  min-width: 100% !important;
}

.search-panel .probox {
  box-shadow: none !important;
}
button.search-toggle {
  padding: 8px 14px;
}
@media (max-width: 768px) {
  .search-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 20px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .search-panel-inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}



 

.din-serv-tags {
  background: rgb(154 15 26 / 44%);
  backdrop-filter: blur(5px);
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/*CSS for personal grid*/
/* DIN Services Grid Styles */
.din-services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; 
  margin: 0 auto;
  padding-top: 20px;
}

.din-service-item {
  display: block;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/0.75;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.din-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.din-service-image {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.din-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.din-service-item:hover .din-service-image img {
  transform: scale(1.05);
}

.din-service-caption {
  background-color: var(--color-primary);
  color: white;
  padding: 6px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.din-service-item:hover .din-service-caption {
  background-color: #6b0f0f;
}

/* No image styling */
.din-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #f1f1f1;
  color: #888;
  font-size: 14px;
  border-radius: 8px 8px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .din-services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .din-services-container {
    grid-template-columns: 1fr;
  }
}

/* 4 clumns service widget */
/* Service Cards Layout */
.din-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 30px 0;
  font-family: "Roboto", Sans-serif;
}

.din-service-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.din-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.din-card-image {
  position: relative;
  height: 180px;
}

.din-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.din-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e1635c;
  backdrop-filter: blur(5px);
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Roboto", Sans-serif;
}

.din-card-content {
  padding: 20px;
}

.din-card-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 23px;
  color: #333;
  font-family: "Roboto", Sans-serif;
}

.din-card-description {
  color: #666;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  font-family: "Roboto", Sans-serif;
}

.din-card-button {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease; /* Add color to the transition */
  font-family: "Roboto", Sans-serif;
}

.din-card-button:hover {
  background: #6d1414;
  color: white; /* Explicitly set hover text color to white */
}
.fix-3clumn .din-services-container {
     
  grid-template-columns: repeat(3, 1fr);
   
}

button:hover, button:focus, [type=submit]:hover, [type=submit]:focus, [type=button]:hover, [type=button]:focus {
  background-color: #d40600 !important; 
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .din-service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .fix-3clumn .din-services-container {
     
    grid-template-columns: repeat(2, 1fr);
     
  }
}

@media (max-width: 480px) {
  .din-service-cards {
    grid-template-columns: 1fr;
  }
  .fix-3clumn .din-services-container {
     
    grid-template-columns: repeat(1fr);
     
  }
}


.section-header {
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 3px;
  background-color: var(--color-primary);
  bottom: -10px;
  left: 15%;
  transform: scaleX(0);
  animation: headerLineAnimation 1s ease-in-out forwards 0.5s;
}
.section-subheading {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: var(--spacing-lg) auto 0;
}







/* ====================Start Flexable dropdown=================== */
/* Flexable Dropdown Menu Structure */
.nav-item.flexable-dropdown-menu-selector {
  position: relative;
}

.nav-item.flexable-dropdown-menu-selector .nav-link {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-item.flexable-dropdown-menu-selector .nav-link::after {
  content: '\f107'; /* Font Awesome down arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 5px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-item.flexable-dropdown-menu-selector:hover .nav-link::after {
  transform: rotate(180deg);
}

/* Main dropdown container */
.flexable-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}

/* Animation on hover */
.flexable-dropdown-menu-selector:hover .flexable-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* WordPress menu styling */
.flexable-dropdown-menu .custom-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flexable-dropdown-menu .custom-dropdown-menu > li {
  position: relative;
}

.flexable-dropdown-menu .custom-dropdown-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Add right arrow for items with submenu */
.flexable-dropdown-menu .custom-dropdown-menu > li.menu-item-has-children > a::after {
  content: '\f105'; /* Font Awesome right arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.flexable-dropdown-menu .custom-dropdown-menu > li.menu-item-has-children:hover > a::after {
  transform: translateX(3px);
}

.flexable-dropdown-menu .custom-dropdown-menu > li > a:hover {
  background-color: rgba(212, 6, 0, 0.05);
  color: var(--color-primary);
}

/* Second level submenus */
.flexable-dropdown-menu .custom-dropdown-menu > li > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background-color: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 10px 0;
  list-style: none;
}

.flexable-dropdown-menu .custom-dropdown-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Second level menu items */
.flexable-dropdown-menu .custom-dropdown-menu > li > .sub-menu > li > a {
  display: block;
  padding: 8px 18px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-regular);
  transition: all 0.3s ease;
  text-decoration: none;
}

.flexable-dropdown-menu .custom-dropdown-menu > li > .sub-menu > li > a:hover {
  background-color: rgba(212, 6, 0, 0.05);
  color: var(--color-primary);
}

/* Mobile styles */
@media screen and (max-width: 992px) {
  .flexable-dropdown-menu {
      position: static;
      width: 100%;
      box-shadow: none;
      opacity: 1;
      visibility: hidden;
      max-height: 0;
      overflow: hidden;
      transform: none;
      transition: max-height 0.4s ease, visibility 0s 0.4s;
      padding: 0;
  }
  
  .flexable-dropdown-menu-selector.active .flexable-dropdown-menu {
      visibility: visible;
      max-height: 1000px;
      transition: max-height 0.4s ease, visibility 0s;
  }
  
  .flexable-dropdown-menu .custom-dropdown-menu > li > .sub-menu {
      position: static;
      width: 100%;
      box-shadow: none;
      opacity: 1;
      visibility: hidden;
      max-height: 0;
      overflow: hidden;
      transform: none;
      transition: max-height 0.4s ease, visibility 0s 0.4s;
      padding: 0;
  }
  
  .flexable-dropdown-menu .custom-dropdown-menu > li.active > .sub-menu {
      visibility: visible;
      max-height: 1000px;
      transition: max-height 0.4s ease, visibility 0s;
  }
  
  .flexable-dropdown-menu .custom-dropdown-menu > li > a {
      padding: 10px 25px;
  }
  
  .flexable-dropdown-menu .custom-dropdown-menu > li > .sub-menu > li > a {
      padding: 10px 35px;
  }
  
  /* Change arrow direction for mobile */
  .nav-item.flexable-dropdown-menu-selector .nav-link::after {
      content: '\f107'; /* Down arrow for mobile */
  }
  
  .flexable-dropdown-menu .custom-dropdown-menu > li.menu-item-has-children > a::after {
      content: '\f107'; /* Down arrow for mobile */
  }
  
  .nav-item.flexable-dropdown-menu-selector.active .nav-link::after,
  .flexable-dropdown-menu .custom-dropdown-menu > li.menu-item-has-children.active > a::after {
      transform: rotate(180deg);
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

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

/* Apply animations */
.flexable-dropdown-menu {
  animation: fadeInUp 0.3s ease forwards;
}

.flexable-dropdown-menu .custom-dropdown-menu > li > .sub-menu {
  animation: fadeInRight 0.3s ease forwards;
}

/* ====================Banner=================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #9b0000 0%, #d40600 100%);
  position: relative;
  overflow: hidden;
}



 

/* Additional circles for texture and depth */
.cta-section .container {
  position: relative;
}

.cta-section .container::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.cta-section .container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 180px;
  height: 180px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  z-index: 0;
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  z-index: -1;
}

.cta-content {
  flex: 1;
  position: relative;
}

/* Add circular pattern behind content */
.cta-content::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: -1;
}

/* Add second circular pattern */
.cta-content::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: -1;
}

/* Add small circle accent */
.cta-content h1::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: -1;
}

/* Add medium circle accent */
.cta-actions::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -40px;
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: -1;
}

 

.cta-content .swift-breadcrumbs {
  position: relative;
}

.cta-content .swift-breadcrumbs::before {
  content: '\f015';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.swift-breadcrumbs span {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.swift-breadcrumbs span a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.swift-breadcrumbs .separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin-top: 15px;
  position: relative; 
}

 
 

/* Small circle behind description text */
.cta-content p::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  z-index: -1;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cta-section .animated-btn {
  background-color: rgb(255, 255, 255);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  padding: 14px 32px;
}

.cta-section .animated-btn::before {
  background-color: rgba(255, 255, 255, 0.8);
}

.animated-btn i {
  transition: transform 0.3s ease;
}

.or-call {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(255, 255, 255);
}

.or-call span {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-bottom: 5px;
}

.phone-number {
  color: rgb(255, 255, 255);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.phone-number i {
  margin-right: 10px;
  animation: pulse 2s infinite;
}

.phone-number:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-content p::before {
    display: none;
  }
  
  .cta-content::before,
  .cta-content::after,
  .cta-section .container::before,
  .cta-section .container::after,
  .cta-wrapper::before,
  .cta-content h1::after,
  .cta-content p::after,
  .cta-actions::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .swift-breadcrumbs {
    justify-content: center;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
} 




@media (max-width: 768px) {
  .swift-breadcrumbs {
      justify-content: center;
  }
}  

.cta-content h1.swift-page-title {
  color: var(--color-text-on-complementary);
}







/* ====================Service Section=================== */

/* Enhanced FAQ Styles with Improved Spacing */
.swift-faq-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--color-neutral-50);
}

.swift-faq-container {
  max-width: 900px;
  margin: var(--spacing-2xl) auto;
}

.swift-faq-item {
  background-color: white;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-lg); /* Increased spacing between items */
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.swift-faq-item:hover {
  box-shadow: var(--shadow-md);
}

.swift-faq-item.active {
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-xl); /* Extra space for active items */
  margin-top: var(--spacing-md);
}

.swift-faq-item:last-child {
  margin-bottom: 0; /* Remove margin from last item */
}

.swift-faq-question {
  padding: var(--spacing-lg) var(--spacing-xl); /* Increased horizontal padding */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
}

.swift-faq-question:hover {
  background-color: var(--color-neutral-100);
}

.swift-faq-item.active .swift-faq-question {
  background-color: rgba(212, 6, 0, 0.05);
}

.swift-faq-question h3 {
  margin: 0;
  font-size: var(--font-size-lg);
  color: var(--color-text-primary);
  flex: 1;
  padding-right: var(--spacing-md);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.swift-faq-item.active .swift-faq-question h3 {
  color: var(--color-primary);
}

.swift-faq-toggle-icon {
  color: var(--color-primary);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 6, 0, 0.1);
  border-radius: 50%;
  margin-left: var(--spacing-md);
}

.swift-faq-item.active .swift-faq-toggle-icon {
  background-color: var(--color-primary);
  color: white;
  transform: rotate(180deg);
}

.swift-faq-toggle-icon .fa-minus {
  display: none;
}

.swift-faq-item.active .swift-faq-toggle-icon .fa-plus {
  display: none;
}

.swift-faq-item.active .swift-faq-toggle-icon .fa-minus {
  display: inline-block;
}

.swift-faq-answer {
  padding: 0 var(--spacing-xl); /* Match horizontal padding with question */
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
}

.swift-faq-item.active .swift-faq-answer {
  padding: 0 var(--spacing-xl) var(--spacing-xl); /* Increased bottom padding */
  max-height: 1000px;
  opacity: 1;
}

.swift-faq-answer p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.swift-faq-answer p:last-child {
  margin-bottom: 0;
}

/* Section header spacing */
.swift-faq-section .section-header {
  margin-bottom: var(--spacing-2xl);
}

/* Space above the FAQ section when it follows another section */
section + .swift-faq-section {
  margin-top: var(--spacing-2xl);
}

/* Animation for FAQ items */
.swift-faq-item {
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s forwards;
}

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

/* Apply the animation with delay for each item */
.swift-faq-item:nth-child(1) { animation-delay: 0.1s; }
.swift-faq-item:nth-child(2) { animation-delay: 0.2s; }
.swift-faq-item:nth-child(3) { animation-delay: 0.3s; }
.swift-faq-item:nth-child(4) { animation-delay: 0.4s; }
.swift-faq-item:nth-child(5) { animation-delay: 0.5s; }
.swift-faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .swift-faq-section {
    padding: var(--spacing-2xl) 0;
  }

  .swift-faq-question h3 {
    font-size: var(--font-size-base);
  }
  
  .swift-faq-container {
    padding: 0 var(--spacing-md);
    margin: var(--spacing-xl) auto;
  }
  
  .swift-faq-item {
    margin-bottom: var(--spacing-md);
  }
  
  .swift-faq-question {
    padding: var(--spacing-md);
  }
  
  .swift-faq-item.active .swift-faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
  }
}







/* Service Overview Section Styles */
.service-overview-section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.service-overview-section.bg-light {
  background-color: var(--color-neutral-50);
}

.service-content-wrap {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
}

.service-content {
  flex: 1;
  padding-right: var(--spacing-xl);
}

.service-title {
  color: var(--color-primary);
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
}

.service-description {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.service-image {
  flex: 1;
  position: relative;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

/* Content order reverse variant */
.service-content-wrap.content-reverse {
  flex-direction: row-reverse;
}

.service-content-wrap.content-reverse .service-content {
  padding-right: 0;
  padding-left: var(--spacing-xl);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-content-wrap,
  .service-content-wrap.content-reverse {
      flex-direction: column;
  }
  
  .service-content,
  .service-content-wrap.content-reverse .service-content {
      width: 100%;
      padding-right: 0;
      padding-left: 0;
      margin-bottom: var(--spacing-xl);
  }
  
  .service-image {
      width: 100%;
  }
  
  .service-content-wrap.image-first .service-image {
      order: -1;
  }
}

@media (max-width: 768px) {
  .service-overview-section {
      padding: var(--spacing-2xl) 0;
  }
  
  .service-title {
      font-size: var(--font-size-3xl);
  }
  
  .service-description {
      font-size: var(--font-size-base);
  }
}

/* .grecaptcha-badge {
    display: none !important;
} */
/* ====================End Desktop Css=================== */

/* ====================End Desktop Css=================== */
/* ====================End Desktop Css=================== */
/* ====================End Desktop Css=================== */
/* ====================End Desktop Css=================== */
/* ====================End Desktop Css=================== */








/* Desktop (1351px and up) */
@media (min-width: 1351px) and (max-width: 1399px) {
  
  .nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2%;
  }
  
}



/*	Leptop Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

/* Laptop (1025px - 1350px) */
@media (min-width: 1025px) and (max-width: 1350px) {

  .nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2%;
}
  .nav-list {
    gap: 2px;
    padding: 0px 0px;
  }
  li.nav-item a {
    font-size: 14px;
  }


}







/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	 
  

  .din-container {
    width: 100%;
    padding: 10px 15px;
  }
  .din-desktop-header {
      display: none;
  }
  .din-mobile-menu-container {
      display: block;
  }
   
  .din-logo {
      width: 200px;
      margin-top: 6px;
  }
  .menu-sidebar-bottom-content-area .din-sidebar-menu-content:last-child {
      padding-top: 20px;
      padding-bottom: 11px;
  }



}



/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

@media only screen and (max-width: 767px) {
	


  .din-container {
    width: 100%;
    padding: 10px 15px;
  }
  .din-desktop-header {
      display: none;
  }
  .din-mobile-menu-container {
      display: block;
  }

   
  .din-logo {
    width: 144px;
    margin-top: 6px;
  }
  .menu-sidebar-bottom-content-area .din-sidebar-menu-content:last-child {
      padding-top: 20px;
      padding-bottom: 11px;
  }
  .btn-mobile-full a {
      width: 100%;
  }
  .din-moile-shadow {
    box-shadow: 0px 5px 10px #0000001c;
    margin-top: 15px;
}



	
}
 

/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436    */

@media only screen and (min-width: 480px) and (max-width: 767px) {

  .din-container {
    width: 100%;
    padding: 10px 15px;
  }
  .din-desktop-header {
      display: none;
  }
  .din-mobile-menu-container {
      display: block;
  } 
  .din-logo {
    width: 170px;
    margin-top: 6px;
  }
  .menu-sidebar-bottom-content-area .din-sidebar-menu-content:last-child {
      padding-top: 20px;
      padding-bottom: 11px;
  }
  .btn-mobile-full a {
      width: 100%;
  }
  .din-moile-shadow {
      box-shadow: 0px 5px 10px #0000001c;
      margin-top: 15px;
  }
  


}
