:root {
    --primary-color: #3d5afe;
    --primary-hover: #2a3eb1;
    --secondary-color: #ff6b6b;
    --secondary-hover: #ee5253;
    --dark-color: #222b45;
    --text-color: #2e3a59;
    --light-text: #8f9bb3;
    --background-light: #f7f9fc;
    --background-gray: #edf1f7;
    --white: #fff;
    --shadow-sm: 0 2px 6px #00000014;
    --shadow-md: 0 6px 15px #0000001a, 0 2px 5px #00000014;
    --shadow-lg: 0 15px 30px -5px #0000001f, 0 8px 15px -8px #00000014;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    --gradient-mix: linear-gradient(135deg, var(--primary-color), var(--secondary-color))
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f7f9fc;
    background-color: var(--background-light);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    line-height: 1.6
}

a,
body {
    color: #2e3a59;
    color: var(--text-color)
}

a {
    text-decoration: none;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    transition: var(--transition)
}

a:hover {
    color: #3d5afe;
    color: var(--primary-color)
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    outline: none;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    transition: var(--transition)
}

img {
    display: block;
    height: auto;
    max-width: 100%
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
    width: 100%
}

.section {
    padding: 5rem 0
}

.section-title {
    color: #222b45;
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 3rem;
    position: relative;
    text-align: center
}

.section-title:after {
    background: linear-gradient(135deg, #3d5afe, #ff6b6b);
    background: var(--gradient-mix);
    border-radius: .25rem;
    border-radius: var(--radius-sm);
    bottom: -12px;
    box-shadow: 0 2px 10px #3d5afe33;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 80px
}

.btn {
    border-radius: .5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 6px #00000014;
    box-shadow: var(--shadow-sm);
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: .875rem 2.5rem;
    text-align: center;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    transition: var(--transition)
}

.btn-primary {
    background: linear-gradient(135deg, #3d5afe, #2a3eb1);
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    color: var(--white);
    overflow: hidden;
    position: relative;
    z-index: 1
}

.btn-primary:hover {
    background-color: #2a3eb1;
    background-color: var(--primary-hover);
    border-color: #2a3eb1;
    border-color: var(--primary-hover);
    box-shadow: 0 6px 15px #0000001a, 0 2px 5px #00000014;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px)
}

.btn-primary:before {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
    background: var(--gradient-secondary);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all .4s ease;
    width: 100%;
    z-index: -1
}

.btn-primary:hover:before {
    left: 0
}

.card {
    background-color: #fff;
    background-color: var(--white);
    border-radius: .75rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 15px #0000001a, 0 2px 5px #00000014;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    transition: var(--transition)
}

.card:hover {
    box-shadow: 0 15px 30px -5px #0000001f, 0 8px 15px -8px #00000014;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px)
}

@media (max-width:768px) {
    .section {
        padding: 4rem 0
    }
    .section-title {
        font-size: 2rem
    }
}

@media (max-width:480px) {
    .section {
        padding: 3rem 0
    }
    .section-title {
        font-size: 1.75rem
    }
    .btn {
        font-size: .875rem;
        padding: .75rem 2rem
    }
}

/*# sourceMappingURL=main.d750df6e.css.map*/