@import url('https://fonts.cdnfonts.com/css/avenir');

:root {
    /* Header colors */
    --header-bg-col: #fe6601;
    --header-txt-color: #281e32;

    /* Navigation colors */
    --nav-link-col: #281e32;
    --nav-link-col-hov: #bcbcbc;
    --nav-link-col-act: #bcbcbc;
    --nav-btn-col: #f9f9f9;

    /* Footer colors */
    --footer-bg-col: #fe6601;
    --footer-label-col: #281e32;
    --footer-link-col: #281e32;
    --footer-link-col-hov: #bcbcbc;

    /* General definitions*/
    --comp-name-col: #281e32;
    --comp-name-col-hov: #fe6601;
    --card-bg: #ffffff;
    --card-txt-color: #281e32;
    --card-top: #fe6601;
    --card-top-txt-color: #fe6601c0;
    --card-logo-bg: #dedede;
    --content-title-col: #281e32;
    --content-icon-col: #fe6601;
    --content-bg: #f0f0f0;
    --link-color: #281e32;
    --link-color-hov: #fe6601;
}

/* Global definnitions */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Avenir';
}

html {
    font-size: 10px;
}

body {
    margin: 0;
    background-color: var(--content-bg);
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}

.contact-link {
    text-decoration: none;
    color: var(--link-color);
}

