.text-paragraph {
    color: rgb(68, 77, 85);
}

.text-paragraph-english {
    color: rgb(108, 19, 28);
}

.text-english-decoration {
    text-shadow: 2px 2px 3px rgba(108, 19, 28, 1);
}

.undershadow {
    background: transparent;

    box-shadow: 10px 35px 15px rgba(0, 0, 0, 0.05);
}

.text-decoration {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

.parent {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.info-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: 50vh;
}

.phone {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.grid-social {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto;
    justify-content: center;
    align-content: center;
}

.gr-align-self-center {
    align-self: center;
}

.bg-english  {
    background-color: rgb(108, 19, 28);
}

.border-left-box {
    border-width: 8px !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    body {
        font-size: 2.5rem;
    }

    h1 {
        font-size: calc(2.5rem + 1.5vw)
    }

    h5 {
        font-size: calc(2.5rem)
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    body {
        font-size: 2.5rem;
    }

    h1 {
        font-size: calc(2.5rem + 1.5vw)
    }

    h5 {
        font-size: calc(2.5rem)
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    body {
        font-size: 2.5rem;
    }

    h1 {
        font-size: calc(2.5rem + 1.5vw)
    }

    h5 {
        font-size: calc(2.5rem)
    }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    body {
        font-size: 1rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    .phone {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }

    .border-left-box {
        border-width: 3px !important;
    }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .parent {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .info-box {
        height: 100vh;
    }

    h1 {
        font-size: 2.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }
}