@charset "utf-8";
/* CSS Document */
/* Reset default styles */


/*  Menu Buttons  */
:root {
    --main-bg: #fff;
    --menu-bg: #D9F14E;
    --menu-font-color: #143359;
    --menu-font-hover: #fff;
    --menu-border: #005A8C;
    --menu-bg-selected: #143359;
    --menu-bg-hover: #143359;
	
}

.background-containernew {
	
  width: 100%;
  height: 1510px;
  background-image: url('https://www.oriontalent.com/mckesson/images/background_ribbon-2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1440px; /* Prevent the container from expanding beyond 1440px */
  margin: 0 auto; /* Center the container horizontally */
	
	
}


.menu-sub {
	font-family: "Libre Franklin", sans-serif;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
    width: 70rem;
    max-width: 100%;
}

.btn-menu {
    font-family: "Libre Franklin", sans-serif;
    position: relative;
    cursor: pointer;
    background: var(--menu-bg);
    border: none;
    padding: 1.5rem;
    color: var(--menu-font-color);
    font-weight: 700;
	font-size: 1.2rem;
    border-top: 0.1rem solid var(--menu-border);
    border-bottom: 0.1rem solid var(--menu-border);
    transition: background 1s;
	
}

.btn-menu:hover {
    background: var(--menu-bg-hover);
    color: var(--menu-font-hover);
}

.btn-menu:focus {
    outline: none;
    box-shadow: none;
}

.selected {
    background: var(--menu-bg-selected);
    color: var(--menu-font-hover);
}

.selected::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 5.6rem;
    width: 0.5rem;
}

/*  End Menu Buttons  */



.mck-p {
	color: #143359;
    line-height: 150%;
	font-family: arial, helvetica, sans-serif;
font-size: 16px;
font-weight: 400;
}

.mck-h1 {
 font-family: arial, helvetica, sans-serif;
 color: rgb(20, 51, 89);
 font-size: 40.23px;
 font-weight: 600;
 height: 45.8594px;
 letter-spacing: -0.4px;
 line-height: 45.8622px;
margin-bottom: 30px;
}


.mck-h3 {
    color: #005a8c;
    line-height: 30.8px;
	font-family: arial, helvetica, sans-serif;
	font-weight: 700;
	font-size: 22px;
}

.mck-blue {
	
	background-color: #005a8c;
}
.mck-blue2 {
	
	background-color: #143359;
}


.mckbg {
	margin-left: 65px;
	margin-top: 150px;
	
}
.mckbg2 {
	margin-left: 65px;
	margin-top: 80px;
	
}
.mck-gray {
	
	background-color: #f4f4f4;
}

.clean-button-mck, a.clean-button-mck {
	font-family: arial, helvetica, sans-serif;
	margin: .75em 0;
	background-color: #D9F14E;
	color: #143359;	text-decoration:none;
	border: 1px solid #143359;	
	border-radius: 8px;
	font-weight: 700;
	font-size: 18px;
}
.clean-button-mck:hover, .clean-button-mck:focus {
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0,.05)), to(rgba(0,0,0,.1)));
	background-image: -webkit-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: -moz-linear-gradient(top, rgba(0,0,0,.05) 0, rgba(0,0,0,.1));
	background-image: -ms-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: -o-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-color:#3aaee0;
	text-decoration: none;
	border: 1px solid #143359;
	color: #fff; 
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}

.card-container {
    perspective: 1000px;
	padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
     width: 100%;
    height: 300px;
    max-height: 300px;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
	flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    text-align: center;
}

.card-front {
    background-color: #fff;
}

.card-back {
    background-color: #fff;
    transform: rotateY(180deg);
}

.card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.card p {
	padding-top: 10px;
    text-align: center;
    font-size: 16px;
    color: #333;
}
.card p.small  {
	padding-top: 10px;
    text-align: center;
    font-size: 15px;
    color: #333;
}
.card quote {
    text-align: center;
    font-size: 16px;
	font-weight: bold;
    color: #333;
}
.card h2 {
    text-align: center;
    font-size: 18px;
    color: #333;
}
.card h3 {
    text-align: center;
    font-size: 14px;
    color: #333;
}


/* Slideshow container */
.slideshow-container {
    max-width: 900px; /* default was 1000px */
    position: relative;
    margin: auto;
	padding-top: 20px;
}
/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 86%; /* default was 50% */
    width: auto;
    margin-top: -18px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 2px 0;
    user-select: none;
}

/* Position the "previous button" to the left */
.prev {
    left: 0;
    border-radius: 2px 0 0 2px;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 2px 0 0 2px;
}

/* On hover, add a black background color with a little bit of transparency */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
}

/* Number text (1/3 etc.) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #000;
    border-radius: 50%;
    display: inline-block;
	text-decoration: none;
}

.dot:active, .dot:hover, .dot:focus, .dot:enabled {
    background-color: #222;
    margin: 0 2px;
	text-decoration: none;
	border: 1px solid #000;
}
.dot:after {
	text-decoration: none;
	color: transparent;
	background-color: transparent;
}




/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 4.5s;
}

@keyframes fade {
    from { opacity: 1; }
    to { opacity: 1; }
}


 .iframe-container1 {
    width: 100%;
  }

  .iframe-container1 iframe {
    width: 100%;
    border: none;
    height: 2500px; /* Default height for desktop */
  }

  @media (max-width: 1024px) {
    .iframe-container1 iframe {
      height: 2500px; /* Tablet height */
    }
  }

  @media (max-width: 768px) {
    .iframe-container1 iframe {
      height: 2500px; /* Mobile height */
    }
  }

.form-mck-copy{
	width: 30%;
	padding: 14% 4%;
	margin: auto;
	float: left;
	text-align: left;
	vertical-align: middle;
	background-image: url(/veteran-employer/mckesson/form-color.jpg);
    background-repeat: no-repeat;
    background-position: 0px center;
}


@media screen and (min-width: 10px) and (max-width: 989px) {
	
	
	.form-mck-copy{
	width: 96%;
	padding: 2em 2%;
	margin: auto;
	float: none;
	text-align: left;
	vertical-align: middle;
	background-image: url(/veteran-employer/mckesson/form-color.jpg);
	background-color: #000;
    background-repeat: no-repeat;
	background-position: center;
}
	

	
.mckbg {
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	
}
	
.mckbg2 {
	margin-left: 0px;
	margin-top: 0px;
	
}	
	
	
	
	
.background-containernew {
	
  background-image: url('');
	width: 100%;
  height: 100%;
  
	
}
}



	
	
	
	
	
	
	