/* roots */

:root {
  --color-ground: #ffffff;
  --color-brand: #087140;
  --color-brand2: #00b900;
  --color-brand3: #d9e8bf;
  --color-ink: #0d3d20;
  --color-ink-right: #62a683;
  --font-serif: "Noto Sans JP", sans-serif;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max-width: min(1100px, 88vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--color-ink);
  background-color: var(--color-ground);
  line-height: 1.65;
  font-size: clamp(15px, 3vw, 18px);
}

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

h1 {
  font-weight: 100;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 3px;
}

h2,
h3 {
  font-weight: 350;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 3px;
}

p {
  margin: 0 0 1.15rem;
}

.container {
  padding: clamp(1rem, 4vw, 1.5rem);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.heading {
  margin-top: 5rem;
  margin-bottom: 5rem;
}


.line {
  letter-spacing: -3px;
  color: var(--color-ink-right);
  font-weight: 1000;
  font-size: clamp(12px, 2vw, 18px);
  line-height: 2px;
}


.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-ink-right);
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  line-height: 0.5px;
}

.ghost {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 1.1rem;
  color: var(--color-ink);
  border-left: 10px solid var(--color-ink-right);
  padding: 0.5rem 2.5rem 0.5rem 1.5rem;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ghost:hover {
  transform: translateY(-3px);
  background: var(--color-brand);
  color: #ffffff;
}

.log{
  display: flex;
  gap: 1rem;
  font-size: clamp(13px, 3vw, 16px);
}

.log a:hover{
  color: #838383;
  
}


/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ebf0ecf4;
  overflow: visible;
  backdrop-filter: blur(1px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 265px;
  width: 5px;
  height: 100%;
  background-color: #ffffff;
  transform: skew(-20deg);
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  transform: skew(-20deg);
  z-index: -2;
}

.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 1.5rem;
}


/* ===============================
   LOGO
================================= */

.logo img {
  display: block;
  height: auto;
  width: clamp(0px, 35vw, 160px);
}

/* ===============================
   NAV (PC BASE)
================================= */

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.menu-item {
  display: block; /* PCではflexにしない */
}

.site-nav a {
  text-decoration: none;
  color: var(--color-ink);
  position: relative;
  display: inline-block;
  padding: 0.3rem 0;
}

/* アンダーラインアニメ */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--color-brand2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a.nav-cta {
  display: inline-block;
  color: var(--color-brand);
  padding: 0.6rem 1.2rem; 
  margin-left: 1.5rem;
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a.nav-cta:hover {
  background: rgb(255, 147, 70);
  border: 1px solid rgb(255, 147, 70);
  color: var(--color-ground);
}

/* 下線完全無効化 */
.site-nav a.nav-cta::after {
  content: none !important;
}

/* ===============================
   SUB MENU (PC)
================================= */

.sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;

  z-index: 1000;
}

.sub-menu li + li {
  margin-top: 0.5rem;
}

.sub-menu a {
  display: block;
  color: var(--color-ink);
}

.sub-menu a:hover {
  color: var(--color-ink-right);
}

.sub-menu a::after {
  content: none;
}

.sub-menu a:hover::after {
  content: none;
}

/* PCのみhover有効 */
@media (min-width: 769px) {

  .nav-item.has-sub:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

}

/* ===============================
   TOGGLE BUTTON (PCでは非表示)
================================= */

.submenu-toggle {
  display: none;
}

.nav-toggle {
  display: none;
}

/* ===============================
   MOBILE
================================= */


