/*-=Tablet screens=-*/
@media only screen and (max-width: 1024px) {
  /*max-width 1024px, tablet screens*/
  .title-bar {
    background-color: #0596d7;
    /* collapsed menu bar color */
    padding: 0;
    line-height: 45px;
  }
  .title-bar .title-bar-title {
    vertical-align: top;
  }
  .title-bar .menu-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    width: 20px;
    height: 45px;
    background-color: transparent;
    vertical-align: top;
    cursor: pointer;
    outline: none;
  }
  .title-bar .menu-icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #fefefe;
    top: 50%;
    left: 0;
    margin-top: -9px;
    box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  }

  .top-bar {
    display: none;
    height: auto;
    padding: 0;
    background: #0596d7;
    /* menu list background color */
  }
  .top-bar ul {
    background: transparent;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .top-bar ul li > a {
    display: block;
    font-family: "baskerville-urw", sans-serif;
    color: white;
    /* menu item text color */
    font-size: 18px;
    background: #0596d7;
    /* menu item background color */
    line-height: 45px;
    padding: 0 15px;
  }
  .top-bar ul li > a:hover {
    background: #0485be !important;
    /* menu item background color on hover */
  }
  .top-bar ul li.current-menu-item > a, .top-bar ul li.current_page_ancestor > a {
    background: #06a7f0 !important;
    /* current/parent menu item background color */
  }
  .top-bar ul li.has-dropdown a:after {
    display: none;
  }
  .top-bar ul li.has-dropdown .accordion-toggle {
    display: block;
    position: absolute;
    width: 50px;
    height: 45px;
    right: 0;
    top: 0;
    color: #fff;
    /* dropdown arrow color */
    z-index: 100;
    text-align: center;
  }
  .top-bar ul li.has-dropdown .accordion-toggle i.fa {
    font-size: 13px;
    line-height: 1;
    height: 13px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .top-bar ul li[aria-expanded="true"] > a {
    background: #058cc8;
    /* menu item background color on open dropdown */
  }
  .top-bar ul li[aria-expanded="true"] > a .accordion-toggle i.fa {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .top-bar ul li .submenu a {
    padding-left: 25px;
  }

  body.active {
    overflow: hidden;
  }

  .contact_page {
    font-size: 18px;
    padding-left: 15px;
    color: #FFF;
    margin-bottom: 15px;
    display: block;
  }

  .header {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    padding: 15px 20px 0;
  }
  .header .logo img {
    max-height: 57px;
  }
  .header .columns {
    position: static;
  }
  .header .search_icon {
    padding-top: 5px;
    display: inline-block;
    padding-left: 15px;
    font-size: 25px;
  }
  .header #searchform {
    position: absolute;
    top: 67px;
    left: 15px;
    -webkit-transform: translateX(-150%);
        -ms-transform: translateX(-150%);
            transform: translateX(-150%);
    transition: all .4s;
  }
  .header #searchform.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .header .socials {
    margin-left: 10px;
  }
  .header .socials li a {
    background-color: transparent;
    padding: 0;
  }

  .main_menu {
    position: fixed;
    transition: all .4s;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    overflow: auto;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    z-index: -1;
    padding-top: 135px;
    display: block !important;
  }
  .main_menu.active {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .main_menu .header-menu {
    margin: 0;
  }
  .main_menu .header-menu li {
    list-style: none;
  }
  .main_menu .header-menu li a {
    color: #FFF;
    display: block;
    background: transparent;
  }
  .main_menu .header-menu li a:after {
    display: none;
  }
  .main_menu .header-menu li.current-menu-item > a {
    color: #0596d7;
    background: transparent !important;
  }

  .main_menu-icon, .footer_menu-icon {
    position: relative;
    display: block;
    padding: 0;
    width: 28px;
    height: 21px;
    background-color: transparent;
    vertical-align: top;
    cursor: pointer;
    outline: none;
    margin: 10px 20px 0 0;
    text-align: center;
    z-index: 1;
    transition: all .4s;
    float: right;
  }
  .main_menu-icon span, .footer_menu-icon span {
    position: absolute;
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0595D5;
    top: 9px;
    left: 0;
    border-radius: 3px;
    opacity: 1;
    transition: all .4s;
  }
  .main_menu-icon:after, .footer_menu-icon:after {
    content: "";
    position: absolute;
    width: 23px;
    height: 3px;
    top: 0;
    right: 0;
    background-color: #0595D5;
    border-radius: 3px;
    transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main_menu-icon:before, .footer_menu-icon:before {
    content: "";
    position: absolute;
    width: 23px;
    height: 3px;
    bottom: 0;
    right: 0;
    background-color: #0595D5;
    border-radius: 3px;
    transition: 0.2s background linear 0.1s, 0.2s bottom linear 0.2s, 0.2s transform linear;
  }
  .main_menu-icon.active span, .footer_menu-icon.active span {
    opacity: 0;
  }
  .main_menu-icon.active:after, .footer_menu-icon.active:after {
    content: "";
    top: 9px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    transition: 0.2s background linear 0.1s, 0.2s bottom linear 0.2s, 0.2s transform linear;
  }
  .main_menu-icon.active:before, .footer_menu-icon.active:before {
    content: "";
    bottom: 9px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
  }

  .footer__top {
    padding: 45px 0 60px;
    height: auto;
  }
  .footer__top .informed_form {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .footer__top .informed_form .gform_description {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  .footer__top .informed_form .gform_title {
    font-size: 27px;
    font-weight: bold;
    font-family: "ingra", sans-serif;
  }
  .footer__top .informed_form .gfield input {
    height: 45px;
    padding-right: 20px;
    border-radius: 3px;
  }
  .footer__top .informed_form .gform_footer {
    position: relative;
    bottom: auto;
    right: auto;
    padding: 0 15px;
    max-width: 630px;
    margin: 10px auto 0;
  }
  .footer__top .informed_form .gform_footer input {
    display: block;
    background-color: #FFF;
    color: #0596d7;
    width: 100%;
    height: 45px;
    font-family: "futura-pt", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
  }
  .footer__bottom {
    position: relative;
    padding-top: 30px;
  }
  .footer__bottom .footer-menu {
    display: block;
    width: 100%;
  }
  .footer__bottom .footer-menu li a {
    font-size: 18px;
    line-height: 35px;
  }
  .footer__bottom .footer_menu_title {
    font-family: "ingra", sans-serif;
    font-weight: bold;
    font-size: 22px;
  }
  .footer__bottom .menu_row {
    display: none;
  }
  .footer .footer_menu-icon {
    position: absolute;
    top: 30px;
    right: 20px;
  }

  .slider .image {
    padding-bottom: 67%;
  }

  .blue_triangle_left:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12vw 0px 12vw 12vw;
    border-color: transparent transparent transparent #0596d7;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .blue_triangle_right:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12vw 12vw 12vw 0;
    border-color: transparent #0596d7 transparent transparent;
    right: 0;
    top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
/*-=Small screens=-*/
@media only screen and (max-width: 640px) {
  /* TOP BAR Mobile STYLING */
  .column, .columns {
    padding: 0 15px;
  }

  .alignright, .alignleft, .aligncenter, .alignnone {
    float: none;
    margin: 0 0 1em;
  }

  .header {
    padding: 15px 7px 0;
  }
  .header .search_icon {
    padding-left: 0;
    padding-top: 0;
  }
  .header .logo {
    padding-top: 0;
  }
  .header .logo img {
    max-height: 40px;
  }

  .main_menu {
    padding-top: 100px;
  }

  .main_menu-icon, .footer_menu-icon {
    margin-right: 0;
  }

  .anchor {
    bottom: 30px;
  }
  .anchor img {
    width: 42px;
  }

  .banner {
    height: 450px;
  }
  .banner .page_title {
    letter-spacing: 0;
  }

  h1 {
    font-size: 51px;
  }

  h2 {
    font-size: 40px;
    letter-spacing: 0;
  }
  h2.section_title {
    letter-spacing: 0;
  }

  h3 {
    font-size: 31px;
  }
  h3.title {
    font-size: 31px;
    line-height: 41px;
    margin-bottom: 30px;
  }

  p {
    font-size: 18px;
    line-height: 25px;
  }

  .page_content {
    padding: 30px 0;
  }

  .page_slider {
    padding-bottom: 30px;
  }

  .services_section, .solutions_section, .recent_news {
    padding: 30px 15px;
  }

  .description {
    max-width: 78%;
    margin: 0 auto;
  }
  .description p {
    font-size: 18px;
    line-height: 26px;
  }

  .short_intro {
    margin-bottom: 30px;
  }

  .repairs_section h1 a, .repairs_section h2 a, .repairs_section h3 a, .repairs_section h4 a, .repairs_section h5 a, .repairs_section h6 a {
    color: #FFF;
  }

  .slider {
    padding: 0 15px 15px;
  }
  .slider h3 a {
    font-size: 28px;
  }
  .slider .image {
    padding-bottom: 72%;
  }
  .slider__excerpt p {
    font-size: 18px;
    line-height: 26px;
  }
  .slider .slick-slide h3 {
    margin-top: 11px;
  }

  .recent_news h3 {
    font-size: 27px;
    margin-bottom: 20px;
  }
  .recent_news .featured_image {
    float: none;
    width: 100%;
    padding-bottom: 63%;
  }
  .recent_news .featured_content {
    width: 100%;
    float: none;
    padding-left: 0;
  }
  .recent_news .featured_content h4 {
    line-height: 1.2;
  }
  .recent_news .featured_content h4 a {
    font-family: "baskerville-urw", sans-serif;
    font-size: 18px;
    color: #3a3a3a;
  }
  .recent_news .featured_content .button {
    font-size: 16px;
    font-weight: 600;
    font-family: "futura-pt", sans-serif;
    border: 1px solid #0783ba;
    border-radius: 3px;
    width: 140px;
    line-height: 45px;
    padding: 0;
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .date {
    font-size: 13px;
    font-weight: bold;
    font-family: "ingra", sans-serif;
    color: #0596d7;
    margin-bottom: 0px;
    margin-top: 13px;
  }
  .date span {
    display: none;
  }

  .locations_section {
    padding-bottom: 50px;
  }
  .locations_section h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .locations_section .line {
    margin-bottom: 30px;
  }
  .locations_section .type:nth-child(2) {
    display: none;
  }
  .locations_section .preview {
    display: none;
  }
  .locations_section .location_slider li {
    line-height: 24px;
  }
  .locations_section .location_slider li a {
    font-size: 18px;
  }
  .locations_section .button {
    font-size: 16px;
    font-weight: 600;
    font-family: "futura-pt", sans-serif;
    border: 1px solid #0783ba;
    border-radius: 3px;
    width: 160px;
    line-height: 45px;
    padding: 0;
    margin-top: 20px;
  }

  .footer__bottom .copyright {
    margin-top: 0;
    border: none;
    padding-top: 20px;
  }
  .footer__bottom .copyright p {
    font-size: 14px;
    line-height: 22px;
    font-family: "baskerville-urw", sans-serif;
  }
  .footer__bottom .copyright p.by strong a {
    color: inherit;
  }

  .overview {
    padding: 30px 0;
  }
  .overview .elements .image {
    width: 100%;
    padding-bottom: 56.25%;
  }
  .overview .elements .content {
    width: 100%;
    padding: 20px 15px;
    text-align: left;
  }

  .featured_pages {
    padding: 50px 0;
  }
  .featured_pages .page_block__info.page_list {
    min-height: 200px;
  }

  .capabilities {
    padding: 50px 0;
  }
  .capabilities .list_row {
    padding-bottom: 30px;
  }
  .capabilities .list_row .image {
    display: none;
  }
  .capabilities .list_row .list ul.half {
    width: 100%;
    display: block;
  }

  .description_text {
    padding-bottom: 30px;
  }
  .description_text .plane {
    display: none;
  }

  .logos {
    margin-bottom: 30px;
  }
  .logos .logo_item {
    padding: 20px;
  }

  .offer .offers {
    padding: 30px 0;
  }
  .offer .offers_block {
    padding: 10px;
    margin-bottom: 20px;
  }

  .page-template-template-services .second_section {
    padding: 50px 0;
  }
  .page-template-template-services .second_section:after {
    content: "";
    display: none;
  }
  .page-template-template-services .third_section {
    padding: 50px 0;
  }

  .main-content {
    padding: 50px 0;
  }
  .main-content article h3 {
    margin-top: 10px;
  }

  .about_content {
    padding-bottom: 25vw;
  }
}
/* max-width 640px and lower. Use this for mobiles only */
/*-=Medium screens=-*/
@media only screen and (min-width: 641px) {
  /* TOP BAR STYLING */
}
/* min-width 641px */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
  .slider {
    padding: 0 50px;
  }
  .slider .slick-arrow {
    width: 40px;
    top: 12vw;
  }
  .slider .slick-arrow.prev {
    right: 15px;
  }
  .slider .slick-arrow.next {
    left: 15px;
  }

  .anchor {
    bottom: 35px;
  }

  .repairs_section .slider h3 a {
    color: #FFF;
  }

  h1 {
    font-size: 115px;
    letter-spacing: -5px;
  }

  h2 {
    font-size: 94px;
    letter-spacing: -5px;
  }
  h2.section_title {
    letter-spacing: -5px;
  }

  .recent_news .featured_content {
    padding-left: 15px;
  }
  .recent_news .date {
    font-size: 16px;
    line-height: 22px;
  }

  .locations_section {
    padding-bottom: 50px;
  }
  .locations_section h3 {
    font-size: 33px;
  }
  .locations_section .line {
    margin-bottom: 30px;
  }
  .locations_section .preview {
    display: none;
  }
  .locations_section .location_slider li a {
    font-size: 18px;
  }
  .locations_section .button {
    font-size: 16px;
    font-weight: 600;
    font-family: "futura-pt", sans-serif;
    border: 1px solid #0783ba;
    border-radius: 3px;
    width: 160px;
    line-height: 45px;
    padding: 0;
    margin-top: 20px;
  }

  .banner {
    height: 650px;
  }

  .overview {
    padding-bottom: 100px;
  }
  .overview .elements .image {
    width: 100%;
    padding-bottom: 56.25%;
  }
  .overview .elements .content {
    width: 100%;
    padding: 20px 15px;
    text-align: left;
  }

  .capabilities .list_row .image {
    display: none;
  }
  .capabilities .list_row .list ul.half {
    width: 100%;
    display: block;
  }

  .description_text .plane {
    display: none;
  }

  .logos {
    margin-bottom: 30px;
  }
  .logos .logo_item {
    padding: 20px;
  }

  .offer .offers {
    padding: 30px 0;
  }
  .offer .offers_block {
    padding: 10px;
  }

  .page-template-template-services .second_section {
    padding: 100px 0;
  }

  .about_content {
    padding-bottom: 25vw;
  }
}
/*End min-641 and max-1024*/
/*-=Large screens=-*/
@media only screen and (min-width: 1025px) {
  /*min-width 1025px, large screens*/
  .title-bar {
    display: none;
  }

  .top-bar {
    padding: 0;
    background-color: transparent;
    /* Dropdown item styling */
  }
  .top-bar ul {
    background: transparent;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .top-bar .header-menu {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: auto;
  }
  .top-bar .header-menu#menu-main-menu-left {
    text-align: left;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .top-bar .header-menu#menu-main-menu-left li {
    /* margin-right: 80px; */
    text-align: left;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
  .top-bar .header-menu#menu-main-menu-left li > a {
    display: inline-block;
  }
  .top-bar .header-menu#menu-main-menu-left li .submenu li a {
    display: block;
  }
  .top-bar .header-menu#menu-main-menu-right {
    text-align: right;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .top-bar .header-menu#menu-main-menu-right li {
    /* margin-left: 40px; */
    text-align: right;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
  .top-bar .header-menu#menu-main-menu-right li > a {
    display: inline-block;
  }
  .top-bar .header-menu#menu-main-menu-right li .submenu li {
    text-align: left;
  }
  .top-bar .header-menu#menu-main-menu-right li .submenu li a {
    display: block;
  }
  .top-bar .header-menu li {
    float: none;
    display: inline-block;
    background-color: transparent;
    position: relative;
  }
  .top-bar .header-menu li > a {
    /* Regular menu item style */
    display: block;
    padding: 0;
    background: transparent;
    font-size: 19px;
    line-height: 1;
    color: #fff;
    font-family: "effra", sans-serif;
    font-weight: 500;
  }
  .top-bar .header-menu li.current-menu-item > a, .top-bar .header-menu li.current_page_ancestor > a, .top-bar .header-menu li.current_page_parent > a {
    /* Style of Current page and Ancestor page */
    background: transparent;
    color: #0596d7;
  }
  .top-bar .header-menu li.has-dropdown > a {
    /* Style of item with dropdown */
    padding: 0 15px;
    display: inline-block;
    position: relative;
  }
  .top-bar .header-menu li.has-dropdown > a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5.5px 0 5.5px;
    border-color: #ffffff transparent transparent transparent;
    bottom: 4px;
    right: -3px;
  }
  .top-bar .header-menu li.has-dropdown > a:after {
    /* Hide dropdown arrow */
  }
  .top-bar .header-menu li.has-dropdown > a:hover {
    /* Hover state for dropdown link */
  }
  .top-bar .header-menu li > a:hover {
    /* menu item style on hover */
    background: transparent;
    color: #0596d7;
  }
  .top-bar .header-menu:after {
    content: '';
    display: table;
    clear: both;
  }
  .top-bar ul li:hover > a {
    /* Parent link style on dropdown hover */
    background: transparent;
    color: #0596d7;
  }
  .top-bar .submenu {
    padding: 10px 0;
    display: none;
    border: none;
  }
  .top-bar .submenu.js-dropdown-active {
    display: block;
  }
  .top-bar .submenu li {
    display: block;
  }
  .top-bar .submenu li > a {
    /* Regular link in dropdown */
    background: #0596d7;
    color: #fff;
    padding: 5px 15px;
  }
  .top-bar .submenu li > a:hover {
    /* Dropdown link on hover */
    background: transparent;
    color: #0596d7;
  }
  .top-bar .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: 0;
  }
  .top-bar .is-dropdown-submenu .is-dropdown-submenu li a {
    /* Styles for 2nd level dropdown menu link */
  }

  .top-bar #menu-main-menu-right.header-menu {
    float: right;
  }

  .header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 40px 75px 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1800px) {
  .slider {
    padding: 0 50px;
  }
  .slider .slick-arrow {
    width: 40px;
    top: 10vw;
  }
  .slider .slick-arrow.prev {
    right: 15px;
  }
  .slider .slick-arrow.next {
    left: 15px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1560px) {
  .header {
    padding: 30px 15px 0;
  }

  .footer-menu li a {
    font-size: 15px;
    line-height: 30px;
  }

  .description_text .plane {
    margin-top: -5vw;
    max-width: 56vw;
    margin-bottom: -140px;
  }

  .about_content {
    padding-bottom: 25vw;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .top-bar .header-menu {
    bottom: -9px;
  }
  .top-bar .header-menu li > a {
    font-size: 13px;
  }

  .locations_section {
    padding-bottom: 40px;
  }
  .locations_section .type:first-of-type .location_slider {
    display: block;
    width: 100%;
  }

  .recent_news .featured_image {
    width: 100%;
    padding-bottom: 52%;
    float: none;
    margin-bottom: 20px;
  }
  .recent_news .featured_content {
    float: none;
    width: 100%;
    padding-left: 0;
  }

  .capabilities .list_row .list ul li {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 1201px) {
  /* min-width 1201px, large screens*/
}
@media only screen and (min-width: 1201px) and (max-width: 1280px) {
  /* min-width 1201px and max-width 1280px, use when QAing MacBook issues */
}

/*# sourceMappingURL=media-screens.css.map */
