
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Museo Sans';
    font-weight: 500;
    overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
blockquote {
    display: block;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1160px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/*-----------------------
    Typography
-----------------------*/
h1 {
    font-size: 2em;
    color: white;
    font-weight: 600;
    margin: 0 0 10px 0;
}

p {
    font-size: 1.125em;
    line-height: 1.4;
    margin: 0 0 35px 0;
}

@media screen and (min-width: 1025px) {
    h1 {
        font-size: 2.9375em;
    }

    p {
        font-size: 1.5em;
    }
}
/*-----------------------
    Header
-----------------------*/
header {
    position: relative;
    background-color: #3a9cf4;
    padding: 15px 0;
}

header .logo {
    display: inline-block;
    position: relative;
    width: 140px;
    z-index: 200;
}

header .logo img {
    display: block;
    width: 100%;
    height: auto;
}

header .toggle-navigation {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    right: 15px;
    top: 50%;
    width: 40px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    transform: translateY(-50%);
    padding: 0;
    z-index: 220;
}

header .toggle-navigation:active {
    padding: 0;
}

header .toggle-navigation .line {
    display: block;
    width: 100%;
    height: 4px;
    background-color: white;
    transition: opacity 250ms linear, transform 250ms linear;
    border-radius: 3px;
}

header .toggle-navigation .line + .line {
    margin-top: 4px;
}

header .toggle-navigation .line:nth-child(4) {
    position: absolute;
    left: 0;
    width: 100%;
    top: 8px;
    margin: 0;
}

.navigation-open header .toggle-navigation .line:nth-child(1),
.navigation-open header .toggle-navigation .line:nth-child(3) {
    opacity: 0;
}

.navigation-open header .toggle-navigation .line:nth-child(2) {
    transform: rotate(45deg);
}

.navigation-open header .toggle-navigation .line:nth-child(4) {
    transform: rotate(-45deg);
}

header nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: #3a9cf4;
    transform: translateX(-100%);
    padding: 100px 15px 15px 15px;
    transition: transform 500ms ease;
    z-index: 120;
}

.navigation-open header nav {
    transform: translateX(0%);
}

header nav li {
    margin-bottom: 10px;
}

header nav a {
    position: relative;
    display: block;
    font-size: 1em;
    color: white;
    transition: color 300ms linear;
}

header nav a:hover {
    color: #ffea00;
}

header .call-us {
    display: none;
}

header nav .help a {
    font-size: 0.875em;
    line-height: 1.5;
    padding-left: 40px;
}

header nav .help span {
    display: block;
    font-size: 1.5em;
    font-weight: 700;
}

header nav .help img {
    position: absolute;
    width: 30px;
    height: auto;
    left: 0;
    top: 3px;
}

header .call-us a {
    transition: color 300ms linear;
}

header .call-us a:hover {
    color: #ffea00;
}

@media screen and (max-width: 360px) {
    header nav .help a {
        font-size: 0.75em;
    }
}

@media screen and (min-width: 580px) {
    header nav .help {
        display: none;
    }

    header .call-us {
        display: block;
        position: absolute;
        right: 110px;
        top: 15px;
        display: inline-block;
        padding-left: 38px;
        font-size: 0.75em;
        font-weight: 300;
        color: white;
    }

    header .call-us span {
        display: block;
        font-size: 2.5em;
        font-weight: 600;
    }

    header .call-us img {
        position: absolute;
        left: 0;
        top: 2px;
        width: 30px;
        height: auto;
    }
}

@media screen and (min-width: 768px) {   
    header .toggle-navigation {
        display: none;
    }

    header .container {
        position: relative;
    }

    header nav {
        display: inline-block;
        vertical-align: top;
        position: relative;
        left: auto;
        top: auto;
        width: calc(100% - 410px);
        height: auto;
        overflow-y: visible;
        background-color: transparent;
        transform: none;
        padding: 0;
        transition: none;
        z-index: 120;
    }

    header nav ul {
        display: flex;
        justify-content: center;
        padding-top: 5px;
    }

    header nav li {
        width: 105px;
        flex: 0 0 105px;
        display: flex;
        align-items: center;
        border-left: 2px solid white;
        margin: 0;
    }

    header nav li:nth-child(1) {
        border-left: none;
    }

    header nav li span {
        display: block;
    }

    header nav li a {
        width: 100%;
        padding: 0 10px;
        font-size: 0.935em;
        font-weight: 300;
        text-align: center;
    }

    header .call-us {
        right: 15px;
        top: 0;
    }
}

