html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address,big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul,li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption,footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}article, aside, details, figcaption, figure,footer,header, hgroup, menu, nav, section {display: block;}body {line-height: 1;}ol, ul{list-style: none;}blockquote, q {quotes: none;}blockquote:before, blockquote:after,q:before, q:after {content: "";content: none;}table {border-collapse: collapse;border-spacing: 0;}


button{
	border: none;
	outline: none;
	
}
@font-face {
  font-family: robotoReg;
  src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: robotoMed;
  src: url(../fonts/Roboto-Medium.ttf);
}


@font-face {
  font-family: montserratMedium;
  src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
  font-family: montserratReg;
  src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: montserratSemi;
  src: url(../fonts/Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: Montserrat-Bold;
  src: url(../fonts/Montserrat-Bold.ttf);
}

html, body{
	margin: 0;
    height: 100%;
}

body{
	display: grid;
    grid-gap: 0px;
    grid-template-columns: 1fr;
    grid-template-areas: "main" "footer";
    grid-template-rows: 2fr;
	font-family: robotoMed;
	background-color: #eef3f7;
	font-size: 1.25rem;
	line-height: 1.3em;
	overflow-x: hidden;
}

h3{
	margin-bottom: .25em;
	font-size: 1.5rem;
	font-family: Montserrat-Bold;
}

p{
	line-height: 1.3em;
}

b{
	font-weight: 600;
}

.p-small{
	font-size: .85rem;
	
}

.centered{
	text-align: center;
}

.white{
	color: #fff;
}

header{
	width: 100%;
	background-color: #fff;
}

.p-centered-large{
	text-align: center;
	font-size: 1.5rem;
}

.space{
	height: 4em;
}

.space-small{
	height: 1em;
}

#header-inner{
	margin: 0 auto;
	padding: 1em 2em;
	width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	box-sizing: border-box;
	position: relative;
	z-index: 900;
}

#logo{
	width: 200px;
	display: flex;
	align-items: center;
}

#logo a{
	display: inline-block;
}

#logo img{
	width: 100%;
	display: block;
}

#nav{
	display: flex;
	align-items: center;

}

.btn-dropdown{
	padding: .85em 1.25em;
	display: block;
	text-decoration: none;
	font-family: robotoMed;
	color: #333;
	font-size: 1.15rem;
	position: relative;
}

.dropdown{
    overflow: hidden;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: #eef3f7;
	box-shadow: 0px 2px 6px 1px rgba(0,0,0,.1);
    z-index: 999;
}


.dropdown-content a{
    padding: .85em 1.25em;
	color: #333;
    z-index: 999;
}

.dropdown-content .menu-item:first-child{
	border-bottom: 1px solid #e1e6eb;
}

.dropdown-content .menu-item:hover{
	transition: all .25s;
	background-color: #0976B4;
}

.btn-dropdown::after{
	left: 1em;
	bottom: 15px;
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #09B584;
}

.btn-dropdown:hover::after{
	transition: width .5s;
	width: calc(100% - 2em);
}

.btn-dropdown:hover{
	transition: all .3s;
	background-color: #0976B4;
	color: #fff;
}

.menu-item{
	padding: .85em 1.25em;
	text-decoration: none;
	font-family: robotoMed;
	color: #333;
	font-size: 1.15rem;
	position: relative;
}

.menu-item::after{
	left: 1em;
	bottom: 15px;
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #09B584;
}

.menu-item:hover::after{
	transition: width .5s;
	width: calc(100% - 2em);
}

.menu-item:hover{
	transition: all .3s;
	background-color: #0976B4;
	color: #fff;
}

.menu-button{
	padding: .85em 1.25em;
	margin-left: 1em;
	position: relative;
	text-decoration: none;
	background-color: #0976B4;
	color: #fff;
	font-size: 1.15rem;
	border-radius: .25em;
	outline: none;
	border: none;
}

.menu-button::after{
	left: 1em;
	bottom: 13px;
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #09B584;
}

.menu-button:hover::after{
	transition: width .5s;
	width: calc(100% - 2em);
}

.menu-button:hover{
	transition: all .3s;
	background-color: #A1C2DC;
	color: #fff;
	cursor: pointer;
}

.btn-menu{
	display: none;
}

#index-header{
	height: calc(100vh - 97.25px);
	width: 100%;
	background-image: url('../img/heading.png');
	background-position: 0 -100px;
	background-size: cover;
	position: relative;
}

.index-header-overlay{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .3);
}

#index-header-inner{
	padding: 0 2em;
	margin: 0 auto;
    width: 100%;
	height: 100%;
    box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align: left;
	position: relative;
	z-index: 1;
}

#index-text{
	margin-top: 2em;
	max-width: 800px;
	color: #fff;
	font-size: 1.25rem;
	text-align: center;
	overflow: hidden;
	z-index: 10;
}

#index-title{
	margin-bottom: .25em;
	font-family: Montserrat-Bold;
	font-size: 2.75rem;
	color: #fff;
	line-height: 1.25em;
	opacity: 0;
	animation: fadetitle .5s linear forwards;
	transform: translateY(-50px);
}

@keyframes fadetitle{
	0%{
		transform: translateY(-50px);
  	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes fadetext{
	0% {
		opacity: 0;
  	}
	100%{
		opacity: 1;
	}
}

#index-p{
	opacity: 0;
	animation: fadetext .8s linear forwards;
	animation-delay: .5s;
}

.index-header-img{
	align-self: flex-end;
	width: 50%;
}

.animated-logo{
	top: 10vh;
	left: -10px;
	position: absolute;
	height: 50vh;
	overflow:visible;
	animation: zoom 2.5s linear forwards;
}

@keyframes zoom{
 	50%{
    	transform: scale(1.1);
		transform: rotate(360deg);
	  	opacity: 1;
  	}
	
	 80%{
    	transform: scale(1.1);
		transform: rotate(360deg);
	  	opacity: 1;
  	}
	
	100%{
		transform: scale(1.1);
		transform: rotate(360deg);
		opacity: 0;
		display: none;
	}
}

.bottom {
	stroke-dasharray: 150;
  	stroke-dashoffset: 150;
  	animation: drawbottom 6s linear forwards;
	display: none;
}

@keyframes drawbottom {
  to {
    stroke-dashoffset: 0;
  }
}

.right{
	stroke-dasharray: 150;
  	stroke-dashoffset: 150;
  	animation: drawright 6s linear forwards;
	display: none;
}

@keyframes drawright {
  to {
    stroke-dashoffset: 0;
  }
}

.left{
	stroke-dasharray: 150;
  	stroke-dashoffset: 150;
  	animation: drawleft 6s linear forwards;
	display: none;
	
}

@keyframes drawleft{
  to {
    stroke-dashoffset: 0;
  }
}

#buttons-wrapper{
	margin-top: 1em;
	display: flex;
	justify-content: flex-start;
	opacity: 0;
	animation: fadetext 1s linear forwards;
	animation-delay: .75s;
	transform: translateY(100px);
}

