/* Import partial SCSS files for modularity */
.footer-one h2,
.footer-two h2,
.footer-three h2, .ninteen-first h1, .eighteen-sectionn h1, .seventeen-second-first h1,
.seventeen-second-second h1,
.seventeen-second-third h1, .seventeen-first-first h1,
.seventeen-first-second h1,
.seventeen-first-third h1, .seventeen-content h1, .sixteen-second h1, .sixteen-first h1, .fifteen-fifth-content h1, .fifteen-fifth h2, .fifteen-fourth-content h1, .fifteen-fourth h2, .fifteen-third-content h1, .fifteen-third h2, .fifteen-second-content h1, .fifteen-second h2, .fifteen-first-content h1, .fifteen-first h2, .fifteen-section .fifteenh, .thirdd-image h1, .secondd-image h2, .secondd-image h1, .firstt-image h1, .fourteen-content h1, .first-part h1, .slide-content h1, .eleven-section h3, .tenth-content h1, .line1 h2, .ninth-section h1, .eight-section .noble5para h1, .eight-section .noble4para h1, .eight-section .noble3para h1, .eight-section .noble2para h1, .eight-section .noble1para h1, .eight-section .h1, .seventh-section h1, .sixth-section h1, .third-section-images .image-heading, .third-section h1, .content h1, .first-section h1 {
  font-weight: 100;
}

/* Prevent horizontal scrolling on the body */
body {
  overflow-x: hidden;
}

/* Base styles for anchor tags */
.a {
  color: black;
  text-decoration: none;
}

/* Horizontal line styling used across sections */
.line {
  width: 93%;
  color: black;
}

/* Navigation bar with responsive menu and sidebar */
.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  position: relative;
}
.navbar .menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.navbar .menu-btn:hover {
  color: black;
}
.navbar .left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
}
.navbar .logo-container {
  display: inline-block;
}
.navbar .logo {
  width: 50px;
  margin-left: 13px;
}
.navbar .right {
  margin-right: 17px;
}
.navbar a {
  text-decoration: none;
  color: black;
}
.navbar .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: #f4f4f4;
  padding: 20px;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.navbar .sidebar .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.navbar .sidebar .close-btn:hover {
  color: black;
}
.navbar .sidebar a {
  display: block;
  margin: 20px 0;
  color: black;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color color 0.3s ease;
}
.navbar .sidebar a:hover {
  background-color: #666666;
  color: black;
}
.navbar .sidebar.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (min-width: 0) and (max-width: 1020px) {
  .navbar .nav-link, .navbar .right {
    display: none;
  }
  .navbar .menu-btn {
    display: block;
  }
  .navbar .left {
    flex-grow: 1;
    justify-content: center;
  }
  .navbar .logo-container {
    margin: 0 auto;
  }
}

/* Time display positioning */
.time {
  float: right;
  margin-right: 20px;
  margin-top: 2px;
}

/* Weather section margin */
.whether {
  margin-left: 20px;
}

/* Hero section with two-column layout */
.hero-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  clear: both;
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }
  .hero-section .second-section {
    order: 1;
    width: 100%;
    margin: 0;
    justify-content: center;
    text-align: center;
  }
  .hero-section .second-section .content {
    width: 100%;
    padding: 20px;
  }
  .hero-section .first-section {
    order: 2;
    width: 100%;
    margin: 0;
    border-right: none;
    padding: 20px;
  }
}

/* Left column of hero section */
.first-section {
  margin-top: 100px;
  width: 50%;
  margin-left: 60px;
  border-right: 1px solid black;
  height: auto;
}
.first-section h1 {
  font-size: 30px;
  color: rgb(101, 90, 90);
}
.first-section p {
  line-height: 1.9;
  width: 85%;
}

/* Readme text styling */
.readme {
  font-size: 18px;
}

/* Arrow line styling for visual separation */
.arrow-line {
  margin-left: 28px;
  margin-bottom: 10px;
}

/* Right column of hero section */
.second-section {
  width: 50%;
  height: auto;
  margin-top: 100px;
  margin-right: 62px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .second-section {
    margin-top: 0;
  }
}

/* Content block within second section */
.content {
  text-align: right;
}
.content p {
  font-size: 12px;
}
.content h1 {
  font-size: 50px;
}
@media (max-width: 768px) {
  .content {
    text-align: center;
  }
}

/* Third section with centered heading and images */
.third-section {
  margin-top: 150px;
}
@media (max-width: 768px) {
  .third-section {
    margin-top: 10px;
  }
}
.third-section h1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: 50px;
}
.third-section h1 .word {
  margin: 0 5px;
}
@media (max-width: 560px) {
  .third-section h1 {
    font-size: 25px;
    justify-content: center;
  }
  .third-section h1 .word {
    margin: 10px 0;
  }
}
@media (min-width: 450px) and (max-width: 660px) {
  .third-section h1 {
    font-size: 35px;
  }
}
.third-section p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

