.hero-section__title1 {
    font-size: 60px; /* Large font size for the title */
    margin: 0; /* Remove default margin */
    padding-left: 2px; /* Remove padding on the right */
    padding-right: 70px;
    margin-right: 50px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    display: inline-block; /* Ensure the title stays in the same line */
    vertical-align: middle; /* Align title vertically with other inline-block elements */
    width: 70%; /* Ensure the element takes up the full width of its container */
    line-height: 1.2; /* Adjust line height if necessary for vertical alignment */
    margin-top: 10px;
}

.hero-section__title1::after {
    content: "";
    display: block;
    width: 100px;
    border-bottom: 5px solid #FF5722;
    position: absolute;
    left: 0;
    margin-left: 25px;
}


.hero-section__background {
    position: relative; /* Ensure positioning context for child elements */
    overflow: hidden; /* Hide any overflow from the image */
    width: 100%; /* Full width of the container */
    height: auto; /* Height adjusts based on content */
}

.hero-section__background img {
    display: block; /* Remove extra space below the image */
    width: 100%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Cover the div area without distortion */
    max-height: 100%; /* Prevent the image from exceeding the container height */
        margin-top: 4rem; /* Space above the caption */

}


.container98 {
   /* padding-right: 200px;
    padding-left: 200px;  Consistent padding for alignment */
    margin-right: 10px;
    margin-left: 10px;
  
}

/* Ensure the container is responsive */
@media (max-width: 1199px) { /* Adjust padding for screens smaller than large desktops */
    .container98 {
        padding-right: 150px;
        padding-left: 150px;
    }
}

@media (max-width: 991px) { /* Adjust padding for tablets */
    .container98 {
        padding-right: 100px;
        padding-left: 100px;
    }
}

@media (max-width: 767px) { /* Adjust padding for mobile screens */
    .container98 {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Image container styling */
.single-news-article__images1 {
    display: flex;
    flex-direction: column;
    gap: 9rem; /* Space between images on desktop */
}

@media (max-width: 767px) {
    .single-news-article__images1 {
        gap: 2rem; /* Reduced space between images for mobile */
    }
}



.single-news-article__content,.image-with-content-box__content,.single-feature__content,.content-image-section__content p{
	font-size: 20px;
}

/* Media query for mobile screens */
@media screen and (max-width: 768px) {
    .single-news-article__content,
    .image-with-content-box__content,
    .single-feature__content,
    .content-image-section__content p {
        font-size: 16px; /* Smaller font size for mobile */
        line-height: 1.5; /* Adjust line height for better readability */
    }
}
/* Hero section title and date */
.hero-section__title {
    font-size: 40px; /* Large font size for the title */
    margin: 0; /* Remove auto margin to keep everything aligned */
    padding-right: 0; /* Remove padding */
    padding-left: 10px;
    box-sizing: border-box;
    display: inline-block; /* Ensure the title stays in the same line */
    vertical-align: middle; /* Align title vertically with the date */
}
.hero-section1,.hero-section{
	margin-right: 20px;
	margin-left: 20px;
}
.hero-section1::after {
    content: "";
    display: block;
    width: 100px;
    border-bottom: 5px solid #FF5722;
    position: absolute;
    left: 0;
    margin-left: 30px;
}
 .single-feature__iconss-wrapper {
    margin-top: -80px; /* Apply negative margin to move the element up */
}
@media screen and (max-width: 768px) {
    .single-feature__iconss-wrapper {
        margin-top: 0px; /* Apply negative margin for mobile */
    }
}

.hero-section__date {
    font-size: 2rem; /* Make the date font size the same as the title */
    display: inline-block; /* Keep the date on the same line as the title */
    vertical-align: middle; /* Align date vertically with the title */
    padding-left: 10px;
}
@media only screen and (max-width: 767px) {
    .hero-section__title {
        font-size: 30px; /* Adjusted font size for mobile screens */
        display: block; /* Stack elements vertically on mobile */
        padding-left: 1rem; /* Add left padding */
        margin-bottom: 1rem; /* Add spacing below the title */
    }

    .hero-section__date {
        font-size: 2rem; /* Reduce font size for mobile screens */
        display: block; /* Stack elements vertically on mobile */
    padding-left: 6px;
    }
}
/* Base styling for container1 */
.container1 {
    padding-right: 20px;
    padding-left: 150px; /* Consistent padding for alignment */
    margin-right: 20px;
    margin-left: 20px;
}

/* Ensure the container is responsive */
@media (max-width: 1199px) { /* Adjust padding for screens smaller than large desktops */
    .container1 {
        padding-right: 150px;
        padding-left: 150px;
    }
}

@media (max-width: 991px) { /* Adjust padding for tablets */
    .container1 {
        padding-right: 100px;
        padding-left: 100px;
    }
}
@media screen and (max-width: 768px) {
    .single-post-preview__featured-image img{
        width: 120%; /* Full width on mobile */
        max-width: 300px; /* Optional: Limit maximum width */
        height: auto; /* Ensure the aspect ratio is maintained */
    }
   
}
@media (max-width: 767px) { /* Adjust padding for mobile screens */
    .container1 {
        padding-right: 0px;
        padding-left: 0px;
    }
}

/* Image container styling */
.single-news-article__images {
    display: flex;
    flex-direction: column;
    gap: 9rem; /* Space between images on desktop */
    margin-top: 50px;
}

@media (max-width: 767px) {
    .single-news-article__images {
        gap: 2rem; /* Reduced space between images for mobile */
    }
}

/* Caption styling */
.single-news-article__caption {
    display: block;
    text-align: center;
    font-style: italic;
    color: #666; /* Caption color */
    margin-top: 0.5rem; /* Space above the caption */
}

/* Mobile adjustments for column layout */
@media (max-width: 767px) {
    .col-md-6.col-lg-7 {
        margin-top: 2rem; /* Adjust top margin for mobile devices */
    }
}

/* Image wrapper */
.single-news-article__content-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Aspect ratio for 16:9 images */
    background-color: #f0f0f0; /* Fallback color */
    overflow: hidden; /* Hide overflow */
}

.single-news-article__content-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Ensure the image covers the container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repetition */
}