.buttons-wrapper{
	margin-top: 1em;
}

.buttons-wrapper-center{
	margin-top: 1em;
	display: flex;
	justify-content: center;
}

.btn-dark{
	text-decoration: none;
	background-color: #221F1F;
	color: #fff;
	border-radius: .25em;
	cursor: pointer;
	position: relative;
}

.btn-dark:after{
	content: "";
	height: 1px;
	width: 0%;
	position: absolute;
	bottom: 14px;
	left: 12.5%;
	background-color: #09B584;
}

.btn-dark a{
	padding: .75em 1em;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-size: 1.15rem;
	line-height: 1em;
}

.btn-dark:hover{
	transition: background-color .3s;
	background-color: #fff;
}

.btn-dark:hover a{
	transition: color .3s;
	color: #000;
}

.btn-dark:hover:after {
	transition: width .3s;
	width: 75%;
}

.btn-green{
	text-decoration: none;
	background-color: #09B584;
	color: #fff;
	border-radius: .25em;
	cursor: pointer;
	position: relative;
	display: inline-block;
}

#btn-green-next, #btn-green-prev{
	padding: .75em 1em;
	font-size: 1rem;
	text-decoration: none;
	background-color: #09B584;
	color: #fff;
	border-radius: .25em;
	cursor: pointer;
	position: relative;
	display: inline-block;
}

#btn-green-next:after, #btn-green-prev:after{
	content: "";
	height: 1px;
	width: 0%;
	position: absolute;
	bottom: 14px;
	left: 12.5%;
	background-color: #fff;
}

.btn-green:after{
	content: "";
	height: 1px;
	width: 0%;
	position: absolute;
	bottom: 14px;
	left: 12.5%;
	background-color: #fff;
}

.btn-green a{
	padding: .75em 1em;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-size: 1.15rem;
	line-height: 1em;
}

.btn-green:hover{
	transition: background-color .3s;
	background-color: #087C58;
}

.btn-green:hover:after{
	transition: width .3s;
	width: 75%;
}


.btn-blue{
	text-decoration: none;
	background-color: #0976B4;
	color: #fff;
	border-radius: .25em;
	cursor: pointer;
}

.btn-blue a{
	padding: .75em 1em;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1em;
}

.btn-blue:hover{
	transition: background-color .3s;
    background-color: rgba(9, 118, 180, .5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
}

.btn-outline{
	margin-left: 1em;
	border: 1px solid  #fff;
	border-radius: .25em;
}

.btn-outline:hover{
	transition: background-color .3s;
    background-color: rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
	outline: none;
}

.btn-outline a{
	padding: .75em 1em;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1em;
}

#index-header-img{
	height: 100%;
	width: 60%;
	display: flex;
	align-items: flex-end;
}

#index-header-img img{
	width: 100%;
}

.main-wrapper{
	grid-area: main;
}

.section-wrapper{
	padding: 2em 0;
	width: 100%;
}

.wrapper-blue{
	background-image: url('../img/backgroundgradient.png');
	background-size: cover;
	box-sizing: border-box;
}

.wrapper-white{
	background-color: #fff;
}

.wrapper-solidblue{
	padding: 2em 0;
	background-color: #0976B4;
}

.wrapper-offwhite{
	padding: 2em 0;
	background-color: #eef3f7;
	box-sizing: border-box;
}



.list-basic{
	margin-top: .5em;
	list-style-type: disc;
	list-style: disc;
	list-style-position: inside;
}

.list-item-basic{
	margin-bottom: .5em;
	line-height: 1.25rem;
}

#list-items{
	margin-top: 1em;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
}


#list-items-center{
	margin-top: 1em;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5em;
}


.list-item{
	padding: 2em 1em;
	width: calc((100%/3) - 1.1em);
	text-align: center;
	font-size: 1.15rem;
	line-height: 1.25rem;
	background-color: #fff;
	box-sizing: border-box;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 2px 4px 2px rgba(0,0,0,.2);
}

.list-item{
	font-family: Montserrat-Bold;
	text-align: center;
}

.list-icon{
	margin-bottom: 1em;
	width: 100%;
	text-align: center;
}

.list-icon img{
	height: 64px;
}

.section-inner{
	padding: 2em 0;
	margin: 0 auto;
	width: 1200px;
	box-sizing: border-box;
}

.text-wrapper{
	padding: 2em;
	background-color: #fff;
	box-shadow: 0px 2px 4px 2px rgba(0,0,0,.2);
}

.title-centered{
	margin: 0 0 .5em 0;
	width: 100%;
	font-family: Montserrat-Bold;
	font-size: 2rem;
	line-height: 1.25em;
	color: #0976B4;
	text-align: center;
}

.title-centered-white{
	margin: 0 0 .5em 0;
	width: 100%;
	font-family: Montserrat-Bold;
	font-size: 2rem;
	line-height: 1.25em;
	color: #fff;
	text-align: center;
}

/*CORRECTIONAL MODEL*/

#correctional-model{
	min-height: 660px;
	margin: 0 auto;
}

.venn-wrapper{
	position: relative;
}

.venn{
	height: 300px;
	width: 300px;
	background-color: rgba(164,194,220,.3);
	border-radius: 200px;
	display: flex;
}

#venn1{
	position: absolute;
	top: 150px;
	left: calc((50% - 150px) - 350px);
	background-color: rgba(9,118,180,.3);
	transition: all .5s;
	align-items: center;
	justify-content: flex-start;
}
#venn2{
	padding-top: 1.5em;
	position: absolute;
	top: 40px;
	left: calc(50% - 150px);
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
}
#venn3{
	position: absolute;
	top: 150px;
	left: calc((50% - 150px) + 125px);
	align-items: center;
	justify-content: flex-end;
}
#venn4{
	padding-bottom: 1.5em;
	position: absolute;
	top: 280px;
	left: calc(50% - 150px);
	align-items: flex-end;
	justify-content: center;
	box-sizing: border-box;
}

