/*
Theme Name: Ultra
Description: Custom Wordpress Theme
Author: Ultra Design Agency
Author URI: http://www.ultradesignagency.com/
Version: 6.4
License: Copyright 2018 Ultra Design Agency
*/

/* CSS RESET 
--------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
ol, ul {
    list-style: none
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}
/* FONTS

------------------------------------------------------*/
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
.italic, i, em {
    font-style: italic;
}
strong, .bold {
    font-weight: 700;
}
.x-bold {
    font-weight: 800;
}
.white {
    color: rgba(255,255,255,1);
}
.blue {
    color: rgba(0,41,60,1);
}
.blue-bg {
    background-color: rgba(0,41,60,1);
}
.yellow {
    color: rgba(255, 210, 1);
}
.gray {
    color: rgba(144,144,144,1)
}
.gray-bg {
    background-color: rgba(144,144,144,1)
}
.aqua {
    color: rgba(14,110,154,1);
}
.light-gray-bg {
    background-color: rgba(243,243,243,1);
}
/* BASIC STRUCTURE 
------------------------------------------------------*/
html, body {
    margin: 0;
    padding: 0;
}
body {
    background: #fff;
    color: rgba(0,41,60,1);
    font-size: 14px;
    animation: fadeIn 1.5s linear;
    line-height: 180%;
    font-family: 'Open Sans', sans-serif;
}
@keyframes fadeIn {
 0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
#container {
    position: relative;
}
a {
    text-decoration: none;
    cursor: pointer;
    color: rgba(0,41,60,1);
}
a:hover {
    text-decoration: none;
    cursor: pointer
}
img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
h1 {
    font-size: 5vw;
    line-height: 100%;
}
h2 {
    font-size: 3.6vw;
    line-height: 125%;
    margin: 0 0 20px;
}
h3 {
    font-size: 2.6vw;
    line-height: 125%;
    margin: 0 0 15px;
}
h4 {
    font-size: 18px;
    line-height: 125%;
    margin: 0 0 15px;
}
h5 {
    font-size: 16px;
    line-height: 125%;
    margin: 0 0 15px;
}
p {
    margin: 0 0 15px;
}
.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.clear {
    clear: both;
}
.center {
    text-align: center;
}
#container img {
    max-width: 100%;
    height: auto;
    width: auto;
}
.scroll {
    background-attachment: fixed
}
.desktop {
    display: block
}
.mobile {
    display: none
}
input[type='submit'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}
a[href^=tel] {
    color: inherit;
    text-decoration: none;
}
body img.gform_ajax_spinner {
    display: none!important;
}
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe, .videoWrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.button-margin {
    margin: 30px 0;
}
.button-white {
    padding: 8px 30px;
    color: rgba(255, 255,255, 1);
    background-color: rgba(14,110,154,0);
    border: 2px solid rgba(14,110,154,1);
    transition: all .4s ease;
    cursor: pointer;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
}
.button-white:hover {
    background: rgba(14,110,154,1);
}
.fourteen-hundred {
    margin: 0 auto;
    max-width: 1400px;
    width: 90%;
    padding: 0 5%;
}
.one-thousand {
    margin: 0 auto;
    max-width: 1000px;
    width: 90%;
    padding: 0 5%;
}
.flex-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.flex-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}
.margin {
    margin: 5% auto 0
}
.padding {
    padding: 5% 0;
}
/* HEADER 
------------------------------------------------------*/

