* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
    background-color: transparent;
}

html {
    scroll-behavior: smooth;
}

:root {
    --main-txt-color: #007F9F;
    --secondary-txt-color: #3897D3;
    --paragraph-txt-color: #6d6d6d;
    --bg-color: #151b29;
    --black-color: #000;
    --white-color: #fff;
}


body {
    line-height: 1;
    font-family: "Roboto", sans-serif;
    background-color: var(--white-color);
}

.header {
    background-color: white;
    /*background-color: #f9f9f9;*/
    width: 100%;
    max-width: 100%;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99;

    .menu-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: 82rem;
    }

    .header-logo {
        margin-right: 2rem;
    }

    #header-main-menu .main-menu {
        list-style: none;
        display: flex;


    }

    #header-main-menu .main-menu li {
        padding: 1rem;
        font-size: 14px;
        cursor: pointer;
        margin-right: 2rem;
    }

    #header-main-menu .main-menu li a {
        color: var(--black-color);
        text-decoration: none;
    }

    #header-main-menu .main-menu li a:hover {
        transition: all .3s ease;
        color: var(--main-txt-color);
    }
}

#content #home {
    
    padding-top: 14rem;

    .big-title {
        font-family: Roboto, sans-serif;
        font-weight: 700;
        font-size: 46px;
        line-height: 133%;
        color: #264549;
        margin-bottom: 1.2rem;
    }

    .content-wrapper {
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .site-description {
        font-size: 24px;
        line-height: 150%;
        color: #214b51;
        margin-bottom: 0;
        padding-bottom: 2rem;
    }

    .home-full-width {
        position: relative;
        height: 100vh;
    }

    .home-full-width .dots {
        position: absolute;
        top: -15rem;
        right: 13rem;
        z-index: -1;
    }

    .home-button {
        font-family: Roboto, sans-serif;
        font-size: 14px;
        line-height: 14px;
        font-weight: 700;
        color: var(--white-color);
        background-color: var(--main-txt-color);
        border: 2px solid var(--main-txt-color);
        display: inline-block;
        position: absolute;
        top: -2.5rem;
        right: 400px;
        text-align: center;
        padding: 27px 40px;
        cursor: pointer;
        text-decoration: none;
        transition: all .2s linear;
        margin-bottom: 17px;
        letter-spacing: 2px;
    }

    .home-button:hover {
        background-color: white;
        border: 2px solid var(--main-txt-color);
        color: var(--main-txt-color);
        transition: all .2s linear;
    }

    .home-full-width-logo {
        display: block;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
    }

    .home-full-width-logo .logo-icon {
        width: 900;
    }
}

#content #business {

    padding: 8.5rem 0;
    position: relative;

    .page-title-holder {
        margin-bottom: 4.6rem;
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .page-title-holder .up-title-text {
        font-size: 90px;
        font-weight: 100;
        color: var(--main-txt-color);
        line-height: 100%;
        margin-bottom: 0;
        height: 58px;
        overflow: hidden;

    }

    .page-title-holder .entry-title {
        color: var(--main-txt-color);
        font-size: 30px;
        line-height: 150%;
        font-weight: 400;
        letter-spacing: 5px;
        padding: 0;
    }

    .content-wrapper {
        width: 70rem;
        margin: 0 auto;
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(3, 1fr);
    }

    .content-wrapper .logo {
        width: 100%;
        height: 600px;
    }

    .content-wrapper article {

        margin-top: 2rem;
        box-shadow: 0px 3px 1px var(--paragraph-txt-color);

    }

    .content-wrapper article h4 {
        color: var(--main-txt-color);
        text-align: center;
        font-size: 1.5rem;
        line-height: 150%;
        font-weight: 600;
        letter-spacing: 5px;
        margin: 1rem 0;
    }

    .content-wrapper article ul {
        list-style: none;
    }

    .content-wrapper article ul li {
        margin: 1rem 0;
        padding: 0 1rem;
    }

    .content-wrapper article ul li::before {
        content: "+ ";
    }
}

