

/*--------------------------------------------------------------
  >> : Section Badge
--------------------------------------------------------------*/
  /* append .admin-bar to each before launch */
  #AppMain {
    counter-reset: section;
    overflow-x: hidden;
  }

  #AppMain section[data-section] {
    position: relative;
    margin-top: -1px;
  }

  .admin-bar #AppMain section[data-section]:after {
    counter-increment: section;
    content: 'Section: 'counter(section) ' ' attr(data-name);
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 16px;
    background: #000000;
    color: #ffffff;
    z-index: 98;
    text-transform: capitalize;
    letter-spacing: 0;
    font-size: 14px;
    font-family: system-ui;
    opacity: 0.3;
  }

  #AppMain section[data-section]:hover:after {
/*    opacity: 1;*/
  }

/*--------------------------------------------------------------
  >> : Section Open & Close
--------------------------------------------------------------*/
  section[data-section] {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #AppMain > section[data-section]:first-child {
    padding-top: calc(4rem + 60px) !important;
  }

  section[data-section] .btn + .btn {
    margin-left: 1.5rem;
  }

  @media (max-width: 768px) {
    section[data-section] .btn,
    section[data-section] .btn:nth-child(even) {
      margin: 1.5rem 0 !important;
      margin-top: 0 !important;
    }

    section[data-section] .btn + .btn {
      margin: 1.5rem 0 !important;
      margin-top: 0 !important;
    }


  }
