/*body*/
html {
    scroll-behavior: smooth;
}

body {
    background-color: #141416;
    background-image: url("/static/images/background/waveblue.png");
}

h1, h2, h3 {
    color: #fff;
}

p, address {
    color: gray;
}

ul li a, ul li {
    color: gray;
}

footer {
    background-color: #141416;
}

/*header*/
#header-wrap {
    position: relative;
}

.container-header {
    padding-top: 10px;
    display: flex; /* Makes it a flex container */
    justify-content: space-between; /* Distributes the space between the items */
    align-items: center; /* Vertically center aligns the items */
    width: 100%;
    padding-bottom: 10px;
    z-index: 1000;
    position: fixed;
    top: 0;
    transition: opacity 0.5s, visibility 0.5s, background-color 0.5s;
}

.hide-header {
    opacity: 0;
    visibility: hidden;
}

.container-header.scrolled {
    background-color: #141416;
}

.hero-parallax {
    min-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: inherit;
}

.top-header {
    position: absolute;
    width: 100%;
    padding-top: 4px;

}

#logo {
    order: 0;
    position: relative;
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    line-height: 100%;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 50px;
}

#headerh1 {
    order: 1;
}

.logo-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*menu*/
#primary-menu {
    order: 2;
    margin-top: 10px;
    margin-right: 70px;
}

#primary-menu ul li {
    list-style-type: none;
}

#primary-menu ul li > a {
    display: block;
    line-height: 22px;
    padding: 10px;
    font-size: 15px;
    letter-spacing: 1px;
}

#primary-menu ul li > a:hover {
    text-decoration: none;
}

.redhover:hover {
    color: #C90E29;
}

.iconstart {
    margin-right: -10px;
}

.startbuttonmenu {
    color: #fff;
    border-color: #fff;
    background-color: #141416;
}

.startbuttonmenu:hover {
    background-color: #889CE7;
    border-color: #889CE7;
}

/*body*/
.justify {
    justify-content: center;
    align-items: center;
}

.boxwaves {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: inherit;
}

.boxwaves,
.boxwavesMove,
.boxwavesSize,
.boxwavesMoveInverted,
.boxwavesSizeInverted {
    background-repeat: no-repeat;
    background-color: #000;
}

.divider {
    border: 1px solid gray;
}

/*cards*/
.padding1 {
    padding: 100px;
}

.align-top {
    justify-content: flex-start; /* Aligns children to the top */
}

.align-bottom {
    justify-content: flex-end; /* Aligns children to the bottom */
}

.align-bottom, .align-top {
    display: flex;
    flex-direction: column;
}

.box {
    margin-bottom: 20px;
    background-color: #1B1C1E;
    padding: 20px;
    border-radius: 10px;
}

.box h4 {
    color: #889CE7;
}

.align-top .box:last-child, .align-bottom .box:last-child {
    margin-bottom: 0;
}

.graybar {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background-color: #3F4349;
}

.buttonsred {
    border-radius: 5px;
    background-color: #C90E29;
}

.btn-up {
    border-radius: 5px;
    background-color: #C90E29;
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 1000;
}

.btn-up:focus {
    outline: solid #562A2C;
}

.btn-up:hover {
    background-color: #562A2C;
}

.redcolor > a {
    color: #C90E29;
}

.redcolor > a:hover {
    color: #562A2C;
}

.buttonsred:hover {
    color: #fff;
    border-color: #fff;
    background-color: #141416;
}

.full_height {
    height: 100%;
}

.purplecolor{
    color: #889CE7;
}

.scrolling-wrapper {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping of items */
    overflow-x: hidden;
    margin-bottom: 10px; /* Space below the scrolling icons */
    animation: scrolling 30s linear infinite;
}

.icon-container {
    display: inline-block;
    min-width: 200px; /* Adjust the width as needed */
    margin-right: 10px; /* Space between icons */
}

.icon-container a img{
    max-height: 100px;
}

@keyframes scrolling {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.scrolling-wrapper {
    animation: scrolling 10s linear infinite;
}


/*footer*/
footer p, footer ul li a, footer #primary menu ul li a, footer ul li, footer address {
    font-size: 20px;
}