.contact-link:hover {
    color: var(--link-color-hov);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.text-justify {
    text-align: justify;
}

/* Header definitions */
header {
    margin: 0;
    padding: 0;
    background-color: var(--header-bg-col);
    color: var(--header-txt-color);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.head-logo {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-items: center;

    & .logo-link {
        text-decoration: none;

        &  .logo-pic {
            width: 75%;
            height: auto;
        }
    }
}

/* Footer definitions */
footer {
    margin: 0;
    padding: 0;
    background-color: var(--footer-bg-col);

    & .foot-struc {
        width: 100%;
        display: flex;
        margin: 0 auto;
        max-width: 1200px;

        & .foot-blk {
            display: flex;
            flex-direction: column;

            & .foot-blk-toggle {
                display: none;
            }

            & .foot-blk-toggle-label {
                text-transform: capitalize;
                color: var(--footer-label-col);
            }

            & .foot-blk-content {
                display: flex;
                flex-direction: column;

                & .foot-blk-link {
                    text-decoration: none;
                    color: var(--footer-link-col);
                    transition: all 500ms;
                }

                & .foot-blk-link:hover {
                    color: var(--footer-link-col-hov);
                }
            }
        }

        & .foot-logo {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;

            & .foot-logo-pic {
                width: 100%;
                height: auto;
            }
        }

        & .foot-copy {
            color: var(--footer-link-col);
        }
    }

    & .foot-legal {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;

        & .foot-legal-link {
            text-decoration: none;
            color: var(--footer-link-col);
            transition: all 500ms;
        }

        & .foot-legal-link:hover {
            color: var(--footer-link-col-hov);
        }
    }
}

/* Navigation definitions */
nav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

    & .menu-toggle {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
    }

    & .menu-top {
        display: flex;

        & .menu-entry {
            display: inline-block;
            list-style-type: none;

            & .menu-link {
                display: inline-block;
                text-decoration: none;
                text-transform: uppercase;
                color: var(--nav-link-col);
                background-color: var(--card-bg);
                padding: 1rem 2rem;
                border-radius: 5px;
                transition: all 500ms;
                font-weight: bold;
                width: 100%;
            }

            & .menu-link:active {
                color: var(--nav-link-col-act);
                background-color: var(--nav-link-col);
            }

            & .menu-link:hover {
                color: var(--nav-link-col-hov);
                background-color: var(--nav-link-col);
            }
        }
    }

    & .menu-button {
        display: flex;
        position: absolute;
        border: 2px solid var(--nav-btn-col);
        color: var(--nav-btn-col);
        top: 50%;
        transform: translateY(-50%);

        & .menu-button-inner {
            display: block;
            position: relative;
            width: 100%;
            height: 100%;

            & .menu-open {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                align-content: center;
                transition: opacity 400ms ease-in-out;
            }

            & .menu-close {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                align-content: center;
                opacity: 0;
                transition: opacity 400ms ease-in-out;
            }
        }

    }
}

/* Content block definitions */
.content {
    padding: 2rem;

    & .content-head {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;

        & .content-title {
            width: 100%;
            color: var(--content-title-col);
            font-weight: bold;
        }

        & .content-info {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;

            & .content-icon {
                color: var(--content-icon-col);
            }
        }
    }

    & .card-box {
        display: flex;

        & .card {
            position: relative;
            /* border: 2px solid #bebebe; */
            background-color: var(--card-bg);
            border-radius: 5px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            font-size: 1.8rem;
            color: var(--card-txt-color);

            & .comp-box {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                & .comp-info {
                    display: flex;
                    flex-direction: column;

                    & .comp-name {
                        text-wrap: wrap;
                        text-decoration: none;
                        font-weight: bold;
                        color: var(--comp-name-col);
                    }

                    & .comp-name:hover {
                        color: var(--comp-name-col-hov);
                    }

                    & .comp-add {
                        display: none;
                    }

                    & .comp-addr {
                        text-wrap: wrap;
                    }
                }

                & .comp-contact {
                    border-top: 1px solid #cccccc;
                    border-bottom: 1px solid #cccccc;
                    display: flex;
                }

                & .comp-logo {
                    display: none;
                }
            }

            & .comp-tags {
                width: 100%;
                text-wrap: wrap;
            }
        }

        & .card-top {
            /* border: 2px solid var(--card-top); */
            /* box-shadow: rgba(254, 102, 1, 0.45) 0px 5px 15px, rgba(254, 102, 1, 0.5) 0px 10px 40px -12px inset, rgba(254, 102, 1, 0.6) 0px 18px 36px -18px inset; */
            box-shadow: rgba(254, 102, 1, 0.45) 0px 5px 15px, rgba(254, 102, 1, 0.6) 0px 18px 36px -18px inset;
        }

        & .card-top-mark {
            position: absolute;
            right: 0;
            top: 0.5rem;
            color: var(--card-top-txt-color);
            border-bottom-left-radius: 10px;
        }
    }

    & .details {
        position: relative;
        /* border: 2px solid #bebebe; */
        background-color: var(--card-bg);
        border-radius: 5px;
        border-top-left-radius: 35px;
        border-bottom-right-radius: 35px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        font-size: 1.8rem;

        & .detail-head {
            display: flex;

            & .detail-info {
                display: flex;
                flex-direction: column;

                & .detail-name {
                    text-wrap: wrap;
                    font-weight: bold;
                    color: var(--comp-name-col);
                }

                & .detail-short {
                    text-wrap: wrap;
                    font-weight: bold;
                }

                & .detail-addr {
                    text-wrap: wrap;
                }
            }

            & .detail-logo {
                & .detail-logo-pic {
                    width: 100%;
                    height: auto;
                }
            }
        }

        & .detail-contact {
            border-top: 1px solid #bebebe;
            border-bottom: 1px solid #bebebe;
            display: flex;
        }

        & .detail-desc {
            text-align: justify;
        }

        & .detail-competences {
            border-top: 1px solid #bebebe;
        }
    }

    & .inp-box {
        position: relative;
        border: 2px solid #bebebe;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

        & .inp-title {
            display: block;
            width: 100%;
            font-weight: bold;
            text-transform: capitalize;
        }

        & .inp-info-box {
            display: block;
            width: 100%;

            & .inp-info-row {
                display: flex;
                width: 100%;

                & .inp-info-title {
                    display: block;
                    font-weight: bold;
                }

                & .inp-info-detail {
                    display: block;
                }
            }
        }

        & .inp-blk {
            display: block;
            width: 100%;

            & .inp-blk-head {
                display: block;
                width: 100%;
            }

            & .inp-blk-txt{
                display: block;
                width: 100%;
            }
        }
    }
}

/* MQ - Desktop */
@media screen and (min-width: 1280px) {
    header {
        padding: 0.5rem 2rem;
        font-size: 2rem;
        display: grid;
        grid-template-columns: 25% 75%;
    }

    .banner {
        display: block;
        width: 100%;
    }

    .head-logo {
        width: 100%;
        padding: 1rem 0;

        & .logo-link {
            &  .logo-pic {
                width: 100%;
                height: auto;
            }
        }
    }

    footer {
        padding: 4rem 0 5rem 0;
        font-size: 2rem;

        & .foot-struc {
            flex-direction: row;
            justify-content: space-around;
            align-items: flex-start;
            border-bottom: 2px solid var(--footer-link-col);
            padding: 2rem;

            & .foot-blk {
                gap: 2rem;

                & .foot-blk-toggle-label {
                    font-size: 2.5rem;
                }

                & .foot-blk-content {
                    & .foot-blk-link {
                        padding: 0.3rem 1rem;
                        font-size: 2rem;
                    }
                }
            }

            & .foot-logo {
                width: 600px;
            }

            & .foot-copy {
                font-size: 2rem;
                text-align: center;
                padding: 2rem 0;
            }
        }
        
        & .foot-legal {
            width: 100%;
            align-items: center;
            justify-content: center;
            gap: 4rem;

            & .foot-legal-link {
                font-size: 1.8rem;
            }
        }
    }

    nav {
        padding: 2.2rem 2rem 1rem 2rem;
        width: 100%;

        & .menu-top {
            width: 100%;
            flex-direction: row;
            /* justify-content: space-between; */
            align-items: center;
            gap: 4rem;

            & .menu-entry {
                flex: 1 1 auto;

                & .menu-link {
                    text-align: center;
                }
            }
        }

        & .menu-toggle {
            display: none;
        }

        & .menu-button {
            display: none;
        }
    }

    .content {
        padding: 2rem;
        padding-bottom: 5rem;
        min-height: calc(100svh - 565px);

        & .content-head {
            padding: 3rem;
            gap: 3rem;

            & .content-title {
                font-size: 3rem;
            }

            & .content-info {
                gap: 2rem;

                & .content-icon {
                    font-size: 2.4rem;
                }

                & .content-counter {
                    font-size: 2rem;
                }
            }
        }

        & .card-box {
            flex-direction: row;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 3.5rem;

            & .card{
                padding: 3rem 2rem 1rem 2rem;
                width: 100%;
                width: 500px;

                & .comp-box {

                    & .comp-info {
                        gap: 1.5rem;

                        & .comp-name {
                            font-size: 2rem;
                        }

                        & .comp-add {
                            font-size: 2rem;
                        }

                        & .comp-addr {
                            font-size: 1.7rem;
                        }
                    }

                    & .comp-contact{
                        margin: 1rem 0;
                        padding: 1rem 1.5rem;
                        gap: 0.5rem;
                        justify-content: space-around;
                        flex-direction: column;
                    }

                    & .comp-logo {
                        display: none;
                    }
                }

                & .comp-tags {
                    text-align: right;
                    padding: 0.5rem 0 0 0;
                    font-size: 1.2rem;
                }
            }

            & .card-top-mark {
                padding: 1rem 2rem;
                font-size: 2rem;
            }
        }

        & .details {
            padding: 3rem 4rem;

            & .detail-head {
                flex-direction: row;
                justify-content: space-between;

                & .detail-info {
                    width: 700px;
                    gap: 2rem;

                    & .detail-name {
                        font-size: 3rem;
                    }

                    & .detail-short {
                        font-size: 2.5rem;
                    }

                    & .detail-addr {
                        font-size: 2rem;
                    }
                }

                & .detail-logo {
                    width: 400px;
                }
            }

            & .detail-contact {
                margin: 2rem 0;
                padding: 2rem;
                flex-direction: row;
                justify-content: space-around;
                font-size: 2rem;
            }

            & .detail-desc {
                padding: 2rem 0;
                font-size: 2rem;
            }

            & .detail-competences {
                padding: 2rem 5rem;
                margin: 2rem 0;
                font-size: 2rem;
            }
        }

        & .inp-box {
            padding: 5rem 0;
            font-size: 2.2rem;

            & .inp-title {
                padding: 3rem 7rem;
                font-size: 5rem;
            }

            & .inp-info-box {
                padding: 2rem 7rem;

                & .inp-info-row {
                    padding: 1rem 0;
                    flex-direction: row;
                    justify-content: flex-start;
                    gap: 2rem;

                    & .inp-info-title {
                        display: inline-block;
                    }

                    & .inp-info-detail {
                        width: 80%;
                    }
                }
            }

            & .inp-blk {
                padding: 1.5rem 7rem;

                & .inp-blk-head {
                    font-size: 2.4rem;
                    font-weight: bold;
                    /* text-align: center; */
                }

                & .inp-blk-txt {
                    padding-top: 2rem;
                    font-size: 1.8rem;
                }
            }
        }
    }
}

/* MQ - Tablet */
@media screen and (min-width: 769px) and (max-width: 1279px) {
    header {
        padding: 0.5rem 2rem;
        font-size: 1.6rem;
        display: grid;
        grid-template-columns: 400px auto;
        position: relative;
    }

    .banner {
        display: block;
        width: 100%;
    }

    .head-logo {
        padding: 1rem 0;

        & .logo-link {
            &  .logo-pic {
                width: 100%;
                height: auto;
            }
        }
    }

    footer {
        padding: 2rem 0 3rem 0;
        font-size: 1.6rem;

        & .foot-struc {
            padding: 2rem;
            flex-direction: row;
            justify-content: space-around;
            align-items: flex-start;
            border-bottom: 2px solid var(--footer-link-col);

            & .foot-blk {
                gap: 1rem;

                & .foot-blk-toggle-label {
                    font-size: 2.2rem;
                }

                & .foot-blk-content {
                    & .foot-blk-link {
                        padding: 0.15rem 0.8rem;
                        font-size: 1.6rem;
                    }
                }
            }

            & .foot-logo {
                width: 400px;
            }

            & .foot-copy {
                font-size: 1.8rem;
                text-align: center;
                padding: 1rem 0;
            }
        }

        & .foot-legal {
            width: 100%;
            align-items: center;
            justify-content: center;
            gap: 4rem;
            padding-top: 1rem;

            & .foot-legal-link {
                font-size: 1.6rem;
            }
        }
    }

    nav {
        padding: 2.2rem 2rem 1rem 2rem;
        width: 100%;

        & .menu-top {
            background-color: var(--header-bg-col);
            position: absolute;
            top: 90px;
            left: 0;
            width: 100%;
            max-height: 0;
            transition: max-height 500ms ease-in-out;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
            overflow: hidden;
            z-index: 200;

            & .menu-entry {
                width: 80dvw;
                padding-bottom: 1.5rem;

                & .menu-link {
                    width: 100%;
                    padding: 0.9rem 2rem;
                    font-size: 1.8rem;
                    text-align: center;
                }
            }
        }

        & .menu-toggle {
            display: block;
            right: 1.8rem;
            width: 40px;
            height: 40px;
            z-index: 10;
        }

        & .menu-button {
            padding: 2px;
            border-radius: 5px;
            height: 40px;
            width: 40px;
            right: 1.8rem;

            & .menu-button-inner {
                & .menu-open {
                    font-size: 3rem;
                }

                & .menu-close {
                    font-size: 3.3rem;
                }
            }
        }


        & .menu-toggle:checked ~ .menu-button .menu-open {
            opacity: 0;
        }

        & .menu-toggle:checked ~ .menu-button .menu-close {
            opacity: 1;
        }

        & .menu-toggle:checked ~ .menu-top {
            max-height: 100svh;
        }
    }

    .content {
        padding: 3rem 1.8rem;
        padding-bottom: 3rem;

        & .content-head {
            padding: 1rem 2rem;
            gap: 2rem;

            & .content-title {
                font-size: 3rem;
            }

            & .content-info {
                gap: 1.5rem;

                & .content-icon {
                    font-size: 1.5rem;
                }

                & .content-counter {
                    font-size: 1.5rem;
                }
            }
        }

        & .card-box {
            flex-direction: row;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 3rem;

            & .card{
                padding: 3rem 2rem;
                width: 400px;

                & .comp-box {

                    & .comp-info {
                        gap: 1rem;

                        & .comp-name {
                            font-size: 2rem;
                        }

                        & .comp-add {
                            font-size: 2rem;
                        }

                        & .comp-addr {
                            font-size: 1.7rem;
                        }
                    }

                    & .comp-contact{
                        margin: 1rem 0;
                        padding: 1rem 1.5rem;
                        gap: 0.5rem;
                        justify-content: space-around;
                        flex-direction: column;
                    }

                    & .comp-logo {
                        display: none;
                    }
                }

                & .comp-tags {
                    text-align: right;
                    padding: 0.5rem 0 0 0;
                    font-size: 1.2rem;  
                }
            }

            & .card-top-mark {
                top: 1.5rem;
                padding: 0.75rem 1.5rem;
                font-size: 1.5rem;
            }
        }

        & .details {
            padding: 3rem 4rem;

            & .detail-head {
                flex-direction: row;
                justify-content: space-between;

                & .detail-info {
                    width: 65%;
                    gap: 2rem;

                    & .detail-name {
                        font-size: 2.5rem;
                    }

                    & .detail-short {
                        font-size: 2rem;
                    }

                    & .detail-addr {
                        font-size: 1.8rem;
                    }
                }

                & .detail-logo {
                    width: 35%;
                }
            }

            & .detail-contact {
                margin: 1.8rem 0;
                padding: 1.8rem;
                flex-direction: row;
                justify-content: space-between;
                font-size: 2rem;
            }

            & .detail-desc {
                padding: 1.8rem 0;
                font-size: 1.8rem;
            }

            & .detail-competences {
                padding: 1.8rem 3.3rem;
                margin: 1.8rem 0;
                font-size: 1.8rem;
            }
        }

        & .inp-box {
            padding: 2rem 0;
            font-size: 2.2rem;

            & .inp-title {
                padding: 3rem;
                font-size: 3rem;
                text-align: center;
            }

            & .inp-info-box {
                padding: 3rem;

                & .inp-info-row {
                    padding: 0.4rem 0;
                    flex-direction: row;
                    justify-content: flex-start;
                    gap: 1rem;
                    font-size: 2rem;

                    & .inp-info-title {
                        display: inline-block;
                        white-space: nowrap;;
                    }

                    & .inp-info-detail {
                        width: 80%;
                    }
                }
            }

            & .inp-blk {
                padding: 1.5rem 3rem;

                & .inp-blk-head {
                    font-size: 2rem;
                    font-weight: bold;
                    text-align: center;
                }

                & .inp-blk-txt {
                    padding-top: 2rem;
                    font-size: 1.8rem;
                    text-align: justify;
                }
            }
        }
    }
}

/* MQ - Mobile */
@media screen and (max-width: 768px) {
    header {
        padding: 1.6rem 0;
        font-size: 1.4rem;
        position: relative;
    }

    .head-logo {
        padding: 1rem 0;

        & .logo-link {
            &  .logo-pic {
                width: 200px;
                height: auto;
            }
        }
    }

    footer {
        padding: 2rem 0 3rem 0;
        font-size: 1.6rem;

        & .foot-struc {
            padding: 0 2rem;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 2px solid var(--footer-link-col);

            & .foot-blk {
                padding: 1rem 3rem;
                width: 100%;
                gap: 1rem;
                align-items: center;

                & .foot-blk-toggle-label {
                    width: 100%;
                    position: relative;
                    font-size: 2rem;
                    text-align: center;
                }

                & .foot-blk-content {
                    transition: all 300ms;
                    align-items: center;

                    & .foot-blk-link {
                        padding: 0.15rem 0.8rem;
                        font-size: 1.6rem;
                    }
                }
            }

            & .foot-logo {
                width: 100%;
                padding: 2.5rem 0;
                justify-content: space-around;
                align-items: center;
                align-content: center;

                & .foot-logo-pic {
                    width: 300px;
                }
            }
        }

        & .foot-legal {
            width: 100%;
            align-items: center;
            justify-content: center;
            gap: 4rem;
            padding-top: 1rem;

            & .foot-legal-link {
                font-size: 1.3rem;
            }
        }
    }

    nav {
        padding: 0;

        & .menu-toggle {
            display: block;
            right: 1.8rem;
            width: 40px;
            height: 40px;
            z-index: 10;
        }

        & .menu-button {
            padding: 2px;
            border-radius: 5px;
            height: 40px;
            width: 40px;
            right: 1.8rem;

            & .menu-button-inner {
                & .menu-open {
                    font-size: 3rem;
                }

                & .menu-close {
                    font-size: 3.3rem;
                }
            }
        }

        & .menu-top {
            background-color: var(--header-bg-col);
            position: absolute;
            top: 82px;
            left: 0;
            width: 100%;
            max-height: 0;
            transition: max-height 500ms ease-in-out;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
            overflow: hidden;
            z-index: 200;

            & .menu-entry {
                width: 80dvw;
                padding-bottom: 1rem;

                & .menu-link {
                    width: 100%;
                    padding: 0.9rem 2rem;
                    font-size: 1.8rem;
                    text-align: center;
                }
            }
        }

        & .menu-toggle:checked ~ .menu-button .menu-open {
            opacity: 0;
        }

        & .menu-toggle:checked ~ .menu-button .menu-close {
            opacity: 1;
        }

        & .menu-toggle:checked ~ .menu-top {
            max-height: 100svh;
        }
    }

    .content {
        padding: 0.5rem;
        padding-bottom: 3rem;

        & .content-head {
            padding: 1rem;
            gap: 1rem;

            & .content-title {
                font-size: 2.2rem;
            }

            & .content-info {
                gap: 1rem;

                & .content-icon {
                    font-size: 1.2rem;
                }

                & .content-counter {
                    font-size: 1.2rem;
                }
            }
        }

        & .card-box {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;

            & .card{
                padding: 3rem 2rem;
                width: 95dvw;

                & .comp-box {
                    flex-direction: column;
                    gap: 2rem;

                    & .comp-info {
                        gap: 1rem;

                        & .comp-name {
                            font-size: 2rem;
                        }

                        & .comp-add {
                            font-size: 2rem;
                        }

                        & .comp-addr {
                            font-size: 1.6rem;
                        }
                    }

                    & .comp-contact{
                        margin: 1rem 0;
                        padding: 1rem 1.5rem;
                        gap: 0.5rem;
                        justify-content: space-around;
                        flex-direction: column;
                        font-size: 1.6rem;
                    }

                    & .comp-logo {
                        width: 90%;
                    }
                }

                & .comp-tags {
                    text-align: right;
                    padding: 0.5rem 0 0 0;
                    font-size: 1.2rem;  
                }
            }

            & .card-top-mark {
                top: 1.5rem;
                padding: 0.75rem 1.5rem;
                font-size: 1.5rem;
            }
        }

        & .details {
            padding: 3rem 4rem;

            & .detail-head {
                flex-direction: column;
                justify-content: space-between;

                & .detail-info {
                    width: 100%;
                    gap: 1.5rem;

                    & .detail-name {
                        font-size: 2.5rem;
                    }

                    & .detail-short {
                        font-size: 2rem;
                    }

                    & .detail-addr {
                        font-size: 1.8rem;
                    }
                }

                & .detail-logo {
                    width: 70%;
                }
            }

            & .detail-contact {
                margin: 1.8rem 0;
                padding: 1.8rem;
                flex-direction: column;
                justify-content: space-between;
                font-size: 2rem;
                gap: 1.5rem
            }

            & .detail-desc {
                padding: 1.8rem 0;
                font-size: 1.8rem;
            }

            & .detail-competences {
                padding: 1.8rem 3.3rem;
                margin: 1.8rem 0;
                font-size: 1.8rem;
            }
        }

        & .inp-box {
            padding: 2rem 0;
            font-size: 2.2rem;

            & .inp-title {
                padding: 3rem;
                font-size: 2.5rem;
                text-align: center;
            }

            & .inp-info-box {
                padding: 3rem;

                & .inp-info-row {
                    padding: 0.4rem 0;
                    flex-direction: column;
                    gap: 0.2rem;
                    font-size: 1.6rem;

                    & .inp-info-title {
                        display: inline-block;
                        white-space: nowrap;
                    }

                    & .inp-info-detail {
                        width: 100%;
                    }
                }
            }

            & .inp-blk {
                padding: 1.5rem 3rem;

                & .inp-blk-head {
                    font-size: 1.8rem;
                    font-weight: bold;
                    text-align: center;
                }

                & .inp-blk-txt {
                    padding-top: 2rem;
                    font-size: 1.6rem;
                    text-align: justify;
                }
            }
        }
    }
}