/* Custom CSS File */

/*New css animation */

/*.fadeIn{
  display: inline;
  text-indent: 2px;
}
.fadeIn span{
  animation: fadeEffect 12.5s linear infinite 0s;
  -ms-animation: fadeEffect 12.5s linear infinite 0s;
  -webkit-animation: fadeEffect 12.5s linear infinite 0s;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  font: normal 40px/50px Barlow Condensed, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.8em;
}
.fadeIn span:nth-child(2){
  animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}
.fadeIn span:nth-child(3){
  animation-delay: 5s;
  -ms-animation-delay: 5s;
  -webkit-animation-delay: 5s;
}
.fadeIn span:nth-child(4){
  animation-delay: 7.5s;
  -ms-animation-delay: 7.5s;
  -webkit-animation-delay: 7.5s;
}
.fadeIn span:nth-child(5){
  animation-delay: 10s;
  -ms-animation-delay: 10s;
  -webkit-animation-delay: 10s;
}*/

/*FadeIn Animation*/

/*@-moz-keyframes fadeEffect{
  0% { opacity: 0; }
  5% { opacity: 0; -moz-transform: translateY(0px); }
  10% { opacity: 1; -moz-transform: translateY(0px); }
  25% { opacity: 1; -moz-transform: translateY(0px); }
  30% { opacity: 0; -moz-transform: translateY(0px); }
  80% { opacity: 0; }
  100% { opacity: 0; }
}
@-webkit-keyframes fadeEffect{
  0% { opacity: 0; }
  5% { opacity: 0; -webkit-transform: translateY(0px); }
  10% { opacity: 1; -webkit-transform: translateY(0px); }
  25% { opacity: 1; -webkit-transform: translateY(0px); }
  30% { opacity: 0; -webkit-transform: translateY(0px); }
  80% { opacity: 0; }
  100% { opacity: 0; }
}
@-ms-keyframes fadeEffect{
  0% { opacity: 0; }
  5% { opacity: 0; -ms-transform: translateY(0px); }
  10% { opacity: 1; -ms-transform: translateY(0px); }
  25% { opacity: 1; -ms-transform: translateY(0px); }
  30% { opacity: 0; -ms-transform: translateY(0px); }
  80% { opacity: 0; }
  100% { opacity: 0; }
}*/
.header .logo img {
  max-height: 55px;
}

#hero h1 span{
	text-transform: uppercase;

}
.resume-title {
    color: var(--heading-color);
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}
.resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid var(--accent-color);
    position: relative;
}
.resume-item p {
	color: #7a6960;
}
.resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #eb5d1e;
    margin-bottom: 10px;
}
.resume-item ul {
    padding-left: 20px;
    color: #7a6960;
}
.resume-item::before {
	content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: var(--background-color);
    border: 2px solid var(--accent-color);
}

.faq .features-item {
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid 
color-mix(in srgb, var(--default-color), transparent 90%);
}
.faq .features-item i {
  font-size: 32px;
    padding-right: 10px;
    line-height: 0;
}
.faq .features-item h3 {
  font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}
.faq .features-item:hover {
  border-color: #eb5d1e;
}
.faq .features-item img{
  padding-right: 10px;
}