              
                html, body {
                  position: relative;
                  overflow-x: hidden; 
                  font-family: 'Poppins', sans-serif;
                }

                /*-----------------------------------------
                    Page Loader
                ------------------------------------------*/
                .page-loader {
                  display: block;
                  width: 100%;
                  height: 100%;
                  position: fixed;
                  top: 0;
                  left: 0;
                  background:white;
                  z-index: 100000; }

                .loader {
                  width: 50px;
                  height: 50px;
                  position: absolute;
                  top: 50%;
                  left: 50%;
                  margin: -25px 0 0 -25px;
                  font-size: 10px;
                  text-indent: -12345px;
                  border-top: 1px solid rgb(250, 4, 4);
                  border-right: 1px solid rgb(253, 251, 251);
                  border-bottom: 1px solid rgb(38, 253, 10);
                  border-left: 1px solid rgb(255, 10, 222);
                  border-radius: 50%;
                  -webkit-animation: spinner 30s infinite linear;
                  animation: spinner 50s infinite linear;
                  z-index: 100001; }

                @-webkit-keyframes spinner {
                  0% {
                    -webkit-transform: rotate(0deg);
                    -ms-transform: rotate(0deg);
                    transform: rotate(0deg); }
                  100% {
                    -webkit-transform: rotate(360deg);
                    -ms-transform: rotate(360deg);
                    transform: rotate(360deg); } }
               
                    @keyframes spinner {
                  0% {
                    -webkit-transform: rotate(0deg);
                    -ms-transform: rotate(0deg);
                    transform: rotate(0deg); }
                  100% {
                    -webkit-transform: rotate(360deg);
                    -ms-transform: rotate(360deg);
                    transform: rotate(360deg); } }
                .container {
                  position: relative;
                  z-index: 3; }

                /* overlay and pattern */
                .overlay, .color-overlay, .gradient-overlay {
                  min-width: 100vw;
                  position: absolute;
                  top: 0;
                  left: 0;
                  height: 100%;
                  width: 100%;
                  bottom: 0;
                  right: 0; }

                .color-overlay {
                  background: #000000;
                  opacity: 0.3; }

                .gradient-overlay {
                  opacity: 0.7;
                  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0a545d+0,000000+100&amp;1+0,0.3+100 */
                  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
                  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzBhNTQ1ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4zIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
                  /* FF3.6+ */
                  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0a545d), color-stop(100%, rgba(0, 0, 0, 0.3)));
                  /* Chrome,Safari4+ */
                  background: -webkit-linear-gradient(top, #0a545d 0%, rgba(0, 0, 0, 0.3) 100%);
                  /* Chrome10+,Safari5.1+ */
                  /* Opera 11.10+ */
                  /* IE10+ */
                  background: linear-gradient(to bottom, #0a545d 0%, rgba(0, 0, 0, 0.3) 100%);
                  /* W3C */
                  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a545d', endColorstr='#4d000000',GradientType=0 );
                  /* IE6-8 */ }

                /* section */
                .section {
                  padding: 90px 0;
                  position: relative;
                  z-index: 5;
                  background-color: #ffffff; }
                  .section.dark .section-heading span, .section.dark .section-heading h2 {
                    color: #ffffff; }

                .section-heading {
                  position: relative;
                  text-align: center;
                  color: #000000;
                  padding-bottom: 10px;
                  margin-bottom: 90px;
                  text-transform: uppercase; 
                }

                  @media only screen and (max-width: 992px) {
                    .section-heading {
                      margin-bottom: 60px; } }
                  .section-heading span {
                    margin-bottom: 15px;
                    letter-spacing: 1px;
                    margin-top: 0px;
                    font-size: 12px; 
                  }

                .section-heading::after {
                  content: '';
                  width: 16px;
                  height: 1px;
                  background-color: #000;
                  position: absolute;
                  left: -webkit-calc(50% - 8px);
                  left: calc(50% - 8px);
                  bottom: 0; }

                .dark-bg .section-heading {
                  color: #fff; 
                }

                .dark-bg .section-heading::after {
                  background-color: #fff; 
                }
     


                /* back to top button */
                #totop {
                  position: fixed;
                  bottom: 7px;
                  right: 7px;
                  z-index: 999;
                  background: #fff;
                  display: none;
                  height: 28px;
                  width: 28px;
                  text-align: center;
                  line-height: 28px;
                  font-size: 14px;
                  color: #000;
                  opacity: 0.6;
                  border-radius: 2px; }

                img {
                  max-width: 100%; }

                .form-control {
                  border-radius: 2px;
                  border: 1px solid #DFDFDF;
                  box-shadow: none; }
                  .form-control:focus {
                    box-shadow: none;
                    border-color: rgba(0, 0, 0, 0.8); }

                .icons-wrap, #icons {
                  margin-top: 40px;
                  margin-bottom: 80px; 
                }

                  .icons-wrap i, .icons-wrap li, #icons i, #icons li {
                    display: inline-block;
                    margin: 0 20px 20px 0px;
                    height: 50px;
                    width: 50px;
                    line-height: 50px;
                    text-align: center;
                    border: 1px solid #dadada;
                    font-size: 2em; 
                  }

                ul#icons {
                  list-style: none;
                  padding: 0; 
                }

                /**
                * Style for components
                **/
                a:focus {
                  outline: none; }

                .navbar-toggle {
                  
                  border: 0;
                }

                .navbar > .container .navbar-brand,
                .navbar > .container-fluid .navbar-brand {
                  font-family: 'Poiret One', cursive;
                  margin-left: 0;
                }

                .carousel-control.left,
                .carousel-control.right {
                  background: none; }

                .alert {
                  padding: 5px 12px;
                  border-radius: 2px; }

                .nav-tabs > li > a {
                  border-radius: 2px 2px 0 0;
                  color: #fa2b2b;
                }

             

                .nav-tabs {
                  margin-bottom: 30px; }

              
                html,
                body {
                  min-height: 100%;
                  color: #050001;
                  font-family: 'Crimson Text', serif;
                  font-weight: 900;
                  line-height: 1.45;
                  -webkit-font-smoothing: antialiased;
                  -moz-osx-font-smoothing: grayscale;
                  text-rendering: optimizeLegibility; 
                }

                h1,
                h2,
                h3,
                h4,
                h5 {
                  font-family: 'Poiret One', cursive;
                  color: #050001; }

                h1 {
                  color: #050001;
                  font-size: 60px;
                  font-weight: 100;
                  letter-spacing: 8px;
                  margin-bottom: 15px;
                  margin-top: 0;
                  text-transform: uppercase; 
                }

                  @media only screen and (max-width: 767px) {
                    h1 {
                      font-size: 42px;
                      letter-spacing: 4px; 
                    } 
                    }

                h2 {
                  font-size: 36px;
                  font-weight: 300;
                  text-transform: uppercase;
                  margin-top: 0;
                  margin-bottom: 0px;
                  word-spacing: 8px;
                  letter-spacing: 2px; 
                }

                  @media only screen and (max-width: 767px) {
                    h2 {
                      font-size: 30px;
                      letter-spacing: 1px;
                      word-spacing: 2px;
                      } 
                    }

                h3 {
                  font-size: 30px;
                  margin-bottom: 20px;
                  text-transform: uppercase;
                  font-weight: 800;
                }

                h4 {
                  font-size: 18px;
                  word-spacing: 3px;
                  text-transform: uppercase;
                  letter-spacing: 3px;
                  margin-bottom: 25px;
                  font-weight: 800;
                }
                  @media only screen and (max-width: 992px) {
                    h4 {
                      letter-spacing: 1px; } }

                h5 {
                  font-size: 16px;
                  text-transform: uppercase;
                  margin-bottom: 15px;
                  color:white;
                }

                h6 {
                  text-transform: uppercase;
                  font-size: 12px;
                  letter-spacing: 1px; }

                p {
                  font-family: 'Crimson Text', serif;
                  font-weight: 600;
                  font-size: 16px;
                  line-height: 1.6;
                  letter-spacing: 0.033em;
                  color:#26160E;
                  text-align: justify;
                  text-justify: inter-word;

                }

                .center{
                  font-family: Calibri;
                  text-align: justify;
                  text-justify: inter-word;
                }
                  p.led {
                    font-size: 1.2em;
                    margin-bottom: 40px; }
                    p.led:first-letter {
                      font-size: 4em;
                      float: left;
                      line-height: 50px; }

                .dark-bg h1,
                .dark-bg h2,
                .dark-bg h3 {
                  color: #ffffff; }

                blockquote p {
                  font-family: serif;
                  font-style: italic;
                  font-size: 18px;
                  letter-spacing: 0; }

                .plain-list li {
                  line-height: 2.2em; }

                /*-----------------*/
                /* Global Styles   */
                /*-----------------*/
                .btn {
                  border-radius: 2px;
                  font-size: 12px;
                  padding: 10px 35px;
                  letter-spacing: 2px;
                  line-height: 6px;
                  text-transform: uppercase;
                  vertical-align: middle;
                  -webkit-transform: translateZ(0);
                  transform: translateZ(0);
                  box-shadow: 0 0 1px transparent;
                  -webkit-backface-visibility: hidden;
                  backface-visibility: hidden;
                  -moz-osx-font-smoothing: grayscale;
                  position: relative;
                  -webkit-transition-property: color;
                  transition-property: color;
                  -webkit-transition-duration: 0.3s;
                  transition-duration: 0.3s; }

                .btn:before {
                  content: "";
                  position: absolute;
                  z-index: -1;
                  top: 0;
                  left: 0;
                  right: 0;
                  bottom: 0;
                  background: rgb(138, 137, 137);
                  -webkit-transform: scaleY(0);
                  -ms-transform: scaleY(0);
                  transform: scaleY(0);
                  -webkit-transform-origin: 50% 0;
                  -ms-transform-origin: 50% 0;
                  transform-origin: 50% 0;
                  -webkit-transition-property: -webkit-transform;
                  transition-property: transform;
                  -webkit-transition-duration: 0.3s;
                  transition-duration: 0.3s;
                  -webkit-transition-timing-function: ease-out;
                  transition-timing-function: ease-out; }

                .btn:hover, .btn:focus, .btn:active {
                  color: white;
                  outline: none; }

                .btn:hover:before, .btn:focus:before, .btn:active:before {
                  -webkit-transform: scaleY(1);
                  -ms-transform: scaleY(1);
                  transform: scaleY(1); }

                /*-----------------*/
                /* Solid Buttons   */
                /*-----------------*/
                .btn-default {
                  background-color: rgb(138, 137, 137);
                  border: 1px solid #000000;
                  color: #031313; }
                  .btn-default:before {
                    background: rgb(138, 137, 137); }
                  .btn-default:hover, .btn-default:active, .btn-default:focus {
                    background-color: #fff;
                    color: #000000; }

                .btn-mild::before {
                  background: rgb(138, 137, 137); }
                .btn-mild:hover, .btn-mild:active, .btn-mild:focus {
                  color: #000000; }

                .btn-dark {
                  background-color: #000;
                  color: #dadada; }
                  .btn-dark:hover, .btn-dark:active, .btn-dark:focus {
                    color: silver; }

                /*-----------------*/
                /* Outline Buttons */
                /*-----------------*/
                .btn-default-o {
                  background-color: transparent;
                  border: 1px solid #fff;
                  color: #fff; }

                .btn-default-o:hover, .btn-default-o:focus {
                  color: #FAFAFA; }

                .btn-list {
                  margin-bottom: 0; }
                  .btn-list button {
                    margin-right: 15px;
                    margin-bottom: 15px; }

                .btn.btn-round {
                  border-radius: 14px; }
                  .btn.btn-round.btn:before {
                    border-radius: 14px; }

                /*bootstrap buttons*/
                .btn-lg {
                  padding: 15px 60px; }

                .btn-sm {
                  padding: 8px 20px; }

                .btn-xs {
                  padding: 6px 10px; }

                .btn-primary:active, .btn-primary:hover, .btn-primary:focus {
                  color: #337ab7; }

                .btn-success:active, .btn-success:hover, .btn-success:focus {
                  color: #5cb85c; }

                .btn-info:active, .btn-info:hover, .btn-info:focus {
                  color: #46b8da; }

                .btn-warning:active, .btn-warning:hover, .btn-warning:focus {
                  color: #eea236; }

                .btn-danger:active, .btn-danger:hover, .btn-danger:focus {
                  color: #d43f3a; }

                .main-navigation {
                  
                  -webkit-transition: all 0.4s ease;
                  transition: all 0.4s ease; 
                  }

                  .main-navigation .navbar-brand {
                    font-family: 'Raleway', sans-serif;
                    height: auto;
                    padding: 22px 15px 10px 15px;
                    -webkit-transition: all 0.4s ease;
                    transition: all 0.4s ease; 
                  }

          .main-navigation .navbar-brand a {
            color: rgb(4, 0, 255);
            font-size: 26px;
            text-transform: uppercase;
            letter-spacing: 2px; 
          
          }

          .main-navigation .navbar-brand a em {
          font-style: normal;
          text-transform: lowercase;
          background-color: rgba(255, 255, 255, 0.3);
          width: 8px;
          display: inline-block;
          height: 20px;
          text-align: center;
          letter-spacing: 0px;
          padding: 10px;
          box-sizing: content-box;
          margin: 0px 5px;
          border-radius: 2px; 
        }

        .main-navigation .navbar-brand a:focus,
        .main-navigation .navbar-brand a:hover {
          text-decoration: none; 
        }

      .main-navigation .navbar-toggle {
        padding: 0 15px;
        color: #000000;
        border-radius: 2px;
        font-size: 28px; 
      }

      .main-navigation .navbar-nav > .dropdown.open > a {
        background: transparent; 
      }
      
    @media only screen and (max-width: 767px) {
      .main-navigation .navbar-nav > .dropdown.open > a {
        border-bottom: 1px solid rgba(73, 71, 71, 0.15); 
      } 
    }

    .main-navigation .navbar-nav > .dropdown.open > a span {
      background: white;
      color: black; 
    }

      @media only screen and (max-width: 767px) {
        .main-navigation .navbar-nav > .dropdown.open > a span {
          background: transparent;
          color: white; 
        } 
      }

  .main-navigation .navbar-nav li a {
    color: white;
    background: transparent;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: -1px;
    padding: 40px 20px 15px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative; 
  }

    @media only screen and (max-width: 767px) {
      .main-navigation .navbar-nav li a {
        border-bottom: 1px solid rgba(73, 71, 71, 0.15); 
       } 
      }

    .main-navigation .navbar-nav li a span {
      padding: 1px 4px;
      border-radius: 2px;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; 
    }

    .main-navigation .navbar-nav li a:hover, .main-navigation .navbar-nav li a:focus {
      background-color: rgb(138, 137, 137); }
      .main-navigation .navbar-nav li a:hover span, .main-navigation .navbar-nav li a:focus span {
        background: white;
        color: black; 
      
      }

        @media only screen and (max-width: 767px) {
          .main-navigation .navbar-nav li a:hover span, .main-navigation .navbar-nav li a:focus span {
            background: transparent;
            color: white; 
            } 
          }
  .main-navigation .navbar-nav li.active a {
    background-color: rgba(67, 2, 245, 0); 
  }

    .main-navigation .navbar-nav li.active a span {
      background: white;
      color: #000000; 
    }

  .main-navigation .dropdown-toggle::after {
    position: absolute;
    display: block;
    right: 0;
    top: 67%;
    margin-top: -6px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 9px;
    content: "\f107";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; 
  }

    @media (max-width: 767px) {
      .main-navigation .dropdown-toggle::after {
        right: 7px; 
        } 
      }

  .main-navigation .dropdown-toggle.open::after {
    content: "\f106"; 
  }

  @media (max-width: 767px) {
    .main-navigation .open > .dropdown-toggle::after {
      content: "\f106"; 
    } 
  }

  .main-navigation .dropdown-menu {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 0;
    border: 0;
    padding: 0;
    box-shadow: none;
    min-width: 180px; 
  }

    .main-navigation .dropdown-menu li a {
      border-bottom: 1px solid rgba(73, 71, 71, 0.15);
      padding: 25px 20px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 11px;
      line-height: 1px; 
    }
      .main-navigation .dropdown-menu li a:hover {
        color: #ffffff;
        background: #000000;
        border-bottom-color: rgba(73, 71, 71, 0.15); 
      }

    .main-navigation .dropdown-menu li.open > a {
      color: #ffffff;
      background: #000000; }

      .main-navigation .dropdown-menu li.open > a:hover {
        color: white; }

    .main-navigation .dropdown-menu.left-side .dropdown-menu {
      border: 0;
      border-right: 1px solid rgba(73, 71, 71, 0.15);
      right: 100%;
      left: auto; 
    }

    .main-navigation .dropdown-menu .dropdown-menu {
      border-left: 1px solid rgba(73, 71, 71, 0.15);
      left: 100%;
      right: auto;
      top: 0;
      margin-top: 0; 
    }

      @media only screen and (max-width: 767px) {
        .main-navigation .dropdown-menu .dropdown-menu {
          padding-left: 30px; 
        } 
      }
    @media only screen and (min-width: 768px) {
      .main-navigation .dropdown-menu .dropdown-toggle:after {
        content: '\f105';
        top: 50%;
        right: 8px; 
      } 
    }

.navbar-solid {
  background-color: white;
  color: #000000;
 }

  .navbar-solid .navbar-brand {
    padding: 10px 15px 8px; 
  }

  .navbar-solid .navbar-nav > li > a {
    padding: 20px;
  color:#000000; }

  .navbar-solid .dropdown-toggle:after {
    top: 51%; 
  }

@media only screen and (max-width: 992px) {
  .main-navigation .navbar-nav > li > a {
    padding: 20px 10px 15px;
    letter-spacing: 1px; 
   }

  .main-navigation .navbar-brand {
    padding: 8px 0 0 15px; 
   } 
  }

@media only screen and (max-width: 767px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
   } }
.header-wrapper {
  background: url(../images/intro/time.jpg) no-repeat center center;
  background-size: cover;
  display: table;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow-x: hidden; }
  @media screen and (max-width: 767px) and (orientation: landscape) {
    .header-wrapper {
      height: auto;
      min-height: 100vh;
      padding: 0px; } }
  .header-wrapper .header-wrapper-inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle; }
    .header-wrapper .header-wrapper-inner.flexslider .slides li {
      height: 100vh;
      min-height: 650px; }
    .header-wrapper .header-wrapper-inner .intro p {
      color: rgba(255, 255, 255, 0.75);
      letter-spacing: 4px;
      margin-bottom: 80px;
      text-transform: uppercase; }
      @media only screen and (max-width: 992px) {
        .header-wrapper .header-wrapper-inner .intro p {
          margin-bottom: 30px; } }
    .header-wrapper .header-wrapper-inner .arrow-down {
      bottom: 10%;
      display: block;
      position: absolute;
      width: 100%;
      z-index: 3; }
      @media only screen and (max-width: 767px) {
        .header-wrapper .header-wrapper-inner .arrow-down {
          bottom: 0; } }
      .header-wrapper .header-wrapper-inner .arrow-down a {
        display: inline-block;
        padding: 20px 35px; }
        .header-wrapper .header-wrapper-inner .arrow-down a:hover {
          text-decoration: none; }
        .header-wrapper .header-wrapper-inner .arrow-down a i {
          font-size: 2em;
          color: #fff;
          -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite; }
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  60% {
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }
.video-controls-box {
  position: absolute !important;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 1; }

.header-classic {
  display: block;
  height: auto;
  overflow-y: hidden;
  padding: 200px 0 90px 0; }
  .header-classic .header-wrapper-inner {
    display: block; }

.header-inner {
  padding-top: 200px;
  background-color: black;
  background-image: url(../images/backgrounds/bg-testimonial.jpg);
  background-size: cover;
  text-align: center; }
  .header-inner .breadcrumb {
    background-color: transparent;
    color: rgba(254, 254, 255, 0.7); }
    .header-inner .breadcrumb a {
      color: inherit; }
    .header-inner .breadcrumb i {
      margin: 0 10px; }

.flexslider {
  margin: 0;
  border: 0;
  display: block !important; }
  .flexslider .slides > li {
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat; }
    .flexslider .slides > li .intro-wrapper {
      display: table;
      width: 100%;
      height: 100vh; }
      .flexslider .slides > li .intro-wrapper > .intro {
        display: table-cell;
        vertical-align: middle;
        position: relative;
        z-index: 1; }

.slider-classic {
  display: block;
  height: auto;
  overflow-y: hidden; }
  .slider-classic .flexslider .slides > li {
    height: auto !important;
    padding: 200px 0 90px 0;
    min-height: auto !important; }

.flex-direction-nav a {
  height: 50px;
  top: 50vh; }

.flex-direction-nav a.flex-prev:before {
  content: "\f3d2"; }

.flex-direction-nav a.flex-next:before {
  content: "\f3d3"; }

.flex-direction-nav a:before {
  font-family: "Ionicons";
  color: white; }

.da-thumbs {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0; }

.da-thumbs li {
  float: left;
  background: #fff;
  padding: 0px;
  position: relative;
  width: 25%;
  padding: 5px; }
  @media only screen and (max-width: 992px) {
    .da-thumbs li {
      width: 33%; } }
  @media only screen and (max-width: 767px) {
    .da-thumbs li {
      width: 50%; } }

.portfolio-grid.three-col li {
  width: 33.333%; }
  @media only screen and (max-width: 992px) {
    .portfolio-grid.three-col li {
      width: 33%; } }
  @media only screen and (max-width: 767px) {
    .portfolio-grid.three-col li {
      width: 50%; } }
.portfolio-grid.two-col li {
  width: 50%; }

.da-thumbs li.x2 {
  width: 50%; }

.da-thumbs li a,
.da-thumbs li a img {
  display: block;
  position: relative;
  width: 100%; }

.da-thumbs li a {
  overflow: hidden; }

.da-thumbs li a .portfolio-detail-overlay {
  position: absolute;
  background: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  text-align: center;
  width: 100%;
  height: 100%; }

.da-thumbs li a div span {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 2px;
  font-size: 12px;
  display: block;
  letter-spacing: 1px; }

.portfolio-detail-overlay h4 {
  color: #FFF;
  margin-top: 0px;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-family: 'Rototo' sans-serif; }

.portfolio-detail-overlay .middle-align-wrap {
  display: table;
  height: 100%;
  width: 100%; }
  .portfolio-detail-overlay .middle-align-wrap .middle-align-cell {
    display: table-cell;
    vertical-align: middle; }

.btn-isotop {
  background: none;
  border: 0;
  padding: 6px 20px 15px;
  color: #000;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden; }
  .btn-isotop:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    top: 20px;
    background: #000000;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  .btn-isotop:active, .btn-isotop:focus, .btn-isotop:hover {
    color: #000;
    box-shadow: none;
    outline: none !important; }
    .btn-isotop:active:before, .btn-isotop:focus:before, .btn-isotop:hover:before {
      left: 0;
      right: 0; }

.portfolio-details-single {
  margin-top: 60px; }
  .portfolio-details-single h3 {
    margin-bottom: 40px;
    position: relative; }
    .portfolio-details-single h3:before {
      position: absolute;
      content: '';
      width: 60px;
      background-color: black;
      height: 1px;
      bottom: -15px; }
  .portfolio-details-single ul {
    list-style: none;
    line-height: 2.5em;
    padding-left: 0; }



.services {
  background: rgba(238, 235, 235, 0.726);
  background-size: cover; }
  .services .service {
    padding: 30px 15px;
    position: relative;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s cubic-bezier(0.63, 0.32, 0.05, 0.39) 0s;
    transition: all 0.3s cubic-bezier(0.63, 0.32, 0.05, 0.39) 0s; }
    .services .service.last {
      margin-bottom: 0; }
    @media only screen and (max-width: 992px) {
      .services .service {
        padding: 2px;
        margin-bottom: 40px; } }
    .services .service .service-icon span {
      font-size: 4em; }
  .services .section-content .secondrow .service {
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .services .section-content .secondrow .service {
        margin-bottom: 40px; }
        .services .section-content .secondrow .service.last {
          margin-bottom: 0; } }
  .services .service::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 1px;
    width: -webkit-calc(100% - 2px);
    width: calc(100% - 2px);
    height: 103%;
    border-top: 1px solid rgba(253, 253, 253, 0);
    border-bottom: 1px solid rgba(253, 253, 253, 0);
    -webkit-transition: all 0.5s cubic-bezier(0.63, 0.32, 0.05, 0.39) 0s;
    transition: all 0.5s cubic-bezier(0.63, 0.32, 0.05, 0.39) 0s; }
  .services .service::after {
    content: '';
    position: absolute;
    top: 1px;
    left: -3px;
    width: -webkit-calc(100% + 6px);
    width: calc(100% + 6px);
    height: 99%;
    border-right: 1px solid rgba(253, 253, 253, 0);
    border-left: 1px solid rgba(253, 253, 253, 0);
    -webkit-transition: all 0.5s cubic-bezier(0.63, 0.32, 0.05, 0.39) 0s;
    transition: all 0.5s cubic-bezier(0.63, 0.32, 0.05, 0.39) 0s; }
  .services .service:hover {
    background-color: #FAFAFA; }
  .services .service:hover::before,
  .services .service:hover::after {
    border-color: #FAFAFA; }


.contact {
  background-color: rgba(238, 235, 235, 0.726); }
  .contact .section-content {
    color: #000; }
    .contact .section-content h5 {
      margin-bottom: 30px;
      letter-spacing: 1px;
      text-transform: none;
     }
    .contact .section-content .contact-form {
      margin-bottom: 30px; }
      @media only screen and (max-width: 767px) {
        .contact .section-content .contact-form {
          margin-bottom: 60px; } }
      .contact .section-content .contact-form .form-group {
        margin-bottom: 24px; }
      .contact .section-content .contact-form .form-control {
        color: #050001;
        border: 1px solid #050001;
        padding: 6px 20px;
        border-radius: 2px;
        height: auto;
        box-shadow: none; }
      .contact .section-content .contact-form .form-control:focus {
        box-shadow: none;
        outline: none; }
      .contact .section-content .contact-form textarea {
        min-height: 160px; 
      }

    .contact .section-content .contact-info-wrap h5 {
      margin-bottom: 15px !important;
      text-decoration: underline; 
    }

    .contact .section-content .contact-info-wrap .contact-info {
      line-height: 20px;
      font-size: 12px;
      letter-spacing: 1px;
      font-family: 'Old Standard TT', serif;
    
    }

@media (min-width: 768px) {
  .contact .section-content .contact-form {
    margin-bottom: 0; } }
.contact-full-width {
  padding-bottom: 0 !important; }
  .contact-full-width .contact-info-wrap {
    margin: 60px 0; }
  .contact-full-width #map {
    height: 400px; }


.blog .blog-post {
  margin-bottom: 40px; }
  .blog .blog-post header {
    position: relative; }
    .blog .blog-post header .date {
      background-color: #3a3939;
      position: absolute;
      padding: 10px;
      text-align: center;
      font-weight: 500;
      z-index: 9;
      color: #faf8f8; }
  .blog .blog-post .blog-content {
    padding: 15px 28px;
    border: 1px solid #f5f5f5; }
    .blog .blog-post .blog-content h4 {
      margin: 20px 0;
      letter-spacing: 1px; }
      .blog .blog-post .blog-content h4 a {
        color: #333; }
    .blog .blog-post .blog-content .post-meta {
      text-transform: uppercase;
      margin-bottom: 18px;
      padding-bottom: 10px;
      font-size: 12px;
      border-bottom: 1px solid #F5F5F5; }
      .blog .blog-post .blog-content .post-meta span {
        color: #CCC; }
        .blog .blog-post .blog-content .post-meta span:first-child a {
          color: #848484; }
        .blog .blog-post .blog-content .post-meta span a {
          color: #CCC;
          border-bottom: 1px transparent; }
        .blog .blog-post .blog-content .post-meta span a:hover {
          text-decoration: none;
          border-bottom-style: solid;
          border-color: inherit; }
    .blog .blog-post .blog-content .post-meta span {
      padding-right: 10px;
      border-right: 1px solid #CCC;
      margin-right: 10px; }
      .blog .blog-post .blog-content .post-meta span:last-child {
        margin-right: 0;
        border-right: 0;
        padding-right: 0; }
    .blog .blog-post .blog-content p {
      color: #67666a;
      line-height: 22px; }
  .blog .blog-post footer {
    border: 1px solid #DDD;
    padding: 0px 15px; }
    .blog .blog-post footer .comment-count {
      color: #000;
      position: relative;
      padding-left: 25px; }
    .blog .blog-post footer .comment-count:hover,
    .blog .blog-post footer .comment-count:focus {
      color: #000; }
    .blog .blog-post footer .read-more {
      color: #000;
      position: relative;
      padding-left: 25px;
      padding-right: 0;
      text-transform: uppercase; }
    .blog .blog-post footer .read-more:hover,
    .blog .blog-post footer .read-more:focus {
      color: #000; }

@media (min-width: 768px) {
  .blog .blog-post header .image-slider-carousel .carousel-control.left {
    top: 200px;
    bottom: 5px;
    left: 220px; }
  .blog .blog-post header .image-slider-carousel .carousel-control.right {
    top: 200px; } }
@media (min-width: 992px) {
  .blog .blog-post header .image-slider-carousel .carousel-control.left {
    top: 210px;
    bottom: 5px;
    left: 235px; }
  .blog .blog-post header .image-slider-carousel .carousel-control.right {
    top: 210px;
    right: 10px;
    bottom: 5px; } }
.blog-standard .blog-post {
  margin-bottom: 80px; }
  .blog-standard .blog-post:last-child {
    margin-bottom: 0; }
  .blog-standard .blog-post .featured-image {
    margin-bottom: 30px; }
  .blog-standard .blog-post .post-title {
    margin-bottom: 15px; }
    .blog-standard .blog-post .post-title > a {
      color: #5c5c5c; }
      .blog-standard .blog-post .post-title > a:hover {
        color: #000000;
        text-decoration: none; }
  .blog-standard .blog-post .post-meta {
    color: silver;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 30px; }
    .blog-standard .blog-post .post-meta a {
      color: #656565; }
    .blog-standard .blog-post .post-meta span {
      margin: 0 6px; }
  .blog-standard .blog-post .read-more {
    margin-top: 25px; }
    .blog-standard .blog-post .read-more a {
      text-transform: uppercase;
      color: black;
      -webkit-transition: all 0.2s;
      transition: all 0.2s; }
      .blog-standard .blog-post .read-more a:hover {
        color: silver;
        text-decoration: none; }

/*overriding bootstrap's default pagination */
.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px; }

.pagination > li {
  display: inline-block;
  margin-right: 8px; }

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: black;
  border-color: black; }

.pagination > li > a, .pagination > li > span {
  color: #909090; }

.sidebar {
  padding: 0 0 0 30px; }
  .sidebar .widget {
    margin-bottom: 60px; }
    .sidebar .widget.popular-posts .widget-content ul {
      padding: 15px 0 0 0;
      list-style: none;
      color: #b0b0b0; }
      .sidebar .widget.popular-posts .widget-content ul li {
        margin-bottom: 30px; }
      .sidebar .widget.popular-posts .widget-content ul .thumb {
        margin-right: 10px;
        margin-top: -10px; }
      .sidebar .widget.popular-posts .widget-content ul .title {
        color: gray; }
    .sidebar .widget.popular-tags a {
      margin-bottom: 6px; }
    .sidebar .widget.categories ul {
      list-style: none;
      padding: 0; }
      .sidebar .widget.categories ul li {
        line-height: 3em; }
        .sidebar .widget.categories ul li:before {
          content: "\f101";
          font: normal normal normal 14px/1 FontAwesome;
          margin-right: 15px; }
        .sidebar .widget.categories ul li a {
          color: black; }
          .sidebar .widget.categories ul li a:hover {
            color: gray; }

.left-sidebar .sidebar {
  padding: 0 30px 0 0; }

.blog-grid .blog-element {
  max-height: 290px;
  overflow: hidden; }
  .blog-grid .blog-element img {
    width: 100%; }

#disqus_thread {
  margin-top: 40px; }


.footer {
  background-color: #000;
  color: #000;
  padding: 32px 0; }
  @media only screen and (max-width: 767px) {
    .footer {
      text-align: center; } }
  .footer .copyright {
    color: #FAFAFA;
    margin: 0;
    line-height: 100%;
    display: inline-block; }
    @media only screen and (max-width: 767px) {
      .footer .copyright {
        margin-bottom: 15px; } }
  .footer .footer-menu {
    color: #FAFAFA; }
    .footer .footer-menu a {
      color: inherit; }
  
@media (min-width: 992px) {
  .footer .footer-menu li:last-child {
    padding-right: 0; }
  .footer .footer-social-block li a {
    border-left: 1px solid #464646;
    padding: 5px 15px; }
  .footer .footer-social-block li:last-child a {
    border-right: 1px solid #464646; } }
.footer-widgets {
  background: rgb(138, 137, 137);
  color: #FAFAFA; }
  .footer-widgets h4 {
    color: #FFFFFF;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #3c3c3c; }
  .footer-widgets .content-wrap.widget-contact {
    padding-left: 25px; }
    .footer-widgets .content-wrap.widget-contact ul {
      padding: 0;
      list-style: none;
      margin: 0; }
      .footer-widgets .content-wrap.widget-contact ul li {
        margin-bottom: 25px; }
        .footer-widgets .content-wrap.widget-contact ul li i {
          margin-right: 6px; }
  .footer-widgets .content-wrap.widget-recent-posts {
    padding-left: 25px; }
    .footer-widgets .content-wrap.widget-recent-posts ul {
      padding: 0;
      list-style: none;
      margin: 0; }
      .footer-widgets .content-wrap.widget-recent-posts ul li {
        margin-bottom: 20px; }
        .footer-widgets .content-wrap.widget-recent-posts ul li .post-title {
          display: block;
          color: #ffffff; }
        .footer-widgets .content-wrap.widget-recent-posts ul li .author {
          color: inherit; }
  .footer-widgets .content-wrap.widget-gallery {
    padding-left: 25px; }
    .footer-widgets .content-wrap.widget-gallery a {
      display: block;
      width: 40%;
      margin-right: 5%;
      margin-bottom: 5%;
      height: 1px;
      padding-bottom: 20%;
      float: left;
      background-color: #0DFC71;
      background-size: cover;
      -webkit-transition: opacity 0.2s;
      transition: opacity 0.2s; }
      .footer-widgets .content-wrap.widget-gallery a:hover {
        opacity: 0.75; }
  @media only screen and (max-width: 991px) {
    .footer-widgets .content-wrap {
      margin-bottom: 80px; } }
  @media only screen and (max-width: 767px) {
    .footer-widgets .content-wrap {
      padding-left: 25px; } }

      hr.style-two {
        border: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    }

    .about-us{
      border-left: 1px solid #8B8989;
      border-right: 1px solid #8B8989;
      padding-left: 25px;
      padding-right: 25px;
      font-weight: bold;
      /*font-family: 'Old Standard TT', serif;*/
      /*text-align: center;*/
     
}

.double{
 
 color: rgb(3, 1, 8);
 font-style: bold;
 font-size: 1.3em;
 

}

#customerName{

  text-align: center;
  font-family: 'Josefin Slab', serif;
  color:#080808;
  width:130px;
  height: 80px;
  padding:20px;
  width: 200px;
  
}

#customerSays{
  
  text-align: right;
  font-family: Calibri;
  text-decoration: bold;
  background: rgba(238, 235, 235, 0.726);
  border-radius: 5px 20px 5px;
  padding:20px;
  color: #000;
  
  
}

#myadd{

  padding: 15px;
}

a {
  color: rgb(219, 214, 217);
}

a:hover { 
  color:white;
  text-decoration: none;
}

#support{

  text-align: center;
}

.centers{

  font-family: calibri;
  padding: 70px 0;
  text-align: center;
  
}

.list{

  text-align: justify;
  font-family: calibri;
 
}

#privacy-adjustment, #terms-adjustment {
  margin-top: 10%;
}