/* Banner */

	#banner {
		width: 100%;
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		cursor: default;
		height: 100vh;
		min-height: 35em;
		overflow: hidden;
		position: relative;
		text-align: center;
			
	}

		#banner h2 {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: inline-block;
    font-size: 2.625em;
    opacity: 1;
    padding: 0.35em 1em;
    position: relative;
    z-index: 1;
		}

			#banner h2:before, #banner h2:after {
				-moz-transition: width 0.85s ease;
				-webkit-transition: width 0.85s ease;
				-ms-transition: width 0.85s ease;
				transition: width 0.85s ease;
				-moz-transition-delay: 0.25s;
				-webkit-transition-delay: 0.25s;
				-ms-transition-delay: 0.25s;
				transition-delay: 0.25s;
				background: #fff;
				content: '';
				display: block;
				height: 2px;
				position: absolute;
				width: 100%;
			}

			#banner h2:before {
				top: 0;
				left: 0;
			}

			#banner h2:after {
				bottom: 0;
				right: 0;
			}

		#banner p {
			letter-spacing: 0.225em;
			text-transform: uppercase;
		}

			#banner p a {
				color: inherit;
			}

		#banner .more {
			-moz-transition: -moz-transform 0.75s ease, opacity 0.75s ease;
			-webkit-transition: -webkit-transform 0.75s ease, opacity 0.75s ease;
			-ms-transition: -ms-transform 0.75s ease, opacity 0.75s ease;
			transition: transform 0.75s ease, opacity 0.75s ease;
			-moz-transition-delay: 3.5s;
			-webkit-transition-delay: 3.5s;
			-ms-transition-delay: 3.5s;
			transition-delay: 3.5s;
			-moz-transform: translateY(0);
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
			border: none;
			bottom: 0;
			color: inherit;
			font-size: 1.5em;
			height: 8.5em;
			left: 50%;
			letter-spacing: 0.225em;
			margin-left: -8.5em;
			opacity: 1;
			outline: 0;
			padding-left: 0.225em;
			position: absolute;
			text-align: center;
			text-transform: uppercase;
			width: 16em;
			z-index: 1;
		}

			#banner .more:after {
				background-image: url("images/arrow.svg");
				background-position: center;
				background-repeat: no-repeat;
				background-size: contain;
				bottom: 4em;
				content: '';
				display: block;
				height: 2.5em;
				left: 50%;
				margin: 0 0 0 -0.75em;
				position: absolute;
				width: 1.5em;
			}

		#banner:after {
			pointer-events: none;
			-moz-transition: opacity 3s ease-in-out;
			-webkit-transition: opacity 3s ease-in-out;
			-ms-transition: opacity 3s ease-in-out;
			transition: opacity 3s ease-in-out;
			-moz-transition-delay: 1.25s;
			-webkit-transition-delay: 1.25s;
			-ms-transition-delay: 1.25s;
			transition-delay: 1.25s;
			content: '';
			background: #2e3842;
			display: block;
			width: 100%;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
			opacity: 0;
		}

		@media screen and (max-width: 736px) {

			#banner {
				padding: 7em 3em 5em 3em ;
				height: auto;
				min-height: 0;
					
			}

				#banner h2 {
					font-size: 2.0em;
				}

				#banner br {
					display: none;
				}

				#banner .more {
					display: none;
				}

		}

	body.is-preload #banner h2 {
		-moz-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		-ms-transform: scale(0.95);
		transform: scale(0.95);
		opacity: 0;
	}

		body.is-preload #banner h2:before, body.is-preload #banner h2:after {
			width: 0;
		}

	body.is-preload #banner .more {
		-moz-transform: translateY(8.5em);
		-webkit-transform: translateY(8.5em);
		-ms-transform: translateY(8.5em);
		transform: translateY(8.5em);
		opacity: 0;
	}

	body.is-preload #banner:after {
		opacity: 1;
	}

/* CTA */

	#cta .inner {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		max-width: 45em;
	}

		#cta .inner header {
			-moz-order: 1;
			-webkit-order: 1;
			-ms-order: 1;
			order: 1;
			padding-right: 3em;
			width: 70%;
		}

			#cta .inner header p {
				color: inherit;
			}

		#cta .inner .actions {
			-moz-order: 2;
			-webkit-order: 2;
			-ms-order: 2;
			order: 2;
			width: 30%;
		}

		@media screen and (max-width: 980px) {

			#cta .inner {
				display: block;
				text-align: center;
			}

				#cta .inner header {
					padding-right: 0;
					width: 100%;
				}

				#cta .inner .actions {
					margin-left: auto;
					margin-right: auto;
					max-width: 20em;
					width: 100%;
				}

		}

		@media screen and (max-width: 736px) {

			#cta .inner .actions {
				max-width: none;
			}

		}


	body.is-mobile #main > header {
		background-attachment: scroll;
	}html,
body,
.view {
  height: 100%; }

/* Full Page Carousel itself*/
.carousel {
  height: 100%; }
  .carousel .carousel-inner {
    height: 100%; }
    .carousel .carousel-inner .carousel-item,
    .carousel .carousel-inner .active {
      height: 100%; }

/* Navbar animation */
.navbar {
  background-color: rgba(0, 0, 0, 0.2); }

.top-nav-collapse {
  background-color: rgba(67,67,67,0.98); }

/* Adding color to the Navbar on mobile */
@media only screen and (max-width: 768px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.7);
	} }
.top-nav-collapse {
  background-color: rgba(67,67,67,0.98); }
/* Footer color for sake of consistency with Navbar */
.page-footer {
  background-color: rgba(67,67,67,0.98); }


@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,800,800italic");
.responsive {
 
  max-width: 1200px;
  height: auto;
	display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
	
}	


/*
	Spectral by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
* Footer */

	#footer {
		padding: 6em 0 4em 0 ;
		background-color: #1d242a;
		text-align: center;
	}

		#footer .icons {
			font-size: 1.25em;
		}

			#footer .icons a {
				color: rgba(255, 255, 255, 0.5);
			}

				#footer .icons a:hover {
					color: #fff;
				}

		#footer .copyright {
			color: rgba(255, 255, 255, 0.5);
			font-size: 0.8em;
			letter-spacing: 0.225em;
			list-style: none;
			padding: 0;
			text-transform: uppercase;
		}

			#footer .copyright li {
				border-left: solid 1px rgba(255, 255, 255, 0.5);
				display: inline-block;
				line-height: 1em;
				margin-left: 1em;
				padding-left: 1em;
			}

				#footer .copyright li:first-child {
					border-left: 0;
					margin-left: 0;
					padding-left: 0;
				}

				#footer .copyright li a {
					color: inherit;
				}

					#footer .copyright li a:hover {
						color: #fff;
					}

				@media screen and (max-width: 480px) {

					#footer .copyright li {
						border: 0;
						display: block;
						line-height: 1.65em;
						margin: 0;
						padding: 0.5em 0;
					}

				}

		@media screen and (max-width: 980px) {

			#footer {
				padding: 4em 3em 2em 3em ;
			}

		}

		@media screen and (max-width: 736px) {

			#footer {
				padding: 3em 2em 1em 2em ;
			}

		}


