@font-face {
    font-family: "Proxima Nova A";
    src: url("/blogfiles/fonts/ProximaNova-ThinWeb.eot") format("embedded-opentype"), url("/fonts/ProximaNova-ThinWeb.woff") format("woff");

    font-weight: 100;
}
@font-face {
	font-family: "Proxima Nova A";
	src: url("/blogfiles/fonts/ProximaNova-LightWeb.eot") format("embedded-opentype"), url("/blogfiles/fonts/ProximaNova-LightWeb.woff") format("woff");
	font-weight: 300;
}
@font-face {
	font-family: "Proxima Nova A";
	src: url("/blogfiles/fonts/ProximaNova-RegularWeb.eot") format("embedded-opentype"), url("/blogfiles/fonts/ProximaNova-RegularWeb.woff") format("woff");
	font-weight: 400;
}
@font-face {
	font-family: "Proxima Nova A";
	src: url("/blogfiles/fonts/ProximaNova-MediumWeb.eot") format("embedded-opentype"), url("/blogfiles/fonts/ProximaNova-MediumWeb.woff") format("woff");
	font-weight: 500;
}
@font-face {
	font-family: "Proxima Nova A";
	src: url("/blogfiles/fonts/ProximaNova-SemiboldWeb.eot") format("embedded-opentype"), url("/blogfiles/fonts/ProximaNova-SemiboldWeb.woff") format("woff");
	font-weight: 600;
}
@font-face {
	font-family: "Proxima Nova A";
	src: url("/blogfiles/fonts/ProximaNova-BoldWeb.eot") format("embedded-opentype"), url("/blogfiles/fonts/ProximaNova-BoldWeb.woff") format("woff");
	font-weight: 700;
}
@font-face {
	font-family: "Proxima Nova A";
	src: url("/blogfiles/fonts/ProximaNova-ExtrabldWeb.eot") format("embedded-opentype"), url("/blogfiles/fonts/ProximaNova-ExtrabldWeb.woff") format("woff");
	font-weight: 800;
}
@font-face {
	font-family: "Proxima Nova A";
	src: url("/blogfiles/fonts/ProximaNova-BlackWeb.eot") format("embedded-opentype"), url("/blogfiles/fonts/ProximaNova-BlackWeb.woff") format("woff");
	font-weight: 900;
}

:root {
    --white: #ffffff;
    --light-grey: #f0f0f0;
    --grey: #e0e1e5;
    --dark-grey: #2c334f;
    --black: #000000;
    --cyan: #53bceb;
    --teal: #3bbfc0;
    --blue: #56a0d3;
    --lighter-blue: rgba(86, 160, 211, 0.5);
    --dark-blue: #134c9e;
    --control: #bfe1fe;
    --control-active: #7fc4fd;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: "Proxima Nova A", sans-serif;
    font-size: 18px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

.container {
    margin: 0 auto;
    width: 100%;
    /*max-width: 1920px;*/
    position: relative;
}

.btn {
    background-color: var(--dark-grey);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 10px 0;
    display: block;
    width: 100%;
    max-width: 340px;
    text-align: center;
    border-radius: 6px;
    text-transform: uppercase;
}

.btn:hover{
	text-decoration:underline;
}

.btn:visited {
	color: var(--white);
}

header {
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 100;
    background-color: var(--dark-blue);
}

header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 88px;
}

header .logo {
    width: 165px;
    height: 24px;
    display: none;
    margin: 0 38px;
    position: relative;
    bottom: 6px;
    flex-grow: 0;
}

header nav {
    height: 100%;
    display: block;
    flex-grow: 1;
}

header nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    height: 100%;
    display: none;
    align-items: center;
    padding: 0 16px;
}

header nav a.show-mobile {
    display: flex;
}

header nav a:hover {
    color: var(--dark-blue);
}

header nav a.pull-right {
    margin-left: auto;
}

