body {
      position: relative;
      font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

#background-change-color {
  background-color: #edf7f7;
}

#nav-custom {
  background-color: #c0d3c4;
  text-transform: uppercase;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #555559;
  letter-spacing: 2px;


}

/* From Other */

 #about {
    background: #FFFFFF;
    color: #555559;
    /* font-size: 25px; */
    padding: 100px 10% 50px;
    align-items: center;
    align-content: space-around;
    @media(min-width:1023px) {
      padding:50px 30px ;
    }
  }

.my-name {
  color: #555559;
  text-transform: uppercase;
  letter-spacing: 2px;
}
   

#portfolio {
    padding: 20px 10% 50px;
    color: #555559; 
    background-color: #FFFFFF;
    align-items: center;
    align-content: space-around;
}

#portfolio h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.first-row, .second-row, .third-row, .forth-row {
  margin: 5px 0;
}

.row.row-grid [class*="col-"] + [class*="col-"] {
    margin-top: 30px;
}

@media (min-width: 1200px) {
    .row.row-grid [class*="col-lg-"] + [class*="col-lg-"] {
        margin-top: 0;
    }
}
@media (min-width: 992px) {
    .row.row-grid [class*="col-md-"] + [class*="col-md-"] {
        margin-top: 0;
    }
}
@media (min-width: 768px) {
    .row.row-grid [class*="col-sm-"] + [class*="col-sm-"] {
        margin-top: 0;
    }
}
/* End Portfolio */

#contact {
    padding: 20px 10% 50px;
    background-color: #FFFFFF;
    align-items: center;
    align-content: space-around;
}

#contact h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e7e7e7;
}

.contact-text {
    margin: 14px 0 0;
    color: #e7e7e7;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif
}

h3 .text-color {
    color: #c0d3c4;
}

#form-bg-color {
    background: #c5c6be;
    width: 100%;
}

/* Formatting for Contact Form */

@import url(https://fonts.googleapis.com/css?family=Victor Mono:100,300,400);

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #333335;
  font-size: 0.875em;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #555559;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #333335;
  font-size: 0.875em;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #555559;
}

input::placeholder, textarea::placeholder {
  color: #333335;
  font-size: 0.875em;
}

input:focus::placeholder, textarea::focus:placeholder {
  color: #555559;
}

input::-ms-placeholder, textarea::-ms-placeholder {
  color: #333335;
  font-size: 0.875em;
}

input:focus::-ms-placeholder, textarea:focus::-ms-placeholder {
  color: #555559;
}

/* on hover placeholder */

input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  color: #85a38b;
  font-size: 0.875em;
}

input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder {
  color: #5b6b61;
}

input:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
  color: #85a38b;
  font-size: 0.875em;
}

input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder {
  color: #5b6b61;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #85a38b;
  font-size: 0.875em;
}

input:hover:focus::placeholder, textarea:hover:focus::placeholder {
  color: #5b6b61;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #85a38b;
  font-size: 0.875em;
}

input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder {
  color: #5b6b61;
}

#form {
  position: relative;
  width: 100%;
  margin: 20px auto auto;
}

input {
  font-family: 'Victor Mono', sans-serif;
  font-size: 0.875em;
  width: 100%;
  height: 50px;
  padding: 0px 15px 0px 15px;
  
  background: transparent;
  outline: none;
  color: #3b3a36;
  
  border: solid 1px #c0d3c4;
  border-bottom: none;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

input:hover {
  background: #c0d3c4;
  color: #85a38b;
}

textarea {
  width: 100%;
  height: 110px;
  max-height: 110px;
  padding: 15px;
  resize: none;
  
  background: transparent;
  outline: none;
  
  color: #3b3a36;
  font-family: 'Victor Mono', sans-serif;
  font-size: 0.875em;
  
  border: solid 1px #c0d3c4;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

textarea:hover {
  background: #c0d3c4;
  color: #85a38b;
}

#submit {
  width: 100%;
  
  padding: 0;
  margin: -5px 0px 0px 0px;
  
  font-family: 'Victor Mono', sans-serif;
  font-size: 0.875em;
  color: #555559;
  
  outline:none;
  cursor: pointer;
  
  border: solid 1px #c0d3c4;
  border-top: none;
}

#submit:hover {
  color: #85a38b;
}
/* End Contact Form */


#top-footer {
  background: #e7e7e7;
  padding: 20px 10% 30px;
}

.footer-around {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  color: #555559;
}

#top-footer ul {
  list-style-type: none;
  text-align: center;
  margin: 0 0 -30px 0;
  padding: 20px 10% 50px;
}

#top-footer li {
  display: inline;
} 

.social-link {
  color: #555559;
  border: solid 2px #555559;
  border-radius: 50%;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  line-height: 48px;
  transition: all .3s ease-in-out;
}
  
.social-link:hover {
    border: solid 2px #555559;
    color: #c0d3c4;
    background: #555559;
  }

.footer-quote {
  padding-top: 4%;
  padding-left: 20px;
  color: #555559;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
}

.footer-quote-footer {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #85a38b;
  padding-left: 20px;
}

#bottom-footer {
  background: #c0d3c4;
  height: 50px;
  padding: 20px 10% 40px;
}



/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 9999999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,0,0,0.0);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


