:root {
  font-size: 16px;
}
* {
  /* Info: background size 1280px x 720px */
  /*border: 1px solid blue;*/
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  overflow-x: hidden;
}

.font-16 {
  font-size: 16px;
}

.fixed-background {
  background: url('/images/white-background11.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

/*body::-webkit-scrollbar {
  width: 0.95em;
  background-color: #969696;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

body::-webkit-scrollbar-thumb {
  height: 15.2em;
  background-color: rgba(11, 11, 11, 0.9);
  outline: 1px solid rgba(11, 11, 11, 0.9);
}*/
header {
  background: url('/images/elarko_main.jpg') no-repeat center center;
   /* background: url('/images/elarko_jumbo.jpg') no-repeat center center;*/
  background-size: cover;
  height: 100vh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  text-align: center;
  color: #FFF;
  text-shadow: 1px 1px 1px #000;
}
.margin-top {
  margin-top: 80px;
}

.margin-bottom {
  margin-bottom: 40px;
}

/* Navbar */
.navbar {
  border: none;
  border-radius: 0;
  background-color: rgba(11, 11, 11, 0.9);
}

::-webkit-scrollbar, -moz-scrollbar, -o-scrollbar {
  display: none;
}


.navbar-nav {
  margin-top: 0.8em;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
}
.navbar-nav a {
  padding: 0.3em 1em 0.3em 1em !important;
  margin: 0.5em 0.4em 0.5em 0.4em;
}
.navbar .navbar-nav > li > a {
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #000;
}
.navbar a:hover, .navbar .navbar-nav > li > a:hover, .navbar-nav > li.active > a {
  border-top: 0.2em solid #689600;
  border-bottom: 0.2em solid #f5f5f5;
  background: none;
  padding: 0.4em 1em 0.4em 1em !important;
  margin: 0.3em 0.4em 0.2em 0.4em;
}

.navbar .navbar-nav > li > a:focus {
  background: none;
}
button .icon-bar {
  background-color: #fff;
}
#logo {
  height: 2em;
  width: auto;
}

@media (max-width: 768px) {
  .navbar .navbar-nav > li > a {
    text-align: center;
  }
  .navbar a:hover, .navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus, .navbar-nav > li.active > a {
    margin-left: 6em;
    margin-right: 6em;
  }
}

/* jumbotron */
.jumbo-text {
  padding: 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
}

.jumbo-btn, .jumbo-btn:focus {
  position: relative;
  display: block;
  outline: 0;
  overflow: hidden;
  background: none;
  z-index: 1;
  cursor: pointer;
  background: rgba(104, 150, 0, 1);
  opacity: 0.9;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 2px;
  height: auto;
  width: 12em;
  margin: 60px 7px 0 0;
  padding: 0.7rem;
  text-align: center;
  font-size: 22px;
  color: #FFF;
  border: 2px solid #FFF;
  transition: 0.5s ease-in;
  -o-transition: 0.5s ease-in;
  -ms-transition: 0.5s ease-in;
  -moz-transition: 0.5s ease-in;
  -webkit-transition: 0.5s ease-in;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  text-decoration: none;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
}

.jumbo-btn:hover {
  background: rgba(104, 150, 0, 0.6)/*rgba(100, 101, 104, 0.6)*/;
  text-shadow: 1px 1px 0.5px #000;
  border: 2px solid #FFF;
  text-decoration: none;
  color: #fff;
}

.animated2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes pulsing {
from {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

50% {
  -webkit-transform: scale3d(1.03, 1.03, 1.03);
  transform: scale3d(1.03, 1.03, 1.03);
}

to {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
}

@keyframes pulsing {
from {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

50% {
  -webkit-transform: scale3d(1.03, 1.03, 1.03);
  transform: scale3d(1.03, 1.03, 1.03);
}

to {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
}

.link-effects {
  -webkit-animation-name: pulsing;
  animation-name: pulsing;
  -webkit-animation: pulsing 2.8s infinite;
  animation: pulsing 2.8s infinite;

}


/* header section title */
.header_section {
  text-align: center;
  margin-bottom: 2em;
  border-bottom: 0.25em solid #689600;
  width: 40%;
  margin-left: 30%;
  margin-right: 30%;
}

@media (max-width: 614px) {
  .header_section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/* company */

.medal-box {
  width: 100%;
  text-align: center;
}

.medal {
  float: left;
  width: 29%;
  margin: 2% 2% 4%;
}

#price, #quality, #experience {
  font-size: 20px;
  color: #689600;
}

.medal-img {
  max-width: 100%;
  border: 3px solid #689600;
  border-radius: 50%;
  padding: 10%;
  margin-bottom: 10px;
  /*-webkit-box-shadow: inset 0 0 20px 0 #689600;
  -moz-box-shadow: inset 0 0 20px 0 #689600;
  -o-box-shadow: inset 0 0 20px 0 #689600;
  box-shadow: inset 0 0 20px 0 #689600;*/
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}

.medal:hover .medal-img /*.medal-img:hover*/ {
  -webkit-box-shadow: inset 0 0 80px 0 #689600;
  -moz-box-shadow: inset 0 0 80px 0 #689600;
  -o-box-shadow: inset 0 0 80px 0 #689600;
  box-shadow: inset 0 0 80px 0 #689600;
    -webkit-transform:rotateY(180deg);
    -moz-transform:rotateY(180deg);
    -o-transform:rotateY(180deg);
  transform:rotateY(180deg);
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}

.medal h5 {
  color: #0B0B0B;
  font-weight: 600;
}

.text-align-center {
  text-align: center;
}
.divider-icon {
  font-size: 24px;
  color: rgba(104, 150, 0, 1);
}

@media (max-width: 767px) {
  .text-mob-side-margin {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.link-services, .link-services:focus {
  text-decoration: none !important;
  display: inline-block;
  margin: 20px auto;
  text-align: center;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  background: rgba(104, 150, 0, 1);
  opacity: 0.9;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 22px;
  color: #FFF;
  padding: 0.7rem;
  border: 2px solid #FFF;
  transition: 0.5s ease-in;
  -o-transition: 0.5s ease-in;
  -ms-transition: 0.5s ease-in;
  -moz-transition: 0.5s ease-in;
  -webkit-transition: 0.5s ease-in;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  text-decoration: none;
  text-shadow: 1px 1px 1px #222222;
}
.link-services:hover {
  background: rgba(104, 150, 0, 0.8);
  text-shadow: 1px 1px 2px #000;
  border: 2px solid #ffffff;
  text-decoration: none;
  color: #ffffff;
}

.carousel {
  background-color: rgba(11, 11, 11, 1);
  height: 20%;
}
.carousel-control.left, .carousel-control.right {
  background-image: none;
}
.glyphicon-chevron-left:before, .glyphicon-chevron-right:before {
  color: #689600;
}
#imageCarousel {
  margin-left: 3vw;
  margin-right: 3vw;
}

.crsl-img-center {
  margin-top: 2em;
  margin-bottom: 2em;
}
.carousel-control.left {
  margin-left: -10vw;
}

.carousel-control.right {
  margin-right: -10vw;
}

/* mobile carousel test */

#myCarousel {
  margin-left: 3vw;
  margin-right: 3vw;
}

@media (max-width: 768px) {
  .img-responsive {
    width: 90%;
  }

  .crsl-img-center {
    margin-left: 4%;
    margin-right: 4%;
  }

  .carousel-indicators {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    margin-bottom: -2.3em;
    margin-left: -35%;
    margin-right: -35%;
  }
  .carousel-control.left {
    margin-left: -8vw;
    font-size: 1.9rem;
  }

  .carousel-control.right {
    margin-right: 1vw;
    font-size: 1.9rem;
  }
}

@media (max-width: 812px) and (orientation: landscape) {
  .img-responsive {
    width: 80%;
  }

  .crsl-img-center {
    margin-left: 8%;
    margin-right: 8%;
  }

  .carousel-indicators {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    margin-bottom: -3em;
    margin-left: -40%;
    margin-right: -40%;
  }
  .carousel-control.left {
    margin-left: -11vw;
    font-size: 1.9rem;
  }

  .carousel-control.right {
    margin-right: 4vw;
    font-size: 1.9rem;
  }
}

@media (max-width: 1366px) and (orientation: portrait) {
  .crsl-img-center {
    margin-left: 1%;
    margin-right: 1%;
  }

  .carousel-control.left {
    margin-left: -12vw;
  }

  .carousel-control.right {
    margin-right: -10vw;
  }
}

@media (max-width: 604px) and (orientation: portrait) {
  .img-responsive {
    width: 100%;
  }

  .crsl-img-center {
    margin-left: 0;
    margin-right: 0;
  }

  .carousel-indicators {
    margin-bottom: -2.5em;
    line-height: 0.1em;
    margin-left: -30%;
    margin-right: -30%;
  }

  .carousel-control.left {
    margin-left: 4vw;
    font-size: 1.9rem;
  }

  .carousel-control.right {
    margin-right: 4vw;
    font-size: 1.9rem;
  }
}

@media (max-height: 568px) and (orientation: portrait) {
  .img-responsive {
    width: 100%;
  }

  .crsl-img-center {
    margin-left: 0;
    margin-right: 0;
  }

  .carousel-indicators {
    margin-bottom: -2.5em;
    line-height: 0.1em;
  }
}

@media (max-width: 550px) and (orientation: portrait) {
  .img-responsive {
    width: 100%;
  }

  .crsl-img-center {
    margin-left: 0;
    margin-right: 0;
  }

  .carousel-indicators {
    margin-bottom: -2.5em;
    line-height: 0.1em;
  }
  .carousel-control.left, .carousel-control.right {
    background-image: none
  }
  .carousel-control.left {
    margin-left: 2vw;
  }

  .carousel-control.right {
    margin-right: 2vw;
  }
}

@media (max-width: 480px) and (orientation: landscape) {
  .img-responsive {
    width: 100%;
  }

  .crsl-img-center {
    margin-left: 0;
    margin-right: 0;
  }

  .carousel-indicators {
    margin-bottom: -2.5em;
    line-height: 0.1em;
  }
}

@media (max-width: 385px) and (orientation: portrait) {
  .carousel-control.left {
    margin-left: 4vw;
  }

  .carousel-control.right {
    margin-right: 4vw;
  }
}

/* phone button */
#phone-btn {
  width: 190px;
  height: 34px;
  position: fixed;
  bottom: 50vh;
  right: -78px;
  color: #FFF;
  background-color: rgba(104, 150, 0, 1);
  border: 2px solid #FFF;
  border-bottom: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  animation: blink 4s 2s infinite;
  -webkit-animation: blink 4s 2s infinite;
  -moz-animation: blink 4s 2s infinite;
  -ms-animation: blink 4s 2s infinite;

}

@keyframes blink {
  0%, 45%, 55%, 100% {
    background-color: #689600;
    color: #FFFFFF;
    border-color: #FFFFFF;
  }
  50% {
    background-color: #FFFFFF;
    color: #689600;
    border-color: #689600;
  }
}

#phone-btn h4 {
  margin: 6px 20px 4px 20px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased !important;
  -moz-font-smoothing: subpixel-antialiased !important;
  -ms-font-smoothing: subpixel-antialiased !important;
  -o-font-smoothing: subpixel-antialiased !important;
}

#phone-link {
  text-decoration: none;
  color: #ffffff;
  animation: blink 4s 2s infinite;
  -webkit-animation: blink 4s 2s infinite;
  -moz-animation: blink 4s 2s infinite;
  -ms-animation: blink 4s 2s infinite;
}


/* contact */
#contact-btn {
  text-shadow: 1px 1px 1px #222222;
  position: fixed;
  bottom: 10vh;
  right: -60px;
  color: #FFF;
  letter-spacing: 2px;
  background-color: #689600;
  border: 2px solid #FFF;
  border-bottom: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

#contact-btn h4 {
  margin: 6px 20px 4px 20px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased !important;
  -moz-font-smoothing: subpixel-antialiased !important;
  -ms-font-smoothing: subpixel-antialiased !important;
  -o-font-smoothing: subpixel-antialiased !important;
}

#mail-form {
  height: 18.5em;
  width: 45vw;
  background: /*#43434C*/ rgba(11, 11, 11, 1);
  position: fixed;
  bottom: 10px;
  right: 10px;
  border: 2px solid #FFF;
  border-radius: 6px;
  z-index: 100;
  -o-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
}
@media (max-height: 414px) {
  /* phone button */
  #phone-btn {
    position: fixed;
    bottom: 39vh;
  }

  #contact-btn {
    position: fixed;
    bottom: 0;
    right: 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