/* Base styles for content wrapper */
.single-news-article__content-wrapper {
    background-color: white; /* Default background color */
    border-radius: 5px; /* Border radius */
    box-sizing: border-box; /* Include padding and border in width/height calculations */
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .c-mt-md-0 {
        margin-top: 0 !important; /* Remove top margin on medium and larger screens */
    }
}

/* Desktop screens */
@media (min-width: 992px) {
    .c-p-md-6 {
        padding: 2rem; /* Padding for desktop */
        padding-right: 2rem; /* Right-side padding for consistency */
        width: 100%; /* Full width of the container */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow effect for desktop */
        
    }
}



/* Mobile screens */
@media (max-width: 767px) {
    .single-news-article__content-wrapper {
        padding: 1rem; /* Reduced padding for mobile */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Reduced shadow effect for mobile */
    }
}

/* Title styling */
.share-post h2 {
    font-size: 3rem; /* Adjust font size */
    margin-bottom: 2rem; /* Space below the title */
        font-weight: bold;  /* Make the text bold */
        padding-left: 2px;

}

.share-post__social-media {
    display: flex;
    flex-wrap: wrap; /* Wrap items to the next line if needed */
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}
/* Styling for each social media item */
.social-media-item {
    margin: 0.5rem; /* Space between each social media item */
}

/* Styling for each social media link */
.social-media-link {
    display: flex;
    align-items: center; /* Center-align icon vertically */
    justify-content: center; /* Center-align icon horizontally */
    width: 40px; /* Adjust size of the social media icons */
    height: 40px; /* Adjust size of the social media icons */
    background-color: #fff; /* Background color of icons */
    border-radius: 50%; /* Circular icons */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow effect */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
}

/* Hover effect for social media links */
.social-media-link:hover {
    background-color: #e0e0e0; /* Change background color on hover */
    transform: scale(1.1); /* Slightly increase size on hover */
}

/* Desktop Styles */
.container12 {
    padding-right: 150px;
    padding-left: 130px; /* Consistent padding for alignment */
    margin-right: 20px;
    margin-left: 20px;
}
/* Set white background color for .row.no-gutters */
.row.no-gutters {
    background-color: #ffffff; /* White background color */
}

