@font-face {
  font-family: 'gomed';
  src: url('../fonts/gotham/f1-webfont.woff2') format('woff2'),
  url('../fonts/gotham/f1-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'gobold';
  src: url('../fonts/gotham/f2-webfont.woff2') format('woff2'),
  url('../fonts/gotham/f2-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


/*************************
*******Typography******
**************************/
body {
  background: #fff;
  font-family: 'gomed', sans-serif;
  color: #64686d;
  line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'gobold', sans-serif;
  color: #4e4d4f ;
}
a {
  color: #4e4d4f ;
  -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: #888883;
}
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;
}
.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: #888883;
}
.btn {
  border-radius: 0;
}
.mt30{
  margin-top: 30px;
}
.btn.btn-primary {
   background: transparent;
   border-color: #888883;
   color:  #888883;
 }
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #000;
  color: #888883;
}

.btn.btn-primary2 {
  background: transparent;
  border-color: #fff;
  color:  #fff;
}
.btn.btn-primary2:hover,
.btn.btn-primary2:focus {
  background: #000;
}

#main-menu{
  background: #4e4d4f !important;
}
#main-menu.bluex .navbar-nav > li > a {
  padding-bottom: 35px !important;
  padding-top: 34px !important;
}
.btn.btn-primary3 {
  background: #888883;
  border-color: #0e2e38;
  color:  #0e2e38;
}
.btn.btn-primary3:hover,
.btn.btn-primary3:focus {
  background: #0e2e38;
  color: #888883;
  border-color: #888883;
}

.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 #888883;
}
ul.nostyle {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
ul.nostyle i {
  color: #888883;
}
.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.navbar-default .navbar-toggle {
  margin-top: 20px;
  background: transparent;
  border: 0;
}
.navbar-default .navbar-toggle .icon-bar{
  background-color: #888883;
}
.navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 30px 15px 21px;
  -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;
}


#main-menu.navbar-default .navbar-nav > li > a{
  color: #fff;
  text-transform: uppercase;
  font-family: gobold;
}
#main-menu.navbar-default .navbar-nav > li > a:hover, #main-menu.navbar-default .navbar-nav > li.active > a{
  color: #888883;
}

@media only screen and (min-width: 768px) {
  #main-menu.navbar-default {
  
      -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;
    background: rgba(78, 77, 79, 0.7);
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  }
  #main-menu.navbar-default .navbar-nav > li > a {
    padding-top: 40px;
    padding-bottom: 40px;
    -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;
  }
  #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;
    padding-bottom: 40px;

  }

  #main-menu.bluex .navbar-nav > li.active > a,
  #main-menu.bluex .navbar-nav > li.open > a,
  #main-menu.bluex .navbar-nav > li:hover > a {
    background: transparent;
    padding-bottom: 30px;

  }
  .bluex .navbar-brand{
    padding: 22px 15px 21px !important;

  }


  #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: #888883;
  }
  #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: #888883;
    background-color: transparent;
  }
}
#main-slider {
  overflow: hidden;
}
#main-slider .item {
  height: 558px;
  background-repeat: no-repeat;
  background: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;
}
#main-slider .slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
#main-slider .slider-inner h2 {
  font-size: 57px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.2;

}

#main-slider .slider-inner h2:before {
  content: '';
  position: absolute;
  width: 90px;
  height: 6px;
  background: #888883;
  left: -0;
  top: -50px;
}
#main-slider .slider-inner p {
  font-size: 18px;
  line-height: 1;
  font-family: gomed;

  color: #fff;
}
.slider-inner .container{
  position: relative;
  height: 100%;
}
.centered{
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
#main-slider .slider-inner h2 > span {
  color: #888883;
}
#main-slider .slider-inner .btn {
  margin-top: 10px;
}
#main-slider .owl-prev,
#main-slider .owl-next {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 30px;
  display: inline-block;
  margin-top: -35px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 100px;
  z-index: 5;
  -webkit-transition: background-color 400ms;
  transition: background-color 400ms;
}
#main-slider .owl-prev:hover,
#main-slider .owl-next:hover {
  background-color: #888883;
}
#main-slider .owl-prev {
  left: -35px;
  text-indent: 14px;
}
#main-slider .owl-next {
  right: -35px;
  text-indent: -14px;
}
#bar {
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #888883;
}
#progressBar {
  margin-top: -4px;
  position: relative;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

#history{
  position: relative;
  padding: 90px 0;
  overflow: hidden;

}
#about{
  padding: 90px 0;
}
.historyp {
  color: #000;
  font-family: gomed;
  text-align: justify;
  }


#services{
  padding: 90px 0;
  background: url("../images/servback.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment:fixed;
}

#study{

  padding: 90px 0;
  background: url("../images/caseback.jpg") no-repeat;
  background-size: cover;
  background-position: center;

}
.int1{
  position:relative;
  background: #888883;
  padding: 60px 20px;
  margin-bottom: 30px;
  text-align: center;
  -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;
}
.servicon{
margin-bottom: 25px;
  height: 90px;
}
.servtitle{
  font-family: gobold;
  letter-spacing: 3px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  -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;
}

.servtext{
  margin-top: 25px;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  -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;
}
.int1:hover{
  background: #000;
}
.int1:hover .servtext, .int1:hover .servtitle{
  color: #888883;
}
.label-default{
  color: #0e2e38;
  background: #888883;
  border-radius: 0;
  font-family: gobold;
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.label-danger{
  border-radius: 0;
  font-family: gobold;
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}


.bluex{
  background: #4e4d4f !important;
  opacity: 1 !important;
}
#main-menu.bluex .navbar-nav > li > a{
  padding-bottom: 30px;
  padding-top: 30px;
}