@media (max-width: 767px) {
  #mail-form {
    width: 98%;
    right: 1%;
    left: 1%;
  }
  .navbar-collapse.collapse.in {
    height: 170px;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    text-align: center;
  }
  .navbar .nav {
    width: 20em;
  }
  .navbar-nav a {
    padding: 0.5em 1em 0.5em 1em !important;
    margin: 0.5em 0.4em 0.5em 0.4em;
  }

  .navbar .navbar-nav > li > a {
    font-size: 0.95rem;
    padding: 0.5em 1em 0.5em 1em !important;
    margin: 0.5em 0.4em 0.5em 0.4em;
  }
  .navbar a:hover, .navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus, .navbar-nav > li.active > a {
    padding: 0.5em 1em 0.5em 1em !important;
    margin: 0.5em 0.4em 0.5em 0.4em;
  }
}

#mail-form-close {
  color: #FFF;
  background: none;
  border: none;
  float: right;
  padding: 1px 6px 0 1px;
}

#mail-form-hdr {
  font-size: 1.2em;
  color: #FFF;
  background-color: #689600; /*#646568; #43434C; #6F7B6F;*/
  opacity: 0.9;
  padding: 1px 1px 0 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#mail-form-cnt {
  margin: 10px 10px 0 5px;
  background: none;
}

