@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
    box-sizing: border-box;
}

/* Style the body */
body {
    background-color: rgb(255, 255, 255);
    max-width: 100vw;
    margin: auto;
    font-family: 'Google Sans';
}

.container {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* --------------------------------------------------------------------------------------- */

/* link back */
.container .link-back {
    width: 100%;
    margin-top: 5%;
    padding: 0 20%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.container .link-back a {
    font-size: 14px;
    text-decoration: none;
    color: #0C4723;
    text-wrap: wrap;
}

.container .link-back p {
    font-size: 14px;
    text-decoration: none;
    color: #0C4723;
    text-wrap: wrap;
}

.container .link-back a:hover {
    font-size: 14px;
    text-decoration: underline;
    color: #0C4723;
}

/* ---------------------------------------------------------------------------------- */

/* intro */
.container .intro {
    width: 100%;
    height: fit-content;
    padding: 5% 20% 20px 20%;
}

.container .intro h1 {
    font-size: 30px;
}

/* ------------------------------------------------------------------------------------ */

/* intro */
.container .head-req-form {
    width: 100%;
    height: fit-content;
    padding: 5% 20% 20px 20%;
}

.container .head-req-form h1 {
    font-size: 30px;
}

/* ---------------------------------------------------------------------------------------- */

.req-form {
    width: 100%;
    padding: 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-form img {
    width: 50%;
    margin: 0 10px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* -------------------------------------------------------------------------------------- */

.btn-load {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.btn-load button {
    font-size: 16px;
    font-family: inherit;
    padding: 10px 30px;
    background-color: #0C4723;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.5);
    transition: .3s;
    cursor: pointer;
}

.btn-load button a {
    text-decoration: none;
    color: white;
}

.btn-load button:hover {
    background-color: hsla(143, 71%, 16%, 0.3);
}

.btn-load button:hover a {
    color: #0C4723;
}

/* -------------------------------------------------------------------------------------- */

/* hr */
.container hr {
    width: 80%;
    border: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-radius: 100px;
    border-image-source: linear-gradient(to left, #D80000, #6C0000);
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

/* ----------------------------------------------------------------------------------------------- */

/* available-services */
.container .available-services {
    width: 100%;
    padding: 0px 20%;
    margin-top: 100px;
}

.container .available-services .as-info {
    width: 100%;
    border-radius: 20px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
}

.container .available-services .as-info h3 {
    width: fit-content;
    padding: 20px 50px;
    border-radius: 0px 20px 20px 0px;
    color: white;
    background: linear-gradient(270deg, #BF0201, #600101);
    font-size: 20px;
}

.container .available-services .as-info p {
    text-align: justify;
    padding: 0px 50px;
    line-height: 30px;
    font-size: 18px;
}

.container .available-services .as-info ul {
    padding: 0px 80px;
    text-align: justify;
    font-size: 18px;
}

sup{
    color: #ff0000;
    font-weight: bold;
}

/* --------------------------------------------------------------------------------- */

/* blank */
.container .blank {
    width: 100%;
    height: 500px;
}

/* ------------------------------------------------------------------ */

/* responsive */
@media screen and (max-width: 1320px) {

    /* intro */
    .container .intro {
        padding: 100px 15%;
    }

    /* link back */
    .container .link-back {
        padding: 0 15%;
    }

    /* available-services */
    .container .available-services {
        width: 100%;
        padding: 0px 15%;
        margin-top: 100px;
    }
}

/* responsive phone */
@media screen and (max-width: 800px) {

    /* link back */
    .container .link-back {
        padding: 0 10%;
    }

    /* intro */
    .container .intro {
        padding: 30px 10%;
    }

    .req-form {
        width: 100%;
        padding: 0 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .req-form img {
        width: 100%;
        margin: 0 5px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    }

    /* --------------------------------- */

    /* available-services */
    .container .available-services {
        width: 100%;
        padding: 0px 10%;
        margin-top: 100px;
    }

    .container .available-services .as-info h3 {
        font-size: 18px;
    }

    .container .available-services .as-info p {
        font-size: 14px;
    }

    .container .available-services .as-info ul {
        font-size: 14px;
    }
}