.boulp{
  color: #3a3b38;
  font-family: gomed;
  margin-top: 40px;
  margin-bottom: 40px;
}
.title1 {
  letter-spacing: 8px;
  font-size: 20px;
  position: relative;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.title1:before{
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: #888883;
  left: 0;
  top: -50px;
}

.st1{
  font-family: gobold;
  font-size: 20px;
  margin-bottom: 15px;
  color: #4e4d4f ;
}

.st2{

  font-size: 16px;
  margin-bottom: 15px;
  color: #414042;
}

.st3{
  font-family: gobold;
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #414042;
}

.h316{
  height: 316px;
}

.mtb30{
  margin-bottom: 100px;
}
.bordl{
  border-right: 5px solid #888883;
  height: 140px;
}
.bordr{
  border-left: 5px solid #888883;
  height: 140px;
}
.title2 {
  letter-spacing: 8px;
  font-size: 20px;
  color: #fff;
  position: relative;
  margin-bottom: 60px;
}
.title2:before{
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: #fff;
  left: 0;
  top: -50px;
}
#paralax{

  background: url("../images/paralax.jpg") no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 120px 0 140px;

}

#directory{
  background: #414042;
  padding: 90px 0;
}
.int2{
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  -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;
}
.overl{
  position: absolute;
  top: 0;
  left: -100%;
  background: rgba(65,64,66,0.7);
  height: 100%;
  width: 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;
}
.p1{
  font-family: gobold;
  font-size: 15px;
  color: #fff;
}
.btt{
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.sep1{
  width: 30px;
  height: 5px;
  background: #888883;
  margin: 10px 0;
}
.p2{
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
}
.int2:hover .overl{
  left: 0;
}
.paratext{
  font-family: gobold;
  color: #fff;
  text-align: center;
  font-size: 35px;
  text-transform: uppercase;
}
.barr{
  width: 60px;
  height: 5px;
  background: #888883;
  margin: auto;
  margin-bottom: 30px;
}
#contact1{
  padding: 80px 0;
  background: url("../images/backproj1.jpg");
}
.aboutimg {
  width: 100%;

}
.backm {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.bord21{
  margin-top: 80px;
  border-bottom: 6px solid #888883;
}
.owl-demo .item{
  margin: 10px;
}
.owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}
.contactp{
  color: #4e4d4f ;
  font-family: gomed;
  margin-top: 30px;

}
#contact {
  position: relative;
  overflow: hidden;
}
#contact .container-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 174, 214, 0.3);
  z-index: 1;
}
#contact .contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  margin-top: 50px;
}
#contact .contact-form h3 {
  margin-top: 0;
}
/***********************
********* Footer ******
************************/
#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: rgb(78, 77, 79);
  font-size:12px;
  font-family: gomed;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  color: #888883;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 -7.5px;
}
#footer ul > li {
  display: inline-block;
  margin: 0 7.5px;
}
@media only screen and (min-width: 768px) {
  #footer .social-icons {
    float: right;
  }
}
.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.style-4 input[type], .style-4 textarea {
  padding: 10px 0;
  width: 100%;
  outline: 0;
  border: none;
  background: transparent;
  border-bottom: solid 2px #dcdcdc;
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
  color: #4e4d4f ;
  font-family: gobold;
  letter-spacing: 2px;
}
.style-4 input[type]:focus, .style-4 input[type].focus, .style-4 textarea:focus {
  border-bottom: solid 2px #4e4d4f ;
}


#contact1 .style-4 input[type] {
  color: #4e4d4f  !important;
}

#contact1 input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color:    #4e4d4f ;
}
#contact1 input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color:    #4e4d4f ;
  opacity:  1;
}
#contact1 input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color:    #4e4d4f ;
  opacity:  1;
}
#contact1 input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:    #4e4d4f ;
}



#contact1 textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color:    #4e4d4f ;
}
#contact1 textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color:    #4e4d4f ;
  opacity:  1;
}
#contact1 textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
  color:    #4e4d4f ;
  opacity:  1;
}
#contact1 textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:    #4e4d4f ;
}



@media only screen and (max-width: 768px) {
  #main-menu.navbar-default{
    background: #0e2e38;
  }
  .h316{
    height: auto;
    margin-bottom: 30px;
  }
  .paratext{
    font-size: 24px;
  }
  .hrr{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #888883;
    margin: 1em 0;
    padding: 0;
  }
  .trr{
    text-align: left !important;
    margin-bottom: 20px;
  }
  .mtt{
    margin-bottom: 20px;
  }
  .bordl, .bordr{
    display: none;
  }
  .navbar-brand>img{
    width: 170px;
  }
  #main-menu.bluex .navbar-nav > li > a{
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .navbar.navbar-default .navbar-brand {
    padding: 20px 15px;
  }

  .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus{
    background: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu>li>a{
    color: #fff;
  }
  .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{
    color: #88acb7;
    background: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{
    color: #88acb7;
  }
  #main-slider .slider-inner h2{
    font-size: 28px;
    text-indent: 0;
  }
  #main-slider .slider-inner p{
    font-size: 16px;
  }
  .mbt{
    margin-bottom: 30px;
  }

  #footer, #footer .text-right{
    text-align: center !important;
  }
}


.bar{
  color: #1e3114;
  font-size: 30px;
}
.bar:last-child{
  display: none;
}
.mar60{
  margin-top: 60px;
}

.dtext{
  font-size: 12px;
    letter-spacing: 0px;
    line-height: 22px;
    margin-top: 23px;

}