.venn-text{
	font-size: 1.5rem;
	padding: 1em;
}

.benefits{
	margin-top: 1em;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.benefit{
	width: calc((100%/3) - .75em);
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 2px 4px 2px rgba(0,0,0,.2);
}

.benefit:hover{
	outline: 4px solid #09B584;
	border-bottom: 0;
}

.benefit-title{
	padding: 2em 1em;
	width: 100%;
	position: relative;
	font-family: Montserrat-Bold;
	font-size: 1.5rem;
	line-height: 1.15em;
	background-color: #fff;
	text-align: center;
	box-sizing: border-box;
	border-radius: 5px;
	transition: opacity .5s;
	z-index: 2;    
}

.benefit-icon{
	margin-bottom: .5em;
	width: 100%;
}

.benefit-title img{
	height: 85px;
}

.benefit-text{
	margin: auto;
	padding: 1em;
	width: 100%; 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	text-align: center;
	border-radius: 5px;
	z-index: 1;
	box-sizing: border-box;
	overflow: hidden;
}

.icons-three-column{
	margin-top: 1em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 1em;
}

.icon-wrapper{
	padding: 1em 1em 0 1em;
	min-height: 200px;
	width: calc((100%/3) - 1em);
	text-align: center;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 5px;
	border-bottom: 5px solid #221F1F;
	box-shadow: 0px 2px 4px 2px rgba(0,0,0,.2);
}

.icon-img{
	padding: 2em;
	width: auto;
	position: relative;
	height: 100px;
	background-color: none;
	border-radius: 5px 5px 0 0;
}

.icon-img::after{
	position: absolute;
	left: 35%;
	bottom: 0;
    content: "";
    height: 3px;
    width: 30%;
    background-color: #09B584;
}

.icon-wrapper:hover .icon-img::after{
	transition: all .2s;
	left: 25%;
	width: 50%;
}

.icon-img img{
	height: 100%;
}

.icon-text{
	padding: 1em 1em 2em 1em; 
	font-size: 1.25rem;
	font-family: montserratSemi;
	line-height: 1.3em;
}

.section-two-column{
	margin: 0 auto;
	width: 1200px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	overflow: hidden;
}

/*INDEX*/

#whatisoptics .img-column img{
	margin-left: -500px;
}

#whatisoptics .text-column{
	opacity: 0;
}

.img-column{
	min-width: 450px;
}
 
.img-column img{
	width: 100%;
	height: 100%;
	display: block;
}

.title-left{
	margin: 0 0 .25em 0;
	width: 100%;
	font-family: Montserrat-Bold;
	font-size: 2rem; 
	line-height: 1.25em;
	color: #0976B4;
	text-align: left;
}

.title-left-white{
	margin: 0 0 .25em 0;
	width: 100%;
	font-family: Montserrat-Bold;
	font-size: 2rem;
	line-height: 1.25em;
	color: #fff;
	text-align: left;
}

.divider{
	margin-left: 2em;
	align-self: stretch;
	min-width: 4px;
	background-color: #09B584;
}

.text-column{
	padding: 2em;
	display: flex;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.column-text{
	font-size: 1.25rem;
}

#ourteam{
	margin: 1em auto 0 auto;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
} 

.team-member{
	position: relative;
	width: calc((100%/3) - 1em);
	margin-bottom: 1em;
	border-radius: 5px;
	box-shadow: 0px 2px 4px 2px rgba(0,0,0,.2);
	overflow: hidden;
}

.team-member:hover .member-img img{
	transition: transform .5s;
	transform: scale(1.085);
}

.member-img{
	width: 100%;
	max-height: 379.98px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.member-img img{
	width: 100%;
	display: block;
}

.member-text-column{
	position: absolute;
	bottom: 0;
	padding: 1em;
	width: 100%;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	background-color: rgba(0, 0, 0, .3);
	-webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
	box-sizing: border-box;
}

.member-name{
	width: 100%;
	font-family: montserratSemi;
	font-size: 1.5rem;
	text-align: center;
}

.member-title{
	max-height: 0;
	width: 100%;
	font-family: montserratReg;
	font-size: 1rem;
	text-align: center;
	overflow: hidden;
}

.heading{
	width: 100%;
	background-size: cover;
}

.heading-text{
	margin: 0 auto;
	width: 1200px;
	color: #fff;
	box-sizing: border-box;
}

.heading-title{
	width: 600px;
	margin-bottom: .25em;
	font-family: Montserrat-Bold;
	font-size: 2rem;
	text-decoration: underline #09B584;
	line-height: 1.25em;
}

.heading-text p{
	width: 600px;
	line-height: 1.3em;
}

.heading-img{
	padding: 2em 0;
	width: 100%;
	min-height: 45vh;
	display: flex;
	align-items: flex-end;
	box-sizing: border-box;
}

#heading-services{
	background-image: url('../img/services/header2.png');
	background-size: cover;
	background-position: center;
}

#heading-webinar{
	background-image: url('../img/webinar/header.png');
	background-size: cover;
	background-position:center;
}

#heading-about{
	background-image: url('../img/about/header.png');
	background-size: cover;
	background-position: center;
}

#heading-surveillanz{
	background-image: url('../img/surveillanz/header.png');
	background-size: cover;
}

#heading-pharmacymodule{
	background-image: url('../img/virtualclinicalpharmacymodule/header.png');
	background-size: cover;
	background-position: 0 -100px;
}

.icons-two-column{	
	margin-top: 1em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between; 
}

.icons-two-column .icon-wrapper{
	margin-bottom: 1em;
	width: calc((100%/2) - .5em);
	background-color: #eef3f7;
	box-shadow: none;
	border-bottom: none;
}

.icons-four-column{
	margin-top: 2em;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}

.icons-four-column .icon-wrapper{
	margin: 0 0 1em 0;
	padding: 2em 1em;
	width: calc((100%/4) - 1em);
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.icons-four-column .icon-img{
	width: auto;
	height: 125px;
}

.icon-title{
	margin-top: 1em;
	width: 100%;
	font-family: Montserrat-Bold;
	font-size: 1.5rem;
	color: #333;
}

.icon-text .icon-title{
	margin-top: 0;
	margin-bottom: .5em;
}

.perks{
	margin-top: 1em;
}

.perk{
	margin-bottom: 2em;
	width: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	background-color: #eef3f7;
	color: #333;
	border-radius: 5px;
	box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.2);
}

.perk-icon{
	min-height: 250px;
	max-height: 250px;
	min-width: 250px;
	max-width: 250px;	
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	border-radius: 5px 0px 0px 5px;
}

