/*-- -------------------------- -->
<---         CORE STYLES        -->
<--- -------------------------- -*/

* {
	-webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.desktop-nav {
    display: none !important;
}

.tablet {
    display: none;
}

.colored-boxes {
    text-align: center;
    position: absolute;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 8px;
    width:100px;
    z-index: 100;
}

.colored-boxes span {
    display: inline-block;
    height: 8px;
    width: 27px;
    vertical-align: top;
    -webkit-transform: skew(-10deg);
        -ms-transform: skew(-10deg);
            transform: skew(-10deg);
}

.colored-boxes span:nth-of-type(1) {
    background: #0065A5;
}

.colored-boxes span:nth-of-type(2) {
    background: #C1282D;
    margin: 0 5px;
}

.colored-boxes span:nth-of-type(3) {
    background: #FCB711;
}

.desktop {
    display: none !important;
}

body {
    background-color: black;
    font-family: 'Open Sans', sans-serif;
}

.skip {
    position: absolute;
    z-index: -1000;
    top: 0;
    left: 0;
    opacity: 0;
}

button:hover {
    cursor: pointer;
}

.section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
  }

html.clicked {
    position: fixed;
}

body, html {
	margin: 0;
	padding: 0;
	overflow-x: hidden !important;
}

p, a, li, span {
	line-height: 23px;
    font-size: 17px;
    color: #fff;
}

.container {
	padding: 0 20px;
    margin: auto;
    max-width: 334px;
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

.mobile-wrapper {
	background: transparent;
    height: 100px;
    position: absolute;
    left: 0;
    width: 100%;
}

/* hidden desktop elements */

.topper-flex,
#brand,
.call-strip-button,
.top-nav-strip {
	display: none;
}

/* Buttons */
.button-solid {
    position: relative;
    font-size: 16px;
    color: #1F1F1F;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
    font-style: italic;
    display: inline-block;
    width: 154px;
    line-height: 48px;
    text-align: center;
    z-index: 1;
}

.button-solid:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #D5BF86;
    z-index: -1;
    -webkit-transform: skew(-10deg);
        -ms-transform: skew(-10deg);
            transform: skew(-10deg);
}

.button-solid:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 0%;
    bottom: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: skew(-10deg);
        -ms-transform: skew(-10deg);
            transform: skew(-10deg);
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.button-solid:hover:after {
    width: 100%;
    -webkit-transition: .2s cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -o-transition: .2s cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition: .2s cubic-bezier(0.755, 0.050, 0.855, 0.060);
}

.hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    -o-transition-property: opacity, filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    position: relative;
    z-index: 2000;
}
.hamburger:hover {
    opacity: 0.7;
    cursor: pointer;
}
.hamburger.is-active:hover {
    opacity: 0.7;
    cursor: pointer;
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #D5BF86;
}
.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
    z-index: 2000;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #D5BF86;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
}

