/*
Global Variables

@import this file at the top of each page 
template file to make variables available.
*/
/*
Mixins

Add mixins to any css page using @include

e.g.
.element{
	@include transition( background .2s ease-out )
}
*/
/*
Theme Name: kickoff
Author: Daelen Berg
Author URI: http://arraystudios.com/
Description: A Blank Wordpress Starter Template

kickoff is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
*/
/*--------------------------------------------------------------
	TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Links
# Alignments
# Clearings
# Content
	## Comments
	## Media
	## Captions
	## Galleries
	## Columns
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  line-height: 0px;
  font-size: 0px;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-size: 16px;
  line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
  margin-top: 0px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #fff;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid #ccc;
  border-radius: 0px;
  background: #e6e6e6;
  color: black;
  font-size: 16px;
  line-height: 1;
  padding: 10px 30px;
  outline: none;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #afafaf;
  background: #afafaf;
}

button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  border-color: #ccc;
  background: #e6e6e6;
}

button:active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  border-color: #afafaf;
  background: #afafaf;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 0px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  vertical-align: middle;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus {
  color: #111;
  outline: 1px solid #b5bdff;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  padding: 5px 10px;
}

textarea {
  width: 100%;
  resize: none;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: #f36d5c;
}

a:hover,
a:focus,
a:active {
  color: #f0422c;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}

.clearfix:after,
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Media
--------------------------------------------------------------*/
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
## Columns
--------------------------------------------------------------*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  float: left;
  position: relative;
}

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

@media screen and (max-width: 750px) {
  .col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    float: left;
    position: relative;
  }
}
/*
HEADINGS
*/
.primary-heading {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 300;
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
}
@media screen and (max-width: 1520px) {
  .primary-heading {
    font-size: 50px;
  }
}
@media screen and (max-width: 900px) {
  .primary-heading {
    font-size: 30px;
  }
}

/*
.secondary-heading{
	font-family: $font-secondary;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.6px;
	margin-bottom: 10px;
	@media screen and ($tabSmll){
		font-size: 20px;
	}
	@media screen and (max-width: 550px){
		font-size: 18px;
	}
}
*/
.secondary-heading {
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 37px;
  line-height: 1.3;
  letter-spacing: 0.98px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1020px) {
  .secondary-heading {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .secondary-heading {
    font-size: 25px;
  }
}

/*
FONTS
*/
.lead-para {
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.6px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1020px) {
  .lead-para {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .lead-para {
    font-size: 18px;
  }
}

.blue-font, .Blue-font {
  color: #6fb7d5;
  font-weight: 800;
}
.blue-font a, .Blue-font a {
  color: #6fb7d5;
}

.orange-font, .Orange-font {
  color: #ea9054;
  font-weight: 800;
}
.orange-font a, .Orange-font a {
  color: #ea9054;
}

.green-font, .Green-font {
  color: #2fb776;
  font-weight: 800;
}
.green-font a, .Green-font a {
  color: #2fb776;
}

.gold-font, .Gold-font {
  color: #d2c26a;
  font-weight: 800;
}
.gold-font a, .Gold-font a {
  color: #d2c26a;
}

/*
LINKS
*/
.custom-link a {
  color: #f36d5c;
  display: inline-block;
  position: relative;
  background: url(/wp-content/themes/best-marriages/images/shell/arrow-sprite.png) no-repeat bottom right;
  padding-right: 20px;
  line-height: 12px;
}
.custom-link a:hover {
  color: #da3b27;
  background: url(/wp-content/themes/best-marriages/images/shell/arrow-sprite.png) no-repeat top right;
}

.custom-button-solid a {
  padding: 15px 50px 15px 25px;
  background: #f36d5c;
  background: #f36d5c url("/wp-content/themes/best-marriages/images/shell/arrow-right.png") right 20px center no-repeat;
  -webkit-background-size: 6px;
  -moz-background-size: 6px;
  -o-background-size: 6px;
  background-size: 6px;
  color: white;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  text-align: center;
  border: 1px solid #f36d5c;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.custom-button-solid a:hover {
  border: 1px solid #1aa8b1;
  background-color: #1aa8b1;
  color: white;
}

.custom-button, .custom-button-teal, .custom-button-pink {
  line-height: 0;
}
.custom-button a, .custom-button-teal a, .custom-button-pink a {
  padding: 15px 25px;
  background: transparent;
  color: #f36d5c;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  text-align: center;
  border: 1px solid #f36d5c;
  transition: background 0.25s ease-in, color 0.25s ease-in, border 0.25s ease-in;
  -moz-transition: background 0.25s ease-in, color 0.25s ease-in, border 0.25s ease-in;
  -webkit-transition: background 0.25s ease-in, color 0.25s ease-in, border 0.25s ease-in;
  -ms-transition: background 0.25s ease-in, color 0.25s ease-in, border 0.25s ease-in;
}
.custom-button a:hover, .custom-button-teal a:hover, .custom-button-pink a:hover {
  border: 1px solid transparent;
  background: #f36d5c;
  color: white;
}
@media screen and (max-width: 1020px) {
  .custom-button, .custom-button-teal, .custom-button-pink {
    height: initial;
  }
  .custom-button a, .custom-button-teal a, .custom-button-pink a {
    font-size: 13px;
  }
}
@media screen and (max-width: 750px) {
  .custom-button a, .custom-button-teal a, .custom-button-pink a {
    margin-top: 0;
  }
}

.custom-button-teal a {
  background: #1aa8b1;
  color: white;
  border: none;
  transition: all 300ms ease;
}
.custom-button-teal a:hover {
  border: none;
}

.custom-button-pink a {
  background: #f36d5c;
  color: white;
  border: none;
  transition: all 300ms ease;
}
.custom-button-pink a:hover {
  border: none;
  background: #1aa8b1;
}

/*
Navigation Stylesheet

Holding styling for header/footer navigation
and mobile nav.
*/
#navbar {
  background: #fff;
  padding: 0;
  height: 100px;
  position: relative;
  z-index: 99999;
}
@media screen and (max-width: 1200px) {
  #navbar {
    height: 86px;
  }
}
@media screen and (max-width: 1020px) {
  #navbar {
    position: relative;
    height: 70px;
  }
}
@media screen and (max-width: 750px) {
  #navbar {
    padding: 0;
    height: 60px;
  }
}

