@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Lato", Sans-serif;
}
* a {
  text-decoration: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
header .logo {
  width: 30%;
}
header .logo img {
  height: 60px;
}
header .header-btn {
  color: #000;
  font-weight: 600;
  background-color: #eab308;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 30px;
}
header .header-btn:hover {
  background-color: #ffbf00;
}

.banner-wrapper {
  width: 100%;
  height: 60vh;
  background: url("../images/Lecco-Web-Banneer.jpg") bottom no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-wrapper .banner-content {
  width: 80%;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.3882352941);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.banner-wrapper .banner-content h2 {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}
.banner-wrapper .banner-content p {
  font-size: 18px;
  color: #fff;
}
.banner-wrapper .banner-content a {
  color: #000000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eab308;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
}
.banner-wrapper .banner-content a:hover {
  background-color: #ffbf00;
}

.banner-section {
  position: relative;
}
.banner-section .CTA-Btn {
  position: absolute;
  bottom: 0px;
  right: 0px;
  color: #ffffff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #E64444;
  padding: 10px 20px;
  font-weight: bold;
  z-index: 100000000000000000000 !important;
}
.banner-section .CTA-Btn:hover {
  background-color: #e01c1c;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  pointer-events: all;
  transition: background 0.3s ease;
  border: none; /* Remove any border */
  outline: none; /* Remove outline */
}

.owl-prev {
  left: 100px; /* Adjust to your design */
}

.owl-next {
  right: 100px; /* Adjust to your design */
}

/* Remove default owl icons */
.owl-prev span,
.owl-next span {
  display: none;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* FontAwesome icons */
.owl-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f104"; /* Left arrow */
}

.owl-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105"; /* Right arrow */
}

.owl-prev:hover,
.owl-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.owl-theme .owl-nav [class*=owl-] {
  background-color: #e5e7eb !important;
  border-radius: 50% !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: #000 !important;
}

#lead-form {
  padding: 40px 40px;
  background-color: #e5e7eb !important;
}
#lead-form .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lead-form h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
}
#lead-form p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: center;
  margin-bottom: 5px;
}
#lead-form a {
  color: #000000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eab308;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
#lead-form a:hover {
  background-color: #ffbf00;
}
#lead-form .form-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
#lead-form .form-row form {
  background-color: #fff;
  width: 50%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
#lead-form .form-row form .submit-btn {
  background-color: #eab308;
  padding: 12px 20px;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  outline: none;
  border: 1px solid transparent;
  font-size: 16px !important;
}
#lead-form .form-row form .submit-btn:hover {
  background-color: #ffbf00;
}

input:focus,
select:focus {
  border: 1px solid #7b818c;
  outline: none !important;
}

::-moz-placeholder {
  color: #7b818c;
}

::placeholder {
  color: #7b818c;
}

input {
  padding: 10px !important;
  border: 1px solid #7b818c;
  color: #7b818c !important;
  text-align: left;
  width: 100% !important;
  margin-bottom: 10px;
  border-radius: 5px;
  display: block !important;
  background: #fff !important;
}

/* Wrapper */
.custom-select {
  position: relative;
  width: 100%;
  font-family: Arial, sans-serif;
}