/* * Spring */
.hamburger--spring .hamburger-inner {
    top: 2px;
    -webkit-transition: background-color 0s 0.13s linear;
    -o-transition: background-color 0s 0.13s linear;
    transition: background-color 0s 0.13s linear;
    -webkit-transition-delay: .22s;
         -o-transition-delay: .22s;
            transition-delay: .22s;
}
.hamburger--spring .hamburger-inner::before {
    top: 10px;
    -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition-delay: .22s;
         -o-transition-delay: .22s;
            transition-delay: .22s;
}
.hamburger--spring .hamburger-inner::after {
    top: 20px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition-delay: .22s;
         -o-transition-delay: .22s;
            transition-delay: .22s;
}
.hamburger--spring.is-active .hamburger-inner {
    -webkit-transition-delay: 0.22s;
         -o-transition-delay: 0.22s;
            transition-delay: 0.22s;
    background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
            transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*-- -------------------------- -->
<---         NAVIGATION         -->
<--- -------------------------- -*/

/* Hidden Elements */
.navbar-menu img,
.call-us,
.quote-nav-button {
	display: none;
}

/* Top Mobile Navigation */
.mobile-wrapper {
	height: 70px;
}

.mobile-nav {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: space-between;;
	    -ms-flex-pack: space-between;;
	        justify-content: space-between;
    height: 100%;
    max-width: 100%;
}

.hamburger {
	position: absolute;
	right: 15px;
}

/* Navigation Links */


.mobile-wrapper img {
    width: 100%;
    max-width: 307px;
    position: relative;
    z-index: 1000;
    top: 70px;
}

.navbar-menu {
    overflow: hidden;
	background: #000;
    width: 0;
    top: 0;
	position: absolute;
    right: 0;
    height: 100vh;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
    z-index: 1000;
    max-width: 1225px;
}

.side-nav {
    overflow: hidden;
	padding: 40px 0;
	position: absolute;
	right: 2em;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	-webkit-transition-delay: .2s;
	     -o-transition-delay: .2s;
	        transition-delay: .2s;
}

.side-nav ul {
	margin: 0;
	text-align: right;
    list-style: none;
    margin-top: 50px;
}

.side-nav ul li {
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
}

.side-nav ul li.open {
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-duration: .5s;
            animation-duration: .5s;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease;
}

.side-nav ul li.open:nth-child(2) {
    -webkit-animation-delay: .1s;
            animation-delay: .1s;
}

.side-nav ul li.open:nth-child(3) {
    -webkit-animation-delay: .2s;
            animation-delay: .2s;
}

.side-nav ul li.open:nth-child(4) {
    -webkit-animation-delay: .3s;
            animation-delay: .3s;
}

.side-nav ul li.open:nth-child(5) {
    -webkit-animation-delay: .4s;
            animation-delay: .4s;
}

.side-nav ul li.open:nth-child(6) {
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
}

@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}

#on-top a {
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .025em;
    font-style: italic;
	padding: 5px 10px 5px 10px;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	-webkit-transition-delay: .2s;
	     -o-transition-delay: .2s;
	        transition-delay: .2s;
	opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(75px);
        -ms-transform: translateY(75px);
            transform: translateY(75px);
}

.active-menu {
    color: #D5BF86;
    position: relative;
}

.active-menu:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -20px;
    height: 2px;
    width: 20px;
    background: #D5BF86;
}

/* Tablet */
@media only screen and (min-width: 768px) {

    .container {
        max-width: 694px;
        padding: 0;
        margin: auto;
    }

    p {
        font-size: 17px;
        line-height: 23px;
    }

    .mobile-wrapper .mobile {
        display: none;
    }

    .mobile-wrapper .tablet {
        display: block;
        max-width: 436px;
    }

    .mobile-wrapper img {
        top: 67px !important;
    }

    .hamburger {
        top: 100px;
        right: 0px;
    }

    #hero:after {
        content: '';
        position: absolute;
        display: block;
        height: 190px;
        width: 100%;
        background: #000;
        opacity: .3;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
    }

    .button-solid {
        width: 192px;
        font-size: 17px;
    }

    .colored-boxes {
        width: 150px;
    }

    .colored-boxes span {
        width: 40px;
    }

    .side-nav ul {
        margin-top: 123px;
    }

    .side-nav ul li {
        margin-bottom: 40px;
    }

    #on-top a {
        font-size: 30px;
    }

}



