/* Home Section */
.home-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
  order: 1;
}

.home-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.home-section .content {
  display: flex;
  flex-direction: column;
}

.home-section .description {
  display: flex;
  flex-direction: column;
}

.home-section .summary {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  text-align: left;
}

.home-section .content-image {
  width: 100%;
  max-height: 535px;
  height: auto;
  border-radius: 12px;
  align-self: center;
  background-color: #f9f7f7;
}

.home-section .content-image img {
  width: 100%;
  max-height: 535px;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (min-width: 1280px) {
  .home-section {
    background-color: #f9f7f7;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .home-section .container {
    max-width: 1200px;
    flex-direction: row;
    gap: 0;
    margin: 0 auto;
  }

  .home-section .content {
    justify-content: center;
    gap: 32px;
  }

  .home-section .title {
    font-size: 52px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
  }

  .home-section .description {
    gap: 16px;
  }

  .home-section .summary {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .home-section .register-request-button {
    width: 100%;
    max-width: 250px;
    height: var(--btn-height-mobile);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-radius: var(--border-radius);
    border: none;
    background-color: #df0611;
    color: #ffffff;
  }

  .home-section .register-request-button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .home-section .content-image {
    height: 503px;
    width: 556px;
  }

  .home-section .content-image img {
    height: 503px;
    width: 556px;
  }
}

/* Swiper */
@media (min-width: 1280px) {
  .swiper-button-prev {
    background-image: url("../../../assets/address/arrow_left.png");
    background-size: 100% 100%;
  }

  .swiper-button-next {
    background-image: url("../../../assets/address/arrow_right.png");
    background-size: 100% 100%;
  }
}

/* Breadcrumb Section */
.breadcrumb-section {
  padding: 0 16px 30px;
}

.breadcrumb-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.breadcrumb-section span,
.breadcrumb-section a {
  font-family: Ubuntu;
  font-size: 14px;
  font-weight: 300;
  line-height: 18.2px;
  text-align: center;
  color: #353535;
}

.breadcrumb-section span {
  font-family: Ubuntu;
  font-weight: 400;
}

@media (min-width: 1280px) {
  .breadcrumb-section {
    background-color: #f9f7f7;
    padding: 20px 0 0;
  }

  .breadcrumb-section .container {
    width: 1200px;
    margin: 0 auto;
  }
}

/* Features Section */
.features-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.features-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
  color: #353535;
}

.features-section .title span {
  color: #DF0611;
}

.features-section .features-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.features-section .feature-card {
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: var(--padding-small);
}

.features-section .feature-card .content {
  display: flex;
  gap: 16px;
}

.features-section .feature-card .content-image {
  height: 16px;
  width: 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-section .feature-card .content-image img {
  height: 16px;
  width: 14px;
}

.features-section .feature-card .description {
  display: flex;
}

.features-section .feature-card .description p {
  font-size: var(--features-font-size);
  font-weight: 300;
  line-height: var(--features-line-height);
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .features-section {
    margin-top: 80px;
  }
  
  .features-section .container {
    flex-direction: row;
    width: 1200px;
    gap: 36px;
  }

  .features-section .title {
    width: 376px;
  }

  .features-section .features-panel {
    width: 788px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .features-section .feature-card {
    max-width: 376px;
    background-color: #f9f7f7;
    padding: 20px;
  }

  .features-section .feature-card .content {
    gap: 20px;
  }

  .features-section .feature-card .description {
    width: 288px;
  }

  .features-section .feature-card .content-image {
    width: 27.63px;
    height: 31.39px;
  }

  .features-section .feature-card .content-image img {
    width: 27.63px;
    height: 31.39px;
  }
}

/* Results Section */
.results-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.results-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.results-section .content {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.results-section .main-content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 184px;
}

.results-section .main-content-image img {
  width: 100%;
  min-height: 184px;
  height: auto;
  display: block;
}

.results-section .results-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.results-section .result-card {
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: var(--padding-small);
}

.results-section .result-card .content {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.results-section .result-card .content-image {
  width: 16px;
  height: 26.13px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.results-section .result-card .content-image img {
  width: 16px;
  height: 26.13px;
}

.results-section .result-card .content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .results-section .container {
    width: 1200px;
    gap: 60px;
  }

  .results-section .results-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .results-section .result-card {
    background-color: #f9f7f7;
    width: 582px;
    height: 82px;
    padding: 20px;
    border-radius: 12px;
  }

  .results-section .content {
    flex-direction: row;
  }

  .results-section .main-content-image {
    width: 582px;
    height: 374px;
    border-radius: 12px;
  }

  .results-section .main-content-image img {
    width: 582px;
    height: 374px;
    border-radius: 12px;
  }

  .results-section .result-card .content-image {
    width: 18px;
    height: 28.39px;
  }

  .results-section .result-card .content-image img {
    width: 18px;
    height: 28.39px;
  }
}

/* Why Learn Section */
.why-learn-section .container {
  display: flex;
  flex-direction: column;
}

.why-learn-section .header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-learn-section .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  color: #353535;  
}

.why-learn-section .title span {
  color: #DF0611;
}

.why-learn-section .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22.41px;
}

.why-learn-section .content-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-learn-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-learn-section .description {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.why-learn-section .summary {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #353535;    
}

.why-learn-section .main-summary {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
  margin-bottom: 20px;
}

.why-learn-section .why-learn-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.why-learn-section .wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-learn-section .list-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.why-learn-section .list-item img {
  width: 24px;
  height: 28px;
}

.why-learn-section .stats-card {
  width: 196px;
  height: 68px;
  padding: 7.41px 8px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F9F7F7;

  position: absolute;
  top: -10%;
  z-index: 1;
}

.why-learn-section .stats-card .stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.why-learn-section .stats-card span {
  font-family: Ubuntu;
  font-size: 19.27px;
  font-weight: 400;
  line-height: 21.5px;
  text-align: center;
  color: #353535;
  text-wrap: nowrap;
}

.why-learn-section .stats-card p {
  font-family: Ubuntu;
  font-size: 10px;
  font-weight: 300;
  line-height: 13px;
  text-align: center;
  color: #353535;
}

.why-learn-section .stats-card .separator {
  height: 43.13px;
  border: 0.37px solid #353535;
  margin: 0 8px;
}

@media (min-width: 1280px) {
  .why-learn-section .container {
    width: 1200px;
    gap: 0;
  }

  .why-learn-section .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
  }

  .why-learn-section .title {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
  }

  .why-learn-section .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 51.5px;
  }

  .why-learn-section .content-image {
    width: 685px;
    height: 392.82px;
    border-radius: 12px;
    background-color: #E9EEF2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .why-learn-section .content-image img {
    width: 476px;
    height: 340px;
  }

  .why-learn-section .summary {
    font-family: Ubuntu;
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    color: #353535;
  }

  .why-learn-section .description {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
    color: #353535;
  }

  .why-learn-section .main-summary {
    width: 525.35px;
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
    color: #353535;
    margin-bottom: 0;
  }

  .why-learn-section .why-learn-list {
    width: 481px;
    gap: 36px;
  }

  .why-learn-section .list-item {
    gap: 36px;
  }
  
  .why-learn-section .list-item img {
    width: 48px;
    height: 48px;
  }

  .why-learn-section .stats-card {
    width: 484px;
    height: 113.34px;
    padding: 20px 26px;
    top: -15%;
  }

  .why-learn-section .stats-card .stats {
    flex-direction: row;
    gap: 16px;
  }

  .why-learn-section .stats-card span {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #353535;
    text-wrap: nowrap;
  }
  
  .why-learn-section .stats-card p {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
    color: #353535;
  }
  
  .why-learn-section .stats-card .separator {
    height: 60px;
    border: 1px solid #353535;
    margin: 0 16px;
  }

  .why-learn-section .wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

/* Best Choice Section */
.best-choice-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.best-choice-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.best-choice-section .title span {
  color: #DF0611;
}

.best-choice-section .best-choice-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.best-choice-section .best-choice-card {
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: 20px;
}

.best-choice-section .best-choice-card .content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.best-choice-section .best-choice-card .content-image {
  height: 24px;
  width: 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.best-choice-section .best-choice-card .content-image img {
  width: 24px;
  height: 24px;
}

.best-choice-section .best-choice-card .description {
  display: flex;
}

.best-choice-section .best-choice-card .description p {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .best-choice-section .container {
    width: 1200px;
    gap: 60px;
  }

  .best-choice-section .best-choice-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .best-choice-section .best-choice-card {
    width: 376px;
    background-color: transparent;
    padding: 0px;
  }

  .best-choice-section .best-choice-card .content {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .best-choice-section .best-choice-card .description {
    width: 376px;
  }

  .best-choice-section .best-choice-card .description p {
    font-family: Ubuntu;
    font-size: 18px;
    font-weight: 300;
    line-height: 23.4px;
    text-align: left;
    color: #353535;
  }

  .best-choice-section .best-choice-card .content-image {
    width: 24px;
    height: 24px;
  }

  .best-choice-section .best-choice-card .content-image img {
    width: 24px;
    height: 24px;
  }
}

/* Mother Capital Section */
.mother-capital-section .container {
  display: flex;
  flex-direction: column;
}

.mother-capital-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 16px 30px;
  border-radius: 12px;
  background-color: #F3F0EE;
}

.mother-capital-section .title {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #353535;
}

.mother-capital-section .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mother-capital-section .description {
  display: none;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.mother-capital-section .details-btn {
  width: 100%;
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  border-radius: var(--border-radius);
  border: none;
  background-color: #df0611;
  color: #ffffff;
}

.mother-capital-section .details-btn span {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  color: #FFFFFF;
}

.mother-capital-section .content-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  align-self: center;
  border-radius: 12px;
}

.mother-capital-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.mother-capital-section .text-red {
  color: #353535;
}

@media (min-width: 1280px) {
  .mother-capital-section .container {
    width: 1200px;
    height: 380px;
    display: flex;
  }

  .mother-capital-section .title {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #353535;
    margin-bottom: 16px;
  }

  .mother-capital-section .content-wrapper {
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
    background-color: #F9F7F7;
    padding: 0;
    padding-right: 20px;
  }
  
  .mother-capital-section .content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
    padding: 64px 0 0 64px;
    background-color: transparent;
  }
  
  .mother-capital-section .description {
    width: 446px;
    display: block;
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #353535;
    margin-bottom: 32px;
  }

  .mother-capital-section .details-btn {
    width: 260px;
  }
  
  .mother-capital-section .content-image {
    display: block;
    width: 486px;
    height: 380px;
    border-radius: 12px;
  }
  
  .mother-capital-section .content-image img {
    width: 486px;
    height: 380px;
    display: block;
  }

  .mother-capital-section .text-red {
    color: #DF0611;
  }
}

/* Class Structure Section */
.class-structure-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.class-structure-section .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  color: #353535;
}

.class-structure-section .text-red {
  color: #DF0611;
}

.class-structure-section .class-structure-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.class-structure-section .class-structure-card {
  border-radius: 12px;
  background-color: #f9f7f7;
}

.class-structure-section .without-image {
  padding: 20px 16px;
}

.class-structure-section .with-image {
  padding: 20px 16px 0;
}

.class-structure-section .class-structure-card .content {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  gap: 20px;
}

.class-structure-section .summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.class-structure-section .summary h3 {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #353535;
}

.class-structure-section .summary p {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.class-structure-section .content-image {
  min-height: 184px;
  min-width: 272px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.class-structure-section .content-image img {
  min-height: 184px;
  min-width: 272px;
}

.class-structure-section .with-background-image-1 {
  background-image: url("../../../assets/class-structure/children-native-speaker/1.png");
  background-size: 100% 100%;
}

.class-structure-section .with-background-image-2 {
  background-image: url("../../../assets/class-structure/children-native-speaker/2.png");
  background-size: 100% 100%;
}

@media (min-width: 1280px) {
  .class-structure-section .container {
    width: 1200px;
    gap: 60px;
  }

  .class-structure-section .title {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #353535;
  }

  .class-structure-section .class-structure-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .class-structure-section .class-structure-card {
    border-radius: 12px;
    background-color: #f9f7f7;
  }

  .class-structure-section .without-image {
    width: 376px;
    height: 200px;
    padding: 0px 104px 0px 0px;
    border-radius: 12px;
  }

  .class-structure-section .with-image {
    width: 788px;
    height: 200px;
    padding: 0px;
    border-radius: 12px;
  }

  .class-structure-section .with-image .summary p {
    width: 340px;
  }
  
  .class-structure-section .class-structure-card .content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 20px;
    gap: 0px;
  }

  .class-structure-section .with-background-image-1 {
    background-image: url("../../../assets/class-structure/children-native-speaker/1.png");
    background-size: 100% 100%;
  }

  .class-structure-section .with-background-image-2 {
    background-image: url("../../../assets/class-structure/children-native-speaker/2.png");
    background-size: 100% 100%;
  }
  
  .class-structure-section .summary {
    display: flex;
    flex-direction: column;
    padding: 20px 0px 0px 20px;
    gap: 16px;
  }
  
  .class-structure-section .summary h3 {
    font-family: Ubuntu;
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    color: #353535;
  }
  
  .class-structure-section .summary p {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    text-align: left;
    color: #353535;
  }
  
  .class-structure-section .content-image {
    min-height: 184px;
    min-width: 272px;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .class-structure-section .content-image img {
    min-height: 184px;
    min-width: 272px;
  }
}

/* Exam Details Section */
.exam-details-section {
  background-image: url("../../../assets/exam-details/background.png");
  background-size: 100% 100%;
  padding: 16px;
  margin-bottom: 50px;
}

.exam-details-section .container {
  display: flex;
  flex-direction: column;
}

.exam-details-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
  border-radius: 12px;
  background-color: #FFFFFF;
}

.exam-details-section .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  color: #353535;
}

.exam-details-section .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exam-details-section .description,
.exam-details-section .summary {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.exam-details-section .summary {
  display: block;
}

.exam-details-section .content-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  align-self: center;
}

.exam-details-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1280px) {
  .exam-details-section {
    width: 1200px;
    margin: 0 auto;
    padding: 0 0 88px;
    background-image: none;
    background-size: unset;
  }

  .exam-details-section .container {
    width: 1200px;
    height: 393px;
    display: flex;
    background-image: url("../../../assets/exam-details/children-native-speaker/desktop/background.png");
    background-size: 100% 100%;
  }

  .exam-details-section .title {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #353535;
    margin-bottom: 32px;
  }

  .exam-details-section .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 29.5px 48px;
  }
  
  .exam-details-section .content {
    width: 534px;
    height: 329px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
  }
  
  .exam-details-section .description,
  .exam-details-section .summary {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
    color: #353535;
  }
  
  .exam-details-section .content-image {
    width: 534px;
    height: 329px;
    border-radius: 12px;
  }
  
  .exam-details-section .content-image img {
    width: 534px;
    height: 329px;
    border-radius: 12px;
  }
}
