.content {
    width: 88.5%;
    margin-left: auto;
    margin-right: auto;
}

.content h1 {
    padding: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    font-weight: bold;
    border-left: solid 2px #0A1A2F;
    margin-bottom: 1rem;
}

.content {
    line-height: 150%;
}

.content p{
    width: 95%
}

.content a {
    color: black;
    text-underline-offset: 1.5px
}

.contact {
    display: flex;
    margin-top: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.contact div {
    display: flex;
    align-items: center;
}

.contact div img {
    margin-right: 0.8rem;
}

.phone {
    margin-right: 4rem;
}

.poster {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.container {
    text-align: center;
    width: 39%
}

.poster img {
    height: 29rem;
}

.right {
    width: 53%;
}

.imgTextSection .container::after {
    content: "";
    width: 105%;
    height: 29%;
    background-color: #E9E6E2;
    display: block;
    position: absolute;
    top: 39%;
    z-index: -1;
    left: -1rem;
}

.arrow::after {
    height: 1.7rem;
}

main .link {
    position: relative;
    text-decoration: none;
    color: black;
    width: fit-content
}

main .link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: currentColor;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

/* Hover animation */
main .link:hover::before {
    transform: scaleX(1);
}

main .content a:hover {
    transition: transform 0.6s ease;
    transform: translateY(-2px);
}