/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #FFFFFF;
    overflow-x: hidden;
}

/*********************************
* ******** REUTILIZÁVEIS *********
******************************** */
/* Forms */
.form{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.form_label_box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.form_label{
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.form_label_margin{
    margin-bottom: 0;
}

.form_label:last-child{
    margin-bottom: 0;
}

.form_label_two{
    width: calc(50% - 10px);
}

.form_text{
    font-size: var(--textSize14);
    color: var(--colorText_90);
    display: block;
    padding-bottom: 9px;
    width: 100%;
}

.form_text_info{
    font-size: var(--textSize12);
    color: var(--colorText_70);
    display: block;
    padding-top: 3px;
}

.form_input{
    width: 100%;
    font-size: var(--textSize15);
    height: 50px;
    color: var(--colorText_90);
    padding: 0 20px;
    border: 1px solid var(--colorBorder);
    outline: none;
    resize: none;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    background: #FFFFFF;
}

.form_input_area{
    height: 130px;
    padding: 20px;
}

.form_input:focus{
    border:2px solid var(--colorPrimary);
}

.form_input.disabled{
    background: #f5f5f5;
}

.form_label_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_label_info .form_text{
    padding-bottom: 0;
}

.form_label select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("data:image/svg+xml,%3Csvg width='14' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 6 6 6-6' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 20px center no-repeat;
    cursor: pointer;
    padding-right: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    border: none;
    text-decoration: none;
    font-size: var(--textSize15);
    color: var(--colorWhite);
    background: #666;
    border-radius: var(--borderRadius);
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    border-radius: 50px;
}

.btn:hover {
    background: var(--colorPrimaryDark);
}

.btn-default {
    background: var(--colorPrimary);
    color: var(--colorSecondary);
}

.btn-default:hover {
    background: var(--colorPrimaryDark);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
}

.btn-icon-element{
    margin-left: 10px;
}

/* Loading */
.mask_load{
    background: rgba(0, 0, 0, 0.8) !important;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999999999999999999999;
    display: none;
}

.mask_load img{
    margin: auto;
    height: 90px;
}

/* Title */
.title-section-wrapper{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.title-section-line{
    width: 20px;
    height: 2px;
    background: gray;
}

.title-section-h2 {
    width: 100%;
    font-size: var(--textSize15);
    font-weight: 600;
    line-height: 20px;
    border-bottom: 2px solid var(--colorBorder);
    padding-bottom: 30px;
}

.title-section-h1 {
    font-size: var(--textSize54);
    line-height: 64px;
    font-weight: 600;
    width: 100%;
}

/* Padding Container */
.padding_container {
    padding: 120px 0;
}

.padding_container_page {
    padding: 100px 0;
}

/*********************************
* *********** HEADER *************
******************************** */
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 26px 0;
}

.header_page{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_content{
    justify-content: space-between;
    align-items: center;
}

.header_logo_branca{
    display: block;
}

.header_logo_default{
    display: none;
}

.header_nav { 
    align-items: center;
}

.header_nav_wrapper{
    align-items: center;
    gap: 34px;
}

.header_nav a {
    color: var(--colorWhite);
    font-size: var(--textSize14);
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.header_nav a.active,
.header_nav a:hover{
    color: var(--colorPrimary);
    font-weight: 400;
    border-color: var(--colorPrimary);
}

.header_nav a.btn_nav {
    display: flex;
    align-items: center;
    padding: 10.5px 24px;
    border-radius: 100px;
    color: var(--colorWhite);
    font-weight: 500;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.30);
    gap: 8px;
}

.header_nav a.btn_nav:hover{
    border-color: var(--colorPrimary);
}

.header_nav_mobile{
    display: none;
    cursor: pointer;
    stroke: var(--colorWhite);
}

.header_nav_close {
    display: none;
    cursor: pointer;
    stroke: var(--colorPrimary);
}

.header_fixed {
    position: fixed;
    background: var(--colorWhite);
    top: 0;
    left: 0;
    z-index: 9;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
}

.header_fixed .header_logo_branca{
    display: none;
}

.header_fixed .header_logo_default{
    display: block;
}

.header_fixed .header_nav a {
    color: var(--colorText_50);
}

.header_fixed .header_nav a.active,
.header_fixed .header_nav a:hover{
    color: var(--colorText_90);
}

.header_fixed .header_nav a.btn_nav {
    color: var(--colorSecondary);
    border: 1px solid var(--colorBorder);
}

.header_fixed .header_nav a.btn_nav:hover{
    border-color: var(--colorPrimary);
}

.header_fixed .header_nav_mobile{
    stroke: var(--colorPrimary);
}

/*********************************
* *********** CONTENT *************
******************************** */
/* Banner Hero */
.banner {
    width: 100%;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 100px 0 0 0;
    background: url('../../img/bg-banner.jpg') center no-repeat;
}

.banner_content{
    height: calc(100vh - 214px);
    align-content: center;
    justify-content: center;
}

.banner_content h1,
.banner_content span{
    width: 100%;
    text-align: center;
}

.banner_content h1{
    font-size: var(--textSize78);
    line-height: 84px;
    font-weight: 600;
    color: var(--colorWhite);
    padding: 0 100px 25px 100px;
}

.banner_content span{
    font-size: var(--textSize20);
    line-height: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    padding: 0 250px 60px 250px;
}

.banner_clients{
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 0;
    overflow: hidden;
}

.banner_clients_content{
    overflow: hidden;
}

.banner_clients .clients_content .swiper-wrapper {
    align-items: center;
}

.banner_clients .clients_box {
    display: flex;
    justify-content: center;
}

/* About */
.about{
    width: 100%;
    background: #FFF;
    position: relative;
}

.about_content{
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.about_header{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
}

.about_header .title-section-h2 {
    color: var(--colorText_80);
    border-color: var(--colorBorder);
}
 
.about_header .title-section-h1 {
    color: var(--colorText_90);
}

.about_items{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about_left{
    width: calc(50% - 40px);
    align-items: center;
    gap: 14px;
}

.about_left p{
    width: 100%;
    font-size: var(--textSize15);
    color: var(--colorText_80);
    line-height: 24px;
}

.about_right{
    width: 50%;
}

.about_right img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--borderRadius);
}

/* Projects */
.projects{
    width: 100%;
    background: var(--colorSecondaryDark);
    overflow: hidden;
    position: relative;
}

.projects_content{
    gap: 60px;
}

.projects_header{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
}

.projects_header .title-section-h2 {
    color: var(--colorPrimary);
    border-color: rgba(255, 255, 255, 0.15);
}

.projects_header_text{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
 
.projects_header_text .title-section-h1 {
    width: 80%;
    color: #FFF;
}

.projects_header_paginator_prev,
.projects_header_paginator_next{
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid var(--colorPrimary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects_header_paginator_next{
    margin-left: 10px;
}

.projects_header_paginator_prev span,
.projects_header_paginator_next span {
    font-size: 1.3em;
    color: var(--colorPrimary);
}

.projects_header_paginator_next span{
    padding-left: 2px;
}

.projects_header_paginator_prev.swiper-button-disabled,
.projects_header_paginator_next.swiper-button-disabled {
    background: transparent;
    opacity: 0.4;
}

.projects_wrapper{
    width: 100%;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
}

.projects_wrapper_message{
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    border-radius: var(--borderRadius);
    padding: 15px 20px;
    font-size: var(--textSize14);
}

.projects_wrapper .swiper-slide{
    border-radius: var(--borderRadius);
    position: relative;
    overflow: hidden;
}

.projects_box_image{
    width: 100%;
    object-fit: cover;
}

.projects_box_infos{
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: inline-grid;
    gap: 30px;
}

.projects_box_infos_image{
    display: flex;
    position: relative;
    justify-content: center;
}

.projects_box_infos_image img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    object-fit: cover;
}

.projects_box_infos_image span{
    position: absolute;
    bottom: -12px;
    width: 24px;
    height: 24px;
    background: var(--colorPrimary);
    display: flex;
    justify-content: center;
    border-radius: 50%;
}

.projects_box_infos_icons{
    display: inline-grid;
    justify-content: center;
    gap: 12px;
}

.projects_box_hover{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(4px);
    display: flex;
    flex-wrap: wrap;
    align-content: end;
    padding: 34px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projects_box:hover .projects_box_hover {
    opacity: 1;
}

.projects_box_hover h1{
    width: 100%;
    font-size: var(--textSize20);
    font-weight: 600;
    color: var(--colorText_90);
    margin-bottom: 5px;
}

.projects_box_hover span{
    width: 100%;
    font-size: var(--textSize14);
    color: var(--colorText_70);
    margin-bottom: 24px;
}

/* Soluções */
.solutions{
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.solutions_content{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.solutions_header{
    width: 100%;
}

.solutions_wrapper{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.solutions_text{
    width: calc(48% - 80px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-content: start;
}

.solutions_text h1{
    color: var(--colorText_90);
}

.solutions_text p{
    font-size: var(--textSize15);
    line-height: 24px;
    color: var(--colorText_80);
}

.solutions_boxs{
    width: 52%;
    overflow: hidden;
}

.solutions_box {
    border-bottom: 1px solid var(--colorText_10);
    padding: 30px 0;
}

.solutions_box:first-child{
    padding: 0 0 30px 0;
}

.solutions_box_header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 10px 0;
    font-weight: 600;
    font-size: var(--textSize32);
}

.solutions_box_header_text{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.solutions_box_header span.number {
    color: var(--colorPrimary);
}

.solutions_box_header span.title {
    color: var(--colorText_90);
}

.solutions_box_header {
    transition: transform 0.3s ease;
}

.solutions_box_header_icon{
    font-size: var(--textSize20);
    color: var(--colorText_50);
}

.solutions_box.active .solutions_box_header_icon{
    color: var(--colorText_90);
}

.solutions_box_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--colorText_80);
  font-size: var(--textSize15);
}

.solutions_box_content.open {
  max-height: 200px; /* valor grande o suficiente pro conteúdo caber */
  padding-bottom: 10px;
}

/*********************************
* *********** PAGES *************
******************************** */
/* Pages */
.banner_page{
    width: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    overflow: hidden;
    background: url(../../img/bg-banner.jpg) center no-repeat;
}

.banner_page_content h1{
    width: 100%;
    font-size: var(--textSize44);
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
}

.banner_page_content_text{
    width: 100%;
    font-size: var(--textSize14);
    color: rgba(255, 255, 255, 0.7);
    line-height: 20px;
    text-align: center;
    margin-top: 20px;
    font-weight: 300;
    padding: 0 200px;
}

.projects_page{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.projects_page .projects_box{
    position: relative;
}

/* Single project */
.banner_page_single .banner_page_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.banner_page_single_type{
    display: flex;
    justify-content: center;
}

.banner_page_single_type strong{
    border-radius: 100px;
    background: rgba(215, 242, 7, 0.10);
    font-size: var(--textSize14);
    color: var(--colorPrimary);
    padding: 6px 20px;
    font-weight: 400;
}

.banner_page_single_infos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.banner_page_single_infos img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid #FFFFFF;
}

.banner_page_single_info{
    width: 100%;
    text-align: center;
}

.banner_page_single_info span{
    padding: 0;
}

.projects_single_page{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.single_about{
    width: 100%;
    background: #FAFAFA;
    display: flex;
    flex-wrap: wrap;
}

.single_about .container{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.single_about_infos{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.single_about_infos h3{
    width: 30%;
    font-size: var(--textSize30);
    color: var(--colorText_90);
    font-weight: 600;
}

.single_about_info{
    width: calc(70% - 20px);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.single_about_info p{
    font-size: var(--textSize15);
    color: var(--colorText_80);
}

.single_about_numbers{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single_about_number{
    width: calc(25% - 20px);
    background: #FFFFFF;
    border: 1px solid var(--colorBorder);
    border-radius: var(--borderRadius);
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.single_about_number span{
    font-size: var(--textSize14);
    color: var(--colorText_70);
}

.single_about_number strong{
    font-size: var(--textSize40);
    color: var(--colorText_90);
    font-weight: 600;
}

.single_gallery{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.single_gallery .network{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.single_gallery .idv{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
}

.single_gallery .idv img{
    width: 100%;
}

.single_gallery img{
    border-radius: var(--borderRadius);
}

/* Page error */
.page_error{
    width: 100%;
    background: #EBEBEB;
}

.page_error_content{
    justify-content: center;
    padding: 100px 0;
}

.page_error .error_box_infos{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page_error .error_box_infos h1 {
    width: 100%;
    font-size: var(--textSize90);
    text-align: center;
    font-weight: 500;
    color: var(--colorSecondary);
    padding-bottom: 10px;
}

.page_error .error_box_infos h2{
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: var(--textSize28);
    color: var(--colorText_90);
    padding-bottom: 10px;
}

.page_error .error_box_infos span{
    text-align: center;
    font-size: var(--textSize16);
    line-height: 22px;
    color: var(--colorText_70);
    display: flex;
    padding-bottom: 50px;
}


/*********************************
* *********** FOOTER *************
******************************** */
/* Footer */
.footer{
    width: 100%;
    background: var(--colorSecondaryDark);
    position: relative;
}

.footer_header{
    width: 100%;
}

.footer_header_content{
    align-items: center;
    justify-content: space-between;
}

.footer_header_title{
    width: 64%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-right: 100px;
}

.footer_header_title h1{
    width: 100%;
    font-size: var(--textSize54);
    line-height: 64px;
    color: var(--colorWhite);
    font-weight: 600;
}

.footer_header_infos{
    width: 36%;
    align-items: center;
    gap: 50px;
    padding: 100px 80px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer_header_infos .footer_infos{
    width: 100%;
    gap: 20px;
}

.footer_header_infos .footer_info{
    width: 100%;
    text-decoration: none;
    display: flex;
    gap: 10px;
}

.footer_header_infos .footer_info_text{
    display: inline-grid;
}

.footer_header_infos .footer_info_text .footer_info_title{
    font-size: var(--textSize14);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.footer_header_infos .footer_info_text .footer_info_span{
    font-size: var(--textSize15);
    color: var(--colorWhite);
}

.footer_header_infos .footer_networks{
    width: 100%;
    display: inline-grid;
    gap: 10px;
}

.footer_header_infos .footer_networks_title{
    font-size: var(--textSize15);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.footer_header_infos .footer_networks_item{
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer_header_infos .footer_networks_item_icon{
    background: rgba(215, 242, 7, 0.15);
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--colorPrimary);
}

.footer_header_infos .footer_networks_item_text{
    font-size: var(--textSize14);
    color: #FFFFFF;
}

.footer_copy{
    width: 100%;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer_copy_content{
    justify-content: space-between;
    align-items: center;
}

.footer_copy_content .copy_text{
    font-size: var(--textSize14);
    color: var(--colorWhite);
}

.footer_copy_content .copy_top{
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer_copy_content .copy_top span{
    font-size: var(--textSize14);
    font-weight: 600;
    color: var(--colorWhite);
}

/*********************************
* *********** COOKIES *************
******************************** */
.cookies {
    color: var(--colorText_90);
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 99;
    font-size: var(--textSize14);
    line-height: 22px;
    box-shadow: 0 4px 70px rgba(2, 33, 23, 0.2);
    background: var(--colorWhite);
    display: flex;
}

.cookies_wrapper {
    padding: 30px 40px;
    margin: auto;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;
}

.cookies_wrapper p {
    padding-right: 40px;
    margin-bottom: 0;
}

@keyframes slideUp {
    to {
        transform: initial;
        opacity: initial;
    }
}

.cookies_btn {
    background: var(--colorPrimary);
    color: var(--colorSecondaryDark);
    cursor: pointer;
    border: none;
    padding: 0.8rem 50px;
    font-size: var(--textSize14);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
}

.cookies_btn:hover {
    background: var(--colorPrimaryDark);
}

/*********************************
* ******** MEDIA QUERIES *********
******************************** */
/* Media Queries */
/* 1200 */
@media (max-width: 1200px) {
    /* Header */
    .header_nav {
        width: 100%;
        height: 100%;
        position: fixed;
        background: #FFFFFF;
        right: -100%;
        top: 0px;
        z-index: 999;
    }

    .header_nav_wrapper {
        margin: auto;
        width: 600px;
        max-width: 90%;
        justify-content: center;
    }

    .header_nav a {
        width: 100%;
        text-align: center;
        padding: 0 0 50px 0;
        color: var(--colorText_70) !important;
        font-size: var(--textSize20);
        position: relative;
        display: flex;
        justify-content: center;
        font-weight: 500;
        border: none;
    }

    .header_nav a:hover{
        color: var(--colorPrimary) !important;
    }

    .header_nav_mobile {
        display: block;
    }

    .header_nav a.btn_nav{
        width: 50%;
        border-color: var(--colorPrimary);
        padding: 15px 30px;
        margin-left: 0;
        color: var(--colorSecondary) !important;
    }

    .header_nav a.btn_nav:hover{
        border-color: var(--colorPrimaryDark);
    }

    .header_nav_close {
        display: block;
        position: absolute;
        right: 40px;
        top: 40px;
        stroke: var(--colorPrimary);
    }

    .header_nav_close:hover{
        stroke: var(--colorPrimaryDark);
    }
}

/* 991 */
@media (max-width: 991px) {
    /* Padding Container */
    .padding_container {
        padding: 80px 0;
    }

    /* Banner hero */
    .banner_content h1{
        padding: 0 0 25px 0;
    }

    .banner_content span{
        padding: 0 0 40px 0;
    }

    /* About */
    .about_content{
        gap: 40px;
    }

    .about_left {
        width: 100%;
        margin-bottom: 30px;
    }

    .about_left_header{
        margin-bottom: 30px;
    }

    .about_right{
        width: 100%;
        position: relative;
    }

    .about_right_img{
        width: 100%;
    }

    /* Projects */
    .projects_content{
        gap: 40px;
    }

    /* Solutions */
    .solutions_content {
        gap: 40px;
    }

    .solutions_wrapper{
        gap: 40px;
    }

    .solutions_text,
    .solutions_boxs{
        width: 100%;
    }

    /* Footer */
    .footer_header{
        padding: 50px 0;
    }

    .footer_header_content{
        gap: 40px;
    }

    .footer_header_title,
    .footer_header_infos {
        width: 100%;
    }

    .footer_header_infos {
        border-left: none;
        padding: 0;
        gap: 30px;
    }

    /* Cookies */
    .cookies_wrapper {
        flex-wrap: wrap;
    }

    .cookies_wrapper p {
        width: 100%;
        text-align: center;
        padding-bottom: 25px;
        padding-right: 0;
    }

    .cookies_btn {
        width: 100%;
    }

    /* Pages */
    .banner_page_content span{
        padding: 0;
    }

    .projects_page {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .single_about .container{
        gap: 40px;
    }

    .single_about_infos{
        gap: 10px;
    }

    .single_about_infos h3{
        width: 100%;
    }

    .single_about_info{
        width: 100%;
    }

    .single_about_numbers{
        gap: 20px;
    }

    .single_about_number{
        width: calc(50% - 10px);
    }

    .single_gallery .network{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .single_gallery .idv{
        gap: 20px;
    }
}

/* 560 */
@media(max-width: 560px){
    /* Padding Container */
    .padding_container {
        padding: 50px 0;
    }

    /* Title Section */
    .title-section-h1 {
        font-size: var(--textSize32);
        line-height: 38px;
    }

    /* Header */
    .header_nav_wrapper{
        width: 100%;
    }

    .header_nav a.btn_nav{
        width: 80%;
    }

    /* Banner hero */
    .banner{
        height: auto;
        position: relative;
    }

    .banner_content h1{
        font-size: var(--textSize40);
        line-height: 44px;
    }

    .banner_content span{
        font-size: var(--textSize16);
        line-height: 24px;
        padding-bottom: 20px;
    }

    /* About */
    .about_header,
    .about_content{
        gap: 30px;
    }

    /* Projects */
    .projects_header,
    .projects_content {
        gap: 30px;
    }

    .projects_header_text{
        gap: 20px;
    }

    /* Solutions */
    .solutions_content,
    .solutions_wrapper{
        gap: 30px;
    }

    .solutions_box_header{
        font-size: var(--textSize24);
    }

    .solutions_box{
        padding: 15px 0;
    }

    .solutions_box:first-child{
        padding: 0 0 15px 0;
    }

    /* Footer */
    .footer_header_title h1{
        font-size: var(--textSize36);
        line-height: 44px;
    }

    .footer_copy_content {
        gap: 5px;
    }

    /* Pages */
    .banner_page{
        padding: 150px 0 70px 0;
    }

    .banner_page_content h1{
        font-size: var(--textSize36);
    }

    .projects_page {
        grid-template-columns: 1fr;
    }

    .single_about_number{
        width: 100%;
    }

    .single_gallery .network{
        grid-template-columns: 1fr;
    }
}