h1,h2,h3,.display-4{font-weight:bold;}

.headline{
  position:absolute;
  top:280px;color:#fff;
  font-weight:bold;
}

.navbar-brand {
  padding:20px 0px;
}

.navbar-dark .navbar-toggler {
  border-color: rgba(0,0,0,0);
}

button.navbar-toggler:focus{
  outline:none;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 1);
  margin-left: 20px;
  font-weight: bold;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color:#339900;
}

.navbar-dark .navbar-nav .nav-link.active {
  color:#339900;
}

.btn-primary {
  color: #fff;
  background-color: #339900;
  border-color: #339900;
}

.btn-primary:hover {
  color: #339900;
  background-color: #fff;
  border-color: #339900;
}

.sectionTitle h1{
  color:#fff;
  font-weight: bold;
  line-height:400px;
}

.footerArea{
  background-color: #171C61;
  padding: 20px 0px;
}

.footerArea a, .footerArea span{
  color:#fff;
}

.background-fixed {
background: url(images/callout-back.jpg) no-repeat fixed center/cover;
overflow: hidden;
width: 100%;
padding: 0;
}

.background-fixed .overlay {
background: rgba(0, 0, 0, 0.2) ;
position: relative;
height: 100%;
padding: 20% 0;
}

input[type="text"]:hover, input[type="email"]:hover, textarea:hover{
  border-color: #339900;
}

.dashed-border{
  color: #339900;
  border:dashed 1px #339900;
  padding: 0.5rem;
  margin-top: 1rem
}

#submitButton{
  padding: 5px 30px;
}


/*------ card -----*/

.card {
  cursor: pointer;
  box-shadow: 0px 10px 30px 0px rgba(205, 205, 205, 0.33);
	transition: all .3s;
	border: inherit;
}

.card::before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    height: 3px;
    width: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.card:hover::before, .card:hover::after {
    width: 50%;
}

.card::after {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    height: 3px;
    width: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.card:hover {
    box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
}

.card .btn-theme {
	font-size: 14px;
	font-weight: 600;
	background: inherit;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-radius: 0;
	padding: 0 0 6px 0;
	line-height: 1;
	text-transform: uppercase;
	transition: all 500ms ease;
}


.card::before, .card::after {
  background-color: #339900;
}

.card .btn-theme {
	color: #444;
	border-color: #444;
}

.card .btn-theme:hover {
	color: #339900;
	border-color: #339900;
  box-shadow: inherit;
}


/*------ media query -----*/

@media screen and (max-width: 1140px) {
  .display-4 {font-size: 3.5rem;}
}

@media screen and (max-width: 940px) {
  .display-4 {font-size: 2.5rem;}
  .embed-responsive img{
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
  .navbar-brand img{width:auto; height:45px;}
  .sectionTitle h1{line-height:200px;}
}

@media screen and (max-width: 720px) {
  .display-4 {font-size: 2rem;}
  .embed-responsive img{
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
  .navbar-brand img{width:auto; height:30px;}
  .background-fixed{height: 500px;}
  .background-fixed h1{padding:100px 0px;}
  .sectionTitle h1{line-height:600px;}
}
