/*-=Tablet screens=-*/
@media only screen and (max-width: 1024px) {
  /*max-width 1024px, tablet screens*/
  .logo {
    text-align: center;
  }

  .projects-slider {
    padding-left: 35px;
    padding-right: 35px;
  }
}
/*-=Small screens=-*/
@media only screen and (max-width: 640px) {
  /* TOP BAR Mobile STYLING */
  .header{
    overflow: scroll;
    max-height: 100%;
  }
  .title-bar {
    background-color: #282828;
    /* collapsed menu bar color */
    padding: 0;
    line-height: 45px;
    text-align: right;
    text-transform: uppercase;
    padding-right: 15px;
  }
  .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: 3px;
    background: #fefefe;
    top: 50%;
    left: 0;
    margin-top: -9px;
    -moz-box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
    -webkit-box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
    box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  }

  .top-bar {
    display: none;
    height: auto;
    padding: 0;
    background: #16578e;
    /* menu list background color */
  }
  .top-bar .menu {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiMyMjIyMjIiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0NDQ0NDQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(30%, #222222), color-stop(100%, #444444));
    background-image: -moz-linear-gradient(top, #222222 30%, #444444 100%);
    background-image: -webkit-linear-gradient(top, #222222 30%, #444444 100%);
    background-image: linear-gradient(to bottom, #222222 30%, #444444 100%);
  }
  .top-bar ul {
    background: transparent;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .top-bar ul li {
    border-bottom: 1px solid #16578e;
  }
  .top-bar ul li > a {
    display: block;
    font-family: "Dosis", sans-serif;
    color: white;
    /* menu item text color */
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    background: transparent;
    /* menu item background color */
    line-height: 45px;
    padding: 0 15px 0 30px;
  }
  .top-bar ul li > a:hover {
    background: #134978 !important;
    /* menu item background color on hover */
  }
  .top-bar ul li.current-menu-item > a, .top-bar ul li.current_page_ancestor > a {
    background: #1965a4 !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: #144f81;
    /* menu item background color on open dropdown */
  }
  .top-bar ul li[aria-expanded="true"] > a .accordion-toggle i.fa {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .top-bar ul li .submenu a {
    padding-left: 25px;
  }

  .alignright, .alignleft, .aligncenter, .alignnone {
    float: none;
    margin: 0 0 1em;
  }

  .small-only-text-center {
    text-align: center !important;
  }

  .service-slider-title {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }
  .section-title span:before {
    width: calc( (100vw - 100% - 14px ) / 2 );
  }
  .section-title span:after {
    width: calc( (100vw - 100% - 14px ) / 2 );
  }
}
/* max-width 640px and lower. Use this for mobiles only */
/*-=Medium screens=-*/
@media only screen and (min-width: 641px) {
  /* TOP BAR STYLING */
  .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 > div > .menu > li {
    margin-left: -1px;
  }
  .top-bar > div > .menu > li > a {
    text-transform: uppercase;
  }
  .top-bar .header-menu {
    text-align: center;
    font-size: 0;
  }
  .top-bar .header-menu li {
    display: inline-block;
    background-color: transparent;
    border-right: 1px solid #16578e;
  }
  .top-bar .header-menu li > a {
    /* Regular menu item style */
    display: block;
    padding: 0 15px;
    background: transparent;
    font-size: 16px;
    font-weight: bold;
    line-height: 37px;
    color: #fff;
    font-family: "Dosis", sans-serif;
  }
  .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: #16578e;
    color: #fff;
  }
  .top-bar .header-menu li.has-dropdown > a {
    /* Style of item with dropdown */
    padding: 0 15px;
  }
  .top-bar .header-menu li.has-dropdown > a:after {
    /* Hide dropdown arrow */
    display: none !important;
  }
  .top-bar .header-menu li.has-dropdown > a:hover {
    /* Hover state for dropdown link */
  }
  .top-bar .header-menu li.has-dropdown .has-dropdown:after {
    content: '\f054';
    font-family: FontAwesome;
    font-size: 12px;
    position: absolute;
    right: 6px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .top-bar .header-menu li.has-dropdown .has-dropdown > a {
    padding-right: 30px;
  }
  .top-bar .header-menu li > a:hover {
    /* menu item style on hover */
    background: #16578e;
    color: #fff;
  }
  .top-bar .header-menu:after {
    content: '';
    display: table;
    clear: both;
  }
  .top-bar ul li:hover > a {
    /* Parent link style on dropdown hover */
    background: #16578e;
    color: #fff;
  }
  .top-bar .submenu {
    display: none;
    border: none;
  }
  .top-bar .submenu.js-dropdown-active {
    display: block;
  }
  .top-bar .submenu li {
    display: block;
    border-bottom: 1px solid #0c2e4c;
  }
  .top-bar .submenu li > a {
    /* Regular link in dropdown */
    background: #11416b;
    color: #fff;
    font-weight: 500;
    padding: 0 15px;
    line-height: 30px;
    text-align: left;
  }
  .top-bar .submenu li > a:hover {
    /* Dropdown link on hover */
    background: #0c2e4c;
    color: white;
  }
  .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 */
  }

  /* Align Menu to the right
  	 .top-bar .header-menu { float:right; }*/
  /* Align Menu to the center
  	 .top-bar .header-menu { text-align: center; }
  	 .top-bar .header-menu > li{ float: none; display: inline-block; } */
  .contacts-block {
    border-left: 2px solid #fff;
  }
}
/* 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*/
}
/*-=Large screens=-*/
@media only screen and (min-width: 1025px) {
  /*min-width 1025px, large screens*/
  .page-title {
    font-size: 47px;
  }

  .logo-column {
    position: relative;
  }
  .logo-column:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: calc((100vw - 1000px) / 2);
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNGM0YzQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(30%, #ffffff), color-stop(100%, #c4c4c4));
    background-image: -moz-linear-gradient(top, #ffffff 30%, #c4c4c4 100%);
    background-image: -webkit-linear-gradient(top, #ffffff 30%, #c4c4c4 100%);
    background-image: linear-gradient(to bottom, #ffffff 30%, #c4c4c4 100%);
  }

  .top-bar .header-menu {
    text-align: left;
  }
  .top-bar > div > .menu > li > a {
    padding: 50px 18px 0;
    letter-spacing: .8px;
  }
  .top-bar > div > .menu > li.has-dropdown > a {
    padding: 50px 17px 0;
  }

  .menu-column.columns {
    padding-left: 0;
  }

  .footer-logo {
    margin-top: 8px;
  }

  .projects-slider {
    margin-bottom: 20px;
    padding-right: 8px;
    padding-left: 8px;
  }
  .projects-slider .slick-prev {
    left: -20px;
  }
  .projects-slider .slick-next {
    right: -20px;
  }
}
@media only screen and (min-width: 1201px) {
  /* min-width 1201px, large screens*/
}
