/* GLOBAL STYLES*/
a {
  color: #7296f0;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

h2, h4, p {
  font-family: "Quicksand", sans-serif;
}

.btn-primary {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 2px;
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  background: transparent;
  border: 1px solid #fff;
}

.hero-container {
  background: linear-gradient(-45deg, #ef7f5d, #be3a6d, #8860d0, #23d5ab);
  /*original colors - #ee7752, #e73c7e, #23a6d5, #23d5ab*/
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
  animation: gradient 15s ease infinite;
  height: 120vh;
  width: 100%;
  overflow: hidden;
}

/* HEADER STYLES*/
#header {
  height: 100px;
  line-height: 100px;
}
#header .header-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1%;
}
#header .header-container .header-left .nav li a {
  color: #fff;
  font-family: "Quicksand", sans-serif !important;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}
#header .header-container .header-left .nav li a:hover {
  color: #e4e4e4;
}
#header .header-container .header-middle {
  margin-left: -13%;
}
#header .header-container .header-middle .logo img {
  height: 550px;
}
#header .header-container .header-right .svg-inline--fa {
  font-size: 28px;
  margin: 0 5px;
}

/* HERO ROTATING WORD CONTAINER*/
.rotating-container {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  /*top: 60%;*/
  top: 80%;
  left: 0;
  right: 0;
  display: none;
  transition: all ease 1s;
}
.rotating-container h1.name {
  color: #fff;
  font-weight: 800;
  font-family: "Quicksand", sans-serif !important;
  font-size: 3.8em;
}
.rotating-container h3.intro-text {
  display: inline-block;
}
.rotating-container .main-text {
  margin-top: 5%;
  transform: translateY(-50%);
  font-size: 3.5em;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  margin-left: -30%;
  font-weight: 900;
}
.rotating-container .main-text .rotating-word {
  display: inline-block;
  color: #fff;
}
.rotating-container .main-text .rotating-word span {
  position: absolute;
  top: 0;
  overflow: hidden;
  animation: animate 8s linear infinite;
  opacity: 0;
  font-family: "Quicksand", sans-serif !important;
}
.rotating-container .main-text .rotating-word span:nth-child(1) {
  animation-delay: 0s;
}
.rotating-container .main-text .rotating-word span:nth-child(2) {
  animation-delay: 2s;
}
.rotating-container .main-text .rotating-word span:nth-child(3) {
  animation-delay: 4s;
}
.rotating-container .main-text .rotating-word span:nth-child(4) {
  animation-delay: 6s;
}

/* ABOUT CONTAINER */
#about {
  padding: 50px;
  width: 100%;
  opacity: 0;
  transition: transform 0.8s ease-in, opacity 0.6s ease 0.6s;
}
#about.animate {
  opacity: 1;
  transition: transform 0.8s ease-in, opacity 0.6s ease;
}
#about h2 {
  margin: 0 auto;
}
#about .about-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 50px;
}
#about .about-container .about-skills {
  width: 50%;
}
#about .about-container .about-skills .progress {
  height: 2.5em;
  margin-top: 20px;
}
#about .about-container .about-skills .progress span {
  padding: 5px 15px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Quicksand", sans-serif !important;
  width: 95px;
}
#about .about-container .about-skills .progress .progress-bar {
  background: #7296f0;
  font-weight: 600;
  font-family: "Quicksand", sans-serif !important;
}
#about .about-container .about-skills .progress .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
#about .about-container .about-content {
  width: 50%;
  padding: 90px;
}
#about .skills-container {
  padding: 80px 60px;
  width: 100%;
  opacity: 0;
  transition: transform 0.8s ease-in, opacity 0.6s ease 0.6s;
}
#about .skills-container.animate {
  opacity: 1;
  transition: transform 0.8s ease-in, opacity 0.6s ease;
}
#about .skills-container .skills {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 1%;
}
#about .skills-container .skills .skills-indv {
  margin: 10px;
  width: 25%;
  text-align: center;
}
#about .skills-container .skills .skills-indv h4 {
  margin-top: 20px;
  font-weight: 800;
}
#about .skills-container .svg-inline--fa {
  color: #fff;
  background: #7296f0;
  height: 150px;
  width: 150px;
  padding: 30px;
  border-radius: 50%;
  margin: 2%;
}
#about .skills-container .svg-inline--fa path {
  transition: 0.5s;
}
#about .skills-container .svg-inline--fa path:hover {
  transform: translate(15%);
  transition: 0.5s;
}

/*keyframes for rotating text*/
@keyframes animate {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  2% {
    opacity: 1;
    transform: translateY(0px);
  }
  18% {
    opacity: 1;
    transform: translateY(0px);
  }
  20% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}
