/*Utility Classes*/

.fa-gradient:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 104, 0)), to(rgb(255, 210, 0)));
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  position: relative;
  border-radius: 90%;
}

.border-red:hover {
  /*border: solid 2px red;*/
  background-color: red;
}

.gradient:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 104, 0)), to(rgb(255, 210, 0)));
  background-clip: border-box;
}

.gradient-border:hover {
  background-image: linear-gradient(45deg,rgb(255, 104, 0), rgb(255, 210, 0));
}

/*Header Animation*/


/*Video Banner*/

header {
  position: relative;
  background-color: black;
  height: 75vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}


@media (pointer: coarse) and (hover: none) {
  .header {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
  }

  header video {
    display: none;
  }
}

/*About Me*/
.about-header{
  color: rgb(255, 104, 0);
}

.about-section{
  color: rgb(0, 39, 76);
}
.about-link{
  color: rgb(255, 104, 0);
}
/*Education*/
.school-logo{
  width: 60%;
  margin-top: 20%;
  margin-left: 20%;
}
.edu-caption {
  margin-left: 10%;
}
.education-header{
  height: 100vh;
}
.image-class2{
 width: 500px;
 border-radius: 15px;
 position: relative;
 top: 0;
}
/*Portfolio Section*/

.card {
  background-color: rgb(0, 39, 76) !important; 
  align-self: center;
  margin: 2%;
  
}
.card-img-top{
  border: solid, 2px,  rgb(248, 248, 133);
}
.card-title{
  color: rgb(255, 104, 0);
}
.card-text{
  color: white;
}
/*Photography Section*/
.gallery-block{
  padding-bottom: 60px;
  padding-top: 60px;
}

.gallery-block .heading{
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block .heading h2{
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-block.compact-gallery .item{
  overflow: hidden;
  margin-bottom: 0;
  background: black;
  opacity: 1;
}

.gallery-block.compact-gallery .item .image{
  transition: 0.8s ease;
  display:inline-flex;
}

.gallery-block.compact-gallery .item .info{
  position: relative;
    display: inline-block;
}

.gallery-block.compact-gallery .item .description{
  display: grid;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    font-size: 17px;
    line-height: 18px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    opacity: 1;
    color: #fff;
    transition: 0.8s ease;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.39));
}

.gallery-block.compact-gallery .item .description .description-heading{
  font-size: 1em;
  font-weight: bold;
}

.gallery-block.compact-gallery .item .description .description-body{
  font-size: 0.8em;
  margin-top: 10px;
  font-weight: 300;
}

@media (min-width: 576px) {

  .gallery-block.compact-gallery .item .description {
    opacity: 0; 
  }

  .gallery-block.compact-gallery .item a:hover .description {
    opacity: 1; 
  } 

  .gallery-block .zoom-on-hover:hover .image {
    transform: scale(1.3);
    opacity: 0.7; 
  }
}

/*Contact*/
.contact-me {
  max-width: 80%;
  height: 600px; 
  margin: 10%;
  background-image: linear-gradient(-90deg, rgb(255, 104, 0), rgb(255, 210, 0));
}
.contact-header {
  margin-bottom: 20px;;
  color: white;
}
.contact-box{
  margin-top: 5%;
  margin-bottom: 10%;
  margin-left: 25%;
  margin-right: 25%;
  background-image: linear-gradient(45deg, rgb(255, 104, 0), rgb(255, 210, 0));
  padding: 30px;
  color: rgb(0, 39, 76);
  border-radius: 15px;
}
.first-name{
  width: 70%
}

.last-name{
  width: 70%
}

.email{
  width: 70%
}

.inquiry{
  width: 70%
}

.footer-1{
  background-color: rgb(0, 39, 76);
  color: rgb(255, 210, 0);
}

.footer-2 {
  background-color: rgb(0, 29, 56);
  color: white;
}
.nav-link{
  color: white;
}