﻿/*===================== 
	Color information
	
    Orange #f68d24
    blue #243c82
    grey #e2e2e2
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        font-family: 'Outfit', sans-serif;
        font-size: 40px;
        font-weight: 700;
}
	h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #000; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  


.btn-1 {
    background:#f68d24;
    box-sizing: border-box;
    display: inline-block;
    margin:20px 0;
    transition: .2s ease-in;
    outline:none;
    border:0px;
    cursor: pointer;
    padding:0px;
}
.btn-1 span {
    padding:15px;
    background:rgba(0,0,0,0.15);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    transition: .25s ease-in;
}
.btn-1 i {
    padding:15px 20px;
    font-size: 28px;
    color: #fff;
    transition: .2s ease-in;
}
.btn-1:hover {
    background:#c9721c;
}
.btn-1:hover span {
    background:rgba(0,0,0,0.0);
    padding:15px 17px 15px 13px;
}
.btn-1:hover i {
    padding:15px 16px 15px 24px;
    transition: .25s ease-in;
}


/*===================== 
	header styles 
=======================*/

.top-header {
    width:100%;
    background:#f68d24;
    position: relative;
    z-index: 3;
}
.top-header ul {
    padding:0 10px;
    margin:0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-header ul li {
    padding:14px 10px;
    margin:0;
    list-style: none;
}
.top-header ul li a {
    color:#fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: :400;
}
.top-header ul li a span {
    padding:0 0 0 5px;
}
.top-header ul li a i {
    font-size: 18px;
}
.top-header ul li a:hover {
    color:#e2e2e2;
}

.header-wrap {
	width: 100%;
	margin: 0;
    background:#fff;
    box-shadow: 0 0 15px 3px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
	}

header {
	margin: 0 auto;
	max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
	}
.head-logo-1 {
    padding:20px;
}
.head-logo-1 img {
	max-width: 330px;
    width:100%;
	height: auto;
	display: block;
}



/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}

nav.primary {
	padding:0;
	display:block;
	margin:0;
	position:relative;
	}
	nav.primary ul {
		margin:0; 
		padding:0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
            transition: .2s ease-in;
			}
			nav.primary ul li a {
                font-family: 'Roboto Condensed', sans-serif;
				color: #000;
				font-size: 18px;
				text-decoration: none;
				padding: 15px;
				display: block;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 400;
				}	
			nav.primary ul li:hover {
				background: #243c82;
				}
            nav.primary ul li:hover a {
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				padding:15px 35px 15px 15px;
				color:#fff;
				background: #243c82;
				display: block;
				text-align:left;
				border-right:none;
				border-left:none;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                background:#1A2B5F;
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: auto;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/
.wrap-hero-bg {
    background:url("../siteart/home-hero-bg.jpg") no-repeat top center;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 440px);
    min-height: 250px;
    position: relative;
    background-attachment: fixed;
    box-shadow: 0 0 15px 3px rgba(0,0,0,0.5);
    z-index: 1;
    overflow: hidden;
}
.hero-bg-overlay {
    width: 100%;
    position: absolute;
    bottom: 0px;
    background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.70) 100%);
}
.hero-bg-overlay p {
    width:100%;
    font-size: 73px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    color:#fff;
    text-shadow: 0 0 20px #000;
    text-transform: uppercase;
}
.hero-bg-overlay .container-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding:0 20px 30px 20px;
}

.hero-cearch-cont-1 {
    border:2px solid #fff;
    background:rgba(0,0,0,0.7);
    width:calc(100% - 390px);
}
.hero-cearch-cont-1 input {
    background-color:transparent;
    color: rgba(255,255,255,0.7);
    font-size: 25px;
    font-weight: 400;
    width:calc(100% - 75px);
    padding:20px;
    box-sizing: border-box;
    border:0px;
    outline: none;
    font-family: 'Roboto Condensed', sans-serif;
}
.hero-cearch-cont-1 input::placeholder {
    color:#fff;
    opacity: .7;
}
.hero-cearch-cont-1 input:focus {
    opacity: .9;
}
.hero-cearch-cont-1 button {
    color:#f68d24;
    background-color: transparent;
    outline:none;
    border:0px;
    font-size: 25px;
    padding:20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: .2s ease-in;
}
.hero-cearch-cont-1 button:hover {
   color:#fff; 
}

