@import url("https://fonts.googleapis.com/css?family=Archivo+Narrow:400,500,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700");
body {
  font-family: 'Roboto', sans-serif;
  color: #5b5b5e;
}

section {
  padding: 90px 0;
}

@media only screen and (max-width: 767px) {
  section {
    padding: 70px 0;
  }
}

fieldset {
  text-align: center;
  border: 2px solid #f4f7f9;
}

fieldset legend {
  width: 45%;
  color: #5b5b5e;
  font-size: 22px;
  font-weight: 500;
  font-family: 'Archivo Narrow', sans-serif !important;
  margin: auto;
}

.button {
  height: 50px;
  width: 170px;
  font-family: 'Archivo Narrow', sans-serif !important;
  background-color: #9e0b0f;
  text-decoration: none;
  color: white;
  transition: 0.5s;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  overflow: hidden;
  outline: none;
}

.button:hover {
  box-shadow: 0 0 10px rgba(158, 11, 15, 0.8);
  background-color: #9e0b0f;
  border: 1px solid white;
  text-decoration: none;
  color: white;
  cursor: pointer;
}

.button:hover .insider {
  transition: all 0.5s ease;
  left: 200px;
}

.button .insider {
  background-color: white;
  width: 100%;
  height: 20px;
  position: absolute;
  left: -200px;
  transform: rotateZ(45deg);
}

.hamburger.is-active .hamburger-inner, .hamburger-inner {
  background-color: #9e0b0f;
}

.hamburger.is-active .hamburger-inner:before, .hamburger-inner:before {
  background-color: #9e0b0f;
}

.hamburger.is-active .hamburger-inner:after, .hamburger-inner:after {
  background-color: #9e0b0f;
}

