* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
ul,
li,
p,
label,
button {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.img_with_text{
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.img_with_text .img_with_text_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
}

.img_with_text .img_with_text_inner.desktop_left {
  flex-direction: row;
}

.img_with_text .img_with_text_inner.desktop_right {
  flex-direction: row-reverse;
}
.img_with_text .img_with_text_inner .img_with_text_img {
  width: 100%;
  max-width: 50%;
}

.img_with_text .img_with_text_inner .img_with_text_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img_with_text .img_with_text_inner .img_with_text_content {
  width: 100%;
  max-width: 50%;
  padding: 0 30px;
}

.img_with_text .img_with_text_inner .img_with_text_content h2 {
  font-family: var(--BR-Omny);
  font-size: 60px;
  line-height: 66px;
  color: #a26af6;
  font-weight: 400;
  margin-bottom: 30px;
}

.img_with_text .img_with_text_inner .img_with_text_content h2 span{
  font-weight:700;
}

.img_with_text .img_with_text_inner .img_with_text_content p,
.img_with_text .img_with_text_inner .img_with_text_content li,
.img_with_text .img_with_text_inner .img_with_text_content a{
  font-family: var(--Graphik);
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
}

.img_with_text ul{
  padding-left:20px;
}

@media(max-width:1366px) {
  .img_with_text .img_with_text_inner {
    padding: 100px 0;
    background-size: cover;
  }
  .img_with_text .img_with_text_inner .img_with_text_img {
    max-width: 40%;
  }
  .img_with_text .img_with_text_inner .img_with_text_content {
    max-width: 60%;
  }
}

@media(max-width:991px) {
  .img_with_text .img_with_text_inner {
    padding: 0 0 100px 0;
    gap: 20px;
  }
  .img_with_text .img_with_text_inner.mobile_top {
    flex-direction: column;
  }

  .img_with_text .img_with_text_inner.mobile_bottom {
    flex-direction: column-reverse;
  }
  .img_with_text .img_with_text_inner .img_with_text_img {
    max-width: 100%;
  }
  .img_with_text .img_with_text_inner .img_with_text_content {
    max-width: 100%;
    padding: 0 20px;
  }
  .img_with_text .img_with_text_inner .img_with_text_content h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  .img_with_text .img_with_text_inner .img_with_text_content p,
  .img_with_text .img_with_text_inner .img_with_text_content li,
  .img_with_text .img_with_text_inner .img_with_text_content a{ {
    font-size: 16px;
    line-height: 22px;
    }
  }