#page {
  min-height: 100%;
  margin: 0 auto 0;
}

.site-branding {
  display: inline-block;
  float: left;
  line-height: 0px;
  padding: 13px 0 0 50px;
  font-size: 0px;
}
@media screen and (max-width: 1615px) {
  .site-branding {
    padding: 13px 0 0 30px;
  }
}
@media screen and (max-width: 1520px) {
  .site-branding {
    padding: 20px 0 0 30px;
  }
  .site-branding svg {
    height: 60px;
  }
}
@media screen and (max-width: 1320px) {
  .site-branding {
    padding: 30px 0 0 30px;
  }
  .site-branding svg {
    height: 50px;
    width: 180px;
  }
}
@media screen and (max-width: 1200px) {
  .site-branding {
    padding: 18px 0 0 25px;
  }
}
@media screen and (max-width: 1100px) {
  .site-branding {
    padding: 25px 0px 0px 20px;
  }
  .site-branding svg {
    height: 40px;
    width: 145px;
  }
}
@media screen and (max-width: 1020px) {
  .site-branding {
    padding: 10px 0px 0px 20px;
  }
}
@media screen and (max-width: 1020px) {
  .site-branding svg {
    margin: 0 auto;
    float: none;
    display: block;
    height: 50px;
  }
  .site-branding img {
    max-height: 44px;
  }
}
@media screen and (max-width: 750px) {
  .site-branding svg {
    height: 40px;
  }
}
.site-branding:hover svg {
  opacity: 0.7;
}