/* Desktop */
@media screen and (min-width: 1024px) {

    .mobile-display {
        display: none !important;
    }

    #page-header {
        height: 400px;
        background-repeat: no-repeat;
        background-position: center 100%;
    }

    .desktop-display {
        display: block;
    }

    /* Hidden Elements */
	.mobile-wrapper {
		display: none;
	}

	/* Un-Hidden Elements */
	#on-top a {
		opacity: 1;
		visibility: visible;
    }

    .svg-group {
        width: 1600px;
    }

    .background {
        background: var(--primary);
        height: 36px;
        width: 100%;
    }

	.quote-nav-button {
        display: block;
        color: #fff;
        background: var(--primary);
        margin-left: 100px;
    }
    
    .quote-nav-button:hover {
        opacity: .7;
    }

	.container {
        max-width: 1100px;
    }
    
    .navbar-menu .logo {
        display: inline-block;
        position: absolute;
        left: 0;
    }

	.navbar-menu .logo img {
		display: block;
		margin: 0 !important;
		position: relative;
		left: 2em;
        height: auto;
        width: 436px;
        z-index: 1000;
    }
    
    .desktop-nav {
        display: inline-block !important;
        width: 102px;
        margin-right: 40px;
        margin-top: 55px;
    }

	/*navbar */
	nav {
		width: 100%;
		position: absolute;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
        height: 124px;
        background: transparent;
        z-index: 100;
    }

	.navbar-menu {
        width: 100% !important;
        height: 190px;
		margin: auto;
		position: absolute;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		z-index: 100;
		left: 0;
		background: transparent;
	}

	#on-top {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
                justify-content: flex-end;
        margin: 0;
        display: block;
        margin-top: 50px;
	}

	.side-nav {
        top: 0;
        padding: 0;
        display: block;
		width: 100%;
		height: 190px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
        right: 0;
        overflow: visible;
	}

	.side-nav ul li {
		margin: 0 43px 0 0;
		text-align: right;
    }

	.side-nav #on-top a {
		padding: 20px 0 10px 0;
        color: #fff;
        font-weight: normal;
		-webkit-transition: .2s ease;
		-o-transition: .2s ease;
		transition: .2s ease;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
    }
    
    .side-nav ul li{
        opacity: 1;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
    
	.side-nav ul li a:hover {
		cursor: pointer;
		opacity: 1;
		-webkit-transition: .2s ease;
		-o-transition: .2s ease;
        transition: .2s ease;
        color: #D5BF86;
	}

	#on-top li  {
        display: inline-block;
    }
    
    .active-menu {
        color: #D5BF86 !important;
        position: relative;
    }

    .active-menu:before {
       display: none; 
    }

    .active-menu:before {
        content: '';
        position: relative;
        display: inline-block;
        height: 2px;
        width: 20px;
        background: #D5BF86;
        vertical-align: middle;
        left: auto;
        margin-right: 5px;
    }
}














/*-- -------------------------- -->
<---           FOOTER           -->
<--- -------------------------- -*/










footer {
    padding-top: 60px;
    position: relative;
}

footer > .container {
    padding-bottom: 125px;
}

.footer-logo {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100%;
}

.mission {
    font-size: 12px;
    line-height: 18px;
    width: 150px;
    position: absolute;
    top: 0px;
    right: 20px;
}

.page-group {
    display: inline-block;
    float: right;
    position: relative;
    z-index: 1000;
}

.page-group .email {
    display: none;
}

.page-group a {
    display: block;
    font-size: 15px;
    line-height: 20px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    margin: auto;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: .025em;
}

.page-group a:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 0%;
    height: 2px;
    background: #D5BF86;
    bottom: -7px;
    z-index: 100;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.page-group a:hover:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #D5BF86;
    bottom: -7px;
    z-index: 100;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.page-group a:nth-of-type(1) {
    width: 47px;
}

.page-group a:nth-of-type(2) {
    width: 72px;
}

.page-group a:nth-of-type(3) {
    width: 62px;
}

.page-group a:last-of-type {
    margin-bottom: 0;
}

.footer-active:after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    left: 0;
    background: #D5BF86;
    bottom: -7px;
    z-index: 100;
}

.footer-bottom {
    height: 120px;
    position: relative;
    padding: 0 10px;
}

.address {
    text-decoration: none;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 10px;
}

.address-desktop {
    display: none !important;
}

.address span {
    font-size: 14px;
    line-height: 19px;
    height: 19px;
    display: block;
    text-align: left;
    vertical-align: middle;
}

.email-group {
    position: absolute;
    bottom: 0px;
}

.email-group .header-span {
    margin-bottom: 0;
    font-style: 14px;
    line-height: 19px;
}

.email-group a {
    text-decoration: none;
    font-size: 14px;
}

.social {
    position: absolute;
    bottom: -75px;
    left: 50%;
    width: 100%;
    text-align: center;
    left: 0;
}

.social a {
    display: inline-block;
}

.social a:nth-of-type(2) {
    margin-right: 50px;
}

/* Design Credit */

.design-credit {
    background: #1F1F1F;
    padding-top: 39px;
    padding-bottom: 80px;
}

.design-credit .container {
    height: 61px;
}

.credit {
    display: inline-block;
    margin-top: 12px;
}

.credit a {
    opacity: .7;
    line-height: 18px;
    font-size: 13px;
    text-align: left;
    display: block;
    text-decoration: none;
}

.credit a:hover {
    text-decoration: underline;
    color: #D5BF86;
}

.copyright {
    position: absolute;
    bottom: -40px;
    width: 100%;
    text-align: left;
    font-size: 13px;
    opacity: .7;
    left: 20px;
    line-height: 18px;
}