/* Grid layout for images in third section */
.third-section-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
  position: relative;
  margin: 40px 0;
  padding: 0 60px;
}
.third-section-images .image-wrapper {
  position: relative;
  grid-column: 1;
  grid-row: 1/span 2;
}
.third-section-images .first-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.third-section-images .image-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 50px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
}
.third-section-images img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.third-section-images .second-image {
  grid-column: 2;
  grid-row: 1;
}
.third-section-images .third-image {
  grid-column: 2;
  grid-row: 2;
}
.third-section-images .fourth-image {
  grid-column: 3;
  grid-row: 1/span 2;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .third-section-images {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(200px, auto);
  }
  .third-section-images .image-wrapper {
    grid-column: 1;
    grid-row: 1/span 2;
  }
  .third-section-images .second-image {
    grid-column: 1;
    grid-row: 3;
  }
  .third-section-images .third-image {
    grid-column: 2;
    grid-row: 3;
  }
  .third-section-images .fourth-image {
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
@media (max-width: 768px) {
  .third-section-images {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .third-section-images .image-wrapper,
  .third-section-images .first-image,
  .third-section-images .second-image,
  .third-section-images .third-image,
  .third-section-images .fourth-image {
    grid-column: 1;
    grid-row: auto;
    height: auto;
  }
  .third-section-images .image-heading {
    font-size: 18px;
    padding: 8px 15px;
  }
}

/* Full-width image in fourth section */
.fourth-section-image {
  width: 100%;
  height: auto;
  min-height: 400px;
  margin-top: 120px;
  display: block;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fourth-section-image {
    min-height: 300px;
    margin-top: 80px;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .fourth-section-image {
    min-height: 250px;
    margin-top: 60px;
    padding: 0 10px;
  }
}

/* Recent section heading */
.recent {
  margin-left: 57px;
}

/* Dropdown container for recent section */
.recent-dropdown-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 110px auto 20px auto;
  max-width: 90%;
}

.recent {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

/* Dropdown menu styling */
#DROP select {
  border: none;
  outline: none;
  font-size: 15px;
  background: #fff;
  width: 100px;
}
#DROP select option:first-child {
  font-size: 14px;
  font-weight: 600;
}
#DROP select option:not(:first-child) {
  font-size: 10px;
  font-weight: 400;
}

/* Fifth section with card grid */
.fifth-section {
  border-top: 2px solid black;
  height: auto;
  width: 92%;
  margin-left: 4%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
}
@media (max-width: 560px) {
  .fifth-section {
    justify-content: center;
    gap: 20px;
  }
}

/* Base card styling using card-base mixin */
.card {
  height: 600px;
  width: 310px;
  margin-top: 50px;
}
.card img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card p {
  font-size: 11px;
}
.card h1 {
  font-size: 25px;
  font-weight: 100;
}
.card .p2 {
  font-size: 17px;
}

/* Alternate card styling for smaller cards */
.card2 {
  margin-top: 50px;
  height: 390px;
  width: 310px;
  align-self: flex-start;
}
.card2 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* List of card IDs for responsive positioning */
@media (min-width: 726px) and (max-width: 1084px) {
  #card4 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 726px) and (max-width: 1084px) {
  #card5 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 726px) and (max-width: 1084px) {
  #card6 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 726px) and (max-width: 1084px) {
  #card8 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 726px) and (max-width: 1084px) {
  #card9 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 726px) and (max-width: 1084px) {
  #card10 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 726px) and (max-width: 1084px) {
  #card11 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 726px) and (max-width: 1084px) {
  #card12 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 1071px) and (max-width: 1427px) {
  #card5, #card8, #card10, #card11, #card12 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 1436px) and (max-width: 1750px) {
  #card6, #card10, #card11 {
    position: relative;
    bottom: 190px;
  }
}

@media (min-width: 726px) and (max-width: 1084px) {
  #card11 {
    position: relative;
    bottom: 380px;
  }
}

/* Sixth section with image and text */
.sixth-section {
  width: 92%;
  margin-left: 4%;
  margin-top: 120px;
}
.sixth-section h1 {
  font-size: 60px;
}
.sixth-section p {
  line-height: 1.9;
}
.sixth-section .img1 {
  width: 520px;
  margin-top: 20px;
  margin-right: 40px;
}
@media (max-width: 560px) {
  .sixth-section .img1 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .sixth-section .img1 {
    float: left;
  }
}
.sixth-section .p2 {
  margin-top: 60px;
}

/* Line positioning for larger screens */
@media (min-width: 1200px) {
  #line {
    margin-left: 585px;
  }
}