nav ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.header-contact {
  float: right;
  text-align: right;
  padding: 32px 50px 33px 30px;
  font-size: 0px;
  line-height: 0px;
}
.header-contact a {
  display: inline-block;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.header-contact a:not(:first-of-type) {
  padding-left: 15px;
}
@media screen and (max-width: 1500px) {
  .header-contact a:not(:first-of-type) {
    padding-left: 10px;
  }
}
.header-contact a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1615px) {
  .header-contact {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1500px) {
  .header-contact {
    padding: 35px 30px 33px 20px;
  }
  .header-contact img {
    width: 26px;
  }
}
@media screen and (max-width: 1280px) {
  .header-contact {
    padding: 35px 20px 35px 20px;
  }
  .header-contact img {
    width: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .header-contact {
    padding: 30px 20px 30px 20px;
  }
}
@media screen and (max-width: 1020px) {
  .header-contact {
    margin-right: 60px;
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  .header-contact {
    padding: 20px;
  }
}
@media screen and (max-width: 750px) {
  .header-contact {
    padding: 17px 0px;
  }
  .header-contact a {
    padding: 0px 10px 0 0 !important;
  }
}

#header_nav,
.menu ul {
  float: right;
  display: block;
}
#header_nav #menu-item-38 .sub-menu,
.menu ul #menu-item-38 .sub-menu {
  width: 750px;
  background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/marriageRings.png) no-repeat center right 30px;
}
@media screen and (max-width: 1200px) {
  #header_nav #menu-item-38 .sub-menu,
.menu ul #menu-item-38 .sub-menu {
    background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/marriageRings.png) no-repeat center right 20px;
    -webkit-background-size: 100px;
    -moz-background-size: 100px;
    -o-background-size: 100px;
    background-size: 100px;
  }
}
#header_nav #menu-item-36 .sub-menu,
.menu ul #menu-item-36 .sub-menu {
  width: 500px;
  background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/icon-workshop.png) no-repeat center right 40px;
}
@media screen and (max-width: 1200px) {
  #header_nav #menu-item-36 .sub-menu,
.menu ul #menu-item-36 .sub-menu {
    background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/icon-workshop.png) no-repeat center right 20px;
    -webkit-background-size: 100px;
    -moz-background-size: 100px;
    -o-background-size: 100px;
    background-size: 100px;
  }
}
#header_nav #menu-item-37 .sub-menu,
.menu ul #menu-item-37 .sub-menu {
  width: 440px;
  background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/team-icon.png) no-repeat center right 40px;
  -webkit-background-size: 80px;
  -moz-background-size: 80px;
  -o-background-size: 80px;
  background-size: 190px;
}
@media screen and (max-width: 1200px) {
  #header_nav #menu-item-37 .sub-menu,
.menu ul #menu-item-37 .sub-menu {
    background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/team-icon.png) no-repeat center right 50px;
    -webkit-background-size: 140px;
    -moz-background-size: 140px;
    -o-background-size: 140px;
    background-size: 140px;
  }
}
#header_nav #menu-item-35 .sub-menu,
.menu ul #menu-item-35 .sub-menu {
  width: 480px;
  background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/icon-lock.png) no-repeat center right 40px;
  left: auto;
  right: 0px;
  -webkit-background-size: 140px;
  -moz-background-size: 140px;
  -o-background-size: 140px;
  background-size: 140px;
}
@media screen and (max-width: 1200px) {
  #header_nav #menu-item-35 .sub-menu,
.menu ul #menu-item-35 .sub-menu {
    background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/icon-lock.png) no-repeat center right 20px;
    -webkit-background-size: 100px;
    -moz-background-size: 100px;
    -o-background-size: 100px;
    background-size: 100px;
  }
}
#header_nav #menu-item-4395 .sub-menu,
.menu ul #menu-item-4395 .sub-menu {
  width: 390px;
  background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/location.png) no-repeat center right 40px;
  left: auto;
  right: 0px;
  -webkit-background-size: 110px;
  -moz-background-size: 110px;
  -o-background-size: 110px;
  background-size: 110px;
}
@media screen and (max-width: 1200px) {
  #header_nav #menu-item-4395 .sub-menu,
.menu ul #menu-item-4395 .sub-menu {
    background: #f0f0f0 url(/wp-content/themes/best-marriages/images/shell/location.png) no-repeat center right 20px;
    -webkit-background-size: 100px;
    -moz-background-size: 100px;
    -o-background-size: 100px;
    background-size: 100px;
  }
}
#header_nav li,
.menu ul li {
  float: left;
  position: relative;
}
#header_nav li:hover a,
.menu ul li:hover a {
  color: #04a7b1;
  border-bottom: 3px solid #04a7b1;
}
#header_nav li .sub-menu,
.menu ul li .sub-menu {
  position: absolute;
  top: 100px;
  left: 0;
  padding: 30px 0 40px 30px;
  z-index: 999;
  display: none;
  background-color: #f0f0f0;
}
@media screen and (max-width: 1200px) {
  #header_nav li .sub-menu,
.menu ul li .sub-menu {
    padding: 20px 0 20px 25px;
    top: 86px;
    width: 400px !important;
  }
}
#header_nav li .sub-menu li,
.menu ul li .sub-menu li {
  width: 252px;
  margin-right: 25px;
  float: left;
  display: inline-block;
  margin-bottom: 6px;
}
@media screen and (max-width: 1200px) {
  #header_nav li .sub-menu li,
.menu ul li .sub-menu li {
    margin-bottom: 0px;
  }
}
#header_nav li .sub-menu li a,
.menu ul li .sub-menu li a {
  font-size: 15px;
  line-height: 1.5;
  padding: 0;
  border-bottom: none;
  color: #272727;
}
@media screen and (max-width: 1520px) {
  #header_nav li .sub-menu li a,
.menu ul li .sub-menu li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  #header_nav li .sub-menu li a,
.menu ul li .sub-menu li a {
    font-size: 13px;
    line-height: 1.4;
  }
}
#header_nav li .sub-menu li a:hover,
.menu ul li .sub-menu li a:hover {
  color: #1aa8b1;
}
@media screen and (max-width: 1020px) {
  #header_nav li,
.menu ul li {
    float: none;
  }
}
#header_nav li a,
.menu ul li a {
  line-height: 94px;
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  color: #272727;
  text-decoration: none;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  padding: 0 15px;
  font-size: 16px;
  display: inline-block;
  letter-spacing: 0.45px;
  font-weight: 300;
  transition: color 0.2s ease-in, border 0.2s ease-in;
}
#header_nav li a:hover,
.menu ul li a:hover {
  color: #04a7b1;
  border-bottom: 3px solid #04a7b1;
}
@media screen and (max-width: 1520px) {
  #header_nav li a,
.menu ul li a {
    padding: 0 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1280px) {
  #header_nav li a,
.menu ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  #header_nav li a,
.menu ul li a {
    padding: 0 10px;
    font-size: 13px;
    line-height: 80px;
  }
}
@media screen and (max-width: 1100px) {
  #header_nav li a,
.menu ul li a {
    padding: 0px 8px;
  }
}
@media screen and (max-width: 750px) {
  #header_nav li a,
.menu ul li a {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1020px) {
  #header_nav,
.menu ul {
    display: none;
  }
}

/* Footer Navigation. */
.site-footer {
  padding: 0;
  background: #fff;
  clear: both;
  height: 560px;
  padding: 65px 0 80px;
}
@media screen and (max-width: 1345px) {
  .site-footer nav {
    float: left;
    clear: left;
    margin-top: 25px;
  }
}
@media screen and (max-width: 1345px) and (max-width: 1020px) {
  .site-footer nav {
    float: none;
  }
}
@media screen and (max-width: 1050px) {
  .site-footer {
    height: initial;
    padding: 25px;
  }
}
@media screen and (max-width: 1020px) {
  .site-footer {
    padding: 25px 25px 0px 25px;
    background: #f4f4f4;
  }
}
@media screen and (max-width: 750px) {
  .site-footer {
    padding-bottom: 40px;
  }
}

.footer-wrp {
  max-width: 1280px;
  padding: 0px 40px;
  margin: 0 auto;
  height: inherit;
  display: block;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .footer-wrp {
    width: 100%;
  }
}
@media screen and (max-width: 1050px) {
  .footer-wrp {
    padding: 0px;
  }
}

.footer-branding {
  display: block;
  line-height: 0px;
  font-size: 0px;
  padding: 0px 0px 30px 0px;
}
@media screen and (max-width: 1345px) {
  .footer-branding {
    width: 100%;
  }
}
@media screen and (max-width: 1050px) {
  .footer-branding {
    top: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-branding {
    padding: 0px;
  }
}

@media screen and (max-width: 1020px) {
  .footer-logo {
    display: block;
    margin: 0 auto;
  }
}

.contact-information {
  position: absolute;
  right: 40px;
}
@media screen and (max-width: 1020px) {
  .contact-information {
    left: 0px;
    position: relative;
    float: none;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.contact-information .footer-contact {
  padding: 15px 0px 0px 0px;
}
.contact-information .footer-contact strong {
  line-height: 1.5;
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  color: #272727;
  text-decoration: none;
  font-size: 14px;
  width: 100%;
  display: inline-block;
  letter-spacing: 0.45px;
  font-weight: 500;
}
.contact-information > a {
  line-height: 1.5;
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  color: #272727;
  text-decoration: none;
  font-size: 14px;
  width: 100%;
  display: inline-block;
  letter-spacing: 0.45px;
  font-weight: 500;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.contact-information > a:hover {
  color: #04a7b1;
}
@media screen and (max-width: 1050px) {
  .contact-information > a {
    font-size: 11px;
  }
}
@media screen and (max-width: 1020px) {
  .contact-information > a {
    display: none;
  }
}
.contact-information span {
  display: block;
  line-height: 1.5;
  margin-top: 12px;
  font-size: 13px;
  padding: 0;
  font-family: "Raleway", Helvetica, Roboto, Arial, sans-serif;
  clear: left;
}
@media screen and (max-width: 1050px) {
  .contact-information span {
    font-size: 11px;
  }
}
@media screen and (max-width: 900px) {
  .contact-information span {
    font-size: 13px;
  }
}

#footer_nav {
  float: left;
  width: 960px;
}
@media screen and (max-width: 1345px) {
  #footer_nav {
    margin: 0px;
    width: 860px;
  }
}
@media screen and (max-width: 1260px) {
  #footer_nav {
    margin: 0px;
    width: 760px;
  }
}
@media screen and (max-width: 1050px) {
  #footer_nav {
    width: 675px;
  }
}
@media screen and (max-width: 1020px) {
  #footer_nav {
    display: none;
  }
}
#footer_nav li {
  width: 25%;
  float: left;
  position: relative;
  padding-right: 15px;
}
@media screen and (max-width: 1050px) {
  #footer_nav li {
    padding: 0 2.5%;
  }
}
@media screen and (max-width: 1020px) {
  #footer_nav li {
    float: none;
  }
}
#footer_nav li .sub-menu {
  padding: 0;
}
#footer_nav li .sub-menu li {
  float: left;
  width: 100%;
  margin-top: 12px;
  padding: 0;
}
#footer_nav li .sub-menu li a {
  font-size: 13px;
  float: left;
  padding: 0;
  font-family: "Raleway", Helvetica, Roboto, Arial, sans-serif;
  clear: left;
}
#footer_nav li a {
  line-height: 1.5;
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  color: #272727;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 0.45px;
  font-weight: 500;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
