@font-face {
    font-family: Avenir-Heavy;
    src: url(../fonts/AvenirLTStd-Heavy.otf);
    font-weight: 900;
}

@font-face {
    font-family: Avenir-Medium;
    src: url(../fonts/AvenirLTStd-Medium.otf);
}

@font-face {
    font-family: Edmondsans-Bold;
    src: url(../fonts/Edmondsans-Bold.otf);
}

body {
    font-family: Avenir-Medium;
    letter-spacing: .7px;
    font-size: 14px;
    line-height: 20px;
}

a {
    font-family: Avenir-Heavy;
    transition: all ease-in .3s;
}

header {
    background: #fff;
    height: 90px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
}

header .logo {
    float: left;
}

header .logo a {
    padding: 34px 0;
    display: block;
}

header .logo a img {
    width: 333px;
    height: 20px;
}

header nav {
}

header nav ul.main-menu {
    float: right;
}

header nav ul.main-menu li {
    float: left;
    margin: 36px 13px;
}

header nav ul.main-menu li a {
    font-family: Avenir-Heavy;
    letter-spacing: .8px;
    font-size: 13px;
    font-weight: 900;
    color: #000;
    position: relative;
    display: block;
    transition: all ease-in .3s;
}

header nav ul.main-menu li a.selected:before,
header nav ul.main-menu li a.selected:hover:before {
    content: "";
    position: absolute;
    height: 2px;
    background: #000;
    bottom: -1px;
    left: 0;
    right: 0;
}

header nav ul.main-menu li a:hover {
    color: #4ca5e5;
}

header nav ul.main-menu li a.selected:hover {
    color: #000;
}

header nav ul.main-menu li.user-menu {
    margin-left: 47px;
    margin-top: 37px;
}

header nav ul.main-menu li.user-menu a {
    font-size: 9px;
}

.mobile-nav-button,
.account-navigation-mobile,
.mobile-logout {
    display: none;
}

.desktop-hidden {
    display: none;
}

.order-history-mobile,
.learn-mobile-title,
.learn-article-mobile {
    display: none;
}

.services-mobile {
    display: none;
}

.services-desktop {
    display: block;
}

.step-carousel.owl-carousel .owl-item img {
    width: 75px;
}

.home-section {
    position: relative;
}

.home-section-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    min-height: 100vh;
}

section.home h1 {
    font-family: Edmondsans-Bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 32px;
    line-height: 38px;
    margin: 0;
    padding-bottom: 30px;
}

.submit-button-wrapper {
    margin-top: 45px;
}

.section-centered-content h2 {
    font-family: Edmondsans-Bold;
    letter-spacing: 2px;
    font-size: 23px;
    line-height: 33px;
    margin: 0;
    padding: 30px 0 30px;
}

.section-centered-content p {
    margin: 0;
    padding: 0px 0 20px;
    line-height: 22px;
}

section .section-centered-content a,
.home-section a {
    color: #000;
    font-size: 13px;
    display: inline-block;
    border-bottom: 2px solid #000;
    transition: all ease-in .3s;
}

a:hover,
section .section-centered-content a:hover {
    color: #4ca5e5;
    border-color: #4ca5e5;
}

