/*
==========================================================
Global EuroCareers Theme
Utilities Stylesheet

Version: 2.1.0

----------------------------------------------------------
UTILITY GROUPS

1. Display
2. Flex
3. Grid
4. Alignment
5. Text
6. Spacing
7. Width / Height
8. Images
9. Radius
10. Shadows
11. Backgrounds
12. Position
13. Responsive Utilities
14. Accessibility
==========================================================
*/


/*==========================================================
1. DISPLAY
==========================================================*/

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-grid {
    display: grid !important;
}


/*==========================================================
2. FLEX
==========================================================*/

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}


/*----------------------------------------------------------
  Justify
----------------------------------------------------------*/

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}


/*----------------------------------------------------------
  Align
----------------------------------------------------------*/

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.align-stretch {
    align-items: stretch;
}


/*----------------------------------------------------------
  Gap
----------------------------------------------------------*/

.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

.gap-4 {
    gap: 4rem;
}


/*==========================================================
3. GRID
==========================================================*/

.grid-1 {
    grid-template-columns: 1fr;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}


/*==========================================================
4. ALIGNMENT
==========================================================*/

.mx-auto {
    margin-inline: auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}


/*==========================================================
5. TEXT
==========================================================*/

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}


/*----------------------------------------------------------
  Text Colors
----------------------------------------------------------*/

.text-navy {
    color: var(--navy);
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--muted);
}

.text-white {
    color: var(--white);
}


/*----------------------------------------------------------
  Font Weight
----------------------------------------------------------*/

.fw-normal {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}


/*==========================================================
6. SPACING
==========================================================*/

/*----------------------------------------------------------
  Margin Top
----------------------------------------------------------*/

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}


/*----------------------------------------------------------
  Margin Bottom
----------------------------------------------------------*/

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}


/*----------------------------------------------------------
  Margin Left / Right
----------------------------------------------------------*/

.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}


/*----------------------------------------------------------
  Padding Top
----------------------------------------------------------*/

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}


/*----------------------------------------------------------
  Padding Bottom
----------------------------------------------------------*/

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}


/*==========================================================
7. WIDTH / HEIGHT
==========================================================*/

.w-auto {
    width: auto;
}

.w-100 {
    width: 100%;
}

.max-w-100 {
    max-width: 100%;
}

.h-auto {
    height: auto;
}

.h-100 {
    height: 100%;
}


/*==========================================================
8. IMAGES
==========================================================*/

.img-fluid {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;
}


/*==========================================================
9. RADIUS
==========================================================*/

.rounded-0 {
    border-radius: 0;
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-pill {
    border-radius: var(--radius-pill);
}

.rounded-circle {
    border-radius: 50%;
}


/*==========================================================
10. SHADOWS
==========================================================*/

.shadow-none {
    box-shadow: none;
}

.shadow {
    box-shadow: var(--shadow);
}

.shadow-lg {
    box-shadow: var(--shadow-large);
}


/*==========================================================
11. BACKGROUNDS
==========================================================*/

.bg-white {
    background-color: var(--white);
}

.bg-cream {
    background-color: var(--cream);
}

.bg-navy {
    background-color: var(--navy);
}

.bg-navy-2 {
    background-color: var(--navy2);
}

.bg-gold {
    background-color: var(--gold);
}


/*==========================================================
12. POSITION
==========================================================*/

.position-static {
    position: static;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}


/*==========================================================
13. RESPONSIVE UTILITIES
==========================================================*/

.hide-desktop {
    display: none !important;
}


/*----------------------------------------------------------
  Tablet
----------------------------------------------------------*/

@media (max-width: 992px) {

    .hide-tablet {
        display: none !important;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

}


/*----------------------------------------------------------
  Mobile
----------------------------------------------------------*/

@media (max-width: 768px) {

    .hide-desktop {
        display: block !important;
    }

    .hide-mobile {
        display: none !important;
    }


    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }


    .grid-2 {
        grid-template-columns: 1fr;
    }


    .mobile-center {
        text-align: center;
    }


    .mobile-left {
        text-align: left;
    }


    .mobile-column {
        flex-direction: column;
    }


    .mobile-full {
        width: 100%;
    }

}


/*----------------------------------------------------------
  Small Mobile
----------------------------------------------------------*/

@media (max-width: 480px) {

    .sm-hide {
        display: none !important;
    }

}


/*==========================================================
14. ACCESSIBILITY
==========================================================*/

.screen-reader-text {

    position: absolute;

    width: 1px;
    height: 1px;

    margin: -1px;
    padding: 0;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    clip-path: inset(50%);

    border: 0;

    white-space: nowrap;

}


.screen-reader-text:focus {

    position: absolute;

    top: 20px;
    left: 20px;

    width: auto;
    height: auto;

    margin: 0;

    padding: 12px 18px;

    overflow: visible;

    clip: auto;

    clip-path: none;

    background: var(--navy);

    color: var(--white);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-large);

    font-size: 1rem;

    font-weight: 700;

    line-height: 1.4;

    text-decoration: none;

    white-space: normal;

    z-index: 9999;

}