﻿/*===================== 
	Color information
	

    dk blue #003b7c
    blue #1a4f89
    lt blue #236AB8
    grey #e5ebf2
		 
=======================*/
/*===================== 
	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: "Mulish", sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 

.grey-bg {
    background-color:#e5ebf2;
}
.blue-bg {
    background-color:#003b7c;
}
.white-t-bg {
    background-color:rgba(255,255,255,0.8);
}
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
    font-family: "Mulish", sans-serif;
	margin: 0;
	padding: 0;
	}
	h1 {
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}
.header-blue {
    font-family: "Mulish", sans-serif;
    font-size: 50px;
    font-weight: 800;
    color:#003b7c;
}
.header-white {
    font-family: "Mulish", sans-serif;
    font-size: 50px;
    font-weight: 800;
    color:#fff;
}
.text-right {
    text-align: right;
}
.text-white {
    color:#fff!important;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		
		}  
.white-text-link {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color:#fff;
    display: inline-block;
    transition: .2s ease-in;
    line-height: 1.5;
}
.white-text-link span {
    font-weight: 700;
    position: relative;
}
.white-text-link span:after {
    position: absolute;
    content:" ";
    width: 100%;
    left:0;
    bottom:-5px;
    border-bottom:2px solid #fff;
    transition: .2s ease-in;
}
.white-text-link:hover {
    color:#e5ebf2;
}
.white-text-link:hover span:after {
    width: 150%;
    border-bottom:2px solid #e5ebf2;
}
.blue-text-link {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color:#003b7c;
    display: inline-block;
    transition: .2s ease-in;
    line-height: 1.5;
}
.blue-text-link span {
    font-weight: 700;
    position: relative;
}
.blue-text-link span:after {
    position: absolute;
    content:" ";
    width: 100%;
    left:0;
    bottom:-5px;
    border-bottom:2px solid #003b7c;
    transition: .2s ease-in;
}
.blue-text-link:hover {
    color:#236AB8;
}
.blue-text-link:hover span:after {
    width: 150%;
    border-bottom:2px solid #236AB8;
}
.blue-btn-1 {
    font-family: "Mulish", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color:#fff;
    background: #003b7c;
    transition: .2s ease-in;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding:20px;
    gap:40px;
    box-sizing: border-box;
    border: 0px;
    outline:none;
    cursor: pointer;
}
.blue-btn-1 span {
    transition: .2s ease-in;
}
.blue-btn-1 i {
    font-size: 30px;
    transition: .2s ease-in;
}
.blue-btn-1:hover {
    background: #236AB8;
}
.blue-btn-1:hover i {
    transform: translateX(-15px);
}
.blue-btn-1:hover span {
    transform: translateX(15px);
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    background:#003b7c;
	}
.home-pg .header-wrap {
    background:rgba(0,0,0,0);
    position: absolute;
    top:0;
    left:0;
    width:100%;
    z-index: 1;
	}

header {
	width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head-logo {
    padding:0px 0px 0px 40px;
}
.head-logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin:0 auto;
    filter: drop-shadow(0px 0px 8px rgba(0,0,0,0.5));
}
.head-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap:30px;
}
.head-info {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    background:#fff;
    padding:10px 30px 10px 50px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.head-info ul {
    padding:0;
    margin:0;
}
.head-info ul li {
    padding:0;
    margin:0;
    text-align: center;
    list-style: none;
}
.head-info ul li a {
    font-size:24px;
    color:#003b7c;
    transition: .2s ease-in;
}
.head-info ul li a:hover {
    color:#236AB8;
}


/*===================== 
	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 auto; 
		padding:0;
        display: flex;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: "Mulish", sans-serif;
				color: #fff;
				font-size: 16px;
				text-decoration: none;
				padding:10px 20px;
				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: 700;
                text-shadow: 0 0 10px rgba(0,0,0,1.0);
				}	
            nav.primary ul li.nav-ico-1 a {
                padding:10px 5px;
            }
            nav.primary ul li.nav-ico-1 a:hover {
                background:rgba(0,0,0,0)!important;
                color:#236AB8;
            }
			.home-pg  nav.primary ul li a:hover {
				background: #003b7c;
				text-shadow: 0 0 10px rgba(0,0,0,0.0);
				}
            .home-pg  nav.primary ul li:hover a {
				background: #003b7c;
				text-shadow: 0 0 10px rgba(0,0,0,0.0);
				}
            nav.primary ul li a:hover {
				background: #236AB8;
				text-shadow: 0 0 10px rgba(0,0,0,0.0);
				}
            nav.primary ul li:hover a {
				background: #236AB8;
				text-shadow: 0 0 10px rgba(0,0,0,0.0);
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				padding:10px 0;
				color:#fff;
				background: #236AB8;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                background:#18487E!important;
			}
/* 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: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
    width: 100%;
    max-height: 100vh;
    height: 70vw;
    min-height: 750px;
    background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.00) 23.83%), url(../siteart/hero-bg-2.jpg);
    background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.00) 23.83%), url(../siteart/hero-bg-2.jpg);
    background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.00) 23.83%), url(../siteart/hero-bg-2.jpg);
    background-image: linear-gradient(180deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.00) 23.83%), url(../siteart/hero-bg-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.hero-overlay-1 {
    width:100%;
    padding-top:90px;
}
.hero-header-1 {
    width:50%;
    min-width: 600px;
    clip-path: polygon(0% 0%, calc(100% - 60px) 0%, 100% 50%, calc(100% - 60px) 100%, 0% 100%);
    background:rgba(0,59,124,0.60);
    display: flex;
    justify-content: flex-end;
}
.hero-header-info-1 {
    max-width: 600px;
    width:100%;
    padding:80px 20px;
    box-sizing: border-box;
}
.hero-header-info-1 h1 {
    font-family: "Mulish", sans-serif;
    color:#fff;
    font-size: 44px;
    font-weight: 800;
    line-height: 45px;
    text-shadow: 0 0 10px rgba(0,0,0,1.0);
}
.hero-header-info-1 h2 {
    font-family: "Mulish", sans-serif;
    color:#fff;
    font-size: 27px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0,0,0,1.0);
    margin:20px 0 30px 0;
}
.hero-header-info-1 .white-text-link {
    text-shadow: 0 0 10px rgba(0,0,0,1.0);
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top:80px!important;
    gap:20px 0;
}
.hero-btns .blue-btn-1 {
    width:32%;
}
.wrap-content-white {
    background:#fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.left-cont-1 {
    width:50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.left-cont-info-1 {
    max-width: 600px;
    width:100%;
    padding:150px 20px;
    box-sizing: border-box;
}
.home-about-info h2, .home-about-info h1 {
    font-size: 40px;
    color:#003b7c;
    font-weight: 400;
}
.home-about-info h3 {
    font-size: 24px;
    font-weight: 400;
}
.home-about-info p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    padding:20px 0;
}
.right-cont-1 {
   max-width:calc(50% - 100px);
   clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 60px 100%, 0% 50%);
    width:100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.right-cont-info-1 {
    max-width: 500px;
    width:100%;
    padding:80px 20px 80px 80px;
    box-sizing: border-box;
}
.stat-info-1 {
    text-align: right;
    margin:20px 0;
    color:#003b7c;
}
.stat-info-1 .lg-text {
    font-size: 65px;
    font-weight: 800;
}
.stat-info-1 .sml-text {
    font-size: 22px;
    font-weight: 800;
}
.wrap-content-blue {
    background:#003b7c;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wrap-content-grey {
    background:#e5ebf2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.left-cont-2 {
   max-width:calc(50% - 100px);
   clip-path: polygon(0% 0%, calc(100% - 60px) 0%, 100% 50%, calc(100% - 60px) 100%, 0% 100%);;
    width:100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: flex-end;
}
.home-project-bg-1 {
    background-image: -webkit-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/home-info-bg-1.jpg);
    background-image: -moz-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/home-info-bg-1.jpg);
    background-image: -o-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/home-info-bg-1.jpg);
    background-image: linear-gradient(180deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/home-info-bg-1.jpg);
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.left-cont-info-2 {
    max-width: 500px;
    width:100%;
    padding:80px 80px 80px 20px;
    box-sizing: border-box;
}
.right-cont-2 {
    width:50%;
    display: flex;
    
    align-items: center;
}
.right-cont-info-2 {
    max-width: 600px;
    width:100%;
    padding:150px 20px;
    box-sizing: border-box;
}
.home-project-info h3 {
    font-size: 30px;
    color:#fff;
    font-weight: 700;
}
.home-project-info img {
    max-width: 100%;
    width: 100%;
    display: block;
    margin:40px auto;
}
.home-project-info p {
    font-size: 18px;
  line-height: 1.5;
    color:#fff;
    font-weight: 400;
    padding-bottom:40px;
}
.home-service-bg-1 {
    background-image: url(../siteart/home-info-bg-2.jpg);    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home-service-list {
    display: flex;
    flex-direction: column;
    gap:30px 0;
}
.service-info-1 {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    transition: .2s ease-in;
}
.service-info-left {
    padding:15px;
    width:70%;
    box-sizing: border-box;
}
.service-info-left h3 {
    font-size: 24px;
    font-weight: 700;
    color:#003b7c;
}
.service-info-left p {
    font-size: 18px;
    font-weight: 400;
    padding:15px 0;
    color:#000;
}
.service-info-right {
    background: #e5ebf2;
    padding:5px;
    width:30%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-info-right img {
    max-width: 100%;
    width:auto;
    display: block;
    margin:0 auto;
    transition: .2s ease-in;
}
.service-info-1:hover {
    background:#e5ebf2;
}
.service-info-1:hover .service-info-right img {
    filter: grayscale(100%);
}
.wrap-brands {
    padding:160px 0;
}
.wrap-brands h2 {
    padding-bottom:80px;
    text-align: center;
}
.brand-slider .slick-list {
    width: calc(100% - 40px);
    margin: 0 auto;
}
.brand-slider img {
    max-width: 100%;
    max-height: 60px;
    display: block;
    margin:0 auto;
    
}
.brand-slider .slick-track {
    display: flex;
    align-items: center;
}
.brand-slider .slick-slide {
    padding:10px 30px;
    box-sizing: border-box;
}
.slick-prev {
    Left:0;
    top: calc(50% - 20px);
    position: absolute;
    z-index: 1;
    transition: .2s ease-in;
    font-size:30px;
    color:#000;
    cursor: pointer;
}
.slick-prev:hover {
    opacity: 0.7;
}
.slick-next {
    right:0;
    top: calc(50% - 20px);
    position: absolute;
    z-index: 1;
    transition: .2s ease-in;
    font-size:30px;
    color:#000;
    cursor: pointer;
}
.slick-next:hover {
    opacity: 0.7;
}
.trucking-bg {
    background-image: -webkit-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/truck-bg-1.jpg);
    background-image: -moz-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/truck-bg-1.jpg);
    background-image: -o-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/truck-bg-1.jpg);
    background-image: linear-gradient(180deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/truck-bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    max-height: calc(100vh - 120px);
}
.about-bg {
    background-image: -webkit-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/about-img.jpg);
    background-image: -moz-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/about-img.jpg);
    background-image: -o-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/about-img.jpg);
    background-image: linear-gradient(180deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url("../siteart/about-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-height: calc(100vh - 120px);
}
.contact-bg {
    background-image: -webkit-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/contact-img-1.jpg);
    background-image: -moz-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/contact-img-1.jpg);
    background-image: -o-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/contact-img-1.jpg);
    background-image: linear-gradient(180deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url("../siteart/contact-img-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-height: calc(100vh - 120px);
}
.rentals-bg {
    background-image: -webkit-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/rentals-img.jpg);
    background-image: -moz-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/rentals-img.jpg);
    background-image: -o-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url(../siteart/rentals-img.jpg);
    background-image: linear-gradient(180deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url("../siteart/rentals-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-height: calc(100vh - 120px);
}

.project-bg {
    background-image: -webkit-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url("../siteart/updated-hero-bg.jpg");
    background-image: -moz-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url("../siteart/updated-hero-bg.jpg");
    background-image: -o-linear-gradient(270deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url("../siteart/updated-hero-bg.jpg");
    background-image: linear-gradient(180deg,rgba(0,59,124,0.60) 0%,rgba(0,59,124,0.60) 100%), url("../siteart/updated-hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-height: calc(100vh - 120px);
}
.project-section-bg-1 img {
    width:100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.wrap-link {
    width:100%;
}
.wrap-link .container-1 {
    padding-top:50px;
    padding-bottom:50px;
}
.wrap-link .hero-btns {
    margin-top:0;
}
.content-list {
    padding:0;
    margin:0;
}
.content-list li {
    padding:10px 0;
    margin:0;
    list-style: none;
    font-size: 20px;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
}
.content-list li a {
    color:#000;
    transition: .2s ease-in;
}
.content-list li a:hover {
    opacity: 0.7;
}
.wrap-form .container-1  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top:80px;
    padding-bottom:80px;
}
.form-cont-1 {
    width:45%;
}
.form-cont-1 h2 {
    padding-bottom:30px;
    color:#003b7c;
}
.map-cont-1 {
    width:50%;
}
.map-cont-1 iframe {
    min-height: 350px;
}
.wrap-content-1 .container-1 {
    padding-top:50px;
    padding-bottom:50px;
}

.meet-team-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:40px 0;
    width:100%;
}
.team-left {
  width: calc(50% - 100px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.team-left-info {
    max-width: 500px;
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
    text-align: center;
}
.team-left h2 {
    font-size: 30px;
    color: #003b7c;
    font-weight: 600;
}
.team-left h3 {
  font-size: 20px;
  font-weight: 400;
}
.team-left img {
    max-width: 100%;
    margin:20px auto;
    
}
.team-right {
    max-width: calc(60% - 100px);
    width:100%;
    clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 60px 100%, 0% 50%);
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    background-color: #e5ebf2;
}
.team-right-info {
    max-width: 680px;
    width: 100%;
    padding: 30px 20px 30px 80px;
    box-sizing: border-box;
}
.team-right p {
    line-height: 1.2;
    font-size: 16px;
}

/*===================== 
	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: 18px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    font-family: "Mulish", sans-serif;
    background:#fff;
    border:0px;
}
.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: 5px;
	font-size: 18px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: "Mulish", sans-serif;
    background:#fff;
    border:0px;
}

select {
	margin:0;
	padding:0;
}
.form-inline .blue-btn-1 {
    display: flex;
    max-width: 300px;
    margin: 0 auto;
}

.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1200px;
    width:100%;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-2 {
	max-width: 1500px;
    width:100%;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1100px;
	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;
	width: 100%;
    display: flex;
    flex-wrap:wrap;
    background:#003b7c;
}
.foot-left {
   max-width:calc(50% - 100px);
   clip-path: polygon(0% 0%, calc(100% - 60px) 0%, 100% 50%, calc(100% - 60px) 100%, 0% 100%);;
    width:100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: flex-end;
    background: #1a4f89;
}
.foot-left-info-1 {
    max-width: 500px;
    width:100%;
    padding:80px 80px 80px 20px;
    box-sizing: border-box;
}
.footer-right {
    width:50%;
    display: flex;
    
    align-items: center;
}
.footer-right-info-1 {
    max-width: 600px;
    width:100%;
    padding:150px 20px 150px 50px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap:20px 60px;
}
.footer-right-info-1 ul {
    padding:0;
    margin: 0;
}
.footer-right-info-1 ul li {
    padding:0;
    list-style: none;
    margin: 0;
}
.footer-right-info-1 ul li a {
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color:#fff;
    line-height: 2;
    transition: .2s ease-in;
}
.footer-right-info-1 ul li a:hover {
    opacity: 0.7;
}
.footer-bottom {
    padding:40px 0;
    box-sizing: border-box;
	width: 100%;
    background:#e5ebf2;
}
.footer-bottom .container-2 {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: center;
    gap:20px;
}
.foot-logo img {
    max-width: 100%;
    width:100%;
    height: auto;
    display: block;
}
.footer-bottom p {
    font-family: "Mulish", sans-serif;
    font-size: 12px;
    font-weight: 400;
}
.inv-page .scrollToTop-1 {
    display: none!important;
}
.scrollToTop-1 {
	bottom:25px;
	right:25px;
	z-index:16777269;
	padding-top:5px;
	padding-bottom:5px;
	display:none;
	position:fixed;
	opacity:.8;
	
}
.scrollToTop-1 a {
 	text-decoration:none;
 	line-height:150%;
 	padding:5px 12px;
 	opacity:.8;
 	display:block;
 	background:#000;
	font-size:14px;
	text-align:center;
	color:#fff;
	z-index:16777269;
}
.scrollToTop-1 a:hover {
	box-shadow:0 0 5px 0 rgba(0,0,0,.5)
}
/*========================== 
	  Responsive styles 
============================*/