header {
    padding: 10px 0;
    position: fixed;
    z-index: 300;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,41,60,0);
    transition: all .4s ease;
    height: 76px;
}
header.fixed {
    background-color: rgba(0,41,60,1);
}
#logo {
    max-width: 100%;
    width: auto;
    height: auto;
}
.top-links > li {
    display: inline-block;
    width: 45%;
    padding: 0 2%;
}
.top-links > li:first-child {
    text-align: left;
}
.top-links > li:last-child {
    text-align: right;
}
.main-nav > li {
    display: inline-block;
}
.main-nav > li:nth-child(1) {
    padding: 0 0 0 1.5%;
    text-align: right;
}
.main-nav > li:nth-child(2) {
    width: 30%;
    padding: 0 1.5%;
    text-align: center;
    max-width: 300px;
}
.main-nav > li:nth-child(3) {
    padding: 0 1.5% 0 0;
    text-align: left;
}
.top-right > li {
    margin: 0 10px 0;
    font-size: 11px;
	display: inline-block;
}
.top-right > li:first-child {
    margin: 0 10px 0 0;
}
.top-right > li:last-child {
    margin: 0 0 0 10px;
}
.top-right > li a {
    color: rgba(144,144,144,1);
    transition: all .4s ease;
    font-weight: 700;
}
.top-right > li > a:hover {
    color: rgba(255,255,255,1);
}
.top-menu li {
    display: inline-block;
    margin: 0 0 0 20px;
}
.top-menu li:first-child {
    margin: 0;
}
.top-menu > li a {
    color: rgba(144,144,144,1);
    transition: all .4s ease;
    font-weight: 700;
}
.top-menu > li > a:hover {
    color: rgba(255,255,255,1);
}
.desktop .menu > li {
    display: inline-block;
    margin: 10px 20px 0;
    position: relative;
    vertical-align: top;
    font-weight: 700;
    font-size: 12px;
}
.desktop .menu > li > a {
    color: rgba(144,144,144,1);
    transition: all .4s ease;
    padding: 0 10px 30px;
}
.desktop .menu > li > a:hover {
    color: rgba(255,255,255,1);
}
.desktop .menu > li > ul {
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0,41,60,1);
    transition: all .4s ease;
    padding: 10px 20px 10px;
    position: absolute;
    z-index: 9999;
    top: 41px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    line-height: 20px;
    width: -moz-max-content;
    text-align: center;
	min-width: 150px;
}
.desktop .menu > li:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 51px;
}
.desktop .menu > li > ul > li {
    margin: 0 0 5px;
}
.desktop .menu > li > ul > li > a {
    color: rgba(144,144,144,1);
    transition: all .4s ease;
    padding: 0 10px 30px;
}
.desktop .menu > li > ul > li > a:hover {
    color: rgba(255,255,255,1);
}
.desktop .menu > ul > li > ul > li {
    position: relative;
    display: block;
    white-space: nowrap;
}
header .social-media a {
    display: inline-block;
    font-size: 14px;
    margin: 0 5px 0 0;
    color: rgba(144,144,144,1);
    transition: all .4s ease;
}
header .social-media a:hover {
    color: rgba(255,255,255,1);
}
/*MOBILE MENU
-------------------------------------------------------*/
.c-hamburger {
    display: block;
    position: fixed;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 32px;
    height: 36px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    right: 5%;
    z-index: 999999;
    top: 10px;
}
.c-hamburger:focus {
    outline: none;
}
.c-hamburger span {
    display: block;
    position: absolute;
    top: 16px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: #9D9C9D;
}
.c-hamburger span::before, .c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #9D9C9D;
    content: "";
}
.c-hamburger span::before {
    top: -6px;
}
.c-hamburger span::after {
    bottom: -6px;
}
.c-hamburger--htx {
    background-color: rgba(0,0,0,0);
}
.c-hamburger--htx span {
    -webkit-transition: background 0s 0.3s;
    transition: background 0s 0.3s;
}
.c-hamburger--htx span::before, .c-hamburger--htx span::after {
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0s;
    transition-delay: 0.3s, 0s;
}
.c-hamburger--htx span::before {
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}
.c-hamburger--htx span::after {
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}
.c-hamburger span::before {
    top: -6px;
    width: 100%;
    left: 0;
    transition: all .2s ease;
}
.c-hamburger:hover span::before {
    width: 50%;
    left: 25%;
}
.c-hamburger span::after {
    top: 6px;
    width: 100%;
    left: 0;
    transition: all .2s ease;
}
.c-hamburger:hover span::after {
    width: 50%;
    left: 25%;
}
.c-hamburger--htx.is-active {
    background-color: rgba(0,0,0,0);
}
.c-hamburger--htx.is-active span {
    background: none;
}
.c-hamburger--htx.is-active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;
    left: 0;
}
.c-hamburger--htx.is-active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 100%;
    left: 0;
    top: 0;
}
.c-hamburger--htx.is-active span::before, .c-hamburger--htx.is-active span::after {
    -webkit-transition-delay: 0s, 0.3s;
    transition-delay: 0s, 0.3s;
}
#content-inner {
    z-index: 100000;
    position: fixed;
    overflow: auto;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease;
    background: rgba(0,41,60,1);
}
.infoLink {
    z-index: 9999;
}
.menu-content {
    margin: 0 10%;
    width: 80%;
    text-align: center;
}
.menu-content #logo {
    height: 30px;
    margin: 10px 0 0;
}
.menu-content .social-media a {
    display: inline-block;
    font-size: 14px;
    margin: 0 5px 0 0;
    color: rgba(144,144,144,1);
    transition: all .4s ease;
}
.menu-content .social-media a:hover {
    color: rgba(255,255,255,1);
}
#menu-mobile-menu {
    font-size: 16px;
    margin: 15px 0;
    font-weight: 800;
    text-transform: uppercase;
}
#menu-mobile-menu li {
    margin: 0 0 6px;
}
#menu-mobile-menu a {
    color: #fff;
}
#menu-mobile-menu li ul {
    margin: 6px 0 0 10px;
}
#menu-mobile-menu li ul li:before {
    content: "- ";
}
/* CONTENT
------------------------------------------------------*/