.btn-2 {
    box-sizing: border-box;
    display: flex;
    margin:20px 0;
    transition: .2s ease-in;
}
.btn-2 span {
    padding:20px;
    background:rgba(0,0,0,0.15);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    display: inline-block;
    transition: .25s ease-in;
    border:2px solid #fff;
}
.btn-2 i {
    background:#f68d24;
    padding:20px;
    font-size: 28px;
    color: #fff;
    transition: .2s ease-in;
    border:5px solid #f68d24;
}

.btn-2:hover span {
    background:rgba(0,0,0,0.9);
    padding:20px 24px 20px 16px;
    border:2px solid #000;
    color: rgba(255,255,255,1.0);
}
.btn-2:hover i {
    background:#000000;
    padding:20px 16px 20px 24px;
    transition: .25s ease-in;
    color:#f68d24;
    border:5px solid #000;
}


.wrap-sub-cat {
    width:100%;
    background:#e2e2e2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}
.wrap-sub-cat .container-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width:100%;
    padding: 0px 20px 40px 20px;
}

.wrap-sub-cat .container-1 a {
    width:24%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding:0 2px 40px 2px;
    box-sizing: border-box;
    position: relative;
}
.wrap-sub-cat .container-1 a:after {
    content:"";
    position: absolute;
    height: 100%;
    width:100%;
    background:#e2e2e2;
    clip-path: polygon(1% 0%,99% 0%,99% 84%,50% 98.6%,1% 84%);
    z-index: 1;
    transition: .2s ease-in;
}
.wrap-sub-cat .container-1 a:before {
    content:"";
    position: absolute;
    height: 100%;
    width:100%;
    background:#f68d24;
    clip-path: polygon(0% 45%,100% 45%,100% 85%,50% 100%,0% 85%);
    z-index: 0;
    transition: .3s ease-in;
}
.wrap-sub-cat .container-1 a img {
    max-width: 100%;
    height: auto;
    display: block;
    margin:0 auto 10px auto;
    position: relative;
    z-index: 3;
    padding:40px 20px 0 20px;
    transition: .2s ease-in;
    box-sizing: border-box;
}
.wrap-sub-cat .container-1 a p{
    text-align: center; 
    font-size: 26px;
    position: relative;
    z-index: 2;
    transition: .2s ease-in;
    color:#f68d24;
}
.wrap-sub-cat .container-1 a p span{
    font-weight: 400;
    text-transform: uppercase;
}
.wrap-sub-cat .container-1 a p i {
    padding:0 0 0 10px;
    transition: .4s ease-in;
}
.wrap-sub-cat .container-1 a:hover img {
    filter: invert(1);
}
.wrap-sub-cat .container-1 a:hover p {
    color:#fff;
}
.wrap-sub-cat .container-1 a:hover p i {
    padding:0 0 0 15px;
}
.wrap-sub-cat .container-1 a:hover:after {
    background:#f68d24;
}
.wrap-sub-cat .container-1 a:hover:before {
    clip-path: polygon(0% 0%,100% 0%,100% 85%,50% 100%,0% 85%);
}

.wrap-about {
    width:100%;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}
.about-cont-1 {
    max-width:800px;
    width:100%;
    padding:120px 80px 120px 20px;
    box-sizing: border-box;
}
.about-cont-1 .head-sml {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    padding:0;
}
.about-cont-1 h1 {
    color:#243c82;
}
.about-cont-1 p {
    padding:30px 0;
    line-height: 1.6;
}

.about-img {
    width:calc(50% - 200px);
    background:url("../siteart/about-hero-1.jpg") no-repeat left center;
    background-size: cover;
}
.wrap-finance {
    background:url("../siteart/finance-hero-1.jpg") no-repeat center;
    background-size: cover;
    width:100%;
    display: flex;
    justify-content: flex-end; 
    padding:280px 0 70px 0;
    overflow: hidden;
}
.finance-cont {
    width:calc(50% + 210px);
    background:rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
}
.finance-ico {
    background:#f68d24;
    color:#fff;
    font-size: 150px;
    width:165px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:20px;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
}
.finance-info {
    max-width: 645px;
    width:100%;
    padding:20px;
    box-sizing: border-box;
}
.finance-info p {
    text-shadow: 0 0 10px #fff;
}

.finance-info p:first-child {
    font-family: 'Roboto Condensed', sans-serif;
    color:#243c82;
    font-size:38px;
    font-weight: 400;   
}
.finance-info p:first-child span {
   font-weight: 700; 
}
.finance-info p:last-child {
    font-family: 'Outfit', sans-serif;
    color:#f68d24;
    font-size:48px;
    font-weight: 700; 
}
.finance-info p:last-child a {
    color:#f68d24;
}
.finance-info p:last-child a:hover {
    color:#000;
}