header .search {
    background-color: var(--blue);
    width: 88px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

header .search img {
    width: 24px;
    height: 24px;
}

header .search:hover {
    cursor: pointer;
    background-color: var(--white);
}

header .star {
    background-color: var(--white);
    width: 88px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 88px;
    right: 0;
    flex-shrink: 0;
}

header .star img {
    width: 24px;
    height: 24px;
}

header .star:hover {
    cursor: pointer;
    background-color: var(--white);
}

header .toggle {
    margin-left: 30px;
}

main {
    /*margin-top: 88px;*/
}

footer {
    border-top: 1px solid var(--dark-blue);
}

footer .container {
    padding: 48px 20px;
}

footer .social-media {
    min-height: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .social-media a {
    margin-right: 20px;
}

footer .social-media a.tafe {
    flex-basis: 100%;
    justify-self: center;
    text-align: center;
    margin: 0 0 20px 0;
}

footer nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 56px;
    line-height: 30px;
}

footer nav a {
    color: var(--blue);
    margin-right: 10px;
    font-size: 14px;
}

footer .info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px 0;
    line-height: 30px;
}
footer .info span {
    color: var(--dark-grey);
    margin-right: 10px;
    font-size: 14px;
}

#carousel {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}

#carousel .control {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: block;
    background-color: var(--control);
    margin: 10px;
    cursor: pointer;
}

#carousel .control.active {
    background-color: var(--control-active);
}

.banners {
    position: relative;
    z-index: 1;
    height: 412px;
    overflow: hidden;
}

.banners.b1 .banner-container {
    right: 0%;
}

.banners.b2 .banner-container {
    right: 100%;
}

.banners.b3 .banner-container {
    right: 200%;
}

.banner-container {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    transition: right 1s;
    right: 0%;
}

.banner {
	flex: 0 0 auto;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center 50%;
	background-repeat: no-repeat;
}

.featured-post {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    margin-top: -140px;
    position: relative;
    z-index: 1;
}
.box {
    position: absolute;
    left: -500px;
    width: 500px;
    height: 100%;
    background-color: var(--white);
}
.featured-post .titles {
    width: 100%;
    max-width: 700px;
    background-color: var(--white);
    clip-path: polygon(0 0, 30px 0, 42px 20px, 54px 0, calc(100% + 10px) 0, calc(100% + 10px) calc(100% + 10px), 0 calc(100% + 10px));
    box-shadow: 4px 8px 6px -6px var(--grey);
    overflow: hidden;
}
.featured-post .titles .title {
    width: 100%;
    flex: 0 0 auto;
    padding: 20px 20px 20px 40px;
}

.featured-post .titles .title-media {
	height:267px;
	width: 100%;
	flex: 0 0 auto;
	padding: 8px 20px 7px 40px;
	display: flex;
}

.featured-post .titles .title-media h2{
	align-self:center;
}

.titles.t1 .title-container {
    right: 0%;
}
.titles.t2 .title-container {
    right: 100%;
}
.titles.t3 .title-container {
    right: 200%;
}
.featured-post .title-container {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    transition: right 1s;
    position: relative;
    right: 0;
    transition: right 1s;
    width: 100%;
}

.contact-info {
	padding: 10px 20px;
	background-color: var(--lighter-blue);
	color: var(--dark-grey);
	font-size: 18px;
	margin: 10px 20px;
	display: inline-block;
}

.content .contact-info {
}

.option-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.option-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--blue);
    max-width: 300px;
}

.featured-post .contact-info {
    position: static;
    width: calc(100% - 40px);
}

.contact-info .heading {
    font-weight: 700;
    font-size: 20px;
	margin-bottom:0;
	color: var(--black);
	margin-top:0;
}
.contact-info .name,
.contact-info .title,
.contact-info .email {
	font-weight: 400;
	font-size: 1.0rem;
	margin-bottom: 0;
	color: var(--black);
	margin-top: 0;
}
.email a {
    text-decoration: underline;
}
.content p {
	font-family: inherit;
}