#video-bg {
    position: absolute;
    right: 0;
    width: 100%;
    min-width: 100%;
    height: auto;
    background-size: cover;
    bottom: 0;
    z-index: -1;
}
.vid-overlay {
    position: relative;
    width: 100%;
    color: #fff;
    z-index: 1;
}
.bheight {
    overflow: hidden;
    position: relative;
}
.video-inner {
    padding: 200px 5% 50px;
    width: 90%;
    background-color: rgba(0,41,60,.9);
    background-image: url(images/dots.png);
    background-position: top center;
    background-repeat: repeat-y;
}
.banner-button {
    margin: 40px auto 100px;
}
@-moz-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {
 -moz-transform: translateY(0);
 transform: translateY(0);
}
 40% {
 -moz-transform: translateY(-30px);
 transform: translateY(-30px);
}
 60% {
 -moz-transform: translateY(-15px);
 transform: translateY(-15px);
}
}
@-webkit-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
 40% {
 -webkit-transform: translateY(-10px);
 transform: translateY(-10px);
}
 60% {
 -webkit-transform: translateY(-5px);
 transform: translateY(-5px);
}
}
@keyframes bounce {
 0%, 20%, 50%, 80%, 100% {
 -moz-transform: translateY(0);
 -ms-transform: translateY(0);
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
 40% {
 -moz-transform: translateY(-10px);
 -ms-transform: translateY(-10px);
 -webkit-transform: translateY(-10px);
 transform: translateY(-10px);
}
 60% {
 -moz-transform: translateY(-5px);
 -ms-transform: translateY(-5px);
 -webkit-transform: translateY(-5px);
 transform: translateY(-5px);
}
}
.arrow-outer {
    border: 3px solid rgba(14,110,154,1);
    padding: 20px 15px 40px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 20px;
    bottom: 15px;
}
.arrow {
    position: absolute;
    left: 11px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: rgba(14,110,154,1);
    font-size: 16px;
    top: 30px;
}
.bounce {
    -moz-animation: bounce 2.5s infinite;
    -webkit-animation: bounce 2.5s infinite;
    animation: bounce 2.5s infinite;
}
.client-logos li {
    display: inline-block;
    width: 15%;
    padding: 20px 2% 0;
    vertical-align: middle;
}
.client-logos li img {
    max-width: 150px !important;
    max-height: 60px !important;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .5;
    transition: .4s ease;
    width: 95% !important;
}
.client-logos li img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}
.services-loop {
    padding: 5% 0;
}
.services-loop li {
    margin: 0 1.5%;
    width: 30%;
    display: inline-block;
    max-width: 300px;
    position: relative;
}
.services-loop li h3 {
    padding: 0 0 10px;
    width: 100%;
    font-size: 22px;
}
.services-loop li .inner {
    padding: 15%;
    width: 70%;
}
.services-loop li .inner .icon {
    height: 4vw;
    width: 4vw;
    position: relative;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,1);
    margin: 0 auto 20px;
}
.services-loop li .inner .icon i {
    font-size: 2.2vw;
    position: absolute;
    top: .9vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.services-loop li .schedule {
    border-top: 5px solid rgba(243,243,243,1);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 2px;
    width: 100%;
    padding: 10px 0;
}
.services-loop li .schedule a {
    transition: all .4s ease;
}
.services-loop li .schedule a:hover {
    color: rgba(255,255,255,1);
}
.testimonial-loop {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}
.testimonial-loop .inner {
    padding: 7% 5% 5%;
    background-color: rgba(0,41,60,.85);
    width: 90%;
}
.testimonial-loop .inner .name-location span {
    padding: 0 10px;
    margin: 0 0 5px;
}
.testimonial-loop .inner ul li:nth-child(1) {
    width: 5%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.testimonial-loop .inner ul li:nth-child(2) {
    width: 88%;
    display: inline-block;
    vertical-align: top;
}
.testimonial-loop .inner ul li:nth-child(3) {
    width: 5%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.testimonial-loop .inner li i {
    font-size: 1.5vw;
}
.author span {
    padding: 0 8px;
}
.service-group li {
    margin: 0 auto 5%;
    padding: 5%;
    max-width: 1000px;
    width: 80%;
}
.service-group li h3 {
    margin: 0;
}
.service-group li .copy {
    margin: 20px 0 50px;
}
.service-group-list-items p {
    position: relative;
    padding-left: .4em;
    margin: 0 0 0 20px;
}
.service-group-list-items p:before {
    content: "✔";
    color: rgba(255,255,255,1);
    font-size: 18px;
    position: absolute;
    left: -15px;
    top: 0;
}
.service .copy {
    margin: 5% auto 0;
}
.copy h1, .copy h2, .copy h3, .copy h4, .copy h5 {
    font-weight: 800;
    text-transform: uppercase;
}
.coverage #section-2, .resources #section-2 {
    margin: 5% 0 0;
}
.pdf-loop i {
    margin: 0 5px 0 0;
}
.youtube-loop {
    margin: 0 0 5%;
}
.youtube-loop li {
    width: 47%;
    margin: 1%;
    display: inline-block;
    vertical-align: top;
}
.resources #section-2 h3 {
    margin: 0 0 5%;
}
.package-loop {
margin: 0;
padding: 0;
}
.package-loop > li {
    display: inline-block;
	width: 22%;
    padding: 0 5% 5% 5%;
	vertical-align: top;
	border-right: 1px solid rgba(144,144,144,.5);
}
.package-loop > li:last-child {
	border: none;
}
.package-loop > li h1 {
	margin: 0 0 20px;
}
.package-loop > li h3 {
	margin: 0 0 10px;
}
.package-loop > li h5 {
	margin: 0;
}
.package-loop > li h4 p {
	margin: 0;
}
.package-sections {
	display: flex;
	flex-direction: column; 
}
.package-sections > li {
	flex: 1;
}
.package-bullets {
	display: list-item;
	vertical-align: top;
	margin: 0 0 0 15px;
	list-style: disc;
}
.package-bullets > li {
	padding: 0 0 0 5px;
	margin: 0 0 5px;
	line-height: 120%;
}
.add-on-loop {
	margin: 25px 0 0;
}
.add-on-loop > li {

display: block;
vertical-align: top;
}
.add-on-loop > li > ul {
		flex-direction: row;
display: flex;
margin: 0;
padding: 0;
}
.add-on-loop > li > ul > li {
	flex-grow: 1;
display: flex;
justify-content: top;
flex-direction: column;
vertical-align: top;
	border-bottom: 1px solid rgba(144,144,144,.2);
}
.add-on-loop > li > ul > li:nth-child(2) {
	text-align: right;
}
/*BLOG
------------------------------------------------------*/
.blog-loop > ul {
    margin: 0 0 5%;
    width: 90%;
    padding: 5%;
    background: rgba(197,197,197,.15);
}
.blog-loop > ul > li:first-child {
    width: 30%;
    display: inline-block;
    vertical-align: middle;
}
.blog-loop > ul > li:first-child .image {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 33% 0;
}
.blog-loop > ul > li:last-child {
    padding: 0 0 0 5%;
    width: 64%;
    display: inline-block;
    vertical-align: middle;
}
.blog-loop > ul > li:last-child h4 {
    margin: 0;
}
.blog-loop > ul > li:last-child .meta {
    margin: 0 0 5px;
}
.pagination {
    margin: 2.5% auto;
}
.pagination li {
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}
.pagination li i {
    font-size: 20px;
    position: relative;
    top: 1px;
}
.blog-single .image {
    margin: 0 0 10px;
}
.blog-single h4 {
    margin: 0;
}
.blog-single .meta {
    margin: 0 0 5px;
}
.features-benefits {
border-bottom: 1px solid #000;
}
.features-benefits > li img {
	height: 150px !important;
	max-width: auto !important;
	width: auto;
}
.features-benefits > li:nth-child(1) {
	width: 24%;
	padding: 2%;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	
}.features-benefits > li:nth-child(2) {
    width: 66%;
    padding: 2%;
    display: inline-block;
    vertical-align: middle;
    
}
/*FORMS
------------------------------------------------------*/
.form .gfield_label, .ginput_complex label, .validation_error {
    display: none;
}
.form .gfield_label, .ginput_complex input {
    width: 96% !important;
    background: transparent;
    padding: 10px 2%;
    color: rgba(0,41,60,1);
    border: 1px solid rgba(0,41,60,1);
    margin: 0 0 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
}
.form .medium {
    width: 96%;
    background: transparent;
    padding: 10px 2%;
    color: rgba(0,41,60,1);
    border: 1px solid rgba(0,41,60,1);
    margin: 0 0 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-align: center;
    font-weight: 600;
}
.form .large {
    width: 100%;
    background-color: transparent;
    padding: 9px 1%;
    color: rgba(0,41,60,1);
    border: 1px solid rgba(0,41,60,1);
    margin: 0 0 10px;
    -webkit-appearance: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
}
.half {
    width: 49%;
}
.form-left {
    width: 49%;
    float: left;
    clear: both;
}
.form-right {
    width: 49%;
    float: right;
    margin: 0 0 0 2%;
}
.address_line_1 {
    clear: both;
    width: 100%;
    display: block;
}
.address_city {
    width: 49%;
    float: left;
}
.address_state {
    width: 49%;
    margin: 0 0 0 2%;
    float: right;
}
.address_zip {
    width: 49%;
    float: left;
    clear: both;
}
.address_country {
    width: 49%;
    margin: 0 0 0 2%;
    float: right;
}
.address_country select {
    width: 100%;
    background-color: transparent;
    padding: 9px 2%;
    color: rgba(0,41,60,1);
    border: 1px solid rgba(0,41,60,1);
    margin: 0 0 10px;
    -webkit-appearance: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
}
.form input {
    width: 100%;
    background-color: transparent;
    color: rgba(0,41,60,1);
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
}
.form .gfield_checkbox {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 15px;
    font-family: 'Open Sans', sans-serif;
}
.form .gfield_checkbox input {
    width: auto;
}
.form .form-margin-top {
    margin-top: 15px;
}
.form .form-margin-bottom {
    margin-bottom: 15px;
}
.form .form-4-column {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    clear: both;
}
.form .form-3-column {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    clear: both;
}
.form .form-2-column {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    clear: both;
}
.form .gfield_radio input {
    width: auto;
    background-color: transparent;
    color: rgba(0,41,60,1);
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin: 0 10px 0 0
}
.form .gform_footer {
    clear: both;
}
.form .validation_message {
    position: relative;
    font-size: 11px;
    top: 0;
    margin: -5px 0 5px;
    text-align: center;
}
.form .gform_button {
    padding: 10px 5%;
    color: rgba(255, 210, 0);
    background-color: rgba(0,41,60,1);
    border: 2px solid rgba(0,41,60,1);
    transition: all .4s ease;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    font-weight: 800;
    text-transform: uppercase;
}
.form .gform_button:hover {
    background-color: rgba(14,110,154,1);
    border: 2px solid rgba(14,110,154,1);
}

::-webkit-input-placeholder {
 color: rgba(0,41,60,1);
 opacity: 1;
}
::-moz-placeholder {
 color: rgba(0,41,60,1);
 opacity: 1;
}
:-ms-input-placeholder {
 color: rgba(0,41,60,1);
 opacity: 1;
}
:-moz-placeholder {
 color: rgba(0,41,60,1);
 opacity: 1;
}
select {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 3.2em) 0.7em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
}
select:focus {
    background-image: linear-gradient(45deg, gray 50%, transparent 50%), linear-gradient(135deg, transparent 50%, gray 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 3.2em) 0.7em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    outline: 0;
}
 select:-moz-focusring {
 color: transparent;
 text-shadow: 0 0 0 #000;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
}
.form .gfield_radio {
    color: rgba(0,41,60,1);
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 15px;
}
.qc-width {
    max-width: 600px;
    width: 90%;
    padding: 0 5%;
    margin: 5% auto;
}
.qc h2 {
    margin: 0 0 10px;
}
/*FOOTER
------------------------------------------------------*/