@media screen and (min-width: 1025px) {
    header .logo {
        width: 200px;
    }

    header .toggle-navigation {
        display: none;
    }

    header .call-us {
        font-size: 1em;
        padding-left: 46px;
    }

    header .call-us span {
        font-size: 2.7em;
    }

    header .call-us img {
        width: 39px;
    }
    
    header nav {
        width: calc(100% - 550px);
    }

    header nav ul {
        padding-top: 8px;
    }

    header nav li {
        width: 150px;
        flex: 0 0 150px;
    }

    header nav li a {
        padding: 0 10px;
        font-size: 1.375em;
    }
}

@media screen and (min-width: 1400px) {
    header {
        padding: 28px 0;
    }

    header nav {
        width: auto;
        margin-left: 30px;
    }

    header nav ul {
        padding-top: 5px;
    }

    header nav li {
        width: 170px;
        flex: 0 0 170px;
        margin: 0;
    }

    header nav li a {
        padding: 0 10px;
    }
}

/*-----------------------
    Compare Mortgage
-----------------------*/
.compare-mortgage {
    padding: 20px 0;
    background-color: #52b3f7;
}

.compare-mortgage .clients-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.compare-mortgage .clients-row .client {
    width: 32%;
    flex: 0 0 32%;
    margin-bottom: 12px;
}

.compare-mortgage .clients img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.compare-mortgage .info {
    color: white;
}

.compare-mortgage .info h2 {
    font-size: 1.4375em;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.8px;
    margin: 0 0 10px 0;
}

.compare-mortgage .info p,.compare-mortgage .info h3 {
    font-size: 1.0625em;
    line-height: 1.117;
    font-weight: 300;
    margin: 0 0 20px 0;
}

.compare-mortgage .stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.compare-mortgage .stats .stat {
    position: relative;
    padding-left: 32px;
    font-size: 0.875em;
    line-height: 1.25;
    font-weight: 600;
}

.compare-mortgage .stats .stat img {
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: auto;
}

.compare-mortgage .options {
    margin-bottom: 30px;
}

.compare-mortgage .property-found {
    padding: 20px;
    border: 2px solid white;
    border-radius: 15px;
    text-align: center;
}

.compare-mortgage .option h3 {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin: 0 0 30px 0;
}

.compare-mortgage .property-found button,.compare-mortgage .property-found a {
    display: inline-block;
    width: 115px;
    padding: 10px;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1;
    font-family: 'Museo Sans';
    color: #939393;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 360px) {
    .compare-mortgage .stats {
        margin-bottom: 25px;
    }

    .compare-mortgage .stats .stat {
        padding-left: 30px;
        font-size: 0.75em;
    }

    .compare-mortgage .stats .stat img {
        top: 3px;
        width: 22px;
    }

    .compare-mortgage .property-found {
        padding: 10px;
    }
}

@media screen and (min-width: 400px) {
    .compare-mortgage .stats .stat {
        font-size: 1em;
    }

    .compare-mortgage .stats .stat img {
        top: 7px;
    }
}

@media screen and (min-width: 480px) {
    .compare-mortgage .stats .stat {
        padding-left: 43px;
        font-size: 1.25em;
    }

    .compare-mortgage .stats .stat img {
        width: 35px;
        top: 7px;
    }
    
    .compare-mortgage .clients-row .client:nth-child(1) {
        width: 26%;
        flex: 0 0 26%;
    }

    .compare-mortgage .clients-row .client:nth-child(2) {
        width: 27%;
        flex: 0 0 27%;
    }

    .compare-mortgage .clients-row .client:nth-child(3) {
        width: 21%;
        flex: 0 0 21%;
    }

    .compare-mortgage .clients-row .client:nth-child(4) {
        width: 16%;
        flex: 0 0 16%;
    }

    .compare-mortgage .clients-row .client:nth-child(5) {
        width: 32%;
        flex: 0 0 32%;
    }

    .compare-mortgage .clients-row .client:nth-child(6) {
        width: 19%;
        flex: 0 0 19%;
    }

    .compare-mortgage .clients-row .client:nth-child(7) {
        width: 16%;
        flex: 0 0 16%;
    }

    .compare-mortgage .clients-row .client:nth-child(8) {
        width: 21%;
        flex: 0 0 21%;
    }

    .compare-mortgage .clients-row .client:nth-child(9) {
        width: 19%;
        flex: 0 0 19%;
    }

    .compare-mortgage .clients-row .client:nth-child(10) {
        width: 18%;
        flex: 0 0 18%;
    }

    .compare-mortgage .clients-row .client:nth-child(11) {
        width: 11%;
        flex: 0 0 11%;
    }

    .compare-mortgage .clients-row .client:nth-child(12) {
        width: 12%;
        flex: 0 0 12%;
    }

    .compare-mortgage .clients-row .client:nth-child(13) {
        width: 18%;
        flex: 0 0 18%;
    }

    .compare-mortgage .clients-row .client:nth-child(14) {
        width: 12%;
        flex: 0 0 12%;
    }

    .compare-mortgage .clients-row .client:nth-child(15) {
        width: 5%;
        flex: 0 0 5%;
    }
}