.mail-form-input, #mail-form-text {
  margin: 3px;
  background: none;
  color: #FFF;
}

.form-control::-webkit-input-placeholder {
  color: #FFF;
  font-size: 1.2em;
  opacity: 0.8;
}/* WebKit, Blink, Edge */
.form-control:-moz-placeholder {
  color: #FFF;
  font-size: 1.2em;
  opacity: 0.8;
}/* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder {
  color: #FFF;
  font-size: 1.2em;
  opacity: 0.8;
}/* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder {
  color: #FFF;
  font-size: 1.2em;
  opacity: 0.8;
}/* Internet Explorer 10-11 */

#mail-form-text {
  resize: none;
  height: 8em;
  overflow: hidden;
}

#mail-form-h3 {
  color: #FFF;
  margin-left: 20px;
}

#mail-form-send {
  float: right;
  border: 1px solid #FFF;
  color: #FFF;
  text-align: center;
  outline: none;
  height: auto;
  width: 120px;
  margin: 7px -3px 5px 0;
  padding: 6px;
  font-size: 1.2em;
  position: relative;
  display: block;
  outline: 0;
  overflow: hidden;
  background: none;
  z-index: 1;
  cursor: pointer;
  background: #689600;
  opacity: 0.9;
  border-radius: 6px;
  transition: 0.5s ease-in;
  -o-transition: 0.5s ease-in;
  -ms-transition: 0.5s ease-in;
  -moz-transition: 0.5s ease-in;
  -webkit-transition: 0.5s ease-in;
}