.featured-post h2 {
    font-weight: 800;
    font-size: 28px;
    color: var(--dark-blue);
}
.featured-post .titles .title-container .title a > h2{
	text-decoration:underline;
	color: var(--dark-blue);
}
.featured-post p {
	font-weight: 300;
	font-size: 24px;
	color: var(--dark-blue);
	margin-top: 40px;
}
.featured-post .titlebox p{
	font-weight: 500;
	font-size: 16px;
	color: var(--dark-blue);
	text-transform: uppercase;
	margin: 20px 0;
	padding: 10px 20px;
	border: 4px solid var(--teal);
	display: inline-block;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1060px;
    padding: 20px;
    margin: 0 auto;
}

.content > .categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 30px 0 10px;
	line-height: 40px;
}

#blog-landing .categories .title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20;
    color: var(--dark-blue);
    flex-basis: 100%;
    text-align: center;
}
#blog-landing .categories a {
    font-size: 20px;
    color: var(--dark-blue);
    margin-right: 20px;
    border-bottom: 3px solid var(--white);
}
#blog-landing .postcategories a {
    font-size: 16px;
    margin-right: 20px;
    border-bottom: 3px solid var(--white);
}
#blog-landing .postcategories a:hover {
	text-decoration: underline;
}
#blog-landing .categories a:hover,
#blog-landing .categories a.selected {
    border-color: var(--blue);
}
#blog-landing .categories hr:not(:last-child) {
    width: 2px;
    height: 14px;
    border: none;
    background-color: var(--dark-blue);
    margin-right: 20px;
}

.load-more {
    background-color: var(--dark-blue);
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    height: 60px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load-more:visited,
.load-more:focus {
	color: var(--white);
}

.load-more:hover {
	color: var(--white);
	text-decoration: underline;
}

.load-more:active {
	color: var(--white);
}

#media-landing .posts {
    display: flex;
    flex-direction: column;
    max-width: 780px;
    margin-bottom: 60px;
}

#media-landing .posts .post {
	padding-bottom: 10px;
	padding-top: 20px;
}


#media-landing .posts .post .title {
	margin-bottom: 10px;
}

#media-landing .posts .post .title:hover {
	text-decoration:underline;
}

#blog-landing .posts .post .title:hover {
	text-decoration:underline;
}

#media-landing .posts .post .description {
	margin-bottom: 15px;
}

#media-landing .content {
	padding-top: 10px;
	padding-left: 40px;
}

#media-landing .breadcrumbs {
	margin: 5px 0 40px;
}

#blog-landing .posts .post {
    margin-bottom: 20px;
}

.posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    grid-gap: 20px;
}

.posts .post {
    position: relative;
}

.posts .post img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.posts .post .details {
	padding: 10px 30px 0px 30px;
}

.posts .post .categories {
	width: 100%;
	display: flex;
	margin: 0 0 10px;
}

.posts .post .categories span {
    display: inline-block;
    color: var(--dark-grey);
    font-size: 14px;
    font-weight: 400;
    margin: 0 25px 0 0;
    text-transform: uppercase;
}
.posts .post .title {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 20px;
    margin-bottom: 15px;
}
.posts .post .description {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-grey);
    margin-bottom: 20px;
}
.posts .post .date {
    color: var(--dark-grey);
    font-size: 14px;
    font-weight: 500;
}

#blog-post .content {
    display: flex;
}

#media-post .content {
    padding-top: 10px;
}

#media-post .content .page {
    max-width: 100%;
}

#media-post .content .article {
    max-width: 100%;
}
.content .page {
	max-width: 100%;
	flex-shrink: 1;
}

