@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: #1a1a1a;
  background: #fff;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
}

button {
  font-family: "Manrope", sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 2rem 50px;
  width: 100%;
  height: 90px;
  border-bottom: 1px solid rgba(84, 13, 69, 0.1);
  position: fixed;
  z-index: 1111;
  background: #fff;
}
.navbar-container .logo {
  width: 42px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1486px) {
  .navbar-container {
    padding: 2rem 50px;
  }
}
@media (max-width: 786px) {
  .navbar-container {
    padding: 1rem;
    height: 74px;
  }
  .navbar-container .logo {
    width: 36px;
  }
}
.navbar-container .nav-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 380px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-container .nav-desktop li a {
  font-weight: 500;
  color: #1a1a1a;
}
.navbar-container .nav-desktop li #active-link,
.navbar-container .nav-desktop li a:hover {
  color: #520e44;
}
.navbar-container .nav-desktop .sm {
  display: flex;
  gap: 16px;
}
@media (max-width: 1068px) {
  .navbar-container .nav-desktop {
    max-width: 300px;
  }
}
@media (max-width: 786px) {
  .navbar-container .nav-desktop {
    display: none;
  }
}
.navbar-container .nav-mobile {
  display: none;
}
.navbar-container .nav-mobile-display {
  display: none;
}
@media (max-width: 786px) {
  .navbar-container .nav-mobile-display {
    display: flex;
    background: rgba(26, 26, 26, 0.1568627451);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100dvh;
  }
  .navbar-container .nav-mobile-display .nav-content {
    position: relative;
    height: 100%;
    min-width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    padding: 2rem;
    padding-top: 72px;
    background-color: #fff;
  }
  .navbar-container .nav-mobile-display .nav-content li {
    width: 100%;
  }
  .navbar-container .nav-mobile-display .nav-content li a {
    display: block;
    width: 100%;
    padding-bottom: 1rem;
    font-size: 16px;
  }
  .navbar-container .nav-mobile-display .nav-content li #active-link,
  .navbar-container .nav-mobile-display .nav-content li a:hover {
    width: 100%;
    border-bottom: 1px solid #ba8d4a;
  }
  .navbar-container .nav-mobile-display .nav-content .social-media-nav {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
  }
  .navbar-container .nav-mobile-display .nav-content .social-media-nav a {
    border: none !important;
  }
  .navbar-container .nav-mobile-display .nav-content .social-media-nav img {
    width: 22px;
  }
}
.navbar-container .cta-btn {
  width: 100px;
  height: 42px;
  border-radius: 5px;
  color: #fff;
  background: #530e45;
  position: relative;
  overflow: hidden;
}
.navbar-container .cta-btn p {
  font-size: 16px;
  margin: auto;
}
@media (max-width: 786px) {
  .navbar-container .cta-btn {
    display: none;
  }
}
.navbar-container .cta-btn:hover {
  transform: scale(0.92);
  transition: all 0.4s ease-in-out;
}
.navbar-container .hamburger-container {
  display: none;
}
@media (max-width: 786px) {
  .navbar-container .hamburger-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    background: #520e44;
    border-radius: 5px;
    z-index: 1111111;
    cursor: pointer;
  }
  .navbar-container .hamburger-container img {
    margin: 0;
  }
}

