/** Shopify CDN: Minification failed

Line 92:12 Expected identifier but found whitespace
Line 92:14 Unexpected "{"
Line 92:24 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-text-section {
  background-color: #f5f5f5;
  padding-left: 20px;
  padding-right: 20px;
  
   text-align: left;
}

.custom-text-container {
  background-color: #EFEFEF; /* Applying the background color */
  padding: 0px;
  text-align: left;
  border: 3px solid silver;
  transition: border-color 0.5s;
 max-width: 100%;
  margin: 0 auto; /* Center the container horizontally */
  
}
.custom-text-section h2 {
  margin-bottom: 10px;
  color: red;
  padding-left: 10px;
  font-weight: 600;
  font-size: 26px;
  padding-top: 20px;
}

.custom-text-section p {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 10px;
}

.custom-text-container:hover {
  border-color: orange;
}
.custom-text-section {
  background-image: url('/cdn/shop/files/Untitled_design_75.png?v=1694059923');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 60px;
  padding-right: 60px;
  padding: 20px;
  text-align: left;
 /* margin: 20px; /* Add margin to create space around the section */
  max-width: 1170px;
   text-align: center; /* Center-align the content */
  margin: 40px auto; /* Add margin and set auto for horizontal centering */
  margin-top: 60px;
  
}

.custom-text-container {
   background-color: rgba(255, 255, 255, 0.9); /* Adjust the alpha (opacity) value to make it less transparent */
  padding: 20px;
  text-align: left;
  border: 3px solid silver;
  transition: border-color 0.5s;
}

.custom-text-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: red;
  padding-left: 20px;
  font-weight: 700;
}

.custom-text-section p {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 20px;
  font-weight: 500; /* bold */
}

.custom-text-container:hover {
  border-color: orange;
}

.custom-image {
  max-width: {{ settings.image_width }}; /* Control image width with the setting */
  height: auto;
}

  /* New styles for smaller screens */
@media screen and (max-width: 768px) {
  .custom-text-section {
    padding-left: 15px;
    padding-right: 15px;
    
  }
  .custom-text-container {
   background-color: rgba(255, 255, 255, 0.9); /* Adjust the alpha (opacity) value to make it less transparent */
  padding: 10px;
  text-align: left;
  border: 3px solid silver;
  transition: border-color 0.5s;
}

  .custom-text-section h2 {
    font-size: 22px; /* Reduce font size for smaller screens */
     padding: 10px;
  }

  .custom-text-section p {
    font-size: 14px; /* Reduce font size for smaller screens */
    padding: 10px;
  }
}
  .red-link {
  color: red;
  /* Additional styling if needed */
  text-decoration: none; /* Remove underline if you want */
}
.three_text_container {
  padding: 20px; /* Adjust the padding as needed */
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 1170px; /* Set your desired maximum width */
  margin: 40px auto 0 auto; /* Center the container horizontally and add 20px top margin */
}


.text-section {
  margin-top: 20px; /* Add some spacing between text sections */
  display: flex; /* Use flexbox for layout */
  align-items: center; /* Vertically align content in each container */
  max-width:100%;
  
}

/* Add a red border with rounded corners to the images */
.text-section img {
  max-width: 200px;
  margin-right: 20px;
  margin-left: 20px;
  border: 3px solid red; /* Add a red border */
  border-radius: 10px; /* Add rounded corners (adjust the radius as needed) */
  position: relative; /* Create a stacking context for pseudo-elements */
  transition: border-color 0.3s ease; /* Add a transition for a smooth effect */
}

/* Change the border color to orange when hovering */
.text-section img:hover {
  border-color: orange; /* Change the border color to orange on hover */
}


.text-section div {
  flex: 1; /* Allow text to take up remaining space */
  padding: 20px; /* Add padding to create a colored background */
  background-color: #f0f0f0; /* Set your desired background color here */
  border-radius: 5px; /* Optional: Add border-radius for rounded corners */
  max-width: calc(100% - 120px); /* Set maximum width for text container (subtract image width and margin) */
  margin-top: 10px; /* Add a top margin to the text */
}
  
  

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .text-section {
    flex-direction: column; /* Stack text and image vertically on smaller screens */
    text-align: left; /* Center align text */
    
    
  }

  .text-section img {
    margin: 0 auto; /* Center align the image */
    max-width: 100%; /* Make the image width 100% of the container */
    margin-bottom: 20px; /* Add bottom margin to separate image from text */
   
  }

  /* Adjust the margin for smaller screens */
  .text-section div {
    padding: 30px; /* Reduce top and bottom padding for smaller screens */
    max-width: 100%;
    
    
  }
  .red-center-text {
  color: red; /* Make text red */
  text-align: center; /* Center-align text */
  font-weight: 700; /* Set font weight to 600 */
  margin-bottom: 39px;
   margin-top: 11px;
    font-size: 22px; 
}
}
  /* CSS class for center alignment */
.text-center {
  text-align: center;
}

/* CSS class for background color */
.background-h2 {
  background-color: #ffffff;
  max-width: 950px; /* Adjust the maximum width as needed */
 
  padding: 0px; /* Add padding as needed */
}

  /* CSS class for red text color & bold*/
.text-red {
  color: red;
  font-weight: 600;
}

 .red-center-text {
  color: red; /* Make text red */
  text-align: left; /* Center-align text */
  font-weight: 700; /* Set font weight to 600 */
  margin-bottom: 39px;
   margin-top: 20px;
}

  .red-link {
  color: red;
}