h1,
h2 {
    color: var(--theme_primary);
    margin: 0;
}

.industry-main {
    padding: 30px;
    padding-top: 115px;
    background-color: var(--background_secondary);
}

#industry-container {
    max-width: 1700px;
    margin: auto;
}

.industry-description {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    justify-content: space-between;
    padding: 100px 0;
    padding-bottom: 220px;
}

.industry-text h1 {
    padding-bottom: 20px;
    margin: 0;
}

.industry-text>p {
    font-size: 20px;
    color: var(--normal_text);
    padding-bottom: 20px;
    margin: 0;

}

.industry-text {
    width: 65%;
}

.industry-img>img {
    height: 500px;
    width: 500px;
}



.industry-wrapper {
    padding: 15px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px var(--theme_primary);
    transition: all 1s;
    background: var(--background_secondary);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    row-gap: 20px;
    text-align: left;
}

.industry-wrapper:nth-child(odd) {
    flex-wrap: wrap;
}

.industry-wrapper:nth-child(even) {
    flex-direction: row-reverse;
    flex-wrap: wrap;
}


.industry-wrapper-description {
    width: 65%;
    display: flex;
    align-items: center;
}

.industry-wrapper-description p {
    color: var(--normal_text);
    font-size: 18px;
}

.industry-wrapper-description h2 {
    padding-bottom: 20px;
    font-size: 28px;
    color: var(--theme_primary);
}

.industry-wrapper-description>.btn-green {
    font-size: 20px;
    padding: 10px 30px;
    font-weight: 550 !important;
}

.industry-wrapper-img {
    text-align: center;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-wrapper-img>img {
    height: 300px;
    width: 300px;
}


/* Hover Line animation on services section */
@media(max-width: 1570px) {
    .industry-text {
        width: 60%;
    }
}

@media(max-width: 1380px) {
    .industry-text {
        width: 50%;
    }
}

@media(max-width: 1120px) {
    .industry-img>img {
        height: 400px;
        width: 400px;
    }
}

@media(max-width: 940px) {
    .industry-img>img {
        height: 300px;
        width: 300px;
    }
}

@media(max-width: 1300px) {
    .industry-wrapper-img img {
        height: 250px;
        width: 250px;
    }
}

@media(max-width: 730px) {
    .industry-description {
        padding: 70px 0;
    }

    .industry-img {
        padding-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    .industry-text {
        width: 100%;
        text-align: left;
    }
}

@media(max-width: 360px) {
    .industry-img img {
        height: 200px;
        width: 200px;
    }
}

@media(max-width: 1120px) {
    .industry-wrapper-img img {
        height: 220px;
        width: 220px;
    }
}

@media(max-width: 950px) {
    .industry-wrapper-img img {
        height: 200px;
        width: 200px;
    }
}

@media(max-width: 830px) {
    .industry-wrapper-img img {
        height: 150px;
        width: 150px;
    }

    .industry-wrapper-description {
        width: 100%;
    }

    .industry-wrapper-img {
        text-align: center;
        width: 100%;
    }
}

@media(max-width: 800px) {
    .industry-wrapper-img img {
        height: 100px;
        width: 100px;
    }
}