.c-pt-61 {
    padding: 2rem; /* Padding for desktop */
    padding-right: 2rem; /* Right-side padding for consistency */
    width: 100%; /* Full width of the container */
        background-color: #ffffff; /* White background color */

}

/* Mobile Styles */
@media (max-width: 768px) {
    .container12 {
        padding-right: 1rem;
        padding-left: 1rem; /* Reduced padding for mobile */
    }
    
    .c-pt-6 {
        padding: 1rem; /* Reduced padding for mobile */
    }
}

.single-post-preview__content-wrapper {
    display: flex;
    flex-direction: column; /* Stack child elements vertically */
    align-items: center; /* Center horizontally */
    background-color: #ffffff; /* Ensure background is white */
    padding: 2rem; /* Add padding for spacing */
    height: 100%; /* Full height of the container */
}

/* Title Styling */
.single-post-preview__title {
    font-size: 3rem; /* Large font size for the title */
    margin-bottom: 2rem; /* Space below the title */
    font-weight: bold; /* Make the title bold */
    padding-left: 0.5rem; /* Padding on the left side */
    color: #333; /* Default color of the title */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Title Hover Effect */
.single-post-preview__title:hover {
    color: red; /* Color of the title when hovered */
}


.single-post-preview__content {
    font-size: 20px; /* Adjust font size */
    margin-left: 2rem; /* Space on the left side */
    margin-top: 1rem; /* Space above the content */
}
/* Responsive Design */
@media (max-width: 767px) {
    .single-post-preview__title {
        font-size: 2rem; /* Smaller font size for mobile */
        margin-bottom: 1.5rem; /* Reduced space below the title */
    }

    .single-post-preview__content {
        font-size: 1.4rem; /* Smaller font size for mobile */
        margin-left: 1rem; /* Reduced space on the left side */
        margin-top: 0.5rem; /* Reduced space above the content */
    }

    .single-post-preview__content-wrapper {
        padding: 1rem; /* Reduced padding for mobile */
    }
}

@media (max-width: 479px) {
    .single-post-preview__title {
        font-size: 1.5rem; /* Further reduce font size for very small screens */
    }

    .single-post-preview__content {
        font-size: 16px; /* Further reduce font size for very small screens */
        margin-left: 0.5rem; /* Further reduce space on the left side */
    }

    .single-post-preview__content-wrapper {
        padding: 0.5rem; /* Further reduced padding for very small screens */
    }
}
/* Ensure .col-md-6 .col-lg-5 has a white background */
.text-center1 {
    font-weight: bold; /* Make the text bold */
    padding-top: 5rem; /* Add padding to the top */
    color: #333; /* Adjust text color if needed */
        font-size: 40px; /* Set the font size */
        margin-right: 20px;
margin-left: 20px;
}
.text-center1::after {
    content: "";
    display: block;
    width: 100px;
    border-bottom: 5px solid #FF5722;
    position: absolute;
    left: 0;
    margin-left: 20px;
}
@media (max-width: 767px) {
    .text-center1 {
        font-size: 28px; /* Smaller font size for mobile */
        padding-top: 2rem; /* Reduce top padding on mobile */
        margin-bottom: 1.5rem; /* Reduce bottom margin on mobile */
    }
}












/* General Styles */
.features {
  
    background-color: #f8f9fa; /* Light background color for contrast */

}

@media screen and (max-width: 768px) {
    .features {
      
        margin-left: -10px; /* Reduced left margin for mobile */
        margin-right: -10px; /* Reduced right margin for mobile */
    }
}
.container99 {
    padding-right: 200px;
    padding-left: 200px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .container99 {
        padding-right: 150px;
        padding-left: 150px;
    }
}

@media (max-width: 991px) {
    .container99 {
        padding-right: 100px;
        padding-left: 100px;
    }
}

@media (max-width: 767px) {
    .container99 {
        padding-right: 20px;
        padding-left: 20px;
    }
}


.features__content-wrapper .col-sm-6,
.features__content-wrapper .col-lg-4 {
    padding: 15px;
}

.single-feature {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.single-feature__icon {
    width: 80px; /* Width of the icon */
    height: auto; /* Maintain aspect ratio */
    margin: 1rem 0; /* Add margin to the top and bottom for spacing */
}
.single-feature__title1 {
    font-size: 3rem; /* Adjusted for readability */
    font-weight: bold;
    margin-top: 8rem;
    text-align: center;
}
.single-feature__title12 {
    font-size: 30px; /* Adjusted for readability */
    font-weight: bold;
    margin-top: 1rem;
    text-align: center;
}

.single-feature__title {
    font-size: 3rem; /* Adjusted for readability */
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.single-feature__content {
    font-size: 2rem;
    color: #666; /* Dark gray color for text */
    line-height: 1.6; /* Better line spacing for readability */
}

@media screen and (max-width: 768px) {
  .hero-section__title1 {
    font-size: 30px; /* Smaller font size for mobile */
    line-height: 1.3;
    margin: 4px 0;
    text-align: left; /* Align text to the left */
    left: 0; /* Positioning */
    padding: 0 1px; /* Add some padding for better spacing */
    width: 102%; /* Full width */
    box-sizing: border-box; /* Include padding in the element's total width */
  }
   .hero-section__title1::after {
    width: 70px; /* Smaller width for mobile */
    margin-left: 35px; /* Adjust margin for mobile */
    
  }
   .hero-section__background img {
        width: 100%; /* Maintain full width */
        height: 200px; /* Set a specific height for mobile */
        object-fit: cover; /* Ensure the image covers the space */
        margin-top: 2rem; /* Reduce margin for mobile */
    }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .single-feature__title,
    
    .single-feature__title12 {
        font-size: 2.5rem; /* Smaller font size on mobile */
    }
     .single-feature__title1 {
        font-size: 2.5rem; /* Smaller font size for mobile */
        margin-top: 4rem; /* Reduced margin for mobile */
    }
    .single-feature__content {
        font-size: 2rem; /* Adjust content font size for mobile */
    }

    .single-feature {
/*        padding: 4rem;  Reduced padding on mobile 
*/    }

    .single-feature__icon {
        width: 60px; /* Slightly smaller icon size on mobile */
    }
}











/* Container padding for different screen sizes */
.container96 {
    padding-right: 150px;
    padding-left: 150px; /* Consistent padding for alignment */
    margin-right: 20px;
    margin-left: 20px;
}

/* Ensure the container is responsive */
@media (max-width: 1199px) {
    .container96 {
        padding-right: 150px;
        padding-left: 150px;
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .container96 {
        padding-right: 100px;
        padding-left: 100px;
    }
}

@media (max-width: 767px) {
    .container96 {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Flexbox layout for the image and content */
.image-with-content-box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem; /* Space between image and content */
   
}

@media (max-width: 767px) {
    .image-with-content-box {
        flex-direction: column; /* Stack image and content on mobile */
        gap: 1rem; /* Reduced space between image and content for mobile */
         margin-top: -50px;
    }
     .image-with-content-box__image {
        width: 100%; /* Ensure full width on mobile */
        height: 200px; /* Set a specific height for mobile */
        object-fit: cover; /* Maintain coverage */
        margin: 0; /* Remove margin for a clean layout */
    }
}
.image-with-content-box__image {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}

@media (min-width: 992px) {
    .image-with-content-box__image {
        margin: 40px 0 !important; /* Bigger top/bottom margin on desktop */
    }
}

/* Image styling */
.image-with-content-box__image {
    width: 100%; /* Make the image responsive */
    height: auto;
    object-fit: cover; /* Cover the space without distortion */
}

/* Content wrapper styling */
.image-with-content-box__content-wrapper {
    background-color: #fff; /* Ensure background color */
}

@media (max-width: 767px) {
    .image-with-content-box__content-wrapper {
        padding: 0.5rem;
    }
}

/* Title styling */
.image-with-content-box__title {
    font-size: 30px;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .image-with-content-box__title {
        font-size: 23.5px; /* Adjust font size for mobile screens */
        padding: 0 0.2rem; /* Adjust padding for mobile screens */
    }
     p {
        font-size: 16px; /* Smaller font size for mobile */
        line-height: 1.4; /* Adjust line height for mobile */
        margin: 0 10px; /* Add horizontal margin for spacing */
    }
}
/* Content styling */
.image-with-content-box__content {
    color: #333; /* Default text color */
    line-height: 1.5; /* Improve readability */
}

/* Adjustments for column layout on mobile */
@media (max-width: 767px) {
    .col-lg-7, .col-lg-5 {
        margin-top: 1rem; /* Adjust top margin for mobile devices */
    }
}















/* Adjust container padding for different screen sizes */
.container95 {
    padding-right: 200px;
    padding-left: 200px; /* Consistent padding for alignment */
    margin-right: 20px;
    margin-left: 20px;
}

/* Ensure the container is responsive */
@media (max-width: 1199px) {
    .container95 {
        padding-right: 150px;
        padding-left: 150px;
    }
}

@media (max-width: 991px) {
    .container95 {
        padding-right: 100px;
        padding-left: 100px;
    }
}

@media (max-width: 767px) {
    .container95 {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Image container styling */
.content-image-section {
    display: flex;
    flex-direction: row;
    gap: 2rem; /* Space between image and content */
    align-items: stretch;
}

@media (max-width: 767px) {
    .content-image-section {
        flex-direction: column; /* Stack image and content on mobile */
        gap: 1rem; /* Reduced space between image and content for mobile */
    }
}

/* Image styling */
.image-with-content-box__image {
    width: 100%; /* Make the image responsive */
    height: auto;
    object-fit: cover; /* Cover the space without distortion */
}

/* Content alignment and padding */
.content-image-section__align-wrapper {
    padding: 1rem;
    background-color: #fff; /* Ensure background color */
}

@media (max-width: 767px) {
    .content-image-section__align-wrapper {
        padding: 0.5rem;
    }
}

/* Caption styling */
.content-image-section__title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .content-image-section__title {
        font-size: 2.5rem; /* Adjust font size for mobile screens */
        padding: 0 0.2rem; /* Adjust padding for mobile screens */
    }
}
.content-image-section__content {
    color: #333; /* Default text color */
    line-height: 1.5; /* Improve readability */
}

/* Adjustments for column layout on mobile */
@media (max-width: 767px) {
    .col-lg-7, .col-lg-5 {
        margin-top: 1rem; /* Adjust top margin for mobile devices */
    }
}














/* Adjust container padding for different screen sizes */
.container97 {
    padding-right: 200px;
    padding-left: 200px; /* Consistent padding for alignment */
    margin-right: 20px;
    margin-left: 20px;
    background-color: rgb(247, 247, 247);
}

/* Ensure the container is responsive */
@media (max-width: 1199px) {
    .container97 {
        padding-right: 150px;
        padding-left: 150px;
    }
}

@media (max-width: 991px) {
    .container97 {
        padding-right: 100px;
        padding-left: 100px;
    }
}

@media (max-width: 767px) {
    .container97 {
        padding-right: 20px;
        padding-left: 20px;
    }
}







.story__title {
    font-size: 40px; /* Adjust the font size as needed */
    padding: 0.5rem 0; /* Set vertical padding (top and bottom) */
    margin-right: 20px;
    margin-left: 20px;
}
.story__title::after {
    content: "";
    display: block;
    width: 100px;
    border-bottom: 5px solid #FF5722;
    position: absolute;
    left: 0;
    margin-left: 20px;
}


@media only screen and (max-width: 767px) {
    .story__title.h1 {
        font-size: 30px; /* Adjust font size for mobile */
        line-height: 1.2;  /* Adjust line-height for better readability */
    }
     .story__title::after {
        width: 80px; /* Reduced width for mobile */
        left: 0; /* Maintain left alignment */
        margin-left: 30px; /* Adjust margin for mobile */
    }
}


/* Container for the entire timeline section */
.story {
    padding-top: 2rem;
    padding-bottom: 3rem;
        background-color: #fff; /* Set the background color to white */

}
@media screen and (max-width: 768px) {
    .story {
        padding-top: 1.5rem; /* Reduced top padding for mobile */
        padding-bottom: 2rem; /* Reduced bottom padding for mobile */
        margin-left: 10px; /* Optional: Add margin to left */
        margin-right: 10px; /* Optional: Add margin to right */
    }
}
/* Timeline container */
.timeline {
    display: flex;
    justify-content: space-around; /* Distribute items evenly */
    position: relative;
    width: 100%;
    padding: 0 2rem;
}

.line {
	    margin-top: 8rem; /* Set the top margin */

    height: 2px;
    background-color: #333;
}
/* Individual timeline item */
.timeline-item {
    position: relative;
    width: 200px; /* Adjust width as needed */
    text-align: center;
    z-index: 3; /* Ensure items are above the line */
}

/* Year styling */
.timeline-item__year {
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 190px;
}
.timeline-content {
    background: #333;
    color: #fff;
    padding: 2rem; /* Adjust padding for spacing around text */
    border-radius: 4px;
    width: 250px; /* Set a fixed width */
    height: 300px; /* Set a fixed height for the box */
    max-height: 300px; /* Ensure max-height matches the height for consistency */
    display: none; /* Hidden by default */
    overflow: auto; /* Add scroll if content overflows */
    position: absolute; /* Positioning it absolutely */
    z-index: 1000; /* Ensure it is on top */
    bottom: 55%; /* Position the box above the timeline item */
    left: 50%; /* Center the box horizontally */
    transform: translateX(-50%); /* Center the box */
    margin-bottom: 10px; /* Space between the box and the item */
    text-align: left; /* Align text to the left for better readability */
}

/* Show the content box on hover */
.timeline-item:hover .timeline-content {
    display: block;
}

/* Vertical line before each year */
/* Vertical line before each year */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 50%; /* Adjust vertical positioning as needed */
    width: 2px; /* Thickness of the vertical line */
    height: 30px; /* Length of the vertical line */
    background: rgb(0, 0, 0); /* Line color */
    transform: translateY(-50%); /* Center the line vertically */
    z-index: 0; /* Ensure the line is behind the year */
}









.accordion .single-row__title,.accordion .single-row__title:after,.single-transition {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.accordion .single-row:not(:last-of-type) {
    border-bottom: .0625rem solid #000
}

.accordion .single-row__button {
    background-color: transparent;
    border: none;
    position: relative
}

.accordion .single-row__button:not(.collapsed) .single-row__title:after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg)
}

.accordion .single-row__button:hover .single-row__title {
    color: #ee1924
}

.accordion .single-row__content,.accordion .single-row__title {
    padding-right: 2rem;
    color: #373738
}

.accordion .single-row__title {
    position: relative;
    text-align: left;
    font-weight: 400;
    font-size: 2rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

@media (min-width: 576px) {
    .accordion .single-row__title {
        font-size:1.03125rem;
        padding-top: 1.3125rem;
        padding-bottom: 1.3125rem
    }
}

@media (min-width: 768px) {
    .accordion .single-row__title {
        font-size:1.0625rem;
        padding-top: 1.375rem;
        padding-bottom: 1.375rem
    }
}

@media (min-width: 992px) {
    .accordion .single-row__title {
        font-size:1.09375rem;
        padding-top: 1.4375rem;
        padding-bottom: 1.4375rem
    }
}

@media (min-width: 1200px) {
    .accordion .single-row__title {
        font-size:1.125rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
}

.accordion .single-row__title:after {
    content: "";
    right: 0;
    top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #ee1924;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAuMDUgMTkwLjY1Ij48cGF0aCBmaWxsPSIjMTgxODE4IiBkPSJNMTUxLjUyIDE4Ny4xMkwzLjUyIDQwLjMzYTEyIDEyIDAgMCAxIDAtMTdsMTkuOC0xOS44MWExMiAxMiAwIDAgMSAxNyAwTDE2MCAxMjIgMjc5LjczIDMuNTNhMTIgMTIgMCAwIDEgMTcgMGwxOS43OSAxOS44YTEyIDEyIDAgMCAxIDAgMTdsLTE0OCAxNDYuOGExMiAxMiAwIDAgMS0xNyAweiIvPjwvc3ZnPg==);
    background-size: .875rem .4375rem;
    width: .875rem;
    height: .4375rem
}




