/* CSS RESET */
/* Basic CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

/* PAGE CSS */

body {
  max-width: 1120px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
}
.center {
  text-align: center;
}
.mt-48 {
  margin-top: 48px;
}
.main-image-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.image-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 16px 0px 8px 0px;
  gap: 16px;
  max-width: 994px;
  width: 100%;
}
.image-container::-webkit-scrollbar {
  display: none;
}
.image-container a {
  cursor: pointer;
}
.image-container img {
  max-width: 222px;
  flex-shrink: 0;
}
.scroll-button {
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.scroll-left {
  margin-right: 16px;
}
.scroll-right {
  margin-left: 16px;
}

.text-card-container-web {
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 20px 20px 0;
}
.text-card-container-mobile {
  display: none;
}

.text-card {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-radius: 8px;
  ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    img {
      margin-top: 5px;
    }
    p span {
      font-weight: 600;
    }
  }
}

.mobile img{
  display: none;
}

@media (min-width: 551px) and (max-width: 1160px) {
  body {
    padding: 0 24px;
  }
  .image-section-div {
    width: 80%;
  }
  .mobile img{
    display: none;
  }
}

@media screen and (max-width: 550px) {
  body {
    padding: 0 24px;
  }
  .image-section-div {
    width: 100%;
  }
  .scroll-button {
    display: none;
  }
  .image-container {
    max-width: 550px;
    width: 100%;
  }
  .image-container img {
    max-width: 220px;
    flex-shrink: 0;
  }
  .text-card-container-web {
    display: none;
  }
  .text-card-container-mobile {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .text-card-container-mobile h3{
    margin-bottom: 6px;
  }
  .text-card-container-mobile .text-card {
    padding-left: 0;
    text-align: left;
  }
  .desk img{
    display: none;
  }
  .mobile img{
    display: block;
  }
}
