@charset "UTF-8";
/* CSS Document */
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
  text-rendering: optimizeLegibility;
  color: #fff;
  overflow-x: hidden;
}
body{
    background-color: rgba(255,252,250,1.00);
}
.homebg{
	background-image: url("images/bgimage.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
}
.img-fluid {
    max-width: 80%;
    height: auto;
	margin-left: 40%;
}
	.dropdown-item {
		background-color: #000 !important;
	}
	.dropdown-menu {
		background-color: #000 !important;
	}
	.dropdown-menu a:hover{
    background-color: #D56262 !important;
    color: white !important;
}
.navbar.fixed-top.navbar-expand-lg.navbar.navbar-light .navbar-brand .img-fluid.nav{
	max-width: 80%;
    height: auto;
	margin-left: 40%;
}
.dropdown-item {
		background-color: #000 !important;
}
.dropdown-menu {
		background-color: #000 !important;
}
.dropdown-menu a:hover{
    background-color: #D56262 !important;
    color: white !important;
}
.navbar-light .navbar-nav .nav-link {
    color: #000000;
}
.navbar-light .navbar-text a {
    color:rgba(255,255,255,1.00);
}
.navbar-nav.mr-auto .nav-item .nav-link a:hover{
	color: white;
}
li {
	list-style-type: none;
}
@media screen and (min-width:1590px){
	.navbar.fixed-top.navbar-expand-lg.navbar.navbar-light .nav-item .description {
    text-decoration: none;
    list-style-type: none;
    color: white;
    margin-left: 50px;
    font-family: gfs-didot;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5em;
    text-shadow: 1.4px 1px 1px rgba(0,0,0,0.40),0px 8px 13px rgba(0,0,0,0.1),0px 18px 23px rgba(0,0,0,0.1);
}
.navbar.fixed-top.navbar-expand-lg.navbar.navbar-light .navbar-brand .img-fluid.logo {
	margin-left: 42px;
}
}

@media screen and (max-width:1590px){
	.navbar.fixed-top.navbar-expand-lg.navbar.navbar-light .nav-item .description {
		display: none;
}
}
@media (min-width: 992px){
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 4rem;
    padding-left: 1rem;
    font-size: 1.5em;
    font-family: gfs-didot;
    font-style: normal;
    font-weight: 400;
	}
}
.w-100 {
    width: 100%!important;
	height: auto !important;
}
.absolute { position: absolute; }
.center {
	top: 40%;
	left: 50%;
	transform: translateX(-50%);  
}
.head {
	white-space: nowrap;
}
.head h2, .head h3 {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}
.font-larger {
    font-size: 2em;
	font-family: jura;
    font-style: normal;
    font-weight: 300;
	color: white;
}
.font2 {
    font-size: 4em;
    color: white;
    text-shadow: 10px 2px 6px rgba(45,39,39,1.00);
}
.container .center.absolute.head p {
    color: rgba(255,255,255,1.00);
    text-align: center;
}

.font3 {
    font-size: 10em;
    color: white;
    text-shadow: 10px 6px 10px rgba(30,30,30,1.00);
    font-family: mrs-sheppards;
    font-style: normal;
    font-weight: 400;
}

