.byebye {display:none;}
/* following two declarations make the form text pin to the top of an inpout box when the user clicks to fill the field */
.form-control-placeholder {
  position: absolute;
  top: 0;
  padding: 12px 0 0 50px;
  transition: all 200ms;
  opacity: 0.6;
  font-weight:normal;
}
.form-control:focus + .form-control-placeholder,
.form-control:valid + .form-control-placeholder {
  font-size: 85%;
  transform: translate3d(0, -100%, 0);
  opacity: 1;
}
/* thats it for moving form text */

.animated-checkmark {
  display: inline-block;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 6px solid #28a745;
  position: relative;
  animation: scaleIn 0.3s ease-out forwards;
  margin-bottom: 20px;
}

.animated-checkmark::after {
  content: '';
  position: absolute;
  left: 40px;      /* adjust for horizontal alignment */
  top: 38px;       /* adjust for vertical alignment */
  width: 20px;     /* width of short arm */
  height: 45px;    /* height of long arm */
  border-right: 6px solid #28a745;
  border-bottom: 6px solid #28a745;
  transform: rotate(45deg);
  transform-origin: center;
  opacity: 0;
  animation: drawCheck 0.5s ease-out 0.3s forwards;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes drawCheck {
  to { opacity: 1; }
}


/* Fixed navbar */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 9999;
      background-color: #000000;
      border: none;
      min-height: 90px;
      margin-bottom: 0;
    }

    .navbar .container-fluid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 90px;
    }

    .navbar-brand {
      color: #ffffff;
      font-weight: bold;
      font-size: 20px;
      padding: 0;
      height:60px;
    }

    /* Right section */
    .navbar-right-section {
      display: flex;
      align-items: center;
    }

    /* Toggle */
    .navbar-toggle {
      border: none;
      background: none;
      padding: 20px 0 0 0;
      margin-left: 15px;
      box-shadow: none;
    }

    .navbar-toggle:hover,
    .navbar-toggle:focus {
      background: none !important;
    }

    .navbar-toggle .icon-bar {
      width: 28px;
      height: 3px;
      color: #ffffff;
      margin: 6px auto;
      transition: all 0.3s ease;
    }

    .navbar-toggle.x .icon-bar:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggle.x .icon-bar:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggle.x .icon-bar:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Nav links */
    .navbar-collapse {
      background-color: #000000;
    }

    .navbar-nav {
      margin: 0;
    }

    .navbar-nav > li > a {
      color: #ffffff !important;
      font-weight: bold;
      padding: 20px 15px;
    }

    .navbar-nav > li > a:hover,
    .navbar-nav > li > a:focus {
      color: #ffffff !important;
      background-color: #999999 !important;
    }

    /* Override Bootstrap's img styles */
    .navbar-logo {
      height: 60px;
      width: auto;
      display: inline-block;
      vertical-align: middle;
    }

    /* On mobile, center it cleanly */
    @media (max-width: 767px) {

  .navbar-nav {
    float: right;
    padding:5px 15px;
  }

  .navbar-nav > li {
    float: none;
    display: inline-block;
  }

  .navbar-nav > li > a {
    display: block;
    padding: 12px 15px;
    font-size: 18px;
  }
      .navbar-header {
        padding: 0 15px;
      }

      .navbar-logo {
      margin-top: 15px; /* (90 - 55) / 2 to center vertically */
      }

      .navbar .container-fluid {
        display: block;
      }

      .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
      }

      .navbar-right-section {
        justify-content: flex-end;
      }

      .navbar-collapse {
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background-color: #222222;
        z-index: 9998;
        box-shadow: none;
        display: none; /* default hidden */
      }

      .navbar-collapse.in {
        display: block !important;
        height: auto !important;
      }

      .navbar-collapse.collapsing {
        height: auto !important;
        transition: none !important;
        display: block !important;
      }
    }


/* Brand Colour Pallette
navbar/footer bg brighter blue: #333EDF
grey in logo: #D9D9D9
Button bg, green: #00BF63
link blue: #333EDF
highlight colour darker blue: #000000
Logo sizes: 160×44  180×50  240×66
*/

