/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/


/*------------------------------------*\
    MAIN
\*------------------------------------*/


/* global box-sizing */

*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* html element 62.5% font-size for REM use */

html {
    font-size: 62.5%;
}

body {
    font: 300 1.4rem/1.4 'Montserrat', sans-serif;
    color: #444;
}


/* clear */

.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: #444;
    text-decoration: none;
}

a:hover {
    color: #444;
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

.entry-content li {
    padding-bottom: 10px;
}

input:focus {
    outline: 0;
    border: 1px solid #04A4CC;
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/


/* 
    Flexbox CSS framework with all necesary classes to work with layouts
    This classes aims at providing a more efficient way to lay out, align and distribute space among items in a container
*/

.flex-it {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-item-auto {
    flex-basis: auto;
    flex: 1;
}


/*
    This allows the default alignment (or the one specified by align-items) to be overridden for individual flex items.
    auto | flex-start | flex-end | center | baseline | stretch;
*/

.flex-item-auto {
    align-self: auto;
}

.flex-item-start {
    align-self: flex-start;
}

.flex-item-end {
    align-self: flex-end;
}

.flex-item-center {
    align-self: center;
}

.flex-item-baseline {
    align-self: baseline;
}

.flex-item-stretch {
    align-self: stretch;
}


/* 
    This defines the alignment along the main axis. 
    It helps distribute extra free space left over when either all the flex items on a line are inflexible, 
    or are flexible but have reached their maximum size. It also exerts some control over the alignment 
    of items when they overflow the line. 
    flex-start | flex-end | center | space-between | space-around | space-evenly;
*/

.flex-content-start {
    justify-content: flex-start;
}

.flex-content-end {
    justify-content: flex-end;
}

.flex-content-center {
    justify-content: center;
}

.flex-content-between {
    justify-content: space-between;
}

.flex-content-around {
    justify-content: space-around;
}

.flex-content-evenly {
    justify-content: space-evenly;
}


/* 
align-items:
The next classes defines the default behaviour for how flex items are 
laid out along the cross axis on the current line. 
Think of it as the justify-content version for the cross-axis (perpendicular to the main-axis).
flex-start | flex-end | center | baseline | stretch;
*/

.flex-xcontent-start {
    align-items: flex-start;
}

.flex-xcontent-end {
    align-items: flex-end;
}

.flex-xcontent-center {
    align-items: center;
}

.flex-xcontent-baseline {
    align-items: baseline;
}

.flex-xcontent-stretch {
    align-items: stretch;
}


/*
    align-content:
    This aligns a flex container's lines within when there is extra space in the cross-axis, 
    similar to how justify-content aligns individual items within the main-axis.
    flex-start | flex-end | center | space-between | space-around | stretch;
*/

.flex-xwrap-content-start {
    align-content: flex-start;
}

.flex-xwrap-content-end {
    align-content: flex-end;
}

.flex-xwrap-content-center {
    align-content: center;
}

.flex-xwrap-content-between {
    align-content: space-between;
}

.flex-xwrap-content-around {
    align-content: space-around;
}

.flex-xwrap-content-stretch {
    align-content: stretch;
}


/* CONTENT ITEMS ALIGN */

.flex-2 {
    flex-basis: auto;
    flex: 2;
}

.flex-3 {
    flex-basis: auto;
    flex: 3;
}

.h100 {
    height: 100%;
}

@media only screen and (max-width: 40em) {
    .flex-col-sm {
        flex-direction: column;
    }
}

@media only screen and (max-width: 63.9375em) {
    .flex-col-mobile {
        flex-direction: column;
    }
}


/* wrapper */

.wrapper {
    max-width: 1170px;
    width: 95%;
    margin: 0 auto;
    position: relative;
}


/* header */

.header-brand {
    position: relative;
    z-index: 9999;
}

.hero-image {
    max-height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center 82%;
    border-top: 6px solid #ab111d;
    -webkit-box-shadow: 0px 11px 19px -9px rgba(0, 0, 0, 0.29);
    -moz-box-shadow: 0px 11px 19px -9px rgba(0, 0, 0, 0.29);
    box-shadow: 0px 11px 19px -9px rgba(0, 0, 0, 0.29);
    position: relative;
}

.hero-shadow {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.59) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.59) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.59) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#96000000', endColorstr='#00000000', GradientType=0);
}