.politicalink:hover {
    text-decoration: none;
}

#email_subscription {
    border-color: gray;
    background-color: transparent;
    border-radius: 5px;
    height: 45px;
    color: gray;
}

#subscription {
    border-color: gray;
    background-color: transparent;
    border-radius: 5px;
    color: gray;
    padding-left: 25px;
    padding-right: 25px;
}

#subscription:hover {
    border-color: #889CE7;
    background-color: #889CE7;
    color: #000;
}

@media (max-width: 991px) {
    body {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 18px;
    }
}

/*solutions*/

.bluesvg {
    background-color: #889CE7;
}

.redsvg {
    background-color: #C90E29;
}

.bluesvg, .redsvg {
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* stack the items vertically */
    height: 100%; /* or any specific height you want */
    width: 100%; /* or any specific width you want */
}

.bluesvg svg, .redsvg svg {
    width: 40px;
    height: 40px;
}

.blackbar {
    width: 50%;
    height: 3px;
    border-radius: 5px;
    background-color: #1B1C1E;
}

.paddingscolorsvgs {
    padding: 80px;
}

.paddingsolutions {
    padding: 50px;
}

/*planes*/
.graybarplanes {
    width: 15%;
    height: 2px;
    border-radius: 5px;
    background-color: #3F4349;
}

.graycolor {
    color: gray;
}

/*pricing*/
#pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pricing h2 {
    color: gray;
}

#pricing h1 {
    color: gray;
    font-size: 60px;
}

.pricingcontainer {
    width: 60%;
}

#pricing .row svg {
    height: 38px;
    width: 38px;
}

.graypricingline {
    width: 100%;
    height: 1px;
    border-radius: 5px;
    background-color: #3F4349;
}

.pricinglink {
    color: #C90E29;
    text-decoration: underline;
}

.pricinglink:hover {
    color: #562A2C;
}


/*blog*/
#blogcontainer {
    width: 100%;
    min-height: 300px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#blogcontainer h2 {
    color: gray;
}

/*empezar*/
.form-group input {
    border-color: gray;
    border-radius: 5px;
    height: 60px;
    color: gray;
}

.form-group input:focus {
    border-color: gray;
    border-radius: 5px;
    height: 60px;
    color: black;
}
.form-group textarea {
    border-color: gray;
    border-radius: 5px;
    color: black;
}
.form-group textarea:focus {
    border-color: gray;
    border-radius: 5px;
    color: black;
}


label {
    color: gray;
}

/*politica*/

#politica ul li {
    font-size: 10px;
    color: #181818;
}

.spacer {
    min-height: 100px;
}

#integracion .col-md-4 {
    height: 200px;
    background-repeat: no-repeat;
    background-size: contain;
}

.layer {
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 1s;

}

.box.shadow {
    transform: translateY(0px);
    transition: transform 0.5s;
}

.box.shadow:hover {
    transform: translateY(-10px);
    transition: transform 0.5s;
}

.redh1bold {
    color: #C90E29;
    font-weight: bold;
}

.greenh1bold {
    color: #437C15;
    font-weight: bold;
}

.blueh1bold {
    color: #2091EF;
    font-weight: bold;
}

.greenvigilantecolor {
    color: #437C15;
}

.bluevigilantecolor {
    color: #2091EF;
}

#integracion .col-md-4:hover .layer {

    background-color: transparent;
    transition: all 1s;
}

#integracion .col-md-4:hover .text-white {
    z-index: 9;
}

#integracion a {
    position: absolute;
    right: 0;
    top: 0;
}

/* Submenu */
.dropup-content {
    opacity: 0;
    position: absolute;
    background-color: rgba(255, 255, 255, 10%);
    min-width: 160px;
    z-index: 1;
    color: gray;
    transition: all .5s;
}

.dropup-content a {
    color: gray;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropup-content a:hover {
    background-color: transparent;
    color: #C90E29;
}

.dropbtn:hover .dropup-content {
    opacity: 1;
    color: gray;
}

/* Submenu */