.s1 {
  width: 100%;
  height: 600px;
  padding: 75px 85px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s1 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../Media/Images/1.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}
.s1 h1 {
  color: white;
  font-size: 44px;
  line-height: 1.5;
  text-shadow: 0 4px 4px #BE4AD3;
}
.s1 h3 {
  color: white;
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0 4px 4px #BE4AD3;
  margin: 21px 0 30px 0;
}
.s1 .box {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  gap: 20px;
}
.s1 .box a.contact {
  background: linear-gradient(to right, #BE4AD3, #30337A);
  padding: 18px 36px;
  color: white;
  font-size: 15px;
  font-weight: 500;
}
.s1 .box a.enterprise {
  background: white;
  border: 2px solid #252525;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
}
.s1 .box div.phone {
  flex-direction: column;
  font-size: 20px;
  font-weight: 900;
	text-align: center;
}
.s1 .box div.phone .title {
  background: #252525;
  border-radius: 20px;
  padding: 5px 36px;
  margin-bottom: 5px;
  color: white;
}
.s1 .box div.phone span {
    margin-top: 6px;
    font-size: small;
}

@media (max-width: 900px) {
  .s1 {
width: 100vw;
        min-width: 100vw;
        height: 70vh;
        padding: 15px;
        padding-top: 60px;
	  min-height: 550px;
  }
  .s1 h1 {
    font-size: 24px;
    font-weight: 500;
    text-shadow: 0 4px 4px #651573;
  }
  .s1 h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0 20px 0;
    text-shadow: 0 4px 4px #651573;
  }
  .s1 .box {
    width: 100%;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
  }
.s1 .box {
display: grid;
		gap: 12px;
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
"contact contact"
"phone enterprise";
	}
    .s1 .box a.contact{
        grid-area: contact;
		text-align: center;
    }
    .s1 .box div.phone{
        grid-area: phone;
    }
    .s1 .box a.enterprise{
grid-area: enterprise;
        padding: 12px 8px;
        font-size: 14px;
		text-align: center;
		line-height: 1.2;
    }
.s1 .box div.phone .title{
padding: 5px 10px;
        font-size: 14px;
}
	.s1 .box div.phone span{
    margin-top: 6px;
    font-size: 10px;
}
}
.s2 {
  width: 100%;
  padding: 200px 0 100px 0;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s2 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../Media/BG/1.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -1;
}
.s2 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s2 .title h2 {
  font-size: 32px;
  font-weight: 500;
}
.s2 .title .line {
  width: 200px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s2 .wrapper {
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 50px;
margin-bottom: 20px;
}
.s2 .wrapper .item {
  width: 300px;
}
.s2 .wrapper .item .img {
  width: 100%;
  aspect-ratio: 300/200;
  background: white;
  border: 1px solid #252525;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s2 .item .img {
    width: 100%;
    aspect-ratio: 300 / 200;
    overflow: hidden;
}
.s2 .item .img img.thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.s2 .wrapper .item .category {
  font-size: 14px;
  margin-top: 10px;
}
.s2 .wrapper .item .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0;
}
.s2 .wrapper .item .text {
  font-size: 14px;
  line-height: 1.5;
}

.more_button {
    background: white;
    border: 2px solid #252525;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 500;
    margin: 20px auto 0;
}

