  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    padding-left: 35px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
		height: 450px; 
		overflow-y: auto; 
    left: 50%;
    top: 50%;
    transform: translate(-0%, -40%); 
  }

  /* Modal header */
  .modal-header {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 10px;
  }

  .modal-header h2 {
    font-size: 20px; 
  }

  /* Modal body */
  .modal-body {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
  }

  /* Modal footer */
  .modal-footer {
    padding: 10px;
    border-top: 1px solid #ddd;
    text-align: center;
  }

  /* Close button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

	@media (max-width: 768px) {
    .modal-content {
      width: 90%; 
      max-width: 100%;
      height: auto; 
      max-height: 80%; 
			transform: translate(-0%, -10%); 
    }
  }

/* Media query for nav drop down on screen width less than or equal to 1363px */
@media (max-width: 1363px) {
  .elementor-8689 .elementor-element.elementor-element-a8a6585 > .elementor-element-populated {
      padding: 40px 20px 40px 40px !important;
  }
}