footer {
    position: relative;
    text-align: center;
}
.footer-ul {
    margin: 0 auto 20px;
    padding: 2%;
    width: 96%;
    max-width: 1600px;
}
.footer-ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 2% 3%;
}
.footer-ul > li:nth-child(1) {
    width: 21%;
    text-align: right;
}
.footer-ul > li:nth-child(1) #logo {
    max-width: 200px;
    width: auto;
    height: auto;
}
.footer-ul > li:nth-child(2) {
    width: 38%;
    text-align: center;
    border-right: 1px solid rgba(144,144,144,1);
    border-left: 1px solid rgba(144,144,144,1);
}
.footer-ul > li:nth-child(3) {
    width: 21%;
    text-align: left;
}
.footer-ul .social-media {
    border-top: 1px solid rgba(144,144,144,1);
    border-bottom: 1px solid rgba(144,144,144,1);
    border-left: 1px solid rgba(144,144,144,1);
    display: inline-block;
}
.footer-ul .social-media a {
    display: inline-block;
    font-size: 16px;
    color: rgba(144,144,144,1);
    transition: all .4s ease;
    border-right: 1px solid rgba(144,144,144,1);
    height: 30px;
    padding: 5px 25px 0px;
}
.footer-ul .social-media a:hover {
    color: rgba(255,255,255,1);
}
.footer-ul .menu > li > a {
    display: none;
}
.footer-ul .menu > li:first-child {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    padding: 0 4% 0 0;
    text-align: left;
}
.footer-ul .menu > li:last-child {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 4%;
    text-align: right;
}
.footer-ul .menu > li > ul > li > a {
    color: rgba(144,144,144,1);
    transition: all .4s ease;
    font-size: 12px;
    font-weight: 700;
}
.footer-ul .menu > li > ul > li > a:hover {
    color: rgba(255,255,255,1);
}
#copyright {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}
#copyright span {
    padding: 0 10px;
}
.ultra {
    margin: 3px 0;
}
#ultra-logo {
    height: 28px;
}