@media (max-width: 768px) {
  
  .nav-cta {
    width: 100%;
    text-align: center;
  }

    /* ハンバーガー表示 */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-toggle-line {
    width: 22px;
    height: 2px;
    background: var(--color-brand);
    transition: .3s;
  }

  
.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

  /* モバイルナビ全体 */
  .site-nav {
    font-size: larger;
    position: fixed;
    top: clamp(0px, 14vw, 64px);
    left: 0;
    right: 0;
    background: #ebf0ecf4;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .5s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .sub-menu a::after {
  content: none;
}

.sub-menu a:hover::after {
  content: none;
}

  /* メニュー行をflex化 */
  .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* ＋ボタン */
  .submenu-toggle {
    display: inline-block;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .submenu-toggle::before {
    content: "+";
  }

  .nav-item.has-sub.open .submenu-toggle::before {
    content: "−";
  }

  /* サブメニューを通常フローに戻す */
  .sub-menu {
    font-size: smaller;
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    padding-left: 2rem;
    background: #ebf0ecf4;
    border: none;
    box-shadow: none;
    transition: max-height .6s ease;
  }

  .nav-item.has-sub.open > .sub-menu {
    max-height: 150px;
  }

  body[data-nav-open="true"] {
    overflow: hidden;
  }

}


/* footer */


.site-footer {
  background: #30543f;
  color: #ffffff;
  padding: 3.5rem;
}

.footer-container {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-container h3{
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--color-brand);
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0px 4px 15px rgba(27, 15, 10, 0.439);
}

.back-to-top[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


.back-to-top[data-visible="true"]:hover {
  transform: translateY(-5px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

/* main */

.top-heading {
  text-align: center;
  padding-top: 2rem;
  background: radial-gradient(circle at top left, #49de98, transparent 30%);
  min-height: 20vh;
}

.subtitle {
  border-left: 4px solid var(--color-ink-right);
  padding-left: 1rem;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.card {
  padding: 2rem;
  margin: 0 auto;
}

.card .photo {
  height: 25vw;
  width: 30vw;
  border-radius: 10px;
  border: 1px solid #a4a4a4;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  margin-bottom: 10px;
}

.card .caption {
  font-family: var(--font-sans);
  text-align: center;
}


.section-pad{
  padding-top: 4rem ;
  padding-bottom:4rem;
  padding-left: 8vw;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: center;
  height:60vh;
}

.message-container{
  padding-top: 4rem ;
  padding-bottom:4rem;
  padding-left: 8vw;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  align-items: center;
}

.message-container-text{
  padding-right: 2rem;
}

.information-image {
  background-image: url("images/img_hashimotodai.png");
  background-size: cover;
  background-position: center;
  height: 100%;
}




.facility-image {
  background-image: url("images/img_waste2.png");
  background-size: cover;
  background-position: center;
  height: 100%;
}

.environment-image {
  background-image: url("images/img_facility.png");
  background-size: cover;
  background-position: center;
  height: 100%;
}

.employment-image {
  background-image: url("images/img_company.png");
  background-size: cover;
  background-position: center;
  height: 100%;
}

.industrial-image{
  background-image: url("images/img_waste.png");
  background-size: cover;
  background-position: center;
  height: 100%;
}

.general-image{
  background-image: url("images/img_waste2.png");
  background-size: cover;
  background-position: center;
  height: 100%;
}

.recycle-image{
  background-image: url("images/img_recycle.png");
  background-size: cover;
  background-position: center;
  height: 100%;
}

.message-container-image img{
  width: 30vw;
  height: auto;
}

@media (max-width: 960px) {
  .section-pad {
    margin-bottom: 5rem;
    grid-template-columns: 1fr; 
  }

  .message-container {
    margin-bottom: 5rem;
    grid-template-columns: 1fr; 
  }

  .message-container-image{
    padding-left: 9vw;
  }

  .message-container-image img{
    width: 65vw;
    height: auto;
  }

  .industrial-image
  ,.general-image
  ,.recycle-image
  ,.information-image
  ,.facility-image
  ,.environment-image{
    order: 1; 
    height: 30vh;
  }
}




.contact-banner {
  margin-top: 8rem;
  background: radial-gradient(circle at right, #d2e9cbf5, transparent 40%);
  border-radius: 8px;
  border: 3px #00b900;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e6efe6;
  box-shadow: 0 6px 18px rgba(35, 70, 40, 0.182);
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--stripe);
  opacity: 0.6;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.contact-inner h3 {
  margin: 0;
  color: #137b2b;
  text-align: left;
  font-weight: bold;
  font-family: var(--font-sans);
  letter-spacing: 1px;
}

.contact-inner p {
  margin: 0;
  color: #137b2b;
  text-align: center;
  font-family: var(--font-sans);
  max-width: 780px;
  text-align: center;
}

.contact-btn {
  color: #ffffff;
  margin-top: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  background: #2f875c;
  border: 3px solid #ffffff;
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

/* Flow diagram */
.flow {
  margin: 36px 0;
}

.flow .steps {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.step {
  width: clamp(0px,25vw,130px);
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
}

.step .icon {
  height: 80px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon img{
  height: auto;
  width: clamp(0px,20vw,100px);
}

.step p {
  margin: 0;
  font-size: clamp(0px,3vw,14px);
  color: #333;
}

.flow .arrow {
  font-size: 15px;
  color: #bbb;
  align-self: center;
}

.feature-row .sdgs img{
  width: 14rem;
  height: auto;
}

/* service area */
.service-area {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.maps {
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}

.maps li {
  list-style: none;
}

.map_industrial {
  background: #fff;
  height: 260px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}

.maps img{
  height: auto;
  width: clamp(0px, 80vw, 500px);
}

.map_general {
  background: #fff;
  margin-bottom: 3rem;
  height: 260px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}


.areas {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 12px;
  border-radius: 8px;
  height: 260px;
  overflow: auto;
}

.areas ul {
  margin: 0;
  padding-left: 18px;
  color: #444;
}

.areas li {
  margin: 6px 0;
}

/* two-column features list */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.feature-row {
  display: flex;
  margin: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.feature-row .text {
  flex: 1 1 320px;
  padding: 12px;
}



strong {
  display: block;
  border-left: 4px solid #1f5d3e;
  padding: 10px;
  font-size: clamp(15px,5vw,20px);
  font-weight: 500;
}


.feature-row  p {
  padding-top: 15px;
  padding-left: 15px;
}

.feature-row img {
  padding-top: 1rem;
  width: 30vw;
  height: auto;
  border-radius: 8px;
  position: relative;
}

.detail{
  text-align: center;
}


.detail-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s ease;
}

.detail-btn:hover {
  transform: translateY(-5px);
}



/* icons row (customers) */
.customers {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2vw;
  row-gap: 50px;
  align-items: center;
}

.cust-item {
  display: flex;
  align-items: center;
  padding: 8px;
  color: #333;
}

.cust-item img {
  width: clamp(0px,18vw,130px);
  height: clamp(0px,18vw,130px);
}

.cust-item p {
  margin: 0;
  white-space: nowrap;
}

/* garbage icons row */
.garbage-types {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.g-type {
  width: clamp(0px,25vw,130px);
  height: clamp(0px,25vw,130px);
  background: #fff;
  border: 1px solid #e6e6e6;
  padding-top: 14px;
  margin-right: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
}

.g-type img {
  width: clamp(0px,15vw,70px);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* table */
table {
  overflow-x: auto;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  line-height: 1.7;
  margin-bottom: 5rem;
}

tbody tr:hover {
  background: #c2f1d13f;
}

@media (max-width: 768px) {
  th,
  td {
    padding: 0.5rem 0.4rem;
  }
}

/* licence_tables  */

.table_wrap{
  width: 100%;
}

@media (max-width: 768px){

  .table_wrap{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .licence_table{
    min-width: 600px;
  }

  .handling_tables{
    min-width: 600px;
  }

}
.licence_tables th {
  background: #f3f7f4;
  color: #21412e;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid #9fb9a8;
  text-align: center;
  white-space: nowrap;
}

.licence_tables th:first-child {
  width: 8rem;
}

.pdf-button {
  color: #ffffff;
  padding: 5px 18px;
  border-radius: 8px;
  background: #2f875c;
  border: 3px solid #ffffff;
  font-size: 16px;
  cursor: pointer;
}


.licence_tables td {
  padding: 0.6rem 0.5rem;
  border-right: 1px solid #e3ebe6;
  border-left: 1px solid #e3ebe6;
  vertical-align: top;
  white-space: nowrap;
}

.licence_tables td:nth-child(1),
.licence_tables td:nth-child(2),
.licence_tables td:nth-child(3) {
  width: 10rem;
}

.licence_tables td:first-child:not(:empty) {
  font-weight: 600;
  color: #1e3d2b;
}

.licence_tables td:nth-child(4) {
  letter-spacing: 2px;
}

.licence_tables tr:nth-child(16),
.licence_tables tr:nth-child(18),
.licence_tables tr:nth-child(24) {
  border-bottom: 2px solid #9fb9a8;
}

/* handling_tables  */

.handling_tables th {
  background: #f3f7f4;
  color: #21412e;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid #9fb9a8;
  text-align: center;
  white-space: nowrap;
}

.handling_tables th:first-child {
  width: 8rem;
}

.handling_tables td:nth-child(1),
.handling_tables td:nth-child(2) {
  width: 10rem;
}

.handling_tables td {
  padding: 0.6rem 0.5rem;
  border-right: 1px solid #e3ebe6;
  border-left: 1px solid #e3ebe6;
  vertical-align: top;
  white-space: nowrap;
}

.handling_tables td:first-child:not(:empty) {
  font-weight: 600;
  color: #1e3d2b;
}

.handling_tables tr:nth-child(20),
.handling_tables tr:nth-child(24) {
  border-bottom: 2px solid #9fb9a8;
}

.handling_tables tr:nth-child(14) {
  border-bottom: 1px solid #9fb9a8;
}

/* profile_tables  */

.profile_tables th {
  background: #f3f7f4;
  color: #21412e;
  font-weight: 600;
  padding: 1rem;
  border-bottom: 2px solid #9fb9a8;
  text-align: center;
  white-space: nowrap;
}

.profile_tables td {
  padding: 1rem 2rem;
  vertical-align: center;
  text-align: left;
}

.profile_tables tr {
  border-bottom: 2px solid #9fb9a8;
  border-top: 2px solid #9fb9a8;
}

/* facility_tables  */

.facility_tables th {
  background-color:#f8fbf9;
  text-align: center;
  white-space: nowrap;
  border-left: 1px solid #9fb9a8;

}

.facility_tables td {
  padding: 1rem 2rem;
  vertical-align: center;
  text-align: left;
  border-left: 1px solid #9fb9a8;
  border-right: 1px solid #9fb9a8;
}

.facility_tables td:last-child {
  white-space: nowrap;
}



/* maps */

.locations{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

iframe {
  width: 25vw;
  height: 25vw;
}

.location-img{
  display: flex;
  gap: 3rem;
  align-items: center;
}

.location-img img{
  height:25vw;
  width: auto;
  align-items: center;
}

.forms {
  height: 1810px;
  width: 100%;
  margin-top: 4rem;
  border: 0;
}

.forms-employment {
  height: 79rem;
  width: 100%;
  margin-top: 4rem;
  border: 0;
}

.quotation {
  height: 2100px;
  width: 100%;
  margin-top: 4rem;
  border: 0;
}

.news-list {
  width: 100%;
  list-style: none;
  margin-top: 3rem;
  padding: 0;
  background-color: #fff;
}

.news-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  border-bottom: 1px dotted #ccc;
}

.news-date {
  color: #888;
  font-size: 0.95rem;
  min-width: 6rem;
}

.news-tag {
  background-color: #abe6ca;
  color: #333;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .news-list li {
    display: block; 
  }

  .news-date,
  .news-tag {
    display: inline-block; 
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .news-list a {
    display: block;
    margin-top: 0.3rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .card-grid {
    grid-template-columns: 1fr;
  }

  .customers {
    grid-template-columns: repeat(2, 1fr);
  }

  .maps {
    grid-template-columns: 1fr;
  }

  .section-pad {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  iframe {
    width: 80vw;
    height: 80vw;
  }

  .location-img{
    flex-direction: column;
  }

  .locations img{
    width: 80vw;
    height: auto;
  }

  .card .photo,
  .feature-row img {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .feature-row .sdgs img{
    width: 50vw;
    height: auto;
    margin-left: 10vw;
  }

}




.second-container{
  width: 70%;
  max-width: var(--max-width);
  padding: 0 1.5rem;
}

.second-container h1{
    text-shadow: 2px 2px 4px #ffffff86;
}

.second-container p{
    padding: 10px;
    line-height: 2.5rem;
    text-shadow: 2px 2px 4px #ffffff86;
}