.perk-icon img{
	width: 80%;
	display: block;
}

.perk-text{
	padding: 1em;
	line-height: 1.3em;
}

/*SERVICES*/

/*#services-icons{
	overflow: hidden;
}

#services-icons .title-centered{
	opacity: 0;
	animation: fadetext .5s forwards;
}

#services-icons .icons-three-column{
	opacity: 0;
	transform: translateY(500px);
	animation: slideup .7s forwards;
}

@keyframes slideup{
	0%{
		transform: translateY(500px);
  	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}*/

	
@keyframes fade-in{
    0% {
		opacity: 0;
    }

    100% {
		opacity: 1;
    }
}

.graph-section{
	margin-top: 2em;
	display: flex;
	justify-content: space-between;
}

.bar-graph{
	width: calc((100%/2) - 1em);
}

.bar-graph img{
	width: 100%;
}

.graph{
	width: 100%;
}

.graph img{
	width: 100%;
}

.graph-text{
	margin: 1em 0;
}

.graph-text a{
	color: #09b584;
}

.white a{
	color: #fff;
}

.list-offwhite{
	margin-top: 1em;
	padding: 1em;
	list-style: disc;
	list-style-position: inside;
	border-radius: 5px;
}


.interventions-wrapper{
	width: 100%;
}

.intervention-menu{
	margin-top: 2em;
	margin-bottom: 1em;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.intervention-menu-item{
	padding: 1em;
	width: calc((100%/4) - 1em);
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	border-radius: 10px;
}

.intervention-menu-item img{
	height: 75px;
}

.menu-item-button{
	width: 100%;
}

.intervention-menu-item:hover{
	transition: all .3s;
	background-color: #087C58;
	color: #fff;
	outline: 2px solid #fff;
}

.intervention-menu-item-active{
	background-color: #09b584;
	color: #fff;
	outline: 2px solid #fff;
}

.intervention-text{
	padding: 2em;
	background-color: #eef3f7;
	border-radius: 10px;
}

.intervention-text p{
	margin: .5em 0;
}

.intervention{
	display: none;
}

.intervention-active{
	display: block;
}

.steps{
	margin: 0 auto;
	width: 1000px;
}

.step{
	display: flex;
	justify-content: space-between;
	border-radius: 5px;
	overflow: hidden;
	background-color: #eef3f7;
}

.step:hover .step-img-col{
	transition: background-size .2s;
	background-size: 78%;
}

.step-img-col{
	min-width: 300px;
	height: 300px;
	position: relative;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url('../img/virtualclinicalpharmacymodule/border.png');
	background-size: 75%;
	background-position: center;
	background-repeat: no-repeat;
}

.step-img-col img{
	height: 125px;
}

.arrow{
	width: 100%;
	padding: .5em 0;
	display: flex;
	justify-content: center;
	font-size: 6rem;
	color: #fff;
	transform: rotate(90deg);
	pointer-events: none;
}

.step-num{
	padding: 1em;
	height: 2.5em;
	width: 2.5em;
	position: absolute;
	right: -1.25em;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #221F1F;
	color: #fff;
	border-radius: 400px;
	box-sizing: border-box;
	font-size: 2.25rem;
}

.step-num-l{
	padding: 1em;
	height: 2.5em;
	width: 2.5em;
	position: absolute;
	left: -1.25em;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #221F1F;
	color: #fff;
	border-radius: 400px;
	box-sizing: border-box;
	font-size: 2.25rem;
}

.step-text-col{
	padding-right: 2em;
	display: flex;
	align-items: center;
	margin-left: 4em;
	font-size: 1.5rem;
}

.step-text-col-l{
	padding-left: 2em;
	display: flex;
	align-items: center;
	margin-right: 4em;
	font-size: 1.5rem;
}

.div-two-column{
	display: flex;
	align-items: center;
	background-color: #eef3f7;
	box-shadow: 0px 2px 4px 2px rgba(0,0,0,.1);
}

/* Dashboard */

.dashboard-menu-item{
	padding: 1em;
	width: calc((100%/3) - 1em);
	display: flex;
	background-color: #fff;
	flex-wrap: wrap;
	justify-content: center;
	box-sizing: border-box;
	text-decoration: none;
	color: #000;
}

.dashboard-menu-item img{
	height: 150px;
}

.dashboard-menu-item p{
	margin-top: 1em;
	width: 100%;
	text-align: center;
}

/* Resources */

#search-wrapper{
	width: 100%;
	display: flex;
	justify-content: center;
}

#search-wrapper-inner{
	width: 50%;
	position: relative;
}

#search{
	padding: .25em 0;
	width: 100%;
	font-size: 1.25rem;
	text-align: center;
	border-radius: 5px;
	border: none;
	box-shadow: 0px 2px 4px 1px rgba(0,0,0, .2);
}

#search:focus{
	outline: 2px solid #09B584;
}

#searchIcon{
	margin-top: -10px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: .5em;
}

.document{
	padding: 2em 1em 1em 1em;
	width: calc((100%/3) - 1em);
	display: flex;
	background-color: #fff;
	flex-wrap: wrap;
	justify-content: center;
	box-sizing: border-box;
	text-decoration: none;
	color: #000;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.document img{
	height: 100px;
	position: relative;
}

.document p{
	z-index: 100;
	margin-top: 1em;
	width: 100%;
	text-align: center;
}

.document:hover img{
	transition: transform .2s;
	transform: scale(1.05);
}

.document::after{
	content: "";
	height: 4px;
	width: 0;
	background-color: #000;
}

.document:hover::after{
	transition: width .3s;
	width: 100%;
	position: absolute;
	bottom: 0;
}


/*For Users Without Access*/

.blur{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, .1);
	-webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/*WEBINARS*/

.webinars{
	margin-top: 1em;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1em;
}

.webinar-link{
	padding: 1em;
	display: block;
	text-decoration: none;
	color: #000;
}

.webinar{
	width: calc((100%/3) - 1em);
	background-color: #fff;
	box-sizing: border-box;
	border-radius: 10px;

}

.webinar-title{
	margin-bottom: .5em;
	font-family: Montserrat-Bold;
	font-size: 1.5rem;
}

.webinar-desc{
	font-size: 1.15rem;
	font-family: robotoReg;
}

.webinar-top{
	margin-bottom: 1em;
}

.webinar-bottom{
	padding-top: 1em;
	font-size: 1rem;
	display: flex;
	justify-content: space-between;
	border-top: 2px solid #000;
	color: #666;
}

