#fullpage.no-scroll {
    overflow-y: hidden;
    max-height: 100vh;
}

.section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.section#one{
    background-image: url(../assets/images-1.png);
}
.section#two{
    background-image: url(../assets/search.png);
}
.seven{
    background-image: url(../assets/images-2.png);
}
.section-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    text-transform: capitalize;
    color: var(--primary-color);
}

.section-content-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.section-content-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
}

.section-content-subtitle a {
    color: inherit;
    text-decoration: none;
}

.section-content-subtitle a:hover {
    text-decoration: underline;
}

.section-action-container {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-action-btn {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 1rem;
    flex-basis: 80%;
    margin-bottom: 1rem;
    text-transform: capitalize;
    text-decoration: none;
}

.action-btn-primary {
    background: rgba(23, 26, 42, 0.8);
    color: rgb(255, 255, 255);
}

.action-btn-secondary {
    background: rgba(255, 255, 255, 0.65);
    color: var(--primary-color);
}

.section:last-child .section-action-container {
	bottom: 15%;
}

