:root {
    --color-font-light: #ffffff;
    --color-font-dark: #0f194a;

    --color-primary: #0f194a;
    --color-secondary: #4d668e;
    --color-secondary2: #0f194a;
    
    --color-primary-hover: #4d668e;
    --color-secondary-hover: #0f194a;

    --color-header: #0f194a;
    --color-bg-plano: #ffffff;
}

* {
    font-family: 'Poppins' sans-serif;
    font-display: swap;
    color: var(--color-font-dark);
}

html,
body {
    overflow: auto !important;
    scroll-behavior: smooth;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

a {
    color: var(--color-font-dark);
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(246, 147, 18, .40) !important;
}

.grecaptcha-badge {
    display: none !important;
}


/* MENSAGEM ALERT AJAX e FLASHDATA */
.msg_flashdata {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    max-width: 600px;
}

.msg_status {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: -600px;
    max-width: 600px;
}

.msg_flashdata .alert,
.msg_status .alert {
    border-radius: 10px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.3rem;
}

.msg_flashdata .alert button span,
.msg_status .alert button span {
    font-size: 2.3rem;
}

@media(max-width:767px) {
    .msg_status {
        top: 0;
        right: 0;
        width: 100%;
    }
}



/* ESTILO DE BOTÕES DENTRO DO TEMA */
.btn_theme_primary {
    transition: .5s;
    border-radius: 2rem !important;
    padding: 6px 30px !important;
    color: var(--color-font-light) !important;
    border: 2px solid var(--color-secondary);
}

.btn_theme_primary:hover {
        transition: .5s !important;
    background-color: var(--color-primary-hover);
    border: 2px solid var(--color-header);
    color: var(--color-primary)!important;
}

.btn_theme_secondary {
    transition: .5s;
    border-radius: 2rem !important;
    padding: 10px 2rem !important;
    color: var(--color-font-light) !important;
    background-color: var(--color-primary) !important;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn_theme_secondary:hover {
    transition: .5s !important;
    background-color: var(--color-primary-hover) !important;
}




/* PRELOADER SITE */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999;
    background-image: url('../img/loader.svg');
    background-repeat: no-repeat;
    background-color: var(--color-primary);
    background-position: center;
}


/* TITULOS DOS BLOCOS */
.title_section {
    padding: 5rem 0 2rem;
}

.title_section h2 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-left: 120px;
    line-height: 40px;
}

@media(max-width:991px) {
    .title_section h2 {
        font-size: 2.2rem;
    }

    .title_section h2 br {
        display: none;
    }
}

@media(max-width:767px) {
    .title_section h2 {
        font-size: 2rem;
    }
}

@media(max-width:549px) {
    .title_section::before {
        width: 70px;
    }

    .title_section h2 {
        font-size: 1.8rem;
        margin-left: 85px;
    }
}

#slider {
    padding: 5% 0% 5% 0%;
}

#slider .slider_container h2 {
    color: var(--color-font-dark);
    font-size: 45px;
    font-weight: 800;
    line-height: 43px;
    padding: 150px 0px 0px 60px;
    text-transform: uppercase;
}

#slider .slider_container article {
    margin-right: 10px;
    margin-top: -140px;
}

#slider .btn {
    display: inline-block;
    font-weight: 500;
    color: var(--color-bg-plano);
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1.4rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#slider button {
    background: var(--color-secondary);
    color: #fff;
    font-size: 1.1rem;
    border-radius: 2.5em;
    padding: 5px 25px;
    position: relative;
    overflow: hidden;
    line-height: 28px;
    font-weight: 600;
    margin-left: 60px;
    margin-top: 20px;
}

#slider button::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255,255,255,0.5) 50%, rgba(229, 172, 142, 0));
  transform: rotateZ(60deg) translate(-5em, 7.5em);
}

#slider button:hover::after, button:focus::after {
  animation: sheen 1s forwards;
}

@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

/* Bolinhas contadores de slider */
.slick-dots {
    display: none!important;
}

.slick-dots li button:before {
    font-size: 16px;
}

.slick-dots li.slick-active button:before {
    color: var(--color-font-light)
}


@media (max-width: 1099px) {
    #slider .slider_container h2 {
        font-size: 3rem;
        line-height: 50px;
    }
}

@media (max-width: 991px) {

}

@media (max-width: 767px) {

}


@media (max-width: 450px) {

    .slick-dotted.slick-slider {
        margin-bottom: 0px;
    }

    #slider button{display: none;}

    #slider .slider_container h2 {
        font-size: 21px;
        line-height: initial;
        padding: 150px 0px 0px 0px;
        display: flex;
    }

    
}

#fab-wpp {
    position: fixed;
    width: 56px;
    right: 2.8rem;
    bottom: 6rem;
    z-index: 9998;
}

#fab-wpp a {
    z-index: 99999;
}

#fab-wpp .fab-action {
    transition: all 225ms ease-in-out;
    position: absolute;
    cursor: pointer;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 56px;
    height: 56px;
    background-color: #5cac39;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

#fab-wpp .fab-action i {
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
}

#fab-wpp {
    width: 56px;
    height: 56px;
    transition: .3s;
}

#fab-wpp:hover .fab-action {
    background-color: #539b34;
}

#fab-wpp::after,
#fab-wpp::before {
    content: '';
    position: absolute;
    opacity: 0;
    border: 4px solid #5cac39;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    animation: WaveWhatsApp 1.5s ease infinite;
}

