@charset "UTF-8";
/*
* @subsection   RD Navbar
* @description  Describes style declarations for RD Navbar extension
*/
.atrium-header {
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.atrium-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.atrium-header a {
  text-decoration: none;
  transition: .2s ease-in-out;
  display: inline-block;
  vertical-align: middle;
}

.atrium-header a:focus,
.atrium-header a:active,
.atrium-header a:hover {
  text-decoration: none;
  color: #ffb606;
  transition: .2s ease-in-out;
}

.atrium-header-logo img {
  width: 100%;
  max-width: 300px;
  margin: 9px 0;
  display: inline-block;
  vertical-align: middle;
}

.atrium-header-ask a {
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
}

.atrium-header svg {
  vertical-align: middle;
}

.atrium-header-email a {
  color: #000;
  line-height: 24px;
}

.atrium-header-phone a {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
}
.atrium-header-email svg {
  margin-bottom: 2px;
}
.atrium-header-phone svg {
  margin-bottom: 4px;
}
.atrium-header-email .join,
.atrium-header-email .join a,
.atrium-header-email .join span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1em;
}
.atrium-header-email .join {
  margin-left: 24px;
}
.atrium-header-email .join a,
.atrium-header-email .join span {
  color: red;
  text-decoration: underline;
  transition: .2s ease-in-out;
} 
.didi_style .atrium-header-email .join a {
  color:  #ff793a;
}
.atrium-header-email .join a:hover {
  color: #ffb606;
}
@media screen and (max-width: 991px){
  .atrium-header-email .join {
    display: none;
  }
  .atrium-header-inner {
    flex-wrap: wrap;
  }
  .atrium-header-logo {
    width: 100%;
    text-align: center;
  }
  .atrium-header-email,
  .atrium-header-phone,
  .atrium-header-ask {
   margin-bottom: 10px;
  }
}
@media screen and (max-width: 680px){
  .atrium-header-email {
    display: none;
  }
  .atrium-header-ask {
    font-size: 0;
  }
}
@media screen and (max-width: 350px){
  .atrium-header-phone a {
    font-size: 16px;
    line-height: 16px;
  }
  .atrium-header-ask svg {
    height: 20px;
  }
}