@media (max-width: 900px) {
  .s2 {
    padding: 100px 0 100px 0;
  }
  .s2 .title h2 {
    font-size: 20px;
  }
  .s2 .title h2 span {
    font-size: 20px;
  }
  .s2 .title .line {
    max-width: 100%;
  }
  .s2 .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.s3 {
  width: 100%;
  padding: 100px 0 50px 0;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s3 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s3 .title h2 {
  font-size: 24px;
  font-weight: 500;
}
.s3 .title h2 span {
  color: #BE4AD3;
  font-size: 32px;
  font-weight: 500;
}
.s3 .title .line {
  width: 500px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s3 .wrapper {
  margin-top: 50px;
  width: 100%;
  flex-wrap: wrap;
  gap: 75px;
}
.s3 .wrapper .item {
  width: 270px;
  flex-direction: column;
  gap: 15px;
}
.s3 .wrapper .item .img {
height: 100px;
    width: 125px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.s3 .wrapper .item .text {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.s3 .wrapper .item .text span {
  color: #BE4AD3;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.s3 .wrapper .item:nth-of-type(1) .img {
  background-image: url("../Media/Icon/1.svg");
}
.s3 .wrapper .item:nth-of-type(2) .img {
  background-image: url("../Media/Icon/2.svg");
}
.s3 .wrapper .item:nth-of-type(3) .img {
  background-image: url("../Media/Icon/3.svg");
}
.s3 .wrapper .item:nth-of-type(4) .img {
  background-image: url("../Media/Icon/4.svg");
}
.s3 .wrapper .item:nth-of-type(5) .img {
  background-image: url("../Media/Icon/5.svg");
}

@media (max-width: 900px) {
  .s3 {
    padding: 100px 0 0 0;
  }
  .s3 .title h2 {
    font-size: 20px;
  }
  .s3 .title h2 span {
    font-size: 20px;
  }
  .s3 .title .line {
    max-width: 100%;
    width: 350px;
  }
  .s3 .wrapper {
    gap: 25px;
  }
  .s3 .wrapper .item {
    width: 175px;
  }
	.s3 .wrapper .item .img {
height: 75px;
    width: 100px;
}
.s3 .wrapper .item .text {
  font-size: 14px;
}
.s3 .wrapper .item .text span {
  font-size: 14px;
}
}
.s4 {
  width: 100%;
  background-image: url("../Media/Images/2.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding: 140px 100px 50px 100px;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
background-size: cover;
}
.s4 .title {
  width: 100%;
  color: white;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 50px;
}
.s4 p {
  width: 100%;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .s4 {
    flex-direction: column;
    padding: 125px 15px 30px 15px;
    margin-bottom: 50px;
  }
  .s4 .title {
    font-size: 24px;
  }
  .s4 .title .line {
    max-width: 100%;
    width: 350px;
  }
}
.s5 {
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #252525;
  padding: 20px;
  gap: 20px;
  margin: 100px auto;
}
.s5 a.contact {
  background: linear-gradient(to right, #BE4AD3, #30337A);
  padding: 18px 36px;
  color: white;
  font-size: 15px;
  font-weight: 500;
}
.s5 a.enterprise {
  background: white;
  border: 2px solid #252525;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
}
.s5 div.phone {
  flex-direction: column;
  font-size: 20px;
  font-weight: 900;
}
.s5 div.phone .title {
  background: #252525;
  border-radius: 20px;
  padding: 5px 36px;
  margin-bottom: 5px;
  color: white;
}
@media (max-width: 900px) {

.s5 {
	margin: 75px 10px 0;
display: grid;
		gap: 12px;
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
"contact contact"
"phone enterprise";
	}
	.s5 a.contact{
        grid-area: contact;
		text-align: center;
    }
	.s5 div.phone{
        grid-area: phone;
    }
	.s5 a.enterprise{
grid-area: enterprise;
        padding: 12px 8px;
        font-size: 14px;
		text-align: center;
		line-height: 1.2;
    }
	.s5 div.phone .title{
padding: 5px 10px;
        font-size: 14px;
}
	.s5 div.phone span {
    margin-top: 6px;
    font-size: 10px;
}
}

.s6 {
  width: 100%;
  padding: 100px 0 200px 0;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s6 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../Media/BG/1.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -1;
}
.s6 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s6 .title h2 {
  font-size: 24px;
  font-weight: 500;
}
.s6 .title h2 span {
  color: #BE4AD3;
  font-size: 32px;
  font-weight: 500;
}
.s6 .title .line {
  width: 300px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s6 .wrapper {
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 50px;
  margin-top: 50px;
}
.s6 .wrapper .item {
  width: 300px;
  background: white;
  border: 1px solid #C6C6C6;
  overflow: hidden;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s6 .wrapper .item .img {
  width: 100%;
  aspect-ratio: 300/187;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.s6 .wrapper .item .title {
  font-size: 20px;
  line-height: 1.5;
  margin: 20px;
}
.s6 .wrapper .item .text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 20px 20px 20px;
}
.s6 .wrapper .item:nth-of-type(1) .img {
  background-image: url("../Media/Images/3.webp");
}
.s6 .wrapper .item:nth-of-type(2) {
  transform: translateY(50px);
}
.s6 .wrapper .item:nth-of-type(2) .img {
  background-image: url("../Media/Images/4.webp");
}
.s6 .wrapper .item:nth-of-type(3) {
  transform: translateY(100px);
}
.s6 .wrapper .item:nth-of-type(3) .img {
  background-image: url("../Media/Images/5.webp");
}

@media (max-width: 900px) {
  .s6 {
    padding: 100px 15px 100px 15px;
    align-items: center;
    justify-content: center;
  }
	.s6 .background {
    background-size: 100% 1000px;
}
  .s6 .title h2 {
    font-size: 20px;
  }
  .s6 .title h2 span {
    font-size: 20px;
  }
  .s6 .title .line {
    max-width: 100%;
    width: 200px;
  }
  .s6 .wrapper {
    min-width: 100%;
    justify-content: center;
  }
  .s6 .wrapper .item {
    transform: translateY(0) !important;
	width: auto;
  }
}
.s7 {
  width: 100%;
  background-image: url("../Media/Images/6.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding: 50px 50px 75px 50px;
  margin-top: 100px;
  position: relative;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s7 .title {
  width: 100%;
  color: white;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 50px;
}
.s7 p {
  width: 100%;
  color: white;
  font-size: 20px;
  line-height: 2;
  text-align: center;
}
.s7 .checks {
  width: 307px;
  aspect-ratio: 307/125;
  background-image: url("../Media/Images/7.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
}

@media (max-width: 900px) {
  .s7 {
    padding: 30px 15px 150px 15px;
    margin-top: 0;
    margin-bottom: 50px;
    flex-direction: column;
  }
  .s7 .title {
    font-size: 20px;
    margin-bottom: 25px;
    width: 90%;
  }
  .s7 p {
    font-size: 15px;
    font-weight: 500;
  }
  .s7 .checks {
    width: 250px;
    bottom: 30px;
  }
}
.s9 {
  width: 100%;
  padding: 100px 0 100px 0;
  margin-top: 100px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s9 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s9 .title h2 {
  font-size: 24px;
  font-weight: 500;
}
.s9 .title h2 span {
  color: #BE4AD3;
  font-size: 32px;
  font-weight: 500;
}
.s9 .title .line {
  width: 500px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s9 .wrapper {
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px;
  margin-top: 50px;
}
.s9 .wrapper .item {
  width: 100%;
  background: #F8F8F9;
  border: 2px solid #E8E8E8;
  padding: 25px;
  align-items: flex-start;
  justify-content: flex-start;
}
.s9 .wrapper .item .title-2 {
  min-width: 150px;
  font-size: 20px;
  white-space: nowrap;
}
.s9 .wrapper .item .boxes {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px;
}
.s9 .wrapper .item .boxes p {
  font-size: 16px;
  padding: 7px 10px;
  background: white;
  box-shadow: 0 0 4px 0 rgba(37, 37, 37, 0.15);
}

@media (max-width: 900px) {
  .s9 {
    padding: 100px 15px 0 15px;
    margin-top: 0;
  }
  .s9 .title h2 {
    font-size: 18px;
  }
  .s9 .title h2 span {
    font-size: 18px;
  }
  .s9 .title .line {
    max-width: 100%;
    width: 350px;
  }
  .wrapper .item {
    flex-direction: column;
    gap: 20px !important;
  }
  .wrapper .item .title-2 {
    font-size: 18px !important;
  }
  .wrapper .item .boxes {
    gap: 10px !important;
  }
  .wrapper .item .boxes p {
    font-size: 14px !important;
  }
}
.s10 {
  width: 100%;
  padding: 100px 0 100px 0;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s10 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s10 .title h2 {
  font-size: 24px;
  font-weight: 500;
}
.s10 .title h2 span {
  color: #BE4AD3;
  font-size: 32px;
  font-weight: 500;
}
.s10 .title .line {
  width: 600px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s10 .wrapper {
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px;
  margin-top: 50px;
}
.s10 .wrapper .item {
  width: 100%;
  background: #F8F8F9;
  border: 2px solid #E8E8E8;
  padding: 25px;
  align-items: flex-start;
  justify-content: flex-start;
}
.s10 .wrapper .item .title-2 {
  min-width: 350px;
  font-size: 20px;
  white-space: nowrap;
}
.s10 .wrapper .item .boxes {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px;
}
.s10 .wrapper .item .boxes p {
  font-size: 16px;
  padding: 7px 10px;
  background: white;
  box-shadow: 0 0 4px 0 rgba(37, 37, 37, 0.15);
}

@media (max-width: 900px) {
  .s10 {
    padding: 100px 15px 0 15px;
  }
  .s10 .title h2 {
    font-size: 18px;
  }
  .s10 .title h2 span {
    font-size: 18px;
  }
  .s10 .title .line {
    max-width: 100%;
    width: 350px;
  }
  .wrapper .item {
    flex-direction: column;
    gap: 20px !important;
  }
  .wrapper .item .title-2 {
    font-size: 18px !important;
  }
  .wrapper .item .boxes {
    gap: 10px !important;
  }
  .wrapper .item .boxes p {
    font-size: 14px !important;
  }
}
.s11 {
  width: 100%;
  background: linear-gradient(to right, rgba(190, 74, 211, 0.75), rgba(48, 51, 122, 0.75));
  padding: 50px 50px;
  margin: 100px 0;
  flex-direction: column;
  position: relative;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s11 .title {
  width: 100%;
  color: white;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 50px;
}
.s11 .row {
  align-items: flex-end;
  gap: 75px;
}
.s11 .row .column {
  flex-direction: column;
  gap: 5px;
}
.s11 .row .column .icon {
  height: 75px;
  aspect-ratio: 100/75;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-bottom: 35px;
}
.s11 .row .column:nth-of-type(1) .icon {
  background-image: url("../Media/Icon/6.svg");
}
.s11 .row .column:nth-of-type(2) .icon {
  background-image: url("../Media/Icon/7.svg");
}
.s11 .row .column:nth-of-type(3) .icon {
  background-image: url("../Media/Icon/8.svg");
}
.s11 .row .column p {
  color: white;
  font-size: 20px;
  width: 100%;
}
.s11 .row .column p b {
  width: 100%;
  color: white;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.s11 .row .arrow {
  width: 25px;
  aspect-ratio: 25/60;
  background-image: url("../Media/Icon/arrow-white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

@media (max-width: 900px) {
  .s11 {
    padding: 50px 15px 50 15px;
    margin-bottom: 50px;
  }
  .s11 .title {
    font-size: 20px;
  }
  .s11 .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }
  .s11 .row .column .icon {
    height: 60px;
    margin-bottom: 10px;
  }
  .s11 .row .column p {
    font-size: 16px;
  }
  .s11 .row .column p b {
    font-size: 16px;
  }
  .s11 .row .arrow {
    transform: rotate(90deg);
    height: 50px;
  }
}
.s12 {
  width: 100%;
  padding: 100px 0 100px 0;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s12 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../Media/BG/2.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateX(-50%) rotate(180deg);
}
.s12 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s12 .title h2 {
  font-size: 24px;
  font-weight: 500;
}
.s12 .title .line {
  width: 300px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.s12 .wrapper {
  width: 100%;
  align-items: flex-start;
  gap: 100px;
  margin-top: 50px;
}
.s12 .wrapper .img {
  width: 333px;
  min-width: 333px;
  aspect-ratio: 333/400;
  background-image: url("../Media/Images/8.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  filter: drop-shadow(4px 4px 4px rgba(48, 51, 122, 0.15));
}
.s12 .wrapper p {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .s12 {
    padding: 50px 15px 50px 15px;
  }
  .s12 .title h2 {
    font-size: 20px;
  }
  .s12 .wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .s12 .wrapper .img {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 370/252;
    background-image: url("../Media/Images/8-mobile.webp");
  }
}
.s13 {
  width: 100%;
  padding: 100px 0 100px 0;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s13 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../Media/BG/2.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -1;
}
.s13 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s13 .title h2 {
  font-size: 32px;
  font-weight: 500;
}
.s13 .title .line {
  width: 200px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s13 .wrapper {
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 50px;
	margin-bottom: 20px;
	align-items: start;
}
.s13 .wrapper .item {
  width: 300px;
}
.s13 .wrapper .item .img {
  width: 100%;
  aspect-ratio: 300/200;
  background: white;
  border: 1px solid #252525;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s13 .wrapper .item .img {
  width: 100%;
  aspect-ratio: 300/200;
  background: white;
  border: 1px solid #252525;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s13 .item .img {
    width: 100%;
    aspect-ratio: 300 / 200;
    overflow: hidden;
}
.s13 .item .img img.thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.s13 .wrapper .item .category {
  font-size: 14px;
  margin-top: 10px;
}
.s13 .wrapper .item .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0;
}
.s13 .wrapper .item .text {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .s13 {
    padding: 50px 0 50px 0;
  }
  .s13 .title h2 {
    font-size: 20px;
  }
  .s13 .title h2 span {
    font-size: 20px;
  }
  .s13 .title .line {
    max-width: 100%;
  }
  .s13 .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.s14 {
  width: 100%;
  max-width: 850px;
  padding: 100px 0 0px 0;
  margin: 0 auto;
  margin-top: 100px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s14 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, rgba(190, 74, 211, 0.75), rgba(48, 51, 122, 0.75));
  z-index: -1;
}
.s14 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s14 .title h2 {
  color: white;
  font-size: 32px;
  font-weight: 500;
}
.s14 .title .line {
  width: 350px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s14 .form {
  width: 100%;
  max-width: 780px;
  margin-top: 50px;
  background: white;
  border: 2px solid #252525;
}

@media (max-width: 900px) {
  .s14 {
    padding: 50px 15px 50px 15px !important;
    align-items: center;
  }
  .s14 .title h2 {
    font-size: 18px;
  }
  .s14 .title h2 span {
    font-size: 18px;
  }
  .s14 .title .line {
    max-width: 100%;
    width: 350px;
  }
  .s14 .form {
    width: 100%;
    margin: 50px 0 0;
  }
}