


/* Apply styling to the main container */
.default-page-article__entry-content {
margin-left: 20px;
margin-right: 20px;
}

/* Style the panel grid and cells */
.panel-layout {
	    margin: 40px auto 0; /* Top margin of 40px, auto left/right margins for centering, no bottom margin */

    max-width: 1000px; /* Maximum width of the panel layout */
    
    
    
}

/* Style for .so-widget-sow-editor and .so-widget-sow-editor-base */
.so-widget-sow-editor,
.so-widget-sow-editor-base {
	margin-top: 20px;
    padding-left: 50px;  /* Adjust left padding as needed */
  
}
.aos-init {
	font-size: 20px;
}
/* Set font size for the h3 element within .so-widget-sow-editor and .so-widget-sow-editor-base */
.so-widget-sow-editor .widget-title,
.so-widget-sow-editor-base .widget-title {
    font-size: 30px; /* Adjust font size as needed */
}
@media screen and (max-width: 768px) {
    .so-widget-sow-editor .widget-title,
    .so-widget-sow-editor-base .widget-title {
        font-size: 20px; /* Adjust font size for mobile */
        	margin-top: -50px;

    }
    .aos-init {
	font-size: 16px;
}
}

.panel-grid {
    margin-bottom: 20px; /* Space between grids */
}

.panel-grid-cell {
    padding: 10px; /* Padding inside each grid cell */
}

/* Style for the download label */
.manuals__download-label {
    display: flex; /* Use Flexbox layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Distribute space evenly between items */
    padding: 0 30px; /* Add horizontal padding if needed */
    text-align: left; /* Align text to the left within the container */
    width: 50%; /* Ensure the container spans the full width */
}

.manuals__download-label span {
    font-size: 20px; /* Font size for the text */
    /* No need for margin adjustments here, as spacing is handled by flexbox */
}

/* Style for the download section */
.manuals__download {
    display: flex; /* Flexbox layout for alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    border-radius: 8px; /* Rounded corners for the border */
    padding: 10px; /* Padding inside the download section */
    margin: 0 auto; /* Center the section horizontally */
    max-width: 1000px; /* Limit the maximum width of the section */
}
/* Updated styles for the download section to create a two-column layout */
.manuals__download {
    display: flex; /* Flexbox layout for alignment */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space between the columns */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    border-radius: 8px; /* Rounded corners for the border */
    padding: 10px; /* Padding inside the download section */
    margin: 0 auto; /* Center the section horizontally */
    max-width: 1000px; /* Limit the maximum width of the section */
}

/* Style for the label and button container on the left side */
.manuals__download-content {
    display: flex; /* Flexbox layout */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align content to the start */
    text-align: left; /* Align text to the left */
    width: 60%; /* Adjust width to fit content */
    padding-right: 20px; /* Space between content and image */
}

/* Style for the image container on the right side */
.manuals__image {
    flex-shrink: 0; /* Prevent the image from shrinking */
    width: 40%; /* Adjust width for the image */
    text-align: right; /* Align image to the right */
    margin-right: 0; /* Remove right margin */
}

/* Style for the image within the download section */
.manuals__image img {
    max-width: 150px; /* Limit image width */
    border-radius: 4px; /* Rounded corners for images */
}

/* Style for the download label */
.manuals__download-label {
    display: flex; /* Flexbox layout */
    margin-bottom: 10px; /* Space between label and button */
    margin-right: 60px;
}

/* Style for the download button */
.manuals__download-button {
    padding: 10px 20px; /* Padding inside the button */
    border-radius: 4px; /* Rounded corners for the button */
    border: 1px solid #000; /* Border color for the button */
    color: #000; /* Text color for the button */
    text-decoration: none; /* Remove underline from the link */
    font-weight: bold; /* Bold text */
    margin-top: 10px; /* Space between label text and button */
    width: fit-content; /* Fit button width to content */
}