.hero-content {
    background-position: bottom right;
    background-repeat: no-repeat;
}

.hero-slogan {
    max-width: 490px;
    color: #fff;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.75);
}

.hero-slogan-text-1 {
    font: 800 3.5rem/1 Montserrat, sans-serif;
}

.hero-slogan-text-2 {
    font: 400 1.8rem/1.2 'Montserrat', sans-serif;
    color: #fff;
    max-width: 550px;
}

.hero-slogan-text-2.sub-headline {
    font-size: 1.8rem;
    line-height: 2.1rem;
}


/* logo */

.logo {
    max-width: 450px;
    padding: 10px 0 0;
}

.logo-img {}


/* nav */

.menu-aux .main-menu-item {
    padding-top: 0;
}

.menu-aux a.main-nav-lnk {
    padding: 8px;
    padding-left: 8px;
    padding-right: 13px;
    margin-right: 10px;
    border-right: 1px solid #dadada;
    font: 300 1.2rem/1 'Roboto', sans-serif;
    color: #204765;
    text-transform: uppercase;
    letter-spacing: inherit;
    text-align: center;
    padding-top: 9px;
}

.menu-aux a.main-nav-lnk:hover {
    color: inherit;
    background-color: inherit;
    text-decoration: underline;
}

.social-media {
    padding-top: 10px;
}

.social-item {
    margin-left: 10px;
    padding: 0 20px 0 0;
    max-height: 22px;
}

.social-item:first {
    margin-left: 10px;
}

.social-item i {
    font-size: 2rem;
    color: #6d6d6d;
}

.cta-main {
    background-color: #3b76bd;
    color: #fff;
    font: 700 2.5rem/1 'Montserrat', sans-serif;
    text-decoration: none;
    display: block;
    padding: 16px;
    margin-top: 24px;
    border-radius: 3px;
    max-width: 270px;
    text-align: center;
}

.cta-main:hover {
    color: #fff;
    text-decoration: none;
}


/* sidebar */

.sidebar {}


/* footer */

.footer {
    background-color: #204765;
    padding-bottom: 30px;
}

.footer .social-item i {
    font-size: 3rem;
    color: #ffffff;
}

.logo-footer {
    padding: 50px 0 20px;
    max-width: 360px;
}

.horizontal-cut {
    background-color: #fff;
    max-width: 35%;
}

.diagonal-cut {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: #ffffff transparent transparent transparent;
}

.footer-first {
    padding-left: 40px;
}

.copy-right {
    font: 400 1.2rem/1.4 'Raleway', sans-serif;
    color: #fff;
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 18px;
}

.main-nav {
    border-top: 1px solid #e8e8e8;
}

.main-nav ul,
.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a.main-nav-lnk {
    padding: 14px 30px;
    font: 500 1.5rem/1 'Roboto', sans-serif;
    letter-spacing: 1.1px;
    color: #204765;
    text-transform: uppercase;
    transition: all .2s ease;
    background-color: #fff;
    border-radius: 4px 4px 0 0;
}

a.main-nav-lnk:hover {
    background-color: #204765;
    color: #fff;
}

.main-content-home {
    padding-top: 0;
    font: 400 1.7rem/1.4 'Raleway', sans-serif;
}

.main-content-home h2 {
    font: 800 3.5rem/1 'Montserrat', sans-serif;
    margin-top: 0;
}

.main-content-home h2>span {
    font: 400 3rem/1.3 'Anton', sans-serif;
    display: block;
}

.btn-cta {
    font: 700 1.5rem/1 'Roboto';
    display: block;
    padding: 15px;
    max-width: 181px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    background-color: #eb0028;
    text-transform: uppercase;
    margin-left: auto;
}

#post-21 .home-post-text {
    /*background-image: url(img/seal.gif);*/
    background-position: bottom;
    background-repeat: no-repeat;
}

.home-widget-text {
    max-width: 550px;
    padding-bottom: 30px;
    font-size: 1.8rem;
}