/***** Common CSS *****/
html,
body {
  height: 100%;
  width: 100%;
  max-width:100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #666;
  webkit-tap-highlight-color: #000000;
}
.img-responsive {
    margin: 0 auto;
}
.mt20{
  margin-top: 20px
}
.mt30{
  margin-top: 30px;
}
.mt40{
  margin-top: 40px
}
.mt50{
  margin-top: 50px
}
.mt80{
  margin-top: 80px
}
.mb80{
  margin-bottom: 80px;
}
.mb40{
  margin-bottom: 40px;
}
.mb20{
  margin-bottom: 20px;
}
.mr15{
  margin-right: 15px;
}
.faq-heading{
  text-transform: capitalize;
}
a {
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  color: #000000;
}
a:hover,
a:focus {
  color: #000000;text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.3;
}
h1{
  line-height: 1.3;
}
h2{
  line-height: 1.4;
  letter-spacing: 1px;
  color: #fff;
}
p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}
.bg-white {
  background-color: #fff;
}
.bd-awhite{
  background: #F4F7F7;
}
.bg-dark {
  background-color: #222222;
  color: white;
}
.text-faded {
  color: rgba(255, 255, 255, 0.7);
}
section {
  padding: 100px 0;
}
section .section-header{
  margin: 0 auto;
}
section .section-header i{
  color: rgba(0, 0, 0, 0.3);
  font-size: 32px;
  margin-bottom: 10px;
}
section .section-header h2{
  color: #666;
  font-weight: 700;
  font-size: 36px;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}