.heroe-container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.heroe-container .heroe-content {
  display: flex;
  align-items: center;
  margin: auto 0;
  padding: 0 50px;
  padding-top: 120px;
}
@media (max-width: 1468px) {
  .heroe-container .heroe-content {
    padding: 0 50px;
    padding-top: 120px;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (max-width: 1268px) {
  .heroe-container .heroe-content {
    margin-top: 50px;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (max-width: 1268px) {
  .heroe-container .heroe-content {
    flex-direction: column;
    gap: 2rem;
    padding-top: 120px;
  }
}
@media (max-width: 986px) {
  .heroe-container .heroe-content {
    padding: 0 1rem;
    padding-top: 120px;
  }
}
.heroe-container .heroe-content .heroe-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-basis: 50%;
}
.heroe-container .heroe-content .heroe-text span {
  height: 42px;
  padding: 0 1rem;
  max-width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 42px;
  background: rgba(148, 64, 115, 0.1);
}
.heroe-container .heroe-content .heroe-text span p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin: none;
}
.heroe-container .heroe-content .heroe-text h1 {
  color: #1a1a1a;
  font-size: 3.1vw;
  font-style: normal;
  font-weight: 800;
  line-height: 151.25%;
  text-transform: capitalize;
  margin-top: 2rem;
}
.heroe-container .heroe-content .heroe-text .heroe-para {
  color: #4e4e4e;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  max-width: 600px;
  margin-top: 1rem;
}
.heroe-container .heroe-content .heroe-text .heroe-cta {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}
.heroe-container .heroe-content .heroe-text .heroe-cta button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 100%;
  border-radius: 5px;
  padding: 0 1rem;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.heroe-container .heroe-content .heroe-text .heroe-cta button:hover {
  transform: scale(0.92);
  transition: all 0.4s ease-in-out;
}
.heroe-container .heroe-content .heroe-text .heroe-cta #locate {
  background: #ba8d4a;
  color: #fff;
  max-width: 170px;
}
.heroe-container .heroe-content .heroe-text .heroe-cta #watch {
  border: 1px solid #540d45;
  background: #fff;
  color: #540d45;
  gap: 1rem;
  max-width: 200px;
}
@media (max-width: 1068px) {
  .heroe-container .heroe-content .heroe-text {
    align-items: center;
  }
  .heroe-container .heroe-content .heroe-text span {
    width: 300px;
    height: 42px;
  }
  .heroe-container .heroe-content .heroe-text span p {
    font-size: 14px;
  }
  .heroe-container .heroe-content .heroe-text h1 {
    text-align: center;
    font-size: 3.8vw;
    line-height: 151.25%;
  }
  .heroe-container .heroe-content .heroe-text .heroe-para {
    text-align: center;
    font-size: 14px;
  }
  .heroe-container .heroe-content .heroe-text .heroe-cta {
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
  }
  .heroe-container .heroe-content .heroe-text .heroe-cta button {
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    font-size: 16px;
    font-weight: 400;
  }
  .heroe-container .heroe-content .heroe-text .heroe-cta #locate {
    flex-basis: 45%;
  }
  .heroe-container .heroe-content .heroe-text .heroe-cta #watch {
    flex-basis: 55%;
  }
}
@media (max-width: 768px) {
  .heroe-container .heroe-content .heroe-text h1 {
    font-size: 8vw;
  }
}
.heroe-container .heroe-content .heroe-illustration {
  flex-basis: 50%;
  width: 100%;
  display: flex;
  margin: 4rem 0;
}
.heroe-container .heroe-content .heroe-illustration img {
  margin-left: auto;
  width: 100%;
}
@media (max-width: 1068px) {
  .heroe-container .heroe-content .heroe-illustration {
    margin-top: 1rem;
  }
}