.content .page h2 {
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-size: 40px;
    font-weight: 800;
}
.breadcrumbs {
	margin: 5px 40px 40px;
	padding: 0 0 0 0px;
	display: none;
}
.breadcrumbs a {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #2c3347;
	font-style: italic
}
.breadcrumbs a span {
	display: inline-block;
	margin: 0 10px;
	font-style: italic
}
.breadcrumbs a.current {
    color: var(--dark-grey);
}
.content .page .details {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}
.content .page .details .date {
    color: var(--dark-grey);
    font-size: 14px;
    font-weight: 500;
}
.content .page .details .font-size {
}
.content .page .details .font-size a {
    display: inline-block;
    color: var(--dark-blue);
    font-weight: 500;
    text-decoration: none;
}
.content .page .details .font-size a.small {
    font-size: 14px;
    margin-right: 20px;
}
.content .page .details .font-size a.big {
    font-size: 20px;
}
.content .page .article {
    margin: 20px;
}

.content .page .article.large p {
    font-size: 22px;
}

.content .page .article.large h2 {
    font-size: 48px;
}
.content .page .article p {
    font-weight: 400;
    font-size: 18px;
    color: var(--dark-grey);
    margin-bottom: 20px;
    line-height: 30px;
}
.content .page .article strong {
    font-weight: 700;
}
.content .page .article a {
    color: var(--dark-blue);
    text-decoration: underline;
}
/*.content .page .article img {
    width: 100%;
}*/
.content .page .article .quote {
    padding: 50px;
    background-color: var(--lighter-blue);
    display: block;
    margin: 20px 0;
}

.content .page .article .quote.short {
    display: inline-block;
}

.content .page .social-media {
	display: flex;
	margin: 20px;
	flex-wrap: wrap;
}

.content .page .social-medias {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 10px 0;
}
.content .page .social-medias span {
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
    color: #2c334f;
}
.content .page .social-medias a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 20px;
}
.content .page .social-medias a img {
    width: 90%;
}
#blog-post .related-media {
    margin-top: 210px;
    flex-grow: 1;
}
.related-media.desktop {
	min-width:25%;
    display: none;
}

.related-media h3{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.related-media.mobile h3 {
    padding-right: 9rem;
}
.related-media.desktop h3 {
    padding-right: 47rem;
}


.related-media.mobile .related-items {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    /*overflow-x: scroll;*/
    width: 100%;
    align-items: center;
}
}
.related-media.mobile .related-items a {
    width: 250px;
    flex: 0 0 auto;
}
.related-media h3 {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 30px;
    margin: 30px;
}
.related-media .related-items {
}
.related-media .related-items a {
    display: inline-block;
    margin: 20px;
}
.related-media .related-items a img {
    width: 100%;
}
.related-media .related-items .related-items-bottom a h4 {
	font-weight: 700;
	color: var(--dark-blue);
	font-size: 20px;
	margin: 5px 0 20px 0;
}
/*newly added code for related image */
.related-items-bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .related-items-bottom a {
    display: flex;
    flex-direction: column;
    width: 300px;
    text-decoration: none;
    color: #333;
    padding: 12px;
  }

  .related-items-bottom a img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }

  .related-items-bottom a h4.title {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
	font-weight: 700;
	color: var(--dark-blue);
	font-size: 18px;
	margin: 5px 0 20px 0;
  }


/* blockquote styles for RTE */

.quotecol.qright {
    padding-left: 20px;
}

.quotecol {
    padding: 5px;
}

.quoteimg {
    max-width: 100%;
    height: auto;
    /*border-radius: 50%;*/
}

.quoteright {
    margin-bottom: 17px;
    display: block;
}

.blockquoterows {
    display: flex;
    align-items: center;
}
/* mobile */
@media (max-width: 600px) {
    .blockquoterows {
        flex-direction: column !important;
        align-items: center !important;
        padding-left: 0 !important;
    }

    .quotecol.qleft {
        margin-bottom: 20px;
    }

    .quotecol.qright {
        padding-left: 0 !important;
    }

    .quotecol.qleft quoteimg {
        width: 150px !important;
        height: 150px !important;
        border-radius: 50%;
    }
}

/* added class for blockquote image in blog detail page */
.blogquoteimg {
	float:left;
	width:35%;
	margin:10px 20px 10px 0;
}
#subscription-form .container {
    max-width: 700px;
    padding: 90px 20px 20px;
}