#mail-form-send:hover {
  background: rgba(104, 150, 0, 0.6) /*rgba(100, 101, 104, 0.6)*/;
  text-shadow: 1px 1px 0.5px #000;
}

#mail-form-close:active {
  outline: none;
}

.ng-invalid.ng-pristine, .form-control:focus {
  border-color: #FFF;
}

.ng-touched.ng-invalid.ng-dirty, .ng-untouched.ng-invalid.ng-dirty {
  border-color: red;
  box-shadow: 0 0 6px red;
}

.ng-touched.ng-valid.ng-dirty, .ng-untouched.ng-valid.ng-dirty {
  border-color: #689600;
  box-shadow: 0 0 6px #689600/*#6F7B6F*/;
}

.contact-data-box {
  height: auto;
  width: 350px;
  padding: 10px 0 10px 0;
}
.contact-data {
  margin: 0 5px 1px 3px;
  padding: 1px;
}

#logo-sm {
  width: 8rem;
}



/* Services */

/*.wrapper {
  width: 80%;
  text-align: center;
  margin-right: 10%;
  margin-left: 10%;
}

.text, .img {
  width: 46%;
  height: 20em;
  margin: 2%;
  text-align: center;
  float: left;
  display:inline-block;
}

.text {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  text-align: center;
}*/

