:root {
    --primary-color: #ffffff;
    --title-color: #111111;
    --text-color: #222222;
    --btn-primary-color: #0A4272;
    --btn-secondary-color: #D3EBFF;
    --light-grey: #e0e0e0;
    --light-grey-transparent: #e0e0e03b;
    --dark-grey: #a0a0a0;
    --bg-trasparent: #ffffff3a;
    --menu-bg: #f5f5f5;

    --body-font: "Montserrat", serif;
    --main-title-font: "Prata", serif;
    --max-width: 1400px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--text-color);
}

body {
    min-height: 100vh;
    font-family: var(--body-font);
}

nav {
    isolation: isolate;
    width: 100%;
    z-index: 9;
}

.nav_header {
    padding: 10px;
    width: 100%;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
}

.logo_header {
    width: 120px;
    height: 50px;
}

.logo_header_mini {
    width: 55px;
    height: 29.9px;
}

.gpa_text_mini {
    font-size: 26px;
    font-family: var(--main-title-font);
    font-weight: 600;
    color: var(--btn-primary-color);
    padding: 10px;
}

.nav_menu_btn {
    font-size: 20px;
    color: var(--btn-primary-color);
    cursor: pointer;
}

.nav_links {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 20px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background-color: var(--menu-bg);
    transition: 0.5s;
    z-index: -1;
    transform: translateY(-100%);
}

.nav_links.open {
    transform: translateY(0);
}

.nav_links a {
    font-weight: 500;
    color: var(--text-color);
}

.nav_links a:hover {
    color: var(--btn-primary-color);
}

