body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

nav a:hover {
    color: #41bd8b;
}

nav a {
    color: black;
    transition: 0.5s;
    font-weight: bolder;
    text-decoration: none;
    padding: 10px;
}

header {
    padding: 10px;
    background: #ffffffbd;
    width: 100%;
    backdrop-filter: blur(5px); 
    top: 0;
    z-index: 100;
    position: fixed;
}


.header-content {
    display: flex;
    justify-content: center;
}

.logo {
    margin-right: 20px;
    animation: logo 2s ease-in-out;
}

.logo img {
    width: 40px;
}

.bg-1 {
    background-color: #41bd8b;
}

.hero {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img img {
    width: 300px;
}

.hero-title {
    font-size: 50px;
}

.hero-title span {
    background: -webkit-linear-gradient(57deg, #377b60 0%, #41bd8b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.content p {
    font-size: 20px;
    line-height: 30px;
}

.calender {
    width: 100%;
    margin-top: 50px;
}

.text-1 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.container {
    max-width: 1000px;
}

.q {
    margin-top: 50px;
}

.btn-primary {
    background-color: #41bd8b;
    border-color: #41bd8b;
}

.btn-primary:hover {
    background-color: #4ca682;
    border-color: #4ca682;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background-color: #4ca682;
    border-color: #4ca682;
}

.card {
    margin-top: 25px;
}

footer {
    margin-top: 100px;
    padding-top: 50px;
    background-color: var(--colot-footer);
    padding-bottom: 50px;
}

@keyframes logo {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