section .section-header p{
  font-weight: 500;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 30px;
}
section hr {
  background: #73458e none repeat scroll 0 0;
  border-color: #87509c;
  border-radius: 4px;
  border-width: 2px;
  height: 2px;
  margin-bottom: 19px;
  margin-top: 8px;
  max-width: 50px;
  opacity: 0.3;
  transition: all 0.35s ease 0s;
}
section:hover hr{
  max-width: 95px;
}
.bg-whitehr hr {
  border-color: #6C15A3;
}
aside {
  padding: 50px 0;
}
.no-padding {
  padding: 0;
}
.btn.btn-default{
  padding: 10px 20px;
  border-image: -moz-linear-gradient(-29deg, #983C80 0%, #87509c 100%) 1 1 1 1;
  border-image: -moz-linear-gradient(-29deg, #983C80 0px, #87509c 100%) 1 1 1 1;
  border-image: -moz-linear-gradient(-29deg, #983C80 0, #87509C 100%) 1 1 1 1;
  border-image: -webkit-linear-gradient(-29deg, #983C80 0, #87509C 100%) 1 1 1 1;
  border-image: -ms-linear-gradient(-29deg, #983C80 0, #87509C 100%) 1 1 1 1;
  border-style: solid;
  border-width: 2px;
  color: #87509C;
  -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
          transition: all 0.5s;
}
.btn.btn-default i {
  margin-left: 5px;
}
.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default.focus,
.btn.btn-default:active,
.btn.btn-default.active
{
  color: #fff
;  background-color: #000000;
}
.btn.btn-default:active,
.btn.btn-default.active {
  background-image: none;
}
.no-gutter > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}
.btn {
  border: none;
  font-weight: 700;
  text-transform: uppercase;
}
::-moz-selection {
  color: white;
  text-shadow: none;
  background: #000000;
}
::selection {
  color: white;
  text-shadow: none;
  background: #000000;
}
img::selection {
  color: white;
  background: transparent;
}
img::-moz-selection {
  color: white;
  background: transparent;
}

/***** Navbar CSS *****/
/*
.navbar-default {
  background-color: #000000;
  border-color: #000000;
  max-width:100%;
}

.navbar-default .navbar-header .navbar-brand {
  color: #6C15A3;
  font-weight: 700;
  text-transform: uppercase;
  height:66px;
  background: url('../images/abec-logo-240x55.jpg') no-repeat;
  max-width:240px;
  min-width: 240px;
  margin-top: 5px;
}
.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
  color: #eb3812;
}


.navbar-default .nav > li > a,
.navbar-default .nav > li > a:focus {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  background: #000000;
}
.navbar-default.affix .nav > li > a,
.navbar-default.affix .nav > li > a:focus{
  color:#fff;
  background: #000000;
}
.navbar-default .nav > li > a:hover,
.navbar-default .nav > li > a:focus:hover {
  color: #fff;
  background: #000000;
}

.navbar-right{
  padding-top: 15px;
  padding-right: 15px;
}

/***** Header CSS *****/

header {
  width: 100%;
  background-image: url('../images/abec-hero-bg.jpg');
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  text-align: center;
  color: #fff;
  height: 100%;
  display: block;
  overflow-y: hidden;
  position: relative;
}
.bg_overlay{
  background-color:#000000;
  bottom: 0;
  left: 0;
  opacity: 0.55;
  position: absolute;
  right: 0;
  top: 0;
}
.slide-content .bg_overlay{
  z-index: 1;
  opacity: 0.55;
}
header .header-content {
  height: 100vh;
  min-height: 750px;
  position: relative;
  padding: 100px 15px 0;
  width: 100%;
}
.header-content-inner {
  display: block;
  overflow: visible;
  position: relative;
  top: 25%;
}
.header-content-inner h1.heder-heading {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 0;
  margin-top: 0;
}
.header-content-inner p {
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0;
}
.custom_btn {
  background-color:#000000;
  border-radius: 2px;
  padding: 15px 10px;
  color: #fff;
  display:block;
  border: none !important;
  font-size: 18px;
  margin-top: 30px;
}
.custom_btn:hover,
.custom_btn:active,
.custom_btn:focus,
.custom_btn.active {
  padding: 15px 10px;
  color: #fff;
  background-color:#000000;
}
.custom_btn_orange {
  background-color:#000000;
  border-radius: 2px;
  padding: 15px 25px;
max-width:100%;
width:80%;
  color: #fff;
  border: none !important;
  font-size: 18px;
  margin-top: 30px;
}
.custom_btn_orange:hover,
.custom_btn_orange:active,
.custom_btn_orange:focus,
.custom_btn_orange.active {
  padding: 15px 25px;
  color: #fff;
  background-color:#000000;
}
.custom_btn_blue {
  background-color:#000000;
  border-radius: 2px;
  padding: 15px 25px;
  max-width:100%;
width:80%;
  display: block;
  color: #fff;
  border: none !important;
  font-size: 18px;
  margin-top: 30px;
}
.custom_btn_blue:hover,
.custom_btn_blue:active,
.custom_btn_blue:focus,
.custom_btn_blue.active {
  display: block;
  padding: 15px 25px;
  color: #fff;
  background-color:#000000;
}
.custom_btn_green {
  background-color:#000000;
  border-radius: 2px;
  display: block;
  padding: 15px 25px;
  width:100%;
  color: #fff;
  border: none !important;
  font-size: 18px;
  margin-top: 30px;
}
.custom_btn_green:hover,
.custom_btn_green:active,
.custom_btn_green:focus,
.custom_btn_green.active {
  display: block;
  padding: 15px 25px;
  background-color:#000000;
  color: #fff;
}
.default_color:hover{
  color: #fff;
}

/****** About CSS *****/

.about-des{
  padding: 0px 0px;
  margin: 0 0 15px 0;
}
.about-des h3{
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 28px;
  text-transform: capitalize;
}
.about-des p{
  font-weight: 500;
  font-size: 16px;
}

/**** Why Us CSS ****/

#why_us{
  background: #fafafa;
  padding: 0;
}
#why_us .why-us-img{
  height: 100vh;
  background-attachment: fixed;
  background-image: url('../images/50-50-bg.jpg');
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  -o-background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  bottom: 0;
  right: 0;
  top: 60;
  padding:0;
  margin:0;
}

#why_us .why-us-des{
  padding: 10px 20px 20px 20px;
}
.why-us-des h2{
  color: #555;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  font-size: 36px;
}

/***** Service CSS *****/

#service{
  background: #f1f1f1;
}
.service-box {
  border: 1px solid rgba(135, 80, 156, .1);
  padding: 25px 20px;
  margin-bottom: 30px;
  background: #F1F1F1;
  position: relative;
  -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
          transition: all 0.5s;
}
.service-wrap .service-box:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  z-index: 9;
  content: "";
  height: 0px;
  position: absolute;
  width: 0px;
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  visibility: hidden;
}
.service-wrap .service-box:after {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  z-index: 9;
  content: "";
  height: 0px;
  position: absolute;
  width: 0px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  visibility: hidden;
}
.service-wrap .box-content:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  z-index: 9;
  content: "";
  height: 0px;
  position: absolute;
  width: 0px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  visibility: hidden;
}
.service-wrap .box-content:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  z-index: 9;
  content: "";
  height: 0px;
  position: absolute;
  width: 0px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  visibility: hidden;
}
.service-wrap:hover .service-box:before,
.service-wrap:hover .service-box:after,
.service-wrap:hover .box-content:before,
.service-wrap:hover .box-content:after {
  visibility: visible;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
          transition: all 0.5s;
}
.service-box:hover{
  background: #fff
}
.service-box .service-icon {
  -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
          transition: all 0.5s;
}
.service-box .service-icon i{
  font-size: 48px;
  color: #000000;
}
.service-box:hover .service-icon i{
  font-size: 48px;
  color: #222222;
}
.service-box .box-content h3{
  color: #555;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
  text-transform: capitalize;
}
.service-box .box-content p{
  margin-bottom: 15px;
}
.service-box .box-content a{
  color: #555;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
}
.service-box .box-content a:hover{
  color: #000000;
  text-decoration: none;
}
.service-box .box-content a i{
  margin-left: 3px;
  -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
          transition: all 0.2s;
}
.service-box .box-content a:hover i{
  margin-left: 8px;
}