.home-post-text {
    max-width: 640px;
    padding: 20px;
}

.home-block-img {
    max-height: 550px;
    overflow: hidden;
}

.home-block-img img {
    width: 100%;
}

.home-post>div:nth-child(1) {
    max-width: 50%;
}

.right>div:nth-child(1) {
    order: 2;
}

.right>div:nth-child(2) {
    order: 1;
}

.ceo-message div.name {
    position: relative;
    margin-top: 25px;
    padding-left: 40px;
}

.ceo-message span.name {
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a4949;
    text-decoration: none;
    line-height: 1;
    position: relative;
}

.ceo-message span.name:before {
    content: '';
    position: absolute;
    left: -39px;
    top: 4px;
    display: block;
    width: 25px;
    height: 4px;
    background: #4a4949;
}

div.occupation {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2px;
    color: #5f5f5f;
    margin-top: 8px;
}

.message {
    font: 400 3rem/1.2 'Raleway', sans-serif;
    color: #2e4e56;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/

.pt-6 {
    padding-top: 60px;
}

.pb-6 {
    padding-bottom: 60px;
}

h2.sub-title {
    font-size: 5rem;
    margin-bottom: 7px;
}

.services-section {
    padding: 0 0 20px 0;
}

#carousel {
    margin-top: 60px;
}

#carousel>div {
    overflow: initial !important;
}

.service-img {
    max-height: 140px;
    width: auto !important;
}

#carousel .slides li {
    position: relative;
    border-bottom: solid 10px #ebeaf2;
    margin-right: 0 !important;
    height: 270px;
    display: flex !important;
    cursor: pointer;
}

#carousel .slides li .text {
    padding-top: 20px;
    padding-bottom: 45px;
    font: 500 1.5rem/1 Raleway;
    letter-spacing: 1px;
    text-align: center;
}

#carousel .slides li::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 10px;
    background: #ebeaf2
}

#carousel .slides li::before {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -20px;
    border-top: 14px solid #ebeaf2;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    bottom: -23px
}

#carousel .slides li::after,
#carousel .slides li::before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: .3s ease-out
}

#carousel .slides li.flex-active-slide:after,
#carousel .slides li.flex-active-slide:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.excerpt-image {
    padding-right: 5%;
    padding-bottom: 5%;
}

.excerpt-image img {
    max-width: 350px;
    -webkit-box-shadow: -9px 9px 21px -9px rgba(0, 0, 0, 0.51);
    -moz-box-shadow: -9px 9px 21px -9px rgba(0, 0, 0, 0.51);
    box-shadow: -9px 9px 21px -9px rgba(0, 0, 0, 0.51);
}

.excerpt-content {
    font: 500 1.5rem/1.5 'Raleway', sans-serif;
    background-color: #fff;
    padding: 7% 13% 7% 7%;
    margin: 5%;
    margin-right: -8%;
    max-width: 55%;
    text-align: right;
}

.cta-services {
    font: 300 2rem/1 'Roboto', sans-serif;
    display: block;
    margin: 0 0 0 auto;
    color: #24a9d2;
    border-radius: 3px;
}

.cta-services i {
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
}

.excerpt-image h3 {
    text-align: right;
    font: 400 3.2rem/1 'Courgette', sans-serif;
    color: #03a9ce;
    margin-bottom: 40px;
}

.content-slider {
    background-color: #edf2f3;
    margin-top: -10px;
    padding: 25px 0;
}

#carousel {
    margin-bottom: 0;
}

#carousel .slides li:hover {
    opacity: .8
}

#carousel .slides li.sea .text {
    color: #204765;
}

#carousel .slides li.sea.flex-active-slide::before {
    border-top: solid 14px #204765
}

#carousel .slides li.sea.flex-active-slide::after {
    background: #204765;
}

#slider .slides li:nth-child(1) .excerpt-image h3,
#slider .slides li:nth-child(1) .cat-services {
    border-color: #204765;
    color: #204765;
}

#carousel .slides li.air .text {
    color: #ab111d;
}

#carousel .slides li.air.flex-active-slide::before {
    border-top: solid 14px #ab111d
}