#subscription-form .container form {
    display: flex;
    flex-direction: column;
}
#subscription-form .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 40px 0;
}
#subscription-form .label {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-grey);
    margin: 0 0 20px 0;
}
#subscription-form .preferences {
    display: flex;
    flex-direction: column;
}
#subscription-form input {
    width: 100%;
    border: 1px solid var(--black);
    padding: 12px;
    margin: 0 0 22px 0;
}
#subscription-form .checkbox {
    display: flex;
    margin: 0 30px 20px 0;
    align-items: center;
    cursor: pointer;
}
#subscription-form .checkbox input {
    display: none;
}
#subscription-form .checkbox input:checked + .check {
    background: url("../img/icons/check.svg") no-repeat center/16px;
}
#subscription-form .checkbox .check {
    width: 30px;
    height: 30px;
    border: 1px solid var(--black);
    margin-right: 10px;
    flex-shrink: 0;
}
#subscription-form .checkbox span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-grey);
}
#subscription-form select {
    width: 100%;
    border: 1px solid var(--black);
    padding: 12px;
    margin: 0 0 22px 0;
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/icons/arrow-down.svg) no-repeat calc(100% - 10px) / 10px;
}
#subscription-form .btn {
    background-color: var(--dark-blue);
    align-self: flex-end;
    margin: 40px 0;
}
.comments {
    display: flex;
    width: 100%;
    /*margin: 40px 0 60px;*/
}
.comments a {
    background-color: var(--dark-blue);
    margin: 0 auto;
    text-transform: uppercase;
}
.tags {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    border-top: 1px solid var(--blue);
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}
.tags span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue);
    margin: 0 10px 20px;
}

#subscribe-blog {
    background-color: var(--light-grey);
    padding: 48px 0;
}
#subscribe-blog .container {
    display: flex;
    justify-content: center;
}
#subscribe-media {
    background-color: var(--light-grey);
    padding: 22px 0;
    margin-bottom: 48px;
}

#subscribe-media .container {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

#subscribe-media .title {
    margin: 0 0 22px 0;
}

#subscribe-media input {
    width: 100%;
    border: 1px solid var(--blue);
    padding: 12px;
    border-radius: 6px;
    margin: 0 0 22px 0;
}

#subscribe-media .btn {
    align-self: flex-end;
}

#subscribe-media .container .text-center p {
	font-size: 18px;
	margin-bottom: 15px;
	text-align: left;
}

#subscribe-media .container .text-center .required-field .control-label {
	text-align: left !important;
	font-size: 12px;
}

#subscribe-media .container .text-center .form-submit-border {
	text-align: right !important;
	text-align: -webkit-right !important;
}

#subscribe-media .container .text-center .scfSubmitButtonBorder {
    padding: 0;
}

#subscribe-media .container .text-center .has-error .validation-summary-errors ul li {
	text-align: left;
	color: red;
}

#subscribe-media .container .text-center .form-submit-border .btn,
#subscribe-media .container .text-center .scfSubmitButtonBorder .btn {
	background-color: var(--dark-grey);
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
}
#subscribe-media .container .text-center .scfSubmitButtonBorder .btn {
    float: right;
}

#subscribe-media .container .text-center .required-field .help-block {
	display: none;
}

#disclaimer .container {
	display: flex;
	justify-content: center;
	padding: 48px 0;
}

#disclaimer p {
    max-width: 1060px;
    padding: 20px;
    font-size: 14px;
    color: var(--dark-grey);
    text-align: center;
    line-height: 1.5;
}