.text {
  text-align: center;
  padding: 10px;
  margin: 50px 0 0 0;
}
.img {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  text-align: center;
}

.picture {
  transform: rotate(-45deg);
  border: 3px solid #6D970B;
  box-shadow: 0 0 10px 0 #6D970B;
  -webkit-box-shadow: 0 0 10px 0 #6D970B;
  -moz-box-shadow: 0 0 10px 0 #6D970B;
  -o-box-shadow: 0 0 10px 0 #6D970B;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  width:80%;
  margin-top: 25px;
}

.picture:hover {
  box-shadow: 0 0 80px 0 #6D970B;
  -webkit-box-shadow: 0 0 80px 0 #6D970B;
  -moz-box-shadow:  0 0 80px 0 #6D970B;
  -o-box-shadow:  0 0 80px 0 #6D970B;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
}
.service-item-border {
  border: 3px solid #6D970B;
  box-shadow: 0 0 10px 0 #6D970B;
  margin: 50px 25px 25px;
  transition-duration: 3s;
  -webkit-transition-duration: 3s;
  -moz-transition-duration: 3s;
  -o-transition-duration: 3s;
}
.service-item-border:hover {
  border: 3px solid #6D970B;
  box-shadow: 0 0 80px 0 #6D970B;
  transition-duration: 3s;
    -webkit-transition-duration: 3s;
    -moz-transition-duration: 3s;
    -o-transition-duration: 3s;
}
.title {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: #689600;
}

.glyphicon-ok {
  color: #6D970B;
}
#link-ask {
  display: block;
  text-shadow: 1px 1px 1px #222222;
  /*margin: 0 10px 10px 10px;*/
  text-align: center;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  background: rgba(104, 150, 0, 1);
  opacity: 0.9;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 22px;
  color: #FFF;
  padding: 0.7rem;
  border: 2px solid #FFF;
  transition: 0.5s ease-in;
  -o-transition: 0.5s ease-in;
  -ms-transition: 0.5s ease-in;
  -moz-transition: 0.5s ease-in;
  -webkit-transition: 0.5s ease-in;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  text-decoration: none;
}

#link-ask:hover {
  background: rgba(104, 150, 0, 0.8);
  text-shadow: 1px 1px 2px #000;
  border: 2px solid #ffffff;
  text-decoration: none;
  color: #ffffff;
}
@media (max-width: 1152px) {
  .service-item-border {
    margin: 50px 10px 10px;
  }
  #link-ask {
    font-size: 20px
  }
  .title {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .third-service {
    margin: 0 25%;
  }
}

@media (max-width: 767px) {
  .third-service {
    margin: 0;
  }
}

@media (max-width: 767px) and (orientation:landscape) {
.picture {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .service-item-border {
    margin: 50px 100px;
  }
  .mobile-service-box {
  }
}
@media (max-width: 575px) and (orientation:portrait) {
 .service-item-border {
   margin: 50px 0 0;
 }
}

/* Footer */
.footer-bg {
  background-color: rgba(11, 11, 11, 1);
}
.main-footer {
  height: 28vh;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  color: #fff;
}
.info-footer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
}
.footer-info-1, .footer-info-2, .footer-info-3 {
  padding: 1em 0;
  margin: 1em 0;
  width: 20em;
}
.footer-info-1 {
  text-align: left;
}
.footer-info-2 {
  text-align: center;
}
.footer-info-3 {
  text-align: right;
}

#neutron a {
  text-decoration: none;
  color: #fff;
}