.wrap-contact {
    width:100%;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}
.contact-cont-1 {
    max-width:600px;
    width:100%;
    padding:120px 80px 120px 20px;
    box-sizing: border-box;
}
.contact-cont-1 .head-sml {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    padding:0;
}
.contact-cont-1 h1 {
    color:#243c82;
}
.contact-cont-1 h2 {
    color:#243c82;
}
.contact-cont-1 ul {
    padding:10px 0;
    margin:0;
}
.contact-cont-1 ul li {
    padding:10px 0;
    margin:0;
    list-style: none;
    font-size: 22px;
    font-weight: 500;
    font-family: 'Roboto Condensed', sans-serif;
}
.contact-cont-1 ul li a {
    color:#000;
    font-weight: 600;
}
.contact-cont-1 ul li a:hover {
    color:#f68d24;
}
.contact-cont-1 p {
    padding:30px 0;
    line-height: 1.6;
}

.contact-img {
    width:50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrap-form {
    background:#000;
    width:100%;
    display: flex;
}
.map-cont {
    width:50%;
    min-height: 400px;
}
.form-cont-1  {
    max-width: 630px;
    box-sizing: border-box;
    padding:60px 40px;
}
.form-cont-1 h2 {
    font-size: 40px;
    color: #f68d24;
}
.form-cont-1 p {
    color:#fff;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 20px;
	font-size: 20px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    border: 2px solid #fff;
    background: rgba(0,0,0,0.7);
    font-family: 'Roboto Condensed', sans-serif;
    color: rgba(255,255,255,0.9);
}
.form-info-cont input::placeholder, .form-info-cont textarea::placeholder {
    color:#fff;
    opacity: .7;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 20px;
	font-size: 20px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Roboto Condensed', sans-serif;
    border: 2px solid #fff;
    background: rgba(0,0,0,0.7);
    color: rgba(255,255,255,0.7);
}

select {
	margin:0;
	padding:0;
}
.form-inline .btn-1 {
    margin:20px auto;
    display: block;
}


.CaptchaImage {
  max-width: 100%;
}

.CaptchaMessagePanel, .CaptchaWhatsThisPanel a {color:#fff;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 




/*===================== 
	animation styles 
=======================*/


.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}
.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

.load-right {
    animation: slide-in-right 1s ease-in-out both;
}
.load-left {
    animation: slide-in-left 1s ease-in-out both;
}
.load-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
}
.load-top {
    animation: fade-in-top 1s ease-in-out both;
}



/* ----------------------------------------------
 * Generated by Animista on 2021-2-11 23:32:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1200px;
	margin: 0 auto;
	padding:40px 20px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1200px;
	margin: 0 auto;
	padding:50px 20px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
    padding:10px 0;
	width: 100%;
    background:#243c82;
	}
footer .container-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.foot-logo-1 img {
    max-width: 195px;
    width:100%;
    height: auto;
    display: block;
}
footer .container-1 ul {
    padding:20px 0;
    margin:0;
    display: flex;
    flex-wrap: wrap;
}
footer .container-1 ul li {
    padding:0 0 0 20px;
    margin:0;
    list-style: none;
}
footer .container-1 ul li a {
    font-size: 27px;
    color:#f68d24;
}
footer .container-1 ul li a:hover {
    color:#e2e2e2;
}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:490px; 
	text-align:center; 
	margin:0 auto;
	}

/*========================== 
	  Responsive styles 
============================*/


@media screen and (max-width: 1210px)  {
 
    .hero-bg-overlay p {
        font-size: 5.8vw;
    }
    .wrap-sub-cat .container-1 a p{
        font-size: 2.2vw;
    }
    .about-cont-1 {
        width:55%;
        padding: 60px 80px 60px 20px;
    }
    .about-img {
        width:45%;
    }
    .finance-cont {
        width:auto;
    }
    .contact-cont-1 {
        max-width: 450px;
    }
    .contact-img {
        width: calc(100% - 450px);
    }
    .form-cont-1  {
        max-width: 100%;
        width:50%;
    }
}


@media screen and (max-width: 920px)  {
    .head-logo-1 img {
      max-width: 230px;
    }
    nav.primary ul li a {
      font-size: 16px;
      padding: 15px;
    }
}

