
/*------------------------------------------------------

FONTS

-------------------------------------------------------*/

@font-face {
    font-family: 'robotoblack_italic';
    src: url('../font/roboto-blackitalic-webfont.woff2') format('woff2'),
         url('../font/roboto-blackitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('../font/roboto-regular-webfont.woff2') format('woff2'),
         url('../font/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_slabregular';
    src: url('../font/robotoslab-regular-webfont.woff2') format('woff2'),
         url('../font/robotoslab-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_slablight';
    src: url('../font/robotoslab-light-webfont.woff2') format('woff2'),
         url('../font/robotoslab-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------------------------

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;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*------------------------------------------------------

GLOBAL

-------------------------------------------------------*/

body {
    font-family: 'robotoregular';
    color: #161b45;
    font-size: 16px;
    line-height: 24px;
}

a, a:hover, a:focus {
    text-decoration: none;
    color: #000;
    outline: none;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.bold-text {
    font-weight: bold;
}

h3 {
    font-weight: bold;
    text-align: center;
}

h1, h2 {
    font-family: 'roboto_slabregular';
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #a9bec7;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #a9bec7;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #a9bec7;
}
:-moz-placeholder { /* Firefox 18- */
  color: #a9bec7;
}

.cta-btn {
    transition: 0.4s;
}

.cta-btn:hover,
.cta-btn:focus {
    transform: scale(0.9);
}

.content-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.content-wrapper h1,
.content-wrapper h2 {
    margin-bottom: 46px;
    text-align: left;
}

.content-wrapper h3 {
    text-align: left;
    margin-bottom: 25px;
}

.content-wrapper b,
.content-wrapper strong {
    font-weight: bold;
}

.content-wrapper em {
    font-style: italic;
}

.content-wrapper ul {
    padding: 21px 0;
}

.content-wrapper ul li:before {
    content: "•";
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-left: 15px;
}

.content-wrapper img {
    max-width: 100% !important;
    height: auto;
}

/*------------------------------------------------------

BREADCRUMBS

-------------------------------------------------------*/

#breadcrumbs {
    padding: 5px;
    font-family: 'robotoregular';
    font-size: 12px;
    color: #514141;
}

#breadcrumbs > div {
    display: inline-block;
}

#breadcrumbs > div > a > span {
    color: #514141;
}

#breadcrumbs > div:last-of-type > a > span {
    color: #fa5953;
}


/*------------------------------------------------------

CROSS SECTION/TEMPLATE STYLES

-------------------------------------------------------*/

/* header desktop/mobile */

.header-phone {
    display: inline-block;
    font-family: 'robotoblack_italic';
    font-size: 28px;
    color: #fa5953;
    vertical-align: middle;
    transition: 0.5s;
}

.header-phone:hover,
.header-phone:focus {
    color: #fa5953;
}

.header-phone .header-phone-icon {
    vertical-align: top;
    height: 24px;
    width: 24px;
    background: url(../images/layout/phone-icon.png) no-repeat 0 center;
    margin-right: 7px;
}

.header-contact-wrapper .header-cta-btn,
.home-how-section .how-contact-wrapper .how-cta-btn {
    font-family: 'robotoregular';
    display: inline-block;
    background-color: #fa5953;
    color: #fff;
    border: 1px solid #fa5953;
    border-radius: 5px;
    line-height: 40px;
    padding: 0 33px;
    transition: 0.4s;
}

#menu-header-menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    background: url('../images/layout/dropdown-arrow.png') no-repeat center;
    width: 10px;
    height: 10px;
    margin-left: 5px;
}

/* contact page */

/* fix for safari */
.contacts-page-wrapper .content-wrapper ul li:before {
    content: none !important;
}

/*------------------------------------------------------

FOOTER

-------------------------------------------------------*/

footer {
    padding: 50px 0 60px;
    background-color: #161b45;
    border-top: 1px solid #73768f;
    color: #fff;
}

footer a {
    color: #fff;
    font-size: 14px;
    transition: 0.4s;
}

footer a:hover,
footer a:focus {
    color: #fff;
/*    text-shadow: 1px 0px 0px #fff;*/
}

footer ul {
    width: 100%;
    min-height: 165px;
    border-right: 1px solid #373b5f;
}


footer ul li:before {
    content: '•';
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}


.social-wrapper {
    margin: 26px 3px;
}

.social-wrapper a {
    display: inline-block;
    height: 35px;
    width: 37px;
    margin: 0 9px;
}

.social-wrapper a:first-of-type {
    margin-left: 0;
}

.social-wrapper a:last-of-type {
    margin-right: 0;
}

.social-wrapper .facebook-link {
    background: url('../images/layout/social-sprite.png') no-repeat 0 0;
}

.social-wrapper .twitter-link {
    background: url('../images/layout/social-sprite.png') no-repeat -56px 0;
}

.social-wrapper .google-link {
    background: url('../images/layout/social-sprite.png') no-repeat -112px 0;
}

footer + .copyright {
    padding: 8px;
    font-size: 13px;
    color: #cfcfcf;;
    background-color: #0c0f2c;
    text-align: left;
}

/*------------------------------------------------------

MEDIA

-------------------------------------------------------*/

@media (max-width : 991px) { 
    .social-wrapper a {
        margin: 0 8px;
    }
    
    .footer-logo-wrapper > a > img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width : 767px) { 
    h1, h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .content-wrapper {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .content-wrapper h1, .content-wrapper h2 {
        margin-bottom: 35px;
    }   
    
    /*  footer  */
    
    footer {
        padding: 30px 0 30px; 
    }
    
    #menu-footer-menu {
        border: none;
        min-height: auto;
        text-align: center;
        margin-bottom: 30px;
    }
    
    #menu-footer-menu li {
        display: inline-block;
    }
    
    #menu-footer-menu li a {
        font-size: 13px;
        line-height: 15px;
        padding: 0 10px;
        border-right: 1px solid #fff;
    }
    
    #menu-footer-menu li:last-child a {
        border-right: none;
        padding-right: 0;
    }
    
    footer ul li:before {
        display: none;
    }
    
    .footer-logo-wrapper {
        text-align: center;
    }
      
    .social-wrapper {
        margin: 26px 3px 0;
    }
    
    footer + .copyright {
        padding: 30px 0;
        text-align: center;
    }
    
    footer + .copyright .reserved {
        display: block;
    }
}