:root {
  --color-blue-light: #2867c6;
  --color-blue-dark: #112d51;
  --color-blue-light-text: #5a607a;
  --color-blue-light-bg: #eff5f9;
  --color-white: #fff;
  --color-grey-dark: #1a1b24;
  --color-grey-light: #fafafa;
  --color-grey-dark-text: #434343;
  --color-grey-mid: #666666;
  --border-grey: 1px solid #d7d7d7;
  --border-radius-10: 10px;
  --border-radius-5: 5px;
  --max-width: 1170px;
  --transition-main: 0.2s ease;
  --shadow-main: 0px 4px 6px 1px rgba(0, 0, 0, 0.15);
}

.cig--service-parent-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width:100%;
}

section.cig--service-package-wrapper {
  background: var(--color-white);
  margin-bottom: 30px;
  border-bottom: 1px solid #ececec;
}

h2.cig--primary-package-header {
  position: relative;
  font-weight: bold;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.3em;
  margin: 0 0 20px 0;
  padding-bottom: 14px;
  color: var(--color-blue-dark);
}
h2.cig--primary-package-header::after {
  content: "";
  width: 100px;
  height: 3px;
  background: var(--color-blue-light);
  position: absolute;
  left: 0;
  bottom: 0;
}

.cig-service-package-flex-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 20px 0 30px;
}

.cig--service-package-flex-content {
  width: 100%;
}

/* Image */
img.cig--service-package-img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #f2f2f2;
}
/* Video */
.cig--service-package-video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: auto;
}
.cig--service-package-video {
  border-radius: 10px;
  border: 1px solid #f2f2f2;
	max-width: inherit;
}
.cig--video-playButton {
  width: 320px;
  height: 182px;
  position: absolute;
  top: calc(50% - 6px);
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 17, 39, 0.4);
  border-radius: 10px;
}
.cig--video-playButton:after {
  content: "";
  border-radius: 90px;
  border: 5px solid #fff;
  height: 60px;
  position: absolute;
  width: 60px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}

.cig--video-playButton:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

/* Checkmark */
ul.cig--checklist-blue {
  margin: 10px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
ul.cig--checklist-blue li {
  position: relative;
  list-style: none;
  padding-left: 34px;
  color: var(--color-blue-dark);
  font-weight: 500;
  font-size: 16px;
}
ul.cig--checklist-blue li::before {
  content: "";
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg width='26' height='27' viewBox='0 0 26 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.1397 6.53945C15.5428 5.59683 13.6615 5.24525 11.8286 5.54688C9.99575 5.8485 8.32939 6.78391 7.12426 8.18764C5.91914 9.59138 5.25291 11.373 5.24341 13.2174C5.23391 15.0617 5.88176 16.85 7.07237 18.2659C8.26298 19.6818 9.91962 20.634 11.7493 20.9542C13.579 21.2745 15.4638 20.942 17.0703 20.0156C18.6768 19.0892 19.9016 17.6287 20.528 15.8923C21.1544 14.1559 20.8863 12.2902 20.8863 12.2902' stroke='%232867C6' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M21.2844 7.16059L12.7816 15.8787L9.75707 12.6851' stroke='%23112D51' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
  position: absolute;
  top: -2px;
  left: 0;
}

.cig--service-package-cta-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #e8eff3;
  border-radius: 50px;
}
.cig--service-package-cta-wrapper span {
  color: var(--color-blue-dark);
  font-weight: bold;
  font-size: 16px;
  padding: 0 20px;
}

@media only screen and (max-width: 1024px) {
  .cig--service-parent-container {
    gap: 30px;
  }
  .cig-service-package-flex-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 0 30px;
    flex-direction: column-reverse;
  }
  img.cig--service-package-img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 425px) {
  .cig--service-package-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border: none;
    border-radius: 0;
  }
  .cig--service-package-cta-wrapper span {
    padding: 0;
  }
  .cig--video-playButton {
    top: calc(50% - 0px);
  }
}