.webinar:hover{
	outline: 3px solid #09B584;
}

.webinar:hover .webinar-link-text{
	display: inline-block;
	transform: translateX(-10px);
	transition: transform .25s;
}

#video-gallery{
	margin: 2em auto;
	width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.youtube-video-wrapper{
	margin-bottom: 1em;
	width: 350px;
	height: 300px;
}

.youtube-video{
	position: relative;
	display: flex;
	justify-content: center;
	width: 350px;
	height: 225px;
	margin-bottom: 1em;
	box-sizing: border-box;
	cursor: pointer;
}

.youtube-title{
	width: 100%;
	font-size: 1rem;
	line-height: 1.25rem;
	font-family: Montserrat-Bold;
    color: #192A53;
}
 

/*CONTACT FORM*/

#form-cards{
	margin: 1em auto 0 auto;
	width: 1200px;
	display: flex;
	justify-content: space-between;
}

.form-card{
	width: calc((100%/3) - 1em);
	min-height: 400px;
	position: relative;
	border-radius: 5px;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
}

.form-card-overlay{
	padding: 2em;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: #fff; 
	text-align: center;
	font-size: 1.75rem;
	line-height: 1.25em;
	border-radius: 5px;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, .3);
	-webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.form-card-overlay:hover{
	transition: backdrop-filter .3s;
	outline: 2px solid #fff;
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.form-card:hover{
	transition: all .3s;
	background-size: 120%;

}

#form-card-full{
	margin: 0 auto;
	width: 800px;
	text-align: center;
	color: #fff;
	font-size: 1.75rem;
}


#contact-card-medication{
	background-image: url('../img/contact/medication.jpg');
}

#contact-card-patient{
	background-image: url('../img/contact/patient.jpg');
}

#contact-card-optics{
	background-image: url('../img/contact/pharmacist.jpg');
}

#form-background{
	padding: 2em 0;
	width: 100%;
	min-height: calc(100vh - 97.25px);
	background-image: url('../img/form.png');
	background-size: cover;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	box-sizing: border-box;
}

#formfull-background{
	padding: 2em 0;
	width: 100%;
	min-height: 100vh;
	background-image: url('../img/form.png');
	background-size: cover;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.form-section{
	padding: 2em;
	margin: 0 auto;
	width: 1000px;
	background-color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: 0px 4px 6px 2px rgba(0,0,0, .2);
}

.form-section-small{
	padding: 2em;
	margin: 0 auto;
	width: 700px;
	background-color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: 0px 4px 6px 2px rgba(0,0,0, .2);
}

.form{
	margin-top: 1.5em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form-tab{
	display: none;
	flex-wrap: wrap;
	justify-content: space-between;
}

.user-agreement{
	margin-bottom: 1.5em;
	padding: 1em;
	max-height: 500px;
	overflow-y: scroll;
	background-color: #eef3f7;
	border-radius: 5px;
}

.user-agreement-div{
	margin-top: 1em;
}

.user-agreement p{
	margin-bottom: .5em;
	font-size: 1rem;
}

.user-agreement h2{
	font-size: 1.5rem;
}

.user-agreement h3{
	font-size: 1.25rem;
}

.active-page{
	display: flex;
}

.form-logo{
	margin: 0 auto;
	width: 80%;
	margin-bottom: 1.5em;
	display: flex;
	justify-content: center;
}

.form-logo img{
	display: block;
	width: 50%;
	text-align: center;
}

input[type="password"]{
	-webkit-text-security: disc;
}

.input-two-column, .input-full{
	margin-bottom: 1.5em;
	position: relative;
}

.checkbox-wrapper{
	padding-right: 35px;
	margin-right: 1em;
	display: inline;
	position: relative;
}

.checkbox-label{
	margin-right: .25em;
	color: #333;
}

/* Hide the browser's default checkbox */
.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 22.5px;
  width: 22.5px;
  background-color: #ccc;
	border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox-wrapper:hover input ~ .checkmark {
  background-color: #bbb;
	cursor: pointer;
}

/* When the checkbox is checked, add a background */
.checkbox-wrapper input:checked ~ .checkmark {
  background-color: #09B584;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-wrapper input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-wrapper .checkmark:after {
  left: 8px;
  top: 4px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.input-text::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.input-text:-ms-input-placeholder {
  color: #333;
}
.input-text::-webkit-input-placeholder {
  color: #333;
}

#additional-fields{
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
}

.active-fields{
	animation: additionalFields 1s forwards;
}


.inactive-fields{
	display: none;
}

@keyframes additionalFields {
	0% {
    	max-height: 0%;
		display: flex;
   	}

    100% {
        max-height: 100%;
		display: flex;
    }
}

.white-label{
	color: #fff;
}

.sort{
	padding: .5em;
	line-height: 1rem;
	font-size: 1rem;
}

.input-text{
	width: 100%;
	padding: 0 .5em;
	background-color: #E1F0FC;
	font-size: 1.25rem;
	line-height: 2em;
	border: none;
	border-radius: 5px;
	outline: none;
	box-sizing: border-box;
}

input[type="file"]{
	
} 

.input-two-column{
	width: 48%;
}

.input-full{
	width: 100%;
}

#input-password{
	margin-bottom: 3em;	
}

#contact-preference{
	margin-bottom: 1em;
	font-size: 1.15rem;
}

.preference{
	margin-left: 1em;
}

.input-message{
	min-height: 250px;
	width: 100%;
	padding-left: .5em;
	background-color: #E1F0FC;
	font-family: robotoReg;
	font-size: 1.25rem;
	line-height: 2em;
	resize: none;
	border: none;
	outline: none;
	box-sizing: border-box;
}

.forgot-link{
	position: absolute;
	bottom: -1.75em;
	left: 0;
	font-size: 1.15rem;
	color: #0976b4;
	text-decoration: none;
}

.g-recaptcha{
	margin-bottom: 1em;
}

#signupSubmit{
	margin-left: 1em;
    padding-left: 1em;
}

.delete-resource{
	position: absolute;
	right: 10px;
	top: 10px;
	border: none;
	font-size: 1rem;
	padding: .5em .75em;
	background-color:firebrick;
	color: #fff;
}

.delete-resource:hover{
	cursor: pointer;
	transition: background-color .3s;
	background-color:darkred;
}

.pagination-form{
	margin-top: 1em;
	display: flex;
	justify-content: center;
	gap: 1em;
}

