:root {
    --primary-color: #0066cc;
    --secondary-color: #004999;
    --text-color: #888888;
    --title-color: #333333;
    --background-color: #ffffff;
    --accent-color: #ff9900;
    --primary-color-2: #F63440;


}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.section {
    padding: var(--section-padding);
    max-width: 1200px;
    margin: 0 auto;
  }

a{
    text-decoration: none;
}

p {
    font-size: 0.9rem;
    line-height: 1.6;
}

h1 {
    /* text-align: center; */
    margin-bottom: 0rem;
    font-size: 2.5rem;
    color: var(--title-color);
}

h2 {
    /* text-align: center; */
    margin-bottom: 0rem;
    font-size: 2.5rem;
    color: var(--title-color);
    line-height: 2.5rem;
}
._title {
    color: var(--title-color);
}

.fw-100{
    font-weight: 100;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-rounded {
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.image-video {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}



.gray {
    filter: grayscale(1);
}

.custom-btn {
    vertical-align: middle;
    padding: 24px 48px;
    line-height: 1;
    font-size: 0.9rem;
    font-weight: 700;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    color: #ffffff;
    cursor: pointer;
   text-decoration: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    z-index: 0;
    -webkit-transition: background-color .25s ease-in-out,border-color .25s ease-in-out,color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out,border-color .25s ease-in-out,color .25s ease-in-out;
    transition: background-color .25s ease-in-out,border-color .25s ease-in-out,color .25s ease-in-out;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #08C0F9), color-stop(100%, #018DFC));
}

.bage {
    font-size: 0.6rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05rem;
}

.border {
    border: 1px solid red;
}