/*
Theme Name: Divi Child Theme
Description: Child Theme for Divi
Author:  Hand to Sky
Template: Divi
Version:  1.0.2
*/

/*
---------------------------
	CSS DIRECTORY
---------------------------
	=Font Setup
	=Global
	=Header
	=Footer
	=Media Queries
*/

/* ====Font Setup /////////////////////////////////////////////////*/

/* ====Global /////////////////////////////////////////////////*/
.dp_video_blurb_customisation.et_pb_blurb_3.et-pb-icon:before {
  content: "";
  position: absolute;
  height: 105px;
  width: 105px;
  border: 5px solid #571b0c;
  border-radius: 50%;
  background-color: #571b0c;
  animation-name: ripple;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/************ Play Button **************/

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/** Full width pricing Button **/

/* Styling for full-width pricing button */
.dipi-pt-btn-wrap a {
  display: inline-block;
  width: 100%;
}
/* Contact Module */

/* Styling for inline checkboxes */
.et_pb_contact_field_options_list span {
  display: inline-block;
  color: #9b9b9b;
  margin-right: 30px;
}

.et_pb_contact_field_options_wrapper .et_pb_contact_field_options_title {
  margin-bottom: 0.5em;
  font-weight: 400;
  color: #fff;
  font-family: "Libre Baskerville";
}

/* Styling for contact button */
.et_pb_module .et_pb_contact_submit,
.et_pb_module .et_contact_bottom_container {
  width: 100% !important;
}

/* ====Header /////////////////////////////////////////////////*/

/* ====Footer /////////////////////////////////////////////////*/

/* ====Media Queries /////////////////////////////////////////////////*/
@media (max-width: 767px) {
  .dt-hide-on-phone {
    display: none !important;
  }
}
@media (max-width: 767px) {
}
@media (min-width: 768px) {
}
/* Hide Menu item on Tablet */
@media (min-width: 768px) and (max-width: 980px) {
  .dt-hide-on-tablet {
    display: none !important;
  }
}
@media (min-width: 981px) {
  .mega-menu li.mega-menu > ul {
    display: flex;
    flex-wrap: wrap;
  }

  .mega-menu li.mega-menu > ul > li {
    width: 50%; /* Ensures two equal columns */
    float: left; /* Helps with layout alignment */
  }

  .mega-menu li.mega-menu > ul > li:nth-child(odd) {
    clear: left; /* Ensures a new row starts every two items */
  }

  .dt-hide-on-desktop {
    display: none !important;
  }
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