#content #about {

    margin-top: 10rem;
    padding: 8.5rem 0;
    background-color: var(--bg-color);
    position: relative;

    .page-title-holder {
        margin-bottom: 4.6rem;
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .page-title-holder .up-title-text {
        font-size: 90px;
        font-weight: 100;
        color: var(--main-txt-color);
        line-height: 100%;
        margin-bottom: 0;
        height: 58px;
        overflow: hidden;

    }

    .dots {
        position: absolute;
        transform: rotate(90deg);
        right: 1rem;
        top: 14rem;
        opacity: 0.33;
        width: 640px;
    }

    .logo {
        position: absolute;
        right: 20rem;
        top: 4rem;
        width: 12rem;
        border-radius: .5rem;
    }

    .page-title-holder .entry-title {
        color: var(--main-txt-color);
        font-size: 30px;
        line-height: 150%;
        font-weight: 400;
        letter-spacing: 5px;
        padding: 0;

    }

    .page-title-holder .page-description {
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        margin-top: 10px;
        color: var(--white-color);
    }

    .page-title-holder .page-text {
        font-size: 25px;
        font-weight: 200;
        line-height: 50px;
        letter-spacing: 1px;
        margin-top: 4rem;
        color: var(--white-color);
    }

    .home-button {
        font-family: Roboto, sans-serif;
        font-size: 14px;
        line-height: 14px;
        font-weight: 700;
        color: var(--white-color);
        background-color: transparent;
        border: 2px solid var(--main-txt-color);
        display: inline-block;
        position: absolute;
        bottom: 2.5rem;
        left: 20%;
        text-align: center;
        padding: 27px 40px;
        cursor: pointer;
        text-decoration: none;
        transition: all .2s linear;
        margin-bottom: 17px;
        letter-spacing: 2px;
    }

    .home-button:hover {
        background-color: white;
        border: 2px solid var(--main-txt-color);
        color: var(--main-txt-color);
        transition: all .2s linear;
    }

}


#content #services {
    
    
    /*border-top: 2px solid var(--main-txt-color);*/

    padding-top: 8.5rem;
    position: relative;

    .page-title-holder {
        margin-bottom: 4.6rem;
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .page-title-holder .up-title-text {
        font-size: 90px;
        font-weight: 100;
        color: var(--main-txt-color);
        line-height: 100%;
        margin-bottom: 0;
        height: 58px;
        overflow: hidden;
    }

    .dots {
        position: absolute;
        right: 13rem;
        top: 0;
        z-index: -1;
    }

    .page-title-holder .entry-title {
        color: var(--main-txt-color);
        font-size: 30px;
        line-height: 150%;
        font-weight: 400;
        letter-spacing: 5px;
        padding: 0;
    }

    .page-title-holder .page-description {
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        margin-top: 10px;
        color: var(--white-color);
    }

    .page-title-holder ul {
        padding: 0 2rem;
        font-weight: 400;
        font-size: 20px;
        line-height: 3rem;
        letter-spacing: 1px;
        margin-top: 2rem;
        color: var(--paragraph-txt-color);
    }

    .home-button {
        font-family: Roboto, sans-serif;
        font-size: 14px;
        line-height: 14px;
        font-weight: 700;
        color: var(--white-color);
        background-color: var(--main-txt-color);
        border: 2px solid var(--main-txt-color);
        display: inline-block;
        position: absolute;
        top: -2.5rem;
        right: 400px;
        text-align: center;
        padding: 27px 40px;
        cursor: pointer;
        text-decoration: none;
        transition: all .2s linear;
        margin-bottom: 17px;
        letter-spacing: 2px;
    }

    .home-button:hover {
        background-color: white;
        border: 2px solid var(--main-txt-color);
        color: var(--main-txt-color);
        transition: all .2s linear;
    }
}


