@font-face {
    font-family: 'Trajan Pro';
    src: url('../fonts/TrajanPro-Bold.woff2') format('woff2'),
         url('../fonts/TrajanPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro';
    src: url('../fonts/TrajanPro-Regular.woff2') format('woff2'),
         url('../fonts/TrajanPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, html {
	overflow-x:hidden;
}

body {
    background-color: rgba(193,193,191);
    font-family: 'Trajan Pro';
    font-size: 12px;
	font-weight: 300;
	font-style: normal;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
}

.logo {
	position: absolute;
  	top: -10px;
  	bottom: 20px;
  	left: 0;
  	right: 0;
  	margin: auto;
	-webkit-box-shadow: 0 3px 3px 3px rgba(0, 0, 0, .3);
  	-moz-box-shadow: 0 3px 3px 3px rgba(0, 0, 0, .3);
  	-ms-box-shadow: 0 3px 3px 3px rgba(0, 0, 0, .3);
  	box-shadow: 0 3px 3px 3px rgba(0, 0, 0, .3);
}

h2 {
	text-align: center;
    font-family: 'Cinzel', serif;
	font-style:italic;
	font-size: 22px;
}

h3 {
	text-align: center;
    font: normal 100% 'Trajan Pro', serif;
	font-style: normal;
	font-size: 18px;
}s

* {
  	-webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
	border-radius: 0 !important;
}


 #top-nav {
	 flex-basis: 100%;
	 margin-top: 400px;
}

br.responsive {
    display: none;
}


/* MENU POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*.nav-wrap { width:100%;
	background: none;
	margin: -0px px 0 0px;
	margin-left:200px;
	padding: 0px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}*/

ul.menu {
	font-family: 'Trajan Pro';
    font-weight: bold;
    font-style: normal;
	font-size:20px;
	text-align:center;
	/*border-top: 1px solid #9e89b8;
	border-bottom: 1px solid #9e89b8;*/
	margin-top:70px;
}

ul.menu li {
	display: inline-block;
	margin-top:0px;
	margin-left:0px;
	margin-bottom:0px;

}

ul.menu a {
	margin: 5px;
	text-decoration: none;
	color: rgba(255, 255, 255);
}

ul.menu a:hover {
	color: rgba(255, 255, 255);
	border-bottom: 2px solid #42d1b4;
	-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	-moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	-ms-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
}

ul.menu .active > a,
ul.menu .active > a:hover,
ul.menu .active > a:focus {
   	color: rgba(255, 255, 255);
	border-bottom: 2px solid #F63;
	-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	-moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	-ms-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	cursor: none;
}
/* END OF MENU POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* CONTACT FORM POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.contact{
	margin:450px;
	margin-top:40px;
    width:1000px;
	height:660px;
    padding:2em;
    background-color:#fff;
	border: 1px solid #375A5F;
	border-radius: 8px !important;
	-webkit-box-shadow: 6px 6px 15px -5px rgba(0,0,0,0.4);
	box-shadow: 6px 6px 15px -5px rgba(0,0,0,0.4);
}
.form-group{
	margin-left:50px;
	margin-bottom:2.5em;
   transition:all .3s;
}
.form-label{
	margin-top:0px;
    font-size:1.25em;
    color:var(--font-color);
    position: absolute;
    /*transition: all .3s;
    transform:translateX(-0px);*/
}
.form-control{
	background-color:transparent;
	margin-bottom:50px;
	height:23px;
	font-family: "Times New Roman", Times, serif;
	font-size:19px;
	margin-left:110px;
    box-shadow:none;
    border-radius:0;
    border-color:#ccc;
    border-style:none none solid none;
    width:722px;
    font-size:1.25em;
    transition:all .6s;
}
.form-control::placeholder{
    color:#aaa;
}
.form-control:focus{
    box-shadow:none;
    border-color:var(--font-hover-color);
    outline:none;
}
/*.form-group:focus-within{
    transform:scale(1.1,1.1);
}*/

.form-control:invalid:focus{
    border-color:red;
}
.form-control:valid:focus{
    border-color:green;
}

.btn{
	margin: -20px auto;
    display: block;
  	background-color: #3f6273;
  	border-radius: 25px;
  	font-size: 20px;
  	color: #fff;
  	line-height: 1.2;
  	-webkit-transition: all 0.4s;
  	-o-transition: all 0.4s;
  	-moz-transition: all 0.4s;
  	transition: all 0.4s;
}
.btn:hover{
    background-color: #57b846;
}
textarea{
    resize:none;
}



.focused > .form-label{
    opacity:1;
    transform:translateX(0px);

}
/* END OF CONTACT FORM POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* WELCOME POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.welcome, .agileinfo-dot, .news, .w3l-about-top,
.wthree-dot, .team, .gallery, .blog, .contact-top {
	padding: 4em 0 0;
}

.w3-heading-grid {
	text-align:center;
	position:relative;
}

.w3-heading-grid h2, .w3-heading-grid h3, .agileinfo-banner h2 {
    color: #212121;
    font-size: 3em;
    margin: 0;
    font-family: 'Trajan Pro';
    text-transform: uppercase;
}

.agileits-border {/* Line Color For Under Headers*/
    background: #375A5F;
    height: 2px;
    width: 84px;
    margin: 1em auto 0;
}

