/*Fonts*/
.font-one {
  font-family: Montserrat, sans-serif;
}
.font-one-two {
  font-size: 17px;
  line-height: 200%;
  color: black;
}
.font-two {
  letter-spacing: 10px;
}
.font-three {
  font-family: Montserrat, sans-serif;
  letter-spacing: 5px;
}

/****************************************************************/
/*Buttons*/
.btn-one {
  position: absolute;
  right:    0;
  bottom:   0;
}
.btn-two {
  letter-spacing: 2px;
}
.button-overlay {
  position: relative;
  display: inline-block;
}
.button-overlay button {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  background-color: #1b1363;
  color: #fff;
  border-radius: 5px;
}
.button-overlay button:hover {
  background-color: #8594e4;
  color: #fff;
}
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  align-self: flex-start;
}

/****************************************************************/
/*Colors*/
.color-one {
  background: #9fa67f;
}
.color-two {
  background: #155263;
}
.color-three {
  background: #f89421;
}
.color-four {
  color: #949fb1;
}

/****************************************************************/
/*Flip Card*/
.flip-card {
  background-color: transparent;
  width: 400px;
  height: 500px;
  margin: auto;
}
.flip-card-inner {
  position: relative;
  width: 400px;
  height: 500px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 400px;
  height: 500px;
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
}
.flip-card-front {
  background-color: #bbb;
  color: black;
}
.flip-card-back {
  color: black;
  transform: rotateY(180deg);
  text-align: center;
}

/****************************************************************/
/* General webpage css*/
body, html {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.h-one {
  letter-spacing: 10px;
  font-size: 60px;
  color: #8594e4;
}
.h3, .h4 {
  font-family: Genty, sans-serif;
  margin: 10px 0 30px 0;
  letter-spacing: 10px;      
  font-size: 20px;
  color: #111;
}
.hr-solid {
  border-top: 2px solid #111;
  width: 50%;
  margin-left: 275px;
  margin-right: -275px;
}

/****************************************************************/
/*Images*/
.img-responsive {
  width: 100%;
  height: 90vh;
}
.img-one {
  height: 20%;
  width: 50%;
}
.img-two {
  width: 100%;
  height: 100%;
}
.img-two:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}  
.img-three {
  transition: all 0.5s ease;
}
.img-three:hover {
  transform: scale(1.3);
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.img-round {
  border-radius: 50%;
}
.img-four {
  width: 190%;
  height: 100%;
  margin-left: -100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-img {
  width: 100vw;
  height: 105vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.6);
}
.parallax {
  min-height: 770px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-two {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.imgB1 {
  width: 100%;
  height: 105vh;
  background-size: cover;
}

/****************************************************************/
/* Navigation bar */
.navbar {
  margin: 0;
  z-index: 9999;
  border: 0;
  font-size: 12px !important;
  line-height: 1.42857143 !important;
  letter-spacing: 4px;
  border-radius: 0;
  font-family: Montserrat, sans-serif;
}
.navbar li a, .navbar .navbar-brand {
  color: #fff !important;
}
.navbar-nav li a:hover, .navbar-nav li.active a {
  color: #f89421 !important;
  background-color: #fff !important;
}
.navbar-default .navbar-toggle {
  border-color: transparent;
  color: #fff !important;
}
.icon-bar {
  background-color:#fff !important;
}
nav[data-toggle="toc"] {
  top: 35px;
}
.navbar-scrolled {
  background-color: #f89421;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15) ;
}


/****************************************************************/
/* NAVIGATION Dropdown Functions*/
.dropbtn {
  color: black;
  padding: 16px;
  border: none;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ec7263;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #9fa67f;}

/****************************************************************/
/*Responsive website*/
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }
  .btn-lg {
    width: 100%;
    margin-bottom: 35px;
  }
  nav[data-toggle="toc"] {
    margin-bottom: 42px;
    position: static;
  }
  nav[data-toggle="toc"] .nav .active .nav {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .logo {
    font-size: 150px;
  }
}

/*****************************************************************/
/*Footer*/
.footer-flex {
  flex: 1;
  min-height: 100vh;
  flex-direction: column;
}
.form-control::placeholder {
  font-size: 0.95rem;
  color: #aaa;
  font-style: italic;
}

.form-control.shadow-0:focus {
  box-shadow: none;
}

#title-Tag-Line {
  font-size: 20px;
}
 .card-item__bg{
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  display: block;
  position: relative;
  margin: 30px auto;
  transform: translate(0px, 50px);
  z-index: 5;
} 

/****************************************CONTACT PAGE****************************************/
/*************** form animation starts ***********/
label {
  display: inline-block;
  margin-bottom: 2px;
  margin-left: 50px;
 }

.form {
  background: #fff;
  box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
  border-radius: 5px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  left: 0;
  right: 0;
  position: absolute;
  border-top: 5px solid #0e3721;
  animation: bounce 1.5s infinite;
}
::-webkit-input-placeholder {
  font-size: 1.3em;
}

/***********Titles**********************/
.title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  margin: 10px auto 5px;
  width: 300px;
}
.pageTitle {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
.secondaryTitle {
  color: grey;
  text-align: center;
}
/*************First and Last Name********/
.f-name {
  background-color: #ebebeb;
  color: black;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}
.f-name:hover {
  border-bottom: 4px solid #0e3721;
  height: 45px;
  min-width: 200px;
  transition: ease 0.5s;
}
.l-name {
  background-color: #ebebeb;
  color: black;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}
.l-name:hover {
  border-bottom: 5px solid #0e3721;
  height: 45px;
  min-width: 200px;
  transition: ease 0.5s;
}

/****************Email********************/
.email {
  background-color: #ebebeb;
  height: 3em;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}
.email:hover {
  border-bottom: 5px solid #0e3721;
  height: 45px;
  width: 380px;
  transition: ease 0.5s;
}

/****************Message********************/
.message {
  background-color: #ebebeb;
  overflow: hidden;
  height: 10rem;
  font-family: 'Montserrat', sans-serif;
}
.message:hover {
  border-bottom: 5px solid #0e3721;
  height: 12em;
  width: 380px;
  transition: ease 0.5s;
}

/****************Form Entry********************/
.formEntry {
  display: block;
  margin: 10px auto;
  margin-left: 50px;
  min-width: 200px;
  padding: 15px;
  border-radius: 2px;
  border: none;
  transition: all 0.5s ease 0s;
  
}
.e-formEntry {
  display: block;
  margin: 10px auto;
  margin-left: 50px;
  min-width: 450px;
  padding: 25px;
  border-radius: 2px;
  border: none;
  transition: all 0.5s ease 0s;
}
.m-formEntry {
  display: block;
  margin: 30px auto;
  min-width: 450px;
  padding: 10px;
  border-radius: 2px;
  border: none;
  transition: all 0.5s ease 0s;
} 
.s-formEntry {
  display: block;
  margin: 30px auto;
  min-width: 350px;
  padding: 10px;
  border-radius: 2px;
  border: none;
  transition: all 0.5s ease 0s;
}
 .form-row {
   display: flex;
 } 
 .form-group {
   padding: 4px;
   width: 45%;
 }

/*****************Submit Button***************/
.submit {
  width: 150px;
  color: white;
  background-color: #0e3721;
  font-size: 20px;
  border-radius: 3%;
}
.submit:hover {
  box-shadow: 15px 15px 15px 5px rgba(78, 72, 77, 0.219);
  transform: translateY(-3px);
  width: 150px;
  border-radius: 3%;
}

@keyframes bounce {
  0% {
    tranform: translate(0, 4px);
  }
  50% {
    transform: translate(0, 8px);
  }
} 


