/* 

MEDICO STAFFING - Hiya!

Breakpoints

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { 
    
 }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { 
    
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { 
    
 }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { 
    
}

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { 
    
 }
 === */


/* === 
    Pseudo root class
=== */

:root {

    /* ====
        CSS Variables 
    === */
    
    --darkBlue:#031527;
    --colorWhite: #FFF;
    --colorBlack: #000;
    --colorGreen: #37ca4e;
    --colorLightGreen: #a1ffc4;
    --colorCyan: #16b0f7;
    --colorLightBlue: #8decff;
    --colorSilver: #FAFAFA;
    --colorRed: #dc3545;
    --colorLightGrey: #f9f9f9;
    --colorDarkGrey: #3b3b3b;
    
    --colorWheCyan: #02AEE6;
    --colorWheGreen: #00E878;
    --colorWheGrey: #4D4D4D;
    --colorWheLightGrey: #F5F5F5;

    --headerHeight: 50vh;
    --headerPadding: 5vh;
    
    --subHeaderHeight: 30vh;

    --width-cond: condensed;
    --width-reg: normal;
    --width-ext: expanded;
    --weight-light: 300;
    --weight-reg: 400;
    --weight-med: 500;

    --colorLightblue: #EDF8FF;
    --colorLighterBlue: #3f8af8;
    --colorMidBlue: #01337E;
    --colorBoldBlue: #0066FF;
    --colorLighterGreen: #EAFFF5;
    --colorPurple: #1F2848;


    --MedicoTDarkGreen: #1D3B3C;
    --MedicoTLightGreen: #149529;
    --MedicoTLighterGreen: #5ECB89;
    --MedicoTVeryLightGreen: #E6F8ED;
    --MedicoTPurple: #632ba9;
    --MedicoTLightPurple: #D2AEFF;
    --MedicoTLighterPurple: #e2ccff;
    --MedicoTEvenLighterPurple: #f4ebff;

}

@font-face {
    font-family:'GT Flexa';
    font-weight:200;
    font-stretch:condensed;
    src:url("/fonts/GT-Flexa-Condensed-Thin.woff2") format("woff2"),url("/fonts/GT-Flexa-Condensed-Thin.woff") format("woff")
}

@font-face {
    font-family:'GT Flexa';
    font-weight:300;
    font-stretch:condensed;
    src:url("/fonts/GT-Flexa-Condensed-Light.woff2") format("woff2"),url("/fonts/GT-Flexa-Condensed-Light.woff") format("woff")
}

@font-face {
    font-family:'GT Flexa';
    font-weight:var(--weight-reg);
    font-weight:400;
    font-stretch:var(--width-cond);
    font-stretch:condensed;
    src:url("/fonts/GT-Flexa-Condensed-Regular.woff2") format("woff2"),url("/fonts/GT-Flexa-Condensed-Regular.woff") format("woff")
}

@font-face {
    font-family:'GT Flexa';
    font-weight:var(--weight-light);
    font-weight:300;
    font-stretch:var(--width-reg);
    font-stretch:normal;
    src:url("/fonts/GT-Flexa-Standard-Light.woff2") format("woff2"),url("/fonts/GT-Flexa-Standard-Light.woff") format("woff")
}

@font-face {
    font-family:'GT Flexa';
    font-weight:var(--weight-reg);
    font-weight:400;
    font-stretch:var(--width-reg);
    font-stretch:normal;
    src:url("/fonts/GT-Flexa-Standard-Regular.woff2") format("woff2"),url("/fonts/GT-Flexa-Standard-Regular.woff") format("woff")
}

@font-face {
    font-family:'GT Flexa';
    font-weight:var(--weight-medium);
    font-weight:500;
    font-stretch:var(--width-reg);
    font-stretch:normal;
    src:url("/fonts/GT-Flexa-Standard-Medium.woff2") format("woff2"),url("/fonts/GT-Flexa-Standard-Medium.woff") format("woff")
}

@font-face {
    font-family:'GT Flexa';
    font-weight:var(--weight-light);
    font-weight:300;
    font-stretch:var(--width-ext);
    font-stretch:expanded;
    src:url("/fonts/GT-Flexa-Extended-Light.woff2") format("woff2"),url("/fonts/GT-Flexa-Extended-Light.woff") format("woff")
}

@font-face {
    font-family:'GT Flexa';
    font-weight:var(--weight-reg);
    font-weight:400;
    font-stretch:var(--width-ext);
    font-stretch:expanded;
    src:url("/fonts/GT-Flexa-Extended-Regular.woff2") format("woff2"),url("/fonts/GT-Flexa-Extended-Regular.woff") format("woff")
}

@font-face {
    font-family:'GT Flexa';
    font-weight:var(--weight-med);
    font-weight:500;
    font-stretch:var(--width-ext);
    font-stretch:expanded;
    src:url("/fonts/GT-Flexa-Extended-Medium.woff2") format("woff2"),url("/fonts/GT-Flexa-Extended-Medium.woff") format("woff")
}
    
html {

    scroll-behavior: smooth;

}

body {

    background: #fff;
    font-family: "GT Flexa",'Helvetica',Helvetica,'Work Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;

} 

body.openMenu {

    overflow:hidden;
    height:100vh;

}

body p { 

    color:var(--colorWheGrey);

}

a { 

    transition: all 0.2s ease-in;

}

#header .hamburger {
    
    cursor: pointer;
    width: 37px;
    height: 80px;
    float: right;
    position: relative;
    z-index: 500;
    margin:calc(var(--headerPadding) - 25px) 0 0 0;
    padding: 0 0 0px 0;

}

 .hamburger.open {

    position:fixed !important;
    right:12px;
    
}

@media (min-width: 576px) { 

    .hamburger.open {

        position:fixed !important;
        right:46px;
        
    }

}

@media (min-width: 768px) { 

    .hamburger.open {

        position:relative !important;
        right:auto;
        
    }
    
}