@media only screen and (min-width: 420px) { /*original: 376px*/
    header .logo {
        display: block;
    }
    footer .social-media a.tafe {
        margin-right: 32px;
    }
    footer .social-media a {
        margin-right: 10px;
    }
    .featured-post h2 {
        font-size: 32px;
    }
	.featured-post p {
		font-size: 28px;
		margin-top: 0;
	}
    .titles.t2 .title-container {
        right: 0;
    }
    .titles.t3 .title-container {
        right: 0;
    }
    .titles .title-container > .banner:not(:first-child) {
        display: none;
    }

    .banners.b2 .banner-container {
        right: 0;
    }
    .banners.b3 .banner-container {
        right: 0;
    }
    .banners .banner-container > .banner:not(:first-child) {
        display: none;
    }
    #carousel {
        display: none;
    }
    #blog-landing .categories .title {
        flex-basis: auto;
        text-align: left;
        margin-right: 20px;
        float: left;
    }
    #media-post .content .page .article {
        max-width: 700px;
        margin: 100px auto 60px;
    }
    .related-media .related-items a {
        margin: 0 20px;
    }
    .content .page .social-media span {
        font-size: 20px;
    }

	.related-media.desktop:empty {
		display: none
	}

}

@media only screen and (min-width: 768px) {
    .featured-post {
        margin-top: -84px;
    }
    .featured-post h2 {
        font-size: 40px;
    }
	.featured-post p {
		font-size: 35px;
	}
    .content .page .article {
        margin: 0 40px 60px;
    }
    #subscription-form .preferences {
        display: flex;
        flex-direction: row;
    }
    .breadcrumbs {
        display: block;
    }
    .featured-post .contact-info {
        position: absolute;
        right: 0;
        width: 374px;
        height: 184px;
    }
    #media-post .content .page .article {
        margin: 0 auto 60px;
    }

    .option-header {
        flex-direction: row;
    }

	.banner {
		background-size: cover;
	}

	.media-contact {
		margin: 20px 90px;
	}

	.content .page .social-media {
		display: flex;
		margin: 0 90px 60px;
	}
}

@media only screen and (min-width: 1060px) {
    .content {
        padding: 0;
    }
    #blog-landing .featured-post .titles {
        padding: 20px 20px 20px 0;
        clip-path: polygon(0 0, 12px 20px, 24px 0, calc(100% + 10px) 0, calc(100% + 10px) calc(100% + 10px), 0 calc(100% + 10px));
    }
    header .toggle {
        display: none;
    }
    header nav a {
        display: flex;
    }
    .related-media.desktop {
        display: block;
    }
    .related-media.mobile {
        display: none;
    }
	.featured-post .contact-info {
		position: absolute;
		bottom: 0;
		left: 700px;
		width: 374px;
		height: 184px;
		padding:10px 20px;
		background-color: var(--lighter-blue);
		color: var(--dark-grey);
		font-size: 18px;
		margin: 0;
	}
	#page .content {
		display: flex;
	}
	.content .contact-info {
		bottom: 0;
		width: 340px;
		height: 127px;
		padding: 10px 20px;
		background-color: var(--lighter-blue);
		color: var(--dark-grey);
		font-size: 18px;
		margin: 0;
	}
}

.webform {
	margin: 0 auto;
	max-width: 1040px;
	padding: 90px 20px 20px;
}

.webform .scfForm {
	height: 100%;
	width: 100%;
	text-align: left;
	line-height: 1.4em;
}

.scfForm .scfTitleBorder {
	margin-bottom: 20px;
	color: var(--dark-blue);
	font-size: 40px;
	font-weight: 800;
}

.scfForm label.checkbox-label{
	margin-bottom:unset;
	margin-left: 10px;
}

.scfSectionContent .scfCheckBoxListLabel {
	width: 100%;
}

.scfCheckBoxList tbody tr {
	text-align: center;
}

.scfCheckBoxList tbody tr td {
	display:inline-block;
}

.fb_iframe_widget_fluid_desktop iframe {
	width:100% !important;
}

.scfForm input[type=checkbox]:checked {
	background-color: var(--white);
	display: inline-block;
	width: 10px;
	height: 15px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	box-shadow: unset;
}
/*Header searchbox fix for mvc layout*/
header .search {
	width: 90px;
}
@media only screen and (min-width: 641px) {
	header .search {
		width: 70px;
	}
}
@media only screen and (min-width: 1025px) {
	header .search {
		width: 90px;
	}
}