/*keyframes for background gradient*/
@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  30% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  30% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* EXPERIENCE ROW*/
#experience {
  padding: 30px 50px;
  opacity: 0;
  transition: transform 0.8s ease-in, opacity 0.6s ease 0.6s;
}
#experience.animate {
  opacity: 1;
  transition: transform 0.8s ease-in, opacity 0.6s ease;
}
#experience #BtnContainer {
  text-align: center;
  padding-bottom: 20px;
}
#experience #BtnContainer .btn {
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  border-bottom: 1px solid #7296f0;
  border-radius: 0px;
}
#experience #BtnContainer .btn:hover, #experience #BtnContainer .btn.active {
  background: #7296f0;
  color: #fff;
}
#experience .row {
  margin: 10px -16px;
}
#experience .row,
#experience .row > .column {
  padding: 8px;
}
#experience .disclaimer {
  padding: 0 100px;
  font-size: 12px;
}
#experience .column {
  float: left;
  width: 33.33%;
  display: none;
  /* Hide all elements by default */
  border: 1px solid #eee;
}
#experience .column .content {
  text-align: center;
}
#experience .column .content img {
  height: 30vh;
}
#experience .column .content h4 {
  margin-top: 20px;
}
#experience .column .content p {
  font-size: 0.8em;
}
#experience .show {
  display: block;
}

#contact {
  background: linear-gradient(-45deg, #ef7f5d, #be3a6d, #8860d0, #23d5ab);
  /*original colors - #ee7752, #e73c7e, #23a6d5, #23d5ab*/
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
  animation: gradient 15s ease infinite;
  height: 90vh;
  width: 100%;
}
#contact .col-sm-12 {
  padding: 0;
}
#contact .section-header {
  text-align: center;
  margin: 0 auto;
  padding-top: 50px;
  margin-bottom: 50px;
  font: 600 40px "Quicksand", sans-serif;
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 25px;
}
#contact .contact-wrapper {
  margin: 0 auto;
  padding-top: 20px;
  position: relative;
  max-width: 800px;
  /* Begin Left Contact Page */
  /* Begin Right Contact Page */
}
#contact .contact-wrapper .form-horizontal {
  display: none;
  float: left;
  max-width: 400px;
  font-family: "Quicksand";
  font-weight: 400;
}
#contact .contact-wrapper .form-horizontal .form-control, #contact .contact-wrapper .form-horizontal textarea {
  max-width: 400px;
  background-color: transparent !important;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 2px;
}
#contact .contact-wrapper .form-horizontal .form-control:focus, #contact .contact-wrapper .form-horizontal textarea:focus {
  background-color: #eaeaea;
}
#contact .contact-wrapper .form-horizontal ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
#contact .contact-wrapper .form-horizontal ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
#contact .contact-wrapper .form-horizontal :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
#contact .contact-wrapper .form-horizontal :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
#contact .contact-wrapper .form-horizontal .send-button {
  margin-top: 15px;
  height: 40px;
  width: 100%;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#contact .contact-wrapper .form-horizontal .send-button .button {
  width: 400px;
  height: 34px;
  transition: all 0.2s ease-in-out;
}
#contact .contact-wrapper .form-horizontal .send-button .button:hover {
  transform: translate3d(0px, -38px, 0px);
}
#contact .contact-wrapper .form-horizontal .send-button .button .send-text {
  display: block;
  margin-top: 10px;
  font: 300 14px "Quicksand", sans-serif;
  letter-spacing: 2px;
}
#contact .contact-wrapper .direct-contact-container {
  /*max-width: 400px;*/
  max-width: 100%;
  text-align: center;
  margin-top: 5px;
  /* Location, Phone, Email Section */
}
#contact .contact-wrapper .direct-contact-container hr {
  border-color: rgba(255, 255, 255, 0.8);
  margin-left: 20px;
}
#contact .contact-wrapper .direct-contact-container .contact-list {
  list-style-type: none;
  padding-right: 20px;
}
#contact .contact-wrapper .direct-contact-container .contact-list .list-item {
  line-height: 4;
  color: #fff;
}
#contact .contact-wrapper .direct-contact-container .contact-list .list-item .contact-text {
  font: 600 14px "Quicksand", sans-serif;
  letter-spacing: 1.9px;
  color: #fff;
}
#contact .contact-wrapper .direct-contact-container .contact-list .list-item .contact-text.gmail {
  font-size: 13px;
}
#contact .contact-wrapper .direct-contact-container .contact-list .list-item .contact-text svg {
  margin-right: 10px;
}
#contact .contact-wrapper .direct-contact-container .contact-list .list-item .contact-text a {
  color: #fff;
  text-decoration: none;
  transition-duration: 0.2s;
}
#contact .contact-wrapper .direct-contact-container .contact-list .list-item .contact-text a:hover {
  color: #fff;
  text-decoration: none;
}