.about-container {
  display: flex;
  flex-direction: column;
  padding: 0 50px;
  margin: 120px 0;
  min-height: 100%;
}
@media (max-width: 1468px) {
  .about-container {
    padding: 0 50px;
  }
}
@media (max-width: 986px) {
  .about-container {
    padding: 0 1rem;
    margin: 80px 0;
  }
}
.about-container .header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-container .header span {
  font-size: 18px;
  font-weight: 500;
  color: #ba8d4a;
  border-radius: 42px;
  border: 1px solid rgba(148, 64, 115, 0.3);
  padding: 0.5rem 2rem;
}
.about-container .header h3 {
  margin-top: 2rem;
  font-size: 32px;
  text-align: center;
  color: #1a1a1a;
  max-width: 900px;
  line-height: 170%;
}
@media (max-width: 986px) {
  .about-container .header {
    align-items: center;
    text-align: center;
  }
  .about-container .header span {
    font-size: 16px;
    padding: 0.3rem 2rem;
  }
  .about-container .header h3 {
    text-align: center;
    font-size: 24px;
    margin-top: 1rem;
  }
}
.about-container .about {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 3rem;
}
@media (max-width: 1468px) {
  .about-container .about {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}
.about-container .about div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 500px;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(186, 141, 74, 0.07) !important;
}
.about-container .about div span {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4rem;
}
.about-container .about div h4 {
  font-size: 20px;
}
.about-container .about div p {
  margin-top: 2rem;
  font-size: 16px;
  line-height: 170%;
  color: #4e4e4e;
}
.about-container .about div a {
  margin-top: 2.5rem;
  font-size: 18px;
  color: #ba8d4a;
}
.about-container .about #first {
  background: rgba(214, 52, 52, 0.05);
}
.about-container .about #first span {
  background: rgba(214, 52, 52, 0.2);
  color: #d63434;
}
.about-container .about #second {
  background: rgba(29, 95, 209, 0.05);
}
.about-container .about #second span {
  background: rgba(29, 95, 209, 0.2);
  color: #1d60d1;
}
.about-container .about #third {
  background: rgba(4, 77, 84, 0.05);
}
.about-container .about #third span {
  background: rgba(4, 77, 84, 0.122);
  color: #044e54;
}
.about-container .about #forth {
  background: rgba(236, 88, 255, 0.05);
}
.about-container .about #forth span {
  background: rgba(228, 153, 238, 0.2);
  color: #9800ac;
}
@media (max-width: 986px) {
  .about-container .about {
    width: 100%;
    row-gap: 2rem;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }
  .about-container .about div {
    height: 380px;
    min-height: auto;
    padding: 2rem 1rem;
  }
  .about-container .about div span {
    margin-bottom: 2.5rem;
  }
  .about-container .about div h4 {
    font-size: 20px;
  }
  .about-container .about div p {
    font-size: 14px;
    margin-top: 1rem;
  }
}

.choir-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.8196078431);
  background-blend-mode: multiply;
}
.choir-container .choir-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.choir-container .choir-text span {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 2rem;
}
.choir-container .choir-text h3 {
  margin-top: 1.5rem;
  font-size: 32px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  max-width: 700px;
  line-height: 150%;
  line-height: 170%;
}
@media (max-width: 986px) {
  .choir-container .choir-text {
    align-items: center;
    text-align: center;
  }
  .choir-container .choir-text span {
    font-size: 16px;
    padding: 0.3rem 2rem;
  }
  .choir-container .choir-text h3 {
    text-align: center;
    font-size: 24px;
    margin-top: 2rem;
    line-height: 190%;
  }
}