#footer_nav li a:hover {
  color: #04a7b1;
}
@media screen and (max-width: 1050px) {
  #footer_nav li a {
    font-size: 11px;
  }
}
@media screen and (max-width: 1020px) {
  #footer_nav li a {
    display: block;
    width: 100%;
  }
}

.social-container {
  width: 319px;
  margin: -100px auto 60px;
  clear: both;
}
@media screen and (max-width: 1500px) {
  .social-container {
    margin: -50px auto 60px;
  }
}
@media screen and (max-width: 1020px) {
  .social-container {
    float: none;
    position: relative;
    right: 0px;
    clear: both;
    margin: 0 auto;
    bottom: 0px;
  }
}
@media screen and (max-width: 400px) {
  .social-container {
    width: 280px;
  }
}
.social-container span {
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 1020px) {
  .social-container span {
    font-size: 18px;
  }
}
.social-container .newsletter-top {
  margin: 0 -5px 10px;
}
.social-container .newsletter-top label {
  width: 50%;
  float: left;
  padding: 0 5px;
}
@media screen and (max-width: 1305px) {
  .social-container .newsletter-top {
    margin: 0 -5px 5px;
  }
}
.social-container input[type=text], .social-container input[type=email] {
  background: #eeeeee;
  border: none;
  font-size: 12px;
  color: #1e1e1e;
  height: 40px;
  padding: 0 20px;
}
@media screen and (max-width: 1020px) {
  .social-container input[type=text], .social-container input[type=email] {
    background: white;
  }
}
.social-container input[type=submit] {
  clear: right;
  float: right;
  margin-top: 12px;
  color: #1aa8b1;
  display: inline-block;
  position: relative;
  border: none;
  padding: 0 20px;
  font-family: "Raleway", Helvetica, Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
  background: url(/wp-content/themes/best-marriages/images/shell/submit-arrow-sprite.png) no-repeat bottom right;
}
.social-container input[type=submit]:hover {
  color: #da3b27;
  background: url(/wp-content/themes/best-marriages/images/shell/submit-arrow-sprite.png) no-repeat top right;
}
.social-container label .wpcf7-not-valid {
  background: #f1cccc;
}
.social-container .wpcf7-not-valid-tip {
  display: none;
}

