@Theme Name: Medtronic 2024
@Description: This site was built by Central States Marketing. For more information about the site or this custom WordPress theme, you can contact Central States Marketing at: info@csm.marketing or call us at: 309-693-2345.
@Author: Central States Marketing
@Author URI: http://www.centralstatesmarketing.com/
@Version: 1.0
@Date: September, 2024
@charset "utf-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root{
	--blue: #0b0950;
	--royal: #1111b9;
	--gray: #b1b1b3;
	--ltgray: #ebebeb;
	--dkgray: #707070;
	--black: #000000; 
}

html, body{
	margin:0;
	padding:0;
	font-family: "Montserrat", sans-serif;
	 font-style: normal;
	  font-optical-sizing: auto;
	  font-weight: 400;
}
*{
	box-sizing: border-box;
}
a, :after, :before{
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
img{display:block;max-width: 100%;height:auto;}

.grid{display: grid;}
.one-third{}

.alignright{
                margin:0 0 2em 2em;
                padding:0px;
                float:right;
                border:0;}

.alignleft{
                margin:0 2em 2em 0;
                padding:0px;
                float:left;
                border:0;}

.aligncenter{
                display:block;
                margin-left:auto;
                margin-right:auto;
                padding:0px;
                border:0;}

/*gutenberg styles*/
.has-black-background-color{background-color:#000;}
.has-black-color{color:#000;}
.has-white-background-color{background-color:#fff;}
.has-white-color{color:#fff;}

/*CONTENT STYLES*/
.content h1{color:var(--royal);}
.content h2{color:var(--royal);}
.content h3{color:var(--blue);}
.content h4{color:var(--blue);}
.content h5{color:var(--dkgray);}
.content h6{color:var(--dkgray);}

.content a{text-decoration:underline;color:var(--black);}
.content a:hover{color:var(--royal);}

.content .button{
	background:var(--gray);
	color:var(--black);
	padding:10px 20px;
	display:inline-block;
	margin:10px 0;
	text-decoration: none;
	-webkit-appearance:none;}
.content .button:hover{font-weight: bold;color:white;}

.content .padded{padding:50px 5%;background:white;}

/*FOOTER STYLES*/
footer{
	display: grid;
	grid-template-columns: 1fr auto;
	background:var(--blue);
	color:white; 
	padding:50px 5%;}
.footer-logo{
	display: block;
	background:url("images/logo-medtronic-white.svg") no-repeat;
	background-size: contain;
	background-position: center;
	width:100%;height:50px;
	max-width: 250px;
}
footer .copyright{
	grid-area: 2 / 1 / 3 / 3;
	text-align: right;
	color:white;
	font-size:0.8em;
	border-top:3px solid white;
	padding:10px 0;
	margin-top:50px;
}
footer .footer-nav{
	padding:20px 0;
}
footer .footer-nav ul{
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 50px;
	font-size: 0.8em;
	margin:0;padding:0;
}
footer .footer-nav ul a{
	color:white;
	text-decoration: none;
	display: block;
	padding:5px 0;
	text-align: right;
}
footer .footer-nav ul a:hover{text-decoration: underline;}
footer .footer-nav ul ul{display: none;}

/****************
PAGINATION STYLES
*****************/
.pagination {
clear:both;
padding:20px 0;
position:relative;
font-size:11px;
line-height:13px;
}
 
.pagination span, .pagination a {
display:block;
float:left;
margin: 2px 2px 2px 0;
padding:6px 9px 5px 9px;
text-decoration:none;
width:auto;
color:#666 !important;
background: #d5d5d5;
}
 
.pagination a:hover{
color:#fff !important;
background: #000;
}
.pagination span{background:#666;color:#fff !important;}
.pagination .current{
padding:6px 9px 5px 9px;
background: #000;
color:#fff !important;
}

/*RESPONSIVE STYLES*/
@media screen and (max-width:1000px){}
@media screen and (max-width:700px){
	.alignright, .alignleft, .aligncenter{
		display:block;
                margin:10px auto;
                padding:0px;
                border:0;
		float:none;}
	footer{display: block;grid-template-columns: repeat(1, 1fr);}
	footer .footer-logo{width:100%;}
	footer .footer-nav ul a{text-align: left;}
}