@keyframes image-animation {
  0% {
    opacity: 0;
    transform: scale(1, 1);
  }
  7.5% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
  }
  45% {
    opacity: 0;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomInOut {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(0.2deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.fade-In {
  opacity: 1 !important;
  animation: fadeInOpacity 1s linear;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.form-hide {
  display: none !important;
}

@keyframes formFadeIn {
  0% {
    transform: scale(0.2) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: rotate(0.02deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.formFadeInAnimation {
  animation: formFadeIn 0.5s forwards;
}

@keyframes formFadeOut {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(0.02deg);
  }
  100% {
    transform: scale(0.2) rotate(0deg);
    opacity: 0;
  }
}

.formFadeOutAnimation {
  animation: formFadeOut 0.5s forwards;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: 'Archivo Narrow', sans-serif;
}

.hero .slideshow {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.7;
}

.hero .slideshow li {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  animation: image-animation 18s linear infinite;
}

.hero .slideshow .first-slide {
  background-image: url(../images/BG_1.jpg);
}

.hero .slideshow .second-slide {
  background-image: url(../images/BG_2.jpg);
  animation-delay: 6s;
}

.hero .slideshow .third-slide {
  background-image: url(../images/BG_3.jpg);
  animation-delay: 12s;
}

.hero .navbar {
  z-index: 5;
  background: rgba(255, 255, 255, 0.7);
  transition: .5s;
}

.hero .navbar .navbar-toggler {
  outline: none;
}

@media only screen and (max-width: 767px) {
  .hero .navbar .navbar-brand img {
    height: 42px;
  }
}

.hero .navbar:hover {
  background: white;
}

.hero .navbar .navbar-collapse {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.hero .navbar .navbar-collapse .nav-item {
  padding: 0 1rem;
}

.hero .navbar .navbar-collapse .nav-item:last-child {
  font-size: 30px;
}

.hero .navbar .navbar-collapse a {
  text-decoration: none;
  color: #5b5b5e;
  transition: 0.5s;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.hero .navbar .navbar-collapse a:hover {
  color: #9e0b0f;
}

@media only screen and (max-width: 767px) {
  .hero .navbar .navbar-collapse a:hover {
    padding-left: 20px;
  }
}

.hero .header-text {
  z-index: 2;
  height: 100%;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #5b5b5e;
}

@media only screen and (max-width: 991px) {
  .hero .header-text {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media only screen and (max-width: 991px) {
  .hero .header-text .row {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.hero .header-text h1 {
  font-size: 96px;
  letter-spacing: 15px;
}

@media only screen and (max-width: 1199px) {
  .hero .header-text h1 {
    font-size: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .hero .header-text h1 {
    font-size: 50px;
    padding: 0.5rem;
  }
}

@media only screen and (max-width: 570px) {
  .hero .header-text h1 {
    letter-spacing: 5px;
    font-size: 40px;
  }
}

.hero .header-text h1:nth-of-type(2) {
  color: #9e0b0f;
  font-size: 90px;
  margin-right: 30px;
}

@media only screen and (max-width: 1199px) {
  .hero .header-text h1:nth-of-type(2) {
    font-size: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .hero .header-text h1:nth-of-type(2) {
    margin-right: 0;
    font-size: 50px;
  }
}

@media only screen and (max-width: 570px) {
  .hero .header-text h1:nth-of-type(2) {
    font-size: 40px;
  }
}

.hero .header-text h2 {
  font-size: 60px;
  letter-spacing: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  margin-left: 50px;
}

@media only screen and (max-width: 1199px) {
  .hero .header-text h2 {
    font-size: 50px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero .header-text h2 {
    font-size: 30px;
    padding: 0 0.5rem;
  }
}

@media only screen and (max-width: 570px) {
  .hero .header-text h2 {
    letter-spacing: 5px;
    font-size: 20px;
  }
}

.hero .header-text .button-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 0.5rem;
}

.hero .header-text .marquee {
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 3px;
  overflow: hidden;
  width: 750px;
}

@media only screen and (max-width: 767px) {
  .hero .header-text .marquee {
    width: 100vw;
  }
}

.about {
  background-color: #f4f7f9;
  font-weight: 300;
}

.about fieldset {
  border: 2px solid #9e0b0f;
}

.about .row {
  padding: 100px 10px;
}

.about .row .col-md-4 {
  padding: 0 50px;
  text-align: left;
  opacity: 0;
}

.about .row .col-md-4 img {
  margin-bottom: 20px;
}

.about .row .col-md-4 p span {
  font-weight: 700;
}

.about .row .col-md-4 p a {
  color: #9e0b0f;
  text-decoration: none;
}

.about .row .col-md-4 p a:hover {
  text-decoration: none;
}

.offer {
  text-align: center;
}

.offer .col-md-3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 0 30px;
  opacity: 0;
}

.offer .col-md-3 .icon-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #9e0b0f;
  margin: 40px 0;
}

@media only screen and (max-width: 767px) {
  .offer .col-md-3 .icon-container {
    margin: 20px 0;
  }
}

.offer .col-md-3 .icon-container img {
  animation: zoomInOut 2s linear infinite;
}

.offer .col-md-3 p {
  margin: 40px 0;
}

@media only screen and (max-width: 767px) {
  .offer .col-md-3 p {
    margin: 20px 0;
  }
}

.offer .col-md-3:nth-of-type(4) p {
  margin: 20px 0 40px;
}

.baners {
  text-align: center;
  padding: 20px 0;
}

.baners h5 {
  font-size: 22px;
  font-weight: 500;
}

.baners p {
  margin: 20px 0 50px;
}

.baners .carousel-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.baners .carousel-container .carousel {
  overflow: hidden;
  max-width: 1800px;
}

.baners .carousel-container .carousel .images {
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}

.baners .carousel-container .carousel .images li {
  padding: 0 20px;
}

.baners .carousel-container .carousel .images li img {
  width: 150px;
}

@media only screen and (max-width: 767px) {
  .work {
    padding-bottom: 20px;
  }
}

.work span {
  color: #9e0b0f;
}

.work .container {
  padding-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .work .container {
    padding-bottom: 0;
  }
}

.work .container h6 {
  padding: 20px 0 50px;
}

.work .container .col-md-4 .row {
  min-height: 150px;
  opacity: 0;
}

.work .container .col-md-4 .row .col-3 {
  padding-right: 0;
}

.work .container .col-md-4 .row .col-3 h1 {
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  display: -ms-flexbox;
  display: flex;
  font-size: 60px;
  padding-bottom: 45px;
}

.work .container .col-md-4 .row .col-3 h1 span {
  border: 1px solid #9e0b0f;
  height: 8px;
  width: 8px;
  background-color: #9e0b0f;
  margin: 40px 0 0 5px;
}

.work .container .col-md-4 .row .col-9 {
  text-align: left;
}

.work .container .col-md-4 .row .button-container {
  margin-top: 20px;
}

.gallery {
  width: 100%;
  position: relative;
}

.gallery h4 {
  font-size: 22px;
  position: absolute;
  top: 20;
  text-align: center;
  background-color: white;
  opacity: 0.8;
  width: 100%;
  height: 50px;
  padding-top: 10px;
  font-family: 'Archivo Narrow', sans-serif;
  z-index: 2;
}

.gallery .gallery-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(10px, 1fr))[11];
      grid-template-columns: repeat(11, minmax(10px, 1fr));
  -ms-grid-rows: (10vw)[15];
      grid-template-rows: repeat(15, 10vw);
  grid-gap: 5px;
}

.gallery .gallery-container .img-1 {
  grid-column: 1/4;
  grid-row: 1/3;
}

.gallery .gallery-container .img-2 {
  grid-column: 1/4;
  grid-row: 3/8;
}

.gallery .gallery-container .img-3 {
  grid-column: 1/4;
  grid-row: 8/10;
}

.gallery .gallery-container .img-4 {
  grid-column: 1/4;
  grid-row: 10/16;
}

.gallery .gallery-container .img-5 {
  grid-column: 4/8;
  grid-row: 1/4;
}

.gallery .gallery-container .img-6 {
  grid-column: 4/6;
  grid-row: 4/5;
}

.gallery .gallery-container .img-7 {
  grid-column: 6/8;
  grid-row: 4/5;
}

.gallery .gallery-container .img-8 {
  grid-column: 4/8;
  grid-row: 5/8;
}

.gallery .gallery-container .img-9 {
  grid-column: 4/7;
  grid-row: 8/9;
}

.gallery .gallery-container .img-10 {
  grid-column: 4/7;
  grid-row: 9/12;
}

.gallery .gallery-container .img-11 {
  grid-column: 4/7;
  grid-row: 12/16;
}

.gallery .gallery-container .img-12 {
  grid-column: 8/12;
  grid-row: 1/4;
}

.gallery .gallery-container .img-13 {
  grid-column: 8/10;
  grid-row: 4/8;
}

.gallery .gallery-container .img-14 {
  grid-column: 10/12;
  grid-row: 4/8;
}

.gallery .gallery-container .img-15 {
  grid-column: 7/10;
  grid-row: 8/11;
}

.gallery .gallery-container .img-16 {
  grid-column: 10/12;
  grid-row: 8/11;
}

.gallery .gallery-container .img-17 {
  grid-column: 7/9;
  grid-row: 11/16;
}

.gallery .gallery-container .img-18 {
  grid-column: 9/12;
  grid-row: 11/16;
}

.gallery .gallery-container figure {
  margin: 0;
  overflow: hidden;
}

.gallery .gallery-container figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  transition: all  0.2s linear;
}

.gallery .gallery-container figure img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.testimonials .owl-carousel {
  margin: 20px 0;
}

.testimonials .owl-carousel .owl-item {
  padding: 10px 50px;
}

.testimonials .owl-carousel .owl-item img {
  height: 40px;
  width: 40px;
}

.testimonials .owl-carousel .owl-item img:nth-of-type(1) {
  float: right;
}

.testimonials .owl-carousel .owl-item p {
  padding: 50px 150px 0;
}

@media only screen and (max-width: 1199px) {
  .testimonials .owl-carousel .owl-item p {
    padding: 50px 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .testimonials .owl-carousel .owl-item p {
    padding: 50px 25px 0;
  }
}

.testimonials .owl-carousel .owl-item h6 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 0 150px 20px 0;
  margin: 0;
}

@media only screen and (max-width: 1199px) {
  .testimonials .owl-carousel .owl-item h6 {
    padding: 0 50px 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .testimonials .owl-carousel .owl-item h6 {
    padding: 0 25px 20px 0;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.contact {
  background-color: #f4f7f9;
}

.contact .col-md-5 .adress {
  padding: 40px 0 0;
}

.contact .col-md-5 .adress a {
  color: #5b5b5e;
  text-decoration: none;
}

.contact .col-md-5 .adress span {
  font-weight: 700;
}

.contact .col-md-5 .form-container button {
  border: none;
}

.contact .col-md-5 .form-container .form-message {
  margin: 50px 0;
}

.contact .col-md-5 .form-container .form-message h4 {
  margin: 20px 0;
}

.contact .col-md-5 .form-container .form-message h6 {
  margin-bottom: 20px;
}

.contact .col-md-5 .form-container form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 40px 0;
}

.contact .col-md-5 .form-container form input {
  width: 70%;
  border: none;
  border-bottom: solid 1px #5b5b5e;
  background-color: inherit;
  margin: 10px 0;
}

.contact .col-md-5 .form-container form input:focus {
  outline: none;
}

@media only screen and (max-width: 767px) {
  .contact .col-md-5 .form-container form input {
    width: 100%;
  }
}

.contact .col-md-5 .form-container form textarea {
  width: 70%;
  border: none;
  border-bottom: solid 1px #5b5b5e;
  resize: none;
  background-color: inherit;
  margin: 10px 0 20px;
  box-shadow: none;
}

.contact .col-md-5 .form-container form textarea:focus {
  outline: none;
}

@media only screen and (max-width: 767px) {
  .contact .col-md-5 .form-container form textarea {
    width: 100%;
  }
}

.contact .col-md-5 .info {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .contact .col-md-7 {
    padding-top: 20px;
  }
}

.contact .col-md-7 #map {
  min-height: 400px;
  height: 100%;
  width: 100%;
}

footer {
  background-color: #f4f7f9;
}

footer div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer div a {
  color: inherit;
}

footer div a:hover {
  text-decoration: none;
  color: inherit;
}
/*# sourceMappingURL=style.css.map */