@media screen and (max-width: 1380px)  {
    .head-logo {
        padding: 0px 20px;
        box-sizing: border-box;
        width: 20%;
    }
    .head-right {
        gap: 10px;
    }
    nav.primary ul li a {
        font-size: 1.2vw;
        padding: 10px 1vw;
    }
    
}
@media screen and (max-width: 1050px)  {
    .hero-btns {
      margin-top: 40px !important;
    }
    .hero-btns .blue-btn-1 {
        width: 49%;
    }
    .hero-btns .blue-btn-1:first-of-type {
        width: 100%;
    }
}
@media screen and (max-width: 900px)  {

    .head-logo {
        width: auto;
    }
    .hero-header-1 {
        width: calc(100% - 20px);
        min-width: auto;
    }
    .hero-header-info-1 {
        max-width: 100%;
        padding:60px 60px 60px 20px;
    }
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;}
    
	#menu-button {
		display: block;
        padding:25px 0;
	}
	.menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#003b7c;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#003b7c;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#003b7c;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
	nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #1a4f89;
		z-index: 500; 
		overflow:auto;
	}
	

	/* 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: "Mulish", sans-serif;
		position: relative;
		display: block;
		font-size:16px;
        text-align: center;
		padding: 10px;
		color: #fff;
		text-decoration: none;

	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
	}

	/* SECOND LEVEL */

	nav.mobile ul li li a {
		background: #236AB8;

	}
	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;
		border-left:4px #555 solid;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}
  
    .left-cont-1 {
        width: 100%;
        order:2;
    }
    .left-cont-info-1 {
        max-width: 100%;
        padding:50px 20px 80px 20px;
    }
    .right-cont-1 {
        max-width: 100%;
        padding-left:20px;
        order:1;
        clip-path: polygon(80px 0%, 100% 0%, 100% 100%, 80px 100%, 20px 50%);
        min-height: 350px;
    }
    .right-cont-1 .right-cont-info-1 {
        padding:20px;
    }
    .right-cont-1 .stat-info-1 {
        margin:2px 0;
    }
    .right-cont-1 .stat-info-1 .lg-text {
        font-size: 40px;
    }
    .right-cont-1 .stat-info-1 .sml-text {
      font-size: 18px;
    }
    .right-cont-info-1 {
        max-width: 100%;
        padding:40px 20px;
    }
    .left-cont-2, .foot-left {
       max-width:calc(100% - 20px);
        min-height: 350px;
    }
    .left-cont-info-2, .foot-left-info-1 {
        max-width: 100%;
        padding:40px 20px;
    }
    .right-cont-2, .footer-right {
        width:100%;
    }
    .right-cont-info-2, .footer-right-info-1 {
        max-width: 100%;
        padding: 50px 20px 80px 20px;
    }
    .service-info-left {
        width:80%;
    }
    .service-info-right {
        width:20%;
    }
    .form-cont-1 {
        width:100%;
        order:2;
    }
    .map-cont-1 {
        width:100%;
        order:1;
        padding-bottom:40px;
    }
    .project-section-bg-1 {
        order:3!important;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
        max-width: 100%;
        padding:0 0 30px 0;
    }
    .project-section-info-1 {
        padding: 50px 20px 10px 20px;
        text-align: center;
    }
    .team-left {
        width: 100%;
        background-color: #e5ebf2;
    }
    .team-left-info {
        max-width: 100%;
        padding:40px 20px 20px 20px;
    }
    .team-right {
        max-width: 100%;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%); 
    }
    .team-right-info {
        max-width: 100%;
        padding: 20px;
    }

}

