/* global styling  */
.ss-container {
  max-width: 1312px;
  margin: 0 auto;
}

.spacer {
  display: block;
  height: 32px;
}

@media (min-width: 992px) {
  .spacer{
    height: 48px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
h2 {
  color: #363636;

  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h3 {
  color: #1e1e1e;

  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}

p {
  color: #5d5d5e;

  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-group {
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  align-items: center;
  display: inline-flex;
  font-family: "Helvetica", sans-serif;
  margin-right: 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 700;
  font-size: 16px;
}

.btn-group a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.btn-primary {
  background-color: #485180;
  color: white;
}

.btn-primary a {
  color: white;
}

.btn-primary:hover {
  background-color: white;
  color: #485180;
  border: 2px solid #485180;
}

.btn-primary:hover a {
  color: #485180;
}

.btn-outline {
  background-color: white;
  color: #485180;
  border: 2px solid #485180;
}

.btn-outline a {
  color: #485180;
}

.btn-outline:hover {
  background-color: #485180;
  color: white;
}

.btn-outline:hover a {
  color: white;
}

.gapping {
  padding: 50px 0;
}

/* end of global styling  */

.description {
  background-color: #fafafa;
  padding: 80px 26px;
}

.description h2,
.description p {
  text-align: center;
}

.description p:first-of-type {
  padding-top: 24px;
  padding-bottom: 16px;
}

.description a {
  color: #1386c0;
  text-decoration: underline;
}

.mid-heading {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .mid-heading {
    margin-botttom: 1.5rem;
  }
}

.sidebyside-content.county-airport {
  gap: 60px;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.details-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.details-icon {
  background-color: rgba(255, 209, 109, 0.6);
  border-radius: 100%;
  border: 1px solid #ffd16d;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 60px;
  min-width: 60px;
  height: 60px;
}

.details-title {
  font-size: 14px;
  width: 100%;
}

.details-span {
  white-space: nowrap;
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  width: 100%;
  /* max-width: 88%; */
  justify-content: space-between;
}
/* .details-span.weeks {
  max-width: 58%;
}
.details-span.phone {
  max-width: 80%;
} */

.details-span.weeks {
  flex-wrap: wrap;
}

.county-airport {
  padding: 16px 0 16px 0;
}

@include (min-width: 992px) {
  .county-airport {
    padding: 34px 0 24px 0;
  }
}

/* side by side styling  */
.sidebyside-content {
  display: flex;
  justify-content: space-between;
  gap: 96px;
  width: 100%;
}

.column-half {
  width: 50%;
}
.column-half.desc {
  align-content: center;
}

.info p:first-of-type {
  padding: 24px 0;
}

.info p:last-of-type {
  padding-bottom: 50px;
}

/* policy styling  */
.info-new {
  padding: 24px 0;
}

.map-img {
  justify-items: center;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 34px;
}

.policy-list li {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  padding-left: 40px;
  margin-bottom: 15px;
  color: #343434;
  font-family: Poppins;
  list-style: none;

  font-style: normal;
}
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-image: url("./img/check.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Responsive  */
@media (max-width: 992px) {
  .sidebyside-content {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .column-half {
    width: 100%;
  }

  .btn-group {
    margin-bottom: 16px;
  }

  .details-span {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .ss-container {
    padding: 30px 12px;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .description {
    padding: 50px 16px;
  }

  .btn-group {
    padding: 12px 20px;
    font-size: 14px;
  }

  .details-icon {
    width: 50px;
    height: 50px;
  }

  .policy-list li {
    font-size: 15px;
    line-height: 24px;
  }
}

.lead-form form {
  max-width: 400px;
  margin: 0 auto;
}
