* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

.navbar {
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 50px;
    padding-left: 50px;
}

#navbar__logo {
    background-color: #fff;
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.navbar_logo-img {
    margin-right: 0.5rem;
    height: 60px;
    width: 60px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background-image: linear-gradient(to left, #f77062 0%, #fe5196 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Added to ensure text stays visible */
}

.button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #d81919;
    transition: all 0.35s;
    border-radius: 4px;
    z-index: -1; /* Added to move the pseudo-element behind the text */
}

.button:hover {
    color: #fff;
}

.button:hover:after {
    width: 100%;
}


.navbar__links:hover {
    color: #f77062;
    transition: all 0.35s ease;
}

@media screen and (max-width: 1280px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        align-items: center;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        height: 90vh;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 90vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Main Content CSS */
.main {
    background-color: #131313;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background-color: #131313;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding-right: 50px;
    padding-left: 50px;
}

.main__content {
    color: #fff;
    width: 100%;
}

.main__content h1 {
    font-size: 4rem;
    background-color: #ff0844;
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main__content h2 {
    font-size: 4rem;
    margin-top: 10px;
    background-color: #ff0844;
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.main__btn {
    font-size: 1rem;
    background-image: linear-gradient(to top, #f77062 0%, #fe5196 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #d81919;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    color: #fff;
}

.main__btn:hover:after {
    width: 100%;
}

.main__img--container {
    text-align: center;
}

#main__img {
    height: 100%;
    width: 100%;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .main__container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 3rem;
    }

    .main__content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main__content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2 {
        font-size: 2rem;
    }

    .main__content p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* Services Section */
.services {
    background: #131313;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.services h1 {
    background-color: #ff0844;
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 2.5rem;
}

.services__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services__card {
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.6) 100%
    ),
    url('../images/Irishwater-index.jpg');
    background-size: cover;
    position: relative;
    color: #fff;
}

.services__card:before {
    opacity: 0.2;
}

.services__card:nth-child(2) {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.9) 100%
    ),
    url('https://i.redd.it/rte8l8apcg371.jpg');
}

.services__card:nth-child(3) {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.9) 100%
    ),
    url('https://gript.ie/wp-content/uploads/2020/08/HDICA.jpg');
}

.services__card h2 {
    position: absolute;
    top: 350px;
    left: 30px;
}

.services__card p {
    position: absolute;
    top: 400px;
    left: 30px;
}

.services__card button {
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: linear-gradient(to top, #f77062 0%, #fe5196 100%);;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
}

.services__card button:hover {
    cursor: pointer;
}

.services__card:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

@media screen and (max-width: 1350px) {
    .services {
        height: 1600px;
    }

    .services h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }
}

@media screen and (max-width: 480px) {
    .services {
        height: 1400px;
    }

    .services h1 {
        font-size: 1.2rem;
    }

    .services__card {
        width: 300px;
    }
}

/* Footer CSS */
.footer__container {
    background-color: #141414;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__logo {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
}

.footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer__link--items h2 {
    margin-bottom: 16px;
}

.footer__link--items > h2 {
    color: #fff;
}

.footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer__link--items a:hover {
    color: #e9e9e9;
    transition: 0.3s ease-out;
}

/* Social Icons */
.social__icon--link {
    color: #fff;
    font-size: 24px;
}

.social__media {
    max-width: 1000px;
    width: 100%;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.social__logo {
    color: #fff;
    justify-self: start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.website__rights {
    color: #fff;
}

@media screen and (max-width: 820px) {
    .footer__links {
        padding-top: 2rem;
    }

    #footer__logo {
        margin-bottom: 2rem;
    }

    .website__rights {
        margin-bottom: 2rem;
    }

    .footer__link--wrapper {
        flex-direction: column;
    }

    .social__media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer__link--items {
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}

.About {
    background-color: #131313;;
}

.About__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 5rem auto;
    height: 60vh;
    background-color: #131313;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding-right: 50px;
    padding-left: 50px;
}

.About__content {
    color: #fff;
    width: 100%;
}


.about__img {
    height: 90%;
    width: 90%;
}

.About__content h1 {
    font-size: 4rem;
    background-color: #ff0844;
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.About__content p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .About__container {
        grid-template-columns: 1fr;
        height: auto;
        padding-right: 20px;
        padding-left: 20px;
    }

    .about__img:last-child {
        display: none;
    }
}

.Philosophy__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.Philosophy__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background-color: #131313;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding-right: 50px;
    padding-left: 50px;
}

.Philosophy__content {
    color: #fff;
    width: 100%;
}