#carousel .slides li.air.flex-active-slide::after {
    background: #ab111d;
}

#slider .slides li:nth-child(2) .excerpt-image h3 {
    color: #ab111d;
}

#slider .slides li:nth-child(2) .excerpt-image {
    border-color: #ab111d;
}

#carousel .slides li.road .text {
    color: #353535;
}

#carousel .slides li.road.flex-active-slide::before {
    border-top: solid 14px #353535
}

#carousel .slides li.road.flex-active-slide::after {
    background: #353535;
}

#slider .slides li:nth-child(3) .excerpt-image h3 {
    color: #353535;
}

#slider .slides li:nth-child(3) .excerpt-image {
    border-color: #353535;
}

.flexslider {
    background: transparent;
    border: none;
}

#slider.flexslider {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.entry-content {
    max-width: 1170px;
    margin: 0 auto;
    padding-top: 30px;
}

.low-z-index {
    z-index: 1 !important;
}

.first-slide .n2-ss-section-main-content {
    background-position-y: 125% !important;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
    font-family: 'Font-Name';
    src: url('fonts/font-name.eot');
    src: url('fonts/font-name.eot?#iefix') format('embedded-opentype'), url('fonts/font-name.woff') format('woff'), url('fonts/font-name.ttf') format('truetype'), url('fonts/font-name.svg#font-name') format('svg');
    font-weight: normal;
    font-style: normal;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

.aliances-section,
.best-option {
    padding: 60px 0;
}

.title-mission-vision {
    text-align: center;
    font-size: 5rem;
    padding-top: 30px;
}

.mission-vision>div {
    font-family: Montserrat;
    font-size: 2rem;
    text-align: center;
    padding: 30px;
    font-weight: 400;
}

.separator {
    border-left: 1px dashed #e4e4e4;
    min-height: 208px;
    padding: 0 !important;
}


/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}


/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.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;
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

.wpcf7-text {
    display: inline-block;
    width: 90%;
    max-width: 100%;
    height: 40px;
    padding: 9px 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    background-color: #f5f8fa;
    border: 1px solid #cbd6e2;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 17px;
    margin-top: 3px;
}

.wpcf7-textarea {
    display: inline-block;
    width: 95%;
    height: 100px;
    padding: 9px 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    background-color: #f5f8fa;
    border: 1px solid #cbd6e2;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    margin-top: -8px !important;
}

.wpcf7-submit {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    line-height: 12px;
    position: relative;
    text-align: center;
    background-color: #ff7a59;
    border-color: #ff7a59;
    color: #fff;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    font-size: 14px;
    padding: 12px 24px;
    margin-top: 35px;
}

.wpcf7-wrap .wpcf7-text {
    width: 95%;
}


/*------------------------------------*\
    PRINT
\*------------------------------------*/

.n2-ss-layers-container {
    margin-top: 0 !important;
}

.footer-menu {
    padding: 0 0 10px 30px;
    border-left: 1px solid #41637d;
    margin-top: 30px;
}

