* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
    background-color: #FFFFFF;
}

/* Main Scroll Button Container */
#scrollToTopBtn {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #ff4d4d;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

#scrollToTopBtn.show {
  bottom: 30px;
  opacity: 1;
}

/* Pulsing Ring */
#scrollToTopBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 77, 77, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-ring 1.5s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

#scrollToTopBtn:hover {
  background-color: #FF344C;
}

/* Styling the main header of the home page */
.main-header {
    background-color: #1F3584;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
}

.home-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.home-nav .left-side {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.home-nav ul li {
    list-style: none;
}

.home-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    transition-duration: 0.4s;
}

.home-nav ul li a:hover {
    color: #FF344C;
}

.political-logo img{
    width: 120px;
    border-radius: 1rem;
    display: block;
}

.side-buttons {
    display: flex;
    column-gap: 2rem;
}

.side-buttons .side-button1, .side-button2{
    padding: 1rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
}

.side-buttons a {
    text-decoration: none;
    color: #FFFFFF;
}

.side-buttons .side-button1 {
    border: 1px solid #fff;
    background-color: #1F3584;
    color: #fff;
    padding: 1rem 2rem;
    transition: transform 0.3s ease;
    transition-duration: 0.4s;
}

.side-buttons .side-button1:hover {
    background-color: #FF344C;
    transform: translateY(5px);
}

.side-buttons .side-button2 {
    background-color: #FF344C;
    border: none;
    color: #fff;
    padding: 1rem 2rem;
    transition: transform 0.3s ease;
    transition-duration: 0.4s;
}

.side-buttons .side-button2:hover {
    background-color: #1F3584;
    border: 1px solid #FF344C;
    color: #FF344C;
    transform: translateY(5px);
}

/* Styling the side bar menu */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 9998;
    background-color: rgba(255, 255, 255, 0.395);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.sidebar li a {
    width: 100%;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.sidebar .hide-icon a img {
    margin-top: 1rem;
    background: #FF344C;
    border-radius: 5px;
}

.home-nav .side-buttons .menu-button a img {
    background: #FF344C;
    border-radius: 5px;
}

.menu-button {
    display: none;
}

/* Styling the hero section on the main page */
.hero-section {
    display: flex;
    justify-content: center;
    background-color: #1F3584;
    color: #fff;
    column-gap: 7rem;
    padding: 10rem 0 7rem 0;
    align-items: center;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
}

.name-profile-description {
    max-width: 30%;
}

.hero-section h1{
    font-size: 1rem;
    font-size: clamp(1rem, -0.19999999999999996rem + 6vw, 7rem);
    margin-bottom: 1rem;
    letter-spacing: 6px;
    line-height: -20px;
}

.hero-side-buttons {
    display: flex;
    column-gap: 2rem;
    margin-top: 2rem;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
}

.hero-side-buttons a {
    text-decoration: none;
}

.hero-side-buttons .side-button3, .side-button4{
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
}

.hero-side-buttons .side-button3 {
    background-color: #fff;
    color: #FF344C;
    transition-duration: 0.4s;
}

.hero-side-buttons .side-button3:hover {
    background-color: #1F3584;
    border: 1px solid #fff;
    color: #fff;
}

.hero-side-buttons .side-button4 {
    background-color: #1F3584;
    border: 1px solid #fff;
    color: #fff;
}

.hero-side-buttons .side-button4:hover {
    background-color: #fff;
    color: #0E121E;
}

.hero-section img {
    max-width: 35%;
}

/* Styling the community section */
.community-notes {
    padding-bottom: 10rem;
}
.community {
    padding-top: 200px;
    text-align: center;
}

.community-logos .image-text h1 img {
    width: 20px;
}

.community p:first-child {
    color: #FF344C;
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: .7rem;
} 

.community h3 {
    font-size: 2.7rem;
    font-weight: 500;
}

.community p:nth-child(3) {
    width: 40%;
    text-align: center;
    margin: 1rem auto;
    line-height: 1.4rem;
    opacity: 50%;
    font-size: 1.2rem;
}

.community-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    column-gap: 8rem;
}

