@font-face {
    font-family: Regular;
    src: url('../fonts/Cotta.otf');
}

.regular-font {
    font-family: Regular;
}

@font-face {
    font-family: Rubik;
    src: url('../fonts/Rubik.ttf');
}

.rubik {
    font-family: Rubik;
}

@font-face {
    font-family: OpenSans;
    src: url('../fonts/OpenSans.ttf');
}

.opensans {
    font-family: OpenSans;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.cbg1 {
    background-image: url("../images/cbg1.png");
    background-position: center;
    background-size: cover;
}

.cbg2 {
    background-image: url("../images/blue.png");
    background-position: center;
    background-size: cover;
}

.cbg3 {
    background-image: url("../images/cbg2.png");
    background-position: center;
    background-size: cover;
}

h1 {
    font-size: clamp(1.4rem, 4.4vw, 3.5rem);
}

.h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.p {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 2;
}

.primary-font {
    color: #3764E5;
}

.div-line {
    border: none;
    height: 15px;
    background-color: #F43C1E;
    color: #F43C1E;
    margin: 2rem 0;
    margin-left: auto;
    margin-right: auto;
}

.card-bg {
    background-color: #F3EAE3;
}

.card-text {
    margin-top: -2.5rem;
}

.br {
    border-radius: 8px;
}

.card-description {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
}

.text-white {
    color: white;
}

.p2 {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1.5;
}

.gbg {
    background-color: #95B9C1;
}

.secondary-font-color {
    color: #95B9C1;
}

.fc {
    border-radius: 20px;
    border-color: #95B9C1;
    border-width: 2px;
}

.orange {
    color: #F43C1E;
}

.bo {
    background-color: #F43C1E;;
}

.db {
    border-radius: 25%;
}

.round-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
    border-radius: 250px;
    width: fit-content;
    min-width: 100px;
    background-color: #F43C1E;
    /* Using your orange color */
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.round-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-bg {
    background-color: #3764E5;
}

.footer-icon {
    width: 35px;
}


