@font-face {
  font-family: latoBold;
  src: url(../fonts/Lato-Bold.ttf);
}

@font-face {
  font-family: latoBlack;
  src: url(../fonts/Lato-Black.ttf);
}

@font-face {
  font-family: latoBoldItalic;
  src: url(../fonts/Lato-BoldItalic.ttf);
}

@font-face {
  font-family: latoItalic;
  src: url(../fonts/Lato-Italic.ttf);
}

@font-face {
  font-family: latoLight;
  src: url(../fonts/Lato-Light.ttf);
}

@font-face {
  font-family: latoLightItalic;
  src: url(../fonts/Lato-LightItalic.ttf);
}

@font-face {
  font-family: latoreg;
  src: url(../fonts/Lato-Regular.ttf);
}

/*************************
*******Typography******
**************************/
body {

  background: #fff;
  font-family: latoreg;
  font-weight: 400;
  color: #64686d;
  line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: latoBold;
  color: #353a72;
  text-transform: uppercase;
}
.latoblack{
  font-family: latoBlack !important;
}
a {
  color: #45aed6;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #2a95be;
}
hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}
.gradiant {
  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}
.gradiant-horizontal {
  background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
}
.section-header {
  margin-bottom: 50px;
}
.section-header .section-title {
  font-size: 44px;
  color: #272727;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 20px;
}
.section-header .section-title:before {
  content: "";
  position: absolute;
  width: 140px;
  bottom: 0;
  left: 50%;
  margin-left: -70px;
  height: 1px;
  background: #ebebeb;
}
.social{
  cursor: pointer;
}
.social:hover{
  opacity: 0.8;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #fff;
}

.preloader > i {
  position: absolute;
  font-size: 36px;
  line-height: 36px;
  top: 50%;
  left: 50%;
  height: 36px;
  width: 36px;
  margin-top: -15px;
  margin-left: -15px;
  display: inline-block;
}
.section-header .section-title:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: -11px;
  left: 50%;
  margin-left: -12px;
  border: 5px solid #fff;
  border-radius: 20px;
  background: #45aed6;
}
.btn {
  border: 1px solid #353a72;
  border-radius: 0;
}
.btn.btn-primary {
  background: transparent;
  color: #353a72;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #353a72;
  color: #fff;
}
.column-title {
  margin-top: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  position: relative;
}
.column-title:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40%;
  border-bottom: 1px solid #45aed6;
}
ul.nostyle {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
ul.nostyle i {
  color: #45aed6;
}
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}
@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/*************************
*******Header******
**************************/
.navbar.navbar-default {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.navbar-collapse{
  background: #60bb48;
  padding-left: 190px !important;
}

.navbar.navbar-default .navbar-toggle {
  margin-top: 25px;
}
.last-soc a:before{
  content: none !important;
}

.navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 18px 0;
}
@media only screen and (min-width: 768px) {
  #main-menu.navbar-default {
    border-bottom:3px solid #60bb48 ;
    background-image: linear-gradient(left, #fff 50%, #60bb48 0%);
    background-image: -o-linear-gradient(left, #fff 50%, #60bb48 0%);
    background-image: -moz-linear-gradient(left, #fff 50%, #60bb48 0%);
    background-image: -webkit-linear-gradient(left, #fff 50%, #60bb48 0%);
    background-image: -ms-linear-gradient(left, #fff 50%, #60bb48 0%);
  }
  #main-menu.navbar-default .navbar-nav > li > a {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
  text-transform: uppercase;
  }

  .navbar-default .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 3px;
    bottom: -3px;
    left: 10px;
    background-color: #fff;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar-default .navbar-nav > li > a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  .navbar-default .navbar-nav > li.active > a:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }



  #main-menu.navbar-default .navbar-nav > li.active > a,
  #main-menu.navbar-default .navbar-nav > li.open > a,
  #main-menu.navbar-default .navbar-nav > li:hover > a {
    background: transparent;
    color: #353a72;
  }
  #main-menu.navbar-default .dropdown-menu {
    padding: 0 20px;
    min-width: 220px;
    background-color: rgba(26, 28, 40, 0.9);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-clip: inherit;
  }
  #main-menu.navbar-default .dropdown-menu > li {
    border-left: 3px solid transparent;
    margin-left: -20px;
    padding-left: 17px;
    -webit-transition: border-color 400ms;
    transition: border-color 400ms;
  }
  #main-menu.navbar-default .dropdown-menu > li > a {
    border-top: 1px solid #404455;
    padding: 15px 0;
    color: #eeeeee;
  }
  #main-menu.navbar-default .dropdown-menu > li:first-child > a {
    border-top: 0;
  }
  #main-menu.navbar-default .dropdown-menu > li.active,
  #main-menu.navbar-default .dropdown-menu > li.open,
  #main-menu.navbar-default .dropdown-menu > li:hover {
    border-left-color: #45aed6;
  }
  #main-menu.navbar-default .dropdown-menu > li.active > a,
  #main-menu.navbar-default .dropdown-menu > li.open > a,
  #main-menu.navbar-default .dropdown-menu > li:hover > a {
    color: #45aed6;
    background-color: transparent;
  }
}

