/* ==========================================================================
*
* Custom CSS Stylesheet. This is where you should add your own styles!
*
** ========================================================================== */

/* Simple style overrides or custom adds */

.some-css-selector {font-size:13px;}

.phone-number {
    position: absolute;
    right: 20px;
    top: 35px;
    font-size: 20px;
}

.phone-number a {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    white-space: nowrap; 
}

.phone-number .phone-text {
    display: inline;  
}

.mobile-hamburger-menu {
    display: none;
}

/* Career Cards */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.card ul {
    list-style: disc;
    margin-left: 20px;
}

.card .btn-link {
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
}

.card.card-position {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex: 1 1 auto; /* Allow the body to take up available space */
}

.card-footer-link {
    margin-top: auto; /* Push the link to the bottom */
    text-align: left; /* Align the link to the left */
    padding: 10px; /* Optional: Add some padding for better spacing */
    font-size: 16px;
    color: red;
    text-decoration: none;
}

.card-footer-link:hover {
    text-decoration: underline;
    color: red;
}
/* End Career Cards */

@media (min-width: 768px) {
    .row .col-lg-6 {
        display: flex;
    }
    .card {
        width: 100%;
    }
}



/* ==========================================================================
** Responsive styles custom rules
* These rules are ready to be used for either overrides
* or just your own custom rules.
========================================================================== */


/** Higher screens+ **/
@media only screen and (min-width : 1921px){

}


/** Desktop+ **/
@media (min-width: 1200px) {

}


/** Laptop **/
@media (max-width: 1200px) {    
    .reverse-flex {
        flex-direction: column-reverse;
    }
}


/** Laptop+ **/
@media (min-width: 991px) {
    
}


/** Laptop **/
@media (min-width: 992px) and (max-width: 1199px) {
    
}


/** Large Tablets **/
@media (max-width: 992px) {
    .site-header-row {
        justify-content: center !important;
    }
    
    .mobile-hamburger-menu {
        display: block;
        position: absolute;
        left: 20px;
    }
    
    .site-header-bottom-wrapper {
        display: none;
    }
	.hide-on-mobile {
        display: none !important; /* Hide on mobile */
    

}

@media (max-width: 767px) {
    .phone-number .phone-text {
        display: none !important; /* Hide phone number text */
    }


    .phone-number a {
        display: flex;
        align-items: center;
    }
}

/** Tablets (landscape mode)  **/
@media (min-width: 768px) and (max-width: 991px) {
	.hide-on-mobile {
        display: none !important; /* Hide on mobile */
}


/** Tablets+  **/
@media (min-width: 768px) {
	.hide-on-mobile {
        display: none !important; /* Hide on mobile */
}


/** Tablets (portrait mode)  **/
@media (min-width : 481px) and (max-width : 768px) {
	.hide-on-mobile {
        display: none !important; /* Hide on mobile */
}

/** Smartphone landscape mode / Mini Tablet **/
@media (max-width: 767px) {
    .separator {
        display: none;
    }

    .siteheader-container {
        max-width: none;
    }
		
	.hide-on-mobile {
			display: none !important; /* Hide on mobile */
    }

/** Smartphone landscape mode / Mini Tablet **/
@media (max-width: 600px) {
	
	.hide-on-mobile {
        display: none !important; /* Hide on mobile */
}


/** Smartphone portrait mode **/
@media (max-width: 480px) {
	
	.hide-on-mobile {
        display: none !important; /* Hide on mobile */
}


/** Normal phone portrait mode+ **/
@media (min-width: 320px) {
	
	.hide-on-mobile {
        display: none !important; /* Hide on mobile */
}