.community-logos img {
    width: 150px;
}

.community-logos .image-text {
    text-align: center;
}

.community-logos .image-text h1 {
    font-size: 2.2rem;
    padding-top: 2rem;
}

.community-logos .image-text p {
    font-size: 1.4rem;
    opacity: 50%;
}

.community-buttons {
    margin-top: 4rem;
    text-align: center;
}

.community-buttons a:nth-child(1) {
    padding: 1.5rem 2.5rem;;
    font-size: 1.2rem;
    text-decoration: none;
    border: none;
    background-color: #FF344C;
    color: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease;
    transition-duration: 0.4s;
    cursor: pointer;
}

.community-buttons a:nth-child(1):hover {
    background-color: #fff;
    border: #FF344C 1px solid;
    color: #FF344C;
    transform: translateY(5px);
}

.community-buttons a:nth-child(2) {
    padding: 1.5rem 2.5rem;;
    font-size: 1.2rem;
    text-decoration: none;
    background-color: #fff;
    border-radius: 10px;
    border: #0e121e41 1px solid;
    transition: transform 0.3s ease;
    transition-duration: 0.4s;
    cursor: pointer;
}

.community-buttons a:nth-child(2):hover {
    background-color: #1F3584;
    color: #fff;
    transform: translateY(5px);
}

/* Styling the get involved page */
.get-involved-page {
    background-color: #F7F8F9;
    padding: 8rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: left;
}

.get-involved-page img {
    max-width: 35%;
    border-radius: 15px;
}

.get-involved-page .flyer-image-text {
    position: absolute;
    bottom: 10px;
}

.get-involved-page h3 {
    color: #FF344C;
    padding-bottom: 1rem;
}

.get-involved-page h1 {
    font-size: 3rem;
    font-weight: 500;
}

.get-involved-page .points-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.2rem;
    column-gap: 2rem;
}

.get-involved-page .points-list li{
    list-style: none;
    font-size: 1.6rem;
    line-height: 2.8rem;
}

.get-involved-page .points-list li img {
    width: 20px;
    vertical-align: middle;
    margin-right: 20px;
}