.social-icons-container {
  margin: 15px -17.5px 0;
  text-align: center;
}
@media screen and (max-width: 400px) {
  .social-icons-container {
    margin: 15px 0 0 0;
    float: none;
    text-align: center;
  }
}
.social-icons-container .icons {
  height: 35px;
  width: 35px;
  display: inline-block;
  margin: 0 17.5px;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
@media screen and (max-width: 400px) {
  .social-icons-container .icons {
    margin: 0px 5px;
  }
}
.social-icons-container .icons:hover {
  opacity: 0.7;
}
.social-icons-container #fb-icon {
  background: url(/wp-content/themes/best-marriages/images/shell/facebook.png) no-repeat center center;
  -webkit-background-size: 32px;
  -moz-background-size: 32px;
  -o-background-size: 32px;
  background-size: 32px;
}
.social-icons-container #twitter-icon {
  background: url(/wp-content/themes/best-marriages/images/shell/twitter.png) no-repeat center center;
  -webkit-background-size: 32px;
  -moz-background-size: 32px;
  -o-background-size: 32px;
  background-size: 32px;
}
.social-icons-container #gplus-icon {
  background: url(/wp-content/themes/best-marriages/images/shell/google.png) no-repeat center center;
  -webkit-background-size: 32px;
  -moz-background-size: 32px;
  -o-background-size: 32px;
  background-size: 32px;
}
.social-icons-container #youtube-icon {
  background: url(/wp-content/themes/best-marriages/images/shell/youtube.png) no-repeat center center;
  -webkit-background-size: 32px;
  -moz-background-size: 32px;
  -o-background-size: 32px;
  background-size: 32px;
}
@media screen and (max-width: 1305px) {
  .social-icons-container {
    margin: 15px 0;
  }
}

