@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  width: auto;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #001725;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.logo img {
  max-width: 200px;
  height: auto;
  cursor: pointer;
}

.nav-links ul {
  display: flex;
  gap: 50px;
  list-style: none;
  position: relative;
}
.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  position: relative;
}
.nav-links ul li a::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #C68264;
  position: absolute;
  left: 0;
  bottom: -8px;
  opacity: 0;
  transition: all 0.2s;
  pointer-events: none;
}
.nav-links ul li a:hover::after, .nav-links ul li a:focus::after, .nav-links ul li a:active::after {
  opacity: 1;
  color: #C68264;
}

.nav-cta {
  padding: 10px 20px;
  background-color: #C68264;
  color: #000000;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 400;
  border: none;
}
.nav-cta:hover {
  background-color: rgb(180.5896226415, 101.3632075472, 66.4103773585);
}

/*.nav-cta:active{
  background-color: green;
}*/
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #001725;
  color: #fff;
  width: 100%;
  margin-top: 90px;
}
.hero span {
  color: #C68264;
}
.hero .hero-info {
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
}
.hero .hero-info h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero .hero-info p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.hero button {
  display: inline-flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  font-size: 1.1rem;
  padding: 10px 15px;
  background-color: #C68264;
  color: #000000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
.hero button:hover {
  background-color: rgb(180.5896226415, 101.3632075472, 66.4103773585);
}
.hero button i {
  color: #ffffff;
  font-size: 1.3rem;
}
.hero .hero-img img {
  width: 100%;
  object-fit: cover;
  margin: 0;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  background-color: #C68264;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin: 0;
}
.announcement-bar p {
  display: inline-block;
  padding-right: 40%;
  animation: scrollText 15s linear infinite;
  margin: 0;
}
@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.fact-info {
  display: flex;
  justify-content: center;
  padding: 30px;
  align-items: center;
  margin: 20px 100px;
}
.fact-info .info {
  flex: 1;
  margin-right: 10px;
  background-color: #f2f2f2;
  padding: 40px 50px;
  height: 300px;
  align-content: center;
}
.fact-info .info h1 {
  margin-bottom: 20px;
  color: #001725;
}
.fact-info .info p {
  line-height: 1.6;
  margin-bottom: 20px;
}
.fact-info .info .info-icons {
  display: flex;
  gap: 70px;
}
.fact-info .fact-img img {
  width: 300px;
  height: 300px;
}

.pros-title {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pros-title span {
  color: #C68264;
  margin-left: 10px;
}

.pros {
  display: flex;
  justify-content: space-around;
  padding: 30px;
  margin: 0 0 40px 0px;
}
.pros .p1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  margin: 0 10px;
  border: 1px solid rgb(244, 244, 244);
  border-radius: 6px;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.pros .p1 h1 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #000000;
}
.pros .p1 p {
  font-size: 16px;
  color: #343434;
}
.pros .p1 i {
  font-size: 24px;
}
.pros .p1:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.pros .p1 i {
  margin-bottom: 15px;
}

.services-title {
  background-color: #001725;
  color: #fff;
  font-size: 18px;
  padding: 40px 0 0 0px;
  display: flex;
  justify-content: center;
}
.services-title span {
  color: #C68264;
}

.services {
  background-color: #001725;
  height: 100vh;
  display: flex;
  justify-content: center;
  padding: 50px;
  gap: 20px;
  cursor: pointer;
  /*img {
    width: 100%;
    max-width: 350px;
    object-fit: cover;
  }*/
}
.services .s1 {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: flex-start;
  height: 450px;
  max-width: 550px;
  width: 100%;
}
.services .s1 text h1 {
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 20px;
}
.services .s1 p {
  width: 400px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.services .s1 img {
  object-fit: cover;
  height: 450px;
  max-width: 550px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #fff;
}
.services .learn-more-btn {
  font-size: 1rem;
  padding: 10px;
  background-color: #001725;
  color: #fff;
  border: 1px solid #C68264;
  border-radius: 5px;
  cursor: pointer;
  width: 150px;
  text-decoration: none;
}
.services .learn-more-btn:hover {
  background-color: rgb(180.5896226415, 101.3632075472, 66.4103773585);
}

.map {
  width: 100%;
  margin: 0;
}
.map iframe {
  width: 100%;
  height: 80vh;
  border: none;
  margin: 0;
  padding: 0;
}

.hamburger {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  padding: 10px;
  touch-action: manipulation;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger i {
  color: #6798e4;
}

.footer-logo {
  display: flex;
  justify-content: space-around;
  background-color: #001725;
  color: #fff;
  height: 80vh;
  padding: 20px 40px 0 40px;
}
.footer-logo img {
  margin: 20px;
}
.footer-logo .address {
  padding: 0px;
}
.footer-logo .address .email {
  cursor: pointer;
}
.footer-logo .address p,
.footer-logo .address .phone-number {
  margin: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.footer-logo .address i {
  margin: 0 10px;
}
.footer-logo .address span {
  color: #C68264;
}
.footer-logo .socials {
  margin: 20px 0;
  padding: 20px;
}
.footer-logo .socials i {
  margin: 15px;
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}
.footer-logo .socials i:hover {
  border: 1px solid #C68264;
  color: #C68264;
}
.footer-logo .socials button {
  display: inline-block;
  margin: 10px;
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #001725;
  color: #fff;
  border: 1px solid #C68264;
  border-radius: 5px;
  cursor: pointer;
}
.footer-logo .socials button:hover {
  background-color: rgb(180.5896226415, 101.3632075472, 66.4103773585);
}

.quick-links {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.quick-links h1 {
  margin-bottom: 10px;
  font-size: 24px;
}
.quick-links ul {
  list-style-type: none;
}
.quick-links li {
  margin: 10px;
}
.quick-links ul li a {
  color: #fff;
  text-decoration: none;
  margin: 20px 0;
  cursor: pointer;
  font-size: 1.2rem;
}
.quick-links ul li a:hover {
  border-bottom: 1px solid #C68264;
}

.faqs {
  padding: 40px;
}
.faqs h1 {
  font-size: 24px;
  margin-bottom: 10px;
}
.faqs ul {
  list-style-type: none;
}
.faqs ul li {
  margin: 10px;
}
.faqs ul li a {
  color: #fff;
  text-decoration: none;
  margin: 20px 0;
  cursor: pointer;
}
.faqs ul li a:hover {
  border-bottom: 1px solid #C68264;
}

hr {
  color: #ffffff;
  width: 50px;
}

.footer-2 {
  background-color: #001725;
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding: 15px;
}
.footer-2 p {
  margin: 20px;
  color: #cbcbcb;
  font-size: 14px;
}
.footer-2 ul {
  display: flex;
  text-decoration: none;
  margin: 20px;
  gap: 20px;
  color: #cbcbcb;
  list-style-type: none;
  font-size: 14px;
  cursor: pointer;
}
.footer-2 ul li a {
  text-decoration: none;
  list-style-type: none;
  color: #cbcbcb;
}

.stat {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80vh;
  padding: 30px;
  gap: 100px;
}
.stat img {
  width: 350px;
  height: 360px;
  border-radius: 20px;
}
.stat span {
  color: #C68264;
}
.stat h1 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
.stat p {
  font-size: 1rem;
  line-height: 1.6;
}
.stat .stats-info {
  display: flex;
  flex-direction: column;
}
.stat .stats-info ul {
  text-decoration: none;
  list-style-type: none;
  line-height: 2.6;
  padding: 20px 0;
}
.stat .stats-info ul li {
  font-size: 1.1rem;
}
.stat .stats-info ul li i {
  color: #C68264;
  margin: 0 10px;
}
.stat .stats-info .get-started {
  padding: 10px;
  width: 40%;
  border: 1px solid #C68264;
  background-color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 20px;
  margin-bottom: 20px;
}
.stat .stats-info .get-started:hover {
  background-color: #C68264;
}
.stat .stats-info .get-started i {
  font-size: 14px;
}

@media (max-width: 390px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: -1000px;
    width: 300px;
    height: 100vh;
    background-color: #C68264;
    color: #fff;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }
  .sidebar ul {
    list-style-type: none;
  }
  .sidebar ul li {
    margin: 20px;
  }
  .sidebar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .sidebar ul li a:hover {
    text-decoration: underline;
  }
  .sidebar-active {
    right: 0;
  }
  nav {
    display: flex;
    justify-content: space-around;
    padding: 0 0px;
  }
  nav .hamburger {
    display: block;
    position: absolute;
    right: 30px;
  }
  .nav-links ul {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    height: 40vh;
    padding: 200px 0;
  }
  .hero .hero-info h1 {
    font-size: 1.6rem;
    margin: 10px;
    line-height: 1.4;
  }
  .hero .hero-info p {
    font-size: 1rem;
    margin: 10px;
  }
  .announcement-bar {
    font-size: 16px;
  }
  .fact-info {
    flex-direction: column;
    text-align: center;
    margin: 0;
  }
  .info-icons {
    font-size: 14px;
    gap: 5px;
  }
  .info-icons i {
    font-size: 15px;
    margin: 6px 0;
  }
  .pros-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .pros {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 10px;
    padding: 0 10px;
  }
  .fact-img img {
    display: none;
  }
  .services-title {
    padding: 0;
    margin-top: 20px;
  }
  .services-title h1 {
    margin-left: 0;
    margin-top: 20px;
    font-size: 1.5rem;
  }
  .services {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 20px;
    height: auto;
  }
  .services .s1 {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .services .s1 h1 {
    margin: 10px;
    font-size: 24px;
  }
  .services .s1 p {
    width: 90%;
  }
  .services .s1 img {
    max-width: 90%;
  }
  .services .s1 .learn-more-btn {
    white-space: nowrap;
  }
  .stat {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: auto;
    gap: 30px;
  }
  .stat img {
    width: 100%;
    border-radius: 0;
    height: auto;
    margin: 0;
  }
  .stat h1 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    padding: 0px 10px;
  }
  .stat p {
    padding: 0px 10px;
  }
  .stats-info {
    margin-bottom: 10px;
  }
  .stats-info li {
    padding: 0 10px;
    font-size: 12px;
    line-height: 2;
    display: inline-block;
  }
  .footer-logo {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
  }
  .quick-links,
  .faqs {
    padding-top: 0;
  }
  .quick-links h1,
  .faqs h1 {
    white-space: nowrap;
  }
  .quick-links ul li,
  .faqs ul li {
    margin: 10px 0;
  }
  .links {
    display: flex;
    justify-content: center;
  }
  .footer-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-2 ul {
    white-space: nowrap;
  }
  .map {
    margin-top: 20px;
  }
  .map iframe {
    height: 40vh;
  }
  .learn-more-btn {
    white-space: nowrap;
  }
}
@media (max-width: 399px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: -1000px;
    width: 300px;
    height: 100vh;
    background-color: #C68264;
    color: #fff;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }
  .sidebar ul {
    list-style-type: none;
  }
  .sidebar ul li {
    margin: 20px;
  }
  .sidebar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .sidebar ul li a:hover {
    text-decoration: underline;
  }
  .sidebar-active {
    right: 0;
  }
  nav {
    display: flex;
    justify-content: space-around;
    padding: 0 0px;
  }
  nav .hamburger {
    display: block;
    position: absolute;
    right: 30px;
  }
  .nav-links ul {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    height: 40vh;
    padding: 200px 0;
  }
  .hero .hero-info h1 {
    font-size: 1.6rem;
    margin: 10px;
    line-height: 1.4;
  }
  .hero .hero-info p {
    font-size: 1rem;
    margin: 10px;
  }
  .announcement-bar {
    font-size: 16px;
  }
  .fact-info {
    flex-direction: column;
    text-align: center;
    margin: 0;
  }
  .info-icons {
    font-size: 14px;
    gap: 5px;
  }
  .info-icons i {
    font-size: 15px;
    margin: 6px 0;
  }
  .pros-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .pros {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 10px;
    padding: 0 10px;
  }
  .fact-img img {
    display: none;
  }
  .services-title {
    padding: 0;
    margin-top: 20px;
  }
  .services-title h1 {
    margin-left: 0;
    margin-top: 20px;
    font-size: 1.5rem;
  }
  .services {
    flex-direction: column;
    align-items: center;
    gap: 0px;
    width: 100%;
    margin: 0;
    padding: 20px;
    height: auto;
  }
  .services .s1 {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .services .s1 h1 {
    margin: 10px;
    font-size: 24px;
  }
  .services .s1 p {
    width: 90%;
  }
  .services .s1 img {
    max-width: 90%;
  }
  .stat {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: auto;
    gap: 30px;
  }
  .stat img {
    width: 100%;
    border-radius: 0;
    height: auto;
    margin: 0;
  }
  .stat h1 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    padding: 0px 10px;
  }
  .stat p {
    padding: 0px 10px;
  }
  .stats-info {
    margin-bottom: 10px;
  }
  .stats-info li {
    padding: 0 10px;
    font-size: 12px;
    line-height: 2;
    display: inline-block;
  }
  .footer-logo {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
  }
  .quick-links,
  .faqs {
    padding-top: 0;
  }
  .quick-links h1,
  .faqs h1 {
    white-space: nowrap;
  }
  .quick-links ul li,
  .faqs ul li {
    margin: 10px 0;
  }
  .links {
    display: flex;
    justify-content: center;
  }
  .footer-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-2 ul {
    white-space: nowrap;
  }
  .map {
    margin-top: 20px;
  }
  .map iframe {
    height: 40vh;
  }
  .learn-more-btn {
    white-space: nowrap;
  }
}
@media (min-width: 400px) and (max-width: 800px) {
  body {
    font-size: 16px;
  }
  .sidebar {
    position: fixed;
    top: 0;
    right: -1000px;
    width: 300px;
    height: 100vh;
    background-color: #C68264;
    color: #fff;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }
  .sidebar ul {
    list-style-type: none;
  }
  .sidebar ul li {
    margin: 20px;
  }
  .sidebar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .sidebar ul li a:hover {
    text-decoration: underline;
  }
  .sidebar-active {
    right: 0;
  }
  nav {
    display: flex;
    justify-content: space-around;
    padding: 0 0px;
  }
  nav .hamburger {
    display: block;
    position: absolute;
    right: 30px;
  }
  .nav-links ul {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    height: 70vh;
  }
  .hero .hero-info h1 {
    font-size: 2.1rem;
    margin: 0 8px;
  }
  .hero .hero-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 20px;
  }
  .announcement-bar {
    font-size: 16px;
  }
  .fact-info {
    flex-direction: column;
    text-align: center;
    margin: 0;
  }
  .info-icons {
    font-size: 14px;
    gap: 5px;
  }
  .info-icons i {
    font-size: 15px;
    margin: 6px 0;
  }
  .pros-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .pros {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 0;
    gap: 10px;
    padding: 0 10px;
  }
  .fact-img img {
    display: none;
  }
  .services-title {
    padding: 20px;
  }
  .services-title h1 {
    margin-left: 0;
    font-size: 1.5rem;
  }
  .services {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    height: 1100px;
    margin: 0;
    padding: 0;
  }
  .services .learn-more-btn {
    white-space: nowrap;
  }
  .services .s1 {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .services .s1 h1 {
    margin: 10px;
    font-size: 24px;
  }
  .services .s1 p {
    width: 90%;
  }
  .services .s1 img {
    max-width: 90%;
  }
  .stat {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: auto;
    gap: 30px;
  }
  .stat img {
    width: 100%;
    border-radius: 0;
    height: auto;
    margin: 0;
  }
  .stat h1 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    padding: 0px 20px;
  }
  .stat p {
    padding: 0 20px;
    width: 100%;
  }
  .stats-info {
    margin-bottom: 10px;
  }
  .stats-info ul {
    white-space: normal;
    margin: 0 0px;
    line-height: 1;
    font-size: 12px;
  }
  .stats-info ul li {
    padding: 0 10px;
    font-size: 12px;
  }
  .footer-logo {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
  }
  .quick-links,
  .faqs {
    padding-top: 0;
  }
  .quick-links h1,
  .faqs h1 {
    white-space: nowrap;
  }
  .quick-links ul li,
  .faqs ul li {
    margin: 10px 0;
  }
  .links {
    display: flex;
    justify-content: center;
  }
  .footer-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-2 ul {
    white-space: nowrap;
  }
  .map {
    margin-top: 20px;
  }
  .map iframe {
    height: 40vh;
  }
}
@media (min-width: 400px) and (max-width: 800px) and (min-width: 670px) and (max-width: 800px) {
  .hero {
    padding: 0;
  }
  .hero .hero-info {
    padding: 0;
  }
  .hero .hero-info h1 {
    font-size: 3rem;
  }
  .hero .hero-info p {
    font-size: 1.4rem;
  }
  .fact-info {
    display: flex;
    flex-direction: row;
    margin: 0;
  }
  .fact-info .info-icons {
    justify-content: center;
  }
  .pros-title {
    margin-top: 20px;
  }
  .pros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 0;
    margin: 0 20px 40px 20px;
  }
  .footer-logo {
    flex-direction: row;
  }
  .test-links {
    margin-top: 140px;
  }
  .footer-2 {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 801px) and (max-width: 900px) {
  body {
    font-size: 18px;
  }
  .logo img {
    width: 250px;
    margin: 0;
  }
  nav {
    padding: 0 30px;
    justify-content: space-around;
  }
  .nav-links ul li a {
    display: flex;
    font-size: 1.2rem;
  }
  .nav-cta {
    padding: 8px;
    margin: 0;
    font-size: 16px;
  }
  .hero {
    height: 65vh;
    padding: 80px 0;
  }
  .hero .hero-info h1 {
    font-size: 2.5rem;
  }
  .hero .hero-info p {
    font-size: 1.5rem;
    margin: 10px;
  }
  .fact-info {
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .fact-info .fact-img {
    display: none;
  }
  .fact-info .info-icons {
    display: flex;
    justify-content: center;
  }
  .pros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  .services {
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 100%;
    height: 1100px;
    margin: 0;
    padding: 0;
  }
  .services .s1 {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .services .s1 h1 {
    margin: 10px;
    font-size: 24px;
  }
  .services .s1 p {
    width: 90%;
  }
  .services .s1 img {
    max-width: 90%;
  }
  .services .s1 .learn-more-btn {
    white-space: nowrap;
  }
  .stat {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    margin-top: 20px;
    height: 100%;
  }
  .stat h1 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    padding: 0px 20px;
  }
  .stat p {
    padding: 0 20px;
    width: 100%;
  }
  .stats-info ul {
    white-space: normal;
    margin: 0 0px;
    line-height: normal;
    font-size: 12px;
  }
  .stats-info ul li {
    padding: 0 10px;
    font-size: 12px;
  }
  .footer-logo {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
  }
  .test-links {
    display: flex;
    flex-direction: row;
    margin-top: 100px;
  }
  .test-links h1 {
    white-space: nowrap;
  }
  .test-links ul li {
    margin: 10px 0;
  }
  .map {
    margin-top: 0;
  }
  .map iframe {
    height: 50vh;
  }
}
@media (min-width: 901px) and (max-width: 1200px) {
  body {
    font-size: 18px;
  }
  .logo img {
    width: 250px;
    margin: 0;
  }
  nav {
    padding: 0 30px;
    justify-content: space-around;
  }
  .nav-links ul li a {
    display: flex;
    font-size: 1.2rem;
  }
  .nav-cta {
    padding: 8px;
    margin: 0;
    font-size: 16px;
  }
  .hero {
    height: 55vh;
    padding: 80px 0;
  }
  .hero .hero-info h1 {
    font-size: 2.5rem;
  }
  .hero .hero-info p {
    font-size: 1.5rem;
    margin: 10px;
  }
  .fact-info {
    margin: 10px;
    padding: 10px;
  }
  .fact-info .info {
    height: 60vh;
  }
  .fact-info .fact-img img {
    width: 300px;
    height: 360px;
  }
  .pros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  .services {
    gap: 25px;
    height: 90vh;
    margin: 0;
    padding: 40px;
  }
  .services h1 {
    font-size: 1.2rem;
  }
  .services p {
    font-size: 16px;
  }
  .stat {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 10px;
    padding: 20px;
    margin: 50px 0;
    height: 100%;
  }
  .stat h1 {
    margin-bottom: 10px;
    padding: 0px 20px;
    font-size: 2rem;
  }
  .stat p {
    padding: 0 20px;
    font-size: 1.5rem;
  }
  .footer-logo {
    flex-direction: row;
    justify-content: space-around;
    height: auto;
    gap: 0;
    margin: 0;
  }
  .test-links {
    display: flex;
    flex-direction: row;
    margin-top: 100px;
  }
  .test-links h1 {
    white-space: nowrap;
  }
  .test-links ul li {
    margin: 10px 0;
  }
  .map {
    margin-top: 20px;
  }
  .map iframe {
    height: 50vh;
  }
}
/*500px

@media (max-width: 560px) {
  nav {
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-links ul {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    height: auto;
    padding: 100px 0;

    .hero-info {
      h1 {
        font-size: 2rem;
        margin: 10px;
        line-height: 1.4;
      }
      p {
        font-size: 1.2rem;
        margin: 10px;
      }
    }
  }

  //banner

  .announcement-bar {
    font-size: 16px;
  }

  //facts
  .fact-info {
    flex-direction: column;
    text-align: center;
    margin: 0;
  }

  .info-icons {
    font-size: 14px;
    gap: 5px;

    i {
      font-size: 15px;
      margin: 6px 0;
    }
  }

  .pros-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .pros {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 10px;
    padding: 0 10px;
  }

  .fact-img img {
    display: none;
  }
  .services-title {
    padding: 0;

    h1 {
      margin-left: 0;
      margin-top: 20px;
      font-size: 1.5rem;
    }
  }

  .services {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    margin: 0;
    padding: 0;

    .s1 {
      width: 100%;
      text-align: center;
      align-items: center;
      margin-bottom: 20px;

      h1 {
        margin: 10px;
        font-size: 24px;
      }

      p {
        width: 90%;
      }
      img {
        max-width: 90%;
      }
      .learn-more-btn {
        width: 90%;
        padding: 12px;
      }
    }
  }

  //stat
  .stat {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: auto;
    gap: 30px;

    img {
      width: 100%;
      border-radius: 0;
      height: auto;
      margin: 0;
    }

    h1 {
      margin-bottom: 10px;
      font-size: 1.5rem;
      padding: 0px 20px;
    }

    p {
      width: 400px;
    }
  }

  .stats-info {
    margin-bottom: 10px;

    li {
      padding: 0 10px;
      font-size: 12px;
      line-height: 2;
      display: inline-block;
    }
  }

  //footer

  .footer-logo {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
  }

  .quick-links,
  .faqs {
    padding-top: 0;
    h1 {
      white-space: nowrap;
    }

    ul {
      li {
        margin: 10px 0;
      }
    }
  }
  .links {
    display: flex;
    justify-content: center;
  }

  .footer-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    ul {
      white-space: nowrap;
    }
  }

  .map {
    margin-top: 20px;
    iframe {
      height: 40vh;
    }
  }
}*/
/*480
@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  nav {
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-links ul {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    height: 55vh;

    .hero-info {
      h1 {
        font-size: 2rem;
      }
      p {
        font-size: 18px;
        line-height: 1.6;
      }
    }
  }

  //banner

  .announcement-bar {
    font-size: 16px;
  }

  //facts
  .fact-info {
    flex-direction: column;
    text-align: center;
  }

  .info-icons {
    font-size: 14px;
    gap: 5px;

    i {
      font-size: 15px;
      margin: 6px 0;
    }
  }

  .pros-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .pros {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 10px;
    padding: 0 10px;
  }

  .fact-img img {
    display: none;
  }
  .services-title {
    padding: 20px;

    h1 {
      margin-left: 0;
      font-size: 1.5rem;
    }
  }

  .services {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    height: 1100px;
    margin: 0;
    padding: 0;

    .s1 {
      width: 100%;
      text-align: center;
      align-items: center;
      margin-bottom: 20px;

      h1 {
        margin: 10px;
        font-size: 24px;
      }

      p {
        width: 90%;
      }
      img {
        max-width: 90%;
      }
      .learn-more-btn {
        width: 90%;
        padding: 12px;
      }
    }
  }

  //stat
  .stat {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: auto;
    gap: 30px;

    img {
      width: 100%;
      border-radius: 0;
      height: auto;
      margin: 0;
    }

    h1 {
      margin-bottom: 10px;
      font-size: 1.5rem;
      padding: 0px 20px;
    }

    p {
      padding: 0 20px;
      width: 100%;
    }
  }

  .stats-info {
    margin-bottom: 10px;

    li {
      padding: 0 10px;
      font-size: 12px;
      line-height: 2;
      display: inline-block;
    }
  }

  //footer

  .footer-logo {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
  }
  .quick-links,
  .faqs {
    padding-top: 0;
    h1 {
      white-space: nowrap;
    }

    ul {
      li {
        margin: 10px 0;
      }
    }
  }
  .links {
    display: flex;
    justify-content: center;
  }

  .footer-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    ul {
      white-space: nowrap;
    }
  }
}

/*576px

@media (max-width: 578px) {
  body {
    font-size: 16px;
    background-color: rgb(209, 145, 125);

  }

  nav {
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-links ul {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    height: 55vh;

    .hero-info {
      h1 {
        font-size: 2.1rem;
      }
      p {
        font-size: 20px;
        line-height: 1.6;
      }
    }
  }

  //banner

  .announcement-bar {
    font-size: 16px;
  }

  //facts
  .fact-info {
    margin: 40px;
    width: 500px;
  }

  .info-icons {
    font-size: 14px;
    gap: 5px;
    white-space: nowrap;

    i {
      font-size: 15px;
      margin: 6px 0;
    }
  }

  .pros-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .pros {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 10px;
    padding: 0 10px;

    .p1 {
      width: 70%;
      margin: 0 20px;
    }
  }

  .fact-img img {
    display: none;
  }
  .services-title {
    padding: 20px 0;
    font-size: 12px;
    margin-top: 40px;
  }

  .services {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    height: 1100px;
    margin: 0;
    padding: 0;

    .s1 {
      width: 100%;
      text-align: center;
      align-items: center;
      margin-bottom: 20px;

      h1 {
        margin: 10px;
        font-size: 24px;
      }

      p {
        width: 90%;
      }
      img {
        max-width: 90%;
      }
      .learn-more-btn {
        width: 90%;
        padding: 12px;
      }
    }
  }

  //stat
  .stat {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: auto;
    gap: 30px;
    width: 100%;
    max-width: 100%;

    img {
      width: 100%;
      border-radius: 0;
      height: auto;
      margin: 0;
    }

    h1 {
      margin-bottom: 10px;
      font-size: 1.5rem;
      padding: 0px 20px;
    }

    p {
      padding: 0 20px;
      width: 100%;
      display: block;
      white-space: nowrap;
    }
  }

  .stats-info {
    margin-bottom: 10px;

    li {
      padding: 0 10px;
      font-size: 12px;
      line-height: 2;
      display: inline-block;
    }
  }

  //footer

  .footer-logo {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
    justify-content: center;
    align-items: center;
  }
  .quick-links,
  .faqs {
    padding-top: 0;
    h1 {
      white-space: nowrap;
    }

    ul {
      li {
        margin: 10px 0;
      }
    }
  }
  .links {
    display: flex;
    justify-content: center;
  }

  .footer-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    ul {
      white-space: nowrap;
    }
  }
}

/*786x
@media (max-width: 768px) {
  body {
    font-size: 16px;
    background-color: rgb(227, 75, 156);

  }

  nav {
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-links ul {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    height: 55vh;

    .hero-info {
      h1 {
        font-size: 2.5rem;
      }
      p {
        font-size: 22px;
        line-height: 1.6;
      }
    }
  }

  //banner

  .announcement-bar {
    font-size: 16px;
  }

  //facts
  .fact-info {
  }

  .info-icons {
    font-size: 14px;
    gap: 5px;
    white-space: nowrap;

    i {
      font-size: 15px;
      margin: 6px 0;
    }
  }

  .pros-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .pros {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 10px;
    padding: 0 10px;

    .p1 {
      width: 70%;
      margin: 0 20px;
    }
  }

  .fact-img img {
    display: none;
  }
  .services-title {
    padding: 20px 0;
    font-size: 12px;
    margin-top: 40px;
  }

  .services {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    height: 1100px;
    margin: 0;
    padding: 0;

    .s1 {
      width: 100%;
      text-align: center;
      align-items: center;
      margin-bottom: 20px;

      h1 {
        margin: 10px;
        font-size: 24px;
      }

      p {
        width: 90%;
      }
      img {
        max-width: 90%;
      }
      .learn-more-btn {
        width: 90%;
        padding: 12px;
      }
    }
  }

  //stat
  .stat {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: auto;
    gap: 30px;
    width: 100%;
    max-width: 100%;

    img {
      width: 100%;
      border-radius: 0;
      height: 80vh;
      margin: 0;
    }

    h1 {
      margin-bottom: 10px;
      font-size: 1.5rem;
      padding: 0px 20px;
    }

    p {
      padding: 0 20px;
      width: 100%;
      display: block;
      white-space: nowrap;
    }
  }

  .stats-info {
    margin-bottom: 10px;
    margin: 40px;

    li {
      padding: 0 10px;
      font-size: 12px;
      line-height: 2;
      display: inline-block;
    }
  }

  //footer

  .footer-logo {
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
  }
  .quick-links,
  .faqs {
    margin-top: 100px;
    h1 {
      white-space: nowrap;
    }

    ul {
      li {
        margin: 10px 0;
      }
    }
  }
  .links {
    display: flex;
  }

  .map {
    iframe {
      height: 40vh;
    }
  }
}

//992px

@media (max-width: 992px) {
  body {
    font-size: 16px;
    background-color: orange;

  }

  nav {
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-links ul {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    height: 55vh;

    .hero-info {
      h1 {
        font-size: 2.5rem;
      }
      p {
        font-size: 22px;
        line-height: 1.6;
      }
    }
  }

  //banner

  .announcement-bar {
    font-size: 16px;
  }

  //facts

  .info-icons {
    font-size: 14px;
    gap: 5px;
    white-space: nowrap;

    i {
      font-size: 15px;
      margin: 6px 0;
    }
  }

  .pros-title {
    margin: 0;
  }
  .pros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    margin: 0;
  }

  .fact-img img {
    display: none;
  }
  .services-title h1 {
    padding-top: 0px;
    font-size: 2.2rem;
  }

  .services {
    align-items: center;
    gap: 0px;
    width: 100%;
    height: 70vh;
    padding: 0;
    margin-top: 0;

    .s1 {
      text-align: center;
      align-items: center;

      h1 {
        margin: 10px;
        font-size: 24px;
      }

      img {
        max-width: 90%;
      }
      .learn-more-btn {
        width: 90%;
        padding: 12px;
      }
    }
  }

  //stat
  .stat {
    margin: 0px;
    display: flex;
    justify-content: center;
    padding: 0;
    height: auto;
    gap: 0px;
    width: 100%;
    max-width: 100%;

    img {
      width: 100%;
      max-width: 300px;
      border-radius: 0;
      height: 300px;
      margin: 50px 0px;
      padding: 0;
      margin-left: 20px;
    }

    h1 {
      margin-bottom: 10px;
      font-size: 1.5rem;
      padding: 0px;
    }

    p {
      padding: 0px;
      display: block;
      white-space: nowrap;
    }
  }

  .stats-info {
    margin: 40px;

    li {
      padding: 0px;
      font-size: 14px;
    }
  }

  //footer

  .footer-logo {
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
  }
  .quick-links,
  .faqs {
    margin-top: 100px;
    h1 {
      white-space: nowrap;
    }

    ul {
      li {
        margin: 10px 0;
      }
    }
  }
  .links {
    display: flex;
  }

  .map {
    iframe {
      height: 40vh;
    }
  }
}



@media (max-width: 1200px) {

  .hero {
    height: 55vh;

    .hero-info {
      h1 {
        font-size: 3rem;
      }
      p {
        font-size: 2rem;
        line-height: 1.6;
      }
    }
  }

  //banner

  .announcement-bar {
    font-size: 24px;
  }

  //facts
  .info {
    h1 {
      font-size: 2rem;
    }

    p {
      font-size: 1.2rem;
    }
    .info-icons {
      font-size: 14px;
      gap: 5px;

      i {
        font-size: 15px;
        margin: 6px 0;
      }
    }
  }
  .pros-title {
    margin: 0;
  }
  .pros {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    margin: 0;
  }

  .fact-img img {
    display: none;
  }
  .services-title h1 {
    padding-top: 0px;
    font-size: 2.2rem;
  }

  .services {
    align-items: center;
    gap: 0px;
    width: 100%;
    height: 70vh;
    padding: 0;

    .s1 {
      text-align: center;
      align-items: center;
      margin-bottom: 20px;

      h1 {
        margin: 10px;
        font-size: 24px;
      }

      img {
        max-width: 90%;
      }
      .learn-more-btn {
        width: 90%;
        padding: 12px;
      }
    }
  }

  //stat
  .stat {
    padding: 50px;
    height: 60%;
  }

  //footer

  .footer-logo {
    height: auto;
    width: 100%;
    padding: 0px;
    margin: 0;
  }
  .quick-links,
  .faqs {
    margin-top: 100px;
  }

  .map {
    iframe {
      height: 50vh;
    }
  }
}
/*Mobile & Tablet Breakpoints 📱💻
400px → Slightly larger phones (your target screen size)
480px → Small tablets / large phones
576px → Bootstrap sm (small devices)
768px → Tablets (Bootstrap md)
992px → Small laptops (Bootstrap lg)
1200px → Desktops (Bootstrap xl)
1600px → Large screens
*/

/*# sourceMappingURL=style.css.map */