.text-center {
	text-align: center;
}
.main-text {
	top: 50%;
	overflow: hidden;
	position: relative;
}
.main-text h4 {
	margin: 0.5em 0 0 0;
	animation-delay: 1s;
}
/* Animations */
.hello {
	transform: translate3d(-3000px, 0, 0);
	animation: bounceInLeft .75s forwards;
}
.date-name {
	transform: translate3d(3000px, 0, 0);
	animation: bounceInRight .5s .4s forwards;
}
.flip-down {
  transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  animation-name: flipInX;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.fade-in {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  animation-name: fadeInUp;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
































































/*BrandingSuite CSS*/
body{
    font-family: "Muli", "Helvetica Neue", "Arial", "sans-serif";
    font-weight: 300;
    color: #EDEDED;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}
.masthead2 {
	background-repeat: no-repeat;
    background-position: center;
    background-image:url("images/bigsur.jpg");
    background-attachment: fixed;
    background-size: cover;
    padding: 3.5em 2em;
    border-top: 8px solid #EDEDED;
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
               0px 8px 13px rgba(0,0,0,0.1),
               0px 18px 23px rgba(0,0,0,0.1);
    font-size: 4em;
}
.masthead-intro2 {
  margin: 2em 0 0 0;
}
.masthead-heading2 {
  font-size: 10rem;
  padding: 0;
  margin: 0 0 1em;
}
section {
	font-size: 0.9rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1em;
}
.gradient2 .brandingsuite{
	max-width: 60%;
}
.gradient2 {
	padding: 10em;
    background-color: #000000;
    ;
    background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(26,26,26,1.00) 63.42%,rgba(38,38,38,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(26,26,26,1.00) 63.42%,rgba(38,38,38,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(26,26,26,1.00) 63.42%,rgba(38,38,38,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(0,0,0,1.00) 0%,rgba(26,26,26,1.00) 63.42%,rgba(38,38,38,1.00) 100%);
}
h2 {
    font-size: 4em;
    color: #D5C5DF;
}
h3 {
	font-style: italic;
	font-size: 2.5em;
}
section p {
	font-size: 1.8em;
	line-height: 1.3em;
}
.space-maker {
	margin-bottom: 3em;
}
.content-footer {
	background: #000000;
	padding: 4em;
}
.content-footer > p {
	line-height: 1.3em;
	text-align: center;
	font-size: 2em;
}
.social {
	text-align: center;
	padding: 0;
}
.social > li {
	display: inline-block;
	line-height: 1.3em;
	margin-right: 2em;
	font-size: 2em;
}
a {
	color: #262626;
	text-decoration: none;
}
a:hover {
	color: #EDEDED;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.social li:last-child {
	margin-right: 0;
}
@media only screen and (max-width: 500px) {
  .masthead {
	  padding: 1em;
  }
  .masthead-intro {
	  font-size: 1.5rem;
  }
  .masthead-heading {
    font-size: 4rem;
  }
  .gradient {
	  padding: 5em;
  }
  h2 {
	  font-size: 2rem;
  }
  h3 {
	  font-size: 1.5rem;
  }
  section p {
	  font-size: 1rem;
  }
  .content-footer {
	  padding: 3em;
  }
  
  .social > li {
	  display: block;
	  margin-right: 0;
  }
  a {
	  line-height: 3em;
  }
  .content-footer p a {
	  line-height: 0;
  } 
}
@media only screen and (max-width: 344px) {
  .content-footer p a {
	  line-height: 3em;
  }
}

.column img {
  margin-top: 12px;
	padding: 20px 0;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


































































/*AboutMe CSS*/
body{
    font-family: "Muli", "Helvetica Neue", "Arial", "sans-serif";
    font-weight: 300;
    color: #EDEDED;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}
.masthead {
	background-repeat: no-repeat;
    background-position: center;
    background-image:url("images/sfbuilding copy.jpg");
    background-attachment: fixed;
    background-size: cover;
    padding: 3.5em 2em;
    border-top: 8px solid #EDEDED;
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
               0px 8px 13px rgba(0,0,0,0.1),
               0px 18px 23px rgba(0,0,0,0.1);
    font-size: 4em;
}
.masthead-intro {
  margin: 2em 0 0 0;
}
.masthead-heading {
  font-size: 10rem;
  padding: 0;
  margin: 0 0 1em;
}
section {
	font-size: 0.9rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1em;
}
.gradient .aboutme{
	max-width: 60%;
}
.gradient {
	padding: 10em;
    background-color: #000000;
    ;
    background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(26,26,26,1.00) 63.42%,rgba(38,38,38,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(26,26,26,1.00) 63.42%,rgba(38,38,38,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(26,26,26,1.00) 63.42%,rgba(38,38,38,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(0,0,0,1.00) 0%,rgba(26,26,26,1.00) 63.42%,rgba(38,38,38,1.00) 100%);
}
h2 {
    font-size: 4em;
    color: #D5C5DF;
}
h3 {
	font-style: italic;
	font-size: 2.5em;
}
section p {
	font-size: 1.8em;
	line-height: 1.3em;
}
.space-maker {
	margin-bottom: 3em;
}
.content-footer {
	background: #000000;
	padding: 4em;
}
.content-footer > p {
	line-height: 1.3em;
	text-align: center;
	font-size: 2em;
}
.social {
	text-align: center;
	padding: 0;
}
.social > li {
	display: inline-block;
	line-height: 1.3em;
	margin-right: 2em;
	font-size: 2em;
}
a {
	color: #262626;
	text-decoration: none;
}
a:hover {
	color: #EDEDED;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.social li:last-child {
	margin-right: 0;
}
@media only screen and (max-width: 500px) {
  .masthead {
	  padding: 1em;
  }
  .masthead-intro {
	  font-size: 1.5rem;
  }
  .masthead-heading {
    font-size: 4rem;
  }
  .gradient {
	  padding: 5em;
  }
  h2 {
	  font-size: 2rem;
  }
  h3 {
	  font-size: 1.5rem;
  }
  section p {
	  font-size: 1rem;
  }
  .content-footer {
	  padding: 3em;
  }
  
  .social > li {
	  display: block;
	  margin-right: 0;
  }
  a {
	  line-height: 3em;
  }
  .content-footer p a {
	  line-height: 0;
  } 
}
@media only screen and (max-width: 344px) {
  .content-footer p a {
	  line-height: 3em;
  }
}
.skillset{
    width: 90%;
    margin-left: 7%;
    padding-top: 60px;
    padding-bottom: 60px;

}
.skillscontainer {
    width: 100%;
    background-color: #ddd;
}

.skills {
  text-align: right;
  padding: 10px;
  color: white;
}
.photoshop {width: 99%; background-color: #4B325A;}
.illustrator {width: 95%; background-color:#DEAEE8; color: black;}
.indesign {width: 65%; background-color: #FFCCFE; color: black;}
.html {width: 85%; background-color: #E8AED3; color: black;}
.dreamweaver {width: 70%; background-color: #FFBFD2; color: black;}
.bootstrap {width: 60%; background-color: #80667F;}







































































/*Contact CSS*/
.contactbg{
    /*    background-image: url(mypic3.JPG);
    background-size: cover;
    background-repeat: no-repeat;
	background-attachment: fixed;*/
}
.typingEffect {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.typingEffect p {
    font-size: 3rem;
    padding: 0.5rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-align: center;
    overflow: hidden;
    color: #FFFFFF;
}
.typingEffect p span.typed-text {
    font-weight: normal;
    color: #FF4646;
    text-shadow: 0 0 40px #D7D7D7;
}
.container p span.cursor {
  display: inline-block;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.typingEffect p span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #ccc; }
  49% { background-color: #ccc; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #ccc; }
}
.contactbg .mytitle{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -300px
}
.h5, h5 {
    font-size: 1.8rem;
    color: #FF484B;
    letter-spacing: 10px;
    font-family: jura;
    font-style: normal;
    font-weight: 400;
    text-shadow: 0px 6px 40px #000000;
}
@media screen and (max-width:1024px){
	.h5, h5 {
		display: none;
}
	.contactbg .ssicons{
		margin-top: -60px;
}
	p {
    margin-bottom: 0;
}
}

.contactbg .ssicons{
	text-align: center
}
.ssicons a img{
    margin-top: 30px;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 0px;
    width: 70px;
    display: inline-block;
}
.contactbg .content-footer{
    padding-right: 3em;
    padding-left: 3em;
    padding-bottom: 3em;
    padding-top: 2.2em;
}
.container-fluid.contact .row.contact .col-sm-6{
    color: rgba(93,93,93,1.00);
}
.row.contact .col-sm-6.right h1{
	text-align: center;
}
.container-fluid.contact .row.contact .col-sm-6.left{
    background-image: url("images/mypic3 copy.jpg");
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
}
.container-fluid.contact .row.contact .col-sm-6.right{
    padding-top: 240px;
    background-image: -webkit-linear-gradient(270deg,rgba(238,236,227,1.00) 5.75%,rgba(255,252,241,1.00) 16.05%,rgba(222,222,222,1.00) 87.53%,rgba(191,191,191,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(238,236,227,1.00) 5.75%,rgba(255,252,241,1.00) 16.05%,rgba(222,222,222,1.00) 87.53%,rgba(191,191,191,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(238,236,227,1.00) 5.75%,rgba(255,252,241,1.00) 16.05%,rgba(222,222,222,1.00) 87.53%,rgba(191,191,191,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(238,236,227,1.00) 5.75%,rgba(255,252,241,1.00) 16.05%,rgba(222,222,222,1.00) 87.53%,rgba(191,191,191,1.00) 100%);
}
.row.contact .col-sm-6.right .container{
	padding: 20px;
	margin-top: 40px;
}
.container .row .col-sm-4{
	text-align: center;
}
.row .col-sm-4 .mr-3{
	padding-bottom: 10px;
}
.list-unstyled.mb-0 li .contacttxt{
	font-size: 1.7em;
}
.row .col-md-6.mt-3.contact-widget-section2.wow.animated.fadeInLeft .find-widget{
	padding: 10px;
	padding-bottom: 30px;
}
.row.contact .col-sm-6.right p{
    text-align: center;
    font-family: antic;
    font-style: normal;
    font-weight: 400;
}
.row.contact .col-sm-6.right h1{
    padding-bottom: 8px;
    text-shadow: 1.4px 1.4px 1px rgba(0,0,0,0.40),0px 8px 13px rgba(0,0,0,0.1),0px 18px 23px rgba(0,0,0,0.1);
}
.row.contact .col-sm-6.right h5{
    text-shadow: none;
    font-size: 1em;
    letter-spacing: normal;
	text-align: center;
}
.btn {
    color: rgba(93,93,93,1.00);
    background-color: rgba(255,72,75,0.33);
    -webkit-box-shadow: 20px 2px 10px;
    box-shadow: 1.2px 1px 3px;
}