@import url("https://fonts.googleapis.com/css2?family=Cookie&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap");

@font-face {
  font-family: "Futura Bk BT";
  src: url("../fonts/futura/FuturaPTBold.otf") format("opentype");
}

@font-face {
  font-family: "FuturaNormal";
  src: url("../fonts/futura/FuturaPTBook.otf") format("opentype");
}

@font-face {
  font-family: "Futura Lt BT";
  src: url("../fonts/futura/FuturaPTLight.otf") format("opentype");
}

@font-face {
  font-family: "Futura Md BT";
  src: url("../fonts/futura/FuturaPTMedium.otf") format("opentype");
}

body {
  /* font-family: "Futura Md BT", sans-serif; */
}

ul {
  padding: 0px !important;
  margin-right: 0px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0rem !important;
}

.flt {
  float: left;
  width: 100%;
}

.filler {
  flex-grow: 1;
}

/* header container */
.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: #ffffff;
  position: relative;
  z-index: 100;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.header_top_left,
.header_top_right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top_list_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out;
  padding: 5px;
  border-radius: 8px;
}

.top_list_cont:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.top_list_cont .img_name a {
  font-family: FuturaNormal;
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.1px;
  color: #6c7789;
  text-decoration: none;
}

.top_list_cont img {
  max-width: 26px;
  height: auto;
}

.top_list_cont button a {
  font-family: FuturaNormal;
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: 0.5px;
  color: #7b4b00;
  text-decoration: none;
}