/* Seventh section with bordered content */
.seventh-section {
  margin-top: 300px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  height: auto;
  width: 100%;
}
.seventh-section h1 {
  font-size: 75px;
  color: rgb(231, 235, 235);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 560px) {
  .seventh-section h1 {
    font-size: 40px;
    justify-content: center;
  }
}

/* Eighth section with dynamic height based on screen size */
.eight-section {
  margin-top: 200px;
  width: 92%;
  margin-left: 4%;
  height: 470vh;
}
@media (min-width: 230px) and (max-width: 330px) {
  .eight-section {
    height: 135vh;
  }
}
@media (min-width: 330px) and (max-width: 350px) {
  .eight-section {
    height: 140vh;
  }
}
@media (min-width: 350px) and (max-width: 365px) {
  .eight-section {
    height: 150vh;
  }
}
@media (min-width: 365px) and (max-width: 400px) {
  .eight-section {
    height: 155vh;
  }
}
@media (min-width: 400px) and (max-width: 440px) {
  .eight-section {
    height: 165vh;
  }
}
@media (min-width: 440px) and (max-width: 480px) {
  .eight-section {
    height: 175vh;
  }
}
@media (min-width: 480px) and (max-width: 520px) {
  .eight-section {
    height: 185vh;
  }
}
@media (min-width: 520px) and (max-width: 560px) {
  .eight-section {
    height: 200vh;
  }
}
@media (min-width: 560px) and (max-width: 600px) {
  .eight-section {
    height: 230vh;
  }
}
@media (min-width: 600px) and (max-width: 640px) {
  .eight-section {
    height: 250vh;
  }
}
@media (min-width: 640px) and (max-width: 680px) {
  .eight-section {
    height: 260vh;
  }
}
@media (min-width: 680px) and (max-width: 720px) {
  .eight-section {
    height: 270vh;
  }
}
@media (min-width: 720px) and (max-width: 760px) {
  .eight-section {
    height: 280vh;
  }
}
@media (min-width: 760px) and (max-width: 800px) {
  .eight-section {
    height: 290vh;
  }
}
@media (min-width: 800px) and (max-width: 840px) {
  .eight-section {
    height: 300vh;
  }
}
@media (min-width: 840px) and (max-width: 880px) {
  .eight-section {
    height: 310vh;
  }
}
@media (min-width: 880px) and (max-width: 920px) {
  .eight-section {
    height: 320vh;
  }
}
@media (min-width: 920px) and (max-width: 960px) {
  .eight-section {
    height: 330vh;
  }
}
@media (min-width: 960px) and (max-width: 1000px) {
  .eight-section {
    height: 340vh;
  }
}
@media (min-width: 1000px) and (max-width: 1060px) {
  .eight-section {
    height: 350vh;
  }
}
@media (min-width: 1060px) and (max-width: 1100px) {
  .eight-section {
    height: 360vh;
  }
}
@media (min-width: 1100px) and (max-width: 1140px) {
  .eight-section {
    height: 370vh;
  }
}
@media (min-width: 1140px) and (max-width: 1180px) {
  .eight-section {
    height: 380vh;
  }
}
@media (min-width: 1180px) and (max-width: 1250px) {
  .eight-section {
    height: 400vh;
  }
}
@media (min-width: 1250px) and (max-width: 1400px) {
  .eight-section {
    height: 420vh;
  }
}
.eight-section .h1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: 50px;
}
@media (max-width: 560px) {
  .eight-section .h1 {
    font-size: 6vh;
    justify-content: center;
  }
}
.eight-section .noble {
  width: 70%;
  margin-left: 15%;
  margin-top: 150px;
  display: block;
}
.eight-section .noble1 {
  width: 8%;
  position: relative;
  height: auto;
  right: 4%;
  margin-top: 15%;
  display: inline;
}
.eight-section .noble1para {
  width: 40%;
  margin-top: 27%;
}
.eight-section .noble1para h1 {
  font-size: 6vh;
}
@media (max-width: 500px) {
  .eight-section .noble1para h1 {
    font-size: 20px !important;
  }
}
@media (min-width: 350px) and (max-width: maxpx) {
  .eight-section .noble1para h1 {
    font-size: 540;
  }
}
@media (min-width: 540px) and (max-width: maxpx) {
  .eight-section .noble1para h1 {
    font-size: 800;
  }
}
@media (min-width: 800px) and (max-width: maxpx) {
  .eight-section .noble1para h1 {
    font-size: 1000;
  }
}
@media (min-width: 1000px) and (max-width: maxpx) {
  .eight-section .noble1para h1 {
    font-size: 1200;
  }
}
@media (min-width: 1200px) and (max-width: maxpx) {
  .eight-section .noble1para h1 {
    font-size: 9999;
  }
}
.eight-section .noble1para p {
  font-size: 1.2vw;
  position: relative;
  bottom: 3%;
}
.eight-section .firstnoble {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.eight-section .noble2 {
  width: 30%;
  position: relative;
  left: 74%;
  bottom: 16vw;
  height: auto;
}
.eight-section .noble2para {
  width: 40%;
  position: relative;
  bottom: 32vw;
  left: 45%;
}
.eight-section .noble2para h1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 6vh;
  margin-right: 3%;
  position: relative;
  top: 25%;
}
@media (max-width: 500px) {
  .eight-section .noble2para h1 {
    font-size: 20px !important;
  }
}
@media (min-width: 350px) and (max-width: maxpx) {
  .eight-section .noble2para h1 {
    font-size: 540;
  }
}
@media (min-width: 540px) and (max-width: maxpx) {
  .eight-section .noble2para h1 {
    font-size: 800;
  }
}
@media (min-width: 800px) and (max-width: maxpx) {
  .eight-section .noble2para h1 {
    font-size: 1000;
  }
}
@media (min-width: 1000px) and (max-width: maxpx) {
  .eight-section .noble2para h1 {
    font-size: 1200;
  }
}
@media (min-width: 1200px) and (max-width: maxpx) {
  .eight-section .noble2para h1 {
    font-size: 9999;
  }
}
.eight-section .noble2para p {
  font-size: 1.2vw;
  position: relative;
  bottom: 1.6vw;
}
.eight-section .noble3 {
  width: 8%;
  position: relative;
  height: auto;
  right: 4%;
  margin-top: 15%;
  display: inline;
}
.eight-section .noble3para {
  width: 40%;
  margin-top: 30%;
}
.eight-section .noble3para h1 {
  font-size: 6vh;
}
@media (max-width: 500px) {
  .eight-section .noble3para h1 {
    font-size: 20px !important;
  }
}
@media (min-width: 350px) and (max-width: maxpx) {
  .eight-section .noble3para h1 {
    font-size: 540;
  }
}
@media (min-width: 540px) and (max-width: maxpx) {
  .eight-section .noble3para h1 {
    font-size: 800;
  }
}
@media (min-width: 800px) and (max-width: maxpx) {
  .eight-section .noble3para h1 {
    font-size: 1000;
  }
}
@media (min-width: 1000px) and (max-width: maxpx) {
  .eight-section .noble3para h1 {
    font-size: 1200;
  }
}
@media (min-width: 1200px) and (max-width: maxpx) {
  .eight-section .noble3para h1 {
    font-size: 9999;
  }
}
.eight-section .noble3para p {
  font-size: 1.2vw;
  position: relative;
  bottom: 3%;
}
.eight-section .third-noble {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  bottom: 50vw;
}
.eight-section .noble4 {
  width: 18%;
  position: relative;
  left: 86%;
  bottom: 16vw;
  height: auto;
}
.eight-section .noble4para {
  width: 40%;
  position: relative;
  bottom: 28vw;
  left: 43%;
}
.eight-section .noble4para h1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 6vh;
  margin-right: 3%;
  position: relative;
  top: 25%;
}
@media (max-width: 500px) {
  .eight-section .noble4para h1 {
    font-size: 20px !important;
  }
}
@media (min-width: 350px) and (max-width: maxpx) {
  .eight-section .noble4para h1 {
    font-size: 540;
  }
}
@media (min-width: 540px) and (max-width: maxpx) {
  .eight-section .noble4para h1 {
    font-size: 800;
  }
}
@media (min-width: 800px) and (max-width: maxpx) {
  .eight-section .noble4para h1 {
    font-size: 1000;
  }
}
@media (min-width: 1000px) and (max-width: maxpx) {
  .eight-section .noble4para h1 {
    font-size: 1200;
  }
}
@media (min-width: 1200px) and (max-width: maxpx) {
  .eight-section .noble4para h1 {
    font-size: 9999;
  }
}
.eight-section .noble4para p {
  font-size: 1.2vw;
  position: relative;
  bottom: 1.6vw;
}
.eight-section .fourth-noble {
  position: relative;
  bottom: 40vw;
}
.eight-section .noble5 {
  width: 20%;
  position: relative;
  left: 32%;
  bottom: 16vw;
  height: auto;
}
.eight-section .noble5para {
  width: 40%;
  position: relative;
  bottom: 38vw;
  right: 4%;
}
.eight-section .noble5para h1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 6vh;
  margin-right: 3%;
  position: relative;
  top: 25%;
}
@media (max-width: 500px) {
  .eight-section .noble5para h1 {
    font-size: 20px !important;
  }
}
@media (min-width: 350px) and (max-width: maxpx) {
  .eight-section .noble5para h1 {
    font-size: 540;
  }
}
@media (min-width: 540px) and (max-width: maxpx) {
  .eight-section .noble5para h1 {
    font-size: 800;
  }
}
@media (min-width: 800px) and (max-width: maxpx) {
  .eight-section .noble5para h1 {
    font-size: 1000;
  }
}
@media (min-width: 1000px) and (max-width: maxpx) {
  .eight-section .noble5para h1 {
    font-size: 1200;
  }
}
@media (min-width: 1200px) and (max-width: maxpx) {
  .eight-section .noble5para h1 {
    font-size: 9999;
  }
}
.eight-section .noble5para p {
  font-size: 1.2vw;
  position: relative;
  bottom: 1.6vw;
}
.eight-section .fifth-noble {
  position: relative;
  bottom: 43vw;
}

