@charset "UTF-8";
/*
$content-width will be the max width of the content within the navigation bar.
$breakpoint determines at which width the media query breakpoint will take effect.
*/

nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  color: #282A29;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
nav ul li a:hover {
  /* background: #f2f2f2; */
  color: #EC744D;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
  background: #fff;
  border-radius: 0.65rem;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: 70px;
  margin-top: 5px;
  margin-right: 5px;
}

@media only screen and (max-width: 800px) {
  .py-5 {
  padding-bottom: 5rem;
  }
  .pic-align-center{
    text-align: center;
  }
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
    background: #fff;
    box-shadow: 0 3px 12px rgb(0 0 0 / 5%);
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
  .text-align-left{
    text-align: left;
  }
  .img-fluid {
      width: 100%;
      height: auto;
      margin: 0 auto;
  }

}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #282A29;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
/*
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 70px;
  background: #FCFCFC;
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 12px rgb(0 0 0 / 5%);
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.brand {
  position: absolute;
  float: left;
  line-height: 70px;
  padding-left: 20px;
  /* font-size: 1em;
  font-family:simplifydemo; */
}
.brand a,
.brand a:visited {
  color: #282A29;
  text-decoration: none;
}

.btn-primary-margin{
  margin: 1em;
}

.title-decoration{
  border-bottom:10px #944B2B solid; padding-bottom:5px;
  display: table;
}
.img-margin{
  margin-bottom: 30px;
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right,var(--gradient-color-stops));
}
.from-blue-200 {
    --gradient-from-color: #192C4C;
    --gradient-color-stops: var(--gradient-from-color),var(--gradient-to-color,rgba(25,44,76,0));
}
.via-pink-200 {
    --gradient-via-color: #F0A796;
    --gradient-color-stops: var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(240,167,150,0));
}
.to-orange-200 {
    --gradient-to-color: #EC744D;
}
.h-1 {
    height: 0.25rem;
}
.inline-block {
    display: inline-block;
}
.content-margin{
  margin-top: 2rem;
}

.btn-weight{
  padding: 10px 30px 10px;
}
.cover-background{
  /* background: -webkit-linear-gradient(left top,#192C4C,#A488AE,#CC998D,#F4AA6D,#EC744D); */
  backgorund: #fff;
}
.footer-color{
  background-color:#fff;
}
.mt-1rem{
  margin-top: 1rem;
}
.mt-3rem{
  margin-top: 3rem;
}
.text-align-center{
  text-align: center;
}
.w-screen {
    width: 100vw;
}
.pt-20 {
    padding-top: 2rem;
}
/* timeline */
body{
    margin-top:20px;
    color: #ccc;
    background-color: #f1f2f7;
}

a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
}

.profile-information .profile-pic img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 10px solid #f1f2f7;
    margin-top: 20px;
}

.profile-information .profile-desk h1 {
    color: #1fb5ad;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
}

.profile-information .profile-desk {
    border-right: 1px solid #ddd;
    padding-right: 30px;
}

.btn-primary {
    background-color: #000;
    border-color: #1fb5ad;
    color: #FFFFFF;
}

.act-content{
    padding:30px;
}

.recent-act h1 {
    text-align: center;
    color: #1fb5ad;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.activity-icon {
    border-radius: 45%;
    -webkit-border-radius: 45%;
    color: #FFFFFF;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
    margin: 20px auto 20px;
    position: initial;
}

.activity-icon.terques {
    background: -webkit-linear-gradient(left top,#192C4C,#A488AE,#CC998D,#F4AA6D,#EC744D);
}

.activity-icon {
    background: #fff;
}

/* .recent-act:before {
    background-color: #eeeeee;
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    top: 50px;
    width: 2px;
    z-index: 0;
} */

.activity-desk {
    padding: 15px 30px;
    background: #F6F6F6;
    border-radius: 5px;
    -webkit-border-radius: 20px;
    position: initial;
    text-align: center;
}

.activity-desk h2 {
    color: #282A29;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    /* text-transform: uppercase; */
}

.activity-desk p {
    color: #282A29;
    font-size: 14px;
    margin: 0;
}
.activity-step {
    padding: 15px 30px;
    background: #F6F6F6;
    border-radius: 5px;
    -webkit-border-radius: 80px;
    position: initial;
    text-align: center;
}
.activity-step h2 {
    color: #5B72DC;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    /* text-transform: uppercase; */
}

.activity-step p {
    color: #000;
    font-size: 18px;
    margin: 0;
}
.title-color-style {
    color: #5B72DC;
  }
.text-color-gray{
  color: #666;
}
