.row:not(:has(input)) {
  row-gap: 40px;
}

:root {
  --general-color: #1d1d1d;
  --title-font-size: 44px;
  --line-height: 0.1px;
}

.nav-area .header-menu > li {
  font-weight: bold;
  padding: 40px 0;
}
.nav-area .header-menu > li a {
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 20px;
}
.nav-area .header-menu > li:not(:last-child) a {
  border-right: 1px solid var(--general-color);
}

.nav-number {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-number i {
  font-size: 18px;
}

.brands .title {
  text-align: center;
  font-size: 44px;
  position: relative;
  width: 100%;
  font-weight: 600;
}
@media (max-width: 992px) {
  .brands .title {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .brands .title::before {
    content: "";
    display: block;
    width: calc(40% - 44px);
    height: var(--line-height);
    background: #222;
    left: -15%;
    top: 50%;
    position: absolute;
  }
  .brands .title:after {
    content: "";
    display: block;
    width: calc(40% - 44px);
    height: var(--line-height);
    background: #222;
    right: -15%;
    top: 50%;
    position: absolute;
  }
}
.brand-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--general-color);
  border-bottom: 1px solid var(--general-color);
  gap: 30px;
  padding: 40px 60px;
  height: 100%;
}
.brand-box:hover .btn-white {
  background-color: var(--general-color);
  color: #fff;
}
.brand-box:hover .btn-white i {
  left: 80%;
}
.brand-box .btn-style {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-box .btn-style i {
  position: absolute;
  left: 5%;
  transition: 0.9s;
}

@media (max-width: 992px) {
  .brand-box .btn-white i {
    display: none;
  }
  .brand-box {
    border: 1px solid var(--general-color);
  }
}
.brand-box .see-more {
  margin-top: 20px;
}

.btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px var(--general-color) solid;
  color: var(--general-color);
  background: #fff;
  transition: background-color 0.9s;
  padding: 15px 40px !important;
}

.about-image-template {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.about-us .img-box:nth-child(2) {
  margin-top: 20%;
}
.about-us .img-box {
  height: -moz-min-content;
  height: min-content;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: 0.7s;
}
.about-us .img-box:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
.about-us .img-box img {
  width: 100%;
}
.about-us .linear {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 992px) {
  .about-us .linear img {
    transform: scale(1.2);
  }
}
.about-us .about-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  height: 100%;
}
@media (min-width: 992px) {
  .about-us .about-content {
    padding-right: 80px;
  }
}
.about-us .about-content .title {
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 600;
}
.about-us .about-content :is(.desc, .desc *) {
  line-height: 1.9;
}
.about-us .about-content .btn-holder {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .about-us .about-content .title {
    font-size: 22px;
  }
}
.container-custom {
  margin: 0 5%;
  max-width: 2000px;
}

.btn-style.btn-dark {
  transition: 0.7s;
  background-color: var(--general-color);
  border: 5px solid var(--general-color);
  color: white;
  padding: 5px 45px !important;
  font-size: 16px;
}
.btn-style.btn-dark:hover {
  background-color: transparent;
  color: var(--general-color);
}

.cta {
  padding: 40px 5%;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background: var(--general-color);
  position: relative;
  color: white;
  overflow: hidden;
}
.cta .row {
  width: 100%;
}
.cta .linear {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media (max-width: 1444px) {
  .cta .linear {
    display: none;
  }
}
.cta .linear img {
  width: 100%;
  height: 100%;
  transform: scale(0.4);
}

.cta-contact {
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 20px;
}
@media (max-width: 992px) {
  .cta-contact {
    align-items: center;
  }
}
.cta-contact .number {
  font-size: 25px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.5px;
  word-spacing: 4px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.4sz;
}
.cta-contact .number i {
  font-size: 30px;
}
.cta-contact .number:hover {
  color: white;
  opacity: 0.7;
}

.about-us img {
  margin-top: 0;
}

.footer-component {
  background-color: #fff !important;
  box-shadow: 0 -5px 10px -5px rgba(0, 0, 0, 0.5);
}

.footer-logo-holder {
  display: flex;
  justify-content: center;
  position: relative;
}

.footer-logo {
  width: 240px;
}
@media (min-width: 992px) {
  .footer-logo::before {
    content: "";
    display: block;
    width: 40%;
    height: var(--line-height);
    background: #222;
    left: 0;
    top: 50%;
    position: absolute;
  }
  .footer-logo::after {
    content: "";
    display: block;
    width: 40%;
    height: var(--line-height);
    background: #222;
    right: 0;
    top: 50%;
    position: absolute;
  }
}
.footer-logo img {
  width: 100% !important;
  max-width: unset !important;
}

.footer-brands {
  display: flex;
  list-style-type: none;
  width: 100%;
  justify-content: center;
}
.footer-brands li {
  position: relative;
  padding: 0 30px;
}
.footer-brands li::before {
  content: "";
  display: block;
  position: absolute;
  right: 90%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--general-color);
}

