/* ===============================================
   Specified CSS for About Us Page (about.blade.php)
=============================================== */

/* Texts */
.info-title {
    font-family: 'Saira', sans-serif !important;
    font-size: 25px;
    font-weight: 450;
    color: azure;
    text-transform: uppercase;
}

.info-details {
    font-family: 'Saira', sans-serif !important;
    font-size: 15px;
    font-weight: 300;
    color: azure;
}
/* End of Texts */

/* Embla Slider Section */
/*** Embla Carousel ***/
.embla {
    max-width: 85%;
    margin: auto;
    --slide-height: 19rem;
    --slide-spacing: 1rem;
    --slide-size: 100%;
    --slide-spacing-sm: 1.6rem;
    --slide-size-sm: 50%;
    --slide-spacing-lg: 2rem;
    --slide-size-lg: calc(100% / 3);
}

.embla__viewport {
    overflow: hidden;
}

.embla__container {
    backface-visibility: hidden;
    display: flex;
    touch-action: pan-y pinch-zoom;
    margin-left: calc(var(--slide-spacing) * -1);
}

@media (min-width: 750px) {
    .embla__container {
        margin-left: calc(var(--slide-spacing-sm) * -1);
    }
}

@media (min-width: 1200px) {
    .embla__container {
        margin-left: calc(var(--slide-spacing-lg) * -1);
    }
}

.embla-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #ffffff;
    margin-top: 25px;
}

.embla-title {
    font-family: 'Saira', sans-serif !important;
    font-size: 20px;
    font-weight: 450;
    color: azure;
    text-transform: uppercase;
    text-align: center;
}

.embla-details {
    font-family: 'Saira', sans-serif !important;
    font-size: 15px;
    font-weight: 300;
    color: azure;
    text-align: center;
}

.embla__slide {
    min-width: 0;
    flex: 0 0 var(--slide-size);
    padding-left: var(--slide-spacing);
    user-select: none;
    -webkit-user-drag: none;
}

@media (min-width: 750px) {
    .embla__slide {
        flex: 0 0 var(--slide-size-sm);
        padding-left: var(--slide-spacing-sm);
        user-select: none;
        -webkit-user-drag: none;
    }
}

@media (min-width: 1200px) {
    .embla__slide {
        flex: 0 0 var(--slide-size-lg);
        padding-left: var(--slide-spacing-lg);
        user-select: none;
        -webkit-user-drag: none;
    }
}

.embla__slide__number {
    box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
    border-radius: 1.8rem;
    font-size: 4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--slide-height);
    user-select: none;
}

.embla__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.embla__dot {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;
}

.embla__dot:after {
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #bbb;
    transition: background-color 0.3s, transform 0.3s;
}

.embla__dot--selected:after {
    background-color: #333;
    transform: scale(1.2);
}
/* End of Embla Slider Section */

/*** Forms ***/
.inputGroup {
    font-family: 'Segoe UI', sans-serif;
    margin: 1em 0 1em 0;
    max-width: 100%;
    position: relative;
}

.inputGroup input {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    background-color: transparent;
    border-radius: 20px;
    width: 100%;
}

.inputGroup label {
    font-size: 100%;
    position: absolute;
    left: 0;
    padding: 0.8em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.3s ease;
    color: rgb(100, 100, 100);
}

.inputGroup :is(input:focus, input:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0.4em;
    background-color: #181717;
}

.inputGroup :is(input:focus, input:valid) {
    border-color: rgb(150, 150, 200);
}
/*** End of Forms ***/