#content #cyber {

    background-color: var(--bg-color);
    padding-top: 8.5rem;

    .page-title-holder {
        margin-bottom: 4.6rem;
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .page-title-holder .up-title-text {
        font-size: 90px;
        font-weight: 100;
        color: var(--main-txt-color);
        line-height: 100%;
        margin-bottom: 0;
        height: 58px;
        overflow: hidden;
    }

    .page-title-holder .entry-title {
        color: var(--white-color);
        font-size: 30px;
        line-height: 150%;
        font-weight: 300;
        letter-spacing: 5px;
        padding: 0;
    }

    .page-title-holder .page-description {
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        margin-top: 10px;
        color: var(--white-color);
    }

    .page-title-holder ul {
        padding: 0 2rem;
        font-weight: 300;
        font-size: 18px;
        line-height: 3rem;
        letter-spacing: 1px;
        margin-top: 2rem;
        color: var(--white-color);
    }

    .content-wrapper {
        width: 70rem;
        margin: 0 auto 1rem auto;
        padding-top: 5rem;
        padding-bottom: 8rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 5rem;
    }

    .content-wrapper .service-num {
        font-size: 16px;
        color: var(--main-txt-color);
        line-height: 100%;
    }

    .content-wrapper .service-txt h4 {
        color: var(--white-color);
        max-width: 280px;
        font-size: 36px;
        color: var(--white-color);
        font-weight: 700;
        line-height: 130%;
    }

    .content-wrapper .service-txt p {
        color: var(--white-color);
        margin-bottom: 13px;
        max-width: 280px;
        color: var(--white-color);
        line-height: 2.3rem;
        font-weight: 300;
    }

}

#content #identity {

    /*border-top: 2px solid var(--main-txt-color);*/

    padding-top: 8.5rem;
    position: relative;

    .page-title-holder {
        margin-bottom: 4.6rem;
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .page-title-holder .up-title-text {
        font-size: 90px;
        font-weight: 100;
        color: var(--main-txt-color);
        line-height: 100%;
        margin-bottom: 0;
        height: 58px;
        overflow: hidden;
    }

    .dots {
        position: absolute;
        right: 13rem;
        top: 0;
        z-index: -1;
    }

    .page-title-holder .entry-title {
        color: var(--main-txt-color);
        font-size: 30px;
        line-height: 150%;
        font-weight: 400;
        letter-spacing: 5px;
        padding: 0;
    }

    .page-title-holder .page-description {
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        margin-top: 10px;
        color: var(--white-color);
    }

    .page-title-holder ul {
        padding: 0 2rem;
        font-weight: 400;
        font-size: 20px;
        line-height: 3rem;
        letter-spacing: 1px;
        margin-top: 2rem;
        color: var(--paragraph-txt-color);
    }

    .home-button {
        font-family: Roboto, sans-serif;
        font-size: 14px;
        line-height: 14px;
        font-weight: 700;
        color: var(--white-color);
        background-color: var(--main-txt-color);
        border: 2px solid var(--main-txt-color);
        display: inline-block;
        position: absolute;
        top: -2.5rem;
        left: 400px;
        text-align: center;
        padding: 27px 40px;
        cursor: pointer;
        text-decoration: none;
        transition: all .2s linear;
        margin-bottom: 17px;
        letter-spacing: 2px;
    }

    .home-button:hover {
        background-color: white;
        border: 2px solid var(--main-txt-color);
        color: var(--main-txt-color);
        transition: all .2s linear;
    }
}