/*--------------------------------------------------------------
  >> : Forms
--------------------------------------------------------------*/

  .wpcf7 label {
    display:block;
    max-height:1px;
    overflow:hidden;
    opacity:0;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="file"],
  input[type="password"],
  textarea {
    background: #ffffff30;
    border:none;
    padding:15px;
    margin-bottom:5px;
    border-bottom:1px solid #fff;
    width: 100%;
  }

  input[type="text"]::placeholder,
  input[type="email"]::placeholder,
  input[type="tel"]::placeholder,
  input[type="file"]::placeholder,
  input[type="password"]::placeholder,
  textarea::placeholder {
    color:#fff;
  }

  textarea {
    width:100%;
  }

  form .col {
    margin-bottom:10px;
  }

  .wpcf7 .wpcf7-submit {
    display: inline-block;
    line-height: 1em;
    color: #000;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 16px 25px;
    text-transform: uppercase;
    font-size: 0.8em;
    line-height: 1em;
    border-radius: 0px;
    transition: all 300ms ease-in-out;
    background: var(--color-gold-500);
    border: 1px solid transparent;
  }


  .wpcf7 .wpcf7-submit:disabled {
    
  }

  .wpcf7-list-item label {
    opacity:1;
    max-height:unset;
  }

  .wpcf7-list-item label a {
    color:var(--color-white);
    text-decoration:underline;
  }

  .wpcf7-not-valid-tip {
    color:var(--color-gold-500);
  }

  [data-bg-color="color-white-500"] input[type="text"], 
  [data-bg-color="color-white-500"] input[type="email"], 
  [data-bg-color="color-white-500"] input[type="tel"], 
  [data-bg-color="color-white-500"] input[type="file"], 
  [data-bg-color="color-white-500"] input[type="password"], 
  [data-bg-color="color-white-500"] textarea {
    background: #f7f7f7;
    border-bottom:1px solid black;
  }

  [data-bg-color="color-white-500"] input[type="text"]::placeholder,
  [data-bg-color="color-white-500"] input[type="email"]::placeholder,
  [data-bg-color="color-white-500"] input[type="tel"]::placeholder,
  [data-bg-color="color-white-500"] input[type="file"]::placeholder,
  [data-bg-color="color-white-500"] input[type="password"]::placeholder,
  [data-bg-color="color-white-500"] textarea::placeholder {
    color:#000;
  }

  [data-bg-color="color-white-500"] .wpcf7-not-valid-tip {
    color:var(--color-gold-700)
  }


  .wpcf7-list-item {
    margin: 0;
  }

  .wpcf7-list-item > label {
    position: relative;
    padding-left: 40px;
    min-height: 30px;
    margin-bottom: 0.5rem;
    padding-top: 4px;
  }

  .wpcf7-list-item > label input[type="checkbox"],
  .wpcf7-list-item > label input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
  }

  input[type="checkbox"],
  input[type="radio"] {
    width: 30px;
    height: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    appearance: unset;
    background: #ffffff;
    position: relative;
  }

  input[type="radio"]:checked,
  input[type="checkbox"]:checked {
    background-image: url(/app/themes/devignstudios-toolkit/resources/icons/check-dark.svg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  [data-bg-color="color-white-500"] input[type="checkbox"],
  [data-bg-color="color-white-500"] input[type="radio"] {
    background: #f7f7f7;
    border-bottom:1px solid black;
  }

  input[type="submit"][disabled] {
    opacity: 0.5;
  }

/*--------------------------------------------------------------
  >> : Call To Action (Contained)
--------------------------------------------------------------*/
  [data-section="call-to-action-contained"] {
    position: relative;
  }
  
  [data-section="call-to-action-contained"] .row {
    position: relative;
  }


  [data-section="call-to-action-contained"] .row > .col {
    z-index: 3;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  [data-section="call-to-action-contained"] ul {
    list-style: none;
    padding: 0;
  }

  [data-section="call-to-action-contained"] .row > picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  [data-section="call-to-action-contained"] * {
    color: var(--brand-white);
  }


/*--------------------------------------------------------------
  >> : Call To Action
--------------------------------------------------------------*/
  [data-section="call-to-action"] {
    position: relative;
  }

  [data-section="call-to-action"] .row {
    position: relative;
  }


  [data-section="call-to-action"] .row > .col {
    z-index: 3;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  [data-section="call-to-action"] ul {
    list-style: none;
    padding: 0;
  }

  [data-section="call-to-action"] .section-content > picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  [data-section="call-to-action"] * {
    color: var(--brand-white);
  }

/*--------------------------------------------------------------
  >> : Cards (Image Left)
--------------------------------------------------------------*/

  .card-image-left {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
  }

  .card-image-left picture {
    width: 80px;
    height: 80px;
    border-radius: 100%;
  }

  .card-image-left-content {
    width: calc(100% - 80px);
    padding-left: 1.25rem;
  }

  @media (max-width: 1199px) {
    [data-section="cards-image-left"] .col:not(:last-child) {
      margin-bottom: 1.25rem;
    }
  }

  @media (max-width: 992px) {
    .card-image-left {
      display: inline-block;
      width: 100%;
    }

    .card-image-left-content {
      width: 100%;
      padding: 0;
      margin-top: 1rem;
    }
  }


/*--------------------------------------------------------------
  >> : Cards (Image Left)
--------------------------------------------------------------*/

  [data-section="cards-image-top"] .col {
    margin-bottom: 2rem;
  }

  [data-section="cards-image-top"] .row {
    margin-bottom: -2rem;
  }

  .card-image-top > picture {
    aspect-ratio: 16/9;
  }

  .card-image-top-content {
    padding: 2rem;
    background: #ffffff;
    margin-top: -4rem;
    z-index: 2;
    display: inline-block;
    position: relative;
    width: calc(100% - 4rem);
    margin-left: 2rem;
    border: 1px solid #f7f7f7;
  }

  @media (max-width: 1199px) {
    .card-image-top > picture {
      aspect-ratio: 16/9;
    }

    .card-image-top-content {
      padding: 1.5rem;
      margin-top: -2rem;
      margin-left: 1rem;
      width: calc(100% - 2rem);
    }
  }


/*--------------------------------------------------------------
  >> : Desmerrion
--------------------------------------------------------------*/
  [data-section="desmerrion"] picture {
    width: 220px;
    height: 220px;
    border-radius: 100%;
  }

  [data-section="desmerrion"] .content-wrapper {
    padding-top: 70px;
    position: relative;
  }

  [data-section="desmerrion"] .content-wrapper:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 110px;
    background: #B2B2B2;
    transform: translateX(-0.5px);
  }

/*--------------------------------------------------------------
  >> : Image Grid
--------------------------------------------------------------*/
  .image-grid {
    display: inline-grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .image-grid-item {
    padding: 2rem;
    border: 1px solid #ececec;
  }

  @media (max-width: 1199px) {
    .image-grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .image-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

/*--------------------------------------------------------------
  >> : Gallery Grid
--------------------------------------------------------------*/

  .gallery-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .gallery-grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 3 / 4;
  }

  .gallery-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .gallery-item-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }

  .gallery-item-link picture,
  .gallery-item-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery-grid-item:hover .gallery-item-link picture img,
  .gallery-grid-item:hover .gallery-item-link img {
    transform: scale(1.05);
  }

  @media (max-width: 1200px) {
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }
  }

  @media (max-width: 992px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  }

  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }

  @media (max-width: 576px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }





/*--------------------------------------------------------------
  >> : Fixed Text Scroll
--------------------------------------------------------------*/ 

  [data-section="timeline"] .fixed-text-content {
    height: 75vh;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    margin-bottom: 25vh;
  }

  [data-section="timeline"] .fixed-text-content h2 {
    margin-bottom: 4rem
  }

  [data-section="timeline"] .fixed-text-content > * {
    width: 100%;
  }

  [data-section="timeline"] .fixed-text-images {
    position: relative;    
  }

  [data-section="timeline"] .fixed-text-images picture {
    position: absolute;
    width: 100%;
    height: 100vh;
  }

  [data-section="timeline"] .fixed-text-images picture img {
    height: 100%;
    width: 100%;
  }



/*--------------------------------------------------------------
  >> : Hero
--------------------------------------------------------------*/ 
  [data-section="hero"] h1 {
    position:relative;
    font-size:7rem;
    line-height:1em;
    width:80%;
    margin:auto;
    margin-bottom:-3rem;
    z-index:2;
  }

  [data-section="hero"] h1:after {
    content:'';
    position:absolute;
    bottom:-50px;
    transform:translateY(100%);
    left:0;
    right:0;
    display:block;
    height:100px;
    width:1px;
    background:#fff;
    margin:auto;
  }

  [data-section="hero"] p {
    position:relative;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }

  [data-section="hero"] p:before {
    content:'';
    position:relative;
    display:block;
    height:40px;
    width:1px;
    background:#fff;
    margin-bottom:2rem;
  }

  [data-section="hero"] picture {
    position:relative;
  }

  [data-section="hero"] picture:before,
  [data-section="hero"] picture:after {
    content:'';
    position:absolute;
    display:block;
    height:50px;
    width:50px;
    border-style:dashed;
    border-color:#fff;
    border-width:1px;
  }

  [data-section="hero"] picture:before {
    border-bottom:0;
    border-right:0;
    left:20px;
    top:20px;
  }

  [data-section="hero"] picture:after {
    border-top:0;
    border-left:0;
    right:20px;
    bottom:20px;
  }


  [data-section="hero"] .container {
    position:relative;
    overflow:visible;
  }

  [data-section="hero"] img.hero-brand-mark {
    position:absolute;
    bottom:-50px;
    right:100px;
    height:200px;
    width:200px;
    transform:translateY(50%);
    z-index:2;
    -webkit-animation:spin 10s linear infinite;
    -moz-animation:spin 10s linear infinite;
    animation:spin 10s linear infinite;
  }

  @keyframes spin { 
    100% { 
        -webkit-transform: translateY(50%) rotate(360deg); 
        transform:translateY(50%) rotate(360deg); 
    } 
  }

  @media (max-width: 1200px) { 
    [data-section="hero"] h1 {
      font-size: 6rem;
      width: 90%;
      margin-bottom: -10rem;
    }

    [data-section="hero"] picture img {
      height: 80vh;
    }

    [data-section="hero"] img.hero-brand-mark {
      bottom: 0;
      top: 0;
      margin: auto;
      right: unset;
    }
  }



  @media (max-width: 992px) { 
    [data-section="hero"] h1 {
      font-size: 5rem;
      width: 90%;
      margin-bottom: -5rem;
    }
  }

  @media (max-width: 768px) { 
    [data-section="hero"] h1 {
      font-size: 3.5rem;
      width: 100%;
      margin-bottom: -3rem;
    }

    [data-section="hero"] img.hero-brand-mark {
      height: 150px;
      width: 150px;
    }
	[data-section="hero"] picture {
	  height: 55vh;
	}

	[data-section="hero"] picture img {
	  height:100%;
	}
  }
/*--------------------------------------------------------------
  >> : Service Grid
--------------------------------------------------------------*/

  [data-section="service-grid-triple"] {
    margin-top:120px !important;
  }

  [data-section="service-grid-double"] picture.picture-4x3 {
    aspect-ratio: 4 / 3;
  }

  @media (max-width: 992px) { 
    [data-section="service-grid-triple"] {
      margin-top: 0 !important;
      padding-bottom: 1rem !important;
    }
  }



/*--------------------------------------------------------------
  >> : Text Above Image
--------------------------------------------------------------*/
  [data-section="text-above-image"] picture {
    width: 100vw;
    height: auto;
    max-height: 50vh;
    position: relative;
  }

  [data-section="text-above-image"] picture img {
    width: 100%;
    max-height: 50vh;
  }

  [data-section="text-above-image"] h2 {
    margin-bottom:2rem;
  }

  @media (max-width: 768px) {
    [data-section="text-above-image"] picture {
      width: 100%;
    }
  }


/*--------------------------------------------------------------
  >> : Review
--------------------------------------------------------------*/

  .block-review-content p {
    font-size: 2.5em;
    line-height: 1.4em;
    font-family: var(--heading-font-family);
    font-weight: 350;   
  }

  .block-review-author {
    position:relative;
    margin-top:20px;
    display:flex;
    align-items:center;
    font-size:0.8rem;
    letter-spacing:2px;
  }

  .block-review-author:before {
    content:'';
    position:relative;
    display:block;
    width:30px;
    height:1px;
    background:black;
    margin-right:10px;
  }

/*--------------------------------------------------------------
  >> : Testimonials
--------------------------------------------------------------*/

  [data-section="testimonials"] .row {
    position: relative;
  }

  .testimonials-video {
    position: relative;
    width: 100%;
  }

  .testimonials-video .video-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
  }

  .testimonials-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* Ensure video maintains size when poster is removed */
  .testimonials-video .video-wrapper:has(video[poster]) {
    aspect-ratio: attr(width) / attr(height);
  }

  /* Oembed and iframe videos - maintain aspect ratio */
  .testimonials-video .video-oembed,
  .testimonials-video .video-iframe {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .testimonials-video .video-oembed iframe,
  .testimonials-video .video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .testimonials-video .video-oembed > *,
  .testimonials-video .video-iframe > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* Play button overlay */
  .video-play-button,
  .video-pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .video-play-button:hover,
  .video-pause-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .video-play-button svg,
  .video-pause-button svg {
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  }

  /* Hide play button when video is playing */
  .video-wrapper video.playing ~ .video-play-button,
  .video-wrapper.playing .video-play-button {
    opacity: 0;
    pointer-events: none;
  }

  /* Show pause button on hover when video is playing */
  .video-wrapper.playing:hover .video-pause-button {
    opacity: 1;
    pointer-events: auto;
  }

  .video-pause-button {
    opacity: 0;
    pointer-events: none;
  }

  /* Hide poster when video is playing */
  .testimonials-video video[poster=""] {
    background-image: none !important;
  }

  /* Ensure video background is transparent when playing */
  .testimonials-video video.playing {
    background: transparent;
  }

  @media (min-width: 992px) {
    [data-section="testimonials"] .col-lg-5 {
      position: relative;
      z-index: 2;
    }

    .testimonials-content {
      background: #fff;
      padding: 3rem;
      margin-left: -4rem;
      margin-top: 2rem;
      position: relative;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
  }

  @media (max-width: 991px) {
    .testimonials-content {
      background: #fff;
      padding: 3rem;
      margin-top: 2rem;
      position: relative;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
  }

  .testimonials-text {
    font-size: 1.5rem;
    line-height: 1.6em;
    font-family: var(--heading-font-family);
    font-weight: 350;
    margin-bottom: 1.5rem;
  }

  .testimonials-text p {
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
    margin-bottom: 0;
  }

  .testimonials-author {
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .testimonials-author:before {
    content: '';
    position: relative;
    display: block;
    width: 30px;
    height: 1px;
    background: black;
    margin-right: 10px;
  }

  @media (max-width: 992px) {
    .testimonials-content {
      margin-left: 0;
      margin-top: 2rem;
    }
  }

  @media (max-width: 768px) {
    .testimonials-content {
      padding: 2rem;
    }

    .testimonials-text {
      font-size: 1.25rem;
    }
  }

  @media (max-width: 992px) {
    .block-review-content {
      text-align: center;
    }

    .block-review-content p {
      font-size: 1.8rem;
      letter-spacing: 0.5px;
    }

    .block-review-author {
      padding-top: 45px;
      position: relative;
      text-align: center;
      justify-content: center;
    }

    .block-review-author:before {
      transform: rotate(90deg);
      position: absolute;
      top: 10px;
      left: 0;
      right: 0;
      margin: 0 auto;
    }


  }



/*--------------------------------------------------------------
  >> : Header (Page)
--------------------------------------------------------------*/

[data-section="header-page"] .sub-heading {
  position:relative;
    display:block;
}

[data-section="header-page"] .sub-heading:before {
    content:'';
    display:block;
    height:20px;
    width:1px;
    background:#000;
    margin:10px auto;
}
[data-section="header-page"] h1 {
  margin-bottom:2rem;
}

[data-section="header-page"] picture img {
  height:50vh;
}

/*--------------------------------------------------------------
  >> : Timeline
--------------------------------------------------------------*/

  .fixed-text-contents {
    padding-left:50px;
    border-left:1px dashed #cacaca;
  }

  [data-section="timeline"] .fixed-text-content h3 {
    display:flex;
    align-items:center;
    padding-left:50px;
    position:relative;
  }

  [data-section="timeline"] .fixed-text-content h3:before {
    content:'';
    position:relative;
    height:10px;
    width:10px;
    border-radius:10px;
    background:#cacaca;
    margin-left:-105px;
    margin-right:40px;
  }


  [data-section="timeline"] .fixed-text-content h3:after {
    content:'';
    position:absolute;
    display:block;
    top:0;
    left:-50px;
    bottom:0;
    margin:auto;
    border-top:1px dashed #cacaca;
    width:40px;
    height:1px;
  }

  @media (max-width: 1199px) {
    .fixed-text-contents {
      padding-left: 0 !important;
      border-left: none;
    }

    [data-section="timeline"] .fixed-text-content {
      height: unset;
      margin-bottom: 50px;
      padding: 0 1rem;
    }

    [data-section="timeline"] .fixed-text-content:not(:first-child) picture {
      display: none;
    }

    [data-section="timeline"] .fixed-text-content:first-child h3 {
      margin-top: 50px;
    }

    [data-section="timeline"] .fixed-text-content h3 {
      padding-left: 0;
    }

    [data-section="timeline"] .fixed-text-content h3:before,
    [data-section="timeline"] .fixed-text-content h3:after {
      display: none;
    }
  }

/*--------------------------------------------------------------
  >> : Text Grid
--------------------------------------------------------------*/

  .text-boxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 32px;
  }

  .text-box-grid-item {
    padding: 3rem;
    background: #f7f7f7;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  [data-bg-color="color-neutral-light-500"] .text-box-grid-item {
    background: #fff;
  }

  @media (max-width: 992px) {
    .text-boxes-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {

    .text-boxes-grid {
      grid-template-columns: 1fr;
    }

  }

/*--------------------------------------------------------------
  >> : Featured Video
--------------------------------------------------------------*/

[data-section="featured-video"] iframe {
    width: 100%;
    aspect-ratio:4/3;
    min-height: 540px;
}


/*--------------------------------------------------------------
  >> : Product Grid
--------------------------------------------------------------*/

.product-loop-card a {
    color:#000; 
    text-decoration: none;  
    
}

.product-loop-image {
    margin-bottom: 1rem;
}

.product-loop-card h3 {
    font-size:1.7rem;
}

.product-loop-card p.product-loop-label {
    font-size:1em;
    margin-bottom:.4rem;
}

.product-loop-card span.woocommerce-Price-amount.amount {
    color:var(--color-green-300);
    font-weight:600;
    font-size:1.1rem;
}

/*--------------------------------------------------------------
  >> : Pricing Row
--------------------------------------------------------------*/

.pricing-row .col:nth-child(1){
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:start;
}

[data-section="pricing-rows"] [data-bg-color="white"] .container {
    border-top: 1px solid black;
}

.pricing-row .sub-title {
    font-size:0.9em;
    letter-spacing:1px;
    color: var(--color-gold-600);
    text-transform:uppercase;
}

.row.pricing-row ul {
    list-style:none;
}

.row.pricing-row ul li {
    position:relative;
    margin-bottom:1.5rem;
}

.row.pricing-row ul li:before {
    content:'';
    position:absolute;
    left:-20px;
    top:6px;
    display:block;
    height:8px;
    width:8px;
    background:#e2e2e2;
    transform:rotate(45deg);
}

[data-section="pricing-rows"] [data-bg-color="color-green-600"] .col {
    min-height:30vh;
}

/*--------------------------------------------------------------
  >> : Image Text Contained
--------------------------------------------------------------*/

[data-section="image-text-contained"] h3,
[data-section="text-image-contained"] h3 {
    font-size:1.5rem;
    font-weight:400;
}
[data-section="image-text-contained"] .sub-heading,
[data-section="text-image-contained"] .sub-heading {
  color:var(--color-gold-600);
}

[data-section="image-text-contained"] .btn,
[data-section="text-image-contained"] .btn {
  margin-top:1rem;
}

[data-section="image-text-contained"] picture img,
[data-section="text-image-contained"] picture img {
  height:100%;
}

/*--------------------------------------------------------------
  >> : Image Text
--------------------------------------------------------------*/

[data-section="text-image"] h2,
[data-section="image-text"] h2 {
    margin-bottom:1.5rem;
}


[data-section="text-image"] .btn,
[data-section="image-text"] .btn {
  margin-top:1rem;
}

[data-section="text-image"] .col-lg-6, 
[data-section="image-text"] .col-lg-6, 
[data-section="image-text-offset"] .col-lg-7, 
[data-section="text-image-offset"] .col-lg-7 {
  min-height: 50vh;
}

@media (max-width: 992px) {
  [data-section="text-image"] .col-inner, 
  [data-section="image-text"] .col-inner {
    padding: 1.5rem;
  }  
  
  [data-section="text-image-offset"] .col-inner,
  [data-section="image-text-offset"] .col-inner {
    padding: 1.5rem;
  }

  [data-section="image-text-offset"] .row {
    flex-direction: column-reverse;
  }

  [data-section="image-text-offset"] picture {
    position: relative;
    height: 50vh;
  }

}
/*[data-section="text-image-contained"] picture img, */
/*[data-section="image-text-contained"] picture img, */
/*[data-section="header-sub-service"] picture img*/

/*--------------------------------------------------------------
  >> : FAQ's
--------------------------------------------------------------*/

[data-section="faq-accordion"] .accordion-button {
    padding:20px 0px;
    font-family:var(--heading-font-family);
    border-radius:0px !important;
    border-top:1px solid black;
    font-size: 1.5rem;
    background: transparent;
}

[data-section="faq-accordion"] .accordion-button:not(.collapsed) {
    color:var(--brand-black);
    background: transparent;
    box-shadow: none;
}

[data-section="faq-accordion"] .accordion-item {
    border:none;
    background: transparent;
    
    border-radius: 0px !important;
}

[data-section="faq-accordion"] p.accordion-header {
    font-size: 2rem;
}

[data-section="faq-accordion"] .accordion-body {
    padding: 0rem 0 2rem 0rem;
}

[data-section="faq-accordion"] .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/*--------------------------------------------------------------
  >> : Header Service
--------------------------------------------------------------*/

  [data-section="header-service"] {
    padding-top: 0 !important;
  }

  [data-section="header-service"] .section-background {
    position:absolute;
    top:0;
    left:0;
    height:calc((100% - 100px) - 4rem);
    width:100%;
    background:var(--color-green-900);
    z-index:1;
  }


  [data-section="header-service"] .row {
    position:relative;
    z-index:3;
  }

  [data-section="header-service"] .col-xl-7 {
    margin-bottom:100px;
  }

  [data-section="header-sub-service"] .col:nth-child(2) {
    min-height: 60vh;
  }

  [data-section="header-sub-service"] .sub-heading {
    position:relative;
    display:flex;
    align-items:center;
  }

  [data-section="header-sub-service"] .sub-heading:before {
    content:'';
    display:inline-block;
    height:1px;
    width:15px;
    background:#000;
    margin-right:8px;
  }

  @media (max-width: 1200px) { 

    [data-section="header-service"] .row {
      flex-wrap: wrap-reverse;
    }


    [data-section="header-service"] .col-xl-7 {
      margin:0;
      text-align:center;
    }

    [data-section="header-sub-service"] .row {
      flex-wrap: wrap-reverse;
    }

    [data-section="header-sub-service"] picture img {
      height:50vh;
    }

    [data-section="header-sub-service"] .col-xl-6 {
      margin:0;
      text-align:center;
    }

    [data-section="header-sub-service"] .sub-heading {
      display: block;
    }

    [data-section="header-sub-service"] .sub-heading:before {
      display: block;
      margin: 0 auto;
      height: 15px;
      width: 1px;
      margin: 0px auto 10px auto;
    }

  }

  @media (max-width: 1024px) { 

    [data-section="header-sub-service"] .col:nth-child(2) {
      min-height: unset;
    }

    [data-section="header-sub-service"] picture {
      aspect-ratio: 16/9;
    }

    [data-section="header-sub-service"] picture img {
      height: 100% !important;
    }

    [data-section="image-text-contained"] picture,
    [data-section="text-image-contained"] picture {
      height:50vh;
    }

  }


  @media (min-width:992px) and (max-width: 1200px) { 
    [data-section="header-sub-service"] .col-xl-6,
    [data-section="header-service"] .col-xl-7 {
      padding:4rem !important;
      padding-bottom: 0 !important;
    }
  }

/*--------------------------------------------------------------
  >> : Bigger Pictures
--------------------------------------------------------------*/
  .bp-html picture,
  .bp-html picture img {
    max-width: 100vw !important;
    max-height: 100vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    transition: none !important;
    animation: none !important;
  }

  .bp-inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Disable all transitions on bigger-picture to prevent object-fit animation */
  .bp-wrap > div:first-child {
    transition: opacity 0.3s ease !important;
  }

  .bp-wrap .bp-html,
  .bp-wrap .bp-html picture,
  .bp-wrap .bp-html picture img,
  .bp-wrap .bp-img,
  .bp-wrap .bp-img img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  /* Specifically disable object-fit and dimension transitions */
  .bp-wrap picture,
  .bp-wrap picture img {
    transition: none !important;
    animation: none !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  /* Override any inherited transitions from gallery items */
  .bp-wrap .gallery-thumbnail,
  .bp-wrap .gallery-thumbnail img {
    transition: none !important;
    object-fit: contain !important;
    width: auto !important;
    height: auto !important;
  }

  .bp-wrap {
    z-index: 9999;
  }


/*--------------------------------------------------------------
  >> : Pricing Card
--------------------------------------------------------------*/

  .pricing-card {
    background:#fff;
    border-top:3px solid #bfbfbf;
    padding:2rem;
  }


  .pricing-card h3 {
    font-size:1.5rem;
    text-transform:uppercase;
    letter-spacing:.2em;
    font-weight:400;
  }

  .pricing-card .sub-title {
    letter-spacing:1px;
  }

  .pricing-card p {
    font-size:0.9em;
    
  }

  .card-breaker {
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin-bottom:20px;
  }

  .card-breaker:after {
    content:'';
    height:10px;
    width:10px;
    background:#ececec;
    transform:rotate(45deg);
  }

  @media (max-width: 992px) {
    .pricing-card {
      margin-bottom: 1.5rem;
    }
  }

/*--------------------------------------------------------------
  >> : Vacancy Card
--------------------------------------------------------------*/

.vacnacy-card {
    background: #fff;
    border-top: 3px solid #bfbfbf;
    padding: 2rem;
}

/*--------------------------------------------------------------
  >> : Course Cards
--------------------------------------------------------------*/

.course-card {
    background:#f7f7f7;
    border-top:3px solid #bfbfbf;
    padding:2rem;
}
.course-card .h4 {
    font-size:1.5rem;
    text-transform:uppercase;
    letter-spacing:.2em;
    font-weight:400;
}

.course-card p {
    font-size:0.9em;
}

.course-terms-grid-item {
    background: #fff;
    padding: 10px;
}

.course-terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.course-terms-grid-item p {
    margin-bottom:0px;
}

ul.course-skills-list {
    list-style: none;
    display: flex;
    flex-wrap:wrap;
    width:60%;
    margin:auto;
}

ul.course-skills-list li {
    width:50%;
}

.course-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


.course-options-grid-item {
    padding: 10px;
}


/*--------------------------------------------------------------
  >> : Price List Item
--------------------------------------------------------------*/

  .price-list-item {
    margin-bottom: 1rem;
    position: relative;
  }

  .price-list-item:after {
    content: '';
    position: absolute;
    border-bottom: 1px dashed #000;
    width: calc(100% - 30px);
    bottom: 11px;
    left: 15px;
  }

  .price-list-item span {
    background: #f7f7f7;
    width: fit-content;
    display: inline-block;
    z-index: 3;
    position: relative;
  }