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

#btn-close-popup {
    font-size: 25px;
}

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

.popup-light {
    border-radius: 50%;
    box-shadow: 0px 10px 30px #778fd2;
}

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

#formPopup {
    box-shadow: 0px 0px 100px #778fd2;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    color: var(--bs-light);
    z-index: 1000;
    text-align: center;
    border-top: 2px solid var(--bs-light);
}

@media (max-width: 700px) {
    #formPopup {
        width: 90%;
    }
}

/* courses */
.editorial-image {
    width: 100%;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
}

.editorial-content {
    background-color: var(--bs-secondary);
}

/* contact form */
.form-check-label {
    cursor: pointer;
}

.form-check-input {
    width: 25px;
    height: 25px;
}

.form-check-input:checked {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !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: var(--bs-border-radius);
    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;
}

/* reviews block */
.img-reviews {
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

/* hero block */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.pexels.com/photos/443378/pexels-photo-443378.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1")
      no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 100vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
}

/* header */
.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;
    }
}