/***** Achievement CSS *****/

#achievement{
  position: relative;
  background-attachment: fixed;
  background-image: url('../images/abec-feature-bg.jpg');
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  bottom: 0;
  left: 0;
  top: 0;
}
#achievement .c_cover{
  background-color:#000000;
  bottom: 0;
  left: 0;
  opacity: 0.55;
  position: absolute;
  right: 0;
  top: 0;
}
.achievement-des{
  color: #fff;
  margin-bottom: 50px;
}
.achievement-des h2{
  font-weight: 700;
  font-size: 36px;
}

.achievement-des p{
  margin-bottom: 30px;
}

/**** Portfolio CSS ****/

#portfolio{
  background: #fff;
}
.btn-default.filter-button{
    font-size: 16px;
    border: 1px solid #f1f1f1;
    border-radius: 0;
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    background: #f1f1f1;
    padding: 6px 12px;
}
.btn-default.filter-button:hover{
    font-size: 16px;
    border: 1px solid #884E99;
    border-radius: 0;
    text-align: center;
    color: #fff;
    background-color: #d4b6e3;

}
.filter-button-active{
    background-image: -moz-linear-gradient(-29deg, #983C80 0px, #87509c 100%);
    background-image: -moz-linear-gradient(-29deg, #983C80 0, #87509C 100%);
    background-image: -webkit-linear-gradient(-29deg, #983C80 0, #87509C 100%);
    background-image: -ms-linear-gradient(-29deg, #983C80 0, #87509C 100%);
    color: #fff;
    border-color: #87509C;
    margin-bottom: 30px;
    font-size: 16px;
    border-radius: 0;
    text-align: center;
}
.filter-button-active:hover,
.filter-button-active.focus,
.filter-button-active:focus{
  color: #fff;
}
.gallery_product{
    margin-bottom: 30px;
}
.gallery_product img{
  width: 100%;
  display: block;
}
.gallery_product h3{
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #555;
  margin-bottom: 0;
}
#portfolio .btn-wrap {
  margin: 30px auto;
  width: 250px;
  z-index: 100;
}
.mfp-no-margins img.mfp-img {
  padding: 0;
}
.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}
.mfp-no-margins .mfp-container {
  padding: 0;
}

/***** Contact Us CSS *****/

#contact{
  background: #f1f1f1;
  margin-bottom: 0px;
}
.contact-info {
  background: #fff none repeat scroll 0 0;
  margin-bottom: 15px;
  padding: 16px 15px;
  box-shadow: 0 0 4px 1px rgba(143, 69, 141, 0.1);
}
.contact-info i{
  color: #000000;
  font-size: 44px;
  margin-bottom: 6px;
}
.contact-info p {
  margin-bottom: 0;
  font-size:20px;
}

/***** Footer CSS *****/

footer{
  background-color: #000000;
  padding: 40px 0;
  margin-top: -20px;
}
footer a {color:#fff; text-decoration: none;}
footer a:hover {color:#fff; text-decoration: underline;}

.copy-right{
  color: #fff;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 14px;
}

/**************************
        End Of CSS
**************************/