.Philosophy__content h1 {
    font-size: 4rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Philosophy__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.articles {
    padding: 20px;
    background-color: #131313;
    text-align: center;
    color: #fff;
}

.articles__title {
    margin-bottom: 100px;
}

.articles__title h1 {
    font-size: 4rem;
    background-color: #ff0844;
    background-size: 100%;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.articles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*grid-auto-rows: minmax(200px, auto);*/
    grid-gap: 20px;
    background-color: #131313;
}

.article {
    padding: 10px;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article_image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.article_image::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}*/

.article_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption {
    position: absolute;
    text-align: left;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.caption .date {
    font-style: italic;
}

@media (max-width: 480px) {
    .caption .headline {
        font-size: 5vw;
    }
}

.article_image:hover {
    transform: scale(1.050);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.article__thumbnail {
    width: 100%;
    height: 400px;
    max-width: 800px;
}

.article__title {
    position: absolute;
    bottom: 10px;
    left: 15px;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.article__author {
    font-size: 14px;
    color: #888;
}

.article__date {
    font-size: 14px;
    color: #fff;
}

.article-link,
.article-link:hover,
.article-link:visited,
.article-link:focus {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 767px) {
    .articles__grid {
        grid-template-columns: 1fr;
    }

    .article {
        width: 100%;
    }

    .article__thumbnail {
        height: 70%;
    }

}

body {
    background-color: #131313;
}

.reader__container {
    background-color: #131313;
    color: white;
    font-size: 18px;
    text-align: center;
}

.reader__container h1 {
    color: #ff0844;

}

.reader__thumbnail {
    /*width: 600px;*/
    /*height: 600px;*/
    /*overflow: hidden;*/
    /*display: flex;*/
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.reader__thumbnail img {
    /*width: 100%;*/
    /*height: 100%;*/
    object-fit: cover;
    object-position: center;
    max-width: 360px;
    height: auto;
}

.reader__title {
    margin-top: 40px;
}

.reader__author {
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 10px;
    font-size: 24px;
    font-style: italic;
}

.reader__date {
    padding: 10px;
    margin-bottom: 20px;
    font-size: 24px;
}

.reader__content {
    text-align: left;
    margin: 0 auto;
    max-width: 800px;
    padding: 0 20px;
    font-size: 24px;
}

.reader__content p {
    padding: 10px;
}

@media (max-width: 767px) {
    .reader__thumbnail {
        max-width: 100%;
        height: auto;
    }
}

.rebeltelly__content {
    text-align: center;
    padding: 20px;
    color: #fff;
}

.rebeltelly__title {
    color: #ff0844;
    font-size: 4rem;
}

.rebeltelly__header h2 {
    color: #fff;
    text-align: center;
}

.rebeltelly__columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    height: auto; /* Changed from 500px */
}

.rebeltelly__column {
    flex: 1 1 300px;
    background-color: #131313;
    padding: 20px;
    border-radius: 5px;
    justify-content: center;
}

.rebeltelly__column-title {
    font-size: 20px;
    margin-top: 0;
    color: #fff;
    text-align: center;
}

.rebeltelly__facebook-feed,
.rebeltelly__youtube-feed,
.rebeltelly__twitter-feed {
    width: 100%;
    height: 500px; /* Adjusted height for the feeds */
    border: none;
    margin-top: 20px; /* Added margin to separate the feeds */
}

.rebeltelly__logo {
    max-width: 300px;
}

@media (max-width: 480px) {
    .rebeltelly__logo {
        width: 100px;
        height: auto;
    }
}

.container {
    text-align: center;
    color: white;
    padding: 20px;
}

.contact__title {
    font-size: 3rem;
    margin: 20px 0;
    color: #ff0844;
}

.contact__paragraph {
    font-size: 1.5rem;
    margin-top: 50px;
    margin-bottom: 80px;
}

.contact__columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow flex items to wrap */
}

.contact__column {
    flex-basis: 25%;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.contact__column-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff0844;
}

.contact__column-subheading {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact__column-paragraph {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact__social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.contact__social-icons a {
    margin-bottom: 10px;
}

.store__title h2 {
    color: #fff;
    text-align: center;
}

.store__title h1 {
    font-size: 4rem;
    color: #ff0844;
    text-align: center;
    margin-bottom: 100px;
}

.store__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(640px, 2fr));
    grid-gap: 24px;
    background-color: #131313;
    align-items: center;
    justify-items: center;
    grid-auto-rows: 1fr;
}

.store__tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    height: 100%;
    padding: 10px;
    text-align: center;
}

.store__tile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding-bottom: 24px;
}

.store__item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 20px;
    color: #ffffff;
    padding: 50px 10px 10px 10px;
}

@media (max-width: 600px) {
    .store__item {
        grid-template-columns: 1fr;
        padding: 50px 10px 10px 10px;
    }
}

.image {
    display: grid;
    place-items: center;
}