/* Display box */
.select-trigger {
  padding: 10px;
  border: 1px solid #7b818c;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  color: #7b818c;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* Dropdown arrow */
.select-trigger::after {
  content: "▼"; /* Down arrow */
  font-size: 14px;
  color: #7b818c;
  margin-left: auto;
}

/* Hidden dropdown list */
.select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #7b818c;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

/* List items */
.select-options li {
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.select-options li:hover {
  background: #f0f0f0;
}

/* Active dropdown */
.custom-select.open .select-options {
  display: block;
}

.submit-btn {
  width: 100% !important;
}

form {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
}

form .col-6 {
  width: 49%;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-in-out forwards;
}

.happy-clients-sec {
  background-color: #c8000b;
  padding: 30px 0;
}
.happy-clients-sec .container {
  width: 90%;
  margin: 0 auto;
}
.happy-clients-sec .container .custom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.happy-clients-sec .container .custom-row .icon-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.happy-clients-sec .container .custom-row .icon-box img {
  height: 60px;
}
.happy-clients-sec .container .custom-row .icon-box h3 {
  color: #fff;
}
.happy-clients-sec .container .custom-row .icon-box p {
  color: #fff;
  margin-bottom: 0;
}

footer {
  background-color: #424242;
  padding: 50px 0;
}
footer .container {
  width: 90%;
  margin: 0 auto;
}
footer .container h2 {
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 1px;
  color: #fff;
  padding-left: 20px;
  border-left: 5px solid #c8000b;
}
footer .container .footer-links {
  padding: 40px 0;
}
footer .container .footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
footer .container .footer-links ul li {
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .container .footer-links ul li i {
  margin-right: 3px;
  font-size: 30px;
}
footer .container .footer-links ul li a {
  color: #fff;
}
footer .container .quick-links h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  width: 70%;
  border-bottom: 1px solid #ababab;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
footer .container .quick-links ul {
  padding: 0;
  margin: 0;
}
footer .container .quick-links ul li {
  display: inline;
  list-style: none-block;
  padding: 0 30px 0 0;
}
footer .container .quick-links ul li a {
  color: #e0e0e0;
  font-weight: light !important;
}

.bottom-footer {
  background-color: #000;
}
.bottom-footer .container {
  width: 90%;
  margin: 0 auto;
}
.bottom-footer .container .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.bottom-footer .container .footer-row p {
  color: #fff;
  margin-bottom: 0;
}
.bottom-footer .container .footer-row p a {
  color: #fff;
}
.bottom-footer .container .footer-row ul {
  padding: 0;
  margin: 0;
  display: inline;
}
.bottom-footer .container .footer-row ul li {
  padding: 5px;
  display: inline;
}
.bottom-footer .container .footer-row ul li a {
  color: #fff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 600px) {
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    /* flex-wrap: wrap; */
  }
  header .logo {
    width: 30%;
  }
  header .logo img {
    height: 30px;
  }
  .header-btn {
    color: #000;
    font-weight: 600;
    background-color: #eab308;
    padding: 10px 5px;
    font-size: 14px;
    border-radius: 30px;
  }
  .banner-wrapper {
    width: 100%;
    height: auto;
    background: url("../images/Lecco-Web-Banneer.jpg") left no-repeat;
    background-size: cover;
    padding: 50px 10px;
  }
  .banner-wrapper .banner-content {
    text-align: center;
    width: 90%;
    padding: 20px;
  }
  .banner-wrapper .banner-content h2 {
    font-size: 22px !important;
  }
  .banner-wrapper .banner-content p {
    font-size: 16px;
  }
  form {
    flex-direction: column !important;
    width: 100% !important;
  }
  .col-6 {
    width: 100% !important;
  }
  #lead-form {
    padding: 40px 20px;
  }
  #lead-form h3 {
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .happy-clients-sec .container {
    width: 90%;
  }
  .happy-clients-sec .container .custom-row {
    justify-content: center !important;
    align-items: center !important;
    gap: 5px;
    flex-wrap: wrap;
  }
  .happy-clients-sec .container .custom-row .icon-box {
    width: 48.5%;
    gap: 5px;
    padding: 5px 0;
    flex-direction: column;
    text-align: center;
  }
  .happy-clients-sec .container .custom-row .icon-box img {
    height: 40px;
  }
  .happy-clients-sec .container .custom-row .icon-box div {
    width: 80%;
  }
  .happy-clients-sec .container .custom-row .icon-box p {
    font-size: 14px;
  }
  .happy-clients-sec .container .custom-row .first-icon-box {
    width: 100%;
  }
  footer .footer-links {
    padding: 40px 0;
  }
  footer .footer-links ul {
    display: flex;
    align-items: start !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
    gap: 20px;
  }
  footer .footer-links ul li {
    color: #fff;
    list-style: none;
    display: flex;
    align-items: start;
    gap: 10px;
  }
  footer .footer-links ul li i {
    margin-right: 3px;
    font-size: 30px;
  }
  footer .footer-links ul li a {
    color: #fff;
  }
  footer .quick-links h3 {
    width: 100%;
    border-bottom: 1px solid #ababab;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  footer .quick-links ul {
    padding: 0;
    margin: 0;
  }
  footer .quick-links ul li {
    display: block !important;
    list-style: none;
    padding: 5px 0 !important;
  }
  footer .quick-links ul li a {
    color: #e0e0e0;
    font-weight: light !important;
  }
  .bottom-footer {
    background-color: #000;
  }
  .bottom-footer .container {
    width: 90%;
    margin: 0 auto;
  }
  .bottom-footer .container .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: start !important;
    flex-direction: column !important;
    padding: 10px 0;
    gap: 10px;
  }
  .bottom-footer .container .footer-row p {
    color: #fff;
    margin-bottom: 5px;
  }
  .bottom-footer .container .footer-row p a {
    color: #fff;
  }
  .select-wrapper {
    padding: 10px !important;
  }
  .select-wrapper select {
    padding: 10px !important;
    border: 1px solid #7b818c;
    border-radius: 5px;
  }
  .select-trigger {
    font-size: 13px;
  }
  footer .container .footer-links ul li i {
    margin-right: 3px;
    font-size: 20px;
  }
  .owl-prev,
  .owl-next {
    width: 20px;
    height: 20px;
    font-size: 10px !important;
  }
  .owl-prev {
    left: 50%;
    /* Adjust to your design */
    top: 20px !important;
  }
  .owl-next {
    right: 50%; /* Adjust to your design */
    top: 20px !important;
  }
  .banner-section {
    position: relative;
  }
  .banner-section .CTA-Btn {
    position: absolute;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #E64444;
    padding: 5px 5px;
    font-weight: bold;
    font-size: 10px;
    z-index: 100000000000000000000 !important;
  }
  .banner-section .CTA-Btn:hover {
    background-color: #e01c1c;
  }
}
@media only screen and (min-width: 1600px) {
  header {
    width: 80%;
    margin: 0 auto;
  }
  .banner-wrapper {
    width: 100%;
    height: 60vh;
    background: url("../images/Lecco-Web-Banneer.jpg") center no-repeat;
    background-size: cover;
  }
  .banner-wrapper .banner-content {
    width: 80%;
  }
  .banner-wrapper .banner-content h2 {
    font-size: 45px;
    font-weight: bold;
    color: #fff;
  }
  .banner-wrapper .banner-content p {
    font-size: 22px;
    color: #fff;
  }
  .banner-wrapper .banner-content a {
    padding: 14px 20px;
    font-size: 20px;
  }
  #lead-form {
    padding: 40px 20px;
  }
  #lead-form h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  #lead-form p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
  #lead-form form {
    width: 70%;
  }
  #lead-form form input {
    font-size: 18px;
    padding: 12px 10px;
    margin-bottom: 15px;
  }
  #lead-form form select {
    font-size: 18px;
    padding: 12px 10px;
    margin-bottom: 15px;
  }
  #lead-form form .submit-btn {
    font-size: 18px;
    padding: 12px 10px;
  }
}/*# sourceMappingURL=style.css.map */