.back-top {
  display: none;
}
.back-top:focus {
  color: white;
}
.back-top:hover {
  color: white;
}
.back-top span {
  padding: 3px 20px 0 0;
  background: url("/wp-content/themes/best-marriages/images/shell/arrow-up.png") right center no-repeat;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  background-size: 11px;
}
@media screen and (max-width: 750px) {
  .back-top {
    z-index: 999;
    text-align: center;
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #f36d5c;
    color: white;
    padding: 8px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation. */
#mobile_nav {
  display: none;
  clear: both;
  text-align: center;
  position: absolute;
  top: 60px;
  left: 0;
  font-weight: 400;
  z-index: 200;
  display: none;
  width: 100%;
  background: #f36d5c;
}
#mobile_nav li.menu-item-has-children > a {
  background: url("/wp-content/themes/best-marriages/images/shell/arrow-right.png") right 20px center no-repeat;
  -webkit-background-size: 6px;
  -moz-background-size: 6px;
  -o-background-size: 6px;
  background-size: 6px;
}
#mobile_nav li.open-nav > a {
  background: url("/wp-content/themes/best-marriages/images/shell/arrow-down.png") right 20px center no-repeat;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  background-size: 11px;
}
#mobile_nav li a {
  line-height: 1.5;
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 400;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#mobile_nav li .sub-menu {
  float: none;
  background: #d95c4c;
}
#mobile_nav li .sub-menu li a {
  line-height: 1.5;
}
#mobile_nav > li:first-child a {
  border-top: 1px solid rgba(39, 39, 39, 0.3);
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 14px 15px 15px 15px;
  background: none;
  border: none;
  outline: none;
  border-left: 1px solid #e7e7e7;
}
.nav-toggle:focus {
  background: none;
  outline: none;
}
.nav-toggle:active {
  background: none;
  outline: none;
}
.nav-toggle:hover {
  background: none;
  outline: none;
}
@media screen and (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .nav-toggle {
    padding: 10px 13px 11px 13px;
  }
}

.nav-toggle span {
  height: 3px;
  width: 30px;
  display: block;
  background: #1aa8b1;
  margin: 5px 0;
}

/*
Layout Stylesheet

Contains sitewide layout styling.
*/
body {
  font-family: "Raleway", Helvetica, Roboto, Arial, sans-serif;
  line-height: 2;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 550px) {
  body {
    font-size: 13px;
  }
}

p {
  margin: 0;
}

figure {
  margin: 0px 0px 15px 0;
}

.announcement {
  padding: 15px 30px;
  color: white;
  background: #f36d5c;
}
.announcement .announcement-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.modal-outer {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 999999;
  background: rgba(244, 244, 244, 0.8);
  display: none;
}
.modal-outer .modal-wrap {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow-y: scroll;
  padding: 100px;
}
@media screen and (max-width: 900px) {
  .modal-outer .modal-wrap {
    padding: 40px 5px;
  }
}
.modal-outer .modal-wrap .modal {
  padding: 50px;
  background: white;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 900px) {
  .modal-outer .modal-wrap .modal {
    padding: 25px;
  }
}
.modal-outer .modal-wrap .modal .modal-close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  background: #f36d5c;
  background: #f36d5c url("/wp-content/themes/best-marriages/images/shell/close.png") center center no-repeat;
  background-size: 18px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.modal-outer .modal-wrap .modal .modal-close:hover {
  background-color: #1aa8b1;
}
.modal-outer .modal-wrap .modal .primary-heading, .modal-outer .modal-wrap .modal .secondary-heading {
  color: #f36d5c;
}

