/*------------------------------------*\
    STYLING
\*------------------------------------*/


/**
 * Box-sizing
 */

* { box-sizing: border-box; }

/**
 * Typography
 */

 @font-face {
    font-family: 'Avenir-next';
    src: url('../fonts/AvenirNextLTPro-Regular.woff2') format('woff2'),
        url('../fonts/AvenirNextLTPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir-next';
    src: url('../fonts/AvenirNextLTPro-Bold.woff2') format('woff2'),
        url('../fonts/AvenirNextLTPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir-next';
    src: url('../fonts/AvenirNextLTPro-It.woff2') format('woff2'),
        url('../fonts/AvenirNextLTPro-It.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Book.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Medium.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'proxima_bold';
    src: url('../fonts/proxima_nova_bold-webfont.woff2') format('woff2'),
         url('../fonts/proxima_nova_bold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;

}

@font-face {
    font-family: 'proxima';
    src: url('../fonts/proxima_nova_reg-webfont.woff2') format('woff2'),
         url('../fonts/proxima_nova_reg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body {
    font-family: 'Avenir';
    font-weight: normal;
    font-size: 15px;
    overflow-x: hidden;
}

h1, 
h2,
h3,
h4 {
    margin: 0 0 20px;
    font-family: 'proxima';
    font-weight: normal;
    text-shadow: 0 3px 6px rgba(0,0,0,.16);
}


h1 { 
    font-size: 40px; 
    font-weight: 600;
}

h2 {
    font-size: 30px;
    color: #0073DA;
}

h2 a {
    color: #0073DA;
}

h3 { font-size: 25px; }

h4 { 
    font-size: 16px; 
    font-family: 'proxima_bold';
}


p, ul, ol {
    margin: 0 0 20px;
    line-height: 1.600em; 
}

    p:last-child { margin: 0; }

ul li {
    
}

@media(min-width: 767px){

    body {
        font-size: 16px;
    }

    h1 { font-size: 50px; }

    h2 { font-size: 35px; }

    h3 { font-size: 36px; }

}

@media(min-width: 1025px){

    body {
        font-size: 18px;
    }

    h1, 
    h2,
    h3,
    h4 {
        margin: 0 0 30px;
    }

    p { margin-bottom: 25px; }

    h1 { font-size: 60px; }

    h2 { font-size: 53px; }

    h3 { font-size: 43px; }

    h4 { font-size: 22px; }

}
/*
@media(min-width: 1400px){

    h1, 
    h2,
    h3,
    h4 {
        margin: 0 0 35px;
    }

    h1 { font-size: 72px; }

    h2 { font-size: 68px; }

    h3 { font-size: 56px; }

    h4 { font-size: 40px; }

}*/

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

    a:hover { color: #90CBFA; }

p a { color: #0073DA; }


/**
 * Wrappers
 */

.container,
.container-fluid,
.container-full {
    margin-right: auto;
    margin-left: auto;
    padding-left: 22px; 
    padding-right: 22px;
}

.container-full {
    padding-left: 20px; 
    padding-right: 20px;
}

.container {
    max-width: 1600px;
}

.container-full { width: 100%; }

    .container-full .row { 
        margin-left: -20px;
        margin-right: -20px;
     }

    .container-full .col-sm-6 { padding: 0; }


.section-white {
    padding: 50px 0;
}


.page-id-12 .section-white.hard-top,
.page-id-15 .section-white.hard-top { margin-top: 50px !important; }

.section-blue,
body.page-id-316 section.section-white.hard-top.aos-init.aos-animate {
    padding: 50px 0;
    background-color: #0073DA;
    color: #fff;
}

body.page-id-316 section.section-white.hard-top.aos-init.aos-animate h3 {
    color:  #fff;
}

 @media (min-width: 1025px) {

    .container,
    .container-fluid{
        margin-right: auto;
        margin-left: auto;
        padding-left: 33px; 
        padding-right: 33px;
    }

    .section-white,
    .section-blue {
        padding: 80px 0;
    }

    .page-id-12 .section-white.hard-top,
    .page-id-15 .section-white.hard-top { margin-top: 80px !important; }

 }   

/**
 * Site Buttons
 */

.btn,
.btn-secondary,
.gform_next_button,
.gform_button,
.gform_previous_button {
    font-family: 'proxima_bold';
    font-weight: bold;
    display: inline-block;
    background-color: #90CBFA;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    padding: 12px 18px;
    border: 0;
}

    .btn:hover,
    .gform_previous_button:hover {
        color: #fff;
        background-color: #3CA5F9;
    }

.btn-secondary,
.gform_next_button,
.gform_button {
    background-color: #0061B8;
}

    .btn-secondary:hover,
    .gform_next_button:hover,
    .gform_button:hover {
        color: #fff;
        background-color: #004D92;
    }

.btn-block {
    display: block;
    width: 100%;
}

.btn + .btn,
.btn + .btn-secondary {
    margin-top: 15px; 
}

@media (min-width: 400px) {
    
    .btn + .btn,
    .btn + .btn-secondary {
        margin-top: 0;
        margin-left: 15px;
    }
    
}

@media (min-width: 1025px) {
    
    .btn,
    .btn-secondary {
        font-size: 18px;
        border-radius: 14px;
        padding: 15px 28px;
    }
    
}

@media (min-width: 1400px) {
    
    .btn,
    .btn-secondary {
        font-size: 18px;
        border-radius: 14px;
        padding: 15px 20px 12px;
    }
    
}



/**
 * Site Icons
 */

@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon.eot?q0jgh5');
    src:  url('../fonts/icomoon.eot?q0jgh5#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?q0jgh5') format('truetype'),
        url('../fonts/icomoon.woff?q0jgh5') format('woff'),
        url('../fonts/icomoon.svg?q0jgh5#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-keyboard_arrow_down:before {
    content: "\e901";
}
.icon-keyboard_arrow_left:before {
    content: "\e902";
}
.icon-keyboard_arrow_right:before {
    content: "\e903";
}
.icon-keyboard_arrow_up:before {
    content: "\e904";
}
.icon-star:before {
    content: "\e905";
}
.icon-arrow_forward_ios:before {
    content: "\e906";
}
.icon-arrow_back_ios:before {
    content: "\e907";
}
.icon-search:before {
    content: "\e900";
}
.icon-phone:before {
    content: "\e942";
}
.icon-location:before {
    content: "\e947";
}
.icon-menu:before {
    content: "\e9bd";
}
.icon-google:before {
    content: "\ea88";
}
.icon-google-plus:before {
    content: "\ea8b";
}
.icon-facebook:before {
    content: "\ea90";
}
.icon-twitter:before {
    content: "\ea96";
}
.icon-linkedin2:before {
    content: "\eaca";
}




/**
 * Tables
 */

table {
    border-collapse: collapse;
}

td {
}

tr {
}

th {
}

thead {
}

tbody {
}

tfoot {
}

/* Responsive Tables */
.table-wrap-outer { position: relative; }

.table-wrap-inner { overflow: auto; }

.table-wrap-outer table { margin: 0; }

@media (min-width: 600px) {
    .table-wrap-outer:after { display: none; }
    .table-wrap-inner { overflow: visible !important; }
}


/**
 * Forms
 */

label {
}

select {
}

textarea {
    height: 100px;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
    -webkit-appearance: none;
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"],
textarea,
select {
    width: 100%;
    padding: 8px;
    border: #959595 solid 1px;
    margin-bottom: 20px;
    color: #000;
    font-size: 15px;
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

select { padding: 8px !important; }

select:focus,
input:focus,
textarea:focus { border-color: #90CBFA; }


/* Default Submit Button Style */
[type="submit"] {
    border: 0;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

    /* Removes inconsistent padding from Firefox buttons */
    button::-moz-focus-inner,
    [type="reset"]::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
        border: none;
        padding:0;
    }

/* Default Radio/Checkbox Style (if using CF7) */
.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px; /* incase items go to 2 lines */
}


.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
    margin-left: 5px;
}


/* CF7 Validation (Replace if not using CF7) */

/* Individual field error messages */
.wpcf7-not-valid-tip {
	display: none !important;
}

/* Entire form error message */
.wpcf7-response-output {
	background: #fff;
	font-size: 15px;
	padding: 12px !important;
	border: 0 !important;
	color: red;
}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .selectric {
	border: red solid 1px;
}

.footer-form {
    margin-top: 20px;
}

@media(min-width: 1025px){

    [type="text"],
    [type="date"],
    [type="datetime"],
    [type="datetime-local"],
    [type="email"],
    [type="month"],
    [type="number"],
    [type="password"],
    [type="search"],
    [type="tel"],
    [type="url"],
    [type="week"],
    [type="date"],
    textarea {
        margin-bottom: 37px;
        padding: 12px 16px;
        border:  #0073DA solid 2px;
    }

    textarea { height: 137px; }

    .footer-form {
        margin-top: 45px;
    }

    /* .selectric-wrapper {
        margin-bottom:  37px;
        border:  #0073DA solid 2px;
    } */

}

.wpcf7-spinner {
    position: absolute !important;
}


/**
 * Breadcrumbs
 */

.breadcrumbs {
}



/**
 * Pagination
 */

.wp-pagenavi {
    margin-top: 50px;
}

.wp-pagenavi .pages {
    border: 0;
    margin-left: 0;
    padding-left: 0;
}

.wp-pagenavi span.current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    border: 1px solid #ddd;
    display: inline-block;
    padding: 6px 11px;
}

.wp-pagenavi span.current {
    background-color: #ddd;
    border-color: #ddd;
}

@media (min-width: 1025px) {
    
    .wp-pagenavi { margin-top: 70px; }
    
}

/**
 * Page-head
 */

.page-header {
    padding: 15px 0;
    border-bottom: #ccc solid 1px;
}

    .logo img { width: 120px; }

    .header-phone { display: none; }

    .mobile-menu {
        float: right;
        font-size: 30px;
        margin-top: 20px;
    }

    .header-search { 
        float: right; 
        margin-top: 27px;
        margin-right: 12px;
    }

@media( min-width: 1025px ) {

    .page-header { 
        padding: 0 0 15px;
    }

    a.logo img {
        padding-top: 25px;
    }

    .mobile-menu { display: none; }

    .header-phone {
        display: inline-block;
        float: right;
        font-size: 18px;
        text-transform: uppercase;
        font-family: 'proxima_bold';
        color: #90CBFA;
        text-align: center;
        margin-top: 15px;
        clear: right;
    }


    	.header-phone:hover { opacity: 0.7; }

        .header-phone span { 
            font-size: 26px; 
            color: #0073DA;
            font-weight: bold;
        	font-family: 'proxima';
        }

    .header-search { 
        margin-top: 50px;
    }

    .logo img { width: 160px; }


}


/**
 * Navigation
 */

.main-nav {
    display: none;
}

    .main-nav a { color: #000; }

@media(min-width: 1025px) {

    .main-nav {
        display: inline-block;
        padding-top: 15px;
        padding-right: 40px;
        float: right;
    }

        .main-nav li {
            display: inline-block;
            font-family: 'Avenir-next';
            margin-right: 10px; 
        }

        .main-nav a {
            font-size: 20px;
            text-transform: uppercase;
        }

            .main-nav a:hover,
            .main-nav .current-menu-item a { color: #0073DA; }

}


@media( min-width: 1200px ) {

    .main-nav {
        padding-right: 20px;
    }

    .main-nav li {
        margin-right: 22px; 
    }

        .main-nav a {
            font-size: 22px;
        }

}

@media( min-width: 1400px ) {

    .main-nav {
        padding-right: 40px;
    }

        .main-nav li {
            margin-right: 30px; 
        }

}

@media( min-width: 1600px ) {

    .main-nav li {
        margin-right: 45px; 
    }

}

@media(max-width: 1024px) {

	.page-header { height: 100px; }

	.page-header .col-xxs-6 { position: inherit; }

	.main-nav {
		position: absolute;
		left: 0;
		width: 100%;
		top: 100px;
		background-color: #fff;
		padding: 0;
		z-index: 9;
	}

		.main-nav ul {
			padding: 0;
			margin: 0;
			list-style: none;
		}

			.main-nav a { 
				border-bottom: #ccc solid 1px;
				padding: 7px 20px;
				display: block;
			}
}


/* @media(max-width: 768px) {

	.main-nav {
		top: 146px;
	}

} */

/**
 * Masthead
 */

.masthead {
    background-image: url(../img/banner-Background.png);
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: #fff;
}

    .masthead h1 { margin: 0; }

    .masthead p {
        font-family: 'proxima_bold';
        letter-spacing: 0.1em;
    }

@media(min-width: 767px){

    .masthead { padding: 100px 0; }

}

@media(min-width: 1025px){

    .masthead { padding: 150px 0; }

    .masthead p {
        margin-bottom: 40px;
        font-size: 22px;
    }

}

@media(min-width: 1400px){

    .masthead { padding: 200px 0; }

}

/**
 * Homepage
 */

.icons-box-wrapper {
    display: block;
    text-align: center;
}

    .icons-box-wrapper a {
        text-align: center;
        color: #393939;
        margin-bottom: 30px;
        padding-bottom: 30px;
        display: block;
        border-bottom: #ccc solid 1px;
    }

        .icons-box-wrapper a img { max-width: 50%; }

        .icons-box-wrapper a span {
            display: block;
            color: #0073DA;
            font-weight: bold;
            text-transform: uppercase;
            margin: 10px 0;
        }

       /*  .icons-box-wrapper a:last-child {
            border: 0;
            margin: 0;
            padding: 0;
        } */


.section-image-text .row { background-color: #0073DA; }

.image-text {
    padding: 30px;
    color: #fff;
}

    .image-text h4 {
        text-transform: uppercase;
        color: #90CBFA;
        font-weight: 600;
        margin-bottom: 0;
    }

    .image-text h2 { 
        font-weight: 600; 
        color: #fff;
    }

.steps {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

    .steps .number {
        float: left;
        width: 10%;
        color: #0073DA;
        font-family: 'proxima';
        font-weight: 600;
        font-size: 40px;
    }

    .steps .process {
        float: left;
        width: 90%;
    }

        .steps .process span {
            color: #0073DA;
            font-family: 'proxima';
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 5px;
            display: block;
        }



.testimonials {
     background-image: url(../img/Background.png);
     background-size: cover;
     background-position: left bottom;
     padding: 50px 0;
}

.testimonials-slide { padding: 20px; }

.testi-list {
    background-color: #fff;
    border: #0073DA solid 2px;
    padding: 20px;
}

    .testi-list .stars { 
        margin-bottom: 20px; 
        display: block;
        color: #0073DA;
    }

@media(min-width: 767px){

    .icons-box-wrapper a {
        display: inline-block;
        width: 49%;
        vertical-align: top;
        border: 0;
    }

        .icons-box-wrapper a span { margin: 17px 0 10px; }

    .icons-box-wrapper.logo a{
        width: 32%;
        text-align: center;
    }

    .image-text { padding: 40px; }

    .section-image-text .row {
    	display: flex;
    	align-content: center;
		justify-content: center;
		align-items: center;
		height: 100%;
    }

    .section-image-text .col-sm-6 { height: 100%; }

    .section-image-text img {
    	height: 100%;
    	object-fit: cover;
    }

}

@media(min-width: 1025px){

    .icons-box-wrapper a {
        width: 19%;
        padding: 0 20px;
        line-height: 26px;
        font-size: 17px;
    }

        .icons-box-wrapper a span {
            font-size: 20px;
        }

    .icons-box-wrapper a img {
    	max-width: 190px;
    	width: 100%;
    }

    .icons-box-wrapper.logo a{
        width: auto;
        padding: 0 38px;
    }

    .section-image-text img {
    	max-height: 550px;
    	width: 100%;
    }

    .image-text { padding: 40px; }

    .testimonials { padding: 75px 0; }

        .testi-list {
            padding: 40px 30px;
        }

            .testi-list .stars { 
                font-size: 30px;
            }

            .testi-list h3 { 
                font-size: 33px;
            }

    .steps {
        margin-bottom: 30px;
    }

        .steps .number {
            font-size: 80px;
            width: 18%;
        }


        .steps .process {
            width: 82%;
        }

    .gallery-slider {
        padding: 0 50px;
    }

}

@media(min-width: 1400px){

    .image-text.right { 
        float: left;
        max-width: 650px;
        padding-left: 120px;
        padding: 60px 50px 60px 70px;
    }

    .image-text.left { 
        float: right;
        max-width: 650px;
        padding: 60px 70px 60px 50px;
    }

    .steps {
        margin-bottom: 30px;
    }

        .steps .number {
            font-size: 100px;
            width: 20%;
        }

        .steps .process {
            width: 80%;
            margin-top: 15px;
        }

            .steps .process span {
                font-size: 24px;
            }

}

/**
 * Slick Slider
 */

.slick-prev,
.slick-next {
    position: absolute;
    top: 45%;
    left: -15px;
    border: 0;
    background-color: transparent;
    font-size: 0;
    font-family: 'icomoon';
}

.slick-next {
    left: auto;
    right: -20px;
}

    .slick-prev:before,
    .slick-next:before {
        content: "\e907";
        font-size: 30px;
        color: #90CBFA;
        font-weight: bold;
    }

    .slick-next:before {
        content: "\e906";
    }


@media(min-width: 600px){

    .slick-slide{ padding: 20px; }

}

/*Modify Slider*/

.gallery-slider {
    padding: 0 30px 10px;
}    

    .gallery-slider .slick-prev,
    .gallery-slider .slick-next {
        top: 41%;
    }

    .gallery-slider p {
        margin: 20px 0 0;
    }

@media(min-width: 1025px){

    .gallery-slider {
        padding: 0 40px;
    }    

    .gallery-slider .slick-prev:before,
    .gallery-slider .slick-next:before {
        font-size: 60px;
        font-weight: bold;
    }

}

/**
 * Innerpage
 */

.page-content {
    padding: 50px 0;
    display: block;
}

.founder-list {
    text-align: center;
    margin-bottom: 35px;
}

    .founder-list h4 {
        color: #0073DA;
    }

.teams {
    display: block;
    text-align: center;
}

    .teams-list {
        margin-bottom: 25px;
        display: inline-block;
        vertical-align: top;
    }

    .teams-list span {
        color: #0073DA;
        font-family: 'proxima_bold';
    }

.accordion {
    display: block;
}

    .accordion .content {
        display: none;
        padding: 20px 0;
    }

    .accordion h3 {
        border-bottom: #cccc solid 1px;
        font-weight: normal;
        font-family: 'Avenir';
        font-size: 20px;
        padding-bottom: 20px;
        padding-top: 20px;
        margin: 0;
        cursor: pointer;
        position: relative;
    }

        .accordion h3:after {
            font-family: 'icomoon';
            content: "\e901";
            position: absolute;
            right: 0;
            color: #2699FB;
        }

        .accordion h3.active:after { content: "\e904"; }

    .accordion h3:hover,
    .accordion h3.active { color: #0073DA; }


    .accordion h3.active { font-weight: bold; }

.imgtext-row { margin-bottom: 50px; }

    .imgtext-row:last-child { margin-bottom: 0; }

.img-with-shadow { 
    position: relative; 
    display: inline-block;
}

    .img-with-shadow img { margin: 0; }

    .img-with-shadow:after {
        width: 100%;
        height: 100%;
        content: '';
        display: block;
        position: absolute;
        background-color: #90CBFA;
        left: -16px;
        bottom: -16px;
        z-index: -1;
    }

    .img-with-shadow.right:after {
        left: auto;
        right: -16px;
    }

.text-content-inner {
    margin-top: 30px;
}

.section-white h3 {
    color: #0073DA;
}

    .section-white h3 span {
        color: #90CBFA;
    }

@media( min-width: 600px) {

    .teams-list {
        width: 45%;
        margin-left: 10px;
        margin-right: 10px;
    }

}

@media( min-width: 767px) {

    .teams-list {
        width: 30%;
        margin-bottom: 35px;
    }

    .text-content-inner { padding-top: 50px; }

}

@media( min-width: 1025px) {

	.founder-list {
		padding: 0 30px;
	}

		.founder-list img { max-width: 350px; }

    .teams-list {
        width: 20%;
        margin-bottom: 120px;
    }

    .teams-list img {
        margin-bottom: 25px;
    }

    .accordion .content {
        padding: 30px 0;
    }

    .imgtext-row { 
    	margin: 0px;
    	padding: 75px 0; 
    }

    	.imgtext-row:first-child { padding-top: 0; }

    .img-with-shadow:after {
        left: -36px;
        bottom: -36px;
    }

    .img-with-shadow.right:after {
        right: -36px;
    }

}

/**
 * Sidebar
 */


/* Blog */

.blog .page-sidebar .widget {
    margin-bottom: 50px;
}







/**
 * Page-footer
 */

.page-footer {
    padding: 30px 0;
    font-size: 16px;
    text-align: center;
}

    .footer-logo img { 
        margin: 0 auto 30px; 
    }
    
    .page-footer h3 {
        color: #0073DA;
        font-size: 20px;
        margin: 20px 0 6px;
        font-family: 'Avenir-next';
        font-weight: bold;
    } 

	    .page-footer h3 a {
	        color: #0073DA;
	    }

		    .page-footer h3 a:hover {
		        color: #535351;
		    }
    
    .page-footer .footer-menu ul {
        list-style: none;
        padding: 0;
    } 
    
    .page-footer a {
        color: #535351;
    } 

    .housing-footer {
        margin: 0 0 10px;
        width: 120px;
    }

@media(min-width: 600px) {
    
    .page-footer .footer-menu {
        float: left;
        width: 50%;
    } 

}

@media(min-width: 767px) {
    
    .page-footer {
        text-align: left;
    } 

}

@media(min-width: 1025px) {
    
    .page-footer {
        padding: 70px 0;
    } 

    .page-footer h3 { margin-bottom: 20px; }

    .page-footer li { margin: 5px 0; }

    .page-footer a:hover { color: #0073DA; }

}

.gform_wrapper .gf_page_steps { border: 0 !important; }

.gform_wrapper .gform_heading {
	text-align: center;
}

.gform_wrapper .gform_heading .gform_title { font-size: 40px; }

.gform_wrapper .gf_step {
	width: 31% !important;
	margin: 16px 15px 16px 0 !important;
	border-bottom: #0073DA solid 3px !important;
	font-size: 0 !important;
}

.gform_wrapper .gf_step_last { display: none !important; }

.gform_wrapper ul.gform_fields li.gfield {
	float: left;
	width: 50%;
	clear: unset;
	margin-bottom: 20px !important;
	padding-right: 20px !important;
	background: #fff !important;
	border: 0 !important;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
	padding-top: 12px;
	line-height: 20px;
}

#field_1_7 { width: 100% !important; }

.gform_wrapper .gform_page_footer { text-align: center; }

#field_1_17,
#field_1_18,
#field_1_27,
#field_1_19,
#field_1_16 { width: 100% !important; }

#input_1_18 label,
#input_1_27 label { display: none; }

#input_1_18 input { margin-bottom: 20px !important; }

.gfp_big_button .gfield_radio li input[type=radio] {
    display:none !important;
}

.gfield_html {
	margin: 30px 0 10px 0;
}

.gform_fields input {
	padding: 10px !important;
	margin-bottom: 0 !important;
}

.gform_fields .selectric { padding: 3px !important; } 

.gfp_big_button .gfield_radio li { float: left; }

.gfp_big_button .gfield_radio label {
    max-width: 300px;
    width: 120px !important;
    margin: 0px auto;
    padding: 10px 10px !important;
    float: none;
    background: #ccc;
    color: #fff;
    letter-spacing: 0.09375rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    font-family: Open Sans, sans-serif;
    font-weight: 600;
    margin: 0;
    display: block;
    -webkit-transition: background-color 300ms ease-out;
    -moz-transition: background-color 300ms ease-out;
    transition: background-color 300ms ease-out;
    -webkit-appearance: none;
    cursor: pointer;
    line-height: 1;
    position: relative;
    text-decoration: none;
    text-align: center;
    font-size: 1.1em;
    box-sizing: border-box;
}

.gfp_big_button .gfield_radio label:hover,
.gfp_big_button .gfield_radio label:focus,
.gfp_big_button .gfield_radio label.active,
.gfield_radio input:checked + label {
    background: #414142;
}