.image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.info-description {
    display: grid;
    grid-template-rows: auto auto;
    grid-gap: 20px;
    text-align: left;
}

.description {
    text-align: left;
}

.description p {
    padding-top: 10px;
}

input[type="text"],
textarea,
input[type="tel"],
input[type="email"],
input[type="submit"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}

input[type="submit"] {
    background-color: #ff0844;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}


.contact__icon--link {
    color: #fff;
    font-size: 80px;
}

.contact__form {
    padding: 30px;
    color: #fff;
    /*border: 1px solid white; !* Add border property *!*/
}

@media (max-width: 767px) {
    .contact__column {
        flex-basis: 100%; /* Each column takes 100% width on mobile */
    }
}

.redlines__title h1 {
    font-size: 4rem;
    color: #ff0844;
    text-align: center;
}

.redlines__title h2 {
    color: #fff;
    text-align: center;
}

.redlines__container {
    display: flex;
}

.redlines__articles {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    cursor: pointer;
}

.redlines__article {
    width: 70%;
    background-color: white;
    margin: 10px;
    padding: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.redlines__article a {
    text-decoration: none;
}

.redlines__article:hover {
    transform: scale(1.05);
}

.redlines__article:hover h2 {
    color: red;
    transition: all 0.3s;
}

.redlines__thumbnail {
    width: 33%;
    margin-right: 10px;
}

.redlines__thumbnail img {
    width: 100%;
    height: auto;
}

.redlines__content {
    width: 66%;
    color: #131313;
}

.redlines__upload-date {
    font-size: 14px;
    margin-top: 5px;
}

.redlines__read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #333;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.redlines__read-more:hover {
    background-color: red;
}

.redlines__sidebar {
    width: 25%;
    padding: 20px;
}

.redlines__about,
.redlines__archive {
    color: white;
}

.redlines__archive ul {
    list-style-type: none;
    padding: 0;
}

.redlines__archive li {
    margin-bottom: 5px;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .redlines__container {
        flex-direction: column;
    }

    .redlines__articles {
        width: 100%;
    }

    .redlines__article {
        width: 100%;
    }

    .redlines__thumbnail {
        width: 100%;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .redlines__content {
        width: 100%;
    }

    .redlines__sidebar {
        width: 100%;
    }

    .redlines__upload-date {
        font-size: 10px;
    }

    .redlines__content h2 {
        font-size: 16px;
    }

    .redlines__blurb {
        font-size: 12px;
    }
}

/* Font Resize for Screens Less than 1200px */
@media (max-width: 1200px) {
    .redlines__content h2 {
        font-size: 16px;
    }

    .redlines__blurb {
        font-size: 12px;
    }

    .redlines__upload-date {
        font-size: 10px;
    }
}

.redlinesreader__container {
    background-color: #131313;
    color: white;
    font-size: 18px;
    text-align: center;
}

.redlinesreader__container h1 {
    color: #ff0844;

}

.redlinesreader__thumbnail {
    max-width: 100%;
    height: 500px;
}

.redlinesreader__title {
    margin-top: 40px;
}

.redlinesreader__author {
    margin-bottom: 20px;
    font-size: 24px;
    font-style: italic;
}

.redlinesreader__date {
    margin-bottom: 20px;
    font-size: 24px;
}

.redlinesreader__content {
    text-align: left;
    margin: 0 auto;
    max-width: 800px;
    padding: 0 20px;
    font-size: 24px;
}

@media (max-width: 767px) {
    .redlinesreader__thumbnail {
        max-width: 100%;
        height: auto;
    }
}

/* about2tiles Section */
.about2tiles {
    background: #131313;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.about2tiles h1 {
    background-color: #ff0844;
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    text-decoration: none;
}

.about2tiles__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about2tiles__card {
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.6) 100%
    ),
    url('../images/Irishwater-index.jpg');
    background-size: cover;
    position: relative;
    color: #fff;
}

.about2tiles__card:before {
    opacity: 0.2;
}

.about2tiles__card:nth-child(2) {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.9) 100%
    ),
    url('https://i.redd.it/rte8l8apcg371.jpg');
}

.about2tiles__card:nth-child(3) {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.9) 100%
    ),
    url('https://gript.ie/wp-content/uploads/2020/08/HDICA.jpg');
}

.about2tiles__card h2 {
    position: absolute;
    top: 350px;
    left: 30px;
}

.about2tiles__card p {
    position: absolute;
    top: 400px;
    left: 30px;
}

.about2tiles__card button {
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: linear-gradient(to top, #f77062 0%, #fe5196 100%);;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
}

.about2tiles__card button:hover {
    cursor: pointer;
}

.about2tiles__card:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

@media screen and (max-width: 1350px) {
    .about2tiles {
        height: 1600px;
    }

    .about2tiles h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }
}
  