.pagination {
  text-align: center;
  clear: both;
}
.pagination a {
  padding: 5px 10px;
  background: #f36d5c;
  color: white;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.pagination a:hover {
  color: white;
  background: #cb5545;
}
.pagination span {
  padding: 5px 10px;
  color: white;
  background: #9c9c9c;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 10px 0;
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #f36d5c;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
a:hover {
  color: #1aa8b1;
}

ul, ol {
  margin: 0px;
  padding: 0px 0px 15px 17px;
}

.alignleft {
  display: inline-block;
  float: left;
  margin: 10px 10px 10px 0;
}

.alignright {
  display: inline-block;
  float: right;
  margin: 10px 0 10px 10px;
}

.aligncenter {
  display: block;
  margin: 10px auto;
  float: none;
}

.site-main table td {
  vertical-align: top;
}

.wp-audio-shortcode {
  max-width: 500px;
  margin: 0 auto;
}

.password-form {
  max-width: 460px;
  margin: 0 auto;
  padding: 50px 30px;
}
.password-form input[type=submit] {
  padding: 0;
  padding-left: 45px;
  padding-right: 45px;
  height: 45px;
  border: none;
  color: white;
  font-size: 15px;
  background: #e7675a;
  font-weight: bold;
  display: block;
  margin-top: 20px;
  transition: background-color ease 0.3s;
}
.password-form input[type=submit]:hover {
  background: #f19388;
}

.workshops {
  text-align: center;
  font-size: 0px;
  margin: 0px auto 70px auto;
}
.workshops h2 {
  font-size: 24px !important;
}
.workshops .custom-link {
  font-size: 15px;
}
.workshops .workshop {
  float: none;
  display: inline-block;
  padding: 30px 20px 20px 20px;
  width: 25%;
  font-size: 15px;
  margin-bottom: 30px;
  vertical-align: top;
}
@media screen and (max-width: 900px) {
  .workshops .workshop {
    padding: 20px 15px 20px 15px;
  }
}
@media screen and (max-width: 800px) {
  .workshops .workshop {
    width: 50%;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 500px) {
  .workshops .workshop .custom-button a {
    padding: 10px 15px;
  }
}
.workshops .workshop .workshop-title {
  font-family: "Montserrat Alternates", Helvetica, Roboto, Arial, sans-serif;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10px;
  display: block;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .workshops .workshop .workshop-title {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (max-width: 500px) {
  .workshops .workshop .workshop-title {
    font-size: 13px;
    line-height: 19px;
  }
}
.workshops .workshop img {
  margin-bottom: 15px;
}
.workshops .workshop .custom-button {
  margin-top: 20px;
}

.page-id-56 .content-wrap {
  width: 1000px;
  padding: 70px 0;
}
@media screen and (max-width: 1105px) {
  .page-id-56 .content-wrap {
    width: 100%;
    padding: 70px;
  }
}
@media screen and (max-width: 900px) {
  .page-id-56 .content-wrap {
    padding: 40px;
  }
}
@media screen and (max-width: 400px) {
  .page-id-56 .content-wrap {
    padding: 30px 25px;
  }
}

.content-wrap {
  width: 1300px;
  margin: 0 auto;
  display: block;
  float: none;
  padding: 70px;
}
@media screen and (max-width: 1300px) {
  .content-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .content-wrap {
    padding: 30px;
  }
}
.content-wrap table {
  margin: 0;
}
@media screen and (max-width: 1300px) {
  .content-wrap {
    width: 100%;
  }
}

.page-id-56 .intro {
  text-align: left;
  max-width: 100%;
}

.intro {
  text-align: center;
  margin: 0 auto 70px;
  max-width: 930px;
}
@media screen and (max-width: 900px) {
  .intro {
    margin-bottom: 30px;
  }
}

.page-id-56 .col-wrap {
  margin: 0 -25px;
}
@media screen and (max-width: 900px) {
  .page-id-56 .col-wrap {
    margin: 0px;
  }
}
.page-id-56 .col-wrap > div {
  padding: 0 25px;
}
@media screen and (max-width: 900px) {
  .page-id-56 .col-wrap > div {
    width: 100%;
    padding: 0px 0px 20px 0;
  }
}

.col-wrap {
  margin: 0px -45px;
}
@media screen and (max-width: 900px) {
  .col-wrap {
    margin: 0px;
  }
}
.col-wrap > div {
  padding: 0px 25px;
}
@media screen and (max-width: 900px) {
  .col-wrap > div {
    width: 100%;
    padding: 0px;
  }
}

.slides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.slides:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
  z-index: 3;
}

.banner {
  color: white;
  text-align: center;
  position: relative;
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.banner:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: black;
  opacity: 0.55;
}
.banner .banner-inner {
  position: relative;
  z-index: 9;
  margin: 0 auto;
  max-width: 1300px;
  padding: 100px 50px;
}
@media screen and (max-width: 900px) {
  .banner .banner-inner {
    padding: 70px 30px 40px 30px;
  }
}
@media screen and (max-width: 400px) {
  .banner .banner-inner {
    padding: 60px 25px 25px 25px;
  }
}
.banner .banner-inner .banner-text {
  max-width: 1000px;
  margin: 0 auto;
}
.banner .banner-inner #breadcrumbs {
  position: absolute;
  top: 30px;
  left: 50px;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .banner .banner-inner #breadcrumbs {
    font-size: 12px;
    top: 20px;
    left: 30px;
  }
}
@media screen and (max-width: 400px) {
  .banner .banner-inner #breadcrumbs {
    left: 20px;
    font-size: 10px;
    line-height: 1.5;
  }
}
.banner .banner-inner #breadcrumbs a {
  color: white;
}
.banner .banner-inner #breadcrumbs a:hover {
  color: #f36d5c;
}
.banner .banner-inner .custom-button a {
  background: #f36d5c;
  color: white;
}
.banner .banner-inner .custom-button a:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.portal-wrapper {
  height: 370px;
}
@media screen and (max-width: 1200px) {
  .portal-wrapper {
    height: initial;
  }
}
.portal-wrapper .portal {
  background-position: top center;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  height: inherit;
  position: relative;
  z-index: 1;
  display: table;
}
@media screen and (max-width: 900px) {
  .portal-wrapper .portal {
    width: 100%;
    float: left;
    clear: left;
  }
}
.portal-wrapper .portal .portal-text-container {
  position: relative;
  z-index: 3;
  color: #fff;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 1200px) {
  .portal-wrapper .portal .portal-text-container {
    height: 300px;
    padding: 0 50px;
  }
}
@media screen and (max-width: 1020px) {
  .portal-wrapper .portal .portal-text-container {
    padding: 50px;
  }
}
@media screen and (max-width: 550px) {
  .portal-wrapper .portal .portal-text-container {
    padding: 25px;
  }
}
.portal-wrapper .portal .portal-text-wrp {
  width: 510px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1200px) {
  .portal-wrapper .portal .portal-text-wrp {
    width: 100%;
  }
}
.portal-wrapper .portal .custom-button a:hover {
  border: 1px solid #fff;
  color: #fff;
}
.portal-wrapper .portal:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.25;
  z-index: 2;
}

