@import url("https://use.typekit.net/for7avf.css");

/* TEXT */

.sePage .sePageLayout .urw-text h1 {
 font-family: urw-din-condensed, sans-serif;
 font-weight: 600;
 font-style: normal;
 font-size: 50px;
 color: #000000;
}

.sePage .sePageLayout .urw-text h2 {
 font-family: urw-din-condensed, sans-serif;
 font-weight: 600;
 font-style: normal;
 font-size: 40px;
 color: #000000;
}

.urw-text p {
 font-family: urw-din, sans-serif;
 font-weight: 400;
 font-style: normal;
 font-size: 18px;
 color: #222222;
}

/* TABLES */

.urw-table {
 font-family: urw-din, sans-serif;
 border-collapse: collapse;
 width: 100%;
 text-align: left;
}

.urw-table td, .urw-table th {
 padding: 8px;
 /* Change width depending on number of columns */
 width: 33.33%;
}

.urw-table tr:nth-child(odd){background-color: #f2f2f2;}

.urw-table tr:hover {background-color: #ddd;}

.urw-table th {
 background-color: white;
 font-family: urw-din-condensed, sans-serif;
 font-size: 250%;
 padding-top: 12px;
 padding-bottom: 12px;
 text-align: left;
}

/* PAGE SPECIFIC */

#wrapper {
 display: flex;
 flex-direction: column;
 }
 #left {
 display:flex;
 align-items: center;
 }
 #right {
 display:flex;
 align-items: center;
 justify-content: center;
 }
 @media screen and (min-width: 990px){
 #wrapper {
 display: flex;
 flex-direction: row;
 }
 #left {
 display: flex;
 align-items: center;
 width: 70%;
 }
 #right {
 width:30%;
 justify-content: flex-start;
 }
 }