/* Social Media Icons */
.social-media-list {
  position: relative;
  font-size: 2.3rem;
  text-align: center;
  width: 100%;
}
.social-media-list a {
  color: #fff;
}
.social-media-list li {
  position: relative;
  top: 0;
  left: -20px;
  display: inline-block;
  height: 70px;
  width: 70px;
  margin: 10px auto;
  line-height: 70px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.social-media-list li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all 0.2s ease-in-out;
}
.social-media-list li:hover {
  background-color: #fff;
}
.social-media-list li:hover .svg-inline--fa {
  color: #999;
}
.social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

/* THANK YOU PAGE*/
.thanks-container {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
  top: 22%;
  color: #fff;
}
.thanks-container h2 {
  font-size: 3rem;
}

/* Contact Specific Media Queries*/
@media screen and (max-width: 760px) {
  #contact {
    height: 1000px;
  }
  #contact .section-header {
    font-size: 45px;
  }
  #contact .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }
  #contact .direct-contact-container, #contact .form-horizontal {
    float: none;
    margin: 10px auto;
  }
  #contact .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  #contact .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 569px) {
  #contact {
    height: 1200px;
  }
  #contact .section-header {
    font-size: 40px;
  }
  #contact .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }
  #contact .direct-contact-container, #contact .form-wrapper {
    float: none;
    margin: 0 auto;
  }
  #contact .form-control, #contact textarea {
    max-width: 100% !important;
    margin: 0 auto;
  }
  #contact .social-media-list {
    left: 0;
  }
  #contact .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  #contact .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}
@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}
/* MEDIA QUERIES */
@media screen and (max-width: 1024px) {
  .hero-container {
    height: 130vh;
  }

  .header-container {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
  }
  .header-container .header-right {
    display: none;
  }
  .header-container .header-left {
    text-align: center;
    margin: 0 auto;
    margin-top: -6%;
  }
  .header-container .header-middle {
    margin-left: 0 !important;
  }
  .header-container .header-middle .logo img {
    height: 450px !important;
  }

  .rotating-container {
    /*top:70%;*/
    top: 90%;
  }
  .rotating-container h1.name {
    font-size: 3.4em !important;
  }
  .rotating-container .main-text {
    margin-top: 6%;
  }
  .rotating-container .main-text span {
    font-size: 36px !important;
    top: 24px !important;
  }

  .about-container {
    flex-direction: column-reverse;
  }
  .about-container .about-content, .about-container .about-skills {
    padding: 20px !important;
    width: 100% !important;
  }
  .about-container .about-skills {
    padding: 0px !important;
  }

  .skills-container {
    padding: 20px;
  }

  #experience .column {
    width: 50%;
  }

  #experience .content img {
    height: auto !important;
  }

  .form-horizontal {
    float: none !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .form-control, textarea {
    max-width: 100% !important;
  }

  .direct-contact-container {
    float: none !important;
    text-align: center !important;
    margin: 40px auto !important;
  }

  .contact-wrapper .button {
    width: 100% !important;
  }

  #contact {
    padding: 30px;
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .header-container .header-middle {
    margin: 0;
  }
  .header-container .header-middle .logo img {
    height: 450px !important;
  }
  .header-container .header-left {
    margin-top: -6%;
  }
  .header-container .header-left .nav li a {
    font-size: 12px !important;
  }

  .rotating-container {
    margin-top: 0%;
    top: 95%;
    padding: 0;
  }
  .rotating-container h1.name {
    width: auto;
    font-size: 2em !important;
  }
  .rotating-container .main-text {
    margin-top: 10%;
    margin-left: -45%;
  }
  .rotating-container .main-text .intro-text {
    font-size: 20px;
  }
  .rotating-container .main-text .rotating-word span {
    top: 40px !important;
    font-size: 22px !important;
  }

  .skills {
    flex-direction: column;
  }
  .skills .skills-indv {
    width: 100% !important;
  }

  #about {
    padding: 30px;
  }
  #about .about-skills .progress span {
    font-size: 9.5px !important;
    width: 75px !important;
    padding: 7px !important;
  }

  #experience .column {
    width: 100% !important;
  }

  #experience .disclaimer {
    padding: 0 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .rotating-container {
    margin-top: 8%;
  }
  .rotating-container h1.name {
    font-size: 1.8em !important;
  }
  .rotating-container .main-text {
    margin-top: 8%;
  }
  .rotating-container .main-text span {
    top: 40px !important;
  }
}
@media screen and (max-width: 375px) {
  .header-container .header-left {
    margin-top: -15% !important;
  }

  h1.name {
    font-size: 1.5em !important;
  }

  .rotating-container .main-text {
    margin-left: -50% !important;
  }
  .rotating-container .main-text .rotating-word span {
    font-size: 18px !important;
  }
}

/*# sourceMappingURL=style.css.map */