.submit{
	padding: .25em 1em;
	position: relative;
	background-color: #0976B4;
	color: #fff;
	font-size: 1.25rem;
	line-height: 2em;
	border: none;
	border-radius: 5px;
	outline: none;
	box-sizing: border-box;
	z-index: 1;
}

.submit::after{
	content:  "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	line-height: 2em;
	border: none;
	border-radius: 5px;
	background-color: #09B584;
	overflow: hidden;
	z-index: -1;
}

.submit:hover{
	color: #fff;
	cursor: pointer;
}

.submit:hover:after{
	transition: width .3s;
    width: 100%;
}

.submit-wrapper{
	width: 100%;
	display: flex;
	align-items: center;
}

.submit-wrapper p{
	margin-left: 1em;
	padding-left: 1em;
	border-left: 2px solid #0976B4;
}

.submit-wrapper a{
	text-decoration: none;
	color: #0976b4;
}

.input-error{
	padding: 0 .25em;
	line-height: 1.5em;
	color: red;
}

.popup{
    z-index: 999;
    color: #fff;
    background-color: rgba(112, 39, 115, .6);
    box-sizing: border-box;
    position: absolute;
    width: auto;
    top: 50%;
    left: 50%;
  	transform: translate(-50%, -50%);
    animation: fade 1s;
    text-align: center;
}

.popup p{
    padding: 3em;
}

.popup a{
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    color: #fff;
}

/*ADMIN PANEL*/

.admin-nav{
	width: 100%;
}

.admin-nav-inner{
	padding: 0 1em 2em 1em;
	margin: 0 auto;
	width: 1200px;
	display: flex;
	justify-content: center;
	gap: 1em;
}


.admin-nav-item{
	padding: .75em 1em;
	display: block;
	text-decoration: none;
	font-size: 1.15rem;
	background-color: #fff;
	color: #000;
	border-radius: 5px;
	
}

.admin-nav-item:hover{
	transition: background-color .25s;
	background-color: #09B584;
	color: #fff;
}

#users{
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
}

.user-heading{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	background-color: #09B584;
	color: #fff;
}

.user-heading div, .user-row div{
	padding: .5em;
	width: calc(100%/7);
	border: 1px solid #efefef;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.user-row{
	width: 100%;
	font-size: 1rem;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}

.access{
	width: 100%;
	font-size: 1rem;
	font-family: robotoMed;
}

.submit-approve{
	margin-bottom: .5em;
	padding: .5rem 1rem;
	font-size: 1rem;
	font-family: robotoMed;
	background-color: #0976B4;
	color: #fff;
	outline: none;
	border: none;
	cursor: pointer;
}

.submit-approve:hover{
	transition: background-color .3s;
	background-color: #09B584;
}

select{
	-webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
	background-image: url('../img/arrow.svg');
	background-repeat: no-repeat;
	background-size: 14px 14px;
    background-position: calc(100% - 16px);
}

footer{
	grid-area: footer;
}

#footer-top-wrapper{
	background-color: #fff;
}

#footer-top{
	padding: 3em 0;
	margin: 0 auto;
	width: 1200px;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}

.footer-logo{
	width: auto;
	display: flex;
	align-items: center;
}

#footer-diamondlogo{
	display: flex;
	align-items: center;
	color: #fff;
	font-size:.85rem;
}

#diamondlogo{
	margin-right: 1em;
	width: 150px;
}

.footer-section{
	width: auto;
}

.footer-section img{
	display: block;
}

.footer-title{
	margin-bottom: .25em;
	font-size: 1.5rem;
	color: #0976B4;
	font-family: montserratSemi;
}

.footer-section a{
	margin-bottom: .25em;
	display: block;
	text-decoration: none;
	color: #333;
}

.footer-section a:hover{
	transition: color .2s;
	color: #09B584;
}	

#footer-bottom-wrapper{
	background-color: #0976B4;	
}

#footer-bottom{
	padding: 1em 0;
	margin: 0 auto;
	width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	box-sizing: border-box;
	font-size: 1.15rem;
}

@media only screen and (max-width: 1910px){ 
	#index-header{
		background-position: 0 -30px;
	}
	#index-header-inner{
		padding: 0 2em;
		width: 100%;
		box-sizing: border-box;
		
	}
	
	#index-text{
		width: 50%;
	}
}

@media only screen and (max-width: 1500px){
	
	#index-header-inner{
		padding: 2em 2em 0 2em;
		width: 100%;
		box-sizing: border-box;
		flex-wrap: wrap;
	}
	#index-text{
		margin-bottom: 3em;
		width: 60%;
	}
}

@media only screen and (max-width: 1235px){
	
	#index-header{
		background-position: center;
	}
	
	#header-inner{
		width: 100%;
		padding: 2em 1em;
		box-sizing: border-box;
		align-items: center;
	}
	
	.heading-text{
		padding: 2em;
		width: 100%;
	}
	
	.section-inner{
		padding: 1em;
		width: 100%;
	}
	
	.text-wrapper{
		padding: 2em 1em;
	}
	
	.icon-wrapper{
		width: calc((100% / 2) - 2em);
	}
	
	.section-two-column{
		width: 100%;
	}
	
	.icons-four-column .icon-wrapper{
		margin-bottom: 1em;
		width: calc((100% / 2) - 1em);
	}
	
	.img-column{
		max-height: 450px;
	}
	
	.step-text-col, .step-text-col-l{
		font-size: 1.25rem;
	}
	
	#footer-top{
		padding: 3em 2em;
		width: 100%;
	}
	
	#footer-bottom{
		padding: 1em 2em;
		width: 100%;
		flex-wrap: wrap;
	}
	
	#users{
		background-color: transparent;
	}
	
	.user-heading{
		display: none;
	}
	
	.user-row{
		margin-bottom: 1em;
		flex-wrap: wrap;
		background-color: #fff;
	}
	
	.user-row div{
		width: 100%;
		 word-break: break-all;
		overflow-wrap: break-word;
	}
	
	.admin-nav-inner{
		width: 100%;
		box-sizing: border-box;
	}
	
	#form-cards{
		width: 100%;
		padding: 0 1em;
	}
	
	.form-card-overlay{
		font-size: 1.25rem;
	}
	
	.form-card{
		min-height: 200px;
	}
	
	.webinar{
		width: calc(50% - 1em); 
	}
	
}