#home-slider {
  overflow: hidden;
  position: relative;
}

#home-slider .caption {
  position: absolute;
  top: 50%;
  margin-top: -104px;
  left: 0;
  right: 0;
  text-transform: uppercase;
  z-index: 15;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}
.crol{
  position: absolute;
  bottom: 0;
  padding: 35px;

}

.crol2{
  position: absolute;
  bottom: 0;
  left: 320px;
  padding: 35px;
}
.bl2{
  background: rgba(96,187,72,.8);
}
#home-slider .caption h1 {
  color: #fff;
  font-size: 50px;
  font-family: latoBlack;
  line-height: 50px;
  padding-bottom: 15px;
}

#home-slider .caption h1 span{
  padding: 5px;
  background: #353a72;
}

.bl{
  background: #60bb48;
}

#home-slider .fadeInUpBig{
  font-size: 38px;
  font-family: latoreg;
}

#home-slider .fadeInUpBig span{
  padding: 5px;
  background: #353a72;
}


 .carousel-inner .item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  height: 2037px;
}
#home-slider .carousel-indicators {
  bottom: 50%;
  left: inherit;
  position: absolute;
  right: 30px;
  text-align: center;
  z-index: 15;
  width: 25px;
  margin-bottom: -38px;
}
#home-slider .carousel-indicators li {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 13px;
  width: 13px;
}
#home-slider .carousel-indicators .active {
  height: 13px;
  width: 13px;
}
#home-slider .carousel-indicators .active {
  border-color: #60bb48;
  background: #60bb48;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

.left-control, .right-control {
  position: absolute;
  top: 50%;
  height: 51px;
  width: 51px;
  line-height: 48px;
  border:1px solid #fff;
  z-index: 20;
  font-size: 24px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.left-control {
  left: -51px
}

.right-control {
  right: -51px;
}

.left-control:hover,
.right-control:hover {
  color: #fff;
}

#home-slider:hover .left-control {
  left:30px
}

#home-slider:hover .right-control {
  right:30px
}

#home-slider .more {
  margin-top: 65px;
}


#about{
  padding: 100px 0 380px;
  background: url("../images/about_back.jpg") no-repeat;
  background-size: cover;
  background-position: bottom right;
}

#about h2{
  margin-top: 55px;
}

#about p{
  margin-top: 40px;
  color: #353a72;
  line-height: 19px;
}

.about-head{
padding: 0 0 55px 0;
  border-bottom: 3px solid #60bb48;
}


.about-head .hd{
  font-family: latoBlack;
  font-size: 34px;
  color: #353a72;
  font-style: italic;
}

.about-head .btn{
  width: 80px;
  padding: 2px;
}

.about-head .active{
  background: #353a72;
  color: #fff;
}
#services {
  padding: 100px 0 ;
  background: url("../images/news.jpg") no-repeat;
  background-size: cover;
}

#services h2{
  font-family: latoBlack;
  font-size: 34px;
  font-style: italic;
  padding-bottom: 40px;
}
.internal{
  background: #353a72;
  border-radius: 10px;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;

}

.internal:hover{
  background: #60bb48;
  transform: scale(1.1);
}

.internal:hover .btn2{
  background: #353a72;
  color: #fff;
}


#services h5{
  font-family: latoBlack;
  text-align: center;
  font-size: 16px;
  color: #fff;
  position: relative;
  margin-top: -30px;
  height: 55px;
  padding-left: 7px;
  padding-right: 7px;
}

#services h5:after {
  content: " ";
  width: 45px;
  height: 3px;
  background: #60bb48;
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -20px;
}

.internal:hover  h5:after{
  background: #353a72 !important;
}

.flex{
  display: flex;
}

#services p{
  color: #fff;
  line-height: 19px;
  margin-top: 30px;
  padding: 10px 20px 15px 20px;
}

.btn2{
  display: block;
  text-align: center;
  letter-spacing: 2px;
  background: #60bb48;
  color: #353a72;
  padding: 5px 0;
  margin-top: 5px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}


.sicon{
  margin: auto;
  position: relative;
  top: -60px;
}


.callout{
  display: table;
  width: 100%;
  height: 500px;
  color: #fff;
  background: url(../images/why_back.jpg) no-repeat bottom left;
  background-size: cover;

}
.text-vertical-center {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.callout h2 {
  font-size: 34px;
  letter-spacing: 8px;
  padding-bottom: 25px;
  font-family: latoBlack;
  color: #fff;
}

.callout p {
  font-size: 16px;
  line-height: 22px;
}

#contact {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 800px;
  background: #60bb48;
  background-image: url("../images/bar.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
}

#contact h2{
  font-family: latoBlack;
  font-size: 34px;
  font-style: italic;
  padding-bottom: 30px;
  border-bottom: 3px solid #fff;
  margin-bottom: 0;
}

.cont p{
  font-family: latoBold;
  color: #fff;
  font-size: 22px;
  line-height: 24px;
}