.cta {
  background: #eee;
  clear: left;
}
.cta .cta-inner {
  padding: 70px 50px;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .cta .cta-inner {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 400px) {
  .cta .cta-inner {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 750px) {
  .cta .cta-inner table {
    display: block;
  }
  .cta .cta-inner table td[style] {
    display: block;
    width: 100% !important;
  }
}

blockquote {
  margin: 0;
  background: #eeeeee;
  text-align: center;
  padding: 60px 80px;
}
@media screen and (max-width: 1000px) {
  blockquote {
    padding: 30px;
  }
}

.portal-wrap {
  margin-bottom: 0px;
}
@media screen and (max-width: 750px) {
  .portal-wrap {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .portal-wrap tbody {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .portal-wrap tr {
    display: block;
  }
}
.portal-wrap td {
  width: 50%;
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  vertical-align: middle;
  padding: 60px 10% 70px;
  position: relative;
  color: white;
}
@media screen and (max-width: 1520px) {
  .portal-wrap td {
    padding: 50px 8%;
  }
}
@media screen and (max-width: 1200px) {
  .portal-wrap td {
    padding: 40px 5%;
  }
}
@media screen and (max-width: 750px) {
  .portal-wrap td {
    display: block;
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 400px) {
  .portal-wrap td {
    padding: 30px 25px;
  }
}
.portal-wrap td div {
  position: relative;
  z-index: 9;
}
.portal-wrap td:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: black;
  opacity: 0.55;
}
.portal-wrap td p {
  line-height: 2;
}
.portal-wrap .custom-button a {
  background: #f36d5c;
  color: white;
}
.portal-wrap .custom-button a:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.screen-reader-text {
  display: none;
}

.credentials-wrapper {
  float: left;
  clear: left;
  margin-top: 20px;
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 400px) {
  .credentials-wrapper {
    padding-left: 40px;
  }
}
.credentials-wrapper .number {
  position: absolute;
  left: 0px;
  font-size: 38px;
  color: #f36d5c;
  font-weight: bold;
  width: 50px;
  line-height: 1;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 400px) {
  .credentials-wrapper .number {
    width: 40px;
  }
}
.credentials-wrapper .text {
  display: inline-block;
  float: left;
  max-width: 400px;
}

.search-wrap {
  max-width: 366px;
  margin: 0 auto;
  position: relative;
}
.search-wrap .search-field {
  width: 100%;
  display: block;
  border: none;
  background: none;
  border-bottom: 3px solid #1aa8b1;
  margin-bottom: 60px;
  padding-left: 0px;
  border-radius: 0px;
  -webkit-appearance: none;
}
.search-wrap .search-field:focus {
  outline: none;
}
.search-wrap .search-submit {
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: url("/wp-content/themes/best-marriages/images/shell/search.png") center center no-repeat;
  font-size: 0px;
  border: none;
  height: 60px;
  padding: 0px;
  width: 30px;
}
.search-wrap .search-submit:hover {
  background: url("/wp-content/themes/best-marriages/images/shell/search.png") center center no-repeat;
}
.search-wrap .search-submit:focus {
  background: url("/wp-content/themes/best-marriages/images/shell/search.png") center center no-repeat;
  outline: none;
}
.search-wrap .search-submit:active {
  background: url("/wp-content/themes/best-marriages/images/shell/search.png") center center no-repeat;
}

/*# sourceMappingURL=styles.css.map */