#content #outsourcing {
    margin-top: 10rem;
    padding: 8.5rem 0;
    background-color: var(--bg-color);

    .page-title-holder {
        margin-bottom: 4.6rem;
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .page-title-holder .up-title-text {
        font-size: 90px;
        font-weight: 100;
        color: var(--main-txt-color);
        line-height: 100%;
        margin-bottom: 0;
        height: 58px;
        overflow: hidden;

    }

    .dots {
        position: absolute;
        left: 13rem;
        top: 4rem;
        z-index: -1;
    }

    .page-title-holder .entry-title {
        color: var(--main-txt-color);
        font-size: 30px;
        line-height: 150%;
        font-weight: 400;
        letter-spacing: 5px;
        padding: 0;

    }

    .page-title-holder .page-description {
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        margin-top: 10px;
        color: var(--white-color);
    }

    .page-title-holder .list-container {
        justify-content: space-between;
    }

    .page-title-holder ul {
        width: 100%;
        padding: 0 2rem;
        font-weight: 400;
        font-size: 20px;
        line-height: 3rem;
        letter-spacing: 1px;
        margin-top: 2rem;
        color: var(--white-color);
    }

    .page-title-holder .right-list {
        padding: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 1rem;
        list-style: none;
        color: var(--main-txt-color);
        text-align: center;
    }

    .page-title-holder .right-list li {
        border: 1px solid var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-title-holder .right-list .four {
        grid-column: 1 / 2;
        grid-row: 2;
    }

    .page-title-holder .right-list .five {
        grid-column: 2 / 4;
        grid-row: 2;
    }



}

#content #software {

    /*border-top: 2px solid var(--main-txt-color);*/

    padding-top: 8.5rem;
    position: relative;

    .page-title-holder {
        margin-bottom: 4.6rem;
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .page-title-holder .up-title-text {
        font-size: 90px;
        font-weight: 100;
        color: var(--main-txt-color);
        line-height: 100%;
        margin-bottom: 0;
        height: 58px;
        overflow: hidden;
    }

    .dots {
        position: absolute;
        right: 13rem;
        top: 0;
        z-index: -1;
    }

    .page-title-holder .entry-title {
        color: var(--main-txt-color);
        font-size: 30px;
        line-height: 150%;
        font-weight: 400;
        letter-spacing: 5px;
        padding: 0;
    }

    .page-title-holder .page-description {
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        margin-top: 10px;
        color: var(--white-color);
    }

    .page-title-holder ul {
        padding: 0 2rem;
        font-weight: 400;
        font-size: 20px;
        line-height: 3rem;
        letter-spacing: 1px;
        margin-top: 2rem;
        color: var(--paragraph-txt-color);
    }

    .home-button {
        font-family: Roboto, sans-serif;
        font-size: 14px;
        line-height: 14px;
        font-weight: 700;
        color: var(--white-color);
        background-color: var(--main-txt-color);
        border: 2px solid var(--main-txt-color);
        display: inline-block;
        position: absolute;
        top: -2.5rem;
        left: 400px;
        text-align: center;
        padding: 27px 40px;
        cursor: pointer;
        text-decoration: none;
        transition: all .2s linear;
        margin-bottom: 17px;
        letter-spacing: 2px;
    }

    .home-button:hover {
        background-color: white;
        border: 2px solid var(--main-txt-color);
        color: var(--main-txt-color);
        transition: all .2s linear;
    }
}


#content #contact {
    padding: 8.5rem 0 2rem 0;
    position: relative;
    background-color: var(--main-txt-color);

    .page-title-holder {
        margin-bottom: 4.6rem;
        width: 70rem;
        margin: 0 auto 1rem auto;
    }

    .page-title-holder .up-title-text {
        font-size: 90px;
        font-weight: 100;
        color: var(--white-color);
        line-height: 100%;
        margin-bottom: 0;
        height: 58px;
        overflow: hidden;

    }

    .page-title-holder .entry-title {
        color: var(--white-color);
        font-size: 30px;
        line-height: 150%;
        font-weight: 400;
        letter-spacing: 5px;
        padding: 0;
    }

    .page-title-holder .page-description {
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 1px;
        margin-top: 5px;
        color: var(--white-color);
    }


    .content-wrapper {
        width: 70rem;
        margin: 5rem auto;
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(3, 1fr);
    }

    .content-wrapper .one_fourth:nth-child(2) {
        line-height: 2rem;
        color: var(--white-color);

        .info-code-title {
            font-weight: 600;
        }

        .info-code-content {
            color: var(--white-color);
        }

        .info-code-content a {
            text-decoration: none;
            color: var(--white-color);
        }
    }

    .content-wrapper .one_fourth:nth-child(1) {
        line-height: 2rem;
        color: var(--white-color);
    }

    .content-wrapper .contact-form {
        width: 100%;
        max-width: 500px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        border: 1px solid var(--white-color);
        border-radius: 1rem;
        padding: 0 1rem 1rem 1rem;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        width: 100%;
        border: none;
        border-bottom: 2px solid var(--white-color);
        padding: 2rem 0 1rem 1rem;
        font-size: 1rem;
        color: var(--white-color);
    }

    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    textarea::placeholder {
        color: var(--white-color);
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        outline: none;
        border-bottom: 2px solid var(--white-color);
    }

    label {
        font-size: 0.85rem;
        font-weight: bold;
        font-family: Arial, sans-serif;
        color: var(--black-color);
        margin-bottom: -1rem;
    }

    button[type="submit"] {
        background-color: var(--secondary-txt-color);
        width: 100%;
        margin: 2rem 0;
        color: var(--white-color);
        padding: 1rem;
        border: none;
        font-size: 0.9rem;
        font-weight: bold;
        font-family: Arial, sans-serif;
        cursor: pointer;
        text-transform: uppercase;
        transition: all .4s ease;
    }

    button[type="submit"]:hover {
        background-color: var(--bg-color);
    }
}