@media screen and (max-width: 760px)  {

    .top-header ul {
      justify-content: space-around;
    }
    .top-header ul li a span {
      display: none;
    }
    .top-header ul li a i {
      font-size: 22px;
    }
    
    header {
        flex-direction: column;
        background: #fff;
        position: relative;
        z-index: 501;
    }
    .head-logo-1 img {
      max-width: 280px;
    }
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;}
	#menu-button{ 
        display: block;
        box-sizing: border-box;
		position: relative; 
		z-index: 400; 
        padding:0 0 10px 0;
	    }
    
		#menu-button a {
            text-decoration: none;
            font-weight: normal;
            position: relative;
            height: 38px;
            width: 44px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
		  }
    #menu-button a span {
        position: relative;
        max-width:30px;
        width:100%;
        height: 3px;
        background:rgba(0,0,0,1);
        display: block;
        transition: .2s ease-in;
        border-radius: 1px;
    }
    #menu-button a span:before {
        content: "";
        left:0;
        top:-10px;
        position: absolute;
        width:100%;
        height: 3px;
        background:#000;
        display: block;
        transition: .3s ease-in;
        border-radius: 1px;
    }
    #menu-button a span:after {
        content: "";
        left:0;
        bottom:-10px;
        position: absolute;
        width:100%;
        height: 3px;
        background:#000;
        display: block;
        transition: .3s ease-in;
        border-radius: 1px;
    }
    .btnopen span {
        background:rgba(0,0,0,0)!important;
        height: 0px!important;
    }
    .btnopen span:before {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .btnopen span:after {
        transform: rotate(-45deg) translate(6px, -6px);
    }
	nav.mobile { 
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #e2e2e2;
		z-index: 500; 
		overflow:auto;
        box-shadow: 0 0 15px 3px rgba(0,0,0,0.4);
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
        font-family: 'Roboto Condensed', sans-serif;
        text-align: center;
		position: relative;
		display: block;
		font-size:18px;
		padding: 15px;
		color: #000;
		text-decoration: none;
        text-transform: uppercase;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.wrap-hero-bg {
      background: url("../siteart/home-hero-bg.jpg") no-repeat center;
      height: calc(100vh - 190px);
    }
    .hero-bg-overlay {
      background-image: linear-gradient(180deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.60) 100%);
      height: 100%;
    }
    .hero-bg-overlay .container-1 {
        height: 100%;
        padding:40px 20px;
        flex-direction: column;
    }

    .hero-bg-overlay p {
        font-size: 8vw;
        flex-grow: 2;
        padding: 30px 0;
    }
    .hero-cearch-cont-1 {
      width: 100%;
    }
    .btn-2 {
      width:100%;
    }
    .btn-2 span {
      width: 100%;
    }
    .wrap-sub-cat .container-1 a {
        width: 48%;
        margin:20px auto;
    }
    .wrap-sub-cat .container-1 a p {
      font-size: 4.2vw;
    }
    .about-cont-1 {
        width:100%;
        padding:40px 20px;
    }
    .about-img {
        display: none;
    }
    .wrap-finance {
      padding: 0;
    }
    .finance-cont {
        flex-wrap: wrap;
        width:100%;
        box-sizing: border-box;
    }
    .finance-ico {
        width:100%;  
        font-size: 50px;
        padding:0 20px;
    }
    .finance-info {
        max-width: 100%;
        width: 100%;
        padding:60px 20px;
        box-sizing: border-box;
    }
    .finance-info p:first-child {
        font-size: 36px;
        text-align: center;
    }
    .finance-info p:first-child span {
        display: block;
    }
    .finance-info p:last-child {
        font-size: 38px;
        text-align: center;
    }

    .contact-cont-1 {
        max-width: 100%;
        padding: 40px 20px;
    }
    .contact-img {
        display: none;
    }
    .wrap-form {
        flex-wrap: wrap;
    }
    .map-cont {
        width:100%;
        border-top: 40px solid #000;
    }
    .form-cont-1  {
        width:1000%;
    }
}
	

@media screen and (max-width: 500px)  {

    .hero-cearch-cont-1 input, .btn-2 span, .btn-2 i, .hero-cearch-cont-1 button, .btn-1 span, .btn-1 i {
        font-size: 16px;
    }
    .wrap-sub-cat .container-1 a {
        width: 95%;
    }
    .wrap-sub-cat .container-1 a p {
      font-size: 7vw;
    }
    .finance-info p:first-child {
        font-size: 8vw;
    }
    .finance-info p:last-child {
        font-size: 10vw;
    }
    footer .container-1 {
        flex-direction: column;
        align-items: center;
    }
}