@media (min-width: 768px) { 

    .header-desktop { display: inline-block; }
    
    #header .hamburger {
        cursor: pointer;
        width: 80px;
        height: 80px;
        float: right;
        /* position: relative; */
        /* z-index: 500; */
        margin:calc(var(--headerPadding) - 25px) 0 0 0;
        padding: 0 0 0px 0;
    }

}

#header .hamburger .line {
    width: 100%;
    height: 5%;
    background-color: #21DF84;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media (min-width: 768px) { 

    #header .hamburger .line {

        background-color: #ffffff;
    
    }

}

#header .hamburger .line.line-top {

    margin-top: -29%;

}

#header .hamburger .line.line-mid {

    margin-top: -1.5%;

}

#header .hamburger .line.line-bot {

    margin-top: 25%;

}

@media screen and (min-width: 641px) {

    #header .hamburger .line {

        margin-left: -16.6%;

    }

}
  
@media screen and (min-width: 768px) {

    #header .hamburger {

        width: 40px;
        height: 90px;

    }

    #header .hamburger:hover .line {

        background-color:var(--colorWheGreen);
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;

    }

}

#header .hamburger.open .line {

    background-color: #fff;

}

#header .hamburger.open .line.line-top {

    margin-top: -1.5%;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);

}

#header .hamburger.open .line.line-mid {

    opacity: 0;

}

#header .hamburger.open .line.line-bot {

    margin-top: -1.5%;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);

    transform: rotate(45deg);
}

.menu {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--colorMidBlue);
    z-index: 5;
    display: none;
    text-align: center;
    padding-top: 10vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;

}

.menu nav {

    padding-top: 2vh;
    z-index: 100;

}
  
.menu nav ul {

    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    width: 100%;
    z-index: 501;

}

.menu nav ul li {

    text-align: right;
    padding:0; 
    margin:0; 
    color:#fff;

}

.subClass {

    padding: 0 0 16px 0 !important;
    border-bottom: 1px solid #034398;
    display: inline-block;
    
}

@media (min-width: 768px) { 
    
    .subClass {
    
        padding: 0 0 18px 0 !important;
        border-bottom: 1px solid #034398;
        display:flex !important;
        
    }
    
}

.menu nav ul li.subClass h4 {
    
    text-align: center;
    font-size:14px;
    padding: 2vh 3vw 0vh 3vw;
    color:var(--colorLightBlue);

}

.menu nav ul li h4 {

    text-align: center;
    font-size:14px;
    padding: 2vh 3vw 0vh 3vw;
    color:var(--colorLightBlue);

}

.menu nav ul li.subClass li a {

    text-align: center;
    padding: 0.2vh 3vw 0vh 3vw;

}

nav > ul > li:nth-child(1) {

    border-bottom: 1px solid #034398;
    padding-bottom: 1vh;

}

@media (min-width: 768px) { 
    
    nav > ul > li:nth-child(2) {

        padding-bottom: 2vh;
    
    }
    
    .menu nav ul li.subClass h4 {

        text-align: left;
        font-size:18px;
        padding: 2vh 3vw 0vh 3vw;

    }
    
    .menu nav ul li.subClass li a {

        text-align: left;
        padding: 0.5vh 3vw 0vh 3vw;

    }

    .menu nav ul li h4 {

        text-align: left;
        font-size:18px;
        padding: 3vh 0vw 0vh 3vw;
        color: var(--colorLightBlue);

    }

}

.menu nav ul li a {

    padding: 1vh 3vw 1vh 3vw;
    margin: 0;
    color: #fff;
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all .2s ease-in-out;

}

@media (min-width: 768px) { 
  
    .menu nav ul li a {
    
        padding: 0.2vh 0 0.2vh 3vw;
        margin:0;
        color:#fff;
        display:inline-block;
        width: 100%;
        text-align: left;
        font-size: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: all .2s ease-in-out;
    
    }

}

@media (min-width: 992px) { 
  
    .menu nav ul li a {
    
        padding: 0.2vh 0 0.2vh 3vw;
        margin:0;
        color:#fff;
        display:inline-block;
        width: 100%;
        text-align: left;
        font-size: 31px;
        text-decoration: none;
        font-weight: bold;
        transition: all .2s ease-in-out;
    
    }

}

.menu nav ul li a:hover { 

    font-weight: bold;
    color: var(--colorWheGreen);
    text-shadow: 2px 2px 6px rgb(0 0 0 / 25%);
    transition: all .2s ease-in-out;

}

.menu nav ul li {

    opacity: 0;
    width:100%;
    animation: fadeIn 1.9s 1;
    animation-fill-mode: forwards;

}

.menu nav ul li:nth-child(1) { animation-delay: 0.2s; }
.menu nav ul li:nth-child(2) { animation-delay: 0.3s; }
.menu nav ul li:nth-child(3) { animation-delay: 0.4s; }
.menu nav ul li:nth-child(4) { animation-delay: 0.5s; }
.menu nav ul li:nth-child(5) { animation-delay: 0.6s; }
.menu nav ul li:nth-child(6) { animation-delay: 0.7s; }
.menu nav ul li:nth-child(7) { animation-delay: 0.8s; }
.menu nav ul li:nth-child(8) { animation-delay: 0.9s; }
.menu nav ul li:nth-child(9) { animation-delay: 1s; }
.menu nav ul li:nth-child(10) { animation-delay: 1.1s; }
.menu nav ul li:nth-child(11) { animation-delay: 1.2s; }

.nav1x { animation-delay: 0.7s !important; }
.nav2x { animation-delay: 0.8s !important; }

.menu nav ul li a:hover { color:var(--colorGreen); }

@keyframes fadeIn {
    0% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }

    /*
    0% { opacity: 0; filter: brightness(1) blur(20px) }
    10% { opacity: 1; filter: brightness(2) blur(10px) }
    100% { opacity: 1; filter: brightness(1) blur(0) }
    */
}

