:root {
    --main-bg-color: #f8f9fa;
    --main-blue: #00528a;
    --dark-blue: #274160;
    --main-gold: #a68558;
    --color-1: #AEC6CF;
    --color-2: #B2BEB5;
    --color-3: #FADADD;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Fira Sans', sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

section {
    padding: 0px 3rem 3rem 3rem;
    margin-bottom: 32px;
}

section h2 {
    text-align: center;
    margin-bottom: 24px;
}

h1 {
    font-size: 1.6rem;
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 500;
}

h2 {
    font-size: 1.4rem;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Generales */

text-align-center {
    text-align: center;
}

/* Navbar */

.navbar-brand {
    font-family: 'Sacramento', cursive;
    font-size: 1.8rem;
}

.navbar-brand img {
    min-width: 50px;
    min-height: 50px;
}

.nav-link {
    text-align: center;
}

/* Hero */

.hero {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1rem;
    font-weight: 300;
}

.hero-img {
    min-width: 360px;
    display: flex;
    justify-content: center;
}

.hero-img img {
    max-width: 75%;
}

.hero .btn-primary {
    width: auto;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 24px;
    background-color: rgb(25, 105, 70);
    color: white;
    font-weight: 600;
}

.hero .btn-primary i {
    font-size: 18px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 1.5rem;
    padding-bottom: 48px;
}

.hero #openModalBtn {
    border: none;
}

.fade-in {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* CTA Modal */

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

.cta-modal .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 6px;
    width: 80%;
}

.cta-modal .close {
    height: 18px;
    padding: 0px;
    text-align: right;
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.cta-modal h2 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.cta-modal input {
    padding: 6px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid darkgray;
}

.cta-modal textarea {
    padding: 6px;
    width: 100%;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid darkgray;
}

.cta-modal button {
    width: auto;
    text-decoration: none;
    padding: 12px 14px;
    border: none;
    border-radius: 6px;
    background-color: rgb(25, 105, 70);
    color: white;
    font-weight: 600;
}

.cta-modal button:hover {
    background-color: #45a049;
}

.cta-modal .fade-in {
    -webkit-animation: fade-in 0.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 0.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* About us */

.about-us {
    padding: 24px;
    background: rgb(235, 252, 244);
    background: linear-gradient(90deg, rgba(235, 252, 244, 1) 0%, rgba(200, 228, 207, 1) 50%, rgba(235, 252, 244, 1) 100%);
}

/* Our clients */

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

.our-clients figure {
    max-width: 200px;
}

.our-clients img {
    width: 100%;
}

/* Servicios */

.card-title {
    font-weight: 400;
}

.card-body i {
    font-size: 32px;
    padding: 16px;
    background-color: #274160;
    color: white;
    border-radius: 6px;
    margin-bottom: 12px;
}

.services-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sobre nosotros */

/* Efectos */

/* ----------------------------------------------
 * Generated by Animista on 2024-1-17 23:50:54
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}