@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100..900&display=swap");

:root {
  --white: #fff;
  --black: #1d1d1d;
  --bg: #edf3f6;
  --light_grey: #d1d1d1;
  --pink-shade: #fff7f1;
  --text_color_elysian: #c96577;
  --primary_color: #145365;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* CTA Strip (Top Bar) */
.cta_strip {
  background-color: var(--white);
  padding: 5px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
  position: relative;
  z-index: 9;
}
.logo {
  width: 90px;
}
.strip_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.right_content {
  text-align: right;
}
.cta_para a {
  display: inline-block;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary_color);
  transition: 0.3s ease-in-out;
}
.cta_para a:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

/* Thank You Section */
.thankyoupage {
  padding: 60px 10px;
  text-align: center;
}
.thankyoubox h1 {
  font-size: 40px;
  color: var(--primary_color);
  margin-bottom: 15px;
}
.thankyoubox p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.thankyoubox a {
  color: var(--primary_color);
  font-weight: 600;
}
.thankyoubox a:hover {
  color: var(--primary_color);
}

/* Get in Touch Section */
.getTouch {
  padding: 50px 0;
  background-color: var(--primary_color);
  color: var(--white);
}
.common_heading {
  text-align: center;
  color: var(--white);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
.dis-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.boxes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.box {
  padding: 0 0 10px;
  border-bottom: 1px solid #fff;
  text-align: center;
  border-radius: 10px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.boxContent p span {
  display: block !important;
  font-size: 16px !important;
  color: var(--white) !important;
}

.boxContent p a{
  color:#fff;
}
.boxContent svg {
  margin-bottom: 10px;
}
.map {
  height: 100%;
  min-height: 300px;
}

/* Footer */
.footer_section {
  background-color: #202020;
}
.copy_right {
  padding: 10px;
  color: #fff;
  background-color: var(--primary_color);
  text-align: center;
  font-size: 14px;
}
.copy_right span {
  color: var(--white);
}
/* a.dark-button{
    background-color: var(--primary_color);
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    border: 2px solid var(--white);
    color: var(--white);
} */
.disclaimer {
  font-size: 12px;
}
.getTouch .box svg {
  min-width: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .logo{
    width: 80px;
  }
  .cta_para a{
    font-size: 11px;
    padding: 8px 10px;
  }
  .dis-flex {
    grid-template-columns: 1fr;
  }
  .map {
    order: -1;
    height: 250px;
  }
  .getTouch {
    padding: 30px 0 0;
  }
  .boxContent {
    display: flex;
    gap: 10px;
  }
  .boxContent p {
    text-align: start;
    font-size: 14px;
  }
  .box {
    justify-content: start;
  }
  .disclaimer {
    text-align: center;
  }
  .thankyoupage {
    padding: 30px 0;
  }
  .common_heading {
    margin-bottom: 15px;
  }
}