@keyframes fadeIn2 {
    0% {
        opacity: 0.0;
    }
    80% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes fadeIn3 {
    0% {
        opacity: 0.0;
    }
    20% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

#hp #header {

    background:#F3FBFF;
    width:100%;
    height: auto;
    position: relative;
    padding: 0vh 0 3vh 0;
    top: 0;
    left: 0;
    border-radius:0 0 50px 0;

}

@media (min-width: 768px) { 
    
    #hp #header {
        background: url('./src/header-bg.svg') center center no-repeat;
        background-size:cover;
        width:100%;
        height: auto;
        /* max-height: 900px; */
        position: relative;
        padding: 3vh 0 6vh 0;
        top: 0;
        left: 0;
    }

}

#sp #header {

    width:100%;
    height: var(--subHeaderHeight);
    position: relative;
    top: 0;
    left: 0;
    background: var(--colorPurple);
    background: #13245f url(./src/sub-bg-1.svg) center center no-repeat;
    background-size: cover;

}

@media (min-width: 992px) { 
    
    #sp #header {
        
        height: var(--subHeaderHeight);
        min-height:300px;
       
    }

}

@media (min-width: 1200px) { 
    
    #sp #header {
        height: var(--subHeaderHeight);
        min-height:350px;
        border-radius: 0 0 50px 0;
    }

}

#sp #header.subImage1 {
    background: url('./img/sub-header-1.jpg') center center no-repeat;
    background-size:cover;
}

#sp #header.subImage2 {
    background: url('./img/sub-header-2.jpg') center center no-repeat;
    background-size:cover;
}

#sp #header.subImage3 {
    background: url('./img/sub-header-3.jpg') center center no-repeat;
    background-size:cover;
}

#sp #header.subImage4 {
    background: url('./img/sub-header-4.jpg') center center no-repeat;
    background-size:cover;
}

#hp #header.menuOpen {
   
    position: fixed;
    height:10vh;
    background: none;
    z-index: 6;

}

#sp #header.menuOpen {

    /* position: fixed; */
    height:var(--subHeaderHeight);
    background: none;
    z-index: 6;

}

#hp #starterSection.menuOpen {

    margin-top:80vh;
    
}

#sp #starterSection.menuOpen {

    margin-top:var(--headerHeight);
    
}

#sp .menuOpen .generalWhiteSection {

    margin-top:var(--subHeaderHeight);
    
}

.menuImage {

    display:none;
}

.double-column {

    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; 
    -webkit-column-gap: 4em;
    -moz-column-gap: 4em;
    column-gap: 4em;
    
}

@media (min-width: 768px) { 

    .double-column {

        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2; 
        -webkit-column-gap: 4em;
        -moz-column-gap: 4em;
        column-gap: 4em;
        
    }

}

#mainBody {

    background:#fff;
    padding:10vh 0 10vh 0;

}

.menuOpen h2 a {

    opacity: 0;
    animation: fadeOut 1.9s 1;

}

h2 a {

    opacity: 1;
    animation: fadeIn 1.9s 1;

}

#header h2 a {

    background: url('./src/medico-logo.svg') left center no-repeat;
    background-size: contain;
    text-indent:-3000px;
    margin:var(--headerPadding) 0 20px 0px;
    height:40px;
    width:100%;
    display: inline-block;

}

#sp #header h2 a {

    background: url('./src/medico-logo-light.svg') left center no-repeat;
    background-size: contain;
    text-indent:-3000px;
    margin:var(--headerPadding) 0 20px 0px;
    height:40px;
    width:100%;
    display: inline-block;

}

@media (min-width: 768px) { 

    #header h2 a,
    #sp #header h2 a
    {
        height: 60px;
    }

}

@media (min-width: 1200px) { 

    #header h2 a,
    #sp #header h2 a
    {
        height: 70px;
    }

}

.menu-details {

    float:left;
    text-align:center;
    font-weight:bold;
    font-size:10px;
    width:100%;
    padding: 1vh 0 1vh 0;
    color: var(--colorLightBlue);

}

.menu-details a {

    padding:0 !important;
    font-size:16px !important;
    color:#fff !important;

}

@media (min-width: 768px) { 
  
    .menu-details {

        text-align:left;
        font-size:14px;
        width:33.3%;
        padding: 1vh 0 1vh 3vw;
    }

    .menu-details a {

        padding:0 !important;
        font-size:16px !important;
        color:#fff !important;

    }

}

@media (min-width: 1200px) { 

    .menu-details {

        text-align:left;
        font-size:16px;
        width:33.3%;
        padding: 1vh 0 1vh 3vw;
    }

    .menu-details a {

        padding:0 !important;
        font-size:20px !important;
        color:#fff !important;

    }

}

.hpHeaderImg { 
    width:100%;
    border-radius:20px;
    /*
    -webkit-box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.22);
    box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.22);
    */
              
}

@media (min-width: 768px) { 

    .hpHeaderImg { 
        border-radius:50px;
                
    }

}

.hphidden { 

    display:none; 
    transition: all .2s ease-in-out; 

}

.sphidden { 

    display: none !important;
    transition: all .2s ease-in-out; 

}

.nopadd {

    margin-bottom:0;
    
}

#hpheader {

    transition: all .2s ease-in-out;
    animation-delay: 1s;
    animation: fadeIn2 1s 1;

}

@media (min-width: 768px) {

    #hpheader {
        /*background: url('./img/hp-p-1.jpg') right center no-repeat;
        background-size: cover; */
        /* background-size:70vw auto; */
        transition: all .2s ease-in-out;
        /* height: 55vh !important; */
        animation-delay: 1s;
        animation: fadeIn2 1s 1;
    }

}

#spheader {
    transition: all .2s ease-in-out;
    height: auto;
    animation-delay: 1s;
    animation: fadeIn3 3s 1;

}

@media (min-width: 768px) {

    #spheader {

        transition: all .2s ease-in-out;
        height: auto;
        animation-delay: 0s;
        animation: fadeIn3 2s 1;

    }

}

