@font-face {
    font-family: 'Calibri';
    src: url('public/fonts/Calibril/calibril.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('public/fonts/Calibril/Calibri.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('public/fonts/Calibril/calibrib.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --hover-opacity: 0.9;
    --bs-primary: rgb(77, 161, 199);
    --bs-primary-hover: rgb(77, 161, 199, var(--hover-opacity));
    --bs-success: rgba(157, 195, 75);
    --bs-success-hover: rgba(157, 195, 75, var(--hover-opacity));
}

body {
    font-family: Calibri;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    border-bottom: 1px solid #ECECEC;
}

.navbar-nav {
    --bs-navbar-color: var(--bs-primary);
    --bs-navbar-hover-color: var(--bs-primary-hover);
    --bs-navbar-active-color: var(--bs-primary-hover);
}

.btn {
    --bs-btn-padding-x: 35px;
    --bs-border-radius: 2px;
    --bs-border-radius-lg: 2px;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary-hover);
    --bs-btn-hover-border-color: var(--bs-primary-hover);
    --bs-btn-active-bg: var(--bs-primary-hover);
    --bs-btn-active-border-color: var(--bs-primary-hover);
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-success {
    --bs-btn-bg: var(--bs-success);
    --bs-btn-border-color: var(--bs-success);
    --bs-btn-hover-bg: var(--bs-success-hover);
    --bs-btn-hover-border-color: var(--bs-success-hover);
    --bs-btn-active-bg: var(--bs-success-hover);
    --bs-btn-active-border-color: var(--bs-success-hover);
    --bs-btn-disabled-bg: var(--bs-success);
    --bs-btn-disabled-border-color: var(--bs-success);
}

.offcanvas {
    --bs-offcanvas-width: 60%;
}

.left-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-section {
    padding-right: 0;
    background: linear-gradient(90deg, #DFF4FA -1.02%, #FAFFF1 100%);
    z-index: -2;
}

.menu-list {
    position: relative;
    margin: 60px 0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.menu-arrow {
    position: absolute;
    left: 0;
    top: 4px;
    height: calc(100% - 8px);
}

.menu {
    position: relative;
    width: max-content;
    color: rgba(115, 115, 115, 0.4);
    font-size: 20px;
    font-weight: 400;
    line-height: 24.41px;
    text-decoration: none;
    transition: 0.3s;
}

.menu:hover {
    color: rgba(0, 0, 0, 1);
}

.menu.selected {
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    font-weight: 700;
    line-height: 29.3px;
}

.menu.selected::before, .menu:hover::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -41px;
    margin: auto;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 5px solid;
    border-radius: 50%;
    transition: 0.1s;
}

.try-now-button {
    width: max-content;
}

.card {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -120px;
    margin: auto;
    width: 395px;
    height: max-content;
    border: 0;
    border-radius: 20px;
    box-shadow: 8px 12px 24px 0px rgba(0, 0, 0, 0.1);
}

.card::before {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 24px;
    background: linear-gradient(127.53deg, rgb(217 238 244) 0%, rgb(236 243 221) 100%);
    z-index: -1;
}

.card-body {
    --bs-card-spacer-x: 40px;
    --bs-card-spacer-y: 40px;
}

.card-text {
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.53px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

@media (max-width: 767.98px) {
    .left-section {
        padding: 40px 0;
    }

    .right-section {
        position: absolute;
        top: 210px;
    }

    .card {
        position: relative;
        width: calc(100% - 60px);
        right: 0;
        margin-top: 40px;
    }
}