/* Footer */

	#footer {
		padding: 6em 0 4em 0 ;
		background-color: #1d242a;
		text-align: center;
	}

		#footer .icons {
			font-size: 1.25em;
		}

			#footer .icons a {
				color: rgba(255, 255, 255, 0.5);
			}

				#footer .icons a:hover {
					color: #fff;
				}

		#footer .copyright {
			color: rgba(255, 255, 255, 0.5);
			font-size: 0.8em;
			letter-spacing: 0.225em;
			list-style: none;
			padding: 0;
			text-transform: uppercase;
		}

			#footer .copyright li {
				border-left: solid 1px rgba(255, 255, 255, 0.5);
				display: inline-block;
				line-height: 1em;
				margin-left: 1em;
				padding-left: 1em;
			}

				#footer .copyright li:first-child {
					border-left: 0;
					margin-left: 0;
					padding-left: 0;
				}

				#footer .copyright li a {
					color: inherit;
				}

					#footer .copyright li a:hover {
						color: #fff;
					}

				@media screen and (max-width: 480px) {

					#footer .copyright li {
						border: 0;
						display: block;
						line-height: 1.65em;
						margin: 0;
						padding: 0.5em 0;
					}

				}

		@media screen and (max-width: 980px) {

			#footer {
				padding: 4em 3em 2em 3em ;
			}

		}

		@media screen and (max-width: 736px) {

			#footer {
				padding: 3em 2em 1em 2em ;
			}

		}
/* Major 
/* Actions */

	ul.actions {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		cursor: default;
		list-style: none;
		margin-left: -1em;
		padding-left: 0;
	}

		ul.actions li {
			padding: 0 0 0 1em;
			vertical-align: middle;
		}

		ul.actions.special {
			-moz-justify-content: center;
			-webkit-justify-content: center;
			-ms-justify-content: center;
			justify-content: center;
			width: 100%;
			margin-left: 0;
		}

			ul.actions.special li:first-child {
				padding-left: 0;
			}

		ul.actions.stacked {
			-moz-flex-direction: column;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
			margin-left: 0;
		}

			ul.actions.stacked li {
				padding: 1em 0 0 0;
			}

				ul.actions.stacked li:first-child {
					padding-top: 0;
				}

		ul.actions.fit {
			width: calc(100% + 1em);
		}

			ul.actions.fit li {
				-moz-flex-grow: 1;
				-webkit-flex-grow: 1;
				-ms-flex-grow: 1;
				flex-grow: 1;
				-moz-flex-shrink: 1;
				-webkit-flex-shrink: 1;
				-ms-flex-shrink: 1;
				flex-shrink: 1;
				width: 100%;
			}

				ul.actions.fit li > * {
					width: 100%;
				}

			ul.actions.fit.stacked {
				width: 100%;
			}

		@media screen and (max-width: 480px) {

			ul.actions:not(.fixed) {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
				margin-left: 0;
				width: 100% !important;
			}

				ul.actions:not(.fixed) li {
					-moz-flex-grow: 1;
					-webkit-flex-grow: 1;
					-ms-flex-grow: 1;
					flex-grow: 1;
					-moz-flex-shrink: 1;
					-webkit-flex-shrink: 1;
					-ms-flex-shrink: 1;
					flex-shrink: 1;
					padding: 1em 0 0 0;
					text-align: center;
					width: 100%;
				}

					ul.actions:not(.fixed) li > * {
						width: 100%;
					}

					ul.actions:not(.fixed) li:first-child {
						padding-top: 0;
					}

					ul.actions:not(.fixed) li input[type="submit"],
					ul.actions:not(.fixed) li input[type="reset"],
					ul.actions:not(.fixed) li input[type="button"],
					ul.actions:not(.fixed) li button,
					ul.actions:not(.fixed) li .button {
						width: 100%;
					}

						ul.actions:not(.fixed) li input[type="submit"].icon:before,
						ul.actions:not(.fixed) li input[type="reset"].icon:before,
						ul.actions:not(.fixed) li input[type="button"].icon:before,
						ul.actions:not(.fixed) li button.icon:before,
						ul.actions:not(.fixed) li .button.icon:before {
							margin-left: -0.5em;
						}

		}



	body.is-menu-visible #page-wrapper {
		opacity: 0.35;
	}

		body.is-menu-visible #page-wrapper:before {
			display: block;
		}

	body.is-menu-visible #menu {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

/* Header */

	
/* Banner */

	#banner {
		width: 100%;
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		cursor: default;
		height: 100vh;
		min-height: 35em;
		overflow: hidden;
		position: relative;
		text-align: center;
			
	}

		#banner h2 {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: inline-block;
    font-size: 2.625em;
    opacity: 1;
    padding: 0.35em 1em;
    position: relative;
    z-index: 1;
    color: #EEF1F4;
		}

			#banner h2:before, #banner h2:after {
				-moz-transition: width 0.85s ease;
				-webkit-transition: width 0.85s ease;
				-ms-transition: width 0.85s ease;
				transition: width 0.85s ease;
				-moz-transition-delay: 0.25s;
				-webkit-transition-delay: 0.25s;
				-ms-transition-delay: 0.25s;
				transition-delay: 0.25s;
				background: #fff;
				content: '';
				display: block;
				height: 2px;
				position: absolute;
				width: 100%;
			}

			#banner h2:before {
				top: 0;
				left: 0;
			}

			#banner h2:after {
				bottom: 0;
				right: 0;
			}

		#banner p {
    letter-spacing: 0.225em;
    text-transform: uppercase;
    color: #F2EBF5;
		}

			#banner p a {
				color: inherit;
			}

		#banner .more {
    -moz-transition: -moz-transform 0.75s ease, opacity 0.75s ease;
    -webkit-transition: -webkit-transform 0.75s ease, opacity 0.75s ease;
    -ms-transition: -ms-transform 0.75s ease, opacity 0.75s ease;
    transition: transform 0.75s ease, opacity 0.75s ease;
    -moz-transition-delay: 3.5s;
    -webkit-transition-delay: 3.5s;
    -ms-transition-delay: 3.5s;
    transition-delay: 3.5s;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    border: none;
    bottom: 0;
    color: #F5EEEE;
    font-size: 1.0em;
    height: 8.5em;
    left: 50%;
    letter-spacing: 0.225em;
    margin-left: -8.5em;
    opacity: 1;
    outline: 0;
    padding-left: 0.225em;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 16em;
    z-index: 1;
		}

			#banner .more:after {
				background-image: url("images/arrow.svg");
				background-position: center;
				background-repeat: no-repeat;
				background-size: contain;
				bottom: 4em;
				content: '';
				display: block;
				height: 2.5em;
				left: 50%;
				margin: 0 0 0 -0.75em;
				position: absolute;
				width: 1.5em;
			}

		#banner:after {
			pointer-events: none;
			-moz-transition: opacity 3s ease-in-out;
			-webkit-transition: opacity 3s ease-in-out;
			-ms-transition: opacity 3s ease-in-out;
			transition: opacity 3s ease-in-out;
			-moz-transition-delay: 1.25s;
			-webkit-transition-delay: 1.25s;
			-ms-transition-delay: 1.25s;
			transition-delay: 1.25s;
			content: '';
			background: #2e3842;
			display: block;
			width: 100%;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
			opacity: 0;
		}

		@media screen and (max-width: 736px) {

			#banner {
				padding: 7em 3em 5em 3em ;
				height: auto;
				min-height: 0;
					
			}

				#banner h2 {
					font-size: 2.0em;
				}

				#banner br {
					display: none;
				}

				#banner .more {
					display: none;
				}

		}

	body.is-preload #banner h2 {
		-moz-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		-ms-transform: scale(0.95);
		transform: scale(0.95);
		opacity: 0;
	}

		body.is-preload #banner h2:before, body.is-preload #banner h2:after {
			width: 0;
		}

	body.is-preload #banner .more {
		-moz-transform: translateY(8.5em);
		-webkit-transform: translateY(8.5em);
		-ms-transform: translateY(8.5em);
		transform: translateY(8.5em);
		opacity: 0;
	}

	body.is-preload #banner:after {
		opacity: 1;
	}