#hp .centralSection h3 {

    color: var(--colorMidBlue);
    font-size: 26px;
    font-weight: 500;
    margin-right: 8vw;
    background: -webkit-linear-gradient(190deg, var(--colorMidBlue) 2.85%, var(--colorWheCyan) 161.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

#sp .centralSection h3 {

    color: #fff;
    font-size: 24px;
    font-weight: 900;
    margin-right: 0;

}

#sp .centralSection h1 {

    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin-right: 0;

}


.centralSection h4 {

    font-weight: 300;
    padding:10px 0 0 0;
    font-size:16px;

}

#sp.jobDetail .centralSection h3 {
    font-size: 14px !important;
}

#sp.jobDetail .centralSection h1 {
    font-size: 34px !important;
}

@media (min-width: 768px) { 

    #hp .centralSection h3 {
        font-size: 28px;
        margin-right: 4vw;
    }
    
    #sp .centralSection h3 {
        font-size: 40px;
        margin-right: 26vw;
        font-weight:400;
    }
    
    .centralSection h4 {
        font-weight: 300;
        padding:10px 0 0 0;
        font-size:16px;
    }
    
    #sp.jobDetail .centralSection h3 {
        
        font-size: 14px !important;
    }
    
    #sp.jobDetail .centralSection h1 {
        font-size: 64px !important;
    }

}

@media (min-width: 1200px) { 

    #hp .centralSection h3 {
        font-size: 38px;
        margin-right: 4vw;
    }
    
    .centralSection h4 {
        font-weight: 300;
        padding:10px 0 0 0;
        font-size: 20px;
    }
    
}

.pillButton1 {

    border: 2px solid var(--colorMidBlue);
    background:var(--colorMidBlue);
    box-sizing: border-box;
    border-radius: 50px;
    padding:10px 10px;
    margin: 10px 10px 20px 0;
    display:inline-block;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    transition: all .2s ease-in-out;
    font-size:14px;

}

.pillButton2 {
  
    box-sizing: border-box;
    border-radius: 50px;
    padding:20px 10px 20px 30px;
    color:var(--colorMidBlue);
    transition: all .2s ease-in-out;
    font-size:14px;
    text-decoration:none;
    font-weight:500;
    background: url('./src/icon-whatsapp.svg') center left no-repeat;

}

@media (min-width: 768px) { 

    .pillButton1 {

        border: 2px solid var(--colorMidBlue);
        background:var(--colorMidBlue);
        box-sizing: border-box;
        border-radius: 50px;
        padding:10px 10px;
        margin:25px 10px 0 0;
        display:inline-block;
        color:#fff;
        text-decoration:none;
        font-weight:bold;
        transition: all .2s ease-in-out;
        font-size:10px;
    
    }
    
    .pillButton2 {
      
        box-sizing: border-box;
        border-radius: 50px;
        padding:20px 10px 20px 30px;
        color:var(--colorMidBlue);
        transition: all .2s ease-in-out;
        font-size:10px;
        text-decoration:none;
        font-weight:500;
        background: url('./src/icon-whatsapp.svg') center left no-repeat;
    
    }  

}

.pillButton1.lightBg {

    color:#02AEE6;

}

@media (min-width: 768px) { 

    .pillButton1 {

        padding:10px 20px;
        margin:25px 20px 0 0;
        transition: all .2s ease-in-out;
        font-size:16px;

    }
    
    .pillButton2 {
  
        padding:10px 20px 10px 30px;
        transition: all .2s ease-in-out;
        font-size:16px;
    
    }

}

.pillButton1:hover {

    color:var(--colorWheGreen);

}

.pillButtonHeader1,
.pillButtonHeader2
{

    display:none;

}

@media (min-width: 768px) { 

    .pillButtonHeader1 {
        display: block;
        border: 2px solid var(--colorBoldBlue);
        background: var(--colorBoldBlue);
        box-sizing: border-box;
        border-radius: 50px;
        padding:10px 20px;
        margin: var(--headerPadding) 30px 0 0;
        color:#fff;
        text-decoration: none;
        font-weight: bold;
        float: right;
        font-size: 12px;
        transition: all .2s ease-in-out;
        -webkit-box-shadow: 0px 0px 24px -3px #002966e3;
        -moz-box-shadow: 0px 0px 24px -3px #002966e3;
        box-shadow: 0px 0px 24px -3px #002966e3;
    }
    
    .pillButtonHeader2 {
        display: block;
        border: 2px solid var(--colorLighterGreen);
        background: var(--colorLighterGreen);
        box-sizing: border-box;
        border-radius: 50px;
        padding:10px 20px;
        margin: var(--headerPadding) 15px 0 0;
        color: var(--colorGreen);
        text-decoration: none;
        font-weight: bold;
        float: right;
        font-size:12px;
        transition: all .2s ease-in-out;
        -webkit-box-shadow: 0px 0px 24px -3px #00e8785e;
        -moz-box-shadow: 0px 0px 24px -3px #00e8785e;
        box-shadow: 0px 0px 24px -3px #00e8785e;
    }
    
}

.pillButtonHeader2:hover {
    background-color:var(--colorGreen);
    border: 2px solid var(--colorGreen);
    color:#fff;
    -webkit-box-shadow: 0px 5px 24px -3px #00e8785e;
    -moz-box-shadow: 0px 5px 24px -3px #00e8785e;
    box-shadow: 0px 5px 24px -3px #00e8785e;
}

.pillButtonHeader1:hover {
    background-color:#0011E8;
    color: #fff;
    border: 2px solid #0011E8;
    -webkit-box-shadow: 0px 5px 24px -3px #002966e3;
    -moz-box-shadow: 0px 5px 24px -3px #002966e3;
    box-shadow: 0px 5px 24px -3px #002966e3;
}

#hpheader {
    position: relative;
    z-index: 1;
}

#spheader {
    position: absolute;
    bottom: var(--headerPadding);
}