/* Ninth section with responsive margin adjustments */
@media (max-width: 720px) {
  .ninth-section {
    margin-top: 100px;
  }
}
@media (max-width: 599px) {
  .ninth-section {
    margin-top: 180px;
  }
}
@media (max-width: 559px) {
  .ninth-section {
    margin-top: 310px;
  }
}
.ninth-section h1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: 50px;
}
.ninth-section h1 .word {
  margin: 0 5px;
}
@media (max-width: 560px) {
  .ninth-section h1 {
    font-size: 20px;
    justify-content: center;
  }
  .ninth-section h1 .word {
    margin: 10px 0;
  }
}
@media (min-width: 450px) and (max-width: 725px) {
  .ninth-section h1 {
    font-size: 30px;
  }
}
.ninth-section p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

/* Container for carousel or centered content */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 20px 0;
  overflow: visible;
}

/* Carousel container with navigation */
.carousel-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  z-index: 1;
}

/* Wrapper for carousel slides */
.carousel-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 700px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-wrapper::-webkit-scrollbar {
  display: none;
}
.carousel-wrapper.dragging {
  scroll-behavior: auto;
}

/* Carousel slide layout */
.carousel {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: nowrap;
  align-items: center;
  gap: 28px;
  margin: 0;
}
.carousel .carousel-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 550px;
  min-width: 144px;
  height: 700px;
  flex-grow: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: width min-width height flex flex-grow flex-shrink flex-basis opacity 240ms ease;
}
@media (max-width: 560px) {
  .carousel .carousel-slide {
    width: 300px;
  }
}
.carousel .carousel-slide img,
.carousel .carousel-slide .carousel-image {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 2s ease;
}
.carousel .carousel-slide .carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-height: 100%;
  position: relative;
  bottom: 400px;
  left: 30px;
  padding: 16px;
  color: #fff;
  overflow: hidden;
}
.carousel .carousel-slide .carousel-content h1 {
  font-size: 40px;
}
.carousel .carousel-slide .carousel-content p {
  display: none;
  font-size: 0.75rem;
  margin-top: 1em;
  line-height: 1.5;
  margin-bottom: 0;
  transform: translateY(101%);
  transition: width height flex flex-grow flex-shrink flex-basis opacity transform margin 240ms ease;
  transition-delay: 50ms;
}
.carousel .carousel-slide.loaded img,
.carousel .carousel-slide.loaded .carousel-image {
  opacity: 1;
  transition-delay: 100ms;
}
.carousel .carousel-slide.loaded .carousel-content {
  transition-delay: 100ms;
  transform: translateY(0%);
}
.carousel .carousel-slide.loaded .carousel-content h2 {
  font-size: 1.5rem;
}