.navbar-bottom {
  text-align: center;
  text-decoration: none;
  margin: 5em auto 0 auto;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  color: #fff;
}
@media (max-width: 690px) {
  .main-footer {
    display: block;
    height: 100%;
  }
  .info-footer {
    display: block;
  }
  .footer-info-1, .footer-info-2, .footer-info-3 {
    padding: 0.5em 3em;
    margin: 0.5em auto;
    text-align: center;
  }
  .navbar-bottom {
    margin: 1em auto 0 auto;
  }
  #neutron {
    display: block;
  }
}
@media (max-width: 341px) {
  body {
    overflow-x: hidden;
  }
  #logo {
    height: 1.1em;
    width: auto;
  }
}

/* Animate.css */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes slideInRight {
from {
  transform: translate3d(100%, 0, 0);
  visibility: visible;
}

to {
  transform: translate3d(0, 0, 0);
}
}

.slideInRight {
  animation-name: slideInRight;
}

/* Media view fonts */

@media (max-height: 1440px) and (orientation: portrait) {
  #contact-btn {
    bottom: 100px;
    right: -60px;
  }
  .main-footer {
    height: 12vh;
  }
}

@media (max-height: 1280px) and (orientation: portrait) {
  #contact-btn {
    bottom: 110px;
    right: -60px;
  }
  .main-footer {
    height: 16vh;
  }

  .footer-info-1, .footer-info-2, .footer-info-3 {
    padding: 1em 0;
    margin: 2.5em 0;
    width: 20em;
  }
}

@media (max-height: 1024px) and (orientation: portrait) {
  #contact-btn {
    bottom: 110px;
    right: -60px;
  }
  .main-footer {
    height: 17vh;
  }
  #logo {
    height: 1.8em;
    width: auto;
  }
  .navbar-nav a {
    padding: 0.3em 1em 0.3em 1em !important;
    margin: 0.5em 0.4em 0.5em 0.4em;
  }
  .navbar .navbar-nav > li > a {
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000;
  }
  .navbar a:hover, .navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus, .navbar-nav > li.active > a {
    border-top: 0.2em solid #689600;
    border-bottom: 0.2em solid #f5f5f5;
    background: none;
    padding: 0.4em 1em 0.4em 1em !important;
    margin: 0.3em 0.4em 0.2em 0.4em;
  }
  .main-footer {
    display: block;
    height: 100%;
  }
  .info-footer {
    display: block;
  }
  .footer-info-1, .footer-info-2, .footer-info-3 {
    padding: 0.5em 3em;
    margin: 0.5em auto;
    text-align: center;
  }
  .navbar-bottom {
    margin: 1em auto 0 auto;
  }
  #neutron {
    display: block;
  }
}

@media (max-height: 812px) and (orientation: portrait) {
  #contact-btn {
    bottom: 110px;
    right: -50px;
  }
  .main-footer {
    height: 100%;
  }
}
@media (max-height: 812px) and (max-width: 375px) and (orientation: portrait) {
  #contact-btn {
    right: -60px;
  }
}

@media (max-height: 768px) and (orientation: portrait) {
  #contact-btn {
    right: -60px;
  }
}

@media (max-height: 740px) and (orientation: portrait) {
  #contact-btn {
    right: -60px;
  }
}

@media (max-height: 533px) and (orientation: portrait) {
  #contact-btn {
    bottom: 12vh;
  }
}

@media (max-width: 500px) and (orientation: portrait) {
  .navbar .nav {
    width: 15em;
  }
}

@media (max-width: 324px) and (orientation: portrait) {
  #mail-form-hdr {
    font-size: 1em;
  }
  .form-control::-webkit-input-placeholder {
    font-size: 1em;
  }
  .form-control:-moz-placeholder {
    font-size: 1em;
  }
  .form-control::-moz-placeholder {
    font-size: 1em;
  }
  .form-control:-ms-input-placeholder {
    font-size: 1em;
  }

  #mail-form-send {
    width: 100px;
    font-size: 1em;
  }
  .contact-data-box {
    height: auto;
    width: 350px;
    padding: 13px 0 13px 0;
  }
  .contact-data {
    margin: 0 5px 1px 3px;
    padding: 1px;
  }

  #logo-sm {
    width: 5rem;
  }
}

