.social-links a {
    color: #fff;
    margin-right: 5px;
    text-decoration: none !important;
}

/* form success POPup */
.bg-dark-custom {
    background-color: rgb(50, 50, 50);
}

#btn-close-popup2 {
    cursor: pointer;
}

#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}

.svg-background {
    background-color: var(--bs-primary);
    border-radius: 50%;
    padding: 10px;
}

#formPopup {
    display: none;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bs-light);
    z-index: 1000;
    text-align: center;
}

@media (max-width: 768px) {
    #formPopup {
        width: 100%;
        top: 0;
    }

    .success-text {
        font-size: 13px;
    }
}

/* contact form */
.form-check-input:checked {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
}

.form-control-custom {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--bs-white);
    appearance: none;
    background-color: var(--bs-secondary);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 10px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-custom::placeholder {
    color: var(--bs-white);
}

.form-control-custom:focus {
    outline: 0;
}

/* price list */
.price-number {
    width: 150px;
    padding: 10px 20px 10px 20px;
    font-size: 25px;
    border-radius: 20px;
    position: relative;
    top: 20px;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
    z-index: 2;
}

.card-top {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
}

/* questions */
.float-left {
    float: left;
}

/* advantages */
.feature-box {
    height: 90px;
    aspect-ratio: 1/1;
}

/* about */
.about-text {
    font-size: 18px;
}

/* hero */
.content-wrapper {
    position: relative;
    z-index: 3;
}

.fs-hero {
    font-size: clamp(1.2rem, 4vw, 4rem);
}

.image-container {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    box-shadow: -30px 30px 0px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-text {
    max-width: 500px;
}

/* base */
header {
    text-transform: uppercase;
}

.toggler-btn-custom {
    all: unset;
    display: none;
    padding: 4px 7px 4px 7px;
}

.toggler-btn-custom svg {
    color: var(--bs-dark);
}

@media (max-width: 991px) {
    .toggler-btn-custom {
        display: inline-block;
    }
}

body {
    font-family: system-ui, sans-serif;
    background-color: var(--bs-light);
}

/* font-size for large headings */
.fs-custom {
    font-size: clamp(19px, 5vw, 30px);
}

/* btn-white */
.btn-white {
    background-color: var(--bs-white);
    color: #000;
}

.btn-white:hover {
    background-color: rgb(248, 248, 248);
    color: #000;
}
