.container {
  width:100%;
  margin:0 auto;
  position:relative;
}
/* Reset default marker & basic styling */
details {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  background-color: #fafafa;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

details:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

summary {
  list-style: none;           /* remove default triangle / marker */ 
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: #e9ecef;
  border-bottom: 1px solid #ddd;
  position: relative;
}

/* Custom marker: you can use + / – or arrow — using ::before */
summary::before {
  content: "+";               /* closed state icon */
  display: inline-block;
  width: 1.2em;
  text-align: center;
  margin-right: 0.5em;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

details[open] summary::before {
  content: "–";               /* open state icon */
  transform: rotate(0deg);
}

details > *:not(summary) {
  padding: 1rem 1.2rem;
  line-height: 1.6;
  background-color: #fff;
}

.details-content {
  /* optional: add some spacing if content is large */
  margin-top: 0.5rem;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
  background:#F9F9F9;
  padding:25px;
  margin:50px 0;
}

#contact h3 {
  color: #F96;
  display: block;
  font-size: 30px;
  font-weight: 400;
}

#contact h4 {
  margin:5px 0 15px;
  display:block;
  font-size:13px;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
  width:100%;
  border:1px solid #CCC;
  background:#FFF;
  margin:0 0 5px;
  padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
  -webkit-transition:border-color 0.3s ease-in-out;
  -moz-transition:border-color 0.3s ease-in-out;
  transition:border-color 0.3s ease-in-out;
  border:1px solid #AAA;
}

#contact textarea {
  height:100px;
  max-width:100%;
  resize:none;
}

#contact button[type="submit"] {
  cursor:pointer;
  width:20%;
  border:none;
  background:#0CF;
  color:#FFF;
  margin:0 0 5px;
  padding:10px;
  font-size:15px;
}

#contact button[type="submit"]:hover {
  background:#09C;
  -webkit-transition:background 0.3s ease-in-out;
  -moz-transition:background 0.3s ease-in-out;
  transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
  outline:0;
  border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}

.video-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Floating Sticky Footer CTA */
.floating-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 110, 253, 0.95);
  color: #fff;
  z-index: 1050;
  box-shadow: 0 -2px 10px rgba(0,0,0,.15);
}

.floating-footer a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.floating-footer .btn {
  font-weight: 600;
}

body {
  padding-bottom: 80px; /* prevents overlap */
}
@media (max-width: 576px) {
  .carousel-caption p {
    display: none;
  }
}
