main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.logo2 {
  height: auto;
  width: 150px;
  margin-bottom: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo2:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 290px;
  background: #f3f3f3;
  overflow: hidden;
}

.picture .title-picture {
  width: 1860px;
  height: auto;
  display: block;
}

.main-content {
  width: 800px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 30px;
}

.main-content2 {
  width: 100%;
  height: 1000px !important;
  padding-top: 50px;
  display: flex;
  text-align: center;
  justify-content: center;
}

.main-content2-wrapper {
  width: 500px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.main-content3 {
  width: 100%;
  height: 1000px !important;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-bottom: 30px;
}

.left-side {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 40px;
  width: 70%;
}

.right-side {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 30px;
  width: 30%;
}

.picture-content {
  width: 100%;
  min-height: 600px;
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
}

.rows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.row {
  position: relative;
  padding: 10px 66px;
  background: rgba(255, 255, 255, 0.02);
  max-width: 1300px;
  width: 100%;
}

.row-bottom {
  position: relative;
  padding: 10px 66px;
  padding-bottom: 50px;
  background: rgba(255, 255, 255, 0.02);
  max-width: 1300px;
  width: 100%;
}

.row-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.row-header h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.row-header .count {
  color: var(--muted);
  font-size: 0.9rem;
}

.track {
  display: flex;
  gap: 43px;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  max-height: 500px;
}

.track::-webkit-scrollbar {
  display: none;
}

.card,
.card1,
.card2 {
  flex: 0 0 auto;
  background-color: #f3f3f3;
  padding: 0 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.card1:hover,
.card2:hover {
  transform: scale(1.02);
}

.card,
.card1,
.card2 {
  width: 371px;
  height: 371px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card img,
.card1 img,
.card2 img {
  height: 730px;
  width: auto;
  object-fit: cover;
}

.certificate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #51baeb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.certificate-modal.active {
  opacity: 1;
  visibility: visible;
}

.certificate-modal img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px;
  cursor: default;
  animation: modalZoom 0.3s ease;
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333;
  font-weight: bold;
}

.modal-nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 40px;
}

.modal-next {
  right: 40px;
}

@keyframes modalZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.btn-arrow {
  --size: 36px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  border: none;
  background: #51baeb;
  color: #e6eef6;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  transition: transform 0.12s ease, background 0.12s;
}
.btn-arrow:active {
  transform: translateY(-50%) scale(0.96);
}
.btn-arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.btn-left {
  left: 10px;
}
.btn-right {
  right: 10px;
}

.arrow {
  width: 14px;
  height: 14px;
  display: block;
  transform: translateX(0);
}

h1 {
  color: black;
  font-family: "Roboto", Sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 34px;
}

h2 {
  font-size: 38px;
  color: #51b9ea;
}

h3 {
  font-size: 30px;
  color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  hyphens: auto;
  overflow-wrap: break-word;
}

p,
li {
  font-size: 19px;
}

.blue {
  color: #51b9ea;
  font-weight: 550;
}

.gray {
  color: gray;
}

.contact-button {
  display: inline-block;
  margin-top: 50px;
  background-color: #e30613;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  height: 60px;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1450px) {
  .row,
  .row-bottom {
    width: 865px;
  }
}

@media (max-width: 1200px) {
  .picture {
    width: 100%;
    height: 272px;
  }

  .picture .title-picture {
    width: 1760px;
  }

  .left-side {
    width: 600px;
  }

  .right-side {
    width: 300px;
  }
}

@media (max-width: 1120px) {
  .picture {
    width: 100%;
    height: 260px;
  }

  .picture .title-picture {
    width: 1670px;
  }
}

@media (max-width: 1060px) {
  .picture {
    width: 100%;
    height: 240px;
  }

  .picture .title-picture {
    width: 1570px;
  }

  h1,
  h2 {
    font-size: 34px;
  }
}

@media (max-width: 1015px) {
  .picture {
    width: 100%;
    height: 220px;
  }

  .picture .title-picture {
    width: 1470px;
  }

  .left-side {
    width: 530px;
    padding-right: 20px;
  }

  .right-side {
    width: 280px;
    padding-left: 20px;
  }

  h1,
  h2 {
    font-size: 32px;
  }

  .row,
  .row-bottom {
    width: 412px;
  }
}