@media only screen and (min-width: 1001px){
	#nav{
		width: auto !important;
	}
	.dropdown:hover .dropdown-content{
		display: flex;
		flex-direction: column;
	}
	
	@keyframes slide-column-right {
        0% {
            margin-left: -500px;
			opacity: 0;
        }

        100% {
            margin-left: 0px;
			opacity: 1;
        }
    }

}

@media only screen and (max-width: 1100px){
	.steps{
		width: 100%;
	}
	
	#footer-diamondlogo{
		margin-bottom: 1em;
		width: 100%;
		display: flex;
		justify-content: center
	}
}

@media only screen and (max-width: 1000px){
	
	#logo{
		width: 150px;
	}
	
	
	#heading-pharmacymodule{
		height: 30vh;
    	background-size: cover;
		background-position: center;
	}
	
	.heading-img{
		min-height: 30vh;
	}
	
	.btn-menu{
		display: inline-block;
		cursor: pointer;
	}
	
	.bar1, .bar2, .bar3{
		border-radius: 2px;
		width: 40px;
		height: 4px;
		background-color: #333;
		margin: 8px auto;
		transition: 0.3s;
	}
		
	/* MINUS-FORWARD ANIMATION */
	.minus-forward .bar1 {
		animation: minus-forward .5s forwards;
		background-color:firebrick;
	}
	.minus-forward-rev .bar1 {
		animation: minus-forward-reverse .5s;
		background-color: #333;
	}
	@keyframes minus-forward{
		50%{transform: translateY(12px);}
		100%{transform: rotate(45deg) translate(12px, -8px); width: 28px;}
	}
	@keyframes minus-forward-reverse{
		0%{transform: rotate(45deg) translate(12px, -8px); width: 28px;}
		100%{transform: rotate(0deg) translate(0, 0);}
	}
	.minus-forward .bar2 {
		background-color:firebrick;
	}
	.minus-forward .bar3 {
		animation: minus-forward3 .5s forwards;
		background-color:firebrick;
	}
	.minus-forward-rev .bar3 {
		animation: minus-forward-reverse3 .5s;
		background-color: #333;
	}
	@keyframes minus-forward3{
		50%{transform: translateY(-12px);}
		100%{transform: rotate(-45deg) translate(12px, 8px); width:28px;}
	}
	@keyframes minus-forward-reverse3{
		0%{transform: rotate(-45deg) translate(12px, 8px); width:28px;}
		100%{transform: rotate(0deg) translate(0, 0);}
	}
	
	#nav{
		padding: 0;
        position: absolute;
        top: 124px;
        right: 0;
        height: auto;
        width: 0%;
        transition: .6s width;
        flex-direction: column;
        background-color: #eef3f7;
		box-sizing: border-box;
		overflow: hidden;
        z-index: 999;
    }
	
	.dropdown{
		width: 100%
	}
	
	.menu-item, .menu-button, .btn-dropdown{
		margin: 0;
		width: 100%;
		text-align: center;
		white-space: nowrap;
		box-sizing: border-box;
		border-radius: 0;
	}
	
	.dropdown-content{
		width: 100%;
		position: static;
		display: inline-block;
		box-shadow: none;
	}
	
	.dropdown-content a{
		display: block;
	}
	
	.menu-item, .btn-dropdown{
		border-bottom: 2px solid #dadde0;
	}
	
	.dropdown-content .menu-item:first-child {
   	 	border-bottom: 2px solid #dadde0;
	}
	
	.logout-form{
		width: 100%;
	}
	
	/*INDEX*/
	
	#whatisoptics .img-column img{
		margin-left: 0px;
	}

	#whatisoptics .text-column{
		opacity: 1;
	}

	#index-text{
		width: 70%;
	}
	
	.index-header-img{
		width: 70%;
	}
	
	.heading{
		flex-wrap: wrap;	
	}
	
	.heading-img{
		width: 100%;
	}
	
	#index-title{
		text-align: center;
	}
	
	#index-p{
		text-align: center;
	}
	
	#buttons-wrapper{
		justify-content: center;
	}
	
	
	.benefits{
		flex-wrap: wrap;
	}
	
	.benefit{ 
		margin-bottom: 2em;
		width: 100%;
	}
	
	.section-two-column, .div-two-column{
		flex-wrap: wrap;
	}
	
	.img-column{
		max-height: 100%;
		min-width: 100%;
	}
	
	.img-column img{
		width: 100%;
	}
	
	.text-column{
		padding: 1em 0;
		width: 100%;
		order: 2;
	}
	
	.div-two-column .text-column{
		padding: 1em;
	}
	
	.team-member{
		width: calc((100% / 2) - 2em);
	}
	
	.member-title{
		max-height: 300px;
	}
	
	#process{
		width: 100%;
	}
	
	.step-process{
		flex-wrap: wrap;
	}
	
	.step-process-img-wrapper{
		width: 100%;
		box-shadow: none;
		border-radius: 0;
	}
	
	.step-process-textRight, .step-process-textLeft{
		padding: 1em;
		margin: 0;
		width: 100%;
		border-radius: 0;
		order: 2;
		justify-content: flex-start;
		text-align: left;
	}
	
	.step-titleLeft{
		text-align: left;
	}
	
	#footer-top{
		flex-wrap: wrap;
		justify-content: space-around;
	}
	
	.footer-logo{
		margin-bottom: 2em;
		width: 100%;
		justify-content: center;
	}
	
	.footer-section{
		width: 50%;
		text-align: center;
	}
	
	#form-card-full{
		width: 100%;
		padding: 0 1em;
		font-size: 1.5rem;
	}
	
	#correctional-model{
		min-height: 550px;
	}
	
	.venn{
		height: 200px;
		width: 200px;
	}

	#venn1{
		top: 125px;
		left: calc((50% - 100px) - 250px);
	}
	#venn2{
		top: 40px;
		left: calc(50% - 100px);
	}
	#venn3{
		top: 125px;
		left: calc((50% - 100px) + 85px);
	}
	#venn4{
		top: 205px;
		left: calc(50% - 100px);
	}
	
	.venn-text{
		font-size: 1rem;
	}
	
}

@media only screen and (max-width: 900px){
	.list-item{
		width: calc((100% / 2) - 1em);
		font-size: 1rem;
	}
}