.readMore {
    position: absolute;
    bottom: 0px;
    color: #fff;
    text-decoration: none;
    padding:0 0 10px 0 !important;
    display:inline-block;
    font-size:12px;
    background: url('./img/underline.svg') bottom center no-repeat;
    transition: all .2s ease-in-out;
    width:auto;
    margin-left:calc(var(--bs-gutter-x)/ 2);
}

.readMore:after {
    padding:0 0 1px 6px;
    font-size:8px;
    content: "\25BC";
}

.readMore:hover {

    color: var(--colorWheGreen);
    transition: all .2s ease-in-out;

}

.imageBox {
    position: absolute;
    top: 0;
    right: 0;
    background:red;
    width:60%;
    height: 55vh;
    z-index: 0;
    background: url('./img/hp-p-1-mb.jpg') center center no-repeat;
    background-size: cover;
    animation-delay: 2s;
    animation: fadeIn2 2s 1;
}

.centralSection {
    z-index: 600 !important;
    position: relative;
}

@media (min-width: 1200px) { 

    .imageBox {
        position: absolute;
        top: 0;
        right: 0;
        background:red;
        width:60%;
        height: 55vh;
        z-index: 0;
        background: url('./img/hp-p-1-mb.jpg') top center no-repeat;
        background-size: cover;
    }

}

.fillSpace {
    width:100%;
    display: inline-block;
}

.hp-img-1 {

    padding:0 10vw 45px 10vw;

}

@media (min-width: 768px) { 

    .hp-img-1 {
    
        padding:0 0 0 0;
    
    }

}    

.generalWhiteSection h1 {

    color: var(--colorBlue);
    padding:0 0 30px 0;
    line-height: 2.2rem;
    background: -webkit-linear-gradient(190deg, var(--colorMidBlue) 2.85%, var(--colorWheCyan) 161.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

@media (min-width: 768px) { 

    .generalWhiteSection h1 {

        line-height: 3rem;
    
    }

}

.generalWhiteSection h1.Cyan {

    color: var(--colorWheCyan);

}

.generalWhiteSection h2 {

    color: var(--colorWheCyan);
    padding:10px 0 30px 0;
    line-height: 2.2rem;

}

@media (min-width: 768px) { 

    .generalWhiteSection h2 {

        line-height: 3rem;
    
    }

}

.generalWhiteSection h1 span {

    color: var(--colorWheCyan) !important;
    background: none !important;
    -webkit-text-fill-color: var(--colorWheCyan) !important;

}

#hpBlueSection {

    padding:7vh 0px 7vh 0px;
    background: #13245f url(./src/sub-bg-1.svg) center center no-repeat;
    background-size:cover;
    border-radius:50px 0 0 0;
    
}

@media (min-width: 768px) { 

    #hpBlueSection {

        padding:10vh 50px 10vh 50px;

    }

}

.readyToWork p {

    font-size: 16px;

}

@media (min-width: 768px) { 

    .readyToWork p {

        font-size: 18px;

    }

}

.greenTick {

    list-style:none;
    padding:0 0 20px 0;
    margin:0;
    
}

.greenTick li {

    color:#fff;
    font-size:18px;
    display: flex;
    padding:5px 0;

}

@media (min-width: 768px) { 

    .greenTick li {

        font-size:24px;
        padding:10px 0;

    }

}

@media (min-width: 1200px) { 

    .greenTick li {

        font-size:28px;
        padding:16px 0;

    }

}

.greenTick li:before {
    content: " ";
    background: url(./src/greenTick.svg) center center no-repeat;
    background-size: contain;
    width:20px;
    height:auto;
    margin: 0 20px 0 0;
}

.lighterLink {

    color:var(--colorLighterBlue);
    margin-bottom:30px !important;
    display:inline-block
    
}

@media (min-width: 768px) { 

    .lighterLink {
    
        margin-bottom:0px !important;
        display:auto;
        
    }

}

#hpBlueSection h4 {
    
    color: var(--colorCyan);
    padding: 0 0 3vh 0;
    line-height: 3rem;
    font-size: 40px;
    font-weight: 200;
    width: 100%;
    text-align: center;

}

#hpBlueSection p {

    color:#fff;

}

.generalWhiteSection {

    background: #fff;
    padding: 5vh 0 5vh 0;
    transition: all .2s ease-in-out;
    animation: fadeIn3 1s 1;

}

@media (min-width: 768px) { 

    .generalWhiteSection {

        background: #fff;

    }
    
    #hp .generalWhiteSection {

        padding: 8vh 0 8vh 0;
        
    }

}

#footer {

    padding:5vh 30px 40px 30px;
    background:var(--colorLightblue);
    border-radius:50px 0 0 0;

}

#footer .container {

    padding:0 0 200px 0;

}

@media (min-width: 768px) { 

    #footer {

        padding:5vh 0 5vh 0;
    
    }
    
    #footer .container {

        padding:0 0 0px 0;
    
    }

}

@media (max-width: 768px) { 

    #footer .groupImage {

        position:fixed;
        left:0;
        bottom:-240px;
        height:200px;
        width:100vw;
        background: url(./src/group.png) bottom center no-repeat;
        background-size:contain;
        
    }

}

@media (min-width: 991px) { 

    #footer .groupImage {

        position:fixed;
        left:0;
        bottom:-5vh;
        height:160px;
        width:50vw;
        background: url(./src/group.png) bottom left no-repeat;
        background-size:contain;
        
    }

}

#footer h4 {

    font-size: 18px;
    color: #fff;
    line-height: 2rem;

}

@media (min-width: 768px) {

    #footer h4 {

        font-size: calc(1.375rem + 1.5vw);
        color: #fff;
        line-height: 3rem;

    }

}

#footer ul {

    float:right;
    list-style: none;
    padding:10px 0 10px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
    align-items: center;
    width: 100%;
    
}

@media (min-width: 768px) { 

    #footer ul {

        float: right;
        list-style: none;
        padding: 10px 0 10px 0;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto;

    }

}

#footer ul li {
    
    text-align: right;
    padding: 0 0 0 15px;

}