@media (max-width: 935px) {
  .picture {
    width: 100%;
    height: 210px;
  }

  .picture .title-picture {
    width: 1370px;
  }

  .left-side {
    width: 530px;
    padding-right: 10px;
  }

  .right-side {
    width: 280px;
    padding-left: 10px;
  }

  h1,
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 875px) {
  .picture {
    width: 100%;
    height: 196px;
  }

  .picture .title-picture {
    width: 1275px;
  }

  .left-side {
    width: 480px;
  }

  .right-side {
    width: 280px;
  }

  h1,
  h2 {
    font-size: 28px;
  }

  .certificate-modal img {
    max-width: 90%;
    max-height: 85vh;
    padding: 10px;
  }
}

@media (max-width: 815px) {
  .picture {
    width: 100%;
    height: 177px;
  }

  .picture .title-picture {
    width: 1170px;
  }

  .left-side {
    width: 430px;
  }

  .right-side {
    width: 280px;
  }

  .certificate-modal img {
    max-width: 70%;
    max-height: 85vh;
    padding: 10px;
  }

  .main-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .modal-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .certificate-modal img {
    max-width: 95%;
    max-height: 85vh;
    padding: 10px;
  }

  .modal-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  @keyframes modalZoom {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .btn-arrow {
    --size: 36px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--size);
    height: var(--size);
    border-radius: 999px;
    border: none;
    background: #51baeb;
    color: #e6eef6;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    transition: transform 0.12s ease, background 0.12s;
  }
  .btn-arrow:active {
    transform: translateY(-50%) scale(0.96);
  }
  .btn-arrow[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
  }
  .btn-left {
    left: 10px;
  }
  .btn-right {
    right: 10px;
  }

  .arrow {
    width: 14px;
    height: 14px;
    display: block;
    transform: translateX(0);
  }

  .left-side {
    width: 700px;
  }

  .right-side {
    width: 700px;
    display: flex;
    align-items: center;
  }

  .contact-button {
    margin-top: 10px;
  }

  h2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  h3 {
    text-align: center;
  }

  .picture .title-picture {
    width: 1470px;
  }

  .certificate-modal img {
    max-width: 70%;
    max-height: 85vh;
    padding: 10px;
  }
}

