/*-=Tablet screens=-*/
@media only screen and (max-width: 1024px) {
  /*max-width 1024px, tablet screens*/
}
/*-=Small screens=-*/
@media only screen and (max-width: 767px) {
  /* TOP BAR Mobile STYLING */
  .title-bar {
    background-color: transparent;
    /* collapsed menu bar color */
    padding: 0;
    line-height: 45px;
    position: absolute;
    right: 15px;
    top: 40px;
  }
  .title-bar .title-bar-title {
    vertical-align: top;
  }
  .title-bar .menu-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    width: 22px;
    height: 13px;
    background-color: transparent;
    vertical-align: top;
    cursor: pointer;
    outline: none;
  }
  .title-bar .menu-icon span {
    height: 2px;
    background: #45a5ff;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .3s;
            transition: all .3s;
  }
  .title-bar .menu-icon span:first-child {
    width: 100%;
  }
  .title-bar .menu-icon span:nth-child(2), .title-bar .menu-icon span:nth-child(3) {
    width: 50%;
    top: 5px;
  }
  .title-bar .menu-icon span:nth-child(4) {
    width: 75%;
    top: 10px;
  }
  .title-bar .menu-icon:hover span:nth-child(2), .title-bar .menu-icon:hover span:nth-child(3) {
    width: 100%;
  }
  .title-bar .menu-icon:hover span:nth-child(4) {
    width: 100%;
  }
  .title-bar .menu-icon.opnd span:nth-child(2), .title-bar .menu-icon.opnd span:nth-child(3) {
    width: 100%;
  }
  .title-bar .menu-icon.opnd span:nth-child(2) {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .title-bar .menu-icon.opnd span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .title-bar .menu-icon.opnd span:first-child, .title-bar .menu-icon.opnd span:nth-child(4) {
    opacity: 0;
    visibility: hidden;
  }

  .top-bar {
    height: auto;
    padding: 0;
    background: #45a5ff;
    /* menu list background color */
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
  }
  .top-bar ul {
    background: transparent;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .top-bar ul li > a {
    display: block;
    font-family: "Circular", sans-serif;
    color: white;
    /* menu item text color */
    font-size: 14px;
    background: #45a5ff;
    /* menu item background color */
    line-height: 45px;
    padding: 0 15px;
  }
  .top-bar ul li > a:hover {
    background: #2b99ff !important;
    /* menu item background color on hover */
  }
  .top-bar ul li.current-menu-item > a, .top-bar ul li.current_page_ancestor > a {
    background: #5fb1ff !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: #369eff;
    /* 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;
  }

  .alignright, .alignleft, .aligncenter, .alignnone {
    float: none;
    margin: 0 0 1em;
  }
}
/* max-width 640px and lower. Use this for mobiles only */
/*-=Medium screens=-*/
@media only screen and (min-width: 768px) {
  /* 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 .header-menu > li > a {
    text-transform: uppercase;
  }
  .top-bar .header-menu li {
    float: left;
    background-color: transparent;
    padding: 12px 26px 38px;
    position: relative;
    -webkit-transition: all 0.3s;
            transition: all 0.3s;
  }
  .top-bar .header-menu li:last-child {
    padding-right: 9px;
  }
  .top-bar .header-menu li > a {
    /* Regular menu item style */
    color: #aaaeba;
    font-weight: 500;
    display: block;
    font-size: 12px;
    font-family: "Circular", 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, .top-bar .header-menu li.current-menu-ancestor > a {
    /* Style of Current page and Ancestor page */
    color: #263a61;
  }
  .top-bar .header-menu li.has-dropdown:before {
    position: absolute;
    content: "";
    right: 25px;
    top: 19px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3.5px 0 3.5px;
    border-color: #bdc4cf transparent transparent transparent;
    -webkit-transition: all 0.3s;
            transition: all 0.3s;
  }
  .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:hover.has-dropdown:before {
    border-width: 0 3.5px 4px 3.5px;
    border-color: transparent transparent #263a61 transparent;
  }
  .top-bar .header-menu li.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
  }
  .top-bar .header-menu li > a:hover {
    /* menu item style on hover */
    color: #263a61;
  }
  .top-bar .header-menu:after {
    content: '';
    display: table;
    clear: both;
  }
  .top-bar ul li:hover > a {
    /* Parent link style on dropdown hover */
    color: #263a61;
  }
  .top-bar .submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    width: 240px;
    border: 1px solid #F2F2F2;
    position: absolute;
    z-index: 250;
    left: 0px;
    padding: 20px 0;
    line-height: 2;
    box-shadow: 0 1px 1px #F2F2F2;
    background: #fff;
    -webkit-transition: all ease-in-out 0.3s;
            transition: all ease-in-out 0.3s;
  }
  .top-bar .submenu li {
    float: none;
    display: block;
    padding: 0;
    position: relative;
    margin-bottom: 0;
    text-align: left;
    text-transform: none;
  }
  .top-bar .submenu li > a {
    /* Regular link in dropdown */
    display: block;
    padding: 8px 30px;
    font-weight: 500;
    font-size: 12px;
    color: #ADB1BC;
    text-transform: uppercase;
  }
  .top-bar .submenu li > a:hover {
    /* Dropdown link on hover */
    color: #263a61;
  }
  .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; } */
}
/* min-width 641px */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* min-width 641px and max-width 1024px, use when QAing tablet-only issues*/
  .top-bar .header-menu li {
    padding: 12px 10px 38px;
  }
  .top-bar .header-menu li.has-dropdown:before {
    right: 15px;
  }
  .top-bar .header-menu li .submenu li {
    padding: 0;
  }
}
/*-=Large screens=-*/
@media only screen and (min-width: 1025px) {
  /*min-width 1025px, large screens*/
}
@media only screen and (min-width: 1201px) {
  /* min-width 1201px, large screens*/
}

/*# sourceMappingURL=media-screens.css.map */