.president-message-container {
  display: flex;
  justify-content: left;
  align-items: center;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  width: 100%;
  padding: 150px 50px;
}
@media (max-width: 1468px) {
  .president-message-container {
    padding: 120px 50px;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media (max-width: 986px) {
  .president-message-container {
    padding: 80px 1rem;
    flex-direction: column-reverse;
  }
}
.president-message-container .president-img {
  flex-basis: 50%;
  height: 800px;
  border-radius: 8px;
  background: rgba(186, 141, 74, 0.07);
  padding: 4rem;
}
.president-message-container .president-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 4px;
}
@media (max-width: 1468px) {
  .president-message-container .president-img {
    padding: 2.5rem;
    height: 600px;
  }
}
@media (max-width: 986px) {
  .president-message-container .president-img {
    padding: 1.5rem;
    height: 1000px;
    margin-top: 3rem;
  }
  .president-message-container .president-img img {
    height: 300px;
  }
}
.president-message-container .president-msg {
  flex-basis: 50%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
}
.president-message-container .president-msg span {
  font-size: 18px;
  font-weight: 500;
  color: #ba8d4a;
  border-radius: 42px;
  border: 1px solid rgba(148, 64, 115, 0.3);
  padding: 0.5rem 2rem;
  max-width: -moz-max-content;
  max-width: max-content;
}
.president-message-container .president-msg h4 {
  margin-top: 4rem;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
.president-message-container .president-msg article {
  color: #555;
  margin-top: 1rem;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
}
.president-message-container .president-msg button {
  height: 56px;
  max-width: 180px;
  margin-top: 2rem;
  background: #540d45;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 5px;
}
@media (max-width: 1468px) {
  .president-message-container .president-msg article {
    font-size: 18px;
  }
}
@media (max-width: 986px) {
  .president-message-container .president-msg {
    margin-top: 0rem;
  }
  .president-message-container .president-msg span {
    font-size: 14px;
    padding: 0.3rem 1.5rem;
  }
  .president-message-container .president-msg h4 {
    margin-top: 1rem;
    font-size: 20px;
  }
  .president-message-container .president-msg article {
    font-size: 14px;
    line-height: 38px;
  }
  .president-message-container .president-msg button {
    height: 49px;
    max-width: 160px;
  }
}

.event-container {
  background: #11010d;
  display: flex;
  flex-direction: column;
  padding: 120px 50px;
}
@media (max-width: 1468px) {
  .event-container {
    padding: 120px 50px;
  }
}
@media (max-width: 986px) {
  .event-container {
    padding: 120px 1rem;
  }
}
.event-container .header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-container .header span {
  font-size: 18px;
  font-weight: 500;
  color: #ba8d4a;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 2rem;
}
.event-container .header h3 {
  flex-basis: 15%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-size: 32px;
  text-align: left;
  color: #fff;
  max-width: 900px;
  margin-top: 2rem;
}
.event-container .header .line {
  flex-basis: 85%;
  max-width: 100%;
  height: 1px;
  background: #ba8d4a;
  margin: auto 0;
}
@media (max-width: 986px) {
  .event-container .header {
    align-items: center;
    text-align: center;
  }
  .event-container .header span {
    font-size: 16px;
    padding: 0.3rem 2rem;
  }
  .event-container .header h3 {
    text-align: center;
    font-size: 24px;
    margin-top: 1rem;
  }
}
.event-container .main {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .event-container .main {
    margin-top: 4rem;
  }
}
.event-container .main .events-container {
  display: flex;
  justify-content: space-between;
}
.event-container .main .events-container .events {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media (max-width: 768px) {
  .event-container .main .events-container .events {
    flex-direction: column;
    row-gap: 2rem;
    width: 100%;
  }
}
.event-container .main .events-container .events .event {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 4rem;
  border-radius: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
}
.event-container .main .events-container .events .event span {
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  color: #f3f3f3;
  font-weight: 400;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 2rem;
  text-align: center;
}
.event-container .main .events-container .events .event h6 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-top: 2rem;
}
.event-container .main .events-container .events .event button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  height: 56px;
  background: transparent;
  background: #ba8d4a;
  color: #fff;
  width: 100%;
  max-width: 250px;
  border-radius: 5px;
  padding: 0 1rem;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 768px) {
  .event-container .main .events-container .events .event {
    padding: 2rem 1rem;
    border-radius: 5px;
    width: 100%;
  }
  .event-container .main .events-container .events .event span {
    width: -moz-max-content;
    width: max-content;
    font-size: 14px;
    padding: 0.4rem 2rem;
    text-align: center;
  }
  .event-container .main .events-container .events .event h6 {
    font-size: 20px;
  }
  .event-container .main .events-container .events .event button {
    height: 49px;
    margin-top: 2rem;
    font-size: 16px;
  }
}
.event-container .main .note {
  display: flex;
  margin: 0 auto;
  margin-top: 3rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
}
.event-container .main .note span {
  display: flex;
  gap: 1rem;
}
.event-container .main .note span p {
  align-items: center;
  color: #fff;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .event-container .main .note {
    padding: 1rem 1rem;
    gap: 1px;
    margin-top: 2rem;
  }
  .event-container .main .note span {
    flex-direction: column;
  }
  .event-container .main .note span img {
    width: 24px;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
  }
  .event-container .main .note span p {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
  }
}
.event-container .location {
  width: 100%;
  margin-top: 4rem;
}
.event-container .location iframe {
  width: 100%;
  min-height: 800px;
  border-radius: 8px;
  border: none;
}
@media (max-width: 968px) {
  .event-container .location {
    margin-top: 2rem;
  }
  .event-container .location iframe {
    min-height: 550px;
  }
}

