body {
    padding-top: 70px;
}

.navbar {
    background-color: #343a40;
    height: 70px;
    padding-left: 125px;
    padding-right: 125px;
}

.navbar-brand img {
    max-height: 40px;
    margin-right: 15px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-color: rgba(255, 255, 255, 0.5);
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -250px;
    width: 250px;
    background-color: #343a40;
    transition: left 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(-100%);
}

.sidebar img {
    width: 80%;
}

.sidebar.active {
    left: 0;
    transform: translateX(0);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9000;
    display: none;
}

.sidebar.active+.sidebar-overlay {
    display: block;
}

.sidebar-brand {
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 1.25rem;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.sidebar-brand:hover {
    color: #007bff;
    text-decoration: none;
}

.sidebar-nav {
    padding-top: 1rem;
}

.sidebar-nav .nav-link {
    color: #ffffff;
    transition: color 0.3s;
}

.sidebar-nav .nav-link:hover {
    color: #007bff;
    text-decoration: none;
}

.no-scroll {
    overflow: hidden;
}

.section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.image-container img {
    width: 100%;
    height: auto;
    margin: 0 10px;
}

.small-image {
    max-width: 150px;
}

.large-image {
    max-width: 600px;
    height: auto;
}

.container-consist {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

.card-deck {
    margin: 0 -15px;
    display: flex;
}

.card-deck .card {
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.card-deck .card img {
    max-width: 100px;
    margin-bottom: 20px;
}

.card-deck .card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-deck .card p {
    font-size: 1rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }

    .card-deck {
        flex-direction: column;
    }

}

.container-bases {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: lef;
    flex-direction: column;
    position: relative;
}

.twelve h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin: auto;
    white-space: nowrap;
    position: relative;
}

.twelve h2:before {
    background-color: #007bff;
    content: '';
    display: block;
    height: 3px;
    width: 75px;
    margin-bottom: 5px;
}

.twelve h2:after {
    background-color: #007bff;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 75px;
}

.grid {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
}

.grid-item {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    break-inside: avoid;

    display: flex;
    justify-content: space-between;
}

.grid-item i {
    color: #696969;
    width: 25px;
    margin-top: 3px;
    font-size: 20px;
}

@media (min-width: 576px) {
    .grid-item {
        width: calc(50% - 10px);
    }
}

.content-bases {
    flex: 1;
}

.content-bases h5 {
    color: #3c3c3c;
}

.content-bases p {
    margin-bottom: 0;
    color: #696969;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.container {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.card {
    width: 100%;
    transition: transform 0.2s;
}

.shake {
    animation: shake 0.3s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.drop-zone {
    border: 2px dashed #007bff;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    color: #6c757d;
}

.drop-zone.dragover {
    border-color: #0056b3;
    background-color: #f1f1f1;
}

.drop-zone input {
    display: none;
}

.drop-zone__thumb {
    display: none;
    margin-top: 10px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.drop-zone__filename {
    display: none;
}

.container-btns {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    background-color: #0056b3;
}

.content-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.separe {
    width: 2px;
    height: 50px;
    background-color: white;
}

.content-btn .btn {
    width: 100%;
    height: 50px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    outline: none;
}

.content-btn .btn:hover {
    background-color: #1565c0;
}

.content-btn .btn:focus {
    outline: none;
    box-shadow: none;
}

.vertical-image {
    width: 100%;
}


.container-footer {
    width: 100%;
    margin: auto;
    background-color: #3c3c3c;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-row {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    color: white;
}

.footer-column {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    margin-bottom: 10px;
}

.footer-column img {
    max-width: 100%;
    height: auto;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 0.9rem;
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-separator {
    width: 100%;
    border-top: 1px solid #ccc;
    margin-top: 20px;
    padding-top: 10px;
    text-align: center;
    color: #6c757d;
    padding: 20px;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }

    .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