@media only screen and (max-width: 700px){
	
	
	#index-header-inner {
        padding: 2em 1em 0 1em;
    }
	
	#index-text{
		width: 100%;
	}
	

	.heading-text{
		padding: 1em;
	}
	
	.heading-title{
		width: 100%;
	}
	
	.heading-text p{
		width: 100%;
	}
	
	.index-header-img{
		margin-left: -10%;
		width: 120%;
	}
	
	/*Resources*/
	
	.document{
		width: calc((100% / 2) - 1em);
	}
	
	.webinar{
		width: 100%; 
	}
	
	
	/*Correction Model*/
	
	#correctional-model{
		min-height: 350px;
	}
	
	.venn{
		height: 150px;
		width: 150px;
	}

	#venn1{
		top: 105px;
		left: calc((50% - 75px) - 150px);
	}
	#venn2{
		top: 40px;
		left: calc(50% - 75px);
	}
	#venn3{
		top: 105px;
		left: calc((50% - 75px) + 55px);
	}
	#venn4{
		top: 170px;
		left: calc(50% - 75px);
	}
	
	.venn-text{
		font-size: 1rem;
	}
	
	
	.icons-four-column{
		justify-content: space-between;
	}
	
	.icons-three-column{
		gap: 1em;
	}
	
	
	.icons-four-column .icon-wrapper{
		margin: 0 0 1em 0;
		padding: 1em;
		width: calc((100% / 2) - .5em);
		
	}
	
	.icons-four-column .icon-img {
		height: 65px;
	}
	
	.icons-three-column .icon-img {
        height: 65px;
    }
	
	.icons-three-column .icon-wrapper {
		margin: 0;
		padding: 1em;
		width: calc((100% / 2) - .5em);
	}
	
	.icon-img{
		padding: 1em;
	}
	
	.icon-title{
		
	}
	
	.icon-text{
		padding: 1em 0;
		font-size: 1rem;
	}
	
	.team-member{
		width: 100%;
	}
	
	.perk{
		flex-wrap: wrap;
	}
	
	.perk-icon{
		height: auto;
		max-height: none;
		min-width: 100%;
		border-radius: 0;
	}
	
	.perk-icon img{
		width: 70%;
	}
	
	.graph-section{
		flex-wrap: wrap;
	}
	
	.bar-graph{
		width: 100%;
	}
	
	.bar-graph:nth-child(2){
		margin-top: 1em;
	}
	
	.intervention-menu{
		flex-wrap: wrap;
	}
	
	.intervention-menu-item{
		margin-bottom: 1em;
		width: 48%;
		border-radius: 10px;
	}
	
	.list-offwhite{
		text-indent: -1.4em;
  		padding-left: 1.4em;
	}
	
	.step{
		flex-wrap: wrap;
	}
	
	.step:hover .step-img-col{
		transition: background-size .2s;
		background-size: 210px;
	}
	
	.step-img-col{
		width: 100%;
		background-size: 200px;
		order: 1;
	}
	
	.step-num, .step-num-l{
		margin-left: -1.25em;
		left: 50%;
		bottom: -1.25em;
	}
	
	.step-text-col, .step-text-col-l{
		margin: 1.25em 0 0 0;
		padding: 1em;
		width: 100%;
		text-align: center;
		display: flex;
		justify-content: center;
		order: 2;
	}
	
	.intervention-text{
		padding: 1em;
	}
	
	#search-wrapper-inner{
		width: 100%;
	}
	
	/*ADMIN*/
	
	.admin-nav-inner{
		flex-wrap: wrap;
		gap: .5em;
	}
	
	.admin-nav-item{
		width: 100%;
		font-size: 1rem;
	}
	
	/*FORM*/
	
	#form-cards{
		flex-wrap: wrap;
	}
	
	.form-card{
		width: 100%;
		margin-bottom: 1em;
	}
	
	#formfull-background{
		min-height: auto;
	}

	.form-section-small{
		padding: 2em 1em;
		margin: 0 auto;
		width: 90%;
	}
	
	.form-section{
		padding: 1em;
		border-radius: 0px;
	}
	
	.input-two-column{
		width: 100%;
	}
	
	#footer-top{
		padding: 3em 1em;
		justify-content: center;
	}
	
	.footer-logo{
		text-align: center;
	}
	
	.footer-section{
		margin-bottom: 1em;
		width: 100%;
		text-align: center;
	}
	
	#footer-bottom{
		padding: 1em;
		text-align: center;
		box-sizing: border-box;
	}
	
	#footer-diamondlogo{
		flex-direction: column;
	}
	
	#diamondlogo{
		margin: 0 0 1em 0;
	}
}

@media only screen and (max-width: 500px){
	
	#nav{
		top: 108px;
	}
	
	.icons-two-column .icon-wrapper {
		width: 100%;
	}
	
	.icons-four-column .icon-wrapper {
       width: 100%;
    }
	
	.document{
		width: 100%;
	}
	
	.checkbox-wrapper{
		margin-bottom: 1em;
		display: inline-block;
	}

	.list-item{
		width: 100%;
	}
	
	.icons-three-column .icon-wrapper {
        margin: 0;
        padding: 1em;
        width: 100%;
    }
	
	.index-header-img{
		margin-left: -20%;
		width: 140%;
	}
	
	.menu-item-button{
		font-size: 1rem;
	}
	
	.intervention-menu-item{
		padding: .5em;
	}
	
	.title-left, .title-left-white, .title-centered, .heading-title, #index-title, .title-centered-white{
		font-size: 1.5rem;
	}
	
	body{
		font-size: 1rem;
	}
	
	p, .column-text, #index-p, .input-text, .p-small, .p-centered-large{
		font-size: 1rem;
	}
	
	h3, .icon-title, .benefit-title, .member-name, .footer-title{
		font-size: 1.25rem;
	}
	
	.btn-blue a, .btn-outline a, .btn-green a, .btn-dark a, .submit, #btn-green-next, #btn-green-prev{
		font-size: .85rem;
	}
	
	.step-num, .step-num-l{
		height: 1.5em;
		width: 1.5em;
		font-size: 1.75rem;
		margin-left: -1em;
	}
	
	.user-agreement h2{
		font-size: 1.25rem;
	}
	
	
	
	
}


@media only screen and (max-width: 430px){
	
	.category-nav{
		margin-bottom: 1em;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.category-nav .white-label{
		width: 100%;
	}
	
	.submit-approve{
		margin-bottom: 0;
	}
}


@media only screen and (max-width: 400px){

	
	.buttons-wrapper-center{
		flex-wrap: wrap;
	}
	
	.btn-blue{
	}
	
	.btn-outline{
		display: block;
	}
	
	.benefit-icon img{
	}
	
	
}


@media only screen and (max-width:375px){

	.g-recaptcha {
		 transform: scale(0.8);
		transform-origin: left;
	}
}