/* For Showing Navigation Bar in different Screen Size */
@media screen and (max-width: 600px) {
  #small-screen{
    display:flex;
  }
  #big-screen{
    display: none;
  }
}

@media screen and (min-width: 600px) {
  #small-screen{
    display: none;
  }
  #big-screen{
    display: block;
  }
}
@media screen and (max-width: 900px) {
  #small-screen{
    display:flex;
  }
  #big-screen{
    display: none;
  }
}

@media screen and (min-width: 900px) {
  #small-screen{
    display: none;
  }
  #big-screen{
    display: block;
  }
}
@media screen and (max-width: 991px) {
  #small-screen{
    display:flex;
  }
  #big-screen{
    display: none;
  }
}

@media screen and (min-width: 991px) {
  #small-screen{
    display: none;
  }
  #big-screen{
    display: block;
  }
}
/* For Navigation Menu Hover Effect */


#back-image{
  background-image: url(/Image/Philburn_Final.jpg);
  background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100vh;
    position: relative;
    /* filter: grayscale(60%); */
    /* filter: sepia(60%) hue-rotate(120deg) saturate(0%); */
}

.btn-min-block {
  min-width: 220px;
  line-height: 50px;
}

.btn-theme {
  color:darkblue;
  background-color: rgb(179,236,8);
  border: 2px solid #fff;
  margin-right: 15px;
  margin-top: 5px;
  /* padding: 20px 80px; */
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
  margin-bottom: 10px;
}

.btn-theme:hover {
  color: rgb(179,236,8);
  background-color: rgb(90, 90, 90);
  border-color: #fff;
}

/* Media Query For Sliding Text */
@media screen and (max-width: 600px) {
  .carousel-item {
    height: 80vh;
    min-height: 250px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover; 
    background-size: cover;
  }
  .carousel-caption {
    bottom: 150px;
  }
  
  .carousel-caption h5 {
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .carousel-caption p {
    width: 75%;
    margin: auto;
    font-size: 15px;
    line-height: 1.2;
    font-style: oblique;
  } 
}

/* For Animated Card */

/* Code for Contact us button Row */
.contact-us-btn-row{
  padding-top: 20px;
  background-color: turquoise;
  /* margin-top: 20px; */
}

.contact-us-btn-row h6{
  font-family: Cambria;
  font-style: italic;
  padding: 10px 50px;
  margin-right: 140px;
  font-size: 20px;
  color: #fff;
}


/* For Text Effect sub heading */
/* For Sub Heading */
#sub-head{
  font-size: 30px;
  color: white;
  font-weight: bold;
  font-family:helvetica;
  margin-left: 5%;
  
}
/* For Main Heading */

/* For Main Text */
.main-text{
  text-align: center;
  position: absolute;
  top: 65%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
  text-transform: uppercase;
}
@media only screen and (max-width:600px) {
  .main-text{
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-transform: uppercase;
  }
  
  .main-text h5 {
    
    font-size:20px;
    color: var(--primary-color);
    transform: translateY(-600px);
    animation:.5s slideIn ease-in-out forwards 1s;
    z-index: 10;
    opacity: 0;
    position: relative;
  }
  #sub-head{
    font-size: 15px;
    color: white;
    font-weight: bold;
    font-family:helvetica;
    margin-left: 5%;
  }
  
}
.main-text h5 {
  font-size:45px;
  
  color: var(--primary-color);
  transform: translateY(-600px);
  animation:.5s slideIn ease-in-out forwards 1s;
  z-index: 10;
  opacity: 0;
  position: relative;
}

.main-text h5::before {
    content: '';
    width: 0%;
    height: 76px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    animation: 1s underline ease-in-out forwards 1s;
    mix-blend-mode: screen;
}

.main-text .overlay {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    opacity: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    transform: scale(.5);
    animation: .5s slideIn ease-in-out forwards, 1s skewBg ease-in-out;
}

@keyframes skewBg {
  0% {
    transform: scale(.5);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes underline {
  100% {
    width: 100%;
  }
}

@keyframes slideIn {
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* For Footer */
.footer-dark {
  margin-top: 1%;
  padding:50px 0;
  color:#f0f9ff;
  background-color:#282d32;
}

.footer-dark h3 {
  margin-top:0;
  margin-bottom:12px;
  font-weight:bold;
  font-size:16px;
}

.footer-dark ul {
  padding:0;
  list-style:none;
  line-height:1.6;
  font-size:14px;
  margin-bottom:0;
}

.footer-dark ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.6;
}

.footer-dark ul a:hover {
  opacity:0.8;
}

@media (max-width:767px) {
  .footer-dark .item:not(.social) {
    text-align:center;
    padding-bottom:20px;
  }
}

.footer-dark .item.text {
  margin-bottom:36px;
}

@media (max-width:767px) {
  .footer-dark .item.text {
    margin-bottom:0;
  }
}

.footer-dark .item.text p {
  opacity:0.6;
  margin-bottom:0;
}

.footer-dark .item.social {
  text-align:center;
}

@media (max-width:991px) {
  .footer-dark .item.social {
    text-align:center;
    margin-top:20px;
  }
}

.footer-dark .item.social > a {
  font-size:20px;
  width:36px;
  height:36px;
  line-height:36px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  box-shadow:0 0 0 1px rgba(255,255,255,0.4);
  margin:0 8px;
  color:#fff;
  opacity:0.75;
}

.footer-dark .item.social > a:hover {
  opacity:0.9;
}

.footer-dark .copyright {
  text-align:center;
  padding-top:24px;
  opacity:0.3;
  font-size:13px;
  margin-bottom:0;
}

/* For Footer Social Icons END*/
/* For Whatsapp */
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/* End Whatsapp Code */