@media (max-width: 596px) {
  .row,
  .row-bottom {
    width: 340px;
  }

  .card img,
  .card1 img,
  .card2 img {
    height: 630px;
    width: auto;
    object-fit: cover;
  }

  .track {
    gap: 36px;
  }

  .card {
    width: 340px;
    height: 340px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .card1 {
    width: 340px;
    height: 340px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .card2 {
    width: 340px;
    height: 340px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 580px) {
  .left-side {
    width: 500px;
  }

  .row,
  .row-bottom {
    width: 320px;
  }

  .card {
    width: 320px;
  }

  .card1 {
    width: 320px;
  }

  .card2 {
    width: 320px;
  }

  .track {
    gap: 34px;
  }
}

@media (max-width: 530px) {
  .card img,
  .card1 img,
  .card2 img {
    height: 530px;
    width: auto;
    object-fit: cover;
  }
}

@media (max-width: 462px) {
  .certificate-modal img {
    max-width: 90%;
    max-height: 85vh;
    padding: 10px;
  }

  .row,
  .row-bottom {
    width: 300px;
  }

  .card {
    width: 300px;
    height: 300px;
  }

  .card1 {
    width: 300px;
    height: 300px;
  }

  .card2 {
    width: 300px;
    height: 300px;
  }

  .track {
    gap: 32px;
  }
}

@media (max-width: 450px) {
  .certificate-modal img {
    max-width: 90%;
    max-height: 85vh;
    padding: 10px;
  }

  .row,
  .row-bottom {
    width: 290px;
  }

  .card {
    width: 290px;
    height: 290px;
  }

  .card1 {
    width: 290px;
    height: 290px;
  }

  .card2 {
    width: 290px;
    height: 290px;
  }

  .track {
    gap: 30px;
  }
}

@media (max-width: 435px) {
  .certificate-modal img {
    max-width: 90%;
    max-height: 85vh;
    padding: 10px;
  }

  .row,
  .row-bottom {
    width: 280px;
  }

  .card {
    width: 280px;
    height: 280px;
  }

  .card1 {
    width: 280px;
    height: 280px;
  }

  .card2 {
    width: 280px;
    height: 280px;
  }

  .track {
    gap: 29px;
  }
}

@media (max-width: 422px) {
  .certificate-modal img {
    max-width: 90%;
    max-height: 85vh;
    padding: 10px;
  }

  .row,
  .row-bottom {
    width: 270px;
  }

  .card {
    width: 270px;
    height: 270px;
  }

  .card1 {
    width: 270px;
    height: 270px;
  }

  .card2 {
    width: 270px;
    height: 270px;
  }

  .track {
    gap: 28px;
  }
}

@media (max-width: 412px) {
  .certificate-modal img {
    max-width: 90%;
    max-height: 85vh;
    padding: 10px;
  }

  .row,
  .row-bottom {
    width: 260px;
  }

  .card {
    width: 260px;
    height: 260px;
  }

  .card1 {
    width: 260px;
    height: 260px;
  }

  .card2 {
    width: 260px;
    height: 260px;
  }

  .track {
    gap: 27px;
  }

  .card img,
  .card1 img,
  .card2 img {
    height: 430px;
    width: auto;
    object-fit: cover;
  }
}

@media (max-width: 400px) {
  .row,
  .row-bottom {
    width: 250px;
  }

  .card {
    width: 250px;
    height: 250px;
  }

  .card1 {
    width: 250px;
    height: 250px;
  }

  .card2 {
    width: 250px;
    height: 250px;
  }

  .track {
    gap: 26px;
  }
}

@media (max-width: 390px) {
  .row,
  .row-bottom {
    width: 240px;
  }

  .card {
    width: 240px;
    height: 240px;
  }

  .card1 {
    width: 240px;
    height: 240px;
  }

  .card2 {
    width: 240px;
    height: 240px;
  }

  .track {
    gap: 25px;
  }
}

@media (max-width: 380px) {
  .row,
  .row-bottom {
    width: 230px;
  }

  .card {
    width: 230px;
    height: 230px;
  }

  .card1 {
    width: 230px;
    height: 230px;
  }

  .card2 {
    width: 230px;
    height: 230px;
  }

  .track {
    gap: 24px;
  }
}

@media (max-width: 370px) {
  .row,
  .row-bottom {
    width: 220px;
  }

  .card {
    width: 220px;
    height: 220px;
  }

  .card1 {
    width: 220px;
    height: 220px;
  }

  .card2 {
    width: 220px;
    height: 220px;
  }

  .track {
    gap: 23px;
  }
}

@media (max-width: 360px) {
  .row,
  .row-bottom {
    width: 210px;
  }

  .card {
    width: 210px;
    height: 210px;
  }

  .card1 {
    width: 210px;
    height: 210px;
  }

  .card2 {
    width: 210px;
    height: 210px;
  }

  .track {
    gap: 22px;
  }
}

@media (max-width: 350px) {
  .row,
  .row-bottom {
    width: 200px;
  }

  .card {
    width: 200px;
    height: 200px;
  }

  .card1 {
    width: 200px;
    height: 200px;
  }

  .card2 {
    width: 200px;
    height: 200px;
  }

  .track {
    gap: 21px;
  }
}

@media (max-width: 340px) {
  .row,
  .row-bottom {
    width: 190px;
  }

  .card {
    width: 190px;
    height: 190px;
  }

  .card1 {
    width: 190px;
    height: 190px;
  }

  .card2 {
    width: 190px;
    height: 190px;
  }

  .track {
    gap: 20px;
  }
}

@media (max-width: 330px) {
  .row,
  .row-bottom {
    width: 180px;
  }

  .card {
    width: 180px;
    height: 180px;
  }

  .card1 {
    width: 180px;
    height: 180px;
  }

  .card2 {
    width: 180px;
    height: 180px;
  }

  .track {
    gap: 19px;
  }
}
