body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.first-section {
  text-align: center;
  padding: 100px 0;
}

.first-section img {
  max-width: 100%;
  height: auto;
}

.first-section h1 {
  font-size: 32px;
  margin: 20px 0;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.first-section p {
  font-size: 18px;
  color: #777;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.first-section .buttons {
  margin-top: 20px;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.second-section {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.second-section .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.second-section .col {
  flex: 1;
  max-width: 45%;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slide-in-left 1s ease-out forwards;
}

.second-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.second-section h2 {
  font-size: 24px;
  margin: 15px 0;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.second-section p {
  color: #777;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.third-section {
  text-align: center;
  padding: 100px 0;
  background-color: #333;
  color: #fff;
}

.third-section .cover {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.third-section .call-button,
.third-section .read-more-button {
  padding: 15px 30px;
  background-color: #017171;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.fourth-section {
  padding: 50px 0;
}

.fourth-section .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 30px;
}

.fourth-section .col {
  flex: 1;
  max-width: 45%;
  text-align: center;
  opacity: 0;
  animation: slide-in-left 1s ease-out forwards;
}

.fourth-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.fourth-section h2 {
  font-size: 24px;
  margin: 15px 0;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.fourth-section p {
  color: #777;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.fifth-section {
  padding: 50px 0;
}

.fifth-section .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fifth-section .col {
  text-align: center;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.fifth-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.fifth-section h3 {
  font-size: 20px;
  margin: 10px 0;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.fifth-section p {
  color: #777;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.sixth-section {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.sixth-section .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.sixth-section .col {
  flex: 1;
  max-width: 45%;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slide-in-right 1s ease-out forwards;
}

.sixth-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.sixth-section h2 {
  font-size: 24px;
  margin: 15px 0;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.sixth-section p {
  color: #777;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn {
  padding: 10px 20px;
  background-color: #017171;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 10px;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #026b6b;
}

@media (max-width: 768px) {
  .first-section {
    padding: 80px 0;
  }

  .second-section .row {
    flex-direction: column;
  }

  .second-section .col {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .third-section .cover {
    flex-direction: column;
  }

  .third-section .call-button,
  .third-section .read-more-button {
    margin: 10px 0;
  }

  .fourth-section .row {
    flex-direction: column;
  }

  .fourth-section .col {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .fifth-section .row {
    grid-template-columns: 1fr;
  }

  .fifth-section .col {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .sixth-section .row {
    flex-direction: column;
  }

  .sixth-section .col {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.dropdown-item {
  text-align: right;
}
.first-section h1 {
  text-align: center;
  font-size: 48px;
  color: blueviolet;
}
.first-section p {
  text-align: center;
  color: white;
}
.button-1 a {
  text-decoration: none;
  color: white;
}
.first-section {
  background-image: url(./imgs/cover.png);
  background-size: cover;
}
.btn {
  padding: 10px 20px;
  background-color: #017171;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 10px;
  border-radius: 4px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-5px);
  background-color: #026b6b;
}
.second-section h2,
.second-section p {
  margin-top: 5px;
  text-align: right;
}

.second-section p {
  text-align: justify;
}

.link-phone {
  text-decoration: none;
  color: whitesmoke;
}
.fourth-section .fade-in {
  text-align: right;
}
.fourth-section .paragraph {
  text-align: justify;
}
.fifth-section .paragraph {
  text-align: justify;
}
.fifth-section h3,
.fifth-section h4,
.fifth-section p {
  text-align: right;
}
.sixth-section h3,
.sixth-section p {
  text-align: right;
}
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

a {
  text-decoration: none;
  color: blue;
}
