html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
}
* {
  box-sizing: border-box;
}
.section {
  width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 590px;
  position: relative;
}
.section.dark {
  background-color: #19172a;
  color: #bbb;
  /* bottom 20px shadow */
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}
.section.green {
  background-color: #68be86;
  color: #1f1d35;
}
.section.green::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow:
    inset 0px 10px 10px rgba(25, 23, 42, 0.3),
    inset 0px -10px 10px rgba(25, 23, 42, 0.3);
  z-index: 2;
}

.section > div {
  width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  min-height: 100%;
}
.section > .dir-col {
  flex-direction: column;
}

.logo {
  width: 50%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.slogan {
  overflow: hidden;
  width: 100%;
  font-size: 2.5em;
  font-weight: 700;
  margin-top: 20px;
  text-align: right;
  color: #68be86;
}

.section .content {
  width: 40%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section .content.full-width {
  width: 100%;
}

.section .content h3 {
  font-size: 3em;
  font-weight: 300;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.section .content h3.smaller {
  font-size: 1.8em;
}

.section .content h4 {
  margin-bottom: 0px;
  width: 100%;
  text-align: left;
}

.section .content.full-width .white-bold {
  justify-content: flex-end;
  color: white;
  font-weight: 700;
  text-align: right;
}
.section .content.full-width.left .white-bold {
  justify-content: flex-start;
  color: white;
  font-weight: 700;
  text-align: left;
}

.section.dark .content h3 {
  color: #68be86;
}
.section .content h3 .green {
  font-weight: 600;
  text-transform: uppercase;
  color: #68be86;
  display: inline-block;
  margin-top: -10px;
}
.section .content h3 .blue {
  font-weight: 600;
  text-transform: uppercase;
  color: #1f1d35;
  display: inline-block;
  margin-top: 10px;
}
.section .content h3 .white {
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  margin-top: 10px;
}

.section .content p {
  line-height: 160%;
}

.section .image {
  width: 60%;
  overflow: hidden;
  position: relative;
}

.section .image.circle {
  width: 500px;
  height: 500px;
  border-radius: 500px;
  overflow: hidden;
  position: relative;
  margin: 50px 0 0 50px;
}

.section .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.section .image.not-stretch > img {
  width: calc(100% - 40px);
  height: auto;
  margin-top: 130px;
  margin-left: 40px;
  object-fit: contain;
}

.section .image.circle > img {
  width: auto;
  object-fit: contain;
}

.section .image .x1 {
  position: absolute;
  top: 0;
  left: -71%;
  width: 100%;
  height: 100%;
  background-color: #68be86;
  transform: rotate(45deg);
}
.section .image .x2 {
  position: absolute;
  top: -100%;
  left: 25%;
  width: 100%;
  height: 100%;
  background-color: #68be86;
  transform: rotate(45deg);
}

.section .image .x3 {
  position: absolute;
  bottom: -100%;
  left: 25%;
  width: 100%;
  height: 100%;
  background-color: #68be86;
  transform: rotate(45deg);
}
.section .image .x4 {
  position: absolute;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  background-color: #68be86;
  transform: rotate(45deg);
}

.section .image.multi .img1 {
  width: 100%;
  height: 240px;
  position: absolute;
  overflow: hidden;
  top: 50px;
  left: -55px;
  transform: rotate(45deg);
}
.section .image.multi .img1 img {
  width: 150%;
  height: 150%;
  object-fit: cover;
  position: absolute;
  top: -45%;
  left: -1%;
}
.section .image.multi .img2 {
  width: 100%;
  height: 240px;
  position: absolute;
  overflow: hidden;
  top: 495px;
  left: 390px;
  transform: rotate(45deg);
}
.section .image.multi .img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  left: -28%;
}
.section .image.multi .img3 {
  width: 100%;
  height: 240px;
  position: absolute;
  overflow: hidden;
  top: -132px;
  left: 125px;
  transform: rotate(45deg);
}
.section .image.multi .img3 img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  position: absolute;
  top: 12%;
  left: 0%;
}

.section .image.multi .img4 {
  width: 100%;
  height: 240px;
  position: absolute;
  overflow: hidden;
  top: 53%;
  left: 93%;
  transform: rotate(45deg);
}
.section .image.multi .img4 img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  position: absolute;
  top: 12%;
  left: 0%;
}
.ml20 {
  margin-left: 20px;
}
.top-content {
  display: flex;
  flex-direction: row;
  padding: 60px;
}
.top-content h3 {
  font-size: 30px;
  max-width: 180px;
  min-width: 180px;
  margin: 10px 0;
  border-right: 2px solid white;
  margin-right: 10px;
}

.cross {
  position: absolute;
  width: 100px; /* Adjust size as needed */
  height: 100px; /* Adjust size as needed */
  overflow: hidden;
  right: 0;
  z-index: 0;
}

.cross::before,
.cross::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 57%;
  width: 100%; /* Adjust size as needed */
  height: 5px; /* Adjust thickness as needed */
  background-color: rgb(25, 23, 42); /* Adjust color as needed */
  transform-origin: center;
}

.dark .cross {
  right: auto;
  left: 0;
}

.dark .cross::before,
.dark .cross::after {
  background-color: #68be86;
  left: 40%;
}

.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cross.small {
  width: 100px;
  height: 100px;
  top: 10%;
  left: calc(45% - 42px);
}
.cross.small::before,
.cross.small::after {
  height: 1px;
}

.table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.table .cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.table .cell .fa {
  font-size: 30px;
  display: inline-block;
  margin-bottom: 10px;
}

.table .cell .label {
  text-transform: uppercase;
}

.content-left > p {
  width: 55%;
}
.content-right > p {
  width: 55%;
  margin-left: 45%;
}