/* CTA */

	#cta .inner {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		max-width: 45em;
	}

		#cta .inner header {
			-moz-order: 1;
			-webkit-order: 1;
			-ms-order: 1;
			order: 1;
			padding-right: 3em;
			width: 70%;
		}

			#cta .inner header p {
				color: inherit;
			}

		#cta .inner .actions {
			-moz-order: 2;
			-webkit-order: 2;
			-ms-order: 2;
			order: 2;
			width: 30%;
		}

		@media screen and (max-width: 980px) {

			#cta .inner {
				display: block;
				text-align: center;
			}

				#cta .inner header {
					padding-right: 0;
					width: 100%;
				}

				#cta .inner .actions {
					margin-left: auto;
					margin-right: auto;
					max-width: 20em;
					width: 100%;
				}

		}

		@media screen and (max-width: 736px) {

			#cta .inner .actions {
				max-width: none;
			}

		}


	body.is-mobile #main > header {
		background-attachment: scroll;
	}




/* Sections Header
--------------------------------*/

.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f82249;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #f82249;
}

.section-with-bg {
  background-color: #f6f7fd;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 90px;
  padding: 25px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-fixed {
  background: rgba(6, 12, 34, 0.98);
  height: 70px;
  padding: 15px 0;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 span {
  color: #f82249;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}


#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 34, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}


#intro .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f82249;
}

#intro .about-btn:hover {
  background: #E03E4C;
  color: #fff;
}
#intro2 .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f82249;
}

#intro2 .about-btn:hover {
  background: #E03E4C;
  color: #fff;
}
#intro3 .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f82249;	
}

#intro3 .about-btn:hover {
  background: #E03E4C;
  color: #fff;
}

@-webkit-keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/





body{
	margin:0;
	font-family: 'Roboto', sans-serif; 
	background:#333;
} 
.landing.is-preload {
}
body a,input[type="submit"],.wthree_services_left1,.wolfagile_banner_btom_login_left3 a,.agile_gallery_grid_wolf img,.agile_gallery_grid_left img{
	transition:.5s ease-in;
	-webkit-transition:.5s ease-in;
	-moz-transition:.5s ease-in;
	-o-transition:.5s ease-in;
	-ms-transition:.5s ease-in;
	text-decoration:none;
}

p{
	margin:0;
}
ul,label{
	margin:0;
	padding:0;
}
body a:hover{
    text-decoration: none;
    color: #3333333;
    font-family: sans;
    font-size: 18px;
    font-style: normal;
}
.bg {
    background: #050505;
    color: #092B88;
	width: 100%
}
.index-bg {
    background: #333;
	width: 100%;
	
}
p,ul li,ol li{
    font-size: 18px;
    font-weight: bold;
    list-style-position: inside;
    
}
/*-- main --*/
.main-row {
    height: 100%;
	width: 100%;
    padding: 2em 0 0;
    /* margin: 2em auto; */
    text-align: center;
}
.frame-border {
    width: 370px;
    height: 690px;
    outline: none;
    border-color: #000;
    border-width: 50px 15px;
    border-style: solid;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin: 10px auto; 
    background-size: cover;
}
.main-row h1 {
    text-align: center;
    font-size: 3em;
	color: #fff;
    margin-bottom:0.4em;
	font-family: 'Poppins', sans-serif;
}
/*-- //main --*/ 
/*-- header --*/ 
.header-wolfls{
	background: #00000;
	padding:10px 20px;
}
button#trigger-overlay {
    background: transparent;
    border: none;
    outline: none;
    float: left;
    margin-top: 2.5px;
}
button#trigger-overlay i {
	color:#fff;
	font-size:30px;
}
.header-wolfls h1 a {
    text-decoration: none;
	    margin-top: 3px;
    color: #fff;
    font-size: 33px;
    text-transform: capitalize;
    display: inline-block;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}