@media (max-width: 319px) and (orientation: portrait) {
  .info-footer {
    display: block;
    margin: 0;
  }
  .footer-info-1, .footer-info-2, .footer-info-3 {
    text-align: left;
    margin-left: -2.8em;
  }
  .navbar-bottom {
    text-align: left;
  }
}
@media (max-width: 290px) and (orientation: portrait) {
  #logo {
    position: absolute;
    z-index: 1;
  }
  .navbar-header .icon-bar {
    z-index: 2;
    position: relative;
  }
}
@media (max-width: 245px) and (orientation: portrait) {
  #mail-form {
    width: 98%;
    right: 1%;
    left: 1%;
    bottom: 0;
    height: 45%;
  }
}

@media (max-width: 1440px) and (orientation: landscape) {
  .main-footer {
    height: 17vh;
  }
  .navbar-bottom {
    margin-top: 0;
  }
  .footer-info-1, .footer-info-2, .footer-info-3 {
    padding: 1em 0 0 0;
    margin: 1.2em 0;
  }
}

@media (max-width: 1366px) and (max-height: 662px) and (orientation: landscape) {
  .main-footer {
    height: 100% !important;
  }
  .navbar-bottom {
    margin-top: 0;
  }
  .footer-info-1, .footer-info-2, .footer-info-3 {
    padding: 1em 0 0 0;
    margin: 1.1em 0;
  }
}

@media (max-width: 1280px) and (orientation: landscape) {
  .main-footer {
    height: 26.5vh;
  }
}

@media (max-width: 1280px) and (max-height: 800px) and (orientation: landscape) {
  .navbar-bottom {
    margin-top: 0;
  }
  .footer-info-1, .footer-info-2, .footer-info-3 {
    padding: 1em 0 0 0;
    margin: 1em 0;
  }
}

@media (max-width: 1280px) and (max-height: 800px) and (orientation: landscape) {
  .main-footer {
    height: 20.5vh;
  }
}

@media (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {
  .main-footer {
    height: 21vh;
  }
}

@media (max-width: 966px) and (orientation: landscape) {
  .main-footer {
    height: 26vh;
  }
}

@media (max-width: 812px) and (orientation: landscape) {
  .main-footer {
    height: 100%;
  }
  #logo {
    height: 1.9em;
    width: auto;
  }
  .navbar-nav a {
    padding: 0.3em 1em 0.3em 1em !important;
    margin: 0.5em 0.4em 0.5em 0.4em;
  }
  .navbar .navbar-nav > li > a {
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000;
  }
  .navbar a:hover, .navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus, .navbar-nav > li.active > a {
    border-top: 0.2em solid #689600;
    border-bottom: 0.2em solid #f5f5f5;
    background: none;
    padding: 0.4em 1em 0.4em 1em !important;
    margin: 0.3em 0.4em 0.2em 0.4em;
  }
}
@media (max-width: 740px) and (max-height: 360px) and (orientation: landscape) {
  .main-footer {
    display: block;
    height: 100%;
  }
  .info-footer {
    display: block;
  }
  .footer-info-1, .footer-info-2, .footer-info-3 {
    padding: 0.5em 3em;
    margin: 0.5em auto;
    text-align: center;
  }
  .navbar-bottom {
    margin: 1em auto 0 auto;
  }
  #neutron {
    display: block;
  }
}

@media (max-width: 759px) and (max-height: 662px) and (orientation: landscape) {
  .main-footer {
    display: block;
    height: 100%;
  }
  .info-footer {
    display: block;
    /*margin: 2.1em auto 0 auto;*/
  }
  .footer-info-1, .footer-info-2, .footer-info-3 {
    padding: 0.5em 3em;
    margin: 0.5em auto;
    text-align: center;
  }
  .navbar-bottom {
    margin: 1em auto 0 auto;
  }
  #neutron {
    display: block;
  }
}
@media (max-width: 732px) and (max-height: 412px) and (orientation: landscape) {
  .main-footer {
    height: 100%;
  }
}

@media (max-width: 700px) and (orientation: landscape) {
  .main-footer {
    height: 100%;
  }
  .jumbo-text {
    font-size: 1.9rem;
  }
  .jumbo-btn {
    margin: 10px 7px 0 0;
  }
}