#footer ul li a {

    text-align: right;
    color: var(--colorGreen);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
    display: inline-block;

}

#footer ul li a:hover {

    color:var(--colorWheGreen);

}

#footer ul li a:hover { 
    
    color:var(--colorPurple); 

}

#footer p,
#footer a {

    color: var(--colorWheCyan);

}

#footer .col-8 a:hover {

    opacity:0.5;

}

.footerLogo {

    background: url('./img/wheLogoV1.svg') right bottom no-repeat;
    background-size: contain;
    text-indent:-3000px;
    margin:30px 0 20px 0px;
    height:40px;
    width:100%;
    display: inline-block;

}

#footer ul.secondFooter {

    padding:0; margin:0;
    
}

#footer ul.secondFooter li a,
#footer ul.secondFooter li
{

    color:var(--colorPurple) !important;
    font-weight:500 !important;
    
}

#footerGrad {

    height: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    display: table;
    background: linear-gradient(270deg, #00E878 10%, #02AEE6 100%);

}

#footerBar {

    position:relative;
    background: var(--colorPurple);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
    border-radius:50px 0 0 0;

}

#footerBar::after {

    background: var(--colorLightblue);
    content:" ";
    top:0;
    left:0;
    width:50px;
    height:50px;
    position: absolute;
    z-index: -10;

}

.footerIcon {

    background:url('./src/medico-footer-logo.svg') center center no-repeat;
    width:50px;
    height:50px;
    background-size: contain;
    margin:20px 0;
    text-indent:-1000px;
    overflow:hidden;

}

.footerText {

    display: flex;
    text-align: right;
    color: var(--colorGreen);
    margin: 20px 0;
    height: 50px;
    flex-direction: row-reverse;
    align-content: center;
    align-items: center;

}

.generalWhiteSection h3 {

    color: var(--colorWheGrey);
    padding: 0 0 30px 0;

}

.whitePad {
    
    padding:5vh 0 5vh 0 !important;

}

.changeBox {

    background: linear-gradient(211.95deg, #00E878 -163.89%, #02AEE6 100%);
    border-radius: 10px;
    padding:30px;
    margin:0 0 25px 0;

}

.changeBox p
{

    color:#fff;
    padding:0;
    margin:0;

}

.changeBox h4
{

    color:#fff;
    padding:20px 0;
    margin:0 0 20px 0;
    width:100%;
    border-bottom:1px solid #D0FFE9;
    float:left;

}

.changeBox.otherBg {

    background: linear-gradient(210.48deg, #00E878 2.85%, #02AEE6 161.49%);

}

@media (min-width: 768px) { 

    .padDown {

        margin-top:80px;

    }

}

@media (min-width: 768px) { 

    .formBg {
        padding:0vh 0;
        background: url('./img/formbg.png') top right no-repeat;
        background-size:contain;

    }

}

@media (min-width: 992px) { 

    .formBg {
        padding:8vh 0;
        background: url('./img/formbg.png') top right no-repeat;
        background-size:contain;

    }

}

#landing-form {

    background: var(--darkBlue);
    border-radius: 10px;
    padding:30px;
    margin:30px;

}

#landing-form h3 {
    
    background: url('./img/underline.svg') top left no-repeat;
    background-size:60px auto;
    padding:30px 0 30px 0;
    margin:20px 0 0 0;
    color:#fff;
    
}

#landing-form ul { 
    
    list-style: none;
    padding:0;
    margin:0;
    
}

#landing-form input {

    width:100%;
    border:none;
    border-radius:10px;
    padding:15px;
    margin:0 0 10px 0;
    color:var(--colorDarkGrey);
    
}

#formSubmit {

    border-radius:50px !important;
    width:auto !important;
    color:var(--colorWheCyan) !important;
    font-size:14px;
    font-weight:600;
    margin:20px 0 0 0 !important;
    background-color:#fff !important;

}

#formSubmit:hover {

    color:#fff !important;
    background-color:var(--colorWheCyan) !important;
    transition: all .2s ease-in-out;

}

hr {
    
    padding: 7vh 0 0 0;
    height: 1px !important;
    background: none;
    border: none;
    border-top: 1px solid #a4e8ff !important;
    margin: 7vh 0 0 0 !important;
    float: left;
    display: block;
    width: 100%;
    opacity: 1;
    
}

.jobListing hr {
    
    padding: 3vh 0 0 0;
    margin: 2.2vh 0 0 0 !important;
    
}

h3.subTitle {

    font-size:20px;
    color:var(--colorWheGreen);

}

.jobApply {
    
    color: var(--darkBlue);
    text-decoration: none;
    padding:25px 0 10px 0 !important;
    display:inline-block;
    background: url('./img/underline.svg') bottom left no-repeat;
    transition: all .2s ease-in-out;
    width:auto;
    font-size:10px;
    text-transform:uppercase;
    font-weight:500;
    
}

.jobApply:after {

    padding:0 0 2px 16px;
    font-size:8px;
    content: "\27A4";

}

.jobApply:hover {

    color: var(--colorWheGreen);
    transition: all .2s ease-in-out;

}

.contactArea span {

    padding:0 10px 0 0;
    font-weight: 600;

}

.mapImage {

    background: url('./img/map.png') center center no-repeat; 
    background-size: cover;
    height:400px;
    width:100%;
    margin:20px 0 0 0;
    display:inline-block;

}

#contact-form {
    margin:30px 0;

}

#contact-form ul { 
    list-style: none;
    padding:0;
    margin:0;
}

#contact-form input,
#contact-form textarea
{

    width:100%;
    border:none;
    border-radius:10px;
    padding:15px;
    margin:0 0 10px 0;
    color:var(--darkBlue);
    background-color: #e7f9ff;
    
}

#contactSubmit {

    border-radius:50px !important;
    width:auto !important;
    color:#fff !important;
    font-size:14px;
    font-weight:600;
    margin:20px 0 0 0 !important;
    background-color:var(--colorLightBlue) !important;
    padding:15px;
    border:none;

}

