/* Homepage */

.banner-style-two .content-box .text-box {
  padding-left: 0;
}
.banner-style-two .content-box .text-box p {
  max-width: 100%;
}
.banner-style-two .content-box .text-box::before {
  display: none;
}
.footer-top .form-inner {
  align-items: start;
  justify-content: start;
  gap: 20px;
}
.main-header .outer-box .logo-box a img {
  max-width: 250px;
}
.main-footer .footer-logo {
  max-width: 350px;
}
.mobile-menu .nav-logo img {
  max-width: 70px;
}

.header-style-two {
  background: #edebeb;
}
/* Legal */
.legal-section h2 {
  margin-top: 30px;
}

.legal-section li::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: orange;
  font-size: 24px;
  line-height: 1;
}

.legal-section h2 {
  margin-top: 30px;
}
.legal-section .content-box h3 {
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  margin-top: 20px;
}
.legal-section .content-box h2 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .legal-section {
    padding: 0 20px;
  }
  .legal-section .content-box h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
/* Testimonial */
.testimonial-page-section .sec-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.testimonial-page-section .sec-title p {
  margin-top: 20px;
}
.service-section h3 {
  color: #fff;
}
/* Accessability */

.mdp-readabler-trigger-button-box.bottom-right {
  bottom: 90px;
  right: 10px;
}
.mdp-readabler-trigger-button-box button {
  background-color: #fd7e14;
}
.mdp-readabler-trigger-button-box button#mdp-readabler-trigger-button:focus {
  outline: 0;
  color: #fd7e14;
  background: #fd7e14;
  box-shadow: 0 0 0 3px #fd7e14;
}

.mdp-readabler-trigger-button-box
  button:active
  .mdp-readabler-trigger-button-icon
  svg,
.mdp-readabler-trigger-button-box
  button:focus
  .mdp-readabler-trigger-button-icon
  svg,
.mdp-readabler-trigger-button-box
  button:focus-visible
  .mdp-readabler-trigger-button-icon
  svg,
.mdp-readabler-trigger-button-box
  button:hover
  .mdp-readabler-trigger-button-icon
  svg {
  fill: #fd7e14;
}
/* Pop up */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.popup-content {
  background: #fff;
  padding: 50px;
  width: min(90vw, 600px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  animation: slideUp 0.5s ease;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: #000;
}

.popup-icon {
  font-size: 60px;
  color: #fe8c73;
  margin-bottom: 20px;
}

#popup-message {
  font-size: 26px;
  color: #333;
  margin: 20px 0;
  line-height: 1.5;
}

.popup-button {
  margin-top: 20px;
  padding: 14px 32px;
  background-color: #fe8c73;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-button:hover {
  background-color: #fe8c73;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .page-title {
    padding: 199px 0px 70px 0px;
  }
}
.dropdown .current {
  color: #fd7e14 !important;
}
