.flat-imagebox {
    margin: 0 -15px;
    margin-bottom: 68px;
}

.flat-imagebox .item-three-column {
    float: left;
    padding: 0 15px;
}

.flat-imagebox .flat-item {
    float: left;
    /* padding: 0 15px; */
}

.imagebox {
    position: relative;
}

.imagebox .box-wrapper {
    overflow: hidden;
    position: relative;
}

.imagebox .box-header {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: -webkit-linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%) repeat-x;
    background: -moz-linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%) repeat-x;
    background: -o-linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%) repeat-x;
    background: linear-gradient(to bottom, transparent 0, rgb(0 0 0 / 55%) 100%) repeat-x;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.imagebox .box-header .box-title {
    font-size: 20px;
    margin: 0;
    position: relative;
}

.imagebox .box-header .box-title:after {
    width: 50px;
    height: 3px;
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    /* background-color: #df4296; */
}

.imagebox .box-header .box-title a {
    color: #ffffff;
    text-shadow: 0 0px 0px rgb(0 0 0 / 20%);
    text-transform: uppercase;
    font-size: 17px;
}

.imagebox .box-header .box-subtitle {
    margin: 5px 0 0 0;
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    position: relative;
}

.imagebox .box-header .box-subtitle:before {
    font-family: "FontAwesome";
    content: "\f0a9";
    display: inline-block;
    margin: 0 6px 0 0;
}

.imagebox .box-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    padding: 22px;
    text-shadow: 0 1px 1px rgb(47 18 7 / 68%);
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.imagebox .box-content:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.64);
    z-index: -1;
    -webkit-opacity: 0.9;
     -khtml-opacity: 0.9;
       -moz-opacity: 0.9;
            opacity: 0.9;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
    filter: alpha(opacity=90);
}

.imagebox .box-content .box-button {
    margin-top: 25px;
}

.imagebox:hover .box-header {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
}

.imagebox:hover .box-content {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
    -webkit-opacity: 1;
     -khtml-opacity: 1;
       -moz-opacity: 1;
            opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
}

/* Flat iconbox
-------------------------------------------------------------- */
.flat-iconbox-style {
    margin: 0 -15px;
}

.flat-iconbox-style .item-three-column {
    float: left;
    padding: 0 15px;
    margin-bottom: 30px;
}

.flat-iconbox-style .flat-item {
    float: left;
    padding: 0 15px;
    padding-top: 8px;
}

.iconbox.style1 .box-header {
  margin-bottom: 15px;
}

.iconbox.style1 .box-header .box-icon {
  float: left;
  margin-right: 19px;
}
.iconbox.style1 .box-header .box-icon i {
  font-size: 28px;
  position: relative;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #fff;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
}
.iconbox.style1 .box-header .box-icon i:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    left: 10px;
    top: 10px;
    z-index: -1;
    background-color: #1f3567;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.iconbox.style1 .box-content {
    overflow: hidden;
}

.iconbox.style1:hover .box-header .box-icon i:after {
    background-color: #cb0828;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.iconbox.style1 .box-header .box-title {
    margin-top: 0;
    margin-bottom: 0;
}

/* Progress Bar
-------------------------------------------------------------- */
.flat-progress {
    position: relative;
    overflow: hidden;
    margin-bottom: 35px;
}