#contactSubmit:hover {

    color:#fff !important;
    background-color:var(--colorWheCyan) !important;
    transition: all .2s ease-in-out;

}

#apply-form { 
    padding-top:40px; 
    border-top:1px solid #dcf3ff; 
    margin-top:40px;
}

#apply-form label {

    color: var(--colorWheCyan);

} 

#apply-form input,
#apply-form textarea
{

    box-shadow: 2px 2px 18px rgba(0, 0, 0, 0.04);
    transition: all .2s ease-in-out;

}

#apply-form input:focus,
#apply-form textarea:focus
{

    box-shadow: 2px 2px 18px rgba(0, 171, 255, 0.09);
    transition: all .2s ease-in-out;

}

#fg-form {

    color:#fff;
    padding: 20px;
    background: #0417389e;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

}

#sp #fg-form {

    color:#fff;
    padding: 20px;
    background: #182f57;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin:50px 0 0 0

}

#sp #fg-form h2 {

    font-size:20px;
    padding:0;
    
}

.generalBlueSection {

    background: var(--colorLightblue);
    padding: 5vh 0 5vh 0;
    border-radius:50px 0 50px 0;
    position: relative;
    

}

.generalBlueSection::after {

    background: #13245f;
    content:" ";
    top:0;
    left:0;
    width:50px;
    height:50px;
    position: absolute;
    z-index: -10;

}

@media (min-width: 768px) { 

    .generalBlueSection {
  
        padding: 10vh 0 10vh 0;

    }

}

