.navbar-custom{
  background-color: orange;
}

.navbar li a {
  color: white;
  font-size: 12pt;
  margin-left:5px;
  margin-right:5px;
}

.carousel-content {
  position: absolute;
  bottom:38%;
  left: 8%;
  color: orange;
  font-size: 60pt;
  text-shadow: 2px 2px white;
}

/*NAV HOVER EFFECT*/
.shift ul li a {
  position:relative;
  z-index: 1;
}
.shift ul li a:hover {
  color: orange;
}
.shift ul li a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  background: white;
  visibility: none;
  opacity: 0;
  z-index: -1;
}
.shift ul li a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.head{
  color: orange;
  padding: 30px;
  text-align: center;
}

#pad{
  padding: 5px;
}

h3{
  color: orange;
}

.txtSize{
  font-size: 14pt;
}

.head{
  color: orange;
  padding: 30px;
  text-align: center;
}

/*IMAGE HOVER EFFECT*/

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.image{
    overflow: hidden;
    height: 300px;
    width: 350px;
    position: relative;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    transition: .5s;
    background-color: #555;
}

.image:after{
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-140%, -50%);
    background-color: rgba(255,165,0, 0.5);
    border-radius: 50%;
    transition: .8s;
}

.image:hover:after{
    transform: translate(-50%, -50%);
}

.image:hover img{
    transform: translate(-50%, -50%) scale(1.3) rotate(20deg);
}

.img{
    position: absolute;
    height: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .8s;
}

i{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-2000px, -50%);
    color: #fff;
    transition: .8s;
    transition-timing-function: ease-in;
}

.h3{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-2000px, -50%);
    color: #fff;
    transition: .8s;
    transition-timing-function: ease-in;
}

.image:hover i{
    transform: translate(-50%, -50%);
    transition-timing-function: ease;
}

.image:hover .h3{
    transform: translate(-50%, -50%);
    transition-timing-function: ease;
}

h5{
  text-align: center;
  margin-left: 30px;
  color: orange;
}
/*END IF IMAGE HOVER EFFECT*/

hr{
  height:2px;
  border-width:0;
  color:orange;
  background-color:orange;
}

.btn {
    padding: 10px;
    margin: 10px;
    
}

.btn-outline-warning{
  border-color: orange;
  box-shadow: rgba(255,160,122, 0.4) 0px 0px 0px 2px, 
  rgba(255,160,122, 0.65) 0px 4px 6px -1px, 
  rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  color: black;
}

#footer {
  padding: 15px;
  color: white;
  text-align: center;
  bottom:0;
  width:100%;
  height:50px;
  background: #343a40!important;
}