@media screen and (max-width: 800px)  {
    
    .wrap-hero, .home-project-bg-1, .home-service-bg-1 {
        background-attachment:inherit;
    }
    
}

@media screen and (max-width: 650px)  {
    .header-wrap, .home-pg .header-wrap {
      position: sticky;
      top: 0;
      z-index: 2;
        box-shadow: 0 0 10px 5px rgba(0,0,0,0.2);
        background: #003b7c;
    }
    .wrap-hero {
        background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 23.83%), url(../siteart/hero-bg-2.jpg);
        background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 23.83%), url(../siteart/hero-bg-2.jpg);
        background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 23.83%), url(../siteart/hero-bg-2.jpg);
        background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 23.83%), url(../siteart/hero-bg-2.jpg);
        background-position: 30% center;
    }
    .white-text-link, .blue-text-link {
        font-size: 16px;
    }
    .header-white, .header-blue {
      font-size: 35px;
    }
    .home-about-info h2 {
      font-size: 35px;
    }
    .home-about-info h3 {
      font-size: 20px;
    }
    .head-info ul {
      display: none;
    }
    .head-logo img {
        max-width: 180px;
    }
    .hero-overlay-1 {
      padding-top: 20px;
    }
    .hero-header-info-1 h1 {
        font-size: calc(4vw + 10px);
        line-height: normal;
    }
    .hero-header-info-1 h2 {
        font-size: calc(2vw + 8px);
    }
    .hero-btns .blue-btn-1 {
        width: 100%;
    }
    .blue-btn-1 {
        font-size: 17px;
        justify-content: space-between;
        padding:15px 20px;
    } 
    .blue-btn-1 i {
        font-size: 24px;
        transition: .2s ease-in;
    }
    .home-project-info h3 {
      font-size: 24px;
    }
    .right-cont-1, .left-cont-2, .foot-left {
        min-height: 200px;
    }
    .service-info-left {
        width:100%;
        order:2;
    }
    .service-info-right {
        width:100%;
        order:1;
    }
    .brand-slider .slick-slide {
        padding:10px;
    }
    
}




	