.generalBlueSection h4,
#hp .generalWhiteSection h4
{

    color: var(--colorBlue);
    padding:0 0 30px 0;
    line-height: 2.2rem;
    background: -webkit-linear-gradient(190deg, var(--colorMidBlue) 2.85%, var(--colorWheCyan) 161.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

@media (min-width: 768px) { 

    .generalBlueSection h4,
    #hp .generalWhiteSection h4 {

        line-height: 3rem;
        font-size: 2.5rem;
    
    }

}

.subSideNav,
.subSideNav li {

    padding:0;
    margin:0;
    width:100%;
    display:flex;
    flex-direction: column;

}

.subSideNav {

    list-style:none !important;
    width:100%;
    
}

@media (min-width: 768px) { 

    .subSideNav {
    
        list-style:none !important;
        width:90%;
        
    }
    
}

.subSideNav li a
{

    padding:20px 0;
    margin:0;
    border-bottom: 1px solid var(--colorLightBlue);
    width:100%;
    text-decoration: none;
    color: #00233d;}
    
}

.subSideNav li:first-child a
{

     padding:0 0 20px 0;
     
}

.subSideNav li:last-child a
{
     
    border-bottom:none;

}

.jobListGrid {

  width:100%;
  display: grid;
  grid-template-columns: 1;
  gap:20px;
  display: flex;
  flex-direction: column;

}

@media (min-width: 992px) { 

  .jobListGrid {

    display: grid;
    grid-template-columns: 48% 48%;
    grid-template-rows: 1fr;
    gap: 20px 20px;
    grid-template-areas:
      ". .";

  }

}

@media (min-width: 1400px) { 

  .jobListGrid {

    display: grid;
    grid-template-columns: 31.5% 31.5% 31%;
    grid-template-rows: 1fr;
    gap: 30px;
    grid-template-areas:
      ". . .";

  }

}

.jobListGrid a {

  padding: 20px 20px 10px 20px;
  border-radius: 5px;
  background: #cffbe1;
  min-width:200px;

}

.jobListGrid a:hover {

  padding:20px 20px 10px 20px;
  background: #e0ffec;

}

.jobListGrid h5 {

    text-align: left;
    width: 100% !important;
    float: left;
    display: inline-block;
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    color: var(--MedicoTDarkGreen) !important;

}

.jobListGrid p {
    
    width: 100% !important;
    float: left;
    display: inline-block;
    font-size: 14px;
    color: var(--colorPurple);
    padding: 0px 0 0 0;
    line-height:22px;

}

.jobListGrid p.jobDetail {

    padding: 5px 15px;
    margin: 0 10px 10px 0;
    float: left;
    color:green;
    width: auto !important;
    background: #bdebc3; 
    border-radius:50px;
    font-size:14px;

}

.jobListGrid p:last-child {
    
    font-weight:300;
    
}


@media (min-width: 576px) { 

    .jobListGrid a {
    
        padding: 30px 30px 20px 30px;
    
    }
  
    .jobListGrid a:hover {
    
        padding: 30px 30px 20px 30px;
    
    }
    
    .jobListGrid h5 {
    
        font-size: 22px;
        padding-bottom: 10px;
        margin-bottom: 5px;
    
    }
    
    .jobListGrid p {
    
        padding: 10px 0 0 0;
    
    }

}

@media (min-width: 768px) { 
  
    .jobListGrid p {
        
        font-size:16px;
        line-height:24px;
        
    }
  
}

.jobListGrid a,
.jobListGrid a:hover,
.sideNavLink,
.sideNavLink:hover,
.sideNavLinkGreen,
.sideNavLinkGreen:hover
 {

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

.jobPage p {

    padding:0 0 30px 0;
    font-weight:200;
    
}

.jobPage p:nth-child(4){

    padding:0 0 1px 0 !important;
    
}

.jobPage.jobListing p:nth-child(4){

   padding: 5px 15px !important;
    
}

.jobButton {
    
    background: #30de8c;
    padding:12px 0 !important;
    margin:0 0 10px 0;
    border-radius:6px;
    text-align:center;
    font-weight:400 !important;
    transition: opacity 1s;

}

.allJobs {

    background: #30de8c;
    padding:12px 0 !important;
    margin:30px 0 40px 0;
    border-radius:6px;
    text-align:center;
    font-weight:400 !important;
    float:left;
    display:block;
    width:100%;
    text-decoration:none;
    color: var(--colorPurple);
    
}

th {
    
    font-weight:300;
    
}

thead th {
    
    font-weight:600;
    color:purple;
    
}

.table {

    font-size:18px;
    
}

#fg-form-2 {

    padding:20px;
    border-radius:20px;
    background: #f9fafc;
    
}

.jobListGrid a:hover .jobButton {
    
    background: #30de8c url(./src/buttonBG.svg) center center no-repeat;
    background-size:cover;
    padding:12px 0 !important;
    margin:0 0 10px 0;
    border-radius:6px;
    text-align:center;
    font-weight:400 !important;
    transition: opacity 1s;

}

#fg-form .btn-success,
#fg-form-2 .btn-success

{

    background-color:#30de8c !important; 
    border:1px solid #30de8c;
    border-radius:30px;
    padding:10px 25px;
    text-shadow: 0px 1px 4px #0000003b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;

}

ul.listDownload {

    list-style:none;
    padding:0;
    
}

ul.listDownload a {

    padding: 15px 25px;
    margin: 0 10px 10px 0;
    float: left;
    color: green;
    width: auto !important;
    background: #bdebc3;
    border-radius: 50px;
    font-size: 16px;
    
}

ul.listDownload a:hover {

    background: #89ce92;
    
}

/* JOB TOGGLE */


.subNavToggle {background:var(--colorGreen) !important;border-radius:40px;padding:10px;float:left;display:block;width: 100%;margin: 0 0% 30px 0%;text-align:center;color:#fff;font-size:14px;text-transform:uppercase;font-weight:600;letter-spacing:4px;border:2px solid var(--colorGreen);text-decoration: none;transition: none;}

.subNavToggle::after {
  content: '▼';
  margin:0 0 0 10px

}

.subNavToggle.bOpen {background:#fff !important;border:2px solid var(--colorGreen);color:var(--colorGreen) !important;border-radius: 20px 20px 0 0;}

.subNavToggle.bOpen::after {
  content: '▲';
  margin:0 0 0 10px

}

.subNavToggle:hover {

  color:#fff5d6;
  background:#ffc107;
  
}

@media (min-width: 768px) { 

  .subNavToggle { 

    display:none;

  }

}

.sideNavWrapper {display: none;float:left;margin:0;border:var(--colorGreen)  2px solid;padding:20px;border-radius: 0px 0px 20px 20px;position:relative;top:-32px;background:#fff;width: 100%;}

@media (min-width: 768px) { 

  .sideNavWrapper {
  
    display: none;
    float:left;
    margin:0 10px;
    border:none;
    padding:0px;
    border-radius:auto;
    position:relative;
    top:auto;
  
  }

}

@media (min-width: 768px) { 

  .sideNavWrapper {float: left;display:block !important;width: 100%;}

}

/* JOB SIDE NAV */


.sideNav {

  list-style:none;
  padding:0 0 20px 0 !important;
  margin:0 !important;
  
}

.sideNav .groupHeader:first-child {

  margin:0 !important;
  
}

@media (min-width: 768px) { 

  .sideNav .groupHeader:first-child {

    margin:20px 0 0px 0 !important;
    
  }
  
}

.sideNav li {

  padding:3px 0;
  margin:0;

}

.sideNav li a,
.sideNav li {

  color:var(--MedicoTDarkGreen);
  width: 100%;

}

@media (min-width: 768px) { 

    .sideNav li a,
  .sideNav li {
  
    color:var(--MedicoTDarkGreen);
    width: 95%;
  
  }

}


.sideNav li a.selectedNav {

  color:var(--MedicoTLighterGreen);

}

.sub-side-menu {

  list-style:none;padding: 10px 0 0px 10px !important;
  margin:0 !important;}

.sub-side-menu li a {

  color:var(--MedicoTLightGreen);

}

.sub-side-menu li a:hover,
.sub-side-menu li.selected a {

  color:var(--MedicoTLighterGreen);

}

.sub-side-menu li {

  padding:4px 0 !important;

}

.removesearch {
  background: #daf2e3;
  margin: 5px 0 5px 0;
  float:
  left;
  padding: 10px 15px;
  display: inline-flex;
  border-radius: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7db878 !important;
  font-weight: 600;
  flex-direction: row;
  align-items: center;
  }

.removesearch::before {

  content: '✕';
  font-weight:800 !important;
  padding:0 10px 0 0;
  
}

.groupHeader {

  padding:20px 0 0 0 !important;
  border-top:1px solid #D6EADE;
  margin:20px 0 0 0 !important;
  width:80%;
  box-sizing: border-box;
  float: left;

}

.sideNav .groupHeader:nth-child(3) {

  margin:10px 0 0 0  !important;
  padding:0 0 0 0 !important;
  
}

@media (min-width: 768px) { 
  
  .sideNav .groupHeader:nth-child(3) {
  
    margin:20px 0 0 0 !important;
    padding:10px 0 0 0 !important;
    
  }

}

@media (min-width: 992px) { 

  .sub-side-menu li {

    padding:5px 0 !important;
  
  }

  .groupHeader {

    width:90%;
  
  }
  
}

/* MOBILE BUTTONS SHOW AND HIDE */


.mobButtons {

  padding: 10px 0 !important;
  margin: 0 !important;
  list-style: none;
  float: left;
  width:100%;

}

@media (min-width: 768px) { 
    
  .mobButtons {

    display: none;

  }

}

.mobButtons li {

  padding:0;
  margin:0;
  width:100%;

}

.mobButtons li a {

  width:100%;

}

.deskOnly { display:none; }

@media (min-width: 768px) { 

  .deskOnly { 
    
    display:inline; 
    float: left;

  }

}

/* JOB DEATILS */

.jobDetails ul {

    list-style:none;
    padding:0; 
    margin:0;
    width:100%;
    display:inline-block;

    
}

.jobDetails li  {
    padding: 5px 15px;
    margin: 0 10px 10px 0;
    float: left;
    color: green;
    width: auto !important;
    background: #bdebc3;
    border-radius: 50px;
    font-size: 14px;
}