.footer {
    padding: 8.5rem;
    position: relative;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .footer-logo {
        width: 7rem;
        border-radius: 1rem;
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-mail {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 100%;
        font-weight: 700;
        color: var(--white-color);
        text-decoration: none;
        transition: all .3s ease;
    }

    .footer-mail:hover {
        color: var(--main-txt-color);
        text-decoration: none;
    }

    .footer-phone {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 100%;
        font-weight: 500;
        color: var(--white-color);
        text-decoration: none;
        transition: all .3s ease;
    }

    .footer-phone:hover {
        color: var(--main-txt-color);
        text-decoration: none;
    }

    .copyright-holder {
        color: var(--white-color);
    }

    .copyright-holder a {
        color: var(--white-color);
        text-decoration: none;
        transition: all .3s ease;
    }

    .copyright-holder a:hover {
        color: var(--main-txt-color);
        text-decoration: none;
    }

}

/*=================================================================media queries=====*/

@media (max-width: 900px) {

    .header {
        padding: 2rem;

        #header-main-menu {
            display: none;
        }

        .menu-wrapper {
            min-width: fit-content;
        }

    }

    #content #home {
        padding-top: 8rem;
        width: 100%;
    }

    #content #home .dots {
        opacity: 0.33;
        left: 50%;
        transform: translateX(-50%);
    }

    #content #home .big-title {
        font-size: 32px;
        text-align: center;
    }

    #content #home .content-wrapper {
        width: 90%;
        text-align: center;
    }

    #content #home .home-button {
        right: 50%;
        transform: translateX(50%);
    }

    #content #home .home-full-width-logo {
        left: 15%;
    }

    #content #home .home-full-width-logo .logo-icon {
        width: 500px;
    }


    #content #services .page-title-holder {
        width: 100%;
        padding: 0 1rem;
    }

    #content #services .content-wrapper {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    #content #services .page-title-holder ul {
        text-align: start;
    }


    /* Ajustes para otras secciones con contenido centrado */
    #content .section-wrapper {
        padding: 0 1rem;
    }

    #content #identity {

        padding-top: 4rem;

        .dots {
            opacity: 0.33;
            left: 50%;
            transform: translateX(-50%);
        }

        .page-title-holder {
            width: 100%;
            padding: 0 1rem;
            text-align: start;
        }

        .page-title-holder ul {
            text-align: start;
        }

    }

    #content #software {

        margin-top: 5rem;

        .page-title-holder {
            width: 100%;
            padding: 0 1rem;
            justify-content: center;
        }

        .page-title-holder ul {
            padding-top: 0;
            text-align: end;
        }

        .home-button {
            left: 5%;
        }

    }

    #content #outsourcing {

        margin-top: 5rem;

        .page-title-holder {
            width: 100%;
            padding: 0 1rem;
            justify-content: center;
        }

        .page-title-holder ul {
            width: 90%;
            padding-top: 0;
            text-align: start;
        }

        .home-button {
            left: 5%;
        }

    }

    #content #about {

        padding-top: 5rem;

        .page-title-holder {
            width: 90%;
            padding: 0 1rem;
            justify-content: center;
        }

        .dots {
            display: none;
        }

        .logo {
            width: 150px;
            right: 5%;
        }

        .home-button {
            left: 7%;
        }

    }

    #content #businesses {

        padding-top: 5rem;

        .page-title-holder {
            width: 90%;
            padding: 0 1rem;
            justify-content: center;
        }

        .content-wrapper {
            width: 100%;
            grid-template-columns: repeat(2, 1fr);
        }

    }



    #content #contact {


        .page-title-holder {
            width: 90%;
            padding: 0 1rem;
            justify-content: center;
        }

        .content-wrapper {
            width: 100%;
            margin-top: 3rem;
            grid-template-columns: repeat(2, 1fr);
        }

        .content-wrapper .contact-form {
            grid-column: 1 / 3;
            margin-top: 3rem;
        }

        .content-wrapper .one_fourth:nth-child(1) {
            padding-left: 2rem;
        }

        .content-wrapper .one_fourth:nth-child(2) {
            width: 70%;
        }

    }

    .footer {

        padding: 5rem 0;

        .footer-logo {
            width: 100px;
        }

        .footer .footer-mail,
        .footer-phone {
            font-size: 20px;
        }
    }




}

