/* Fonts */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/bebasneue-regular-webfont.woff2') format('woff2'),
       url('../fonts/bebasneue-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/opensans-bold.woff2') format('woff2'),
       url('../fonts/opensans-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/opensans-light.woff2') format('woff2'),
       url('../fonts/opensans-light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/opensans-regular.woff2') format('woff2'),
       url('../fonts/opensans-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* General */
body {
  font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
  background: url("../img/Compressed/header.jpg") no-repeat center top #000;
  background-size: contain;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
a {
  transition: color 0.5s linear;
  color: #fff;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #B60B14;
}

h1, h2, h4, h5, h6 {
  font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 700;
}

.title--section {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

.text--small {
  font-size: 14px; 
  font-weight: 300;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #B60B14;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #B60B14;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 1;
  height: 86px;
  background: rgba(0, 0, 0, 0.6);
}


#header .logo {
  margin: 0;
  padding: 0;
}

#header img{
  width: 9.375rem;
}

.scrolled-offset {
  margin-top: 86px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #B60B14;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar > ul > li > .link--instagram:before {
  display: none;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

.navbar .link--instagram:hover,
.navbar .link--instagram:focus {
  color: #B60B14;
}

@media screen and (min-width: 992px) {
  .link--instagram {
    transform: translateY(-1px);
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  text-align: center;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
  justify-content: center;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 300;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  #hero {
    min-height: 40vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 30vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 64px 0;
  overflow: hidden;
}


.section-title {
  text-align: center;
  padding-bottom: 32px;
}


.section-title .title--section {
  margin: 15px 0 0 0;
  font-size: 40px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title .title--section:before,
.section-title .title--section:after {
  background-color: #fff;
  content: "";
  height: 2px;
  position: relative;
  flex: 1;
  top: 50%;
  transform: translateY(-50%);
}

.section-title .title--section:before {
  right: 0.5em;
}

.section-title .title--section:after {
  left: 0.5em;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/

.featured-services {
  position: relative;
}

.featured-services::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 1) 10%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.featured-services .section-title {
  padding-bottom: 40px;
}

#featured-services .row{
  --bs-gutter-x: 0rem;
}

.btn,
#featured-services button {
  background: #B60B14;
  border: 0;
  border-radius: 0px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  font-size: 14px;
  font-weight: 700;
}

.btn-hero {
  margin-top: 2.4rem;
  font-size: 1.2em;
}

@media screen and (max-width:768px) {
  .btn-hero {
    margin-top: 2rem;
    font-size: 1em;
  }
}

#featured-services .card {
  width: 100%;
  position: relative;
  background: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 0px !important;
  z-index: 1;
}

.featured-services .card-title {
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  margin-top: 70%;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 220px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
}

.card-img {
  border-radius: 0px;
  /* padding-bottom: 1.5rem; */
}

/*--------------------------------------------------------------
# Price List
--------------------------------------------------------------*/
.pricelist .card-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .pricelist .card-header {
    flex-direction: column;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Collapse panel
--------------------------------------------------------------*/
#collapse-panel{
  color: #fff;
}

@media (min-width: 1024px) {
  #collapse-panel .container{
    width: 70%;
  }
}

.card-body{
  font-weight: 300;
}

.card{
  border: none;
}

.line{
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  overflow: hidden;
  position: relative;
}

@media (min-width: 1200px) {
  .contact {
    padding-bottom: 136px;
  }
}

.map {
  min-height: 350px;
  filter: grayscale(1);
}

.form__wrapper {
  margin-top: 16px;
}

@media (min-width: 1200px) {
  .form__wrapper {
    position:absolute; 
    right: 100px; 
    top: -30px;
    margin-top: 0;
  }
}

.contact .section-title {
  padding-bottom: 40px;
}

.contact .info-box {
  color: #121212;
  text-align: center;
  padding: 20px 0 30px 0;
}


.contact .info-box i {
  font-size: 32px;
  color: #707070;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box .title--section {
  font-size: 20px;
  color: #707070;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  padding: 30px;
  background-color: #121212;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 400;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #000;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 400;
}

.contact .php-email-form .sent-message,
.contact .php-email-form .error-message {
  font-size: 0.875rem;
  text-align: center;
}

.contact .php-email-form .loading {
  display: none;
  background: rgba(255,255,255,0.2);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #707070;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #B60B14;
}

.contact .php-email-form input {
  padding: 10px 15px;
  color: #fff;
  background: #121212;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
  color: #fff;
  background: #121212;
}

.contact .php-email-form button[type="submit"] {
  background: #B60B14;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  font-size: 14px;
  font-weight: 700;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #B60B14;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#footer img{
  width: 9.325rem;
  padding-top: 4rem;
}


#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

/* Services content */

.content,
.mobile-content {
  background: #121212;
  padding: 32px 16px;
}

.content {
  display: none;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .content {
    position: relative;
    opacity: 1;
  }
}
.content.active {
  display: none;
}
@media screen and (min-width: 768px) {
  .content.active {
    display: block !important;
    cursor: default;
    /* // width: calc(100% - calc(var(--bs-gutter-x))); */
  }
}

.mobile-content {
  display: block;
}
.more {
  display: none;
}

@media screen and (min-width: 768px) {
  .mobile-content {
    display: none;
  }
  .more {
    margin-bottom: 1rem;
    display: inline-block;
  }
}