.map-container {
  display: flex;
  display: flex;
  flex-direction: column;
  padding: 120px 50px;
}
@media (max-width: 1468px) {
  .map-container {
    padding: 100px 50px;
  }
}
@media (max-width: 986px) {
  .map-container {
    padding: 100px 1rem;
  }
}
.map-container .header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-container .header span {
  font-size: 18px;
  font-weight: 500;
  color: #ba8d4a;
  border-radius: 42px;
  border: 1px solid rgba(148, 64, 115, 0.3);
  padding: 0.5rem 2rem;
}
.map-container .header h3 {
  margin-top: 2rem;
  font-size: 32px;
  text-align: center;
  color: #1a1a1a;
  max-width: 900px;
  line-height: 170%;
}
@media (max-width: 986px) {
  .map-container .header {
    align-items: center;
    text-align: center;
  }
  .map-container .header span {
    font-size: 16px;
    padding: 0.3rem 2rem;
  }
  .map-container .header h3 {
    text-align: center;
    font-size: 24px;
    margin-top: 1rem;
  }
}
.map-container .location {
  width: 100%;
  margin-top: 4rem;
}
.map-container .location iframe {
  width: 100%;
  min-height: 800px;
  border-radius: 8px;
  border: none;
}
@media (max-width: 968px) {
  .map-container .location {
    margin-top: 2rem;
  }
  .map-container .location iframe {
    min-height: 550px;
  }
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 0 120px;
  background: #000;
  color: #fff;
  position: relative;
}
@media (max-width: 1468px) {
  .footer-container {
    padding: 0 50px;
  }
}
@media (max-width: 986px) {
  .footer-container {
    padding: 0 1rem;
  }
}
.footer-container .footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
.footer-container .footer h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.footer-container .footer #tttt {
  margin-top: 1rem;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: #f3f3f3;
}
.footer-container .footer .footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 500px;
}
.footer-container .footer .footer-cta button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  border-radius: 5px;
  padding: 0 1rem;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.footer-container .footer .footer-cta button:hover {
  transform: scale(0.92);
  transition: all 0.4s ease-in-out;
}
.footer-container .footer .footer-cta #locate {
  background: #ba8d4a;
  color: #fff;
  max-width: 170px;
}
.footer-container .footer .footer-cta #watch {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5450980392);
  gap: 1rem;
  max-width: 200px;
  align-items: center;
  display: flex;
  color: #fff;
}
@media (max-width: 986px) {
  .footer-container .footer h3 {
    text-align: center;
    font-size: 22px;
    line-height: 160%;
  }
  .footer-container .footer #tttt {
    text-align: center;
    font-size: 14px;
    line-height: 170%;
    margin-top: 1rem;
  }
  .footer-container .footer .footer-cta {
    margin-top: 2rem;
  }
  .footer-container .footer .footer-cta button {
    width: 100%;
    height: 49px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    font-size: 16px;
    font-weight: 400;
  }
  .footer-container .footer .footer-cta #locate {
    flex-basis: 45%;
  }
  .footer-container .footer .footer-cta #watch {
    flex-basis: 55%;
  }
}
.footer-container .sm-container {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.231372549);
}
.footer-container .sm-container .social-media {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 986px) {
  .footer-container .sm-container {
    padding: 1rem;
  }
  .footer-container .sm-container small {
    font-size: 12px;
  }
  .footer-container .sm-container .social-media img {
    height: 16px;
  }
}/*# sourceMappingURL=style.css.map */