:root {
  --evee-green: #6aab62;
  --evee-green-light: #93d097;
  --luxe-gray: #323232;
  --electric-white: #ebebeb;
  --black: #000000;
  --white-ish: #f6f6f6;
  --header: "prometo", sans-serif;
  --paragraph: "futura-pt", sans-serif;
  --accent: "prometo", sans-serif;
}

* {
  font-family: var(--paragraph);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
}

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

html {
  scroll-behavior: smooth;
}

html, 
body {
  overflow-x: hidden !important;
  padding: 0rem !important;
  margin: 0rem !important;
}

body {
  background-color: var(--white-ish);
}

body.no-scroll {
  overflow: hidden; 
  height: 100vh;
}

a:hover, 
a:hover * {
  cursor: pointer !important;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

h1, h2 {
  font-family: var(--header);
  font-weight: 500;
}

h1, .h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

h2 {
  font-size: 28px;
}

section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
  font-weight: 100;
  margin-bottom: 15px;
}

p {
  font-family: var(--body);
  padding-bottom: 20px;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.container-larger {
  max-width: 1300px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1;
}

.v-center {
  align-items: center;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.g-50 {
  gap: 50px !important;
}

.g-25 {
  gap: 25px !important;
}

.relative {
  position: relative;
}


.btn {
  padding: 12px 30px;
  font-family: var(--header);
  background: var(--evee-green-light);
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-flex;
  font-size: 15px;
  transition: all 0.2s;
}

.btn .bi::before {
  font-size: 12px;
  font-weight: 800 !important;
  margin-left: -8px;
}

.btn:hover {
  background: var(--evee-green);
  color: var(--white-ish);
}

.btn:hover .bi::before {
  color: var(--evee-green-light);
}

.btn i {
  margin-left: 15px;
}

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

.g-border {
  height: 15px;
  width: 100%;
  background: var(--evee-green);
  background: linear-gradient(-45deg, var(--evee-green), var(--evee-green-light), var(--evee-green), var(--evee-green-light));
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.nav-container {
  padding-top: 50px;
  padding-bottom: 25px;
}

.logo-container {
  flex: .25;
}

.logo-container img {
  width: 175px;
}

header .container {
  padding-top: 25px;
}

nav {
  background-color: var(--electric-white);
}

nav ul {
  display: flex;
  justify-content: end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 50px;
}

nav ul a {
  font-family: var(--header);
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.2s;
}

nav ul a:hover {
  color: var(--evee-green);
}

video {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 15px;
}


.header-01 {
  background-image: url('../assets/images/1-home/bg-1.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-bottom: 25px;
}

.header-01 .row {
  gap: 25px;
}

header .content {
  padding: 25px 30px;
}

.header-01 p span {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  background: #d8d8d8;
  padding: 2px 4px;
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 15px;
}

.s-01 {
  padding: 50px 0;
  background-image: url('../assets/images/1-home/BG-dots.svg');
  background-size: contain;
  background-attachment: fixed;
}

.s-01 .box {
  background-image: url('../assets/images/1-home/bg-2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 75px;
}

.s-01 .col:first-child {
  flex: .4;
}

.s-01 .box img {
  width: 65%;
  padding: 15px;
}

.s-01 .row {
  padding-bottom: 75px;
}

.s-02 {
  margin-top: -175px;
}

.s-02 .container {
  padding-right: 100px;
}

.s-02 .row {
  padding: 0 0 50px 0;
}

.s-02 img {
  border-radius: 15px;
  width: 300px;
  margin: 0 10px;
}

.s-03 {
  padding: 50px 0;
}

.s-03 .col:nth-child(2) {
  flex: 2.5;
}

.s-03 .content {
  position: absolute;
  width: 750px;
  bottom: 50px;
}

.s-03 h2 {
  width: 550px;
}

.s-04 {
  padding: 75px 0;
}

.grass {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
}

.ig-placeholder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
  padding-top: 25px;
}

.s-05 {
  padding: 50px 0 75px 0;
  background: 
    url('../assets/images/1-home/BG-dots.svg'), 
    linear-gradient(0deg, rgb(221 221 221) 8%, rgba(246, 246, 246, 1) 100%);
  background-size: contain; 
  background-position: center; 
}

.s-05 .box {
  background-color: white;
  border: 1px solid;
  border-radius: 15px;
  padding: 75px 25px 25px 25px;
  overflow: hidden;
}

.s-05 .box .element {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  padding: 15px;
}

.latest-posts {
  position: relative;
  gap: 25px;
  padding-top: 25px;
}

.latest-post {
  background-color: var(--electric-white);
  border-radius: 15px;
}

.latest-post img {
  border-radius: 15px;
  width: 100%;
}

.latest-post .content {
  padding: 25px;
}

.latest-post h3 {
  font-family: var(--header);
  font-size: 28px;
  font-weight: 500;
}

.btn-read-more {
  text-transform: uppercase;
  color: var(--black);
  font-family: var(--header);
  font-size: 15px;
  transition: all 0.3s;
}

.btn-read-more:hover {
  text-decoration: none;
  color: var(--evee-green);
}

footer {
  background: var(--luxe-gray);
  color: var(--white-ish);
  padding: 65px 0;
}

footer img {
  width: 200px;
}

footer .col:first-child {
  flex: .35;
}

footer .content p {
  padding: 0;
  font-size: 12px;
}

footer .row {
  width: 1000px;
  max-width: 100%;
  margin: auto;
}

footer .bottom {
  margin-top: 25px;
  border-top: 1px solid gray;
  padding-top: 25px;
  text-align: center;
}

footer .bottom p {
  font-size: 15px;
}

footer .bottom ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 50px;
}

footer .bottom ul a {
  color: var(--white-ish);
  font-size: 15px;
  transition: all 0.3s;
}

footer .bottom ul a:hover {
  color: var(--evee-green-light);
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu-btn > * {
  transition: all 0.3s;
}

.mobile-menu-btn:hover > * {
  cursor: pointer;
  color: var(--evee-green);
}

.mobile-menu {
  padding: 0 20px 20px 20px;
  position: absolute;
  width: 100%;
  height: 85vh;
  z-index: 10;
  display: none;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  border: 1px solid var(--luxe-gray);
  border-radius: 15px;
  padding: 25px;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: var(--white-ish);
}

.mobile-menu a {
  font-size: 21px;
  color: var(--luxe-gray);
  font-weight: 500;
  text-decoration: none;
  font-family: var(--header);
}

.mobile-menu a:hover {
  border-bottom: 2px solid;
}

.mobile-menu-open {
  display: block;
}

.header-02 {
  background-color: var(--electric-white);
  background: linear-gradient(to bottom, var(--electric-white), white);
}

.header-02 .box {
  padding: 50px;
  background: linear-gradient(to bottom, var(--white-ish), transparent), url('../assets/images/2-about/Image 24.png');
  background-size: 125%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding-bottom: 0px;
}

.header-02 .row {
  gap: 25px;
}

.header-02 .box h2 {
  padding: 25px;
  margin-top: 50px;
}

.rounded {
  border-radius: 15px;
}

.s-10 {
  padding: 50px 0;
  background-image: url('../assets/images/1-home/BG-dots.svg');
  background-size: contain;
  background-attachment: fixed;
  background-color: white;
}

.s-10 .box {
  width: 90%;
  max-width: 100%;
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--white-ish);
}

.s-10 .row .col:nth-child(2) {
  flex: .35;
}

.s-10 .box .rounded {
  height: 100%;
  object-fit: cover;
}

.s-10 .box .content {
  padding: 50px;
}

.s-10 h2 {
  margin-bottom: 25px;
}

.s-11 {
  padding: 50px 0;
  background-color: white;
}

.s-11 img {
  width: 250px;
  max-width: 90%;
  margin-bottom: 15px;
}

.s-11 h3 {
  font-family: var(--header);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}

.s-11 h4 {
  text-transform: uppercase;
  opacity: .25;
  letter-spacing: 2px;
  font-size: 12px;
  font-family: var(--header);
}

.s-11 .row {
 padding: 25px 0;
 gap: 25px;
}

.s-11 .col {
  margin-bottom: 25px;
}

.header-03 {
  background-image: url('../assets/images/1-home/BG-dots.svg'), linear-gradient(to bottom, var(--electric-white), white);
  background-size: contain, cover; 
  padding-bottom: 100px;
}

.header-03 .box {
  padding: 50px;
  background-color: var(--black);
  background-image: url('../assets/images/3-charger/Group 162513.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white-ish);
  border-radius: 15px;
  padding-bottom: 0px;
  background-attachment: fixed;
}

.header-03 .text-box {
  position: absolute;
  width: 200px;
  font-size: 12px;
  margin-top: 25px;
}

.header-03 .row {
  gap: 25px; 
}

.chargers {
  padding-left: 25px;
}

.text-row {
  display: inline-flex;
  gap: 25px;
  margin-bottom: 10px;
}

.text-row div {
  flex: 1;
}

.text-row div:first-child {
  flex: .2;
}

.green-lines {
  position: absolute;
  right: 0;
  top: 0px;
  width: 45%;
}

.text-row h3 {
  font-family: var(--header);
  font-size: 26px;
  margin-bottom: 10px;
}

.arrow {
  width: auto;
  height: 75px;
  margin-bottom: -50px;
}

.accordions {
  margin-top: 25px;
  border-bottom: 1px solid gainsboro;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  border-top: 1px solid gainsboro;
  transition: all 0.2s;
}

.accordion-header div > * {
  cursor: pointer;
}

.accordion-header div {
  flex: 1;
  display: flex;
}

.accordion div:nth-child(2) {
  flex: .25;
  justify-content: right;
}

.accordion-header .bi {
  color: var(--luxe-gray);
  opacity: .5;
  font-size: 18px;
}

.accordion-title {
  text-transform: uppercase;
  padding: 0;
  margin: 0 15px;
  font-weight: 500;
  font-size: 14px;
}

.accordion-header img {
  height: 15px;
  width: 15px;
}

.accordion-content {
  padding: 10px;
}

.s-20 {
  margin-top: -15px;
  background: linear-gradient(to bottom, #fff 50%, var(--white-ish) 50%);
}

.s-20 .box {
  padding: 75px;
  background-image: linear-gradient(to bottom, var(--electric-white), white);
  background-size: 125%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
}

.s-20 .row {
  gap: 50px;
}

.main-thumb-img {
  border-radius: 15px;
}

.other-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5px;
}

.other-imgs img {
  width: 100%;
  border-radius: 15px;
}

.s-20 .logo {
  width: 150px;
  margin-bottom: 10px;
}

.s-21 {
  background-image: url('../assets/images/3-charger/Mask Group 15.png'), linear-gradient(to bottom, transparent, white);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0 50px 0;
}

.s-21 .row {
  gap: 50px;
  margin-top: -120px;
}

.s-21 .header {
  width: 350px;
  margin: auto;
}

.s-21 .content {
  padding: 25px;
}

.s-21 .col:nth-child(2) {
  margin-top: 150px;
}

.s-21 .header p {
  margin-top: 25px;
}

.s-22 {
  background-color: #fff;
  padding: 0 0 50px 0;
}

.s-22 .box {
  border: 1px solid;
  border-radius: 15px;
  overflow: hidden;
}

.s-22 .col {
  padding: 50px;
  padding-top: 75px;
}

.s-22 .col:nth-child(2) {
  background: var(--white-ish);
  border-radius: 15px;
}

.s-22 h2.header {
  position: absolute;
  top: 25px;
  text-transform: uppercase;
  opacity: .35;
  font-size: 16px;
}

.s-22 .row {
  align-items: flex-end;
}

.s-22 h2.h1 {
  font-family: var(--body);
  margin-bottom: 30px;
}

.s-22 .testimonial {
  display: flex;
  gap: 25px;
}

.s-22 .reviewer img {
  width: 250px;
  height: auto;
}

.s-22 .review h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 5px 0;
}

.s-22 .review img {
  width: 150px;
  margin-bottom: 15px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: .25;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-04 {
  color: var(--white-ish);
  background: var(--electric-white);
}

.header-04 .box {
  background: var(--black);
  border-radius: 15px;
}

.header-04 span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.header-04 .row {
  gap: 25px;
}

.header-04 .box h2 {
  padding: 25px;
  margin-top: 50px;
}

.header-04 .content .col:first-child {
  flex: 2.25;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 25px;
  padding-left: 25px;
  padding-bottom: 5px;
}

.header-04 h1 {
  margin: 0;
}

.tab-content {
  display: none;
  padding: 50px 25px 30px 25px;
  background: var(--electric-white);
}

.tab-content.active {
  display: block;
}

.tab-content .program .bi {
  color: var(--evee-green);
  position: absolute;
  margin-left: -30px;
  font-size: 14px;
  margin-top: 3px;
}

.tab-content .program-link {
  color: var(--black);
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  transition: all 0.2s;
}

.tab-content .program-link:hover {
  color: var(--evee-green);
  text-decoration: none;
}

.tab-content ul {
  list-style: none;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-content p {
  padding-bottom: 5px;
}

.tab-content .program {
  margin-bottom: 30px;
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}

.program-bottom {
  border-top: 1px solid gainsboro;
  padding-top: 25px;
  margin-top: 35px;
}

.program-bottom p {
  font-size: 14px;
  width: 90%;
  margin: auto;
}

.s-30 {
  padding: 50px 0;
  background: linear-gradient(to bottom, var(--electric-white), white);
}

.s-30 .box-02 {
  width: 65%;
  margin: auto;
  text-align: center;
}

.s-30 .box-03 {
  padding: 25px 0px;
}

.tab-container {
  border: 1px solid gainsboro;
  border-radius: 5px;
  width: 90%;
  margin: auto;
}

.tab-navigation {
  display: flex;
  overflow: hidden;
}

.tab-navigation > div {
  flex: 1;
}

.tab-navigation select {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border-color: gainsboro;
  padding: 0 25px;
  text-transform: uppercase;
  font-size: 26px;
  font-family: var(--header);
  letter-spacing: 1px;
  color: #c5c5c5;
  font-weight: 500;
  border-top-color: transparent;
  border-right-color: transparent;
}

.tab-navigation h3 {
  margin: 0;
  font-family: var(--header);
  font-size: 18px;
  text-align: center;
  opacity: .5;
}

.tab-navigation div:first-child {
  padding: 25px;
  flex: .35;
  background-color: var(--luxe-gray);
  color: var(--electric-white);
}


.s-06 {
  padding: 50px 0;
  background-image: url('../assets/images/1-home/BG-dots.svg');
  background-size: contain;
  background-attachment: fixed;
  background-color: white;
}

.s-06 .row {
  gap: 50px;
  align-items: flex-end;
}

.s-06 .box {
  background-image: url('../assets/images/1-home/bg-2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 50px 75px;
}

.s-06 .img-01 {
  width: 350px;
  position: relative;
  top: -85px;
  margin-bottom: -50px;
}

.s-06 .img-02 {
  width: 100px;
  position: absolute;
  right: -35px;
  top: -135px;
}

.s-06 .img-03 {
  max-width: 110%;
  position: relative;
  left: -25px;
}

.s-06 h2 {
  font-size: 44px;
}

.s-06 .text-box {
  position: absolute;
  width: 250px;
  right: 0px;
  top: 125px;
}

.s-06 .content .content {
  padding: 0 45px 0 45px;
}


.header-05 {
  background-color: var(--electric-white);
  background: linear-gradient(to bottom, var(--electric-white), white);
  padding-bottom: 50px;
}

.header-05 .box {
  padding: 50px;
  border-radius: 15px;
  padding-bottom: 0px;
  background: linear-gradient(to bottom, var(--white-ish), transparent), url('../assets/images/2-about/Image 24.png');
  background-size: 125%;
  background-position: center;
  background-repeat: no-repeat;
}

.header-05 .row {
  gap: 25px;
}

.header-05 .box h2 {
  padding: 25px;
  margin-top: 50px;
}

.header-05 .header {
  text-align: center;
  width: 80%;
  margin: auto;
  margin-bottom: 25px;
}

.header-05 .header span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.header-05 .header h1 {
  text-transform: uppercase;
  font-size: 38px;
  font-family: var(--header);
  letter-spacing: 1px;
  color: #acacac;
  font-weight: 500;
}

.header-05 .content img {
  width: 250px;
}

.header-05 .content h2 {
  margin: 25px 0;
  padding: 0;
}

.header-05 .pg-thumbnail {
  height: 100%;
  object-fit: cover;
}

.header-05 h2 {
  font-size: 32px;
}

.s-07 {
  padding: 50px 0;
  background-image: url('../assets/images/1-home/BG-dots.svg');
  background-size: contain;
  background-attachment: fixed;
  background-color: white;
}

.s-7 .row {
  gap: 50px;
  align-items: flex-end;
}

.s-07 .box {
  background-image: url('../assets/images/1-home/bg-2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 50px 75px;
  padding-bottom: 100px;
}

.s-07 .header h2 {
  background: var(--black);
  display: inline-flex;
  color: white;
  padding: 12px 35px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.s-07 .header h2 span {
  font-family: var(--header);
  color: var(--evee-green-light);
  font-weight: 500;
  margin: 0 10px;
}

.s-07 .header {
  text-align: center;
  margin-top: -75px;
  margin-bottom: 15px;
}

.s-07 p {
  width: 600px;
  max-width: 100%;
  margin: auto;
}

.s-07 .collage .c-01 {
  width: 100px;
  height: 100px;
  position: relative;
  bottom: -25px;
  right: -10px;
}

.s-07 .collage .c-02 {
  width: 350px;
  position: relative;
  top: -100px;
  left: -25px;
}

.s-07 .collage p {
  margin-top: -230px;
  margin-left: 10px;
  width: 100%;
  line-height: 1.2;
  font-size: 14px;
}

.s-07 .collage p img {
  height: 15px;
  width: auto;
}

.s-07 .row .col:first-child {
  flex: .6;
}

.header-06 {
  background-color: var(--electric-white);
  background: linear-gradient(to bottom, var(--electric-white), white);
  padding-bottom: 50px;
}

.header-06 .box {
  padding: 50px;
  border-radius: 15px;
  padding-bottom: 0px;
  background: linear-gradient(to bottom, var(--white-ish), transparent), url('../assets/images/2-about/Image 24.png');
  background-size: 125%;
  background-position: center;
  background-repeat: no-repeat;
}

.header-06 .row {
  gap: 50px;
}

.header-06 .col:first-child {
  flex: .45;
  border-right: 1px solid gainsboro;
}

.header-06 span {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  display: block;
}

.header-06 p {
  font-size: 18px;
  padding: 0;
  margin-bottom: 15px;
  display: inline-flex;
  border-bottom: 1px solid;
  opacity: .25;
}

.header-06 a {
  display: block;
  color: var(--black);
  text-decoration: none;
  margin-bottom: 25px;
  transition: all 0.2s;
}

.header-06 a:hover {
  color: var(--evee-green);
}

.header-06 h1 {
  font-size: 48px;
  opacity: .25;
}

.s-05.s-05-1 {
  padding: 50px 0 75px 0;
  background: 
    url('../assets/images/1-home/BG-dots.svg'), 
    linear-gradient(180deg, var(--electric-white) 8%, white 100%);
  background-position: center; 
  background-size: contain;
}

.s-05.s-05-1 .box {
  border: 0;
}

.s-08 h4 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 100;
  margin-bottom: 15px;
}

.s-08 h5 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 100;
  margin-bottom: 15px;
}

.s-08 h5 {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 100;
  margin-bottom: 15px;
}

.s-08 h6 {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 100;
  margin-bottom: 15px;
}

.s-08 ol, 
.s-08 ul{
  line-height: 1.5;
  font-size: 18px;
  padding-left: 25px;
  margin-bottom: 25px;
}

.s-08 a {
  color: var(--evee-green);
}

.post-style .row > .col:nth-child(2), 
.s-08 .row > .col:nth-child(2) {
  flex: .4;
}

.post-style h1 {
  padding: 50px 50px 25px;
  font-size: 36px;
  line-height: 1.25;padding: 50px 50px 25px;
  font-size: 36px;
  line-height: 1.25;
}

.s-08 .content {
  padding: 50px;
}

.related-articles {
  background: var(--white-ish);
}

.related-articles h2 {
  font-size: 36px;
}

.related-articles .box {
  padding-top: 50px;
}

.style-02 nav, 
.style-02 header {
  background: white;
}

.end {
  align-items: end;
}

.end p {
  padding: 0;
}

.w-100 {
  width: 100%;
}

.bold {
  font-weight: 500;
}

.tab-container-v2 .accordion-title {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border-color: gainsboro;
  text-transform: uppercase;
  font-size: 26px;
  font-family: var(--header);
  letter-spacing: 1px;
  color: #c5c5c5;
  font-weight: 500;
  border-top-color: transparent;
  border-right-color: transparent;
  margin: 0;
}

.tab-container-v2 .accordions {
  margin-top: 0;
  border: 0;
}

.tab-container-v2 .accordion-content {
  background-color: var(--electric-white);
  border-top: 1px solid gainsboro;
}

.tab-container-v2 .accordion-header {
  padding: 15px 25px;
}

.tab-container-v2 .tab-content {
  display: block;
}