/* Style for the download button hover effect */
.manuals__download-button:hover {
    background-color: rgb(0, 0, 0); /* Background color on hover */
    color: rgb(255, 255, 255); /* Text color on hover */
    border-color: #333; /* Border color on hover */
}
/* Style for the image within the download section */
.manuals__image {
    flex-shrink: 0; /* Prevent the image from shrinking */
    margin-right: 20px; /* Space between image and label */
}

.manuals__image img {
    max-width: 150px; /* Limit image width */
    border-radius: 4px; /* Rounded corners for images */
}

/* Style for the download button */
.manuals__download-button {
    padding: 10px 20px; /* Padding inside the button */
    border-radius: 4px; /* Rounded corners for the button */
    border: 1px solid #000; /* Border color for the button */
    color: #000; /* Text color for the button */
    text-decoration: none; /* Remove underline from the link */
    font-weight: bold; /* Bold text */
    margin-left: 20px; /* Space between label text and button */
}

.manuals__download-button:hover {
    background-color: rgb(0, 0, 0); /* Background color on hover */
    color: rgb(255, 255, 255); /* Text color on hover */
    border-color: #333; /* Border color on hover */
}
.hero-section{
	margin-left: 20px;
	margin-right: 20px;
	
}
.hero-section__title::after {
    content: "";
    display: block;
    width: 100px;
    border-bottom: 5px solid #FF5722;
    position: absolute;
    left: 0;
    margin-left: 20px;
}
/* Style for the h1 element within the .hero-section */
.hero-section__title {
    margin-top: 10px;     /* Adjust margin-top as needed */
    font-size: 60px;      /* Adjust font size as needed */
    padding-right: 100px;  /* Optional: Adjust padding-left if needed */
}
/* Set the background color of the body to white */

/* Mobile styles (for screens up to 768px wide) */
@media screen and (max-width: 768px) {
    .manuals__download-label {
        width: 100%; /* Full width on mobile */
        padding: 0 10px; /* Adjust padding for mobile */
        margin-right: 0; /* Remove margin for better alignment */
        justify-content: center; /* Center content on mobile */
    }
    .manuals__download-label span {
    font-size: 16px;
}
}

/* Responsive styles for mobile devices */
@media (max-width: 767px) {
    .so-widget-sow-editor,
    .so-widget-sow-editor-base {
        padding-left: 20px; /* Reduce left padding on mobile */
        margin-top: 30px; /* Adjust margin-top on mobile */
    }
.panel-grid {
    margin-bottom: -20px;
}
    .panel-layout {
        margin: 20px auto; /* Adjust margin on mobile */
        margin-left: -20px;
                margin-right: -20px;

    }

    .manuals__download {
        flex-direction: column; /* Stack items vertically on mobile */
        padding: 10px 5px; /* Adjust padding on mobile */
        left: 0;
    }

    .manuals__image {
        margin-right: 0; /* Remove right margin on mobile */
        margin-bottom: 10px; /* Add bottom margin on mobile */
    }

    .manuals__image img {
        max-width: 200%; /* Ensure image scales with its container */
        height: auto; /* Maintain aspect ratio */
        margin-left: 15px;
    }

    .manuals__download-label {
        padding-left: 4; /* Remove left padding on mobile */
        justify-content: center; /* Center content horizontally */
    }

    .manuals__download-button {
        margin-left: 0; /* Remove left margin on mobile */
        margin-top: 10px; /* Add top margin on mobile */
        font-size: 18px; /* Adjust font size for readability */
        padding: 10px 8px; /* Adjust padding for better click area */
    }

    .hero-section__title {
        font-size: 30px; /* Adjust font size on mobile */
/*        padding-left: 20px;  Reduce padding on mobile 
*/    }

    .default-page-article__entry-content {
        padding: 10px; /* Adjust padding on mobile */
        left: 0;
        margin-bottom: -100px;
    }
}