.w3-heading-grid p {
    font-size: 1.4em;
    line-height: 1.8em;
    width: 100%;
    margin: 1em auto 0em;
    color: #212121;
}

.w3l-welcome-grids, .why-choose-agile-grids-top, .popular-agileinfo,
.w3-agileits-news-grids, .codes, .typography {
    margin: 4em 0 0 0;
}

.w3ls-welcome-left images {
	margin-top:30px ;
	width:100%;
}

.w3ls-welcome-right h4 {
	text-align: left;
    color: #000;
    font-size: 1.5em;
    margin: -20px 30px;
    font-family: 'Trajan Pro';
    font-weight: 600;
    line-height: 1.5em;
}

.w3ls-welcome-right p {
	text-align: left;
    color: #000;
    font-size: 1.3em;
    margin: 2em 2em;
    line-height: 1.8em;
}
.w3ls-welcome-right p span {
	font-size: 1.3em;
	font-style:italic;
	text-align: left;
	margin:.5em 0 0 0;
	display:block;
}
.w3ls-welcome-right ul {
	text-align: left;
	padding:0;
	margin:-1.9em 3em .9em;
}
.w3ls-welcome-right ul li {
    color: #000;
    font-size: 1.3em;
    display: block;
    margin: .7em 0 0 0;
}
.w3ls-welcome-right ul li:first-child {
	margin:0;
}
/* END OF WELCOME POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* WELCOME 2 POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.welcome2 {
	padding: 4em 0 0;
}

.w3-heading-grid2 {
	text-align:center;
	position:relative;
}

.w3-heading-grid2 h2, .w3-heading-grid2 h3 {
    color: #212121;
    font-size: 3em;
    margin: 0;
    font-family: 'Trajan Pro';
    text-transform: uppercase;
}

.w3-heading-grid2 p {
    font-size: 1.4em;
    line-height: 1.8em;
    width: 100%;
    margin: -1em auto 0;
    color: #212121;
}
.w3l-welcome-grids2, {
    margin: 40em 0 0 0;
}

.w3ls-welcome-left2 images {
	margin-top:110px ;
	width:100%;
}

.w3ls-welcome-right2 h4 {
	text-align: left;
    color: #000;
    font-size: 1.5em;
    margin: 60px 30px;
    font-family: 'Trajan Pro';
    font-weight: 600;
    line-height: 1.5em;
}

.w3ls-welcome-right2 p {
	text-align: left;
    color: #000;
    font-size: 1.3em;
    margin: -3em 2em;
    line-height: 1.8em;
}

.w3ls-welcome-right2 p span {
	font-size: 1.3em;
	font-style:italic;
	text-align: left;
	margin:.5em 0 0 0;
	display:block;
}

.w3ls-welcome-right2 ul {
	text-align: left;
	padding:0;
	margin:4.9em 3em .9em;
}

.w3ls-welcome-right2 ul li {
    color: #000;
    font-size: 1.3em;
    display: block;
    margin: .7em 0 0 0;
}

.w3ls-welcome-right2 ul li:first-child {
	margin:0;
}
/* END OF WELCOME 2 POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* GALLERY POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*ul.templatemo-project-gallery  li  a img:hover {
    border: 3px solid #ff7600;
}

.templatemo-gallery-category {
	margin-top:20px;
}

.templatemo-gallery-category a {
	color:#333333;
}

.templatemo-gallery-category a.active {
	color:#e67e22;
	text-decoration:none;
}

.templatemo-gallery-category a:focus {
	color:#e67e22;
	text-decoration:none;
}

.templatemo-gallery-category a:hover {
	color:#e67e22;
	text-decoration:none;
}*/

.fa.fa-search {
	font-size:2.6em;
	cursor: pointer;
	margin-top:20%;
    color: #FFF;
}

.templatemo-project-gallery {
    margin:-100px 0 0 0;
    /*margin-top:-100px;*/
}

.templatemo-project-gallery li {
    list-style:none;
	margin:40px;
    margin-bottom:-50px;
}

.templatemo-project-gallery li img {
  cursor: pointer;
}

.templatemo-project-box {
    background-size: cover;
    position: relative;
    overflow: hidden;
    cursor:pointer;
    height: 250px;
    width: 250px;
	border: 1px solid #375A5F;
	-webkit-box-shadow: 6px 6px 15px -5px rgba(0,0,0,0.4);
	box-shadow: 6px 6px 15px -5px rgba(0,0,0,0.4);
}

.templatemo-project-box:hover .project-overlay {
    transition: all 0.3s ease-in-out 0s;
    visibility: visible;
    opacity: 1;
}