.blue{
  background: #353a72;
}
.border-blue{
  border-color: #353a72 !important;

  background-image: linear-gradient(left, #fff 50%, #353a72 0%) !important;
  background-image: -o-linear-gradient(left, #fff 50%, #353a72 0%) !important;
  background-image: -moz-linear-gradient(left, #fff 50%, #353a72 0%) !important;
  background-image: -webkit-linear-gradient(left, #fff 50%, #353a72 0%) !important;
  background-image: -ms-linear-gradient(left, #fff 50%, #353a72 0%) !important;
}
.blue .active a{
  color: #60bb48 !important;
}

#careers{
  padding: 100px 0 140px;
  background-image: url("../images/career_back.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  background-color: #aebbc4;
  position: relative;
}

#careers h2{
  font-family: latoBlack;
  font-size: 34px;
  font-style: italic;
  margin-bottom: 30px;
}

#careers p{
  font-family: latoBold;
  font-size: 26px;
  color: #353a72;
  text-transform: uppercase;
}
.sep{
  width: 100%;
  position: absolute;
  bottom: 0;
  min-height: 70px;
}

.fillform{
  background: #63b84e;
  color: #353a72 !important;
  font-family: latoBlack;
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px;
  text-align: center;
  display: inline-block;
  line-height: 21px;
  float: right;
  margin-top: 20px;
  border-radius:3px ;
}

.fillform:hover{
  background: #353a72;
  color: #63b84e !important;
}

#gallery{
  padding: 100px 0;
}
.galimage{
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.galimage:hover{

  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

#gallery .sm{
   background: #353a72 !important;
   color: #fff;
 }

#gallery .sm:hover{
  background: #fff !important;
  color: #353a72;
}
#gallery .col-md-3 {
  padding: 2px;
}
/***********************
********* Footer ******
************************/
#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: #353a72;
}
#footer a {
  color: #fff;
}
.hv{
  margin-left: 2px;
}
.hv:hover{
  opacity: 0.8;

}
@media only screen and (min-width: 768px) {
  #footer .social-icons {
    float: right;
  }
}
.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-modal .modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  min-height: 100%;
  padding: 100px 0;
  text-align: center;
}

.portfolio-modal .modal-content h2 {
  margin-bottom: 15px;
  font-size: 2em;
}

.portfolio-modal .modal-content p {
  margin-bottom: 30px;
  margin-top: 30px;
  line-height: 19px;
  color: #353a72;

}

.portfolio-modal .modal-content{
    background: url("../images/news.jpg") no-repeat;
	background-size:cover;
  position: relative;
}

.portfolio-modal .close-modal {
  width: 75px;
  height: 75px;
  cursor: pointer;
  margin: auto;
}

.portfolio-modal .close-modal:hover {
  opacity: .3;
}

.portfolio-modal .close-modal .lr {
  height: 75px;
  width: 2px;
  margin-left: 35px;
  background-color: #353a72;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1051;
}

.portfolio-modal .col-lg-8{
  position: initial;
}
.portfolio-modal .close-modal .lr .rl {
  height: 75px;
  width: 2px;
  background-color: #353a72;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  z-index: 1052;
}

.portfolio-modal .modal-backdrop {
  opacity: 0;
  display: none;
}

.modal-body2{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
::-moz-selection {
  text-shadow: none;
  background: #60bb48;
}

::selection {
  text-shadow: none;
  background: #60bb48;
}

form#contact-form .form-group label {
  text-align: left !important;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
form#contact-form input,form#contact-form select,form#contact-form textarea {
  border-radius: 0;
  border: 1px solid #eee;
  -webkit-box-shadow: none;
  box-shadow:  none;
}

form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.input-group-addon {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 0;
}

.widget-contact {
  text-align: left;
  margin-top: 30px;
}


.company-social {
  margin-left: 0;
  padding-left: 0;
  margin-top: 10px;
}

.company-social {
  text-align: left;
}

.company-social li{
  display: inline-block;
  margin:0 !important;
  padding:0;
}


.company-social a{
  margin:0;
  padding:0;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #3bbec0;
  color: #fff;
  -webkit-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
}
.company-social a i{
  text-align: center;
  margin:0;
  padding:0;
}
.company-social .social-facebook a{background: #3873ae;}
.company-social .social-twitter a{background: #62c6f8;}
.company-social .social-dribble a{background: #d74980;}
.company-social .social-deviantart a{background: #8da356;}
.company-social .social-google a{background: #000;}
.company-social .social-vimeo a{background: #51a6d3;}
.company-social .social-facebook a:hover{background: #4893ce;}
.company-social .social-twitter a:hover{background: #82e6ff;}
.company-social .social-dribble a:hover{background: #f769a0;}
.company-social .social-deviantart a:hover{background: #adc376;}
.company-social .social-google a:hover{background: #333;}
.company-social .social-vimeo a:hover{background: #71c6f3;}
.boxed-grey {
  background: #eee;
  padding: 20px;
}
.btns{
  background: #353a72 !important;
  color: #fff !important;
}

.btns:hover{
  color: #353a72 !important;
  border-color: #353a72 !important;
  background: transparent !important;
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}