@media (max-width: 425px) {

    .header {
        padding: 1.3rem;
        width: 100vw;

        #header-main-menu {
            display: none;
        }

        .menu-wrapper {
            min-width: fit-content;
        }

        .menu-wrapper .header-logo {
            margin: 0;

            a {
                display: block;
                padding: 0;
                margin: 0;
            }

            img {
                width: 200px;
            }
        }

    }

    #content .section-wrapper {
        padding: 0 1rem;
    }

    #content #home {

        padding-top: 8rem;
        width: 100%;

        .dots {
            display: none;
            width: 500px;
            left: 50%;
            transform: translateX(-50%);
        }

        .big-title {
            font-size: 28px;
            text-align: center;
        }

        .site-description {
            font-size: 20px;
        }

        .content-wrapper {
            width: 90%;
            text-align: center;
        }

        .home-button {
            right: 50%;
            transform: translateX(50%);
            padding: 1.5rem;
        }

        .home-full-width {
            height: 50vh;
        }

        .home-full-width-logo {
            left: 15%;
        }

        .home-full-width-logo .logo-icon {
            width: 200px;
        }
    }


    #content #services {

        .page-title-holder {
            width: 100%;
            padding: 0 .2rem;
        }

        .content-wrapper {
            width: 100%;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        .page-title-holder ul {
            text-align: start;
        }


    }

    #content #identity {

        padding-top: 2rem;

        .dots {
            display: none;
            left: 50%;
            transform: translateX(-50%);
        }

        .page-title-holder {
            width: 100%;
            padding: 0 1rem;
            text-align: start;
        }

        .page-title-holder ul {
            text-align: start;
        }

    }

    #content #software {

        margin-top: 5rem;

        .page-title-holder {
            width: 100%;
            padding: 0 1rem;
            justify-content: center;
        }

        .page-title-holder ul {
            padding-top: 0;
            text-align: end;
        }

        .home-button {
            left: 5%;
        }

    }

    #content #outsourcing {

        margin-top: 5rem;

        .page-title-holder {
            width: 100%;
            padding: 0 1rem;
            justify-content: center;
        }

        .page-title-holder ul {
            width: 100%;
            padding-top: 0;
            text-align: start;
        }

        .page-title-holder .right-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding-top: 0;
            text-align: start;
        }

        .page-title-holder .right-list li {
            width: 100%;
            padding: 1rem;
            text-align: start;
        }

        .home-button {
            left: 5%;
        }

    }

    #content #about {

        padding-top: 5rem;

        .page-title-holder {
            width: 100%;
            padding: 0 1rem;
            justify-content: center;

            .page-text {
                font-size: 1.2rem;
            }
        }

        .dots {
            display: none;
        }

        .logo {
            display: none;
            width: 150px;
            right: 5%;
        }

        .home-button {
            padding: 1.5rem 1rem;
            width: 70%;
            left: 50%;
            transform: translateX(-50%);
        }

    }

    #content #businesses {

        padding-top: 5rem;

        .page-title-holder {
            width: 90%;
            padding: 0 1rem;
            justify-content: center;
        }

        .content-wrapper {
            width: 100%;
            grid-template-columns: repeat(1, 1fr);
        }

    }

    #content #contact {

        .page-title-holder {
            width: 90%;
            padding: 0 1rem;
            justify-content: center;
        }

        .content-wrapper {
            width: 100%;
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
        }

        .content-wrapper .contact-form {
            margin-top: 3rem;
        }

        .content-wrapper .one_fourth {
            padding-left: 2rem;
        }

    }

    .footer {

        padding: 5rem 0;

        .footer-logo {
            width: 100px;
        }

        .footer-mail,
        .footer-phone {
            font-size: 18px;
        }
    }
}