@media screen and (min-width: 580px) {
    .compare-mortgage .info {
        text-align: center;
    }

    .compare-mortgage .info p,.compare-mortgage .info h3 {
        font-size: 1.25em;
    }

    .compare-mortgage .info h2 {
        font-size: 2.25em;
    }

    .compare-mortgage .stats {
        max-width: 600px;
    }

    .compare-mortgage .stats .stat {
        padding-left: 55px;
        font-size: 1.5em;
    }

    .compare-mortgage .stats .stat img {
        top: 6px;
        width: 45px;
    }

    .compare-mortgage .property-found {
        max-width: 480px;
        margin: 0 auto 30px auto;
    }

    .compare-mortgage .stats {
        max-width: 640px;
        text-align: left;
        margin: 0 auto 40px auto;
    }
}

@media screen and (min-width: 768px) {
    .compare-mortgage .info h2 {
        font-size: 2.935em;
    }

    .compare-mortgage .info p,.compare-mortgage .info h3 {
        font-size: 1.5em;
    }

    .compare-mortgage .property-found {
        padding: 28px 15px 30px;
    }

    .compare-mortgage .property-found button,.compare-mortgage .property-found a {
        width: 90px;
        margin: 5px 15px;
    }

    .compare-mortgage .option h3 {
        font-size: 1.75em;
    }

    .compare-mortgage .clients-row {
        align-items: flex-end;
        margin-bottom: 20px;
    }

    .compare-mortgage .clients-row .client {
        margin-bottom: 10px;
		margin-left:8px;
		margin-right:8px;
    }

    .compare-mortgage .clients-row .client:nth-child(1) {
        width: 15%;
        flex: 0 0 15%;
    }

    .compare-mortgage .clients-row .client:nth-child(2) {
        width: 16%;
        flex: 0 0 16%;
    }

    .compare-mortgage .clients-row .client:nth-child(3) {
        width: 13%;
        flex: 0 0 13%;
    }

    .compare-mortgage .clients-row .client:nth-child(4) {
        width: 10%;
        flex: 0 0 10%;
    }

    .compare-mortgage .clients-row .client:nth-child(5) {
        width: 15%;
        flex: 0 0 15%;
    }

    .compare-mortgage .clients-row .client:nth-child(6) {
        width: 14%;
        flex: 0 0 14%;
    }

    .compare-mortgage .clients-row .client:nth-child(7) {
        width: 10%;
        flex: 0 0 10%;
    }

    .compare-mortgage .clients-row .client:nth-child(8) {
        width: 9%;
        flex: 0 0 9%;
    }

    .compare-mortgage .clients-row .client:nth-child(9) {
        width: 12%;
        flex: 0 0 12%;
    }

    .compare-mortgage .clients-row .client:nth-child(10) {
        width: 13%;
        flex: 0 0 13%;
    }

    .compare-mortgage .clients-row .client:nth-child(11) {
        width: 10%;
        flex: 0 0 10%;
    }

    .compare-mortgage .clients-row .client:nth-child(12) {
        width: 6%;
        flex: 0 0 6%;
    }

    .compare-mortgage .clients-row .client:nth-child(13) {
        width: 11%;
        flex: 0 0 11%;
    }

    .compare-mortgage .clients-row .client:nth-child(14) {
        width: 12%;
        flex: 0 0 12%;
    }

    .compare-mortgage .clients-row .client:nth-child(15) {
        width: 5%;
        flex: 0 0 5%;
    }
}

@media screen and (min-width: 1025px) {
    .compare-mortgage .info {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 45px;
    }

    .compare-mortgage .info .introduction {
        width: 54%;
        flex: 0 0 54%;
    }

    .compare-mortgage .options {
        width: 40%;
        flex: 0 0 40%;
        padding-top: 15px;
        margin-bottom: 0;
    }

    .compare-mortgage .property-found {
        max-width: 100%;
        margin: 0;
    }

    .compare-mortgage .property-found button,.compare-mortgage .property-found a {
        width: 115px;
        font-size: 1.875em;
    }

    .compare-mortgage .stats {
        margin: 0;
    }

    .compare-mortgage .option h3 {
        font-size: 2em;
    }
}

