/* Hexagon button with SVG background */
#media-center .hexagon-button {
    position: relative;
    display: grid;
    width: 254px;
    height: 54px;
    background: url("../images/hexagon-blue-download.svg") no-repeat center !important;
    background-size: auto;
    background-size: contain;
    transition: all 0.9s ease;
    z-index: 1;
    box-sizing: border-box;
    text-align: center;
    line-height: 54px;
    margin-top: 40px;
}

#media-center .hexagon-button {
    color: var(--Blue, #1e3c72);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

#media-center .hexagon-button:hover {
    color: #ca202e !important;
}

/* Hexagon button with SVG background */
#media-center .hexagon-button:hover {
    position: relative;
    display: grid;
    width: 254px;
    height: 54px;
    background: url("../images/hexagon-red-download.svg") no-repeat center !important;
    background-size: auto;
    background-size: contain;
    transition: all 0.3s ease;
    z-index: 1;
    box-sizing: border-box;
}

/* Adding silver lines */
#media-center .hexagon-button::before,
#media-center .hexagon-button::after {
    content: "";
    position: absolute;
    width: 40px;
    /* Adjust the size of the silver lines */
    height: 6px;
    /* Thickness of the silver lines */
    background-color: #ffffff !important;
    /* Silver color */
    z-index: 2;
    /* Ensure they appear above the SVG background */
    transition: all 0.3s ease;
}

#media-center .hexagon-button::before {
    top: -2px;
    left: 63%;
    transform: translateX(-50%);
    height: 6px;
    width: 75px;
}

#media-center .hexagon-button:hover::before {
    left: 43%;
}

#media-center .hexagon-button::after {
    bottom: -2px;
    left: 37%;
    transform: translateX(-50%);
    height: 6px;
    width: 120px;
}

#media-center .hexagon-button:hover:after {
    left: 47% !important;
}

/* Hover effect */
#media-center .hexagon-button:hover {
    color: var(--blue-transparent);
    /* Change text color on hover */
}

#media-center .hexagon-button:hover::before {
    width: 75px;
    /* Expand the silver line on hover */
    left: 50%;
    /* Adjust the left position to move to the right */
    transform: translateX(-50%) translateX(5px);
    /* Moves the line slightly to the right */
}

#media-center .custom-padding {
    padding: 48px;
    border: 1px solid #1e3c72;
    border-radius: 20px;
}

#media-center h2 {
    color: var(--Blue, #1e3c72);
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    /* 65px */
    text-transform: uppercase;
    margin-bottom: 64px;
}

#media-center .row img {
    height: 100px;
}

#media-center .row h4 {
    color: var(--Blue, #1e3c72);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    text-transform: capitalize;
    margin-top: 128px;
    margin-bottom: 0px;
}


@media screen and (max-width: 767px) {
    #media-center h2 {
        font-size: 36px;
        font-style: normal;
        font-weight: 600;
        line-height: 40px;
        /* 111.111% */
        text-transform: uppercase;
        margin-bottom: 40px;
    }

    #media-center p {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        /* 150% */
    }

    #media-center .row h4 {
        margin-top: 30px;
    }
}










/* Media center end */