.templatemo-project-box h5, h4 {
	font-family: 'Trajan Pro';
	font-size:16px;
    text-transform: uppercase;
	color: #ffffff;
}

.project-overlay {
    background : rgba(0,0,0,.5);
    /*border : 2px solid #ff7600;*/
    visibility: hidden;
    position: absolute;
    text-align:center;
    padding-top:40px;
    color: #ffffff;
    height: 100%;
    width: 100%;
    opacity: 0;
    right: 0;
    top: 0;
}

/* END OF GALLERY POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Top BANNER POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.templatemo-top-menu {
	height:310px;
	/*font-weight:600;*/
	background: url(../images/backgrounds/contact.jpg) no-repeat;
	background-position: top;
	background-size: cover;
	/*font-family: 'Trajan Pro';
    text-transform: uppercase;
    font-size: 14px;
    min-height:110px;*/
	border-bottom: 2px solid #FFF;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
  	-moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
  	-ms-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
  	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
   	z-index: 5000;
    width:100%;
}

/*.templatemo-top-menu .navbar-toggle {
    margin-top: 8px;
    background-color: rgb(255,255,255);
}*/

.templatemo-top-menu .navbar-brand {/*Logo*/
    padding: 0 10px;
    margin: 15px 0px 0 0;
}

#templatemo-nav-bar {
	margin-top:200px !important;
	margin-right:0px;
}

.nav > li > a {
    padding: 10px 10px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
	color:#89C5D1 ;
	border-bottom: 1px solid #F63;
	-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	-moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	-ms-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
  	box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .5);
}

.nav > li > a {
    color: #375A5F;
}

.navbar-default {/* Background-Color for Logo & Buttons */
    background-color: transparent;
    border:none;
}

.team_hr {
    border: 1px solid #fff;
    width: 30.1%;
    float: left;
}

.team_hr_left {
    margin-right:15px;
    margin-left: 30px;
}

.team_hr_right {
    margin-left: 15px;
}

.hr_gray {
    border: 1px solid #cccccc;
}

.templatemo-team {
    /*background: url('../images/backgrounds/background.png') ;
    min-height:390px;
	/*border-top: 4px solid rgba(0, 0, 0, .5);
	/*border-bottom: 6px solid #375A5F;
	padding-bottom:0px;*/
}

.templatemo-line-header {
    margin-top:60px;
}

.templatemo-line-header span {
	font-weight:400;
	font-family: 'Trajan Pro';
    text-transform: uppercase;
    font-size: 25px;
    float :left;
    margin-top: 5px;
}


/* END OF Top BANNER POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* FOOTER POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#footer-line {
	color:#000;
	font-size:18px;
	text-align:center;
}

.templatemo-footer {
	border-top: 4px solid #FFF;
	background: url(../images/backgrounds/stained%20canvas2.jpg) no-repeat;
  background-size: cover;
	margin-top: -400px;
}

.templatemo-footer h3 {
	margin-top:70px;
	font-family: 'Trajan Pro';
	font-weight: bold;
    font-style: normal;
	text-align: center;
    font-size: 30px;
    color: #375A5F;
    margin-bottom: 0.5em;
    font-weight: 200;
    width: 100%;
}

.templatemo-footer h4 {
	margin-top: -16px;
	margin-left:-55px;
	text-align: center;
    font-size: 14px;
    color: #000;
    width: 100%;
}

.templatemo-footer  p {
	font-family: 'Trajan Pro';
	font-weight: bold;
    font-style: normal;
	font-size: 20px;
	font-weight: 300;
    letter-spacing: 0.5px;
	text-align:center;
	color: #375A5F;
	line-height: 1em;
}
​​​​​​​​​​​​​​​
.footer_container {
	margin-top:60px;
	margin-bottom:20px;
}

.footer_bottom_content {
	margin: auto;
	margin-bottom: 30px;
	font-size: 14px;
	color: #000;
}



.myLogo {
	margin:auto;
	margin-top: -35px;
    background: url('../images/footer/MWlogo1.png') no-repeat;
    height: 20px;
	width: 271px;
    display:block;
}

a:hover .myLogo {
    background: url('../images/footer/MWlogo2.png') no-repeat;
	height: 20px;
	width: 271px;
}

.social-icon-fb {
    background: url('../images/footer/social-icon-fb.png') no-repeat;
    width: 34px;
    height: 34px;
	    display: block;
		margin-top:30px;
}

a:hover .social-icon-fb {
    background: url('../images/footer/social-icon-fb-over.png') no-repeat;
}

.social-icon-isg {
    background: url('../images/footer/social-icon-isg.png') no-repeat;
    width: 34px;
    height: 34px;
	margin-left:auto;
	margin-right:auto;
    display: block;
}

a:hover .social-icon-isg {
	background:url(../images/footer/social-icon-isg-over.png)
}

/* END OF FOOTER POSITIONING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