/*-----------------------
    Services
-----------------------*/
.services {
    padding: 20px 0;
}

.services .item {
    margin-bottom: 30px;
}

.services .item h4 {
    font-size: 1.125em;
    line-height: 1.25;
    color: white;
    font-weight: 600;
    padding: 8px 12px;
    background-color: #50b2f7;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 3px solid #50b2f7;
    margin: 0;
}

.services .item h4 img {
    position: absolute;
    width: 45px;
    height: auto;
    top: 10px;
    right: 15px;
}

.services .item .info {
    padding: 12px;
    border: 3px solid #50b2f7;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.services .item p {
    font-size: 1.0625em;
    line-height: 1.25;
    color: #666666;
    font-weight: 300;
    margin: 0 0 15px 0;
}

.services .item a {
    display: inline-block;
    padding: 10px 9px;
    background-color: #ffea00;
    font-size: 1.125em;
    line-height: 1;
    color: #515151;
    font-weight: 600;
    transition: background-color 250ms ease, color 250ms ease;
}

.services .item a:hover {
    background-color: #515151;
    color: #ffea00;
}

@media screen and (min-width: 580px) {
    .services .item .info {
        position: relative;
        padding-right: 220px;
    }

    .services .item a {
        width: 180px;
        padding: 15px 10px;
        font-size: 1.75em;
        position: absolute;
        right: 15px;
        top: 12px;
    }

    .services .item p {
        margin: 0;
    }
}