.top {
    display: inline-block;
    background: #000;
    padding: 12px 15px;
    border-radius: 10px;
    float: right;
}

.top:hover {
    background: #fff;
}

.top span {
    text-align: center;
    display: inline-block;
    color: #D5BF86;
    margin-right: 16px;
    font-size: 13px;
    line-height: 18px;
}

.top img {
    display: inline-block;
    height: 26px;
}


/*Iphone 6/7/8 */
@media screen and (min-width: 375px) {

    /*-- -------------------------- -->
    <---         Navigation         -->
    <--- -------------------------- -*/

    .mobile-wrapper img {
        top: 95px;
    } 

    /*-- -------------------------- -->
    <---           Footer           -->
    <--- -------------------------- -*/

    .mission {
        font-size: 15px;
        line-height: 20px;
        width: 170px;
        top: 10px;
    }

    .footer-bottom {
        padding: 0 30px;
    }

    .address {
        left: 30px;
    }

    .page-group {
        margin-right: 10px;
    }

    .design-credit .container {
        padding: 0 40px 0 50px;
        max-width: 285px;
    }

    .copyright {
        left: 50px;
    }

}

@media screen and (min-width: 768px) {

    /*-- -------------------------- -->
    <---           Footer           -->
    <--- -------------------------- -*/

    footer {
        padding-top: 100px;
    }

    footer .container {
        padding-bottom: 140px;
    }

    footer .mobile {
        display: none;
    }

    footer .desktop {
        width: 350px;
        display: inline-block !important;
        margin: 0;
        -webkit-transform: translateY(-40px);
            -ms-transform: translateY(-40px);
                transform: translateY(-40px);
    }

    .mission {
        font-size: 14px;
        line-height: 20px;
        width: 300px;
        top: 0px;
        right: 0;
    }

    .page-group {
        width: 100%;
        height: 20px;
        text-align: center;
        margin: auto;
        margin-bottom: 54px;
    }

    .page-group a {
        display: inline-block;
        margin: 0 55px 0 0;
    }

    .footer-bottom {
        padding: 0;
        height: 20px;
    }

    .page-group .email {
        display: inline-block;
        margin-right: 0;
        text-transform: lowercase;
        font-size: 16px;
    }

    .page-group .email .header-span {
        display: inline-block;
        margin-right: 10px;
    }

    .page-group .email .header-span:after {
        margin-left: 2px;
    }

    .email-group {
        display: none;
    }

    .social {
        text-align: center;
        position: relative;
        bottom: 0;
    }

    .social a:first-child {
        margin-right: 60px;
        vertical-align: top;
        margin-top: 4px;
    }

    .social a:nth-of-type(2) {
        margin-right: 60px;
    }

    .address {
        display: inline-block;
        display: none;
    }

    .address-mobile {
        display: none;
    }

    .address-desktop {
        display: inline-block !important;
        text-decoration: none;
        vertical-align: middle;
    }

    .address span {
        display: inline-block;
    }

    /* design credit */

    .design-credit {
        width: 100%;
        padding-bottom: 30px;
    }

    .design-credit .container {
        max-width: 100%;
        text-align: center;
    }

    .design-credit .credit, .design-credit .top, .design-credit .copyright {
        display: inline-block;
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        vertical-align: bottom;
    }

    .credit {
        float: left;
    }

    .copyright {
        margin-top: 24px;
    }
}

@media screen and (min-width: 1024px) {

    footer .container {
        padding-bottom: 145px;
    }

    .footer-top {
        width: 826px;
        margin: auto;
    }

    .footer-logo {
        width: auto;
    }

    footer .desktop {
        width: 436px;
    }

    .mission {
        position: relative;
        display: inline-block;
        top: auto;
        right: auto;
        width: 320px;
        vertical-align: top;
        float: right;
        margin-top: 10px;
        font-size: 17px;
        line-height: 23px;
    }

    .page-group a {
        margin-right: 75px;
    }

    .page-group .email .header-span {
        font-size: 15px;
    }

    .page-group .email {
        font-weight: normal;
    }

    .social a:first-child:hover {
        color: #D5BF86;
        text-decoration: underline;
    }

    .social a:first-child {
        font-size: 15px;
    }

    .design-credit .container {
        width: 798px;
    }

}