#fab-wpp::after {
    animation-delay: .5s;
}

#fab-wpp:hover::after {
    border: 4px solid #5cac39;
}

#fab-wpp:hover::before {
    border: 4px solid #5cac39;
}

@keyframes WaveWhatsApp {
    0% {
        transform: scale(0.5);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

header {
    padding: 0px 0px 0px 0px;
    background-color: var(--color-secondary2);
}

header .header-nav {
    padding: 0rem 0rem 0rem;
}

header .header-nav .img-fluid {
    max-width: 350px;
    background-color: #0f194a;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 1rem;
}

header .header-nav h1 span {
    position: absolute;
    top: -9999px;
    left: -9999px;
    text-indent: -9999px;
}


/* NAVBAR MENU DESKTOP */
header nav {
    padding: 0;
}

header nav>ul {
    padding: 0;
    margin: 0;
}

header nav>ul>li {
    display: inline;
    padding: 0.4rem 0 1rem;
}

header nav>ul>li>a {
    font-size: 1.15rem;
    font-weight: 500;
    padding: 15px 8px;
    border-bottom: 5px solid none;
    color: var(--color-font-light);
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
}

header nav>ul>li>a:hover {
    color: #0ecde1;
}

header nav>ul>li:hover {
    border-bottom: 5px solid var(--color-secondary);
    color: #fff !important;
}

header .menu_navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 0 88px;
}

header .menu_navbar .btn_theme_primary {
    transition: .5s;
    border-radius: 2rem !important;
    padding: 10px 20px !important;
    background-color: var(--color-primary-hover);
    border: 2px solid var(--color-font-light);
    font-weight: 500;
}

header .menu_navbar .btn_theme_primary:hover {
    background-color: var(--color-secondary2);
    color: var(--color-bg-plano) !important;
}

/* BTN ÁREA DO CLIENTE */
header nav>ul>li:last-child:hover {
    border-bottom: 5px solid transparent !important;
}

/* NAVBAR MENU - DROPDOWN */
header nav>ul>li>div.nav__submenu {
    display: none;
    position: absolute;
    margin-top: 0rem;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: var(--color-secondary);
    min-height: 250px;
    padding: 2rem 0;
}

header nav>ul>li:hover>div.nav__submenu {
    display: block;
}

header nav .nav__submenu ul {
    padding-left: 0px;
}

header nav .nav__submenu li {
    text-transform: uppercase;
    padding: 6px;
    display: flex;
    align-items: center;
}

header nav .nav__submenu li i {
    font-size: 1.7rem;
    margin-right: 16px;
}

header nav .nav__submenu li a {
    font-weight: 600;
    color: var(--color-bg-plano);
}

header nav .nav__submenu li:hover {
    margin-left: 2rem;
    transition: .4s;
}

header nav .nav__submenu li:hover a,
header nav .nav__submenu li:hover i {
    color: var(--color-primary) !important;
}

/* END NAVBAR MENU DESKTOP */



/* MENU HAMBURGER */
.menu-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 50px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.menu-btn__burger {
    width: 40px;
    height: 6px;
    background: var(--color-font-light);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background: var(--color-font-light);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu-btn__burger::before {
    transform: translateY(-16px);
}

.menu-btn__burger::after {
    transform: translateY(16px);
}

/* ANIMATION */
.menu-btn.open .menu-btn__burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

/* END MENU HAMBURGER */


/* MENU LATERAL PUSH */
.pushy {
    background: #070e33;
}

.pushy::-webkit-scrollbar {
    width: 6px;
    background-color: rgb(209 216 212 / 70%);
}

/*scrollbar*/
.pushy .pushy-submenu button,
.pushy a {
    color: var(--color-font-light);
    font-weight: 600;
}

.pushy .pushy-content ul {
    padding-left: 0 !important;
}

.pushy .pushy-content a img {
    max-width: 200px !important;
}

/* END MENU LATERAL PUSH */


@media (max-width: 1099px) {
    header nav>ul>li>a {
        font-size: 1rem;
        padding: 0 10px 4px 10px;
    }
}

@media (max-width: 991px) {}

@media (max-width: 450px) {

    header .menu_navbar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    header .header-nav .img-fluid {
        max-width: 220px;
    }
}

  /* -------------------------------------------------------------------
 * SESSAO 01 - SERVIÇOS
 * -----------------------------------------------------------------*/
  #servicos {
     padding: 5% 0%;
     position: relative;
     background-color: var(--color-secondary2);
  }

  #servicos .container-fluid {
     padding-top: 4rem;
     padding-bottom: 2rem;
  }

  #servicos h2 {
     font-weight: 700;
     margin-bottom: 1rem !important;
     font-size: 4rem;
     color: var(--color-secondary);
     width: 70%;
     margin: 0 auto;
  }

  #servicos h4 {
     font-weight: 400;
     font-size: 2rem;
     color: var(--color-font-light);
     width: 80%;
     margin: 0 auto;
     line-height: initial;
     padding: 1% 0% 5% 0%;
  }

  #servicos article {
     border: 2px solid #ffffff00;
     padding: 5%;
     border-radius: 15px;
     transition: 0.3s;
     display: flex;
     flex-direction: column;
     flex-wrap: nowrap;
     align-content: center;
     justify-content: center;
     align-items: center;
  }

  #servicos article:hover {
     border: 2px solid var(--color-font-light);
     padding: 5%;
     border-radius: 15px;
     transform: scale(1.05);
     transition: 0.2s;
  }

  #servicos article img {
     text-align: center;
     margin: 0 auto;
     display: block;
     padding-bottom: 5%;
     /* width: 70px; */
  }

  #servicos article div {
     margin-bottom: 0.7rem;
  }

  #servicos article div h3 {
     color: #a5b3c9;
     font-size: 1.55rem;
     font-weight: 700;
     margin-bottom: 0 !important;
     letter-spacing: 0px;
     /* padding-left: 10px; */
     text-align: center;
  }

  #servicos article ul li {
     color: var(--color-font-light);
     font-size: 1rem;
     line-height: revert;
     font-family: sans-serif;
  }

  #servicos .btn {
     display: inline-block;
     font-weight: 600;
     color: var(--color-bg-plano);
     text-align: center;
     vertical-align: middle;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     background-color: transparent;
     border: 1px solid transparent;
     padding: 0.375rem 0.75rem;
     font-size: 1.1rem;
     line-height: 1.5;
     border-radius: 0.25rem;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  #servicos button {
     background: var(--color-secondary);
     color: #fff;
     font-size: 1.1rem;
     border-radius: 2.5em;
     padding: 0px 11px;
     position: relative;
     overflow: hidden;
     border: 0;
  }

  #servicos button::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     bottom: -50%;
     left: -50%;
     background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
     transform: rotateZ(60deg) translate(-5em, 7.5em);
  }

  #servicos button:hover::after,
  button:focus::after {
     animation: sheen 1s forwards;
  }

  @media(max-width:991px) {}


  @media(max-width:768px) {}

  @media(max-width:450px) {

     #servicos h2 {
        font-weight: 700;
        margin-bottom: 1rem !important;
        font-size: 36px;
        color: var(--color-secondary);
        width: 100%;
        margin: 0 auto;
     }

     #servicos h2 {
        font-weight: 700;
        margin-bottom: 1rem !important;
        font-size: 36px;
        color: var(--color-secondary);
        width: 100%;
        margin: 0 auto;
     }


  }


  /* BOX-QUEMSOMOS*/

  #box-quemsomos {
     padding: 5% 0% 1% 0%;
     position: relative;
  }

  #box-quemsomos h2 {
     font-weight: 700;
     margin-bottom: 3rem !important;
     font-size: 3.2rem;
     color: var(--color-font-dark);
     width: 60%;
     margin: 0 auto;
     text-align: center;
     letter-spacing: -1px;
     line-height: 57px;
  }

  #box-quemsomos p {
     font-weight: 500;
     font-size: 1.45rem;
     color: var(--color-font-dark);
     width: 90%;
     margin: 0 auto;
     text-align: center;
  }

  @media(max-width:450px) {

     #box-quemsomos {
        padding: 10% 5%;
        position: relative;
     }

     #box-quemsomos p {
        font-weight: 500;
        font-size: 1.2rem;
        color: var(--color-font-dark);
        width: 90%;
        margin: 0 auto;
        text-align: center;
        line-height: initial;
     }

     #box-quemsomos h2 {
        font-weight: 700;
        margin-bottom: 1rem !important;
        font-size: 33px;
        color: var(--color-font-dark);
        width: 85%;
        margin: 0 auto;
        text-align: center;
        letter-spacing: -1px;
        line-height: 34px;
     }

  }

  /* FIM BOX-QUEMSOMOS*/


  /* -------------------------------------------------------------------
 * SESSAO 01 - PLANOS
 * -----------------------------------------------------------------*/
  #planos {
     padding: 5% 15% 5% 15%;
     background-color: var(--color-secondary2);
  }

  #planos h2 {
     font-weight: 700;
     margin-bottom: 3rem !important;
     font-size: 2.65rem;
     color: var(--color-font-light);
  }

  #planos .plano article {
     transition: 0.2s;
     background-color: var(--color-primary);
     border-radius: 0px;
     padding: 0% 0% 4% 0%;
  }

  #planos .plano article:hover {
     transform: scale(1.1);
     transition: 0.4s;
  }

  #planos .plano article div {
     background: var(--color-font-light);
     padding: 1rem;
     border-top-left-radius: 0px;
     border-top-right-radius: 50px;
  }

  #planos .plano article h3 {
     font-size: 1.5rem;
     /* line-height: 1.9rem; */
     font-weight: 700;
     color: var(--color-primary);
  }

  #planos .plano article .valor {
     font-weight: 700;
     font-size: 2.25rem;
     margin-bottom: 0.6rem !important;
     color: var(--color-font-dark);
     font-family: system-ui;
     letter-spacing: -2px;
  }

  #planos .plano article ul {
     padding: 6%;
     background-color: var(--color-secondary);
  }

  #planos .plano article ul li {
     list-style-type: none;
     text-align: center;
     line-height: 1.6rem;
     color: var(--color-bg-plano);
     font-size: 0.9rem;
  }

  #planos .plano article ul li i {
     font-size: 0.8rem;
     margin-right: 0.5rem;
     color: var(--color-font-light);
  }

  #planos .plano .btn_theme_secondary {
     width: 80%;
     padding: 6px 0rem !important;
     /* border-radius: 0rem !important; */
     background-color: var(--color-secondary) !important;
     color: var(--color-bg-plano);
     font-size: 1rem;
     font-weight: 500 !important;
     margin-bottom: 20px;
  }

  #planos .plano .btn_theme_secondary:hover {
     background-color: #fff !important;
     color: var(--color-header) !important;
  }


  @media(max-width:768px) {}


  @media(max-width:450px) {

     #planos {
        padding: 10% 5%;
        background-color: var(--color-secondary2);
     }

     #planos h2 {
        font-weight: 700;
        margin-bottom: 3rem !important;
        font-size: 30px;
        color: var(--color-font-light);
     }

     #planos .plano article ul {
        padding: 0%;
     }

  }

  /* -------------------------------------------------------------------
  * SESSAO 02 - ABRIR EMPRESA - MIGRAR EMPRESA
  * -----------------------------------------------------------------*/
  #empresa {
     padding: 0% 10% 0% 10%;
  }

  #abrirempresa img {
     transition: 0.2s;
     width: 75%;
     margin: 0 auto;
     display: block;
  }

  #abrirempresa img:hover {
     transform: scale(1.1);
     transition: 0.4s;
  }

  #empresa h3 {
     font-weight: 800;
     font-size: 2.85rem;
     color: var(--color-font-dark);
     line-height: 44px;
     padding-bottom: 2%;
  }

  #migrarempresa h3 {
     font-weight: 800;
     margin-bottom: 1rem !important;
     font-size: 2.65rem;
     color: var(--color-header);
     line-height: 40px;
     font-family: sans-serif;
     width: 100%;
     text-align: right;
  }

  #migrarempresa img {
     width: 80%;
     transition: 0.2s;
  }

  #migrarempresa img:hover {
     transform: scale(1.1);
     transition: 0.4s;
  }

  #empresa .title_section h2 {
     font-weight: 700;
     font-size: 4.65rem;
     line-height: 78px;
     color: var(--color-primary);
     font-family: 'Poppins';
     width: 80%;
     text-align: center;
     margin: 0 auto;
     padding-bottom: 3%;
     /* text-transform: uppercase; */
     letter-spacing: -1px;
  }

  #empresa .title_section h4 {
     font-weight: 500;
     font-size: 1.65rem;
     line-height: initial;
     color: var(--color-primary);
     font-family: sans-serif;
     width: 80%;
     text-align: center;
     margin: 0 auto;
     padding-bottom: 4%;
     letter-spacing: -1px;
  }

  #empresa p {
     font-size: 1.3rem;
     line-height: initial;
     color: var(--color-font-dark);
     /* font-family: sans-serif; */
     font-weight: 500;
     width: 90%;
  }

  #migrarempresa p {
     font-size: 1.35rem;
     line-height: 27px;
     color: var(--color-font-dark);
     font-family: sans-serif;
     font-weight: 600;
     text-align: right;
  }

  #abrirempresa .btn {
     display: inline-block;
     font-weight: 600;
     color: var(--color-bg-plano);
     text-align: center;
     vertical-align: middle;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     background-color: transparent;
     border: 1px solid transparent;
     padding: 0.375rem 0.75rem;
     font-size: 1.55rem;
     line-height: 1;
     border-radius: 0.25rem;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  #abrirempresa button {
     background: var(--color-primary-hover);
     color: #fff;
     border-radius: 2.5em;
     padding: 5px 70px;
     position: relative;
     overflow: hidden;
     font-weight: 500;
     margin-bottom: 1rem;
     border: 0;
  }

  #abrirempresa button::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     bottom: -50%;
     left: -50%;
     background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
     transform: rotateZ(60deg) translate(-5em, 7.5em);
  }

  #abrirempresa button:hover::after,
  button:focus::after {
     animation: sheen 1s forwards;
  }

  #migrarempresa .btn {
     display: inline-block;
     font-weight: 600;
     color: var(--color-bg-plano);
     text-align: center;
     vertical-align: middle;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     background-color: transparent;
     border: 1px solid transparent;
     padding: 0.375rem 0.75rem;
     font-size: 1.1rem;
     line-height: 1.5;
     border-radius: 0.25rem;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  #migrarempresa button {
     background: var(--color-secondary2);
     color: #fff;
     font-size: 1.1rem;
     border-radius: 2.5em;
     padding: 5px 25px;
     position: relative;
     overflow: hidden;
     font-weight: 600;
     margin-top: 20px;
     float: right;
  }

  #migrarempresa button::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     bottom: -50%;
     left: -50%;
     background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
     transform: rotateZ(60deg) translate(-5em, 7.5em);
  }

  #migrarempresa button:hover::after,
  button:focus::after {
     animation: sheen 1s forwards;
  }

  #empresa #abrirempresa {
     margin-top: 1rem;
  }

  #empresa #migrarempresa {
     margin-top: 4rem;
  }

  @media(max-width:991px) {}

  @media(max-width:768px) {}

  @media(max-width:450px) {

     #empresa .title_section h2 {
        font-weight: 700;
        font-size: 35px;
        line-height: 40px;
        color: var(--color-primary);
        font-family: 'Poppins';
        width: 100%;
        text-align: center;
        margin: 0 auto;
        padding-bottom: 0%;
        /* text-transform: uppercase; */
        letter-spacing: 0px;
     }

     #empresa h3 {
        font-weight: 700;
        font-size: 29px;
        color: var(--color-font-dark);
        line-height: 32px;
        padding-bottom: 1%;
        text-align: center;
     }

     #empresa p {
        font-size: 18px;
        line-height: initial;
        color: var(--color-font-dark);
        /* font-family: sans-serif; */
        font-weight: 500;
        width: 100%;
        text-align: center;
     }

     #abrirempresa button {
        background: var(--color-header);
        color: #fff;
        border-radius: 2.5em;
        padding: 2px 51px;
        position: relative;
        overflow: hidden;
        font-weight: 600;
        margin-bottom: 1rem;
        border: 0;
        margin: 0 auto;
        display: block;
        margin-bottom: 15%;
     }

     #abrirempresa img {
        transition: 0.2s;
        width: 100%;
        margin: 0 auto;
        display: block;
     }

  }


  /* -------------------------------------------------------------------
 * SESSAO 03 - OUTRAS SOLUÇÔES (MEI, ME)
 * -----------------------------------------------------------------*/
  #solucao {
     padding: 6% 16%;
  }

  #solucao h2 {
     font-weight: 800;
     font-size: 2.25rem;
     margin-bottom: 0.5rem;
     text-align: center;
     color: var(--color-header);
     /* font-family: sans-serif; */
  }

  #solucao p {
     font-weight: 500;
     text-align: center;
     font-size: 1.85rem;
     font-weight: 800;
     color: var(--color-font-dark);
  }

  #solucao a {
     color: #fff;
  }

  #solucao .btn {
     display: inline-block;
     font-weight: 600;
     color: var(--color-bg-plano);
     text-align: center;
     vertical-align: middle;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     background-color: transparent;
     border: 1px solid transparent;
     padding: 0.375rem 0.75rem;
     font-size: 1.1rem;
     line-height: 1.5;
     border-radius: 0.25rem;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  #solucao button {
     background: var(--color-secondary);
     color: #fff;
     font-size: 1.45rem;
     border-radius: 2.5em;
     padding: 10px 25px;
     position: relative;
     overflow: hidden;
     font-weight: 600;
     width: 100%;
     border: 0;
  }

  #solucao button::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     bottom: -50%;
     left: -50%;
     background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
     transform: rotateZ(60deg) translate(-5em, 7.5em);
  }

  #solucao button:hover::after,
  button:focus::after {
     animation: sheen 1s forwards;
  }

  #solucao article h3:hover {
     transition: .5s;
     background-color: var(--color-primary-hover);
     color: var(--color-primary);
  }

  @media(max-width:1199px) {}

  @media(max-width:768px) {}

  @media(max-width:450px) {

     #solucao {
        padding: 6% 0%;
     }

  }


  /* -------------------------------------------------------------------
 * SESSAO 06 - SIMULADOR
 * -----------------------------------------------------------------*/
  #simulador {
     padding: 3rem 0 2rem;
  }

  #simulador h2 {
     font-weight: 600;
     font-size: 1.35rem;
     margin-bottom: 1rem !important;
     text-align: center;
     color: var(--color-bg-plano);
  }

  #simulador p {
     font-weight: 500;
     margin-bottom: 1.5rem;
     text-align: center;
     font-size: 1.1rem;
     color: var(--color-bg-plano);
  }

  #simulador .btn_theme_primary {
     min-width: 25%;
     padding: 10px 30px !important;
     font-size: 1.2rem;
     background-color: var(--color-bg-plano);
     border: 0;
     color: var(--color-font-dark) !important;
     font-weight: 700;
  }

  #simulador .btn_theme_primary:hover {
     background-color: var(--color-secondary);
     color: var(--color-font-light) !important;
     font-weight: 500;
  }

  @media (max-width:767px) {}

  @media (max-width:450px) {

#simulador .btn_theme_primary {
    min-width: 25%;
    padding: 10px 30px !important;
    font-size: 1.2rem;
    background-color: var(--color-bg-plano);
    border: 0;
    color: var(--color-font-dark) !important;
    font-weight: 700;
    margin-bottom: 10px!important;
}

  }

  /* -------------------------------------------------------------------
 * SESSAO 04 - SEGMENTOS(Atividades) e BENEFICIOS
 * -----------------------------------------------------------------*/
  #atividade {
     padding: 4% 10% 5% 10%;
  }

  #atividade img {
     width: 60%;
  }

  #atividade h2 {
     font-weight: 800;
     margin-bottom: 1rem !important;
     font-size: 3rem;
     color: var(--color-header);
     line-height: 53px;
     font-family: sans-serif;
     width: 60%;
     text-align: center;
     letter-spacing: -1px;
     margin: 0 auto;
     padding-bottom: 4%;
  }

  #atividade h3 {
     color: var(--color-bg-plano);
     font-weight: 600;
     font-size: 1.4rem;
     font-family: sans-serif;
     background-color: var(--color-primary);
     padding: 14px;
     text-align: center;
  }

  #atividade ul {
     list-style: none;
     margin: 0;
     padding: 0;
  }

  #atividade ul li {
     font-size: 1.2rem;
     display: flex;
     align-items: center;
     line-height: initial;
     font-weight: 500;
     display: flex;
  }

  #atividade ul li i {
     margin-right: 10px;
     font-size: 17px;
     color: var(--color-primary);
  }

  #atividade .box-cor {
     background-color: #e4eced8c;
     padding: 9%;
     border-radius: 9px;
     min-height: 570px;
     border: 1px solid #4831c53b;
     transition: 0.2s;
  }

  #atividade .box-cor:hover {
     transform: scale(1.08);
     transition: 0.4s;
  }

  @media(max-width:991px) {}

  @media(max-width:767px) {}

  @media(max-width:450px) {

     #atividade .box-cor {
        background-color: #e4eced8c;
        padding: 8%;
        border-radius: 9px;
        min-height: auto;
        border: 1px solid #4831c53b;
        transition: 0.2s;
        margin-bottom: 7%;
     }

  }

  /* -------------------------------------------------------------------
 * SESSAO 07 - DEPOIMENTOS
 * -----------------------------------------------------------------*/
  #depoimentos {
     padding: 5% 10%;
  }

  #depoimentos h2 {
     font-weight: 700;
     margin-bottom: 3rem !important;
     font-size: 2.5rem;
     color: var(--color-header);
     margin: 0 auto;
     text-align: center;
     padding-top: 0%;
  }
  
  #depoimentos .fas.fa-chevron-right{
    background: #4d668e4f!important;
    color: var(--color-bg-plano);
    padding: 8px 10px;
    border-radius: 0px;
}
  #depoimentos .fas.fa-chevron-left{
    background: #4d668e4f!important;
    color: var(--color-bg-plano);
    padding: 8px 10px;
    border-radius: 0px;
}

  #depoimentos .item {
     display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    border-bottom-left-radius: 80px;
    padding: 10%;
    border: 2px solid #4831c53b;
    border-top-right-radius: 50px;
    background-color: #e4eced8c;
    border-top-left-radius: 70px;
    transition: 0.3s;
    min-height: 410px;
    align-content: flex-start;
    flex-direction: column;
    text-align: center;
}

  #depoimentos .item:hover {
     border: 2px solid var(--color-primary);
     transition: 0.3s;
  }

  #depoimentos .item p.text-box {
     text-align: center;
    font-size: 1.2rem;
    /* font-style: italic; */
    font-weight: 500;
    margin-bottom: 0;
    line-height: initial;
    color: var(--color-font-dark);
}

  #depoimentos .item p {
    margin: 0.5rem 0;
    color: var(--color-header);
    font-weight: 700;
    font-style: italic;
    font-size: 0.85rem;
}

  #depoimentos .btn {
     display: inline-block;
     font-weight: 600;
     color: var(--color-bg-plano);
     text-align: center;
     vertical-align: middle;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     background-color: transparent;
     border: 1px solid transparent;
     padding: 0.375rem 0.75rem;
     font-size: 1rem;
     line-height: 1.5;
     border-radius: 0.25rem;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  #depoimentos button {
     background: var(--color-secondary);
     color: #fff;
     font-size: 1rem;
     border-radius: 2.5em;
     padding: 2px 20px;
     position: relative;
     overflow: hidden;
     font-weight: 600;
     margin-top: 50px;
     border: 0;
  }

  #depoimentos button::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     bottom: -50%;
     left: -50%;
     background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
     transform: rotateZ(60deg) translate(-5em, 7.5em);
  }

  #depoimentos button:hover::after,
  button:focus::after {
     animation: sheen 1s forwards;
  }

  @media(max-width:767px) {}

  @media(max-width:450px) {

     #depoimentos h2 {
        font-weight: 700;
        margin-bottom: 3rem !important;
        font-size: 30px;
        color: var(--color-header);
        margin: 0 auto;
        text-align: center;
        padding-top: 0%;
     }

     #depoimentos {
        padding: 10% 5%;
     }
  }


  /* -------------------------------------------------------------------
 * SESSAO 08 - PERGUNTAS FREQUENTES
 * -----------------------------------------------------------------*/
  #perguntas {
     padding: 0 0 4rem 0;
  }

  #perguntas h2 {
     font-weight: 700;
     margin-bottom: 2rem !important;
     font-size: 2.2rem;
     color: var(--color-header);
     margin: 0 auto;
     text-align: center;
     /* padding-top: 7%; */
  }

  #perguntas .accordion {
     background: #fff;
     border: 0;
     padding: 0.5rem 1rem;
     text-align: center;
     display: flex;
     align-items: center;
     flex-direction: row;
     flex-wrap: nowrap;
     align-content: center;
     justify-content: center;
  }

  #perguntas .accordion p {
     margin-bottom: 0;
     font-weight: 700;
     font-size: 1.2rem;
  }

  #perguntas .accordion i {
     font-size: 22px;
     margin-right: 12px;
     color: var(--color-primary);
  }

  #perguntas button:focus {
     outline: 0px !important;
  }

  #perguntas .panel {
     display: none;
     margin-top: -0.1rem;
     margin-bottom: 1rem;
     padding: 0 1.3rem;
  }

  #perguntas .panel p {
     margin-bottom: 0 !important;
     font-size: 1.2rem;
     font-weight: 500;
     /* padding-left: 29px; */
     margin-top: 0px;
     color: var(--color-primary-hover);
     text-align: center;
  }

  @media(max-width:767px) {}

  @media(max-width:575px) {
      
      #perguntas .panel p {
    margin-bottom: 0 !important;
    font-size: 1rem;
    font-weight: 500;
    /* padding-left: 29px; */
    margin-top: 0px;
    color: var(--color-primary-hover);
    text-align: left;
}

     #perguntas {
        padding: 5%;
     }

     #perguntas h2 {
        font-weight: 700;
        margin-bottom: 1rem !important;
        font-size: 29px;
        color: var(--color-header);
        margin: 0 auto;
        text-align: center;
        /* padding-top: 7%; */
     }

     #perguntas .accordion p {
        margin-bottom: 0;
        font-weight: 600;
        font-size: 1.1rem;
        text-align: left;
        line-height: initial;
     }
  }


  /* -------------------------------------------------------------------
 * SESSAO 09 - NOTICIAS - ARTIGOS - BLOG
 * -----------------------------------------------------------------*/
  #noticias {
     padding: 5% 0%;
     background-color: var(--color-secondary2);
  }

  #noticias h2 {
     font-weight: 700;
     margin-bottom: 0rem !important;
     font-size: 3rem;
     text-align: center;
     color: var(--color-font-light);
  }

  #noticias article {
     margin-bottom: 0rem;
     padding: 5%;
     border-radius: 11px;
  }

  #noticias article span,
  #noticias article h3,
  #noticias article p {
     color: var(--color-font-light);
  }

  #noticias article span {
     background-color: var(--color-primary-hover);
     font-size: .75rem;
     border-radius: 90px;
     padding: 3px 12px;
     display: inline-block;
     margin-bottom: 8px;
     color: var(--color-bg-plano);
     font-weight: 500;
     font-family: sans-serif;
     /* border: 2px solid var(--color-secondary); */
  }

  #noticias article h3 {
     font-size: 1.2rem;
     font-weight: 600;
     margin: 0 auto;
     padding: 2% 0%;
  }

  #noticias article p {
     font-weight: 500;
     font-size: .75rem;
     margin: 0.3rem 0 0;
     color: var(--color-font-light);
  }

  #noticias article .image-cover {
     position: relative;
     padding: 0 !important;
     height: auto;
  }

  #noticias article .image-cover img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     display: block;
     transition: 1s;
  }

  #noticias .artigos article,
  #noticias .blog article {
     min-height: 260px;
  }

  @media (max-width:768px) {}

  @media (max-width:450px) {

     #noticias {
        padding: 15% 5%;
        background-color: var(--color-secondary2);
     }

     #noticias article {
        margin-bottom: 1rem;
        background-color: var(--color-primary);
        padding: 5%;
        border-radius: 11px;
     }

     #noticias h2 {
        font-weight: 700;
        margin-bottom: 0rem !important;
        font-size: 30px;
        text-align: center;
        color: var(--color-font-light);
     }

  }

  /* -------------------------------------------------------------------
 * SESSAO 11 - PARCEIROS
 * -----------------------------------------------------------------*/
  #parceiros {
     padding: 0% 0% 5% 0%;
     background-color: var(--color-bg-plano);
     clip-path: none;
  }

  #parceiros img {
     width: 80%;
     transition: 0.2s;
  }

  #parceiros img:hover {
     transform: scale(1.1);
     transition: 0.4s;
  }

  #parceiros .img_parceiros img {
     background-color: var(--color-bg-plano);
     border-radius: 15px;
     padding: 2%;
  }

  #parceiros h2 {
     font-weight: 700;
     margin-bottom: 3rem !important;
     font-size: 2.5rem;
     color: var(--color-header);
     margin: 0 auto;
     text-align: center;
     padding-top: 0%;
  }

  #parceiros h3 {
     font-weight: 600;
     font-size: 1.45rem;
     color: var(--color-font-dark);
     padding-bottom: 4%;
     text-align: center;
  }

  #parceiros .btn {
     display: inline-block;
     font-weight: 600;
     color: var(--color-bg-plano);
     text-align: center;
     vertical-align: middle;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     background-color: transparent;
     border: 1px solid transparent;
     padding: 0.375rem 0.75rem;
     font-size: 1rem;
     line-height: 1.5;
     border-radius: 0.25rem;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  #parceiros button {
     background: var(--color-secondary);
     color: #fff;
     font-size: 1rem;
     border-radius: 2.5em;
     padding: 2px 20px;
     position: relative;
     overflow: hidden;
     font-weight: 600;
     margin-top: 50px;
     border: 0;
  }

  #parceiros button::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     bottom: -50%;
     left: -50%;
     background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
     transform: rotateZ(60deg) translate(-5em, 7.5em);
  }

  #parceiros button:hover::after,
  button:focus::after {
     animation: sheen 1s forwards;
  }

  @media (max-width:991px) {}

  @media (max-width:767px) {}

  @media (max-width:575px) {}

  @media (max-width:450px) {

     #parceiros {
        padding: 5%;
        background-color: var(--color-bg-plano);
        clip-path: none;
     }

     #parceiros h2 {
        font-weight: 700;
        margin-bottom: 1rem !important;
        font-size: 30px;
        color: var(--color-header);
        margin: 0 auto;
        text-align: center;
        padding-top: 0%;
     }

     #parceiros img {
        width: 100%;
        transition: 0.2s;
     }
  }

  /* -------------------------------------------------------------------
 * SESSAO 10 - NEWSLETTER
 * -----------------------------------------------------------------*/
  #newsletter {
     padding: 6rem 0 3rem;
  }

  #newsletter h2 {
     font-weight: 600;
     font-size: 1.75rem;
     margin-bottom: 0;
     text-transform: inherit;
     padding-bottom: 2%;
  }

  #newsletter input {
     background: var(--color-bg-plano);
     max-width: 460px;
     padding: 30px;
     font-size: 1.2rem;
     text-align: center;
     border-radius: 90px;
     margin: 0 auto;
     margin-bottom: 10px;
  }

  #newsletter input:focus,
  #newsletter input:active {
     box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5) !important;
  }

  #newsletter input::placeholder {
     font-weight: 500;
     color: var(--color-font-dark);
  }

  #newsletter .btn {
     display: inline-block;
     font-weight: 600;
     color: var(--color-bg-plano);
     text-align: center;
     vertical-align: middle;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     background-color: var(--color-primary-hover);
     border: 1px solid transparent;
     padding: 0.375rem 0.75rem;
     font-size: 1.1rem;
     line-height: 1.5;
     border-radius: 0.25rem;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  #newsletter button {
     background: var(--color-secondary);
     color: #fff;
     font-size: 1.1rem;
     border-radius: 2.5em;
     padding: 0px 11px;
     position: relative;
     overflow: hidden;
     border: 0;
  }

  #newsletter button::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     bottom: -50%;
     left: -50%;
     background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
     transform: rotateZ(60deg) translate(-5em, 7.5em);
     color: #fff !important;
  }

  #newsletter button:hover::after,
  button:focus::after {
     animation: sheen 1s forwards;
  }

  @media (max-width:991px) {}

  @media (max-width:767px) {}

  @media (max-width:450px) {

     #newsletter h2 {
        font-weight: 600;
        font-size: 23px;
        margin-bottom: 0;
        text-transform: inherit;
        padding-bottom: 6%;
     }

  }



  /* -------------------------------------------------------------------
 * FOOTER
 * -----------------------------------------------------------------*/
  #footer {
     padding: 5% 0% 0% 0%;
  }

  #footer h2 {
     font-weight: 700;
     margin-bottom: 3rem;
     font-size: 4rem;
     color: var(--color-secondary2);
     /* font-family: sans-serif; */
     width: 90%;
     margin: 0 auto;
     line-height: 66px;
     padding-bottom: 4%;
  }

  #footer-container .contatos-group-button {
     border-radius: 30px;
     padding: 2%;
  }

  #footer-container .contatos-group-button article {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     text-align: center;
     padding: 1rem;
  }

  #footer-container .contatos-group-button article img {
     max-height: 100px;
     transition: 0.4s;
  }

  #footer-container .contatos-group-button article img:hover {
     transform: scale(1.1);
     transition: 0.3s;
  }

  #footer-container .contatos-group-button article h3 {
     color: var(--color-primary);
     font-size: 1.75rem;
     font-weight: 700;
     margin: 0 auto;
     padding: 4px 0px;
  }

  #footer-container .contatos-group-social {
     padding: 2rem 0 1rem;
  }

  #footer-container .contatos-group-social i {
     font-size: 4rem;
     margin: 0 5px 1rem;
     color: var(--color-primary);
     transition: .3s;
  }

  #footer-container .contatos-group-social i:hover {
     transform: scale(1.05);
     transition: .3s;
  }

  #footer-container .contatos-group-info {
     margin: 1rem 0 3rem;
  }

  #footer-container .contatos-group-info strong {
     font-size: 1.4rem;
     font-weight: 600;
     color: var(--color-header);
  }

  #footer-container .contatos-group-info p {
     display: block;
     margin-bottom: 0.2rem;
     font-size: 1rem;
     color: var(--color-secondary);
     font-weight: 500;
     line-height: 20px;
     font-family: 'Poppins';
  }

  /* Copy */
  #footer #copyright {
     background: var(--color-secondary2);
  }

  #footer #copyright .container {
     padding: 1.2rem 0 1.5rem 0;
  }

  #footer #copyright p {
     font-size: .8rem;
     letter-spacing: 0px;
     margin: 0;
     color: var(--color-bg-plano);
     font-weight: 400;
     /* font-family: sans-serif; */
  }

  #footer #copyright .selos {
     padding-left: 3rem;
     padding-right: 3rem;
  }

  #footer #copyright .selos a {
     color: var(--color-font-light);
  }

  #footer #copyright .selos .d-flex p {
     font-size: 0.6rem;
     text-transform: uppercase;
     margin: 0 0 9px 0;
  }

  #footer #copyright .selos img {
     max-height: 35px;
  }


  @media (max-width:991px) {}

  @media (max-width:767px) {}

  @media (max-width:450px) {
  
  #footer h2 {
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 35px;
    color: var(--color-secondary2);
    /* font-family: sans-serif; */
    width: 100%;
    margin: 0 auto;
    line-height: 36px;
    padding-bottom: 4%;
}

  }


:root {
    --purple: #3B3646;
    --red: #42ade6;
}




/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    left: 0;
    bottom: 10px;
    max-width: 100%;
    background-color: var(--purple);
    padding: 10px 20px 20px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    font-family: system-ui;
    z-index: 999;
    width: 70%;
    margin: 0 15%;
    border-radius: 10px;
}
@media (max-width:767px) {
    #gdpr-cookie-message {
        bottom: 5px;
        padding: 5px 10px 5px 10px;
        width: 84%;
        margin: 0 8%;
    }
}

#gdpr-cookie-message p.h4 {
    color: var(--red);
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message #gdpr-cookie-types p {
    color: var(--red);
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: white;
    font-size: 16px;
    margin-bottom: 0.5rem;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: var(--red);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {
    color: white;
    border-bottom-color: var(--red);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: var(--red);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    padding: 2px 7px;
    border-radius: 3px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
    background: white;
    color: var(--red);
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    background: white;
    color: var(--red);
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}