.footer-menu a {
    color: #eff8ff;
    text-transform: uppercase;
    font-size: 1.1rem;
    display: block;
    padding-bottom: 5px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu .search-input {
    padding: 7px;
    font-size: 1.2rem;
    border-radius: 2px;
    border: none;
    background-color: #e2e6e8;
}

.footer-menu .search-submit {
    padding: 7px;
    font-size: 1.2rem;
    border: none;
    border-radius: 2px;
    color: #fff;
    background-color: #4c7ea5;
}

.vsg-map {
    min-height: 420px;
}

.pos-relative {
    position: relative;
}

.info-tooltip {
    z-index: 999;
    top: 50px;
    right: 7%;
    background: #fffcf5;
    padding: 30px;
    border-radius: 6px;
    width: 377px;
}

.sales-form .wpcf7-text,
.sales-form .wpcf7-textarea,
.sales-form select {
    width: 100% !important;
}

.sales-form .spacer {
    min-width: 20px;
    width: 10px;
}

.sales-form label {
    font: 400 1.5rem/1.4 'Montserrat', sans-serif;
}

.sales-form select {
    display: inline-block;
    width: 90%;
    max-width: 100%;
    height: 40px;
    padding: 9px 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    background-color: #f5f8fa;
    border: 1px solid #cbd6e2;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 17px;
    margin-top: 3px;
}

@media only screen and (max-width:23.4375em) {
    .main-content-home {
        max-width: 100%;
        overflow: hidden;
    }
    .hero-image {
        background-position: left 264px;
        background-size: 223%;
        max-height: initial;
    }
    .hero-slogan {
        max-width: 100%;
        padding: 30px 20px;
        margin: 0;
        box-sizing: border-box;
        text-align: center;
    }
    .hero-content {
        height: auto;
        width: 100%;
        padding-top: 250px;
        background-image: none;
    }
    .hero-slogan-text-1 {
        font-size: 3rem;
    }
    #carousel .slides {
        display: block;
    }
    #carousel .slides li {
        min-width: 100vw;
        height: auto
    }
    footer>.wrapper {
        display: block;
    }
    .footer-first {
        width: 100%;
        padding: 0;
    }
    .logo-footer {
        max-width: 90%;
        margin: 0 auto;
        padding: 40px 0 9px;
    }
    .main-content-home h2 {
        margin: 20px 0;
        font-size: 3rem;
    }
    .intro-content {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    .ceo-msg>.wrapper,
    .best-option>.wrapper {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .services-section,
    .ceo-msg,
    .best-option,
    .aliances-section {
        margin: 30px 0;
        padding: 0;
    }
    .services-section {
        padding-top: 0
    }
    .message {
        font-size: 1.8rem;
        text-align: center;
    }
    .cta-main,
    .btn-cta {
        margin: 20px auto;
        font-size: 1.5rem;
        padding: 15px 25px;
    }
    #post-21 .home-post-text {
        text-align: center;
    }
    #slider.flexslider li>.flex-it {
        flex-direction: column-reverse;
    }
    #slider li>.flex-it>div {
        width: 100%;
        max-width: 100%;
        padding: 10px 20px;
        margin: 0;
        box-sizing: border-box;
        text-align: center;
        background-color: transparent;
    }
    .excerpt-image h3 {
        text-align: center;
    }
    .header-brand {
        flex-direction: column;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .header-brand>.wrapper {
        padding: 0;
        width: 100%;
    }
    .header-brand>.wrapper ul {
        justify-content: center;
    }
    div.social-media {
        background-color: #6d6d6d;
        padding: 3px 10px;
        box-sizing: border-box;
        width: 100%;
        justify-content: center;
    }
    .social-item i {
        color: #fff;
        font-size: 1.8rem;
    }
    .logo a {
        display: block;
        text-align: center;
    }
    .logo-img {
        max-width: 80%;
    }
    a.main-nav-lnk {
        padding: 9px 22px;
    }
    .social-media a.main-nav-lnk {
        background-color: transparent;
        color: #fff;
    }
}

.carib-address {
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    border: 1px dotted #c5c5c5;
    background-color: #f1f1f1;
    color: #313131;
    font: 400 1.3rem/1.4 'Montserrat', sans-serif;
}

@media only screen and (min-width:480px) {
    .intro-content {
        font-size: 1.9rem;
    }
    .qtranxs_flag_and_text span {
        display: none;
    }
}

@media only screen and (max-width:480px) {
    .qtranxs_flag_and_text span {
        display: none;
    }
}

@media only screen and (min-width:768px) {}

@media only screen and (min-width:1024px) {
    #carousel .slides,
    .intro-content {
        max-width: 1170px;
        margin: 0 auto;
    }
    .right-content {
        width: 470px;
    }
    .left-content,
    .hentry {
        padding-right: 40px;
        font: 400 1.7rem/1.4 'Montserrat', sans-serif;
    }
    .left-content h3 {
        font: 800 2.5rem/1.2 Montserrat, sans-serif
    }
    .form-title {
        font: 800 3.5rem/1.2 Montserrat, sans-serif;
        text-align: center;
        max-width: 440px;
    }
}

@media only screen and (min-width:1140px) {}

@media only screen and (min-width:1280px) {}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}