/****************************************************
PLACEHOLDER
****************************************************/

/* GENERAL */

header {
	display: none !important;
}

.mobile-navigation-menu {
	display: none !important;
}

body {
  margin: 0;
  background: url('../images/placeholder-bg-2.jpg');
  background-position-x: center;
  background-repeat: no-repeat;
}

body:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(20, 23, 47, 0.5);
  pointer-events: none;
}

#wrapper {
  background: #fff;
	width: 90%;
	margin: 0 auto 60px;
	padding: 0;
	border-radius: 20px;
  z-index: 1;
  position: relative;
}

h1, h2, p, a, span {
    font-family: 'Roboto', sans-serif;
    color: #000;
}

h1 {
    font-size: 50px;
    text-transform: uppercase;
	margin: 0;
	color: #00315A;
}

h2 {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
}

h3 {
    margin: 7px 0;
}

p {
    font-size: 15px;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #00315A;
}

a:hover,
a:focus {
	color: #00315A;
	text-decoration: underline;
}

.sm-margin-right {
    margin-right: 5px;
}

.row {
    max-width: 1280px;
    margin-right: auto;
	margin-left: auto;
	width: 100% !important;
}

.bold {
    font-weight: 700;
}

.light {
    font-weight: 100;
    font-style: italic;
}

/* HEADER */
.header .row {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* CONTENT */
.content {
  text-align: center;
  margin: 60px 0 0;
	width: 100%;
	/* padding: 15px 30px 25px; */
}

.columns {
  padding: 20px 20px 0;
}

.content .row {
    width: 80%;
}

.content p {
    line-height: 25px;
}

.intro-content {
  max-width: 90%;
  margin: 0 auto;
}

h3 span {
  display: block;
}

/* CONTACT */
.contact {
    text-align: center;
}

.contact .button {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    color: #fff;
    background: #00315A;
    text-decoration: none;
    padding: 12px 30px;
    margin-top: 25px;
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact p {
    font-size: 18px;
    font-weight: 400;
    margin: 5px 0;
    color: #070B2E;
}

.contact a {
    color: #070B2E;
}

.contact a:hover,
.contact a:focus {
    background: #070B2E;
    color: #fff;
}

/* FOOTER */
footer {
    background: #00192F;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .footer-item {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

footer .footer-item:nth-child(2) {
    text-align: center;
}

footer p {
    margin: 2px 0;
    font-size: 12px;
    letter-spacing: 1px;
}

footer .footer-text {
    text-align: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

footer .footer-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

footer a {
    color: #fff;
}

footer .icon {
    color: #AF9864;
}

/* RESPONSIVE */

@media screen and (min-width: 640px) {
  h3 span {
    display: inline;
  }
  
  h3 span:first-child:after {
    content: "|";
    margin: 0 5px;
  }
}

@media screen and (min-width: 768px) {

	#wrapper {
		width: 70%;
	}

    h1 {
        font-size: 70px;
    }

    .practices-list {
        flex-direction: row;
    }

    .single-practice {
        width: 40%;
    }

    footer {
        flex-direction: row;
        justify-content: center;
    }
    
    footer .footer-item {
        width: 100%;
        text-align: center;
    }

    footer .footer-item:nth-child(1) .footer-inner {
        align-items: flex-start;
    }
}
@media screen and (min-width: 1024px) {

    h1 {
		font-size: 49px;
	}

    .header .row {
        padding: 15px 30px;
    }

    .content .row {
        width: 50%;
    }

    .single-practice {
        width: 25%;
    }
}

@media screen and (min-width: 1025px) {
  #wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  body {
    height: 100vh;
    background-size: cover;
  }
}

@media screen and (min-width: 1280px) {
    h1 {
		font-size: 62px;
	}
}

@media screen and (min-width: 1920px) {
    body {
        position: relative;
        height: 100vh;
    }

    .content .row {
        width: 40%;
    }

    footer {
        position: absolute;
        bottom: 0;
    }
}