@media screen and (min-width: 768px) {
    .services .item h4 {
        font-size: 1.25em;
    }

    .services .item h4 img {
        width: 55px;
        top: 12px;
    }

    .services .items {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .services .items .item {
        width: 48%;
        flex: 0 0 48%;
        margin: 0 1% 25px 1%;
    }

    .services .item .info {
        position: relative;
        padding-right: 120px;
    }

    .services .item a {
        width: 90px;
        font-size: 1.125em;
        text-align: center;
        right: 12px;
    }

    .services .item p {
        margin: 0;
        font-size: 0.875em;
    }

    .services .item h4 span {
        display: inline;
    }
}

@media screen and (min-width: 1025px) {
    .services {
        padding: 35px 0;
    }

    .services .item h4 {
        font-size: 1.5em;
    }

    .services .container {
        max-width: 1210px;
    }

    .services .items {
        justify-content: space-between;
    }

    .services .items .item {
        width: 19%;
        flex: 0 0 19%;
        margin: 0;
    }

    .services .item h4 img {
        right: 10px;
    }

    .services .item p {
        min-height: 170px;
        margin: 0 0 15px 0;
        font-size: 1em;
    }

    .services .item h4 span {
        display: block;
    }

    .services .item .info {
        position: relative;
        padding-right: 12px;
    }

    .services .item a {
        width: auto;
        text-align: left;
        position: static;
    }
}

@media screen and (min-width: 1400px) {
    .services .item a {
        font-size: 1.625em;
    }

    .services .item p {
        min-height: 10px;
    }
}

/*-----------------------
    Inner Page Content
-----------------------*/
.inner-page-content {
    padding: 50px 0;
    background-color: #73c1f7;
    background-image: linear-gradient(45deg, #46adf7, #68bcf7);
    color: white;
}

.inner-page-content main {
    max-width: 930px;
}

.inner-page-content .container {
    position: relative;
    z-index: 20;
}

.inner-page-content h1 {
    font-size: 2rem;
    line-height: 1.375;
    font-weight: 700;
    margin: 0 0 0 0;
}

.inner-page-content h2 {
    font-size: 1.25rem;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 45px 0;
}

.inner-page-content h3 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.inner-page-content h4 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.inner-page-content h5 {
    font-size: 0.9375rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.inner-page-content h6 {
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.inner-page-content ul {
    font-weight: 300;
}

.inner-page-content ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.inner-page-content ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 6px;
    border-radius: 50%;
    background-color: white;
}

.inner-page-content ol {
    list-style-type: none;
    padding: 0;
    font-weight: 300;
    counter-reset: list;  
}

.inner-page-content ol li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 5px;
}

.inner-page-content ol li::before {
    counter-increment: list;
    content: counter(list) ".";
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}

.inner-page-content p {
    font-weight: 300;
    margin: 0 0 25px 0;
}

.inner-page-content p::after {
    content: '';
    display: table;
    clear: both;
}

.inner-page-content main img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.inner-page-content .table {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
    margin-bottom: 20px;
}

.inner-page-content caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left;
}

.inner-page-content .table thead th{
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.inner-page-content .table tbody tr td,
.inner-page-content .table tbody tr th,
.inner-page-content .table tfoot tr td,
.inner-page-content .table tfoot tr th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.inner-page-content .table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

.inner-page-content blockquote {
    background: #f9f9f9;
    border-left: 5px solid #8dc63f;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}

.inner-page-content blockquote:before {
    color: #8dc63f;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.5em;
}

.inner-page-content .building-icon {
    right: 15px;
    bottom: 100px;
}

@media screen and (min-width: 480px) {
    .inner-page-content .left-float {
        float: left;
        margin: 0 15px 15px 0;
    }

    .inner-page-content .right-float {
        float: right;
        margin: 0 0 15px 15px;
    }
}

@media screen and (max-width: 767px) {
    .inner-page-content .table-responsive {
        width: 100%;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
}

@media screen and (min-width: 1025px) {
    .inner-page-content h1 {
        font-size: 2.9375rem;
    }

    .inner-page-content h2 {
        font-size: 2.25rem;
    }

    .inner-page-content h3 {
        font-size: 1.4rem;
    }

    .inner-page-content h4 {
        font-size: 1.3rem;
    }

    .inner-page-content h5 {
        font-size: 1.2rem;
    }

    .inner-page-content h6 {
        font-size: 1.1rem;
    }

    .inner-page-content p {
        font-size: 1.25em;
    }

    .inner-page-content ul,
    .inner-page-content ol {
        font-size: 1.25em;
    }

    .inner-page-content ul li::before {
        top: 10px;
    }

    .inner-page-content ol li::before {
        top: 3px;
    }
}

/*-----------------------
    Quote
-----------------------*/
.get-a-quote {
    padding: 20px 0 85px 0;
    background-color: #73c1f7;
    background-image: linear-gradient(45deg, #46adf7, #68bcf7);
    color: white;
    text-align: center;
}

.get-a-quote h1 {
    font-size: 1.125em;
    margin-bottom: 20px;
}

.get-a-quote .steps {
    display: flex;
    justify-content: space-between;
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
}

.get-a-quote .steps .step {
    width: calc(25% - 3px);
    max-width: calc(25% - 3px);
    flex: 0 0 calc(25% - 3px);
    margin-bottom: 0;
}

.get-a-quote .step button {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 0.75em;
    line-height: 1.3;
    font-weight: 300;
    text-align: left;
    background-color: #3a9cf4;
    color: white;
    padding: 8px;
    transition: background-color 250ms ease, color 250ms ease;
}

.get-a-quote .step.active button {
    background-color: #ffea00;
    color: #65624b;
}

.get-a-quote .step:nth-child(1) button {
    border-top-left-radius: 10px;
}

.get-a-quote .step:nth-child(4) button {
    border-top-right-radius: 10px;
}

.get-a-quote .step button strong {
    font-size: 1rem;
    font-weight: 700;
    display: block;
}

.get-a-quote .step-content {
    display: none;
    border: 2px solid white;
    padding: 15px 15px 40px 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: relative;
}

.get-a-quote .step-content:nth-child(1) {
    display: block;
}

.get-a-quote .form-group > label {
    display: block;
    font-size: 1em;
    line-height: 1.2;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
}

.get-a-quote .form-group {
    margin-bottom: 25px;
}

.get-a-quote select {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    padding: 8px;
    font-size: 1em;
    font-weight: 700;
    color: #939393;
    background-color: white;
    border: 2px solid white;
}

.get-a-quote select.custom-select {
    -webkit-appearance: none;
    appearance: none;
    background: url('../images/quote-arrow.png') no-repeat right 50% white;
    background-size: 30px auto;
}

.get-a-quote .radio-field input[type="radio"] {
    display: none;
}

.get-a-quote .radio-field label {
    display: inline-block;
    padding: 8px;
    font-size: 1em;
    font-weight: 700;
    color: #939393;
    background-color: white;
    border: 2px solid white;
    cursor: pointer;
}

.get-a-quote .radio-field input[type="radio"]:checked + label {
    background-color: #ffea00;
    border-color: #ffea00;
    color: #515151;
}

.get-a-quote .radio-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.get-a-quote .radio-group .radio-field {
    flex: 0 0 auto;
    margin: 0 8px 8px 8px;
}

.get-a-quote .form-group .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: white;
    margin-bottom: 0;
}

.get-a-quote .form-group .checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.get-a-quote .action-buttons {
    min-width: 280px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);

}

.get-a-quote .action-buttons button {
    display: inline-block;
    padding: 8px 10px;
    font-size: 1.125em;
    font-weight: 700;
    background-color: #ffea00;
    color: #515151;
    border: none;
    margin: 0 7px;
    transition: background-color 250ms ease, color 250ms ease;
    cursor: pointer;
}

.get-a-quote .action-buttons button:hover {
    background-color: #515151;
    color: #ffea00;
}

.get-a-quote .currency-wrapper {
    max-width: 300px;
    position: relative;
    background-color: white;
    padding-left: 40px;
    margin: 0 auto;
}

.get-a-quote .currency-wrapper .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    line-height: 40px;
    font-size: 1.125em;
    font-weight: 700;
    color: #939393;
}

.get-a-quote .currency-wrapper .icon::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: calc(100% - 8px);
    position: absolute;
    right: 0;
    top: 4px;
    background-color: #939393;
}

.get-a-quote input[type="text"],
.get-a-quote input[type="email"],
.get-a-quote input[type="tel"] {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 1em;
    font-weight: 700;
    color: #939393;
    background-color: white;
    border: 2px solid white;
}

.get-a-quote input[type="text"].has-error,
.get-a-quote input[type="email"].has-error,
.get-a-quote input[type="tel"].has-error,
.get-a-quote select.has-error,
.get-a-quote .radio-field label.has-error {
    border-color: #f44336 !important;
}

.get-a-quote .form-group.has-error > label {
    color: #f44336;
}

.get-a-quote .name-unit {
    margin-bottom: 10px;
}

.get-a-quote .currency-group {
    display: none;
}

.get-a-quote input:focus {
    outline: none;
}

.get-a-quote .error-message {
    display: none;
    background-color: #f44336;
    color: white;
    padding: 5px 20px;
    margin: 0 0 20px 0;
}

.get-a-quote .error-message.show {
    display: inline-block;
}

@media screen and (min-width: 580px) {
    .get-a-quote {
        padding-top: 50px;
    }

    .get-a-quote .steps {
        display: flex;
        justify-content: space-between;
        text-align: left;
        max-width: 480px;
        margin: 0 auto;
    }

    .get-a-quote .steps .step {
        width: calc(25% - 3px);
        max-width: calc(25% - 3px);
        flex: 0 0 calc(25% - 3px);
        margin-bottom: 0;
    }

    .get-a-quote .step button {
        font-size: 0.8125em;
        padding: 3px 8px;
    }

    .get-a-quote .step button strong {
        font-size: 1.25rem;
    }

    .get-a-quote .step:nth-child(1) button {
        border-top-left-radius: 15px;
        border-top-right-radius: 0;
    }

    .get-a-quote .step:nth-child(4) button {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 15px;
    }

    .get-a-quote select {
        font-size: 1.375em;
    }

    .get-a-quote .form-group > label {
        font-size: 1.375em;
    }

    .get-a-quote .radio-field label {
        font-size: 1.375em;
    }

    .get-a-quote .action-buttons button {
        font-size: 1.375em;
    }

    .get-a-quote input[type="text"],
    .get-a-quote input[type="email"],
    .get-a-quote input[type="tel"] {
        font-size: 1.375em;
    }

    .get-a-quote .name-group {
        display: flex;
        justify-content: space-between;
        max-width: 730px;
        margin: 0 auto 35px auto;
    }

    .get-a-quote .name-group .name-unit {
        margin-bottom: 0;
    }

    .get-a-quote .name-group .name-unit:nth-child(1) {
        width: 23%;
        flex: 0 0 23%;
    }

    .get-a-quote .name-group .name-unit:nth-child(2) {
        width: 35%;
        flex: 0 0 35%;
    }

    .get-a-quote .name-group .name-unit:nth-child(3) {
        width: 35%;
        flex: 0 0 35%;
    }

    .get-a-quote .currency-wrapper .icon {
        line-height: 46px;
    }

    .get-a-quote .step-content {
        border-radius: 15px;
    }
}

@media screen and (min-width: 1025px) {
    .get-a-quote h1 {
        font-size: 2.9375em;
    }

    .get-a-quote .steps {
        max-width: 700px;
    }

    .get-a-quote .step button {
        padding: 6px 12px;
        line-height: 1.15;
        font-size: 1.25em;
    }

    .get-a-quote .step button strong {
        font-size: 1.75rem;
    }

    .get-a-quote .step-content {
        padding: 40px 40px 30px 40px;
    }

    .get-a-quote select {
        font-size: 1.875em;
    }

    .get-a-quote .form-group > label {
        font-size: 1.875em;
    }

    .get-a-quote .radio-field label {
        font-size: 1.875em;
    }

    .get-a-quote .action-buttons button {
        font-size: 2.3215em;
    }

    .get-a-quote input[type="text"],
    .get-a-quote input[type="email"],
    .get-a-quote input[type="tel"] {
        font-size: 1.875em;
        max-width: 460px;
        margin: 0 auto;
    }

    .get-a-quote select {
        max-width: 410px;
    }

    .get-a-quote .form-group {
        margin-bottom: 35px;
    }

    .get-a-quote .currency-wrapper .icon {
        line-height: 54px;
    }
}

@media screen and (min-width: 1600px) {
    .get-a-quote {
        min-height: calc(100vh - 426px);
    }
}

/*-----------------------
    Results
-----------------------*/
.results {
    padding: 20px 0 85px 0;
    background-color: #73c1f7;
    background-image: linear-gradient(45deg, #46adf7, #68bcf7);
    color: white;
    text-align: center;
}

.results h1 {
    margin-bottom: 35px;
}

.results .result-content {
    border: 2px solid white;
    padding: 20px;
    border-radius: 15px;
    min-height: 550px;
}

.results .loader-wrapper {
    padding-top: 70px;
}

.results .loader {
    display: inline-block;
    width: 250px;
    height: 250px;
    background-color: #ffea00;
    background-image: linear-gradient(to right, white 50%, #ffea00 0);
    border-radius: 50%;
    position: relative;
}

.results .loader.half .progress {
    background-color: #ffea00;
}

.results .loader .progress {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
    border-top-right-radius: 100% 50%;
    border-bottom-right-radius: 100% 50%;
    transform-origin: left 50%;
    transition: transform 500ms ease;
}

.results .loader .number {
    display: block;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    line-height: 232px;
    position: absolute;
    left: 9px;
    top: 9px;
    background-color: #50b1f7;
    border-radius: 50%;
    font-size: 2em;
    font-weight: 600;
    z-index: 5;
}

.results .result-heading {
    width: 100%;
    max-width: 320px;
    display: inline-block;
    padding: 8px 10px;
    font-size: 1.125em;
    color: white;
    text-align: center;
    font-weight: 300;
    letter-spacing: -0.4px;
    background-color: #3a9cf4;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.results .result-heading span {
    display: block;
    font-weight: 600;
    font-size: 1.25rem;
}

.results .result-units {
    padding-top: 50px;
    display: none;
}

.results .unit {
    text-align: center;
    color: white;
}

.results .unit h3 {
    font-size: 1.5em;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 22px 0;
}

.results .unit img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.results .unit ul {
    margin-bottom: 30px;
}

.results .unit li {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 5px;
}

.results .unit p {
    font-size: 1em;
    line-height: 1.15;
}

@media screen and (min-width: 1025px) {
    .results {
        padding: 50px 0;
    }

    .results .result-heading {
        font-size: 1.25em;
    }

    .results .result-heading span {
        font-size: 1.75rem;
    }

    .results .unit h3 {
        font-size: 2em;
    }

    .results .unit li {
        font-size: 2em;
    }

    .results .unit p {
        font-size: 1.5em;
    }
}

/*-----------------------
    Contact
-----------------------*/
.contact {
    padding: 50px 0;
    background-color: #73c1f7;
    background-image: linear-gradient(45deg, #46adf7, #68bcf7);
}

.contact .container {
    position: relative;
    z-index: 20;
}

.contact p {
    color: white;
}

.contact .address p {
    font-size: 1.125em;
    font-weight: 300;
    line-height: 1.15;
}

.contact h3 {
    font-size: 1.25em;
    line-height: 1;
    color: #ffea00;
    margin: 0 0 15px 0;
}

.contact a {
    font-size: 1.125em;
    font-weight: 300;
    color: white;
}

.contact a:hover {
    text-decoration: underline;
}

.contact .link {
    margin-bottom: 35px;
}

.contact .form-group {
    margin-bottom: 20px;
}

.contact .form-control {
    font-size: 1em;
    display: block;
    width: 100%;
    border: 1px solid white;
    font-family: 'Museo Sans';
    color: gray;
    padding: 10px;
}

.contact select.custom-select {
    -webkit-appearance: none;
    background: url('../images/custom-arrow.png') no-repeat right 50% white;
    appearance: none;
    border: 1px solid white;
    color: gray;
    padding: 10px;
}

.contact label {
    display: block;
    font-size: 1em;
    line-height: 1;
    color: white;
    position: relative;
}

.contact .radio-field {
    margin-bottom: 25px;
}

.contact .radio-field input[type="radio"] {
    display: none;
}

.contact .radio-field label {
    cursor: pointer;
    padding-left: 40px;
}

.contact .radio-field label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    text-align: center;
}

.contact .radio-field input[type="radio"]:checked + label::before {
    content: '\f00c';
    color: #515151;
    background-color: #ffea00;
}

.contact .form-control::placeholder,.quote-form input::placeholder { 
    color: #c5c5c5;
    opacity: 1;
}

.contact .submit-wrapper input {
    display: inline-block;
    padding: 10px 9px;
    background-color: #ffea00;
    font-size: 1.125em;
    line-height: 1;
    color: #515151;
    font-weight: 600;
    transition: background-color 250ms ease, color 250ms ease;
    border: none;
    cursor: pointer;
}

.contact .submit-wrapper input:hover {
    background-color: #515151;
    color: #ffea00;
}

.contact .help-block.form-error {
    font-size: 14px;
    padding-top: 3px;
    color: #f44336;
}

.building-icon {
    position: absolute;
    width: 200px;
    height: auto;
    opacity: 0.2;
    z-index: -2;
    transform: rotate(10deg);
}

.contact .building-icon {
    right: 15px;
    bottom: 100px;
}

@media screen and (min-width: 580px) {
    .contact .grouped-fields {
        display: flex;
        justify-content: space-between;
    }

    .contact .grouped-fields .form-group {
        width: calc(50% - 20px);
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }

    .contact .contact-info {
        display: flex;
        justify-content: space-between;
    }

    .contact .contact-info .address {
        width: calc(50% - 20px);
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }

    .contact .contact-info .links {
        width: calc(50% - 20px);
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
}

@media screen and (min-width: 768px) {
    .contact .radio-group {
        display: flex;
    }

    .contact .radio-group .radio-field {
        width: 33%;
        flex: 0 0 33%;
    }

    .building-icon {
        width: 300px;
    }

    .contact .building-icon {
        bottom: 220px;
    }
}

@media screen and (min-width: 1025px) {
    .contact .form-group {
        margin-bottom: 35px;
    }

    .contact .form-control {
        padding: 20px;
    }

    .contact select.custom-select {
        padding: 20px;
    }

    .contact .submit-wrapper input {
        padding: 17px 22px;
        font-size: 1.625em;
    }
}

/*-----------------------
    Testimonials
-----------------------*/
.testimonials {
    padding: 50px 0;
    background: url('../images/testimonials-background.jpg') no-repeat 50% top;
    background-size: cover;
    text-align: center;
    margin-bottom: 15px;
	margin-top:15px;
}

.testimonials .testimonial {
    max-width: 850px;
    overflow: hidden;
    margin: 0 auto;
}

.testimonials .testimonial p {
    font-size: 1.5em;
    line-height: 1.2;
    color: white;
    font-weight: 600;
    font-style: italic;
    margin: 0 0 25px 0;
}

.testimonials .testimonial .author {
    display: inline-block;
    font-size: 1.125em;
    line-height: 1;
    position: relative;
    color: white;
}

.testimonials .testimonial .author::before,
.testimonials .testimonial .author::after {
    content: '';
    width: 105px;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 52%;
}

.testimonials .testimonial .author::before {
    right: calc(100% + 10px);
}

.testimonials .testimonial .author::after {
    left: calc(100% + 10px);
}

@media screen and (min-width: 768px) {
    .testimonials .testimonial p {
        font-size: 2.25em;
    }

    .testimonials .testimonial .author {
        font-size: 1.3125em;
    }
}

/*-----------------------
    Footer
-----------------------*/
footer {
    padding: 15px 0;
    background-color: #ffea00;
    font-size: 0.935em;
    line-height: 1.5em;
    font-weight: 600;
    text-align: center;
}

footer p {
    margin: 0 0 20px 0;
}

footer a {
    display: inline-block;
    margin: 0 6px;
}

footer a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    footer p {
        font-size: 1.125em;  
    }
}

@media screen and (min-width: 1025px) {
    footer {
        text-align: left;
    }

    footer .container {
        position: relative;
    }

    footer .legal {
        position: absolute;
        right: 0;
        top: 0;
    }

    footer p {
        margin: 0;
    }

    footer a:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1200px) {
    footer a {
        margin: 0 15px;
    }
}

/*-----------------------
    Helper classes
-----------------------*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both
}

img {
    border: medium none;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-center {
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

a {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 420px) {}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 1200px) {}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 991px),
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 991px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 991px),
only screen and (min-device-pixel-ratio: 2) and (max-width: 991px),
only screen and (min-resolution: 192dpi) and (max-width: 991px),
only screen and (min-resolution: 2dppx) and (max-width: 991px) {}