/* Navigation buttons for carousel */
button.slider-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid rgb(181, 181, 181);
  border-radius: 999px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
  visibility: visible !important;
  opacity: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
button.slider-nav svg {
  pointer-events: none;
  stroke: black;
  width: 24px;
  height: 24px;
  fill: none;
}
button.slider-nav:hover {
  background-color: #333333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

button.prev {
  left: 30px;
}

button.next {
  right: 30px;
}

.slider-start button.prev {
  opacity: 0.7;
  visibility: visible !important;
}

.slider-end button.next {
  opacity: 0.7;
  visibility: visible !important;
}

/* Custom scrollbar for carousel */
.carousel-scrollbar {
  margin-top: 45px;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  background-color: transparent;
}
.carousel-scrollbar .scrollbar-track {
  border-radius: 999px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 100%;
  position: relative;
}
.carousel-scrollbar .scrollbar-thumb {
  width: 20%;
  height: 100%;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  background-color: black;
  transition: transform background-color height 200ms ease;
}
.carousel-scrollbar .scrollbar-thumb::after {
  content: "";
  display: block;
  height: 20px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.carousel-scrollbar .scrollbar-thumb:hover {
  height: 350%;
  background-color: black;
}
.carousel-scrollbar .scrollbar-thumb.dragging, .carousel-scrollbar .scrollbar-thumb.dragging:hover {
  background-color: black;
  height: 400%;
}
.carousel-scrollbar .scrollbar-thumb.dragging::after {
  height: 30px;
}

/* Tenth section with bordered content and image */
.tenth-section {
  height: auto;
  width: 98%;
  margin-left: 1%;
  margin-top: 170px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

/* First row of tenth section */
.line1 {
  height: 250px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.line1 h2 {
  margin-bottom: 120px;
}
@media (max-width: 480px) {
  .line1 h2 {
    font-size: 15px;
  }
}
.line1 p {
  font-size: 13px;
  margin-bottom: 120px;
}

/* Second row of tenth section with content and image */
.line2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 0) and (max-width: 860px) {
  .line2 {
    flex-direction: column-reverse;
  }
  .line2 .tenth-content {
    width: 100%;
    margin-top: 30px;
  }
  .line2 .tenth-content h1 {
    bottom: 5px;
  }
  .line2 .tenth-image {
    width: 100%;
    margin-left: 0px;
    position: relative;
    right: 4%;
  }
}
@media (min-width: 0) and (max-width: 860px) and (max-width: 480px) {
  .line2 .tenth-image {
    right: 8%;
  }
}
@media (min-width: 0) and (max-width: 860px) {
  .line2 .tenp2 {
    margin-top: 20px;
  }
}

/* Content block in tenth section */
.tenth-content {
  width: 35%;
  height: auto;
}
.tenth-content h1 {
  position: relative;
  bottom: 25px;
  font-size: 50px;
}
@media (min-width: 0) and (max-width: 1270px) {
  .tenth-content h1 {
    font-size: 40px;
  }
}
@media (min-width: 0) and (max-width: 1070px) {
  .tenth-content h1 {
    font-size: 30px;
  }
}

.tenp2 {
  margin-top: 140px;
}

/* Image block in tenth section */
.tenth-image {
  width: 49%;
  height: auto;
  margin-left: 14%;
}
.tenth-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 25px;
}

/* Eleventh section with image and content */
.eleven-section {
  margin-top: 180px;
  width: 90%;
  margin-left: 5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 0) and (max-width: 900px) {
  .eleven-section {
    flex-direction: column;
  }
  .eleven-section .eleventh-content {
    width: 100%;
    text-align: center;
  }
  .eleven-section .eleventh-image {
    width: 90%;
    margin-left: 20px;
    position: relative;
    bottom: 50px;
  }
}
.eleven-section p {
  font-size: 12px;
}
.eleven-section h3 {
  font-size: 50px;
  position: relative;
  bottom: 35px;
}
.eleven-section img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.eleventh-image {
  width: 60%;
  margin-left: 20%;
  margin-top: 32px;
}

/* Slider container for full-width slides */
.slider-container {
  width: 100%;
  margin-top: 100px;
  height: 82vh;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  transition: left 0.5s ease-in-out;
}

.slide.active {
  left: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Content overlay for slides */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.slide-content h1 {
  font-size: 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.slide-content p {
  font-size: 15px;
}

.slide-content h1 {
  font-size: 3rem;
  font-family: Arial, sans-serif;
  margin-bottom: 1rem;
}

/* Navigation arrows for slider */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 18px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }
  .nav-arrow {
    width: 18px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 1.5rem;
  }
  .nav-arrow {
    width: 15px;
    height: 12px;
  }
}
/* First part of main content section */
.first-part {
  width: 40%;
}
.first-part h1 {
  position: relative;
  bottom: 17px;
  font-size: 45px;
}
.first-part p {
  font-size: 10px;
}

/* Second part of main content section */
.second-part {
  margin-left: 10%;
  width: 50%;
}
.second-part p {
  line-height: 1.9;
}

/* Main content section with two parts */
.main {
  margin-top: 180px;
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 20%;
}
@media (min-width: 0) and (max-width: 1064px) {
  .main {
    flex-direction: column;
  }
  .main .first-part {
    width: 100%;
  }
  .main .second-part {
    width: 100%;
    margin-left: 0px;
  }
}

/* Fourteenth section with centered content and images */
.fourteen-section {
  margin-top: 150px;
}

.fourteen-content h1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: 40px;
}
@media (max-width: 560px) {
  .fourteen-content h1 {
    font-size: 25px;
  }
}
.fourteen-content p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

/* Image grid for fourteenth section */
.fourteen-images {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 0) and (max-width: 1128px) {
  .fourteen-images {
    flex-direction: column;
  }
  .fourteen-images .firstt-image, .fourteen-images .secondd-image, .fourteen-images .thirdd-image {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    background-position: center;
  }
  .fourteen-images .firstt-image h1, .fourteen-images .secondd-image h1, .fourteen-images .thirdd-image h1 {
    margin-top: 150px;
  }
}
@media (min-width: 0) and (max-width: 1128px) and (max-width: 480px) {
  .fourteen-images .firstt-image h2, .fourteen-images .secondd-image h2, .fourteen-images .thirdd-image h2 {
    font-size: 40px;
  }
}

.firstt-image {
  width: 33%;
  height: 800px;
  background-image: url("../assets/fourteen1.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 50px;
}
.firstt-image h1 {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 390px;
  font-size: 50px;
}

.secondd-image {
  width: 33%;
  height: 800px;
  background-image: url("../assets/fourteen2.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 50px;
}
.secondd-image h1 {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 390px;
  font-size: 50px;
}
.secondd-image h2 {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: 50px;
  position: relative;
  bottom: 5%;
}

.thirdd-image {
  width: 33%;
  height: 800px;
  background-image: url("../assets/fourteen3.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 50px;
}
.thirdd-image h1 {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 390px;
  font-size: 50px;
}

/* Fifteenth section with centered content */
.fifteen-section {
  margin-top: 150px;
  width: 100%;
  height: auto;
}
.fifteen-section .fifteenh {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: 50px;
}
@media (max-width: 560px) {
  .fifteen-section .fifteenh {
    font-size: 25px;
  }
}
.fifteen-section .fifteenp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.fifteen-content {
  width: 60%;
  margin-left: 20%;
}

/* Dynamic styling for fifteen section parts */
.fifteen-first {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.fifteen-first h2 {
  font-size: 40px;
}

.img img {
  margin-left: 20px;
  position: relative;
  bottom: 30px;
}

.fifteen-first-content {
  margin-left: 30px;
  margin-top: 70px;
}
.fifteen-first-content h1 {
  font-size: 23px;
}
.fifteen-first-content p {
  margin-top: 30px;
}

.fifteen-second {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  justify-content: flex-end;
}
.fifteen-second h2 {
  font-size: 40px;
}

.img img {
  margin-left: 20px;
  position: relative;
  bottom: 30px;
}

.fifteen-second-content {
  margin-left: 30px;
  margin-top: 70px;
}
.fifteen-second-content h1 {
  font-size: 23px;
}
.fifteen-second-content p {
  margin-top: 30px;
}

.fifteen-third {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.fifteen-third h2 {
  font-size: 40px;
}

.img img {
  margin-left: 20px;
  position: relative;
  bottom: 30px;
}

.fifteen-third-content {
  margin-left: 30px;
  margin-top: 70px;
}
.fifteen-third-content h1 {
  font-size: 23px;
}
.fifteen-third-content p {
  margin-top: 30px;
}

.fifteen-fourth {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  justify-content: flex-end;
}
.fifteen-fourth h2 {
  font-size: 40px;
}

.img img {
  margin-left: 20px;
  position: relative;
  bottom: 30px;
}

.fifteen-fourth-content {
  margin-left: 30px;
  margin-top: 70px;
}
.fifteen-fourth-content h1 {
  font-size: 23px;
}
.fifteen-fourth-content p {
  margin-top: 30px;
}

.fifteen-fifth {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.fifteen-fifth h2 {
  font-size: 40px;
}

.img img {
  margin-left: 20px;
  position: relative;
  bottom: 30px;
}

.fifteen-fifth-content {
  margin-left: 30px;
  margin-top: 70px;
}
.fifteen-fifth-content h1 {
  font-size: 23px;
}
.fifteen-fifth-content p {
  margin-top: 30px;
}

/* Sixteenth section with two-column layout */
.sixteen-section {
  margin-top: 170px;
  width: 74%;
  margin-left: 13%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 0) and (max-width: 910px) {
  .sixteen-section {
    flex-direction: column;
  }
  .sixteen-section .sixteen-first, .sixteen-section .sixteen-second {
    width: 100%;
    margin-left: 0px;
    text-align: center;
  }
}

.sixteen-first {
  width: 25%;
}
.sixteen-first h1 {
  font-size: 40px;
  display: flex;
}
@media (max-width: 560px) {
  .sixteen-first h1 {
    font-size: 25px;
  }
}
.sixteen-first p {
  font-size: 12px;
}

.sixteen-second {
  width: 90%;
  margin-left: 16%;
}
@media (min-width: 0) and (max-width: 1000px) {
  .sixteen-second {
    margin-left: 22%;
  }
}
.sixteen-second h1 {
  font-size: 25px;
  display: flex;
}
@media (max-width: 560px) {
  .sixteen-second h1 {
    font-size: 25px;
  }
}

.sixteen-second-first,
.sixteen-second-second,
.sixteen-second-third {
  border-bottom: 1px solid rgb(181, 181, 181);
}

/* Seventeenth section with grid-like content */
.seventeen-section {
  width: 80%;
  margin-left: 10%;
  margin-top: 150px;
}

.seventeen-content h1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: 45px;
}
@media (max-width: 560px) {
  .seventeen-content h1 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .seventeen-content h1 {
    font-size: 20px;
  }
}
.seventeen-content p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

/* Dynamic styling for seventeenth section parts */
.seventeen-first {
  width: 100%;
  height: auto;
  margin-top: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 0) and (max-width: 1030px) {
  .seventeen-first {
    flex-direction: column;
  }
  .seventeen-first .seventeen-first-first, .seventeen-first .seventeen-first-second, .seventeen-first .seventeen-first-third {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

.seventeen-first-first,
.seventeen-first-second,
.seventeen-first-third {
  width: 28%;
  margin-bottom: 70px;
}
.seventeen-first-first h1,
.seventeen-first-second h1,
.seventeen-first-third h1 {
  font-size: 25px;
}
.seventeen-first-first p,
.seventeen-first-second p,
.seventeen-first-third p {
  line-height: 2;
}

.seventeen-second {
  width: 100%;
  height: auto;
  margin-top: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 0) and (max-width: 1030px) {
  .seventeen-second {
    flex-direction: column;
  }
  .seventeen-second .seventeen-second-first, .seventeen-second .seventeen-second-second, .seventeen-second .seventeen-second-third {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

.seventeen-second-first,
.seventeen-second-second,
.seventeen-second-third {
  width: 28%;
  margin-bottom: 70px;
}
.seventeen-second-first h1,
.seventeen-second-second h1,
.seventeen-second-third h1 {
  font-size: 25px;
}
.seventeen-second-first p,
.seventeen-second-second p,
.seventeen-second-third p {
  line-height: 2;
}

.seventeen-first {
  border-bottom: 1px solid rgb(181, 181, 181);
}

/* Eighteenth section with background and centered content */
.eighteen-sectionn {
  height: auto;
  min-height: 500px;
  margin-top: 120px;
  width: 100%;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.eighteen-sectionn h1 {
  margin-top: 12%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: 50px;
}
@media (max-width: 560px) {
  .eighteen-sectionn h1 {
    font-size: 30px;
  }
}
.eighteen-sectionn p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  line-height: 2;
  text-align: center;
}

.eighteen-content {
  width: 50%;
  justify-content: center;
}

/* Read more button positioning */
.button-read-me {
  margin-left: 40%;
}
@media (max-width: 480px) {
  .button-read-me {
    margin-left: 30%;
  }
}

/* Nineteenth section with form and content */
.ninteen-section {
  width: 90%;
  margin-left: 5%;
  height: auto;
  margin-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 0) and (max-width: 820px) {
  .ninteen-section {
    flex-direction: column;
  }
  .ninteen-section .ninteen-first, .ninteen-section .ninteen-second {
    width: 100%;
    margin-left: 0px;
    text-align: center;
    margin-top: 20px;
  }
}

.ninteen-first {
  width: 35%;
}
.ninteen-first h1 {
  font-size: 40px;
}
@media (max-width: 560px) {
  .ninteen-first h1 {
    font-size: 30px;
  }
}
.ninteen-first p {
  position: relative;
  top: 15px;
}

.ninteen-second {
  width: 60%;
  margin-left: 35%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.ninteen-second input::-moz-placeholder {
  display: block;
  margin-bottom: 10px;
  color: black;
}
.ninteen-second input::placeholder {
  display: block;
  margin-bottom: 10px;
  color: black;
}
.ninteen-second input {
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  width: 330%;
}
.ninteen-second .nineteeninput {
  height: 80px;
}
.ninteen-second button {
  background-color: #fff;
  border: none;
  color: black;
  cursor: pointer;
  font-size: 17px;
  margin-top: 20px;
}
.ninteen-second button img {
  margin-left: 15px;
  position: relative;
  top: 2px;
}

/* Footer with three-column layout */
footer {
  margin-top: 120px;
  border-top: 1px solid black;
  width: 90%;
  margin-left: 5%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 0) and (max-width: 950px) {
  footer {
    flex-direction: column;
    border-top: none;
  }
  footer .footer-one, footer .footer-two, footer .footer-three {
    width: 100%;
    border: none;
    margin-bottom: 20px;
    height: auto;
    margin-top: 20px;
  }
  footer .footer-one, footer .footer-two {
    border-bottom: 1px solid black;
  }
}

.footer-end {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  border-top: 1px solid black;
  font-size: 12px;
  font-weight: 900;
  align-content: center;
  text-align: center;
}

.footer-one,
.footer-two,
.footer-three {
  margin-top: 100px;
  bottom: 50px;
  position: relative;
  height: 250px;
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-one h2,
.footer-two h2,
.footer-three h2 {
  font-size: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.footer-one p,
.footer-two p,
.footer-three p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.footer-one {
  border-right: 1px solid black;
}

.footer-two {
  border-right: 1px solid black;
}
.footer-two a {
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-three h3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.footer-three hr {
  width: 70%;
}
.footer-three p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}/*# sourceMappingURL=style.css.map */