.top_list_cont button {
  background: linear-gradient(270deg, #fff0d9 -85%, #eed6a6 98.17%);
  border: 1px solid #eed6a6;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top_list_cont button:hover {
  background: linear-gradient(270deg, #f1dfb8 -85%, #ffffff 98.17%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.header_top_middle img {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.05));
}

.header-btn-container {
  box-shadow: none !important;
}

.header_btm {
  border-top: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  background-color: #fcfcfc;
  z-index: 90;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.header_btm ul {
  display: flex;
  align-items: center;
  gap: 70px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header_btm ul li a {
  font-family: FuturaNormal;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #222;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.header_btm ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #9b6703;
  transition: width 0.3s ease;
}

.header_btm ul li a:hover {
  color: #9b6703;
}

.header_btm ul li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  margin-left: 20px;
}

.mobile-menu-toggle img {
  width: 32px;
  height: auto;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover img {
  transform: scale(1.1);
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  background-color: #f8f8f8;
  overflow-x: hidden;
  transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  padding-top: 20px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  text-decoration: none;
  color: #333;
  transition: 0.3s ease-in-out;
  font-weight: 200;
  line-height: 1;
}

.sidenav .closebtn:hover {
  color: #9b6703;
  transform: rotate(90deg);
}

.sidenav-logo-container {
  text-align: center;
  padding: 5px;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}

.sidenav-logo {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.05));
}

.sidenav-section-title {
  font-family: Futura Md BT;
  font-weight: 600;
  font-size: 14px;
  color: #9b6703;
  padding: 0 25px 10px;
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  box-sizing: border-box;
}

.sidenav-account-links {
}

.sidenav-account-links,
.sidenav-main-links,
.sidenav-top-left-links {
  list-style: none;
  padding: 15px 25px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.sidenav-account-links,
.sidenav-top-left-links {
  background-color: #f5f5f5;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  margin-bottom: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sidenav-main-links {
  background-color: #ffffff;
}

.sidenav-account-links {
  display: flex;
  align-items: center;
}

.sidenav-account-links li {
  width: 25%;
}

/* .sidenav-account-links li,
.sidenav-main-links li,
.sidenav-top-left-links li {
  margin-bottom: 15px;
} */

.sidenav-account-links li:last-child,
.sidenav-main-links li:last-child,
.sidenav-top_list_cont li:last-child {
  margin-bottom: 0;
}

.sidenav-main-links li a {
  padding: 15px 30px;
  text-align: center;
  font-family: "FuturaNormal";
  font-size: 13px;
  font-weight: 500;
  color: #040404;
  letter-spacing: 0;
  line-height: 17px;
  text-decoration: none;
  background-color: initial;
  border: none;
  text-transform: uppercase;
  width: auto;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #f7f6fa;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mbl_view .sidenav-account-links li a {
  background: white;
}

.sidenav-account-links li a,
.sidenav-top-left-links li a {
  font-family: "FuturaNormal";
  font-size: 12px;
  font-weight: 500;
  color: #4f4f4f !important;
  letter-spacing: 0;
  text-decoration: none;
  /* float: left; */
  width: 100%;
  background: #f3f3f3;
  border: 1px solid #fff;
  padding: 15px 0;
  min-height: 75px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mbl_view button {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  border: none;
  padding: 15px 0;
  background-color: #000;
  font-family: "FuturaNormal";
  width: 100%;
}

.mbl_view button a {
  text-decoration: none;
  color: #fff;
  font-family: "FuturaNormal";
}

.sidenav-account-links li a span,
.sidenav-top-left-links li a span {
  flex-grow: 1;
}

.sidenav-account-links li a img,
.sidenav-top-left-links li a img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.sidenav-main-links li a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidenav-account-links li button {
  width: 100%;
  border-radius: 8px;
  height: 50px;
  font-size: 16px;
  background: linear-gradient(270deg, #fff0d9 -85%, #eed6a6 98.17%);
  border: 1px solid #eed6a6;
  color: #7b4b00;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sidenav-account-links li button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.sidenav-separator {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 10px 25px 25px;
  width: calc(100% - 50px);
}

/* main content */

.main_container {
  padding: 20px 0px 50px 0px;
}

.top_text1 {
  color: #6b7280;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.top_text2 {
  color: #111827;
  font-family: GFS Didot;
  font-size: 35px;
  font-weight: 400;
}

.top_text3 {
  color: #111827;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 15px;
}

.post_container {
  display: flex;
  gap: 20px;
}

.post_points {
  border: 1px solid #cee0ff;
  padding: 20px 15px 15px 0px;
  border-radius: 6px;
  width: 100%;
}

.post_points ol li::marker {
  color: #40407a;
  font-size: 14px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  margin-right: 10px;
}

.post_points ol li {
  color: #374151;
  font-family: "Futura Lt BT";
  font-size: 17px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 18px;
  padding-left: 12px;
}

.post_points ol li a {
  color: rgb(13, 167, 249) !important;
  text-decoration: underline !important;
  cursor: pointer;
}

.post_points ol li:last-child {
  margin-bottom: 0;
}

.post_points ol li::before {
  content: counter(item, decimal-leading-zero) " ";
  position: absolute;
  left: -30px;
  color: #40407a;
  font-size: 14px;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

/* footer container */

.footer_txt1 {
  text-align: center;
  color: #101828;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}

.footer_txt2 {
  text-align: center;
  color: #0a0a0a;
  font-family: Merriweather;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  position: relative;
  padding-top: 16px;
  margin-bottom: 20px;
}

.footer_txt2::before {
  content: "";
  display: block;
  width: 40%;
  height: 1.6px;
  background-color: #d1d5dc;
  margin: 0 auto 30px; /* ← this centers it */
}

.footer_txt3 {
  text-align: center;
  color: #364153;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 50px;
}

.footer_txt4 {
  text-align: center;
  color: #4a5565;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 15px;
}

.footer_btm {
  background: #fffcf6;
  border: 1px solid transparent;
  border-image: linear-gradient(180deg, #d69908 0%, #ffe096 100%) 1 stretch;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  text-align: center;
}

.footer_btm p {
  margin: 0;
  font-family: Futura Md BT;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #311200;
}
@media (max-width: 768px) {
  .main_container {
    padding: 0px 0px;
  }
  .post_container {
    display: block;
  }

  .post_img {
    margin-bottom: 15px;
  }

  .post_img img {
    width: 100%;
  }

  .top_text1 {
    font-size: 14px !important;
    margin-bottom: 15px !important;
    margin-top: 25px !important;
  }

  .top_text2 {
    font-size: 26px !important;
    line-height: 28px !important;
    margin-bottom: 15px !important;
  }
  .top_text3 {
    font-size: 16px !important;
  }

  .post_points ol li {
    font-size: 16px !important  ;
  }

  .footer_txt1 {
    font-size: 15px !important;
    line-height: 22px !important;
    margin-bottom: 12px !important;
  }

  .footer_txt2::before {
    width: 90% !important;
    margin: 0 auto 15px !important;
  }

  .footer_txt2 {
    font-size: 20px !important;
    margin-bottom: 5px !important;
  }

  .footer_txt3 {
    font-size: 16px !important;
    margin-bottom: 26px !important;
  }

  .footer_txt4 {
    font-size: 12px !important;
    margin-bottom: 7px !important;
  }
}