/*RESPONSIVE CSS
------------------------------------------------------*/

@media only screen and (max-width : 1000px) {
.main-nav > li:nth-child(2) {
    max-width: 250px;
}
.desktop .menu > li {
    margin: 10px 10px 0;
}
.video-inner {
    padding: 150px 5% 25px;
}
.client-logos li img {
    max-width: 100px !important;
    max-height: 50px !important;
}
.footer-ul .menu > li:first-child {
    width: 100%;
    padding: 0;
    text-align: center;
}
.footer-ul .menu > li:last-child {
    width: 100%;
    padding: 0;
    text-align: center;
}
.footer-ul > li:nth-child(2) {
    width: 28%;
}
.footer-ul > li:nth-child(1) {
    width: 26%;
}
.footer-ul > li:nth-child(3) {
    width: 26%;
}
}

@media only screen and (max-width : 800px) {
body {
    font-size: 13px;
}
.desktop {
    display: none !important
}
.mobile {
    display: block !important
}
h1 {
    font-size: 35px;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 17px;
}
h5 {
    font-size: 15px;
}
#logo {
    height: 30px;
}
.top-links {
    display: none;
}
header {
    height: 36px;
}
.video-inner {
    padding: 100px 5% 25px;
}
.footer-ul > li:nth-child(1) {
    width: 100%;
    padding: 14px 0 0;
    text-align: center;
}
.footer-ul > li:nth-child(2) {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(144,144,144,1);
    border-bottom: 1px solid rgba(144,144,144,1);
    border-left: none;
    border-right: none;
    margin: 15px auto;
}
.footer-ul > li:nth-child(3) {
    width: 100%;
    padding: 0 0 6px;
    text-align: center;
}
.client-logos li img {
    max-width: 80px !important;
    max-height: 40px !important;
}
.services-loop li {
    margin: 0 auto 5%;
    width: 90%;
    display: block;
    max-width: inherit;
}
.services-loop li .inner {
    padding: 10%;
    width: 80%;
}
	.youtube-loop li {
    width: 98%;
    margin: 1%;
    display: block;

}
	.services-loop li .inner .icon {
    height: 30px;
    width: 30px;
}
.services-loop li .inner .icon i {
    font-size: 16px;
    top: 7px;
}
	.package-loop > li {
		display: block;
		padding: 5% 0 5%;
		border-right: none;
		border-bottom: 1px solid rgba(144,144,144,.5);
		width: 100%;
	}
}

@media only screen and (max-width : 600px) {
body {
    font-size: 12px;
}
.desktop {
    display: none !important
}
.mobile {
    display: block !important
}
h1 {
    font-size: 30px;
}
h2 {
    font-size: 22px;
}
.client-logos li {
    width: 28%;
}
.arrow-outer {
    border: 2px solid rgba(14,110,154,1);
    padding: 10px 10px 30px;
}
.arrow {
    left: 6px;
    font-size: 14px;
    top: 15px;
}
.banner-button {
    margin: 40px auto 60px;
}

	.services-loop li h3 {
    font-size: 20px;
}
}