.footer-bottom {
  background: #fff;
  color: black;
}
.footer-bottom a {
  color: black;
}
.footer-bottom .bottom-wrapper {
  padding: 20px 0;
  border-top: 1px solid var(--general-color);
}
.footer-bottom .bottom-wrapper .copyright {
  color: black;
}

.modal {
  background-color: var(--general-color);
}

.breadcrumb {
  margin: 70px 0;
}

#mobileMenuModal .modal-dialog .modal-content .modal-header {
  justify-content: center;
}

@media (min-width: 992px) {
  div:has(.brand-box) {
    padding: 0 !important;
  }
}
@media (max-width: 992px) {
  .cta-content {
    text-align: center;
  }
  .cta-contact .number {
    font-size: 20px;
  }

  .footer-brands {
    flex-wrap: wrap;
}

}
.formal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color1);
  margin-bottom: 30px;
  padding-bottom: 7px;
  position: relative;
}

.formal-title::before {
  position: absolute;
  content: '';
  width: 50px;
  height: 3px;
  background: var(--color2);
  bottom: 0;
}

.formal-page input {
  font-family: inherit;
  border-radius: 4px;
}

.formal-form-area {
  padding: 25px;
}

@media (max-width: 991px) {
  .formal-page {
      margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .formal-form-area {
      margin-top: 40px;
  }
}

.formal-form .form-item {
  width: 100%;
  padding: 8px 15px;
  border: solid 1px #d6d6d6;
  margin-bottom: 15px;
  font-family: 'Poppins';
  outline: none;
}

.formal-form .form-group .text {
  margin-bottom: 5px;
  color: #828482;
}

.formal-form .form-btn {
  margin-top: 30px;
}

.formal-form .recaptcha {
  display: inline-block;
}

#show_modal_btn {
  background: transparent;
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 10px;
}

/* revize 29 / 06 / 2023 */

.nav-row-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-area input.form-control {
  width: 100%;
  background: white;
  border: solid 1px #828482;
  height: 40px;
  margin-bottom: 15px;
  padding: 0 10px;
  outline: none;
}

.form-area input[type="file"] {
  width: 100%;
  background: white;
  border: solid 1px #828482;
  margin-bottom: 15px;
  padding: 9px 10px;
  outline: none;
  height: 50px;
  line-height: 1.7;
}

.form-area select.form-control {
  width: 100%;
  background: white;
  border: solid 1px #828482;
  height: 40px;
  margin-bottom: 15px;
  padding: 0 10px;
  outline: none;
}

.form-area textarea.form-control {
  background: white;
  border: solid 1px #828482;
  width: 100%;
  height: 160px;
  margin-bottom: 15px;
  padding: 10px 10px;
  outline: none;
}

.form-area .nobot {
  text-align: center;
  margin-bottom: 15px;
}

.form-area .nobot img {
  max-width: 100%;
}

.form-area .cbutton {
  text-align: center;
}

.form-area button.contact-button {
  background: var(--color2);
  color: white;
  border: none;
  padding: 10px 50px;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  outline: none;
  cursor: pointer;
}

.form-area button.contact-button:hover {
  background: var(--color1);
  outline: none;
  transition: all .3s ease;
}

.mobile-nav ul li a {
  color: #fff;
}

#mobileMenuModal .modal-dialog .modal-content .modal-footer .links :is(a, a i) {
  color: #fff;
}

@media(min-width:992px){

.brand-box.top-box {
    flex-direction: row;
    align-items: center;
}

}