.header {
    background-image: url("img/bg_gpa2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.header_text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header_title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header_title img {
    width: 700px;
    height: 550px;
}

.h_btn {
    width: 250px;
    padding: 24px 20px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: var(--btn-secondary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.h_btn:hover {
    background-color: var(--primary-color);
}

.container {
    margin-inline: 2.5rem;
}

.section_societa {
    display: flex;
    flex-direction: row;
    height: 600px;
    align-items: center;
    justify-content: space-evenly;
}

.societa_text p {
    font-size: 36px;
    width: 500px;
}

.societa_list_one p {
    font-size: 18px;
}

.societa_list_one {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}

.societa_list_one img {
    width: 74px;
    height: 74px;
    margin-right: 20px;
}

.societa_ist_one p {
    font-size: 20px;
}

.section_solution {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.solution_list_one {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}

.solution_list_one img {
    margin-right: 20px;
}

.section_cards {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 30px 0;
}

.section_cards {
    flex-direction: row;
}

.card {
    background-color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    width: 350px;
    padding: 40px 40px 60px 40px;
    margin: 40px 0;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.card img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.card_title {
    font-size: 26px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 25px;
}

.card_text {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 400;
}

.card:hover {
    transform: scale(1.05);
}

.span_text {
    font-weight: 600;
}

.section_img_slider {
    height: 550px;
    padding: 0 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section_img_slider img {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.img-slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

.section_img_slider .content {
    z-index: 888;
    color: var(--primary-color);
    display: none;
    width: 50%;
}

.section_img_slider .content.active {
    display: block;
}

.section_img_slider .content h1{
   font-size: 42px;
   font-weight: 600;
   margin-bottom: 40px;
}

.content_description {
    font-size: 20px;
    margin-bottom: 20px;
}

.content_keys {
    font-size: 16px;
    font-style: italic;
}

.slider-navigation {
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, .5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
    background-color: var(--dark-grey);
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.2);
}

.section_solution {
    height: 700px;
    flex-direction: row;
    justify-content: space-around;
}

.solution_list {
    width: 500px;
}

.solution_list_one p {
    font-size: 18px;
}

.solution_title {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution_title p {
    font-size: 72px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: var(--title-color);
}

.s_btn {
    width: 250px;
    padding: 24px 20px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
}

.s_btn:hover {
    background-color: var(--btn-secondary-color);
}

.solution_main_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
    justify-content: center;
}

.sol_main_title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--title-color);
}

.sol_main_subtitle {
    font-size: 16px;
    font-weight: 300;
    width: 750px;
    text-align: center;
    line-height: 1.4;
}

.sol_logo_gpa {
    width: 185px;
    height: 70px;
}

.sol_logo_robo,
.sol_logo_logi {
    width: 196px;
    height: 54px;
}

.sol_logo_alex {
    width: 199px;
    height: 45px;
}

.sol_logo_claudya {
    width: 188px;
    height: 50px;
}

.sol_logo_dalya {
    width: 142px;
    height: 58px;
}

.sol_logo_tungsten {
    width: 160px;
    height: 38px;
}

.solution_text{
    color: var(--text-color);
    font-size: 20px;
    font-weight: 300;
    transition: opacity 0.3s ease-in-out;
    width: 750px;
    text-align: center;
    height: 70px;
}

.solution_btn {
    width: 250px;
    padding: 18px 14px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.solution_btn:hover {
    background-color: var(--btn-secondary-color);
}

.card_swiper_sol {
    height: 500px;
    width: 250px;
    padding: 20px 25px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: space-evenly;
    margin: 40px 0px;
    background-color: var(--primary-color);  
    color: var(--btn-primary-color);
}

.section_lab {
    height: 600px;
    background-image: url("img/bg-wave.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.lab_title {
    display: flex;
    color: var(--primary-color);
}

.lab_title .title_one {
    font-size: 72px;
    font-weight: 300;
}

.lab_title .title_two {
    font-size: 128px;
    font-weight: 400;
    font-family: "Allison", serif;
}

.lab_subtitle {
    width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lab_subtitle p {
    font-size: 26px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.lab_btn {
    width: 250px;
    padding: 24px 20px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: var(--btn-secondary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.lab_btn:hover {
    background-color: var(--primary-color);
}

.section_collaborators {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.collab_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--title-color);
}

.collab_title {
    font-size: 26px;
    margin-bottom: 20px;
}

.collab_subtitle {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
}

.collab_logos {
    width: 1250px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
}

.collab_logos .logo_mongodb {
    width: 200px;
    height: 54px;
}

.section_certificate {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.collab_logos_cert {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;

}

.collab_logos_cert .logo_9001,
.collab_logos_cert .logo_27001 {
    width: 70px;
    height: 45px;
} 

.collab_logos_cert .logo_231 {
    width: 127px;
    height: 47px;
}

.divider {
    border-top: 1px solid var(--light-grey);
    margin: 20px 0;
}

.section_rete {
    height: 400px;
    background-image: url("img/bg-rete.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.rete_rete {
    width: 500px;
    height: 200px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--bg-trasparent);
    color: var(--primary-color);
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.rete_title {
    font-size: 22px;
    font-weight: 500;
}

.rete_text {
    font-size: 16px;
    font-weight: 400;
}

.r_btn {
    width: 250px;
    padding: 18px 14px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.r_btn:hover {
    background-color: var(--bg-trasparent);
}

/*CHI SIAMO*/

.header_chisiamo {
    background-image: url("img/bg-chisiamo1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

.section_lavoriamo {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 30px 0;
}

/*FINE CHI SIAMO*/

/*INNOVATION*/

.header_innovation {
    background-image: url("img/bg-innovation1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

/*FINE INNOVATION*/

/*SOLUTIONS*/

.header_solutions {
    background-image: url("img/bg_solutions.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

.section_soluzioni {
    height: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.soluzioni_text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.soluzioni_title {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--btn-primary-color);
}

.soluzioni_subtext {
    width: 800px;
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
}

.soluzioni_btns {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.soluzioni_btns button {
    width: 350px;
    padding: 18px 14px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.soluzioni_btns button:hover {
    background-color: var(--btn-secondary-color);
}

.soluzioni_divs {
    width: 1100px;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
}

.sol_card {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    visibility: hidden;
    pointer-events: none;
}

.sol_card.active {
    opacity: 1;
    height: auto;
    visibility: visible;
    pointer-events: auto;
}

button.active {
    background-color: var(--btn-secondary-color);
    color: white;
}

.enterprise_card,
.process_card,
.innovation_card {
    background-color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    width: 350px;
    height: 300px;
    padding: 40px 40px 60px 40px;
    margin: 40px 0;
    text-align: left;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.enterprise_card:hover,
.process_card:hover,
.innovation_card:hover {
    transform: scale(1.05);
}

.enterprise_card img,
.process_card img,
.innovation_card img {
    margin-bottom: 20px;
}

.enterprise_card p,
.process_card p,
.innovation_card p {
    font-size: 16px;
    text-align: center;
    color: var(--text-color);
}

/*FINE SOLUTIONS*/

/*LAB*/

.header_lab {
    background-image: url("img/bg-innlab.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

.subtitle_innlab {
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 20px;
}

.inn_cards {
    display: flex;
    flex-direction: column;
}

.inn_card {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.inn_card:not(:last-child) {
    margin-bottom: 20px;
}

.inn_card img {
    width: 64px;
    height: 64px;
    margin-right: 20px;
}

.inn_content {
    display: flex;
    flex-direction: column;
}

.inn_title {
    font-size: 18px;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 5px;
}

.inn_text {
    font-size: 14px;
    color: var(--text-color);
}

.section_swiper_innlab {
    height: 500px;
}

.innlab_title_swiper {
    font-size: 20px;
    text-align: center;
}

.section_team {
    height: 400px;
    background-color: var(--btn-primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_team p {
    width: 700px;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.section_curriculum {
    height: 400px;
}

.section_text_innlab{
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section_curriculum {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.innlab_subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--btn-primary-color);
}

.innlab_text {
    width: 600px;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
}

.swiper_style {
    display: flex;
    align-items: center;
}

/*FINE LAB*/

/*CONTACTS*/
.header_contacts {
    background-image: url("img/bg-contact.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

.section_contacts {
    height: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.contacts_contacts {
    display: flex;
    flex-direction: column;
}

.contacts_title {
    font-size: 32px;
    font-weight: 600;
    color: var(--btn-primary-color);
    margin-bottom: 50px;
}

.contacts_info {
    display: flex;
    flex-direction: column;
}

.contacts_sede,
.contacts_tel,
.contacts_fax,
.contacts_email {
    display: flex;
    flex-direction: row;
    width: 400px;
    align-items: flex-start;
}

.contacts_sede,
.contacts_tel,
.contacts_fax {
    margin-bottom: 30px;
}

.cont_img {
    margin-right: 20px;
}

.sede_text,
.sede_legale {
    display: flex;
    flex-direction: column;
}

.sede_legale {
    margin-bottom: 20px
}

.s_subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.s_subtitle + a p {
    font-size: 16px;
}

.s_text {
    font-size: 14px;
    font-weight: 500;
}

.s_text:not(:last-child) {
    margin-bottom: 5px;
}

.contacts_text {
    width: 400px;
    display: flex;
    align-items: center;
    text-align: center;

}

.contacts_text p {
    font-size: 32px;
    font-weight: 600;
    color: var(--btn-primary-color);
}
/*FINE CONTACTS*/

/*GPA*/

.header_gpa {
    background-image: url("img/bg-gpa.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.section_gpa {
    height: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.gpa_content {
    display: flex;
    flex-direction: column;
}

.gpa_title {
    font-size: 64px;
    font-weight: 600;
    color: var(--btn-primary-color);
    margin-bottom: 20px;
}

.gpa_text {
    font-size: 18px;
    color: var(--text-color);
    width: 500px;
    margin-bottom: 40px;
}

.gpa_text_one {
    font-size: 18px;
    color: var(--text-color);
    width: 500px;
    margin-bottom: 10px;
}

.section_gpa img {
    width: 456px;
    height: 456px;
}

.section_img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_info {
    height: 650px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.info_content {
    display: flex;
    flex-direction: column;
}

.info_info {
    display: flex;
    flex-direction: row;
    height: 140px;
}

.info_info:not(:last-child) {
    margin-bottom: 35px;
}

.info_info img {
    width: 64px;
    height: 64px;
    margin-right: 20px;
}

.info_text {
    display: flex;
    flex-direction: column;
    width: 500px;
}

.info_title {
    font-size: 22px;
    font-weight: 600;
    color: var(--btn-primary-color);
    margin-bottom: 10px;
}

.info_subtitle {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
}
/*FINE GPA*/

/*LOGISTICA*/

.header_logistica {
    background-image: url("img/bg-logistica.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.log_btn {
    width: 350px;
    padding: 24px 20px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.log_btn:hover {
    background-color: var(--btn-secondary-color);
}
/*FINE LOGISTICA*/

/*CLAUDYA*/
.header_claudya {
    background-image: url("img/bg-claudya.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
.section_video {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.claudya_video {
    width: 640px;
    height: 360px;
}
/*FINE CLAUDYA*/

/*ROBOTYCA*/
.header_robotyca {
    background-image: url("img/bg-robotyca.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
/*FINE ROBOTYCA*/

/*ALEXANDRYA*/
.header_alex {
    background-image: url("img/bg-alex.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
/*FINE ALEXANDRYA*/

/*DALYA*/
.header_dalya {
    background-image: url("img/bg-dalya.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
/*FINE DALYA*/

/*TUNGSTEN AUTOMATION*/
.header_tungsten {
    background-image: url("img/bg-tungsten.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
/*FINE TUNGSTEN AUTOMATION*/

footer {
    height: 400px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.footer_section,
.footer_section_company {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-between;
    align-self: self-start;
}

.f_title_gpa {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}

.f_contacts,
.f_iva,
.f_legale,
.f_operative {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
}

.f_img {
    display: flex;
    justify-content: flex-start;
}

.f_img  img{
    width: 126px; 
    height: 46px; 
    margin-bottom: 20px;
}

.f_contacts a{
    color: var(--primary-color);
}

.f_contacts p,
.f_iva p,
.f_legale p,
.f_operative p{
    margin-bottom: 5px;
}

.f_subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px!important;
}

.f_text {
    font-size: 12px;
    color: var(--primary-color);
}

.footer_section_company .f_subtitle {
    margin-bottom: 10px;
}

.footer_section_company .f_text {
    margin-bottom: 10px;
}

.footer_section .f_text {
    margin-bottom: 10px;
}

.text_number {
    color: var(--primary-color);
}

.footer_bottom {
    height: 50px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_bottom p {
    font-size: 12px;
}

.section_clienti {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0 0 0;
}

.clienti_maintext {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 80px;
}

.clienti_title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.clienti_subtitle {
    font-size: 28px;
    font-weight: 500;
    width: 900px;
}

.clienti_logos {
    margin-bottom: 80px;
}

.clienti_logos,
.hidden_logos {
    width: 1000px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 20px;
}

.clienti_logo {
    width: 200px;
    height: 90px;
}

.clienti_logo_ibm {
    width: 120px;
    height: 56px;
}

.hidden_logos {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-in-out;
}

.hidden_logos.open {
    max-height: 500px; /* Adjust based on your content */
    opacity: 1;
}

#toggleButton {
    width: 250px;
    padding: 18px 14px;
    text-transform: uppercase;
    font-size: 12px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: block;
    z-index: 10;
    transition: background-color 0.3s ease;
    margin-bottom: 80px;
}

#toggleButton:hover {
    background-color: var(--btn-secondary-color);
}

/*SECTION CHI SIAMO*/

.section_chisiamo,
.section_innovation,
.section_innlab {
    height: 800px;
    padding: 100px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.content_chisiamo,
.content_innovation {
    display: flex;
    flex-direction: column;
    width: 650px;
}

.maintext_chisiamo {
    margin-bottom: 50px;
}

.title_chisiamo,
.title_chefacciamo,
.title_innovation,
.title_innlab {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--btn-primary-color);
}

.text_chisiamo,
.text_chefacciamo,
.text_innovation,
.text_innlab {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
}

/*.img_second_chisiamo {
    width: 490px;
    height: 456px;
}*/

.img_second_chisiamo {
    width: 500px;
    height: 500px;
}

.section_lavoriamo {
    height: 700px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    padding: 0 100px;
}

.card_lavoriamo {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px 0;
}

.card_lavoriamo_one {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px 0;
}

.lavoriamo_title {
    font-size: 72px;
    font-weight: 400;
    width: 350px;
    text-transform: uppercase;
}

.lavoriamo_text {
    font-size: 18px;
    font-weight: 400;
    width: 550px;
}

.divider_chisiamo {
    border-top: 1px solid var(--light-grey-transparent);
    margin: 20px 0;
}


/*FINE SECTION CHI SIAMO*/

/*SECTION INNOVATION*/

.img_second_innovation {
    width: 500px;
    height: 500px;
}

.swiper_container {
    padding-block: 5rem;
    /*max-width: 1520px;*/
}

.swiper_content {
    margin-inline: 3rem;
    border-radius: 1.25rem;
    margin-bottom: 40px;
}

.swiper-wrapper {
    height: 180px;
}

.card_swiper {
    height: 200px;
    width: 250px;
    padding: 20px 25px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    text-align: left;
    margin: 40px 0px;
    background-color: var(--btn-primary-color);  
    color: var(--primary-color);
}

.year_swiper {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
}

.title_swiper {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.title_swiper p:not(:last-child) {
    margin-bottom: 5px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: ''!important;
}

.swiper-button-prev,
.swiper-button-next {
    width: initial;
    height: initial;
    font-size: 3rem;
    color: var(--text-color);
    display: block;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-pagination-bullet {
    background-color: hsl(212, 32%, 40%);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--btn-primary-color);
}

.section_techology {
    height: 700px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.technology_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.tech_title {
    font-size: 36px;
    font-weight: 600;
    color: var(--btn-primary-color);
    margin-bottom: 20px;
}

.tech_text {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-color);
}

.technology_container {
    padding-block: 5rem;
    max-width: 1220px;
}

.tech_swiper_content {
    margin-inline: 3rem;
    border-radius: 1.25rem;
    margin-bottom: 40px;
}

.tech_mongo {
    width: 297px;
    height: 80px;
}

.tech_spring {
    width: 311px;
    height: 80px;
}

.tech_golang {
    width: 201px;
    height: 80px;
}

.tech_jenkins {
    width: 248px;
    height: 80px;
}

.tech_kafka {
    width: 160px;
    height: 80px;
}

.tech_apache {
    width: 180px;
    height: 80px;
}

.tech_etcd {
    width: 224px;
    height: 80px;
}

.tech_jaeger {
    width: 244px;
    height: 80px;
}

.tech_grafana {
    width: 289px;
    height: 70px;
}

.tech_git {
    width: 191px;
    height: 80px;
}

.tech_azure {
    width: 242px;
    height: 70px;
}

.tech_aws {
    width: 133px;
    height: 80px;
}

.tech_cosmos {
    width: 175px;
    height: 80px;
}

.tech_open {
    width: 74px;
    height: 80px;
}

.tech_docker {
    width: 92px;
    height: 80px;
}

.tech_datadog {
    width: 80px;
    height: 80px;
}

.tech_prometheus {
    width: 160px;
    height: 80px;
}

.tech_swiper {
    height: 200px;
    width: 250px;
    padding: 20px 25px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    text-align: left;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

/*FINE SECTION INNOVATION*/


/*==================BREAKPOINTS========================*/
@media screen and (max-width: 1530px) {
    .section_cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 600px;
        padding: 20px 20px 40px 20px;
    }

    .card_title {
        font-size: 26px;
    }

    .card_text {
        font-size: 20px;
    }

    .section_collaborators {
        height: auto;
        padding: 50px 0;
    }

    .section_certificate {
        height: 270px;
    }

    .collab_title {
        font-size: 26px;
    }

    .collab_subtitle {
        font-size: 28px;
    }

    .collab_logos {
        width: 900px;
    }

    .collab_logos .logo_redhat {
        width: 135px;
        height: 44px;
    }

    .collab_logos .logo_ibm {
        width: 90px;
        height: 42px;
    }

    .collab_logos .logo_mongodb {
        width: 151px;
        height: 41px;
    }

    .collab_logos .logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .collab_logos .logo_abby {
        width: 104px;
        height: 31px;
    }

    .collab_logos .logo_zebra {
        width: 135px;
        height: 42px;
    }

    .rete_title {
        font-size: 26px;
    }

    .rete_text {
        font-size: 20px;
        text-align: center;
    }

    .collab_logos_cert {
        margin-bottom: 10px;
    }

    .clienti_logos,
    .hidden_logos {
    width: 750px;
    flex-direction: row;
    flex-wrap: wrap;
    }

    .clienti_logo {
        width: 168px;
        height: 75px;
    }

    /*CHI SIAMO*/

    .header_chisiamo {
        height: 200px;
    }

    .section_lavoriamo {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 30px 0;
    }

    /*FINE CHI SIAMO*/
    /*SECTION CHI SIAMO*/

    .section_chisiamo,
    .section_innovation,
    .section_innlab {
        height: auto;
        padding: 50px 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .content_chisiamo,
    .content_innovation {
        width: 950px;
    }

    .maintext_chisiamo {
        margin-bottom: 50px;
    }

    .title_chisiamo,
    .title_chefacciamo,
    .title_innovation,
    .title_innlab {
        font-size: 42px;
        text-align: center;
        margin-bottom: 40px;
    }

    .text_chisiamo,
    .text_chefacciamo,
    .text_innovation,
    .text_innlab {
        text-align: justify;
        font-size: 28px;
    }

    .img_second_chisiamo {
        width: 450px;
        height: 450px;
    }

    .section_lavoriamo {
        height: auto;
        padding: 0 30px;
    }

    .card_lavoriamo {
        flex-direction: column;
        padding: 60px 0;
    }

    .card_lavoriamo_one {
        flex-direction: column;
        padding: 60px 0;
    }

    .lavoriamo_title {
        font-size: 48px;
        width: 950px;
        margin-bottom: 30px;
        text-align: center;
    }

    .lavoriamo_text {
        font-size: 28px;
        width: 950px;
        text-align: justify;
    }

    .section_clienti {
        padding: 50px 0 0 0;
    }

    .clienti_maintext {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .clienti_title {
        font-size: 28px;
    }
    
    .clienti_subtitle {
        font-size: 32px;
        width: 950px;
    }

    
    /*FINE SECTION CHI SIAMO*/

    /*SECTION INNOVATION*/

    .header_innovation {
        height: 200px;
    }

    .img_second_innovation {
        width: 300px;
        height: 300px;
    }

    .section_techology {
        height: auto;
        padding: 50px 0;
    }
    
    .technology_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .tech_title {
        font-size: 42px;
        font-weight: 600;
        color: var(--btn-primary-color);
        margin-bottom: 20px;
    }
    
    .tech_text {
        font-size: 28px;
        text-align: center;
    }
    
    .technology_container {
        padding-block: 5rem;
        max-width: 950px;
    }

    .tech_spring {
        width: 194px;
        height: 50px;
    }

    .tech_mongo {
        width: 187px;
        height: 50px;
    }

    .tech_golang {
        width: 150px;
        height: 60px;
    }
    
    .tech_jenkins {
        width: 187px;
        height: 60px;
    }

    .tech_kafka {
        width: 160px;
        height: 80px;
    }
    
    .tech_apache {
        width: 157px;
        height: 70px;
    }

    .tech_etcd {
        width: 169px;
        height: 60px;
    }

    .tech_jaeger {
        width: 182px;
        height: 60px;
    }

    .tech_grafana {
        width: 248px;
        height: 60px;
    }

    .tech_git {
        width: 143px;
        height: 60px;
    }

    .tech_azure {
        width: 207px;
        height: 60px;
    }

    .tech_aws {
        width: 100px;
        height: 60px;
    }

    .tech_cosmos {
        width: 153px;
        height: 70px;
    }

    .year_swiper {
        margin-bottom: 20px;
    }

    .title_swiper {
        font-size: 26px;
    }

    .card_swiper {
        height: 280px;
    }

    /*FINE SECTION INNOVATION*/

    /*SOLUTIONS*/

    .header_solutions {
        height: 200px;
    }

    .section_soluzioni {
        height: auto;
        padding: 50px 0;
    }

    .soluzioni_text {
        margin-bottom: 30px;
    }

    .soluzioni_title {
        font-size: 32px;
    }

    .soluzioni_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .soluzioni_subtext {
        width: 950px;
        text-align: center;
        font-size: 20px;
        color: var(--text-color);
    }

    .soluzioni_btns {
        align-items: center;
    }

    .soluzioni_btns button {
        margin-right: 10px;
    }

    .soluzioni_divs {
        width: 950px;
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    .enterprise_card,
    .process_card,
    .innovation_card {
        justify-content: center;
        width: 450px;
    }

    .enterprise_card p, 
    .process_card p, 
    .innovation_card p {
        font-size: 18px;
    }

    /*FINE SECTION SOLUTIONS*/

    /*LAB*/

    .header_lab {
        height: 200px;
    }

    .subtitle_innlab {
        text-align: center;
        padding: 30px 0;
        font-size: 22px;
    }

    .inn_cards {
        margin-bottom: 50px;
        padding: 30px 0;
    }

    .inn_title {
        font-weight: 600;
        font-size: 28px;
    }

    .inn_text {
        font-weight: 500;
        font-size: 22px;
    }

    .innlab_title_swiper {
        font-size: 22px;
    }

    .section_team p {
        width: 750px;
        font-size: 32px;
    }

    .section_text_innlab{
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section_swiper_innlab {
        height: 400px;
    }

    .section_curriculum {
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
    }

    .innlab_subtitle {
        font-size: 24px;
    }

    .innlab_text {
        width: 550px;
        font-size: 28px;
        font-weight: 600;
        color: var(--text-color);
    }

    /*FINE LAB*/

    /*CONTACTS*/
    .header_contacts {
        height: 200px;
    }

    .section_contacts {
        height: auto;
        padding: 50px 0;
    }

    .contacts_contacts {
        margin-bottom: 50px;
        align-items: center;
    }

    .contacts_sede,
    .contacts_tel,
    .contacts_fax,
    .contacts_email {
        width: 550px;
    }

    .s_subtitle {
        font-size: 24px;
    }

    .s_subtitle + a p {
        font-size: 20px;
    }

    .s_text {
        font-size: 20px;
    }

    .contacts_text {
        width: 550px;

    }

    .contacts_text p {
        font-size: 28px;
    }
    /*FINE CONTACTS*/

    /*GPA*/

    .header_gpa {
        height: 200px;
    }

    .section_gpa {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .gpa_content {
        align-items: center;
        margin-bottom: 50px;
    }

    .gpa_title {
        font-size: 62px;
        margin-bottom: 40px;
    }

    .gpa_text {
        text-align: justify;
        width: 950px;
        font-size: 26px;
    }

    .gpa_text_one {
        font-size: 26px;
        width: 950px;
    }

    .section_gpa img {
        width: 356px;
        height: 356px;
    }

    .section_info {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .info_info {
        display: flex;
        flex-direction: row;
        height: 220px;
        width: 950px;
    }

    .info_info {
        margin-bottom: 25px;
    }

    .info_info img {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }

    .info_text {
        display: flex;
        flex-direction: column;
        width: 950px;
    }

    .info_title {
        font-size: 28px;
    }

    .info_subtitle {
        font-size: 24px;
    }
    /*FINE GPA*/

    /*DALYA*/
    .header_dalya,
    .header_alex,
    .header_claudya,
    .header_tungsten,
    .header_logistica,
    .header_robotyca {
        height: 200px;
    }
    /*FINE DALYA*/

    .section_video {
        height: auto;
        padding: 50px 0;
    }
    .claudya_video {
        width: 640px;
        height: 460px;
    }
}


/*FOR LARGE DEVICES*/

@media (width > 1024px) {
    nav {
        position: static;
        padding-block: 1rem;
        padding-inline: 1rem;
        max-width: var(--max-width);
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        height: 86px;
    }

    .nav_header {
        flex: 1;
        padding: 0;
        background-color: transparent;
    }

    .nav_menu_btn {
        display: none;
    }

    .nav_links {
        position: static;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        transform: none;
    }

    .nav_links li {
        color: var(--text-color);
        cursor: pointer;
        transition: 0.3s;
        padding: 0;
    }

    .nav_links li a {
        text-decoration: none;
        color: inherit;
        display: block;
        width: 100%;
        padding: 5px 0;
        border-bottom: 4px solid transparent;
        transition: 0.3s;
    }

    .nav_links li:hover a {
        border-color: var(--btn-secondary-color);
    }

    .nav_links li.active a {
        border-color: var(--btn-secondary-color);
    }
    

    
}

/*FOR MEDIUM DEVICES*/
@media screen and (max-width: 1024px) {

    .gpa_text_mini {
        font-size: 18px;
    }

    .container {
        margin-inline: 1.5rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none!important;
    }

    .swiper_content {
        margin-inline: 1.75rem;
    }

    .tech_swiper_content {
        margin-inline: 1.75rem;
    }

    .header_title img {
        width: 550px;
        height: 413px;
    }

    .section_societa {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 30px 0;
    }

    .societa_text {
        margin-bottom: 30px;
    }

    .societa_text p {
        font-size: 28px;
        width: 450px;
        text-align: center;
    }

    .societa_list_one p {
        font-size: 22px;
    }

    .section_cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 600px;
        padding: 20px 20px 40px 20px;
    }

    .card_title {
        font-size: 26px;
    }

    .card_text {
        font-size: 20px;
    }

    .section_img_slider {
        padding: 0 30px;
    }

    .section_img_slider .content {
        width: 70%;
    }

    .section_img_slider .content h1 {
        font-size: 28px;
    }

    .content_description {
        font-size: 22px;
    }

    .solution_list {
        width: 400px;
        margin-bottom: 20px;
    }

    .solution_list_one p {
        font-size: 20px;
    }

    .solution_title p {
        width: 300px;
        font-size: 36px;
    }

    .sol_main_subtitle {
        width: 600px;
        font-size: 20px;
        font-weight:400; 
    }

    .solution_text {
        width: 500px;
        font-size: 22px;
        font-weight: 400;
        height: auto;
    }


    .lab_title .title_one {
        font-size: 58px;
    }

    .lab_title .title_two {
        font-size: 86px;
    }

    .lab_subtitle p {
        font-size: 22px;
    }

    .section_collaborators {
        height: auto;
        padding: 50px 0;
    }

    .section_certificate {
        height: 270px;
    }

    .collab_title {
        font-size: 26px;
    }

    .collab_subtitle {
        font-size: 28px;
    }

    .collab_logos {
        width: 900px;
    }

    .collab_logos .logo_redhat {
        width: 135px;
        height: 44px;
    }

    .collab_logos .logo_ibm {
        width: 90px;
        height: 42px;
    }

    .collab_logos .logo_mongodb {
        width: 151px;
        height: 41px;
    }

    .collab_logos .logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .collab_logos .logo_abby {
        width: 104px;
        height: 31px;
    }

    .collab_logos .logo_zebra {
        width: 135px;
        height: 42px;
    }

    .rete_title {
        font-size: 26px;
    }

    .rete_text {
        font-size: 20px;
        text-align: center;
    }

    .collab_logos_cert {
        justify-content: center;
        margin-bottom: 10px;
    }

    footer {
        height: auto;
        align-items: center;
        padding: 30px 0;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer_section {
        text-align: center;
        align-self: center;
    }

    .footer_section_company {
        text-align: center;
        align-self: center;
        margin-bottom: 25px;
    }

    .f_title_gpa {
        font-size: 28px;
    }

    .f_subtitle {
        font-size: 22px;
    }

    .f_text {
        font-size: 18px;
    }

    .f_contacts p,
    .f_iva p {
        font-size: 18px;
    }

    .clienti_logos,
    .hidden_logos {
    width: 750px;
    flex-direction: row;
    flex-wrap: wrap;
    }

    .clienti_logo {
        width: 168px;
        height: 75px;
    }

    /*CHI SIAMO*/

    .header_chisiamo {
        height: 200px;
    }

    .section_lavoriamo {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 30px 0;
    }

    /*FINE CHI SIAMO*/
    /*SECTION CHI SIAMO*/

    .section_chisiamo,
    .section_innovation,
    .section_innlab {
        height: auto;
        padding: 50px 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .content_chisiamo,
    .content_innovation {
        width: 750px;
    }

    .maintext_chisiamo {
        margin-bottom: 50px;
    }

    .title_chisiamo,
    .title_chefacciamo,
    .title_innovation,
    .title_innlab {
        font-size: 42px;
        text-align: center;
        margin-bottom: 40px;
    }

    .text_chisiamo,
    .text_chefacciamo,
    .text_innovation,
    .text_innlab {
        text-align: justify;
        font-size: 28px;
    }

    .img_second_chisiamo {
        width: 450px;
        height: 450px;
    }

    .section_lavoriamo {
        height: auto;
        padding: 0 30px;
    }

    .card_lavoriamo {
        flex-direction: column;
        padding: 60px 0;
    }

    .card_lavoriamo_one {
        flex-direction: column;
        padding: 60px 0;
    }

    .lavoriamo_title {
        font-size: 48px;
        width: 750px;
        margin-bottom: 30px;
        text-align: center;
    }

    .lavoriamo_text {
        font-size: 28px;
        width: 750px;
        text-align: justify;
    }

    .section_clienti {
        padding: 50px 0 0 0;
    }

    .clienti_maintext {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .clienti_title {
        font-size: 28px;
    }
    
    .clienti_subtitle {
        font-size: 32px;
        width: 750px;
    }

    
    /*FINE SECTION CHI SIAMO*/

    /*SECTION INNOVATION*/

    .header_innovation {
        height: 200px;
    }

    .img_second_innovation {
        width: 300px;
        height: 300px;
    }

    .section_techology {
        height: auto;
        padding: 50px 0;
    }
    
    .technology_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .tech_title {
        font-size: 42px;
        font-weight: 600;
        color: var(--btn-primary-color);
        margin-bottom: 20px;
    }
    
    .tech_text {
        font-size: 28px;
        text-align: center;
    }
    
    .technology_container {
        padding-block: 5rem;
        max-width: 750px;
    }

    .tech_spring {
        width: 194px;
        height: 50px;
    }

    .tech_mongo {
        width: 187px;
        height: 50px;
    }

    .tech_golang {
        width: 150px;
        height: 60px;
    }
    
    .tech_jenkins {
        width: 187px;
        height: 60px;
    }

    .tech_kafka {
        width: 160px;
        height: 80px;
    }
    
    .tech_apache {
        width: 157px;
        height: 70px;
    }

    .tech_etcd {
        width: 169px;
        height: 60px;
    }

    .tech_jaeger {
        width: 182px;
        height: 60px;
    }

    .tech_grafana {
        width: 248px;
        height: 60px;
    }

    .tech_git {
        width: 143px;
        height: 60px;
    }

    .tech_azure {
        width: 207px;
        height: 60px;
    }

    .tech_aws {
        width: 100px;
        height: 60px;
    }

    .tech_cosmos {
        width: 153px;
        height: 70px;
    }

    .year_swiper {
        margin-bottom: 20px;
    }

    .title_swiper {
        font-size: 26px;
    }

    .card_swiper {
        height: 280px;
    }

    /*FINE SECTION INNOVATION*/

    /*SOLUTIONS*/

    .header_solutions {
        height: 200px;
    }

    .section_soluzioni {
        height: auto;
        padding: 50px 0;
    }

    .soluzioni_text {
        margin-bottom: 30px;
    }

    .soluzioni_title {
        font-size: 32px;
    }

    .soluzioni_subtext {
        width: 600px;
        text-align: center;
        font-size: 20px;
        color: var(--text-color);
    }

    .soluzioni_btns {
        flex-direction: column;
        align-items: center;
    }

    .soluzioni_btns button {
        margin-bottom: 10px;
    }

    .soluzioni_divs {
        width: 650px;
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    .enterprise_card,
    .process_card,
    .innovation_card {
        justify-content: center;
        width: 450px;
    }

    .enterprise_card p, 
    .process_card p, 
    .innovation_card p {
        font-size: 18px;
    }

    /*FINE SECTION SOLUTIONS*/

    /*LAB*/

    .header_lab {
        height: 200px;
    }

    .subtitle_innlab {
        text-align: center;
        padding: 30px 0;
        font-size: 22px;
    }

    .inn_cards {
        margin-bottom: 50px;
        padding: 30px 0;
    }

    .inn_title {
        font-weight: 600;
        font-size: 28px;
    }

    .inn_text {
        font-weight: 500;
        font-size: 22px;
    }

    .innlab_title_swiper {
        font-size: 22px;
    }

    .section_team p {
        width: 750px;
        font-size: 32px;
    }

    .section_text_innlab{
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section_swiper_innlab {
        height: 400px;
    }

    .section_curriculum {
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
    }

    .innlab_subtitle {
        font-size: 24px;
    }

    .innlab_text {
        width: 550px;
        font-size: 28px;
        font-weight: 600;
        color: var(--text-color);
    }

    /*FINE LAB*/

    /*CONTACTS*/
    .header_contacts {
        height: 200px;
    }

    .section_contacts {
        height: auto;
        padding: 50px 0;
    }

    .contacts_contacts {
        margin-bottom: 50px;
        align-items: center;
    }

    .contacts_sede,
    .contacts_tel,
    .contacts_fax,
    .contacts_email {
        width: 550px;
    }

    .s_subtitle {
        font-size: 24px;
    }

    .s_subtitle + a p {
        font-size: 20px;
    }

    .s_text {
        font-size: 20px;
    }

    .contacts_text {
        width: 550px;

    }

    .contacts_text p {
        font-size: 28px;
    }
    /*FINE CONTACTS*/

    /*GPA*/

    .header_gpa {
        height: 200px;
    }

    .section_gpa {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .gpa_content {
        align-items: center;
        margin-bottom: 50px;
    }

    .gpa_title {
        font-size: 62px;
        margin-bottom: 40px;
    }

    .gpa_text {
        text-align: justify;
        width: 800px;
        font-size: 26px;
    }

    .gpa_text_one {
        font-size: 26px;
        width: 800px;
    }

    .section_gpa img {
        width: 356px;
        height: 356px;
    }

    .section_info {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .info_info {
        display: flex;
        flex-direction: row;
        height: auto;
        width: 750px;
    }

    .info_info {
        margin-bottom: 25px;
    }

    .info_info img {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }

    .info_text {
        display: flex;
        flex-direction: column;
        width: 750px;
    }

    .info_title {
        font-size: 28px;
    }

    .info_subtitle {
        font-size: 24px;
    }
    /*FINE GPA*/

    /*DALYA*/
    .header_dalya,
    .header_alex,
    .header_claudya,
    .header_tungsten,
    .header_logistica,
    .header_robotyca {
        height: 200px;
    }
    /*FINE DALYA*/

    .section_video {
        height: auto;
        padding: 50px 0;
    }
    .claudya_video {
        width: 540px;
        height: 360px;
    }

    .f_img {
        justify-content: center;
    }
}

/*FOR SMALL DEVICES*/
@media screen and (max-width: 820px) {

    .gpa_text_mini {
        font-size: 18px;
    }

    .container {
        margin-inline: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none!important;
    }

    .swiper_content {
        margin-inline: 1.75rem;
    }

    .tech_swiper_content {
        margin-inline: 1.75rem;
    }

    .header_title img {
        width: 350px;
        height: 250px;
    }

    .section_societa {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 30px 0;
    }

    .societa_text {
        margin-bottom: 30px;
    }

    .societa_list_one img {
        width: 54px;
        height: 54px;
    }

    .societa_text p {
        font-size: 24px;
        width: 350px;
    }

    .societa_list_one p {
        font-size: 18px;
    }

    .section_cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 500px;
        padding: 20px 20px 40px 20px;
    }

    .card_title {
        font-size: 22px;
    }

    .card_text {
        font-size: 18px;
    }

    .section_img_slider {
        padding: 0 30px;
    }

    .section_img_slider .content {
        width: 70%;
    }

    .section_img_slider .content h1 {
        font-size: 22px;
    }

    .content_description {
        font-size: 18px;
    }

    .section_solution {
        height: auto;
        flex-direction: column;
    }

    .solution_list {
        margin-bottom: 20px;
    }

    .solution_list_one p {
        font-size: 16px;
    }

    .solution_title p {
        width: 300px;
        font-size: 36px;
    }

    .sol_main_subtitle {
        width: 500px;
        font-size: 16px;
        font-weight:400; 
    }

    .solution_text {
        font-size: 16px;
        font-weight: 400;
    }

    .lab_title .title_one {
        font-size: 48px;
    }

    .lab_title .title_two {
        font-size: 72px;
    }

    .lab_subtitle {
        width: 500px;
    }

    .lab_subtitle p {
        font-size: 18px;
    }

    .section_collaborators {
        height: auto;
        padding: 50px 0;
    }

    .collab_title {
        font-size: 22px;
    }

    .collab_subtitle {
        font-size: 28px;
    }

    .collab_logos_cert {
        justify-content: center;
        margin-bottom: 20px;
    }

    .collab_logos {
        width: auto;
        flex-direction: column;
        align-items: center;
        height: 450px;
    }

    .collab_logos .logo_redhat {
        width: 135px;
        height: 44px;
    }

    .collab_logos .logo_ibm {
        width: 90px;
        height: 42px;
    }

    .collab_logos .logo_mongodb {
        width: 151px;
        height: 41px;
    }

    .collab_logos .logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .collab_logos .logo_abby {
        width: 104px;
        height: 31px;
    }

    .collab_logos .logo_zebra {
        width: 135px;
        height: 42px;
    }

    .rete_title {
        font-size: 20px;
    }

    .rete_text {
        font-size: 16px;
        text-align: center;
    }

    footer {
        height: auto;
        align-items: center;
        padding: 30px 0;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer_section {
        text-align: center;
        align-self: center;
    }

    .footer_section_company {
        text-align: center;
        align-self: center;
        margin-bottom: 25px;
    }

    .f_title_gpa {
        font-size: 28px;
    }

    .f_subtitle {
        font-size: 20px;
    }

    .f_text {
        font-size: 16px;
    }

    .clienti_logos,
    .hidden_logos {
    width: 600px;
    flex-direction: row;
    flex-wrap: wrap;
    }

    .clienti_logo {
        width: 150px;
        height: 67px;
    }

    /*CHI SIAMO*/

    .header_chisiamo {
        height: 200px;
    }

    .section_lavoriamo {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 30px 0;
    }

    /*FINE CHI SIAMO*/
    /*SECTION CHI SIAMO*/

    .section_chisiamo,
    .section_innovation,
    .section_innlab {
        height: auto;
        padding: 50px 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .content_chisiamo,
    .content_innovation {
        width: 650px;
    }

    .maintext_chisiamo {
        margin-bottom: 50px;
    }

    .title_chisiamo,
    .title_chefacciamo,
    .title_innovation,
    .title_innlab {
        font-size: 32px;
        text-align: center;
    }

    .text_chisiamo,
    .text_chefacciamo,
    .text_innovation,
    .text_innlab {
        text-align: justify;
        font-size: 20px;
    }

    .img_second_chisiamo {
        width: 450px;
        height: 450px;
    }

    .section_lavoriamo {
        height: auto;
        padding: 0 30px;
    }

    .card_lavoriamo {
        flex-direction: column;
    }

    .card_lavoriamo_one {
        flex-direction: column;
    }

    .lavoriamo_title {
        font-size: 46px;
        width: 550px;
        margin-bottom: 30px;
        text-align: center;
    }

    .lavoriamo_text {
        font-size: 20px;
        width: 550px;
        text-align: justify;
    }

    .section_clienti {
        padding: 50px 0 0 0;
    }

    .clienti_maintext {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .clienti_title {
        font-size: 22px;
    }
    
    .clienti_subtitle {
        font-size: 26px;
        width: 550px;
    }

    
    /*FINE SECTION CHI SIAMO*/

    /*SECTION INNOVATION*/

    .header_innovation {
        height: 200px;
    }

    .img_second_innovation {
        width: 300px;
        height: 300px;
    }

    .section_techology {
        height: auto;
        padding: 50px 0;
    }
    
    .technology_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .tech_title {
        font-size: 36px;
        font-weight: 600;
        color: var(--btn-primary-color);
        margin-bottom: 20px;
    }
    
    .tech_text {
        font-size: 20px;
        text-align: center;
    }
    
    .technology_container {
        padding-block: 5rem;
        max-width: 650px;
    }

    .tech_spring {
        width: 194px;
        height: 50px;
    }

    .tech_mongo {
        width: 187px;
        height: 50px;
    }

    .tech_golang {
        width: 150px;
        height: 60px;
    }
    
    .tech_jenkins {
        width: 187px;
        height: 60px;
    }

    .tech_kafka {
        width: 160px;
        height: 80px;
    }
    
    .tech_apache {
        width: 157px;
        height: 70px;
    }

    .tech_etcd {
        width: 169px;
        height: 60px;
    }

    .tech_jaeger {
        width: 182px;
        height: 60px;
    }

    .tech_grafana {
        width: 248px;
        height: 60px;
    }

    .tech_git {
        width: 143px;
        height: 60px;
    }

    .tech_azure {
        width: 207px;
        height: 60px;
    }

    .tech_aws {
        width: 100px;
        height: 60px;
    }

    .tech_cosmos {
        width: 153px;
        height: 70px;
    }

    .title_swiper {
        font-size: 20px;
    }

    /*FINE SECTION INNOVATION*/

    /*SOLUTIONS*/

    .header_solutions {
        height: 200px;
    }

    .section_soluzioni {
        height: auto;
        padding: 50px 0;
    }

    .soluzioni_text {
        margin-bottom: 30px;
    }

    .soluzioni_title {
        font-size: 32px;
    }

    .soluzioni_subtext {
        width: 600px;
        text-align: center;
        font-size: 20px;
        color: var(--text-color);
    }

    .soluzioni_btns {
        flex-direction: column;
        align-items: center;
    }

    .soluzioni_btns button {
        margin-bottom: 10px;
    }

    .soluzioni_divs {
        width: 650px;
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    .enterprise_card,
    .process_card,
    .innovation_card {
        justify-content: center;
        width: 450px;
    }

    .enterprise_card p, 
    .process_card p, 
    .innovation_card p {
        font-size: 18px;
    }

    /*FINE SECTION SOLUTIONS*/

    /*LAB*/

    .header_lab {
        height: 200px;
    }

    .subtitle_innlab {
        text-align: center;
        padding: 30px 0;
        font-size: 18px;
    }

    .inn_cards {
        margin-bottom: 50px;
        padding: 30px 0;
    }

    .inn_title {
        font-weight: 600;
        font-size: 20px;
    }

    .inn_text {
        font-weight: 500;
        font-size: 18px;
    }

    .section_team p {
        width: 550px;
        font-size: 28px;
    }

    .section_text_innlab{
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section_swiper_innlab {
        height: 400px;
    }

    .section_curriculum {
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
    }

    .innlab_subtitle {
        font-size: 22px;
    }

    .innlab_text {
        width: 550px;
        font-size: 28px;
        font-weight: 600;
        color: var(--text-color);
    }

    /*FINE LAB*/

    /*CONTACTS*/
    .header_contacts {
        height: 200px;
    }

    .section_contacts {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .contacts_contacts {
        margin-bottom: 50px;
        align-items: center;
    }

    .contacts_sede,
    .contacts_tel,
    .contacts_fax,
    .contacts_email {
        width: 550px;
    }

    .s_subtitle {
        font-size: 22px;
    }

    .s_subtitle + a p {
        font-size: 18px;
    }

    .s_text {
        font-size: 18px;
    }

    .contacts_text {
        width: 550px;

    }

    .contacts_text p {
        font-size: 28px;
    }
    /*FINE CONTACTS*/

    /*GPA*/

    .header_gpa {
        height: 200px;
    }

    .section_gpa {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .gpa_content {
        align-items: center;
        margin-bottom: 50px;
    }

    .gpa_title {
        font-size: 62px;
    }

    .gpa_text {
        text-align: justify;
        width: 600px;
        font-size: 22px;
    }

    .gpa_text_one {
        font-size: 22px;
        width: 600px;
    }

    .section_gpa img {
        width: 356px;
        height: 356px;
    }

    .section_info {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .info_info {
        display: flex;
        flex-direction: row;
        height: auto;
        width: 600px;
    }

    .info_info {
        margin-bottom: 25px;
    }

    .info_info img {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }

    .info_text {
        display: flex;
        flex-direction: column;
        width: 600px;
    }

    .info_title {
        font-size: 24px;
    }

    .info_subtitle {
        font-size: 20px;
    }
    /*FINE GPA*/

    /*DALYA*/
    .header_dalya,
    .header_alex,
    .header_claudya,
    .header_tungsten,
    .header_logistica,
    .header_robotyca {
        height: 200px;
    }
    /*FINE DALYA*/

    .section_video {
        height: auto;
        padding: 50px 0;
    }
    .claudya_video {
        width: 440px;
        height: 260px;
    }

    .f_img {
        justify-content: center;
    }
}

/*FOR SMALL DEVICES*/
@media screen and (max-width: 768px) {

    .gpa_text_mini {
        font-size: 18px;
    }

    .container {
        margin-inline: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none!important;
    }

    .swiper_content {
        margin-inline: 1.75rem;
    }

    .tech_swiper_content {
        margin-inline: 1.75rem;
    }

    .header_title img {
        width: 350px;
        height: 250px;
    }

    .section_societa {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 30px 0;
    }

    .societa_text {
        margin-bottom: 30px;
    }

    .societa_list_one img {
        width: 54px;
        height: 54px;
    }

    .societa_text p {
        font-size: 20px;
        width: 300px;
    }

    .societa_list_one p {
        font-size: 16px;
    }

    .section_cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 500px;
        padding: 20px 20px 40px 20px;
    }

    .card_title {
        font-size: 22px;
    }

    .card_text {
        font-size: 16px;
    }

    .section_img_slider {
        padding: 0 30px;
    }

    .section_img_slider .content {
        width: 70%;
    }

    .section_img_slider .content h1 {
        font-size: 22px;
    }

    .content_description {
        font-size: 18px;
    }

    .section_solution {
        height: auto;
        flex-direction: column;
    }

    .solution_list {
        width: 500px;
        margin-bottom: 20px;
    }

    .solution_list_one p {
        font-size: 16px;
    }

    .solution_title p {
        width: 300px;
        font-size: 32px;
    }

    .s_btn {
        font-size: 12px;
    }

    .section_solution_slides {
        height: auto;
    }

    .sol_logo_gpa {
        width: 132px;
        height: 51px;
    }
    
    .sol_logo_robo,
    .sol_logo_logi {
        width: 127px;
        height: 36px;
    }
    
    .sol_logo_alex {
        width: 151px;
        height: 34px;
    }
    
    .sol_logo_claudya {
        width: 142px;
        height: 39px;
    }
    
    .sol_logo_dalya {
        width: 99px;
        height: 40px;
    }
    
    .sol_logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .sol_main_subtitle {
        width: 500px;
        font-size: 14px;
        font-weight:400; 
    }

    .solution_text{
        width: 400px;
        font-size: 14px;
        font-weight: 400;
    }

    .solution_btn {
        font-size: 12px;
    }

    .lab_title .title_one {
        font-size: 48px;
    }

    .lab_title .title_two {
        font-size: 72px;
    }

    .lab_subtitle {
        width: 400px;
    }

    .lab_subtitle p {
        font-size: 18px;
    }

    .lab_btn {
        font-size: 12px;
    }

    .section_collaborators {
        height: auto;
        padding: 50px 0;
    }

    .collab_title {
        font-size: 22px;
    }

    .collab_subtitle {
        font-size: 22px;
    }

    .collab_logos_cert {
        justify-content: center;
        margin-bottom: 20px;
    }

    .collab_logos {
        width: auto;
        flex-direction: column;
        align-items: center;
        height: 450px;
    }

    .collab_logos .logo_redhat {
        width: 135px;
        height: 44px;
    }

    .collab_logos .logo_ibm {
        width: 90px;
        height: 42px;
    }

    .collab_logos .logo_mongodb {
        width: 151px;
        height: 41px;
    }

    .collab_logos .logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .collab_logos .logo_abby {
        width: 104px;
        height: 31px;
    }

    .collab_logos .logo_zebra {
        width: 135px;
        height: 42px;
    }

    .section_certificate {
        height: 250px;
    }

    .rete_rete {
        width: 550px;
    }

    .rete_title {
        font-size: 20px;
    }

    .rete_text {
        font-size: 16px;
        text-align: center;
    }

    .r_btn {
        font-size: 12px;
    }

    footer {
        height: auto;
        align-items: center;
        padding: 30px 0;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer_section {
        text-align: center;
        align-self: center;
    }

    .footer_section_company {
        text-align: center;
        align-self: center;
        margin-bottom: 25px;
    }

    .f_title_gpa {
        font-size: 28px;
    }

    .f_subtitle {
        font-size: 16px;
    }

    .f_text {
        font-size: 12px;
    }

    .clienti_logos,
    .hidden_logos {
    width: 400px;
    flex-direction: row;
    flex-wrap: wrap;
    }

    .clienti_logo {
        width: 150px;
        height: 67px;
    }

    /*CHI SIAMO*/

    .header_chisiamo {
        height: 200px;
    }

    .section_lavoriamo {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 30px 0;
    }

    /*FINE CHI SIAMO*/
    /*SECTION CHI SIAMO*/

    .section_chisiamo,
    .section_innovation,
    .section_innlab {
        height: auto;
        padding: 50px 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .content_chisiamo,
    .content_innovation {
        width: 450px;
    }

    .maintext_chisiamo {
        margin-bottom: 50px;
    }

    .title_chisiamo,
    .title_chefacciamo,
    .title_innovation,
    .title_innlab {
        font-size: 32px;
        text-align: center;
    }

    .text_chisiamo,
    .text_chefacciamo,
    .text_innovation,
    .text_innlab {
        text-align: justify;
    }

    .img_second_chisiamo {
        width: 350px;
        height: 350px;
    }

    .section_lavoriamo {
        height: auto;
        padding: 0 30px;
    }

    .card_lavoriamo {
        flex-direction: column;
    }

    .card_lavoriamo_one {
        flex-direction: column;
    }

    .lavoriamo_title {
        font-size: 42px;
        margin-bottom: 30px;
        text-align: center;
    }

    .lavoriamo_text {
        font-size: 18px;
        width: 400px;
        text-align: justify;
    }

    .section_clienti {
        padding: 50px 0 0 0;
    }

    .clienti_maintext {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .clienti_title {
        font-size: 20px;
    }
    
    .clienti_subtitle {
        font-size: 26px;
        width: 400px;
    }

    
    /*FINE SECTION CHI SIAMO*/

    /*SECTION INNOVATION*/

    .header_innovation {
        height: 200px;
    }

    .img_second_innovation {
        width: 300px;
        height: 300px;
    }

    .section_techology {
        height: auto;
        padding: 50px 0;
    }
    
    .technology_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .tech_title {
        font-size: 36px;
        font-weight: 600;
        color: var(--btn-primary-color);
        margin-bottom: 20px;
    }
    
    .tech_text {
        font-size: 20px;
        text-align: center;
    }
    
    .technology_container {
        padding-block: 5rem;
        max-width: 550px;
    }

    .tech_spring {
        width: 194px;
        height: 50px;
    }

    .tech_mongo {
        width: 187px;
        height: 50px;
    }

    .tech_golang {
        width: 150px;
        height: 60px;
    }
    
    .tech_jenkins {
        width: 187px;
        height: 60px;
    }

    .tech_kafka {
        width: 160px;
        height: 80px;
    }
    
    .tech_apache {
        width: 157px;
        height: 70px;
    }

    .tech_etcd {
        width: 169px;
        height: 60px;
    }

    .tech_jaeger {
        width: 182px;
        height: 60px;
    }

    .tech_grafana {
        width: 248px;
        height: 60px;
    }

    .tech_git {
        width: 143px;
        height: 60px;
    }

    .tech_azure {
        width: 207px;
        height: 60px;
    }

    .tech_aws {
        width: 100px;
        height: 60px;
    }

    .tech_cosmos {
        width: 153px;
        height: 70px;
    }

    /*FINE SECTION INNOVATION*/

    /*SOLUTIONS*/

    .header_solutions {
        height: 200px;
    }

    .section_soluzioni {
        height: auto;
        padding: 50px 0;
    }

    .soluzioni_text {
        margin-bottom: 30px;
    }

    .soluzioni_title {
        font-size: 28px;
    }

    .soluzioni_subtext {
        width: 350px;
        text-align: center;
        font-size: 18px;
        color: var(--text-color);
    }

    .soluzioni_btns {
        flex-direction: column;
        align-items: center;
    }

    .soluzioni_btns button {
        margin-bottom: 10px;
    }

    .soluzioni_divs {
        width: 350px;
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    .enterprise_card,
    .process_card,
    .innovation_card {
        justify-content: center;
    }

    /*FINE SECTION SOLUTIONS*/

    /*LAB*/

    .header_lab {
        height: 200px;
    }

    .subtitle_innlab {
        text-align: center;
        padding: 30px 0;
    }

    .inn_cards {
        margin-bottom: 50px;
        padding: 30px 0;
    }

    .inn_title {
        font-weight: 600;
    }

    .inn_text {
        font-weight: 500;
    }

    .section_team p {
        width: 350px;
        font-size: 28px;
    }

    .section_text_innlab{
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section_swiper_innlab {
        height: 400px;
    }

    .section_curriculum {
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
    }

    .innlab_subtitle {
        font-size: 20px;
        width: 450px;
    }

    .innlab_text {
        width: 350px;
        font-size: 22px;
        font-weight: 600;
        color: var(--text-color);
    }

    /*FINE LAB*/

    /*CONTACTS*/
    .header_contacts {
        height: 200px;
    }

    .section_contacts {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .contacts_contacts {
        margin-bottom: 50px;
        align-items: center;
    }

    .contacts_sede,
    .contacts_tel,
    .contacts_fax,
    .contacts_email {
        width: 350px;
    }

    .contacts_text {
        width: 450px;
    }

    .contacts_text p {
        font-size: 26px;
    }
    /*FINE CONTACTS*/

    /*GPA*/

    .header_gpa {
        height: 200px;
    }

    .section_gpa {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .gpa_content {
        align-items: center;
    }

    .gpa_title {
        font-size: 46px;
    }

    .gpa_text_one {
        text-align: justify;
        width: 450px;
    }

    .gpa_text {
        text-align: justify;
        width: 450px;
    }

    .section_gpa img {
        width: 356px;
        height: 356px;
    }

    .section_info {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .info_info {
        display: flex;
        flex-direction: row;
        height: auto;
        width: 450px;
    }

    .info_info {
        margin-bottom: 25px;
    }

    .info_info img {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }

    .info_text {
        display: flex;
        flex-direction: column;
        width: 400px;
    }

    .info_title {
        font-size: 20px;
    }

    .info_subtitle {
        font-size: 16px;
    }
    /*FINE GPA*/

    /*DALYA*/
    .header_dalya,
    .header_alex,
    .header_claudya,
    .header_tungsten,
    .header_logistica,
    .header_robotyca {
        height: 200px;
    }
    /*FINE DALYA*/

    .section_video {
        height: auto;
        padding: 50px 0;
    }
    .claudya_video {
        width: 440px;
        height: 260px;
    }

    .f_img {
        justify-content: center;
    }
}

/*FOR SMALLEST DEVICES*/
@media screen and (max-width: 540px) {

    .gpa_text_mini {
        font-size: 18px;
    }

    .container {
        margin-inline: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none!important;
    }

    .swiper_content {
        margin-inline: 1.75rem;
    }

    .tech_swiper_content {
        margin-inline: 1.75rem;
    }

    .header_title img {
        width: 350px;
        height: 250px;
    }

    .section_societa {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 30px 0;
    }

    .societa_text {
        margin-bottom: 30px;
    }

    .societa_list_one img {
        width: 54px;
        height: 54px;
    }

    .societa_text p {
        font-size: 20px;
        width: 300px;
    }

    .societa_list_one p {
        font-size: 16px;
    }

    .section_cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 300px;
        padding: 20px 20px 40px 20px;
    }

    .card_title {
        font-size: 22px;
    }

    .card_text {
        font-size: 14px;
    }

    .section_img_slider {
        padding: 0 30px;
    }

    .section_img_slider .content {
        width: 70%;
    }

    .section_img_slider .content h1 {
        font-size: 22px;
    }

    .content_description {
        font-size: 18px;
    }

    .section_solution {
        height: auto;
        flex-direction: column;
    }

    .solution_list {
        width: 300px;
        margin-bottom: 20px;
    }

    .solution_list_one p {
        font-size: 14px;
    }

    .solution_title {
        width: 300px;
    }

    .solution_title p {
        width: 300px;
        font-size: 32px;
    }

    .s_btn {
        font-size: 12px;
    }

    .section_solution_slides {
        height: auto;
    }

    .sol_logo_gpa {
        width: 132px;
        height: 51px;
    }
    
    .sol_logo_robo,
    .sol_logo_logi {
        width: 127px;
        height: 36px;
    }
    
    .sol_logo_alex {
        width: 151px;
        height: 34px;
    }
    
    .sol_logo_claudya {
        width: 142px;
        height: 39px;
    }
    
    .sol_logo_dalya {
        width: 99px;
        height: 40px;
    }
    
    .sol_logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .sol_main_subtitle {
        width: 300px;
        font-size: 14px;
        font-weight:400; 
    }

    .solution_text{
        width: 300px;
        font-size: 14px;
        font-weight: 400;
    }

    .solution_btn {
        font-size: 12px;
    }

    .collab_logos_cert {
        justify-content: center;
        margin-bottom: 20px;
    }

    .collab_logos_cert .logo_9001,
    .collab_logos_cert .logo_27001 {
        width: 90px;
        height: 58.42px;
    }

    .collab_logos_cert .logo_231 {
        width: 90px;
        height: 33px;
    }

    .arrow_left_btn, .arrow_right_btn {
        font-size: 26px;
    }

    .lab_title .title_one {
        font-size: 48px;
    }

    .lab_title .title_two {
        font-size: 72px;
    }

    .lab_subtitle {
        width: 300px;
    }

    .lab_subtitle p {
        font-size: 18px;
    }

    .lab_btn {
        font-size: 12px;
    }

    .section_collaborators {
        height: auto;
        padding: 50px 0;
    }

    .collab_title {
        font-size: 18px;
    }

    .collab_subtitle {
        font-size: 22px;
    }

    .collab_logos {
        width: auto;
        flex-direction: column;
        align-items: center;
        height: 450px;
    }

    .collab_logos .logo_redhat {
        width: 135px;
        height: 44px;
    }

    .collab_logos .logo_ibm {
        width: 90px;
        height: 42px;
    }

    .collab_logos .logo_mongodb {
        width: 151px;
        height: 41px;
    }

    .collab_logos .logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .collab_logos .logo_abby {
        width: 104px;
        height: 31px;
    }

    .collab_logos .logo_zebra {
        width: 135px;
        height: 42px;
    }

    .rete_rete {
        width: 350px;
    }

    .rete_title {
        font-size: 18px;
    }

    .rete_text {
        font-size: 14px;
        text-align: center;
    }

    .r_btn {
        font-size: 12px;
    }

    footer {
        height: auto;
        align-items: center;
        padding: 30px 0;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer_section {
        text-align: center;
        align-self: center;
        display: flex;
    }

    .footer_section_company {
        text-align: center;
        align-self: center;
        margin-bottom: 25px;
    }

    .f_img {
        justify-content: center;
    }

    .f_title_gpa {
        font-size: 28px;
    }

    .f_subtitle {
        font-size: 16px;
    }

    .f_text {
        font-size: 12px;
    }

    .img_second_chisiamo {
        width: 300px;
        height: 300px;
    }

    .clienti_logos,
    .hidden_logos {
    width: 400px;
    flex-direction: row;
    flex-wrap: wrap;
    }

    .clienti_logo {
        width: 150px;
        height: 67px;
    }

    /*CHI SIAMO*/

    .header_chisiamo {
        height: 200px;
    }

    .section_lavoriamo {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 30px 0;
    }

    /*FINE CHI SIAMO*/
    /*SECTION CHI SIAMO*/

    .section_chisiamo,
    .section_innovation,
    .section_innlab {
        height: auto;
        padding: 50px 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .content_chisiamo,
    .content_innovation {
        width: 350px;
    }

    .maintext_chisiamo {
        margin-bottom: 50px;
    }

    .title_chisiamo,
    .title_chefacciamo,
    .title_innovation,
    .title_innlab {
        font-size: 32px;
        text-align: center;
    }

    .text_chisiamo,
    .text_chefacciamo,
    .text_innovation,
    .text_innlab {
        text-align: justify;
    }

    .img_second_chisiamo {
        width: 300px;
        height: 300px;
    }

    .section_lavoriamo {
        height: auto;
        padding: 0 30px;
    }

    .card_lavoriamo {
        flex-direction: column;
    }

    .card_lavoriamo_one {
        flex-direction: column;
    }

    .lavoriamo_title {
        font-size: 32px;
        width: 350px;
        margin-bottom: 30px;
        text-align: center;
    }

    .lavoriamo_text {
        font-size: 18px;
        width: 350px;
        text-align: justify;
    }

    .section_clienti {
        padding: 50px 0 0 0;
    }

    .clienti_maintext {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .clienti_title {
        font-size: 20px;
    }
    
    .clienti_subtitle {
        font-size: 22px;
        width: 350px;
    }

    
    /*FINE SECTION CHI SIAMO*/

    /*SECTION INNOVATION*/

    .header_innovation {
        height: 200px;
    }

    .img_second_innovation {
        width: 300px;
        height: 300px;
    }

    .section_techology {
        height: auto;
        padding: 50px 0;
    }
    
    .technology_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .tech_title {
        font-size: 36px;
        font-weight: 600;
        color: var(--btn-primary-color);
        margin-bottom: 20px;
    }
    
    .tech_text {
        font-size: 20px;
        text-align: center;
    }
    
    .technology_container {
        padding-block: 5rem;
        max-width: 350px;
    }

    .tech_spring {
        width: 155px;
        height: 40px;
    }

    .tech_mongo {
        width: 150px;
        height: 40px;
    }

    .tech_golang {
        width: 126px;
        height: 50px;
    }
    
    .tech_jenkins {
        width: 156px;
        height: 50px;
    }

    .tech_kafka {
        width: 120px;
        height: 60px;
    }
    
    .tech_apache {
        width: 134px;
        height: 60px;
    }

    .tech_etcd {
        width: 142px;
        height: 50px;
    }

    .tech_jaeger {
        width: 153px;
        height: 50px;
    }

    .tech_grafana {
        width: 164px;
        height: 40px;
    }

    .tech_git {
        width: 120px;
        height: 50px;
    }

    .tech_azure {
        width: 139px;
        height: 40px;
    }

    .tech_aws {
        width: 84px;
        height: 50px;
    }

    .tech_cosmos {
        width: 132px;
        height: 60px;
    }

    /*FINE SECTION INNOVATION*/

    /*SOLUTIONS*/

    .header_solutions {
        height: 200px;
    }

    .section_soluzioni {
        height: auto;
        padding: 50px 0;
    }

    .soluzioni_text {
        margin-bottom: 30px;
    }

    .soluzioni_title {
        font-size: 28px;
    }

    .soluzioni_subtext {
        width: 350px;
        text-align: center;
        font-size: 18px;
        color: var(--text-color);
    }

    .soluzioni_btns {
        flex-direction: column;
        align-items: center;
    }

    .soluzioni_btns button {
        margin-bottom: 10px;
    }

    .soluzioni_divs {
        width: 350px;
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    .enterprise_card,
    .process_card,
    .innovation_card {
        justify-content: center;
    }

    /*FINE SECTION SOLUTIONS*/

    /*LAB*/

    .header_lab {
        height: 200px;
    }

    .subtitle_innlab {
        text-align: center;
        padding: 30px 0;
    }

    .inn_cards {
        margin-bottom: 50px;
        padding: 30px 0;
    }

    .inn_title {
        font-weight: 600;
    }

    .inn_text {
        font-weight: 500;
    }

    .section_team p {
        width: 350px;
        font-size: 28px;
    }

    .section_text_innlab{
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section_swiper_innlab {
        height: 400px;
    }

    .section_curriculum {
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
    }

    .innlab_text {
        width: 350px;
        font-size: 22px;
        font-weight: 600;
        color: var(--text-color);
    }

    .innlab_subtitle {
        font-size: 18px;
        width: 350px;
    }

    /*FINE LAB*/

    /*CONTACTS*/
    .header_contacts {
        height: 200px;
    }

    .section_contacts {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .contacts_contacts {
        margin-bottom: 50px;
        align-items: center;
    }

    .contacts_sede,
    .contacts_tel,
    .contacts_fax,
    .contacts_email {
        width: 350px;
    }

    .contacts_text {
        width: 350px;

    }

    .contacts_text p {
        font-size: 22px;
    }

    .s_text {
        font-size: 16px;
    }
    /*FINE CONTACTS*/

    /*GPA*/

    .header_gpa {
        height: 200px;
    }

    .section_gpa {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .gpa_content {
        align-items: center;
    }

    .gpa_title {
        text-align: center;
        font-size: 46px;
    }

    .gpa_text {
        text-align: justify;
        font-size: 16px;
        width: 350px;
    }

    .gpa_text_one {
        text-align: justify;
        margin-bottom: 10px;
        font-size: 16px;
        width: 350px;
    }

    .section_gpa img {
        width: 256px;
        height: 256px;
    }

    .section_info {
        height: auto;
        flex-direction: column;
        padding: 50px 0 0 0;
    }

    .info_info {
        display: flex;
        flex-direction: row;
        height: auto;
        width: 350px;
    }

    .info_info:not(:last-child) {
        margin-bottom: 25px;
    }

    .info_info img {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }

    .info_text {
        display: flex;
        flex-direction: column;
        width: 300px;
    }

    .info_title {
        font-size: 18px;
    }

    .info_subtitle {
        font-size: 14px;
    }
    /*FINE GPA*/

    /*DALYA*/
    .header_dalya,
    .header_alex,
    .header_claudya,
    .header_tungsten,
    .header_logistica,
    .header_robotyca {
        height: 200px;
    }
    /*FINE DALYA*/

    .section_video {
        height: auto;
        padding: 50px 0;
    }
    .claudya_video {
        width: 340px;
        height: 160px;
    }

    
    .footer_bottom p {
        font-size: 10px;
    }
}

/*FOR EVEN SMALLEST DEVICES*/
@media screen and (max-width: 390px) {

    .gpa_text_mini {
        font-size: 18px;
    }

    .container {
        margin-inline: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none!important;
    }

    .swiper_content {
        margin-inline: 1.75rem;
    }

    .tech_swiper_content {
        margin-inline: 1.75rem;
    }

    .header_title img {
        width: 350px;
        height: 250px;
    }

    .section_societa {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 30px 0;
    }

    .societa_text {
        margin-bottom: 30px;
    }

    .societa_list_one {
        width: 280px;
    }

    .societa_list_one img {
        width: 44px;
        height: 44px;
    }

    .societa_text p {
        font-size: 18px;
        width: 280px;
    }

    .societa_list_one p {
        font-size: 16px;
    }

    .section_cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 280px;
        padding: 20px 20px 40px 20px;
    }

    .card_title {
        font-size: 18px;
    }

    .card_text {
        font-size: 14px;
    }

    .section_img_slider {
        padding: 0 30px;
    }

    .section_img_slider .content {
        width: 70%;
    }

    .section_img_slider .content h1 {
        font-size: 22px;
    }

    .content_description {
        font-size: 18px;
    }

    .section_solution {
        height: auto;
        flex-direction: column;
    }

    .solution_list {
        width: 280px;
        margin-bottom: 20px;
    }

    .solution_list_one p {
        font-size: 14px;
    }

    .solution_title {
        width: 300px;
    }

    .solution_title p {
        width: 300px;
        font-size: 32px;
    }

    .s_btn {
        font-size: 12px;
    }

    .section_solution_slides {
        height: auto;
    }

    .sol_logo_gpa {
        width: 132px;
        height: 51px;
    }
    
    .sol_logo_robo,
    .sol_logo_logi {
        width: 127px;
        height: 36px;
    }
    
    .sol_logo_alex {
        width: 151px;
        height: 34px;
    }
    
    .sol_logo_claudya {
        width: 142px;
        height: 39px;
    }
    
    .sol_logo_dalya {
        width: 99px;
        height: 40px;
    }
    
    .sol_logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .sol_main_subtitle {
        width: 300px;
        font-size: 14px;
        font-weight:400; 
    }

    .solution_text{
        width: 280px;
        font-size: 14px;
        font-weight: 400;
    }

    .solution_btn {
        font-size: 12px;
    }

    .collab_logos_cert {
        justify-content: center;
        margin-bottom: 20px;
    }

    .collab_logos_cert .logo_9001,
    .collab_logos_cert .logo_27001 {
        width: 90px;
        height: 58.42px;
    }

    .collab_logos_cert .logo_231 {
        width: 90px;
        height: 33px;
    }

    .arrow_left_btn, .arrow_right_btn {
        font-size: 26px;
    }

    .lab_title .title_one {
        font-size: 32px;
    }

    .lab_title .title_two {
        font-size: 46px;
    }

    .lab_subtitle {
        width: 280px;
    }

    .lab_subtitle p {
        font-size: 16px;
    }

    .lab_btn {
        font-size: 12px;
    }

    .section_collaborators {
        height: auto;
        padding: 50px 0;
    }

    .collab_title {
        font-size: 16px;
    }

    .collab_subtitle {
        font-size: 18px;
    }

    .collab_logos {
        width: auto;
        flex-direction: column;
        align-items: center;
        height: 450px;
    }

    .collab_logos .logo_redhat {
        width: 135px;
        height: 44px;
    }

    .collab_logos .logo_ibm {
        width: 90px;
        height: 42px;
    }

    .collab_logos .logo_mongodb {
        width: 151px;
        height: 41px;
    }

    .collab_logos .logo_tungsten {
        width: 131px;
        height: 31px;
    }

    .collab_logos .logo_abby {
        width: 104px;
        height: 31px;
    }

    .collab_logos .logo_zebra {
        width: 135px;
        height: 42px;
    }

    .rete_rete {
        width: 280px;
    }

    .rete_title {
        font-size: 16px;
    }

    .rete_text {
        font-size: 14px;
        text-align: center;
    }

    .r_btn {
        font-size: 12px;
    }

    footer {
        height: auto;
        align-items: center;
        padding: 30px 0;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer_section {
        text-align: center;
        align-self: center;
        display: flex;
    }

    .footer_section_company {
        text-align: center;
        align-self: center;
        margin-bottom: 25px;
    }

    .f_img {
        justify-content: center;
    }

    .f_title_gpa {
        font-size: 22px;
    }

    .f_subtitle {
        font-size: 14px;
    }

    .f_text {
        font-size: 12px;
    }

    .img_second_chisiamo {
        width: 200px;
        height: 200px;
    }

    .clienti_logos,
    .hidden_logos {
    width: 250px;
    flex-direction: row;
    flex-wrap: wrap;
    }

    .clienti_logo {
        width: 150px;
        height: 67px;
    }

    /*CHI SIAMO*/

    .header_chisiamo {
        height: 200px;
    }

    .section_lavoriamo {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 30px 0;
    }

    /*FINE CHI SIAMO*/
    /*SECTION CHI SIAMO*/

    .section_chisiamo,
    .section_innovation,
    .section_innlab {
        height: auto;
        padding: 50px 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .content_chisiamo,
    .content_innovation {
        width: 280px;
    }

    .maintext_chisiamo {
        margin-bottom: 50px;
    }

    .title_chisiamo,
    .title_chefacciamo,
    .title_innovation,
    .title_innlab {
        font-size: 22px;
        text-align: center;
    }

    .text_chisiamo,
    .text_chefacciamo,
    .text_innovation,
    .text_innlab {
        text-align: justify;
    }

    .img_second_chisiamo {
        width: 200px;
        height: 200px;
    }

    .section_lavoriamo {
        height: auto;
        padding: 0 30px;
    }

    .card_lavoriamo {
        flex-direction: column;
    }

    .card_lavoriamo_one {
        flex-direction: column;
    }

    .lavoriamo_title {
        font-size: 22px;
        width: 280px;
        margin-bottom: 30px;
        text-align: center;
    }

    .lavoriamo_text {
        font-size: 16px;
        width: 280px;
        text-align: justify;
    }

    .section_clienti {
        padding: 50px 0 0 0;
    }

    .clienti_maintext {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .clienti_title {
        font-size: 20px;
    }
    
    .clienti_subtitle {
        font-size: 22px;
        width: 280px;
    }

    
    /*FINE SECTION CHI SIAMO*/

    /*SECTION INNOVATION*/

    .header_innovation {
        height: 200px;
    }

    .img_second_innovation {
        width: 200px;
        height: 200px;
    }

    .section_techology {
        height: auto;
        padding: 50px 0;
    }
    
    .technology_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .tech_title {
        font-size: 26px;
        font-weight: 600;
        color: var(--btn-primary-color);
        margin-bottom: 20px;
    }
    
    .tech_text {
        font-size: 18px;
        text-align: center;
    }
    
    .technology_container {
        padding-block: 5rem;
        max-width: 280px;
    }

    .tech_spring {
        width: 155px;
        height: 40px;
    }

    .tech_mongo {
        width: 150px;
        height: 40px;
    }

    .tech_golang {
        width: 126px;
        height: 50px;
    }
    
    .tech_jenkins {
        width: 156px;
        height: 50px;
    }

    .tech_kafka {
        width: 120px;
        height: 60px;
    }
    
    .tech_apache {
        width: 134px;
        height: 60px;
    }

    .tech_etcd {
        width: 142px;
        height: 50px;
    }

    .tech_jaeger {
        width: 153px;
        height: 50px;
    }

    .tech_grafana {
        width: 164px;
        height: 40px;
    }

    .tech_git {
        width: 120px;
        height: 50px;
    }

    .tech_azure {
        width: 139px;
        height: 40px;
    }

    .tech_aws {
        width: 84px;
        height: 50px;
    }

    .tech_cosmos {
        width: 132px;
        height: 60px;
    }

    /*FINE SECTION INNOVATION*/

    /*SOLUTIONS*/

    .header_solutions {
        height: 200px;
    }

    .section_soluzioni {
        height: auto;
        padding: 50px 0;
    }

    .soluzioni_text {
        margin-bottom: 30px;
    }

    .soluzioni_title {
        font-size: 22px;
    }

    .soluzioni_subtext {
        width: 280px;
        text-align: center;
        font-size: 16px;
        color: var(--text-color);
    }

    .soluzioni_btns {
        flex-direction: column;
        align-items: center;
    }

    .soluzioni_btns button {
        margin-bottom: 10px;
    }

    .soluzioni_divs {
        width: 280px;
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    .enterprise_card,
    .process_card,
    .innovation_card {
        justify-content: center;
    }

    .enterprise_card p, 
    .process_card p, 
    .innovation_card p {
        font-size: 14px;
    }

    /*FINE SECTION SOLUTIONS*/

    /*LAB*/

    .header_lab {
        height: 200px;
    }

    .subtitle_innlab {
        text-align: center;
        padding: 30px 0;
    }

    .inn_cards {
        margin-bottom: 50px;
        padding: 30px 0;
    }

    .inn_title {
        font-weight: 600;
        font-size: 16px;
    }

    .inn_text {
        font-weight: 500;
        font-size: 14px;
    }

    .section_team p {
        width: 280px;
        font-size: 22px;
    }

    .section_text_innlab{
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section_swiper_innlab {
        height: 400px;
    }

    .section_curriculum {
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
    }

    .innlab_text {
        width: 280px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-color);
    }

    .innlab_subtitle {
        font-size: 16px;
        width: 280px;
    }

    /*FINE LAB*/

    /*CONTACTS*/
    .header_contacts {
        height: 200px;
    }

    .section_contacts {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .contacts_title {
        font-size: 22px;
    }

    .contacts_contacts {
        margin-bottom: 50px;
        align-items: center;
    }

    .contacts_sede,
    .contacts_tel,
    .contacts_fax,
    .contacts_email {
        width: 280px;
    }

    .contacts_text {
        width: 280px;

    }

    .contacts_text p {
        font-size: 22px;
    }

    .s_subtitle {
        font-size: 18px;
    }

    .s_text {
        font-size: 14px;
    }
    /*FINE CONTACTS*/

    /*GPA*/

    .header_gpa {
        height: 200px;
    }

    .section_gpa {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
    }

    .gpa_content {
        align-items: center;
    }

    .gpa_title {
        text-align: center;
        font-size: 32px;
    }

    .gpa_text {
        text-align: justify;
        font-size: 16px;
        width: 280px;
    }

    .gpa_text_one {
        text-align: justify;
        margin-bottom: 10px;
        font-size: 16px;
        width: 280px;
    }

    .section_gpa img {
        width: 256px;
        height: 256px;
    }

    .section_info {
        height: auto;
        flex-direction: column;
        padding: 50px 0 0 0;
    }

    .info_info {
        display: flex;
        flex-direction: row;
        height: auto;
        width: 300px;
    }

    .info_info:not(:last-child) {
        margin-bottom: 25px;
    }

    .info_info img {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }

    .info_text {
        display: flex;
        flex-direction: column;
        width: 280px;
    }

    .info_title {
        font-size: 18px;
    }

    .info_subtitle {
        font-size: 14px;
    }
    /*FINE GPA*/

    /*DALYA*/
    .header_dalya,
    .header_alex,
    .header_claudya,
    .header_tungsten,
    .header_logistica,
    .header_robotyca {
        height: 200px;
    }
    /*FINE DALYA*/

    .section_video {
        height: auto;
        padding: 50px 0;
    }
    .claudya_video {
        width: 280px;
        height: 132px;
    }

    
    .footer_bottom p {
        font-size: 10px;
    }
}