.header-wolfls h1 a {
    float: right;
}
/*-- //header --*/ 
/*-- banner-text --*/ 
.header-wolflayouts{
    position: absolute;
    top: 0;
    z-index: 99;
    text-align: center;
    left: 0;
    width: 100%;
}
.eagle-banner-info h3 {
    color: rgba(255,250,250,1);
    font-size: 3.5em;
    margin: 0.01em 0 0.02em 0;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: Poppins, sans-serif;
}
.eagle-banner-info h3 span{
	    background: #2529d8;
    padding: 0 10px;
}
.eagle-banner-info {
    text-shadow: 2px 4px BLACK;
    padding:12em 0 0em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    text-align: center;
}
.eagle_wolflayouts_more{
	position:relative;
}
.eagle_wolflayouts_more a{
	    font-size: 17px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
}
/*-- //banner-text --*/
/*-- banner-top --*/
.wolflayouts-banner-top{
    background: url("../caf/blue.jpg") no-repeat 0px 0px;
}
.wolflayouts-banner-top1{
	background: url(../images/banner1.jpg) no-repeat 0px 0px;
}
.wolflayouts-banner-top2{
	background: url(../images/banner2.jpg) no-repeat 0px 0px;
}
.wolflayouts-banner-top3{
	background: url("../images/banner25.jpg") no-repeat 0px 0px;
}
.wolflayouts-banner-top4{
	background: url(../images/banner7.jpg) no-repeat 0px 0px;
}
.wolflayouts-banner-top5{
	background: url(../images/banner6.jpg) no-repeat 0px 0px;
}
.wolflayouts-banner-top6{
	background: url(../images/banner8.jpg) no-repeat 0px 0px;
}
.wolflayouts-banner-top7{
	background: url("../CAF/blue.jpg") no-repeat 0px 0px;
}
.wolflayouts-banner-top,.wolflayouts-banner-top1,.wolflayouts-banner-top2,.wolflayouts-banner-top3,.wolflayouts-banner-top3,.wolflayouts-banner-top4,.wolflayouts-banner-top4,.wolflayouts-banner-top5,.wolflayouts-banner-top6,.wolflayouts-banner-top7{
	 background-size: cover;	
	-webkit-background-size: cover;	
	-moz-background-size: cover;
	-o-background-size: cover;		
	-moz-background-size: cover;	
	min-height:550px;
}
/*-- //banner-top --*/ 
/*--slider--*/
#slider2,
#slider3 {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin: 0 auto;
}
.rslides_tabs li:first-child {
  margin-left: 0;
}
.rslides_tabs .rslides_here a {
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: bold;
}
.events {
  list-style: none;
}
.callbacks_container {
  position: relative;
  float: left;
  width: 100%;
}
.callbacks {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.callbacks li {
  position: absolute;
  width: 100%;
}
.callbacks img {
  position: relative;
  z-index: 1;
  height: auto;
  border: 0;
}
.callbacks .caption {
	display: block;
	position: absolute;
	z-index: 2;
	font-size: 20px;
	text-shadow: none;
	color: #fff;
	left: 0;
	right: 0;
	padding: 10px 20px;
	margin: 0;
	max-width: none;
	top: 10%;
	text-align: center;
}

.callbacks_nav {
    position: absolute;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    top:55%;
    left: 40px;
    opacity: 0.7;
    z-index: 3;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none;
    height: 34px;
    width: 34px;
    background: url(../images/left.png) no-repeat 0px 0px;
}
.callbacks_nav.next {
    left: auto;
    background: url(../images/arrows.png) no-repeat -35px 0px;
    right: 0px;
}
.callbacks_nav.prev {
    left: auto;
    background: url(../images/arrows.png) no-repeat 0px 0px;
    left: 0px;
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display:none;
  width: 100%;
  left: 0;
  top: 0;
}
.rslides li{
  position: relative;
  display:block;
  float: left;
}
.rslides img {
  height: auto;
  border: 0;
  }
.callbacks_tabs {
    list-style: none;
    position: absolute;
    top: 85%;
    left: 13.5%;
    padding: 0;
    margin: 0;
    display: block;
    z-index: 99;
}
.slider-top span{
	font-weight:600;
}
.callbacks_tabs li {
    display:inline-block;
    margin: 0px 5px;
}
/*----*/
.callbacks_tabs a{
 visibility: hidden;
}
.callbacks_tabs a:after {
    content: "\f111";
    font-size: 0;
    font-family: FontAwesome;
    visibility: visible;
    display: block;
    height: 12px;
    width: 12px;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
}
.callbacks_here a:after{
	background:#33cc99;
    border:1px solid #33cc99;
    height:2px;
    width:40px;
    border-radius: 0;
}
/*-- //slider --*/

/*-- banner-bottom --*/

@keyframes rippling {
	50% {
		border-left-color: #fff;
	}
	100% {
		border-bottom-color: #fff;
		border-left-color: #fff;
	}
} 
/*-- //checkbox --*/ 
.wthree-text {
    margin-top: 0.5em;
}
.wthree-text ul li {
    display: inline-block;
    float: left;
}
.wthree-text ul li:nth-child(2) {
    float: right;
}
.wthree-text ul li a {
    font-size: 1em;
    color: #fff;
	letter-spacing: 0.5px;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.wthree-text ul li a:hover {
    text-decoration: underline;
}
.wolfls-submit {
    text-align: center;
    margin-top: 2.5em;
} 
.eagle-login input[type="submit"] {
    font-size: 1em;
    color: #fff;
    border:none;
    outline: none;
    padding: .8em 5em;
    -webkit-appearance: none;
	text-transform: uppercase;
    transition: .5s all;
    background: #3f51b5;
    display: inline-block;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.eagle-login input[type="submit"]:hover {
    background:#fe4630;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
} 
.modal-header {
    border-bottom: none;
	background:#041B2A;
}
/*--//login-register--*/
/*--Options--*/
.options-wthree,.who-we-wolfls,.stats,.gallery,.contact,.locations-wolf-eagle,.blog,.appointment,.services-wolf-eagle,.projects,.wolfls_popular_posts,.agileinfo_footer_bottom{
	padding:4em 1em ;
}
.options-wthree ul li {
    text-align: center;
    padding: 3em 0em;
    list-style: none;
    background: #000;
    display: inline-block;
	margin-bottom:10px;
    width: 49.5%;
    float: left;
	transition:.5s ease-in;
	-webkit-transition:.5s ease-in;
	-moz-transition:.5s ease-in;
	-o-transition:.5s ease-in;
	-ms-transition:.5s ease-in;
}
.options-wthree ul li:nth-child(1),.options-wthree ul li:nth-child(3),.options-wthree ul li:nth-child(5), .options-wthree ul li:nth-child(7),.options-wthree ul li:nth-child(9),.options-wthree ul li:nth-child(11),.options-wthree ul li:nth-child(13),.options-wthree ul li:nth-child(15){
	margin-right:10px;
}
.options-wthree ul li:nth-child(5),.options-wthree ul li:nth-child(6).options-wthree ul li:nth-child(7){
	margin-bottom:0px;
}




a.opt-grids {
    text-decoration: none;
}
.options-wthree ul li:hover {
	background: #3f51b5;
	transition:.5s ease-in;
	-webkit-transition:.5s ease-in;
	-moz-transition:.5s ease-in;
	-o-transition:.5s ease-in;
	-ms-transition:.5s ease-in;
}
.options-wthree ul li:hover .icon-eagle-wolflayouts i {
	color: #fff;
	transition:.5s ease-in;
	-webkit-transition:.5s ease-in;
	-moz-transition:.5s ease-in;
	-o-transition:.5s ease-in;
	-ms-transition:.5s ease-in;
}
.options-wthree ul li:hover .opt-text-wolflayouts h6 {
	color: #fff;
	transition:.5s ease-in;
	-webkit-transition:.5s ease-in;
	-moz-transition:.5s ease-in;
	-o-transition:.5s ease-in;
	-ms-transition:.5s ease-in;
}
.icon-eagle-wolflayouts i {
    color: #fe4630;
    font-size: 35px;
	transition:.5s ease-in;
	-webkit-transition:.5s ease-in;
	-moz-transition:.5s ease-in;
	-o-transition:.5s ease-in;
	-ms-transition:.5s ease-in;
}
.opt-text-wolflayouts h6 {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding-top: 10px;
    transition: .5s ease-in;
    -webkit-transition: .5s ease-in;
    -moz-transition: .5s ease-in;
    -o-transition: .5s ease-in;
    -ms-transition: .5s ease-in;
}
/*--//Options--*/
/*--about-inner--*/
.inner-banner-eagle-wolflayouts{
	background: url(../images/blue.jpg) no-repeat 0px 0px;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 250px;
}

.inner-banner-eagle-wolflayouts2{
	background: url(../images/banner6.jpg) no-repeat 0px 0px;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 250px;
}



h5.subtittle-wolflayouts {
    color: #3f51b5;
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 28px;
	margin-bottom:1em;
}
h7.tittle-wolflayouts {
    color: #FBF3F3;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    margin-bottom: -1.5em;
	margin-top: 0.5em;
    text-align: left;
    font-family: Poppins, sans-serif;
}

p.para-wthree {
    font-size: 14px;
    letter-spacing: 1px;
    color: #777;
    line-height: 27px;
}

h4.tittle-wolflayouts {
    color: #FBF3F3;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    margin-bottom: .5em;
    margin-top: 0.5em;
    text-align: left;
    font-family: Poppins, sans-serif;
    font-weight: 500;
}
h4.white{
	color:#fff!important;
}
h4.tittle-wolflayouts:before {
    content: "";
    width: 61px;
    height: 3px;
    background: #fe4630;
    display: block;
    bottom: -10px;
    left: 0px;
    position: absolute;
}
h7.tittle-wolflayouts:before {
    content: "";
    width: 61px;
    height: 3px;
    background: #fe4630;
    display: block;
    bottom: -10px;
    left: 0px;
    position: absolute;
}


/*--inner-services--*/
h4.tittle-wolflayouts2 {
    color: #FBF3F3;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    margin-bottom: .7em;
    margin-top: 0;
    text-align: left;
    font-family: Poppins, sans-serif;
    font-weight: 500;
}
h4.white{
	color:#fff!important;
}
h4.tittle-wolflayouts2:before {
    content: "";
    width: 61px;
    height: 3px;
    background: #fe4630;
    display: block;
    bottom: -3px;
    left: 0px;
    position: absolute;
}
h7.tittle-wolflayouts2:before {
    content: "";
    width: 61px;
    height: 3px;
    background: #fe4630;
    display: block;
    bottom: -3px;
    left: 0px;
    position: absolute;
}






/*--social icons--*/
/* Brand Colours */
.facebook{
    background: #3f51b5;
}
.twitter{
    background: #5C5B5B;
}
.google-plus{
	background:#f2b532;
}
.rss{
	background:#dd4b39;
}
.social-icon-wolf-agile {
    width: 25%;
    float: left;
    text-align: center;
    padding: 2.5em 0;
}
.social-icon-wolf-agile i {
    color: #fff;
    font-size: 45px;
}
/*social icons*/
/*-- footer --*/

.social-nav {
    padding: 0;
    list-style: none;
    display: inline-block;
    margin:2em 0 0;
}
.facebook .back .fa.fa-facebook {
}
.social-nav li {
    display: inline-block;
}
.social-nav a {
    display: inline-block;
    float: none;
    width: 30px;
    height: 30px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    background: #000;
    position: relative;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.model-3d-0 a {
    background:#5C5B5B;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.model-3d-0 .front, .model-3d-0 .back {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -1px;
    left: 0;
    -webkit-transform: translateZ(18px);
    -moz-transform: translateZ(18px);
    -ms-transform: translateZ(18px);
    -o-transform: translateZ(18px);
    transform: translateZ(18px);
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    -o-backface-visibility: visible;
    backface-visibility: visible;
    color: #212121;
    font-size: 12px;
}
.model-3d-0 .back {
    -webkit-transform: rotateX(90deg) translateZ(18px);
    -moz-transform: rotateX(90deg) translateZ(18px);
    -ms-transform: rotateX(90deg) translateZ(18px);
    -o-transform: rotateX(90deg) translateZ(18px);
    transform: rotateX(90deg) translateZ(18px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}
a.twitter .front {
    background: #00acee;
}
a.facebook .front {
    background: #3b5998;
}
a.instagram .front {
    background: #f77737;
}
a.pinterest .front {
    background: #bd081c;
}
.twitter .back,.facebook .back,.instagram .back,.pinterest .back{
    background:#fff;
}
.model-3d-0 a:hover {
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}
.model-3d-0 a:hover .back {
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    -o-backface-visibility: visible;
    backface-visibility: visible;
}
.wolf_agile_social .front i{
	color: #fff;
    font-size: 12px;
}
.wolf_agile_social .back i{
	color: #000;
    font-size: 12px;
}
/*-- //footer --*/

/*--start-responsive-design--*/
@media(max-width:991px){
	.bnr-btm-info {
		padding-left: 10px;
	}
	.eagle-banner-info h3 {
		font-size: 2.5em;
		letter-spacing: 7px;
	}
	.options-wthree ul li {
		width: 49.3%;
	}
	.callbacks_tabs {
		left: 13%;
	}
	.agileinfo_footer_bottom_grid {
		padding-right: 0;
		margin-bottom: 2em;
	}
	.agileinfo_footer_bottom_grid:nth-child(4){
		margin-bottom: 0em!important;
	}
	.social-nav {
		margin: 1em 0 0;
	}
	.flickr-grid {
		width: 15%;
	}
	.inner-banner-eagle-wolflayouts {
		min-height: 155px;
	}
	.who-left-eagle {
		width: 100%;
		float: none;
	}
	.left-img-wolf {
		min-height: 328px;
		width: 35%;
		float: none;
	}
	.wolfagile_footer_grid {
		margin-top: 2em;
	}
	.who-right-eagle {
		width: 100%;
		float: none;
		padding: 2em 0 0 0em;
	}
	.wolflayouts_stats_left {
		width: 50%;
		margin-bottom: 3em;
		float: left;
	}
	.wolflayouts_stats_left:nth-child(3),.wolflayouts_stats_left:nth-child(4) {
		margin-bottom: 0em;
	}
	.choose_icon:nth-child(2), .choose_icon:nth-child(3) {
		margin-bottom: 3em;
	}
	.ban-text {
		padding: 0;
		background: #333;
		width: 100%;
		float: none;
	}
	.banner-slider {
		padding: 0;
		width: 100%;
		float: none;
	}
	.blog-img, .blog-img1, .blog-img2, .blog-img3 {
		min-height: 395px;
	}
	.callbacks_nav {
		top: 41%;
	}
	
@media(max-width:900px){
	.header-wolfls h1 a {
		font-size: 29px;
	}
	.wolflayouts-banner-top, .wolflayouts-banner-top1, .wolflayouts-banner-top2, .wolflayouts-banner-top3 {
		min-height: 350px;
	}
	.eagle-banner-info {
		padding: 10.5em 0 0em;
	}
	.eagle-banner-info h3 {
		font-size: 2.3em;
		letter-spacing: 5px;
	}
	.callbacks_tabs {
		left: 9%;
	}
	.banner-bottom {
		padding: 2em 6em;
	}
	.options-wthree, .who-we-wolfls, .stats, .gallery, .contact, .locations-wolf-eagle, .blog, .appointment, .services-wolf-eagle,.projects ,.wolfls_popular_posts,.agileinfo_footer_bottom{
		padding: 3em 0em;
	}
	.options-wthree ul li {
		padding: 2.3em 0em;
	}
	.blog-info-wolflayouts {
		padding: 3.5em 2em 2em;
	}
	.social-icon-wolf-agile i {
		font-size: 35px;
	}
	
@media(max-width:800px){
	.banner-bottom {
		padding: 2em 2.5em;
	}
	.callbacks_tabs {
		left: 3%;
	}
	.icon-eagle-wolflayouts i {
		font-size: 30px;
	}
	.agileinfo_footer_bottom_grid h2, .agileinfo_footer_bottom_grid h3 {
		font-size: 19px;
	}
	.wolflayouts_stats_left i {
		font-size: 2.1em;
	}
}
@media(max-width:768px){
	.bnr-btm-grids-eagle {
		width: 37%;
		float: none;
		margin: 0 auto 1.5em;
	}
	.bnr-btm-grids-eagle:nth-child(3) {
		margin-bottom: 0!important;
	}
	.bnr-btm-icon {
		float: left;
		width: 30px;
	}
	.agileinfo_footer_bottom_grid h2, .agileinfo_footer_bottom_grid h3 {
		font-size: 18px;
	}
	.blog-info-wolflayouts h6 {
		font-size: 18px;
	}
	.inner-info h3 {
		font-size: 14px;
	}
	.social-icon-wolf-agile i {
		font-size: 30px;
	}
	.social-icon-wolf-agile {
		padding: 2em 0;
	}
	h5.subtittle-wolflayouts {
		font-size: 18px;
		margin-bottom: 0.2em;
	}
	.panel-body {
		padding: 1em 2em;
	}
	.loc-left {
		padding: 28px;
	}
	h4.tittle-wolflayouts {
		font-size: 24px;
		letter-spacing: 2px;
		margin-bottom: .2em;
		align-content:center;
			
	} 
	.login-top h5 {
		font-size: 23px;
	}
	.eagle-login {
		padding: 1em 2em;
	}
	.callbacks_tabs {
		left: 1.2%;
	}
}
@media(max-width:767px){
	.modal-dialog {
		width: 90%;
		margin: 3em auto 0;
	}
	.overlay ul li a {
		font-size: 17px;
		letter-spacing: 5px;
	}
	.eagle-banner-info h3 {
		font-size: 2.2em;
	}
	.callbacks_tabs {
		left: 1%;
	}
	.wolflayouts-banner-top, .wolflayouts-banner-top1, .wolflayouts-banner-top2, .wolflayouts-banner-top3 {
		min-height: 250px;
	}
	.eagle-banner-info {
		padding: 7em 0 0em;
	}
	.callbacks_here a:after {
		width: 33px;
	}
	.wolfgallery-grids {
		padding-top: 0;
	}
	.wolfgallery-grids:nth-child(9) {
		padding-top: 1em;
	}
	[class^='imghvr-'] .agile-figcaption, [class*=' imghvr-'] .agile-figcaption {
		padding: 4.5em 3.5em;
	}
	.services-grids i {
		font-size: 40px;
	}
	.services-grids h4 {
		font-size: 18px;
	}
}
@media(max-width:736px){
	.bnr-btm-grids-eagle {
		width: 40%;
	}
	.options-wthree ul li {
		width: 49.2%;
	}
	h4.tittle-wolflayouts {
		font-size: 22px;
	}
	h4.tittle-wolflayouts:before {
		bottom: -8px;
	}
	.who-right2-eagle {
		padding: 0em 1.5em;
	}
	.wolflayouts_stats_left p {
		font-size: 1.7em;
	}
	.eagle_popular_posts_grid {
		width: 47%;
	}
	.eagle_recent_posts_gridr h4 a, .wolfls_popular_posts h4 a {
		font-size: 14px;
	}
	.eagle_popular_posts_grid h5 {
		font-size: 14px;
	}
	.callbacks_tabs {
		top: 82%;
	}
	.overlay ul li a {
		font-size: 17px;
		letter-spacing: 5px;
	}
	.opinion h3 {
		margin: 0 0 0.5em 0;
	}
}
@media(max-width:667px){
	.bnr-btm-info h3 {
		font-size: 15px;
	}
	.bnr-btm-info p {
		font-size: 14px;
	}
	.bnr-btm-info p a {
		font-size: 14px;
	}
	.header-wolfls h1 a {
		font-size: 27px;
		margin-top: 5px;
	}
	.icon-eagle-wolflayouts i {
		font-size: 25px;
	}
	.opt-text-wolflayouts h6 {
		font-size: 15px;
	}
	.options-wthree ul li {
		padding: 2em 0em;
	}
	.options-wthree ul li {
		width: 49.1%;
	}
	.agileinfo_footer_bottom_grid {
		margin-bottom: 1.7em;
	}
	.blog-info-wolflayouts {
		padding: 2em;
	}
	.blog-img1-eagle-wolflayouts, .blog-img2-eagle-wolflayouts, .blog-img3-eagle-wolflayouts, .blog-img4-eagle-wolflayouts {
		min-height: 273px;
	}
	.left-img-wolf {
		width: 50%;
	}
	.panel-group {
		width: 100%;
		float: none;
	}
	.who-right2-eagle {
		padding: 0 15px;
		margin-top: 1em;
		width: 100%;
		float: none;
	}
	.panel-title {
		font-size: 14px;
	}
	.collapsed span {
		font-size: 20px;
		top: 0px;
	}
	.panel-body {
		font-size: 13px;
	}
	h5.subtittle-wolflayouts {
		font-size: 16px;
	}
	p.para-wthree {
		font-size: 13px;
	}
	.wolflayouts_stats_left p {
		font-size: 1.5em;
	}
	.choose_left i {
		font-size: 31px;
		padding-top: 15px;
	}
	[class^='imghvr-'] .agile-figcaption, [class*=' imghvr-'] .agile-figcaption {
		padding: 3.8em 3em;
	}
	.loc-left h4 {
		font-size: 16px;
	}
	.loc-left p {
		font-size: 14px;
	}
	.loc-left {
		padding: 25px;
	}
	.loc-right iframe {
		height: 207px;
	}
	.location-eagle {
		padding: 15px 0;
	}
	.social-icon-wolf-agile i {
		font-size: 24px;
	}
	.services-grids p {
		font-size: 13px;
	}
	.services-grids h4 {
		font-size: 17px;
	}
	.services-grids {
		padding: 35px 25px 30px;
	}
	.form-eagle h3 {
		font-size: 18px;
	}
	.form-eagle p {
		font-size: 13px;
		letter-spacing: 2px;
	}
	.timings-wolfls h5 {
		font-size: 18px;
	}
	.wolfls-location a {
		margin: 74px 0px 0 241px;
		font-size: 15px;
		letter-spacing: 2px;
	}
	.Categories h3 {
		font-size: 18px;
	}
	.blog-info-wolflayouts h6 {
		font-size: 17px;
	}
	.inner-info h3 {
		font-size: 13px;
	}
	.choose_img h3 {
		font-size: 15px;
	}
	.response h3 {
		font-size: 18px;
		margin: 0 0 .5em 0;
	}
	.opinion h3 {
		font-size: 18px;
	}
}
@media(max-width:640px){
	.eagle-banner-info h3 {
		font-size: 2em;
	}
	[class^='imghvr-'] .agile-figcaption, [class*=' imghvr-'] .agile-figcaption {
		padding: 3.8em 2em;
	}
	.loc-left {
		width: 100%;
		float: none;
		 padding: 10px;
	}
	.loc-right {
		width: 100%;
		float: none;
	}
	.loc-right iframe {
		height: 200px;
	}
	.services-grids {
		width: 47.9%;
	}
	.appointment .timings-wolfls {
		padding: 25px 50px!important;
	}
	.wolfls-location a {
		margin: 74px 0px 0 228px;
	}
	.timings-wolfls {
		padding: 36px 50px;
	}
}
@media(max-width:600px){
	.bnr-btm-grids-eagle {
		width: 43%;
	}
	.eagle-banner-info h3 {
		font-size: 1.7em;
	}
	.wolflayouts-banner-top, .wolflayouts-banner-top1, .wolflayouts-banner-top2, .wolflayouts-banner-top3 {
		min-height: 210px;
	}
	.eagle-banner-info {
		padding: 6em 0 0em;
	}
	.header-wolfls h1 a {
		font-size: 25px;
		margin-top: 6px;
	}
	.options-wthree ul li:nth-child(1), .options-wthree ul li:nth-child(3), .options-wthree ul li:nth-child(5) {
		margin-right: 9px;
	}
	.blog-img1-eagle-wolflayouts, .blog-img2-eagle-wolflayouts, .blog-img3-eagle-wolflayouts, .blog-img4-eagle-wolflayouts {
		min-height: 298px;
	}
	.wolfagile_footer_grid_left1 {
		left: 40%;
	}
}
@media(max-width:568px){
	.bnr-btm-grids-eagle {
		width: 52%;
	}
	[class^='imghvr-'] .agile-figcaption, [class*=' imghvr-'] .agile-figcaption {
		padding: 2em 2em;
	}
	.services-grids {
		margin: 0px 5px 9px;
	}
	.services-grids h4 {
		font-size: 16px;
	}
	h4.tittle-wolflayouts {
		font-size: 20px;
	}
	.form-eagle input[type="text"], .form-eagle input[type="email"], select.form-control {
		width: 100%;
		float: none;
	}
	.wolfls-location a {
		margin: 74px 0px 0 197px;
	}
	.contact textarea {
		min-height: 7.8em;
	}
	.wolfagile_footer_grid_left1 {
		left: 38%;
	}
	.flickr-grid {
		width: 25%;
	}
}
@media(max-width:480px){
	.header-wolfls h1 a {
		font-size: 23px;
		margin-top: 7px;
	}
	.bnr-btm-grids-eagle {
		width: 66%;
	}
	.options-wthree ul li:nth-child(1), .options-wthree ul li:nth-child(3), .options-wthree ul li:nth-child(5) {
		margin-right: 7px;
	}
	.social-icon-wolf-agile i {
		font-size: 20px;
	}
	.social-icon-wolf-agile {
		padding: 1.2em 0;
	}
	.blog-img1-eagle-wolflayouts, .blog-img2-eagle-wolflayouts, .blog-img3-eagle-wolflayouts, .blog-img4-eagle-wolflayouts {
		width: 100%;
		min-height: 300px;
		float: none;
	}
	.blog-info-wolflayouts {
		width: 100%;
		float: none;
	}
	a.blog-more-agile {
		font-size: 11px;
		padding: 9px 23px;
	}
	.options-wthree, .who-we-wolfls, .stats, .gallery, .contact, .locations-wolf-eagle, .blog, .appointment, .services-wolf-eagle, .projects, .wolfls_popular_posts, .agileinfo_footer_bottom {
		padding: 2.5em 0em;
	}
	.blog-img, .blog-img1, .blog-img2, .blog-img3 {
		min-height: 300px;
	}
	.eagle_popular_posts_grid {
		width: 100%;
		float: none;
		margin: 0px 0px 0;
	}
	.eagle_popular_posts_grid:nth-child(3) {
		margin-top: 2em;
	}
	.wolfgallery-grids {
		padding-top: 0;
		width: 100%;
		float: none;
	}
	[class^='imghvr-'] .agile-figcaption, [class*=' imghvr-'] .agile-figcaption {
		padding: 6em 5em;
	}
	.wolfgallery-grids:nth-child(7){
		padding-bottom: 1em!important;
	}
	.services-grids {
		margin: 0px 0px 9px;
		width: 100%;
		float: none;
	}
	h4.tittle-wolflayouts {
		font-size: 19px;
		line-height: 26px;
	}
	.form-eagle {
		padding: 28px;
	}
	.wolfls-location a {
		margin: 74px 0px 0 150px;
	}
	.blog-left-bottom p {
		font-size: 14px;
	}
	.media-left.response-text-left {
		width: 21%;
		float: none;
		display: block;
	}
	.media.response-info {
		margin-top: 1.5em;
	}
	.agileinfo_footer_bottom1 p {
		font-size: 13px;
		line-height: 28px;
	}
	.agileinfo_footer_bottom1 {
		padding: 1em 0;
	}
	.blog-grid-wolf-eagle {
		margin-bottom: 0em;
	}
}
@media(max-width:414px){
	.eagle-banner-info h3 {
		font-size: 1.5em;
	}
	.callbacks_tabs {
		top: 77%;
	}
	.bottons-eagle-wolflayouts {
		float: right;
		margin: 3px 0 0 10px;
	}
	.header-wolfls h1 a {
		margin: 13px 91px 0 0;
	}
	.bnr-btm-grids-eagle {
		width: 70%;
	}
	.options-wthree ul li:nth-child(1), .options-wthree ul li:nth-child(3), .options-wthree ul li:nth-child(5) {
		margin-right: 0px;
	}
	.options-wthree ul li {
		width: 100%;
		float: none;
	}
	.options-wthree ul li,.options-wthree ul li:nth-child(5) {
		margin-bottom: 7px;
	}
	.options-wthree, .who-we-wolfls, .stats, .gallery, .contact, .locations-wolf-eagle, .blog, .appointment, .services-wolf-eagle, .projects, .wolfls_popular_posts, .agileinfo_footer_bottom {
		padding: 2em 0em;
	}
	.agileinfo_footer_bottom_grid h2, .agileinfo_footer_bottom_grid h3 {
		font-size: 17px;
	}
	.agileinfo_footer_bottom1 {
		padding: 1em 1em;
	}
	.left-img-wolf {
		width: 100%;
	}
	.wolflayouts_stats_left p {
		font-size: 1.4em;
		margin: 0.2em 0 0.1em;
	}
	.wolflayouts_stats_left {
		width: 100%;
		margin-bottom: 2em;
		float: none;
	}
	.wolflayouts_stats_left:nth-child(3){
		margin-bottom: 2em;
	}
	.eagle-login {
		padding: 0em 1em 1em;
	}
	.choose {
		padding: 3em 2.5em;
	}
	.inner-banner-eagle-wolflayouts {
		min-height: 115px;
	}
	h4.tittle-wolflayouts {
		font-size: 18px;
		letter-spacing: 1.5px;
	}
	.wolfls-location a {
		margin: 74px 0px 0 115px;
	}
	.opinion form textarea {
		min-height: 85px;
	}
	.contact-left iframe {
		min-height: 14.5em;
	}
	.wolfagile_footer_grid_left {
		width: 92%;
	}
	.wolfagile_footer_grid_left1 {
		left: 40%;
	}
	.eagle-login input[type="submit"] {
		font-size: 14px;
		padding: .6em 4em;
	}
	.header-wolfls {
		padding: 10px 20px 10px 10px;
	}
}
@media(max-width:384px){
	.header-wolfls h1 a {
		margin: 13px 83px 0 0;
	}
	.eagle-banner-info h3 {
		font-size: 1.4em;
		letter-spacing: 4px;
	}
	.wolflayouts-banner-top, .wolflayouts-banner-top1, .wolflayouts-banner-top2, .wolflayouts-banner-top3 {
		min-height: 180px;
	}
	.eagle-banner-info {
		padding: 5.5em 0 0em;
	}
	.callbacks_tabs a:after {
		height: 10px;
		width: 10px;
	}
	.callbacks_here a:after {
		height: 2px;
		width: 30px
	}
	.callbacks_tabs li {
		margin: 0px 2px;
	}
	.callbacks_tabs {
		left: 2%;
	}
	.bnr-btm-grids-eagle {
		width: 85%;
	}
	[class^='imghvr-'] .agile-figcaption, [class*=' imghvr-'] .agile-figcaption {
		padding: 4.5em 4em;
	}
	.login-top h5 {
		font-size: 21px;
	}
	.modal-dialog {
		width: 95%;
		margin: 3em auto 0;
	}
	.wolfls-location a {
		margin: 74px 0px 0 106px;
	}
	.timings-wolfls {
		padding: 30px 30px;
	}
	.wolfagile_footer_grid_left1 {
		left: 38%;
	}
	.flickr-grid {
		width: 30%;
	}
	.appointment .timings-wolfls {
		padding: 25px 30px!important;
	}
}
@media(max-width:375px){
	.header-wolfls h1 a {
		margin: 13px 78px 0 0;
	}
	.options-wthree ul li {
		padding: 1.5em 0em;
	}
	.choose_left {
		float: none;
		width: 100%;
		height: 51px;
	}
	.choose_right {
		float: none;
		width: 100%;
	}
	.choose_left i {
		padding-top: 5px;
	}
	.choose_icon:nth-child(2), .choose_icon:nth-child(3) {
		margin-bottom: 2em;
	}
	.form-eagle {
		padding: 25px;
	}
	.wolfls-location a {
		margin: 77px 0px 0 102px;
		font-size: 14px;
		padding: 8px 15px;
	}
	.options-wthree, .who-we-wolfls, .stats, .gallery, .contact, .locations-wolf-eagle, .blog, .appointment, .services-wolf-eagle, .projects, .wolfls_popular_posts, .agileinfo_footer_bottom {
		padding: 1.4em 0em;
	}
	.Categories ul li {
		margin-bottom: 0.8em;
	}
}

@media(max-width:370px){
	.eagle-banner-info h3 {
		font-size: 1.3em;
		letter-spacing: 2px;
	}
	.bnr-btm-grids-eagle {
		width: 96%;
	}
	.header-wolfls h1 a {
		margin: 13px 51px 0 0;
		font-size: 22px;
	}
	.overlay ul li a {
		font-size: 16px;
		letter-spacing: 4px;
	}
	.wolflayouts-banner-top, .wolflayouts-banner-top1, .wolflayouts-banner-top2, .wolflayouts-banner-top3 {
		min-height: 150px;
	}
	.eagle-banner-info {
		padding: 4.5em 0 0em;
	}
	.callbacks_tabs {
		top: 74%;
	}
	.social-icon-wolf-agile i {
		font-size: 17px;
	}
	.social-icon-wolf-agile {
		padding: 1em 0;
	}
	.blog-info-wolflayouts {
		padding: 2em 1em;
	}
	[class^='imghvr-'] .agile-figcaption, [class*=' imghvr-'] .agile-figcaption {
		padding: 3.2em 2em;
	}
	.services-grids i {
		font-size: 35px;
	}
	.form-eagle h3 {
		font-size: 17px;
	}
	.wolfls-location {
		min-height: 140px;
	}
	.wolfls-location a {
		margin: 56px 0px 0 79px;
	}
	.Categories ul li a {
		font-size: 14px;
	}
	.Categories h3 {
		font-size: 17px;
	}
	.single-left-left p {
		font-size: 17px;
	}
	.blog-top-left-grid {
		margin-top: 1.5em;
	}
	.media-left.response-text-left a img {
		width: 149%;
	}
	.contact-left, .contact-right {
		padding: 0 0px;
	}
	.wolfagile_footer_grid_left {
		width: 100%;
	}
	.wolfagile_footer_grid_left1 {
		left: 37%;
	}
}
@media(max-width:320px){
	.eagle-banner-info h3 {
		font-size: 1.3em;
		letter-spacing: 2px;
	}
	.bnr-btm-grids-eagle {
		width: 96%;
	}
	.header-wolfls h1 a {
		margin: 13px 51px 0 0;
		font-size: 22px;
	}
	.overlay ul li a {
		font-size: 16px;
		letter-spacing: 4px;
	}
	.wolflayouts-banner-top, .wolflayouts-banner-top1, .wolflayouts-banner-top2, .wolflayouts-banner-top3 {
		min-height: 150px;
	}
	.eagle-banner-info {
		padding: 4.5em 0 0em;
	}
	.callbacks_tabs {
		top: 74%;
	}
	.social-icon-wolf-agile i {
		font-size: 17px;
	}
	.social-icon-wolf-agile {
		padding: 1em 0;
	}
	.blog-info-wolflayouts {
		padding: 2em 1em;
	}
	[class^='imghvr-'] .agile-figcaption, [class*=' imghvr-'] .agile-figcaption {
		padding: 3.2em 2em;
	}
	.services-grids i {
		font-size: 35px;
	}
	.form-eagle h3 {
		font-size: 17px;
	}
	.wolfls-location {
		min-height: 140px;
	}
	.wolfls-location a {
		margin: 56px 0px 0 79px;
	}
	.Categories ul li a {
		font-size: 14px;
	}
	.Categories h3 {
		font-size: 17px;
	}
	.single-left-left p {
		font-size: 17px;
	}
	.blog-top-left-grid {
		margin-top: 1.5em;
	}
	.media-left.response-text-left a img {
		width: 149%;
	}
	.contact-left, .contact-right {
		padding: 0 0px;
	}
	.wolfagile_footer_grid_left {
		width: 100%;
	}
	.wolfagile_footer_grid_left1 {
		left: 37%;
	}
}
/*--//responsive-design--*/



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/





.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f82249;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #f82249;
}

.section-with-bg {

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 8px;
  text-decoration: none;
  display: inline-block;
  color: rgba(175,176,177,0.80);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

.nav-menu .menu-active a,
.nav-menu a:hover {
  color: #fff;
}

.nav-menu > li {
  margin-left: 8px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f82249;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .menu-active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu li.buy-tickets a {
  color: #fff;
  background: #f82249;
  padding: 7px 22px;
  border-radius: 50px;
  border: 2px solid #f82249;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  margin-left: 8px;
  margin-top: 2px;
  line-height: 1;
  font-size: 13px;
}

.nav-menu li.buy-tickets a:hover {
  background: none;
}

.nav-menu li.buy-tickets:hover a:before,
.nav-menu li.buy-tickets.menu-active a:before {
  visibility: hidden;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
  border-radius: 3px;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #2f3138;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
  border-radius: 3px;
}

.nav-menu ul li:hover > a {
  background: #f82249;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 15px 15px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 34, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 17px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #f82249;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #f82249;
}

#mobile-nav ul .menu-item-active {
  color: #f82249;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(6, 12, 34, 0.8);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}



/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/

#subscribe {
  padding: 60px;
  background: url(../img/subscribe-bg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#subscribe:before {
  content: "";
  background: rgba(6, 12, 34, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#subscribe .section-header h2,
#subscribe p {
  color: #fff;
}

#subscribe input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
}

#subscribe button {
  border: 0;
  padding: 9px 25px;
  cursor: pointer;
  background: #f82249;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  font-size: 14px;
  border-radius: 50px;
}

#subscribe button:hover {
  background: #e0072f;
}


/*--------------------------------------------------------------
# Contact Section

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 767px) {
  #subscribe input {
    min-width: 400px;
  }
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}

@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;
  }

  #about {
    background-attachment: fixed;
  }

  #subscribe {
    background-attachment: fixed;
  }
}

@media (max-width: 1199px) {
  #header .container {
    max-width: 100%;
  }

  .nav-menu a {
    padding: 8px 4px;
  }
}

@media (max-width: 991px) {
  #header {
    background: rgba(0, 0, 0, 0.5);
    height: 70px;
    padding: 15px 0;
    transition: all 0.5s;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }

  #intro .intro-container {
    top: 70px;
  }

  #intro h1 {
    font-size: 34px;
  }

  #intro p {
    font-size: 16px;
  }

  #schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #faq #faq-list a {
    font-size: 18px;
  }

  #faq #faq-list i {
    top: 13px;
  }
}

@media (max-width: 767px) {
  #schedule .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 574px) {
  #venue .venue-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

@media (max-width: 460px) {
  #subscribe button {
    margin-top: 10px;
  }
}

.wolfls-text {
	
}

.videoTitle {
    font-size: 14px;	
}

.panel-heading {
    padding:10px 30px;
}






/* Typography
***********************************************
*/





/* Sections
**********************************************
*/

/* Clearfix 
********************************************
*/
.clearfix {
  content: "";
  display: table;
  clear: both;
}


