/*------------------------------------------------------------------------------
  Global Styles
------------------------------------------------------------------------------*/

html {
  font-family: lato, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 16px;
}

h1 {
  font-family: lato, sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: 4rem;
  line-height: 4.2rem;
}

h2 {
  font-family: lato, sans-serif !important;
  font-weight: 200 !important;
  font-style: normal !important;
  font-size: 2rem;
  color: #707070;
}

h3 {
  font-family: lato, sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.25rem;
  color: #505050;
  padding: 0 0 5px 10px;
}

h4 {
  font-family: lato, sans-serif !important;
  font-weight: 200 !important;
  font-style: normal !important;
  font-size: 1.5rem;
  color: #909090;
}

ul{
  list-style-type: none !important;
  padding: 0 !important;
}

a {
  text-decoration:
  color: #000 !important;
}

p {
  padding-left: 30px;
}

.img-shadow {
  -webkit-box-shadow: 1px 4px 10px 2px rgba(0,0,0,0.25);
  -moz-box-shadow: 1px 4px 10px 2px rgba(0,0,0,0.25);
  box-shadow: 1px 4px 10px 2px rgba(0,0,0,0.25);
}

.flow {
  overflow: hidden;
}

.my-container {
  max-width: 1366!important;
}

.vh {
  min-height: 60vh;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 0 30px;
  border-color: transparent transparent transparent #393a3b;
}

.triangle-bg {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 300px 0 0 300px;
  bottom: 0;
  border-color: transparent transparent transparent rgba(255,255,255, .1);
}

.selector-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #000 transparent;
}

.scale60 {
  transform: scale(.60);
}

.scalex2 {
  transform: scale(2);
}

.scalex25 {
  transform: scale(2.0);
}

.wht-brdr-bttm {
  border-bottom: 2px solid white;
}

.wht-brdr-rght {
  border-right: 2px solid white;
}

/* ------------COLORS------------------*/
.doubleRed {
  background-color: #921a1c;
}

.hemiOrange {
  background-color: #f15a24;
}

/*Bootstrap 4 overrides-------------------------------------------------------*/
.nav-desktop {
  display: block;
  color: #921a1c;;
}

.nav-mobile {
  display: none;
}

.navbar-toggler {
  border: none !important;
}
*:focus {
  outline-color: #000 !important;
}

/* navbar styles */
/* .nav-mobile {
  display: none;
} */

.navbar-brand img{
  height: 55px;
  width: auto;
}

.myName {
  font-family: Lato, sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  line-height: 0px !important;
}

.jobTitle {
  font-family: Lato, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  line-height: 0 !important;
}

.navbar li a {
  color: #707070 !important;
  font-family: nobel, sans-serif !important;
  font-weight: 400 !important;
  font-size: .75rem !important;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .1rem;
  position: relative;
  transition: color 0.5s ease;
}

.navbar li a.selected {
  color: #000 !important;
}

.navbar li a.selected::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #000 transparent;
  bottom: -20px;
  left: 50%;
  margin-left: -10px;
}

.navbar li a:hover::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #070707 transparent;
  bottom: -20px;
  left: 50%;
  margin-left: -10px;
  opacity: .5;
}

.navbar li a:hover {
  color: #000 !important;
}

/*-------------------------------------------------------Bootstrap 4 overrides*/




/*------------------------------------------------------------------------------
  Homepage
------------------------------------------------------------------------------*/

.item {
  position: relative;
  transition: .2s ease-out;
}

.item:hover {
  transform: scale(1.03);
  z-index: 1000;
  -webkit-box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.25);
  -moz-box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.25);
  box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.25);
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: .2s ease-out;
  background-color: rgba(0,0,0, .75);
}

.item:hover .overlay {
  opacity: 1;
  width: 100%;
}

.item:hover .overlay > .text{
  top: 50%;
  opacity: 1;
  transition: all .3s ease-out;
}

.text {
  font-family: nobel, sans-serif !important;
  font-weight: 400 !important;
  color: white;
  font-size: 2rem;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
}

/* project header background colors and patterns ---------------------------- */
#project-45SB, .soulYellow {
  background-color: #f8f6dd;
}

.project-DS {
  background-color: #921a1c;
  background-image: url("../images/projects/DS_Bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.project-HSM {
  background-color: #921a1c;
  background-image: url("../images/projects/HSM_Bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

#project-NB1975 {
  background-color: #921a1c;
  background-image: url("../images/projects/NB1975_Bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

#project-Avega {
  background-color: #000;
  background-image: url("../images/projects/Avega_Bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#project-Aficionauto {
  background-color: #000;
  background-image: url("../images/projects/AA_Bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
/*------------------------------------------------------------------------------
  About Page
------------------------------------------------------------------------------*/
  #about h1 {
    font-family: nobel, sans-serif !important;
    font-weight: 400 !important;
  }

/*------------------------------------------------------------------------------
  Footer
------------------------------------------------------------------------------*/
footer {
  /* background-image: url("../images/tile.png");
  background-repeat: repeat; */
  background-color: black;
  min-height: 400px;
}

footer a.nav-link {
  color: white;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                                                                          Medium Screens
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1100px) {

  /* .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: block;
  } */

  ul.navbar-nav  {

    margin-top: 70px !important;
  }

  .navbar li  {
    line-height: 2rem;
    margin-bottom: 2rem;
    padding: 0px 0;
    text-align: justify;
  }

  .navbar li a.selected::after, .navbar li a:hover::after  {
    top: 35%;
    left: 0;
    margin-left: -5px;
    transform: rotate(90deg);
  }
 /*    Home gallery descriptions      */

  .text {
    font-size: 1.5rem;
  }

  .wht-brdr-bttm, .wht-brdr-rght {
    border: none;
  }

  .scalex2 {
    transform: scale(1);
  }

} /* End Media >768px */


/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                                                                          Small Screens
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 576px) {

  p {
    font-size: 1.2rem !important;
  }

  .navbar-brand img{
    height: 40px;
    width: auto;
  }

  .myName {
    font-family: Lato, sans-serif !important;
    font-size: .8rem !important;
    font-weight: 700 !important;
    line-height: 0px !important;
  }

  .jobTitle {
    font-family: Lato, sans-serif !important;
    font-size: .8rem !important;
    font-weight: 300 !important;
    line-height: 0 !important;
  }

  .scalex2 {
    transform: scale(.9);
  }
} /* End Media >576px */