/* Styling the community section on the main page */
.community-focus {
    padding: 8rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-focus img {
    max-width: 85%;
    border-radius: 15px;
}

.community-focus .community-focus-text {
    max-width: 40%;
}

.community-focus .community-focus-text h1:nth-child(3) {
    margin-bottom: 1.4rem;
}

.community-focus .community-focus-text p{
    line-height: 1.9rem;
    font-size: 1.2rem;
    opacity: 60%;
}

.community-focus h3 {
    color: #FF344C;
}

.community-focus h1 {
    font-size: 2.4rem;
    font-weight: 500;
}

.community-focus-buttons {
    text-align: left;
}

.community-focus .image-relative{
    position: relative;
}

.community-focus .text-absolute {
    position: absolute;
    bottom: 53%;
    background-color: #FFFFFF;
    right: 60px;
    padding: 2rem 2rem;
    border-radius: 10px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.text-absolute img, .text-absolute2 img{
    width: 23px;
}

.community-focus .text-absolute2 {
    position: absolute;
    bottom: 27%;
    background-color: #fff;
    right: 60px;
    padding: 2rem 2.7rem;
    border-radius: 10px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.community-focus .text-absolute p:nth-child(1),
.text-absolute2 p:nth-child(1) {
    font-size: 3rem;
    font-weight: 600;
}

.community-focus .text-absolute p:nth-child(2),
.text-absolute2 p:nth-child(2) {
    font-size: 1.5rem;
    text-align: center;
    opacity: 50%;
}

/* Styling the community join section */
.community-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0;
    background-color: #1F3584;
}

.community-signup .community-signup-text {
    width: 35%;
    margin-right: 2rem;
}

.community-signup .community-signup-text p {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-top: 2rem;
}

.community-signup-text h1 {
    color: #FFFFFF;
    font-size: 3rem;
    padding-bottom: 1rem;
}

.community-signup img{
    max-width: 100%;
    border-radius: 15px;
}

.community-signup p img {
    width: 28px;
    vertical-align: middle;
}

.community-signup .community-signup-text input[type=email] {
    width: 60%;
    background-color: #FFFFFF;
    padding: 24px 20px;
    margin: 8px 0;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    margin-right: 1rem;
}

.community-signup .community-signup-text input[type=email]:focus {
    outline: #FF344C solid 1px;
}

.community-signup .community-signup-text button {
    padding: 1.5rem 2.8rem;
    font-size: 1.2rem;
    margin-right: 1.7rem;
    border: none;
    background-color: #FF344C;
    color: #fff;
    border-radius: 10px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.community-signup .community-signup-text button:hover {
    background-color: #1F3584;
    border: #FFF 1px solid;
    color: #FFFFFF;
}

.community-signup .american-join-img {
    position: relative;
}

.community-signup .join-absolute-text {
    position: absolute;
    top: 50px;
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 15px;
    left: -60px;
}

.community-signup .join-absolute-text p:nth-child(1){
    font-size: 2.5rem;
    font-weight: 700;
}

.community-signup .join-absolute-text p:nth-child(2){
    font-size: 2rem;
    text-align: center;
    opacity: 60%;
}

.community-signup .join-absolute-text img {
    width: 20px;
}

.objective-focus {
    padding: 10rem 0;
    background-color: #F7F8F9;
}

.objective-focus .objectives-header {
    text-align: center;
}

.objective-focus .objectives-header h3 {
    color: #FF344C;
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 0.7rem;
}

.objective-focus .objectives-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

.objectives-cards-container {
    max-width: 1200px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem;
    justify-content: center; 
    margin: auto;
    padding: 2rem 1rem 2rem 1rem;
}

.objective-card {
    width: 100%; /* Make it responsive */
    height: 500px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-10px);
}

.objectives-cards-container .objective-card img {
    display: block;
    max-width: 100%;
    background-color: #EDEFF5;
    padding: 1.2rem;
    border-radius: 80px;
}

.objectives-cards-container .objective-card h3 {
    display: block;
    text-align: center;
    font-size: 2rem;
    color: #0E121E;
    margin-top: 1rem;
    padding: 0 1rem;
}

.objectives-cards-container .objective-card p {
    text-align: center;
    padding-top: 2rem;
    line-height: 1.6rem;
    font-size: 1.2rem;
    opacity: 60%;
    padding: 2rem 1rem;
}

.objective-buttons {
    text-align: center;
}

/* Styling the register section on the main page */
.campaign-event-container {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: auto;
    border-radius: 15px;
    margin-top: 5rem;
}

.election-date {
    padding: 0 2rem;
}

.campaign-event-container img {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.election-date p:nth-child(1) {
    font-size: 1.2rem;
    padding-bottom: 2rem;
    color: #53565E;
}

.election-date h3{
    font-size: 2rem;
    padding-bottom: 1rem;
}

.election-date p:nth-child(3) {
    font-size: 1.4rem;
    padding-bottom: 2rem;
    color: #53565E;
}

.register-first-button {
    background-color: #FF344C;
    color: #EDEFF5;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    margin-right: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    transition-duration: 0.4s;
}

.election-date a {
    text-decoration: none;
    transition-duration: 0.4s;
}

.register-first-button:hover {
    background: none;
    color: #FF344C;
    border: 1px solid #FF344C;
}

.register-first-button a:hover {
    color: #FF344C;
}

.more-info-button {
    background-color: #FFF;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid #26385E;
    color: #0E121E;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    transition-duration: 0.4s;
}

.more-info-button:hover {
    background-color: #1F3584;
    color: #FFF;
}

.more-info-button a:hover {
    color: #FFFFFF;
}

/* Styling the information cards under the register card */
.info-section {
    margin-bottom: 14rem;
}

.info-section-container {
    max-width: 1200px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem;
    justify-content: center; 
    margin: auto;
    padding-top: 2rem;
}

.info-section-container .info-card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 2rem 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-section-container .info-card:hover {
    transform: translateY(10px);
    color: #FF344C;
}

.info-section-container .info-card p {
    font-size: 1.2rem;
    color: #53565E;
    padding-bottom: 1rem;
}

.info-section-container .info-card h3 {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    font-weight: 600;
}

.info-section-container .info-card a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FF344C;
    font-size: 1.4rem;
}

/* Styling the footer on the main page */
.main-page-footer {
    border-top: 1px solid #26385e1d;
    background-color: #F7F8F9;
}

.footer-container {
    max-width: 1200px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem;
    justify-content: center; 
    margin: auto;
    padding: 8rem 0 6rem 0;
    border-bottom: 1px solid #53565e3c;
}

.first-column {
    text-align: left;
}

.main-page-footer .first-column img {
    width: 170px;
    padding-bottom: 1rem;
}

.main-page-footer .first-column p:nth-child(2) {
    font-size: 1.2rem;
    padding-bottom: 1rem;
    color: #53565ed4;
}

.main-page-footer .first-column p a img {
    width: 30px;
    vertical-align: middle;
    padding-top: 14px;
    margin-right: 10px;
}

.main-page-footer .first-column p a {
    text-decoration: none;
    color: #0E121E;
    font-size: 1.3rem;
    text-align: center;
    vertical-align: middle;
    transition-duration: 0.4s;
}

.main-page-footer .first-column p a:hover {
    color: #FF344C;
}

.main-page-footer .second-column h3 {
    padding-bottom: 2rem;
    font-size: 1.6rem;
    color: #1F3584;
}

.second-column {
    padding-left: 5rem;
    line-height: 2.5rem;
}

.second-column ul li {
    list-style: none;
}

.second-column ul li a{
    text-decoration: none;
    color: #53565ed4;
    font-size: 1.2rem;
    transition-duration: 0.4s;
}

.second-column ul li a:hover {
    color: #FF344C;
}

.third-column {
    max-width: 400px;
    background-color: #1F3584;
    padding: 2rem 2rem;
    border-radius: 15px;
}

.third-column img {
    display: block;
}

.third-column h3 {
    font-size: 1.6rem;
    color: #FFFFFF;
    padding: 1rem 0;
}

.third-column p {
    color: #FFFFFF;
    line-height: 1.4rem;
    padding-bottom: 1rem;
}

.footer-form input[type='email'] {
    width: 100%;
    height: 4rem;
    border-radius: 15px;
    border: none;
    margin-bottom: 1rem;
    text-indent: 2rem;
}

.footer-form input::placeholder {
    font-size: 1.2rem;
    opacity: 60%;
    font-style: italic;
}

.footer-form input[type=email]:focus {
    outline: #FF344C solid 1px;
}

.footer-form button {
    width: 100%;
    height: 4rem;
    border-radius: 15px;
    border: none;
    font-size: 1.2rem;
    background-color: #FF344C;
    color: #FFFFFF;
    cursor: pointer;
    transition-duration: 0.4s;
}

.footer-form button:hover {
    background-color: inherit;
    border: #FFFFFF solid 1px;
}

.copy-right {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
}

.copy-right p {
    font-size: 1.2rem;
    color: #53565ed3;
}

.copy-right p a {
    color: #FF344C;
}

.copy-right p a:hover {
    color: #26385E;
    transition-duration: 0.4s;
}

.copy-right .social-media a img {
    width: 30px;
    transition-duration: 0.5s;
}

.copy-right .social-media a img:hover {
    opacity: 40%;
}

/* Responsive styling */
@media (max-width: 1120px) {
    .community-signup {
        flex-direction: column;
        max-width: 100%;
    }
    .community-signup .community-signup-text {
        width: 65%;
        margin-bottom: 2rem;
    }
    .campaign-event-container {
        flex-direction: column;
        max-width: 80%;
        padding: 2rem;
    }
    .campaign-event-container img {
        max-width: 100%;
        margin-top: 4rem;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }
    .footer-container {
        padding: 4rem 2rem 4rem 2rem;
    }
    .info-section-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 1042px) {
    .get-involved-page {
        flex-direction: column;
    }
    .get-involved-page img {
        max-width: 100%;
        border-radius: 15px;
    }
    .get-involved-page .points-list {
        flex-direction: column;    
    }
    .left-definiton {
        margin-right: 6rem;
        margin-bottom: 2rem;
    }

    .community-focus {
        flex-direction: column;
    }
    .community-focus img {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .community-focus .text-absolute {
        right: -60px;
    }
    .community-focus .text-absolute2 {
        right: -60px;
    }
    .text-absolute img, .text-absolute2 img{
        vertical-align: middle;
    }
    .community-focus .community-focus-text {
        max-width: 63%;
    }
    .community-signup  {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        justify-content: space-around;
        padding: 5rem 0 5rem 0;
    }
    .name-profile-description {
        max-width: 100%;
    }
    .hero-side-buttons {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    .hero-side-buttons .side-button3 {
        margin-bottom: 1rem;
    }
    .name-profile-description {
    max-width: 100%;
    }
    .hero-section img {
    max-width: 100%;
    }
}

@media (max-width: 800px) {
    .hideOnMobile{
        display: none;
    }
    .menu-button {
        display: block;
    }
    .sidebar {
        width: 50%;
    }
    .home-nav {
        justify-content: space-between;
        padding: 1rem;
    }
}

/* Responsive padding on 768px small screens */
@media (max-width: 768px) {
    .side-buttons {
        padding-right: 1rem;
    }
    .side-buttons .side-button1,
    .side-buttons .side-button2 {
        width: 100%;
        text-align: center;
    }
    .community-focus .text-absolute {
        display: none;
    }
    .community-focus .text-absolute2 {
        display: none;
    }
    .community-focus .community-focus-text {
        max-width: 82%;
    }
    .objective-focus {
        padding: 5rem 1rem;
    }
    .community {
        padding-top: 90px;
    }
    .community p:nth-child(3) {
        width: 100%;
    }
    .community-logos .image-text p {
        margin-bottom: 2rem;
    }
    .register-first-button {
        display: block;
        margin-bottom: 2rem;
        text-align: center;
        width: 100%;
    }
    .more-info-button {
        display: block;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .sidebar {
        width: 100%;
    }
    .hero-side-buttons {
        padding: 0 2rem;
    }
    .community-buttons {
        display: flex;
        justify-content: center;
        flex-direction: column;
        row-gap: 1rem;
        padding: 0 1rem;
    }
    .community-buttons button:nth-child(1) {
        width: 100%;
    }
    .community-signup .community-signup-text input[type=email] {
        width: 100%;
    }
    .community-signup .community-signup-text button {
        width: 100%;
    }
    .left-definiton {
        max-width: 100%;
        padding: 0 1rem;
        margin-right: 0;
    }
    .second-column {
        padding-left: 0rem;
    }
    .third-column {
        max-width: 100%;
    }
    .copy-right {
        margin-left: 2rem;
    }
}

@media (max-width: 400px) {
    .sidebar {
        width: 100%;
    }
    .points-list {
        max-width: 100%;
    }
}





/* @media (max-width: 768px) {
    .home-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .side-buttons {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 1rem;
        width: 100%;
    }

    .side-buttons .side-button1,
    .side-buttons .side-button2 {
        width: 100%;
        text-align: center;
    }

    .home-nav .left-side {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 1rem;
    }
} */









