body{
    font-family: 'Lato', sans-serif;
}

.h1, h1 {
    font-size: 2em;
}
.h2, h2 {
    font-size: 18px;
    font-weight: 700;
}

.h3, h3 {
    font-size: 16px;
    font-weight: 700;
}

.h5, h5 {
    font-size: 14px;
    font-weight: 400;
}

a {
    color: #007ab2;
}

a:hover, a:focus {
    color: #009de5;
}

header{
	color: #FFCC66 !important;
}

header .nav-link{
	color: #FFCC66 !important;
}
header .nav-link:focus, header .nav-link:hover{
	color: #000 !important;
}

#mainNavbar .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
}
#mainNavbar .nav-link:first-child {
    margin-left: 0;
}
#mainNavbar .dropdown-menu {
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    border-radius: 3px;
    top: 97%;
    border: none;
}

#mainNavbar .dropdown-item{
    border-left: 5px solid transparent;
}

#mainNavbar .dropdown-item:focus, #mainNavbar .dropdown-item:hover {
    border-color: #007ab2;
    color: #007ab2;
    text-decoration: none;
    background-color: #ddd;
}

.current_issue_title {
    margin: 20px 0;
    font-weight: 700;
}

.section {
    position: relative;
    margin: 30px -15px;
    padding: 30px;
    border-top: 1px solid #ddd;
}

.section .article-type {
    position: absolute;
    top: -15px;
    left: 15px;
    margin-top: 0;
    padding: 0 15px;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0,0,0,0.54);
}

.btn-light {
    background: #eee;
    border-color: rgba(0,0,0,0.4);
    border-top-color: #bbb;
    box-shadow: inset 0 -1em 1em rgba(0,0,0,0.1);
    font-weight: 700;
    color: #007ab2;
}

.sidebar-links li{
    padding: 5px 0;
}

.sidebar-links a{
    font-size: 13px;
}

.ul-li-p li:not(:last-child){
    margin-bottom: .5rem;
}

/**====================
      Reachus
===================**/
#feedback {
  color: #fff;
  position: fixed;
  top: 10%;
  right: 0;
  z-index: 1;
  border-top-left-radius: 5rem!important;
  border-bottom-left-radius: 5rem!important;
  padding: .5rem 1rem;
}

.bg-white #feedback {
  top: 7.16rem;
  right: 7.2rem;
}

#feedback div {
  background: #2158b3;
}

.phonering-alo-ph-circle, .reach-us {
  width: 120%;
  height: 120%;
  top: -.5rem;
  left: -2rem;
  position: absolute;
  -webkit-animation: reach-us-anim 1.2s infinite ease-in-out;
  animation: reach-us-anim 1.2s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  z-index: -1
}

.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-circle {
  -webkit-animation: reach-us-anim 2.2s infinite ease-in-out !important;
  animation: reach-us-anim 2.2s infinite ease-in-out !important
}

@-webkit-keyframes reach-us-anim {
  0% {
    -webkit-transform: rotate(0) scale(.5) skew(1deg);
    -webkit-opacity: .1
  }

  30% {
    -webkit-transform: rotate(0) scale(.7) skew(1deg);
    -webkit-opacity: .5
  }

  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: .1
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@-webkit-keyframes reach-us-anim {
  0% {
    -webkit-transform: rotate(0) scale(.5) skew(1deg);
    transform: rotate(0) scale(.5) skew(1deg);
    opacity: .1
  }

  30% {
    -webkit-transform: rotate(0) scale(.7) skew(1deg);
    transform: rotate(0) scale(.7) skew(1deg);
    opacity: .5
  }

  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
    opacity: .1
  }
}

/* -------------------------------- 

File#: _1_back-to-top
Title: Back to top
Descr: Component that triggers scroll-y to the top of the page
Usage: codyhouse.co/license

-------------------------------- */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  z-index: 9;
  border-radius: .5rem;
  background-color: rgba(28,28,33,.9);
  transition: 0.3s;
}
.back-to-top:hover {
    background-color: rgba(28,28,33,1);
  }

.back-to-top .icon {
    display: block;
    color: #fff;
    width: 1rem;
    height: 1rem;
  }

.js .back-to-top { /* if JS is enabled, hide back to top */
  visibility: hidden;
  opacity: 0;
}

.js .back-to-top--is-visible { /* show button */
  visibility: visible;
  opacity: 1;
}