.full-slide-bg {
    background-color: #e0f2ff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.slide .owl-carousel .owl-dots,
.step-carousel.owl-carousel .owl-dots {
    bottom: 100px;
    position: absolute;
    width: 1150px;
    left: 50%;
    margin: 0 0 0 -575px;
}

.slide .owl-theme .owl-dots .owl-dot span,
.step-carousel.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 14px 5px 0;
    background: #ffffff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.slide .owl-theme .owl-dots .owl-dot.active span,
.step-carousel.owl-theme .owl-dots .owl-dot.active span {
    background: #000;
}

.fade {
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

section.slide1 {
    color: #fff;
}

section.slide1 a {
    color: #fff;
    border-bottom-color: #fff;
    transition: all ease-in .3s;
}

.steps-label {
    display: block;
    font-size: 13px;
    margin-top: 20px;
    font-family: Avenir-Heavy;
    margin-bottom: -20px;
}

.step-icons {
    width: 75px;
}

.footer-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

.mobile-footer-wrapper {
    display: none;
}

.footer-wrapper .estimate {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    text-align: center;
    height: 70px;
    z-index: 10;
}

.footer-wrapper.fixed .estimate {
    position: fixed;
    bottom: 0;
    top: auto;
}

.estimate a {
    font-family: Avenir-Heavy;
    letter-spacing: .8px;
    border: 2px solid #000;
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 900;
    color: #000;
    margin-top: 15px;
    position: relative;
    transition: all .5s;
}

/*.estimate a.ready:before {*/
/*content: '';*/
/*position: absolute;*/
/*top: 0;*/
/*left: 0;*/
/*height: 2px;*/
/*background: #000;*/
/*animation-name: animateBorderWidth;*/
/*animation-duration: 1s;*/
/*animation-delay: .5s;*/
/*animation-fill-mode: forwards;*/
/*}*/

/*.estimate a.ready:after {*/
/*content: '';*/
/*position: absolute;*/
/*top: 0;*/
/*right: 0;*/
/*width: 2px;*/
/*background: #000;*/
/*animation-name: animateBorderHeight;*/
/*animation-duration: 1s;*/
/*animation-delay: .5s;*/
/*animation-fill-mode: forwards;*/
/*}*/

/*.estimate a.ready .border-left {*/
/*position: absolute;*/
/*bottom: 0;*/
/*left: 0;*/
/*width: 2px;*/
/*background: #000;*/
/*animation-name: animateBorderHeight;*/
/*animation-duration: 1s;*/
/*animation-delay: .5s;*/
/*animation-fill-mode: forwards;*/
/*}*/

/*.estimate a.ready .border-bottom {*/
/*position: absolute;*/
/*bottom: 0;*/
/*right: 0;*/
/*height: 2px;*/
/*background: #000;*/
/*animation-name: animateBorderWidth;*/
/*animation-duration: 1s;*/
/*animation-delay: .5s;*/
/*animation-fill-mode: forwards;*/
/*}*/

/*@-webkit-keyframes animateBorderWidth {*/
/*0% {*/
/*width: 0;*/
/*}*/
/*100% {*/
/*width: 100%;*/
/*}*/
/*}*/

/*@-webkit-keyframes animateBorderHeight {*/
/*0% {*/
/*height: 0;*/
/*}*/
/*100% {*/
/*height: 100%;*/
/*}*/
/*}*/

.home-table,
.static-table {
    display: table;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.home-row,
.static-row {
    display: table-row;
}

.home-cell,
.static-cell {
    display: table-cell;
    vertical-align: middle;
    max-width: 1150px;
}

.estimate a.ready:hover:before,
.estimate a.ready:hover:after,
.estimate a.ready:hover .border-bottom,
.estimate a.ready:hover .border-left {
    background: #4ca5e5;
}

.estimate a:hover {
    background: #4ca5e5;
    color: #fff;
    border-color: #4ca5e5;
}

footer {
    background-color: #000;
    padding: 42px 0 40px;
    height: 190px;
}

footer .footer-logo {
    margin-bottom: 38px;
    margin-top: 2px;

}

footer .footer-logo img {
    width: 50px;
}

footer ul li {
    display: inline-block;
}

footer ul li a {
    color: #fff;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all ease-in .3s;
}

footer ul li:last-child a {
    padding-right: 0;
}

footer ul li a.social {
    display: block;
    padding: 0;
    margin-right: 4px;
    margin-top: 2px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all ease-in .3s;
}

li.footer-social:first-child {
    width: 18px;
}

footer ul li a.social.facebook {
    background-image: url("../dist/icons/facebook-white.png");
    background-position: center center;
    height: 18px;
    width: 9px;
}

footer ul li a.social.twitter {
    background-image: url("../dist/icons/twitter-white.png");
    background-position: center center;
    height: 18px;
    width: 26px;
}

footer ul li a.social.instagram {
    background-image: url("../dist/icons/instagram-white.png");
    background-position: center center;
    height: 18px;
    width: 19px;
    background-size: 18px;
}

footer ul li a.social.pinsterest {
    background-image: url("../dist/icons/pinterest-white.png");
    background-position: center center;
    height: 18px;
    width: 14px;
    background-size: 13px;
}

footer ul li a.social.facebook:hover {
    background-image: url("../dist/icons/facebook-white-hover.png");
}

footer ul li a.social.twitter:hover {
    background-image: url("../dist/icons/twitter-white-hover.png");
}

footer ul li a.social.instagram:hover {
    background-image: url("../dist/icons/instagram-white-hover.png");
}

footer ul li a.social.pinsterest:hover {
    background-image: url("../dist/icons/pinterest-white-hover.png");
}

.show-mobile {
    display: none;
}

.onepage-wrapper.section {
    width: 100%;
    height: 100%;
}

.keep-in-touch-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: none;
}

.keep-in-touch-wrapper .keep-in-touch-content {
}

.keep-in-touch-wrapper.open {
    display: block;
}

.keep-in-touch-content {
    background: #000;
    max-width: 660px;
    margin: 150px auto 0;
    color: #fff;
    position: relative;
    padding: 38px 40px 45px;
}

.keep-in-touch-content h2 {
    margin: 0;
    font-size: 30px;
    font-family: Edmondsans-Bold;
    line-height: 39px;
    padding-bottom: 30px;
}

.keep-in-touch-content .submit-button {
    color: #fff;
    border-bottom-color: #fff;
}

.keep-in-touch-content .keep-close {
    background: url("../dist/icons/icon-close-white.png") center center no-repeat;
    position: absolute;
    top: 40px;
    right: 40px;
    width: 16px;
    height: 16px;
}

.keep-in-touch-content label {
    display: inline-block;
    padding-right: 10px;
}

.keep-in-touch-content input {
    width: calc(100% - 61px);
    background: none;
    border: none;
    border-bottom: 2px solid #fff;
    position: relative;
    top: -8px;
    border-radius: 0;
}

.keep-in-touch-content p {
    margin: 0;
    padding-top: 15px;
    font-size: 9px;
    padding-bottom: 55px;
}

.keep-in-touch-content input:focus {
    outline: none;
    box-shadow: none;
}

.has-error,
.has-error a {
    color: #4ca5e5;
}

.has-error {
    padding-bottom: 5px;
}