.flat-progress .name {
    padding: 0;
    position: absolute;
    top: -17px;
    left: 20px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.flat-progress .progress-animate {
    background-color: #00C1CF;
    height: 40px;
    width: 0;
}

.flat-progress.style1 .progress-animate {
    background-color: #5bb75b;
}

.flat-progress.style2 .progress-animate {
    background-color: #5472D2;
}

.flat-progress .progress-bar {
    background: rgba(0, 0, 0, 0.05);
    width: 100%;
}

.flat-progress .perc {
    width: 0;
    text-align: right;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
      -moz-transition: opacity 1s ease-in-out;
       -ms-transition: opacity 1s ease-in-out;
        -o-transition: opacity 1s ease-in-out;
           transition: opacity 1s ease-in-out;
}

.flat-progress .perc.show {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

/* Flat make-quote
-------------------------------------------------------------- */
.make-quote .title {
    color: #fff;
    margin: 0 0 13px 0;
}

.make-quote .desc {
    color: #fff;
    margin: 0 0 32px 0;
    font-weight: 500;
}

.box-desc{
	 margin: 0 0 6px;
	 display: flex;
	 line-height: 1.2;
	 font-size: 25px;
	 text-align: center;
	 padding-top: 74px;
	 flex-direction: column;
	 align-items: center;
}
.box-desc a{
     color: #124078;
     text-align: center;
     font-size: 18px;
     font-weight: 800;
     text-transform: uppercase;
}
.box-desc i{
	 color: #124078;
	 margin: 0 0 6px;
	 display: block;
	 line-height: 1.2;
	 font-size: 45px;
	 text-align: center;
}

.contact-info-area {
  padding-bottom: 70px;
}
.contact-info-area strong {
  color: #1f3567;
}
.contact-info-area .contact-info .item {
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  padding: 30px 30px;
  text-align: center;
  background: #ffffff none repeat scroll 0 0;
  height: 227px;
  margin-bottom: 28px;
}

.contact-info-area .contact-info .item i {
  color: #182733;
  display: block;
  font-size: 49px;
  text-align: center;
}

.contact-info-area .contact-info .item .info {
  margin-top: 2px;
}

.contact-info-area .contact-info .item .info h4 {
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-info-area .contact-info .item .info p {
  margin: 0;
}

.cuntrol-section {
    height:80px;
	background: #037ebf;
	padding-left:30px;

}
.box-image {width: 290px;}




.imagebox .box-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    padding: 20px;
    text-shadow: 0 1px 1px rgb(0 0 0 / 0%);
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.imagebox .box-content:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 85%);
    z-index: -1;
    -webkit-opacity: 0.9;
    -khtml-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 0.9;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
    filter: alpha(opacity=90);
      
}

.imagebox .box-content .box-button {
    margin-top: 25px;
}

.imagebox:hover .box-header {
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
}

.imagebox:hover .box-content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
}


.imagebox {
    position: relative;
}

.imagebox .box-wrapper {
    overflow: hidden;
    position: relative;
}



/* -------- Parallax ---------- */
.parallax {
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: repeat-y;
  background-position: top center;
}
.mobile-parallax {
  background-size: cover !important;
  background-attachment: scroll !important;
  background-position: center center;
}
.divider .container {
  /* padding-top: 36px; */
  /* padding-bottom: 90px; */
}
.divider .container.small-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}
.divider .container.extra-padding {
  padding-top: 180px;
  padding-bottom: 180px;
}

.service-box {
    /* margin: 15px 10px auto 15px; */
    text-align: center;
    transition: all 0.5s;
}
.service-box .icon img {
    height: auto;
    max-width: 100%;
}
.service-box .icon {
    width: 58px;
    margin: auto;
    padding: 14px;
    text-align: center;
    border-radius: 50%;
    background-color: #124078;
    position: relative;
    top: 11px;
    z-index: 24;
    font-size: 29px;
    left: 35%;
    color: #ffff;
}
.service-box .icon:before {
    transition: all 0.5s;
    content: " ";
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #124078;
    opacity: .6;
    z-index: -1;
}

.service-box:hover .icon:before {
    width: 120px;
    height: 120px;
}
.service-box .img-in {
    position: relative;
    margin-top: -20px;
    border-radius: 10px;
}
.service-box .img-in img {
    width: 100%;
    height: auto;
    transition: all 0.5s;
    border-radius: 10px;
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
}

.service-box:hover .img-in img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.img-icon-box-content {
  padding: 0 20px;
}
.service-box a.title {
    font-size: 21px;
    font-weight: 700;
    margin: 10px auto 12px auto;
    display: block;
    position: relative;
    color: #393939;
    text-transform: uppercase;
    text-align: center;
}
.service-box a.title:before {
    transition: all 0.5s;
    content: " ";
    display: block;
    position: absolute;
    bottom: -15px;
    z-index: -1;
    height: 5px;
    border-radius: 1px;
    width: 0px;
    margin: auto;
    background-color: #124078;
    opacity: .7;
    left: 0;
    right: 0;
}
.service-box:hover a.title:before {
    width: 100px;
  
}
.service-box .wasf {
    font-size: 13px;
    font-weight: 500;
    color: #666363;
    margin-bottom: 10px;
}

.service-box a.more {
    color: #f00022;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.service-box a.title:hover {
    color: #124078 !important;
    text-decoration: none;
}

.container.pb-60.pt-0 {
    margin-bottom: 58px;
}


.brandstyle{
	width: 60px;
	height: 100%;
	/* border: 1px solid #dcdcdc; */
	padding: 3px;
	margin-top: 11px;
	display: inline-block;
	margin-bottom: 28px;
}

.divider, .parallax {
    margin-bottom: 27px;
    background-repeat: repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative;
    /* overflow: hidden; */
    width: 100%;
}