.industryCover {
    position: relative;
    width: 100%;
    height: 70%;
    background-position: center;
    background-size: cover;
}

.industryIntro {
    position: absolute;
    display: block;
    margin: 0 auto;
    width: 800px;
    max-width: 80%;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.industryIntro h1 {
    margin: 0;
}
.industryIntro h2 {
    margin: 0;
}
.industryIntro h3 {
    margin: 0;
    color: #777;
}

.industryIntro a {
    text-align: center;
    position: relative;
    display: block;
    width: fit-content;
    /*width: 50%;
    left: 25%;*/
    background-color: #f7cb70;
    border-radius: 5px;
    padding: 7px 20px;
    margin: 10px auto;
    border: 1px solid #f7cb70;
}

.industryIntro a:hover {
    color: white;
    border: 1px solid #f7cb70;
    background-color: #222;
}

.industryCredit {
	position: absolute;
	text-align: right;
	bottom: 0;
	right: 0;
	padding: 6px 25px;
	color: white;
	background: linear-gradient(to right, rgba(34,34,34,0) 0%, rgba(34,34,34,1) 50%);
}

.industryInfo {
    position: relative;
    margin: 50px auto;
    width: 800px;
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.industryInfoImage {
    width: 100%;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.industryInfo div, .industryInfo img {
    flex-basis: calc(50% - 20px);
}

.industryInfo img {
    max-width: calc(50% - 20px);
    height: auto;
}

.industryQuoteContainer {
    width: 100%;
    background-color: #f7cb70;
    padding: 25px 0;
}

.industryQuote {
    position: relative;
    width: 50%;
    max-width: 800px;
    margin: 0 auto;
}

.industryQuote p {
    position: relative;
    margin: 0;
}

.industryQuote p::before,
.industryQuote p::after {
  position: absolute;
  font-size: 36px; /* Adjust the font size of the quotation marks as needed */
  color: #333; /* Color of the quotation marks */
}

.industryQuote p::before {
  content: "“"; /* Left double quotation mark */
  top: 0;
  left: -10px; /* Adjust position as needed */
  transform: translate(-100%, 0); /* Move it outside the padding area */
}

.industryQuote p::after {
  content: "”"; /* Right double quotation mark */
  bottom: 0;
  right: -10px; /* Adjust position as needed */
  transform: translate(100%, 0); /* Move it outside the padding area */
}

.industryQuoteCredit {
    text-align: right;
    font-weight: 600;
    padding-top: 40px;
}

.industryGallery {
    position: relative;
}

.industryGalleryTitle {
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: #222;
    margin: 40px;
}

.industrySlider {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

@media (max-width: 480px) {
    .industryInfo div, .industryInfo img {
        flex-basis: calc(100% - 20px);
    }
    
    .industryInfo img {
        max-width: calc(100% - 20px);
    }

    .industryQuote {
        width: 80%;
    }

}
