*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;

  text-decoration: none;
  list-style: none;
  line-height: 1.6;
}

:root {
  --ff-primary: Arial, Helvetica, sans-serif;
  --ff-accent: Georgia, 'Times New Roman', Times, serif;

  --clr-primary: #971717;
  --clr-secondary: #e0bb02;
  --clr-navbar: #f5f5f5;
  --clr-white: #fff;
  --clr-text: #333;
  --clr-background: #eee;
  --clr-backcover:   #efdd80;

  --fs-100: 0.9375rem;
  --fs-200: 1rem;
  --fs-300: 1.0625rem; 
  --fs-400: 1.5rem;
  --fs-500: 2rem;
  --fs-600: 2.5rem;
  --fs-700: 3rem;
  --fs-800: 3.5rem;
  --fs-900: 4rem;
  --fs-xl: clamp(3rem, 1rem + 5vw, 5.75rem);
  
  --hamburger-width: 1.375rem;
  --hamburger-height: .25rem;
  --hamburger-gap: .375rem;
  --animation-timing: 200ms ease-in-out;
  --ham-height: calc(var(--hamburger-height) * 3 + var(--hamburger-gap) * 2);
}
  
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-primary);
  font-size: var(--fs-300);
  line-height: 1.6;
  color: var(--clr-text);
  background-color: var(--clr-white);
  overflow-x: hidden;
}

.top__border--wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  height: .3125rem;

  background: linear-gradient(to right, var(--clr-primary) 0%,var(--clr-primary) 25%, var(--clr-secondary) 25%, 
    var(--clr-secondary) 50%, var(--clr-primary) 50%, var(--clr-primary) 75%, var(--clr-secondary) 75%, var(--clr-secondary) 100%);
}

/* Utilities & Components */

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;

  font-family: var(--ff-accent);
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: var(--fs-xl);
}
h2 {
  font-size: var(--fs-500);
}
h3 {
  font-size: var(--fs-300);
}

section,
.primary-footer {
  /* z-index: -1; */

  padding: 2rem 0;
}

.hero {
  width: 100%;
  height: 100vh;

  z-index: -1;

  color: var(--clr-white);
  background-color: #0e1c1c;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.75)), url(../img/kamungu.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper {
  width: min(95%, 62rem);
  margin: 0 auto;
}

.bg__dark {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.bg__light {
  background-color: var(--clr-background);
}

.page__content > * + * {
  margin-top: 1rem;
}

.flex__wrapper {
  display: flex;
  flex-direction: column;
}

.page__grid {
  display: flex;
  flex-direction: column;
}

.page__grid > * + * {
  margin: 2em 0 0 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: fit-content;
  max-width: min(100%, 100vw);
  padding: 1rem 2rem;

  background-color: var(--clr-white);
  font-size: var(--fs-300);
  color: var(--clr-primary);
  
  border-radius: .625rem;
  cursor: pointer;
}

.btn:active,
.btn:hover {
  opacity: .7;
}

.button__icon {
  margin-left: 1rem;
}

.primary__btn {
  color: var(--clr-white);
  background-color: var(--clr-primary);
  outline: var(--clr-primary);
}

.secondary__btn {
  color: var(--clr-primary);
  outline: var(--clr-primary);
}

img {
  max-width: 100%;
  height: auto;
}

header {
  z-index: 1000;
}

/* Header & Navigation Bar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: 3.75rem;
  border-top: .05rem solid var(--clr-background);

  background-color: var(--clr-white);
}

.navbar__logo {
  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: .3125rem;

  width: 100%;
  height: 3.75rem;
  border-bottom: .05rem solid var(--clr-background);

  background-color: var(--clr-white);
}

.logo {
  width: 15rem;
  padding-top: .5rem;
}

.main__navbar {
  width: 80%;
  margin: 0 auto;
}

.navbar__list {
  display: flex;
  justify-content: space-between;

  height: 100%;
}

.navbar__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar__link {
  display: flex;
  flex-direction: column;

  color: var(--clr-text);
  opacity: .8;
}

.navbar__icon {
  margin-bottom: .375rem;

  text-align: center;
  font-size: 1.5rem;
}

.link__name {
  font-size: .75rem;
}

.active {
  color: var(--clr-primary);
  opacity: 1;
}

.navbar__link:hover,
.navbar__link:focus,
.navbar__link:active {
  color: var(--clr-primary);
  opacity: 1;
}

.login__user {
  display: flex;

  position: fixed;
  top: 0;
  right: 0;

  padding-top: 1.4375rem;
  padding-right: 1rem;
 
  cursor: pointer;
  z-index: 100;
}

.login__icon {
  font-size: 1.5rem;
  color: var(--clr-text);
  opacity: .6;
  text-align: center;
}

/* Hamburger */

.hamburger {
  --x-width: calc(var(--ham-height) * 1.41421356237);

  display: flex;
  flex-direction: column;
  gap: .375rem;

  position: fixed;
  top: 0;
  left: 0;

  width: max-content;
  padding-top: 1.4375rem;
  padding-left: 1rem;
  z-index: 10;
  cursor: pointer;
}

.hamburger::before,
.hamburger::after,
.hamburger input {
  content: "";
  width: 1.5rem;
  height: .25rem;

  background-color: var(--clr-text);
  opacity: .7;
  
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing),rotate var(--animation-timing), translate var(--animation-timing), background-color var(--animation-timing);
  
  border-radius: 25em;
}

.hamburger input {
  appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
  transition: all .5s ease-in-out;
}

.hamburger:has(input:checked)::before {
  width: var(--x-width);

  translate: 0 calc(var(--hamburger-height) / -2);
  rotate: 45deg;
}

.hamburger:has(input:checked)::after {
  width: var(--x-width);

  translate: 0 calc(var(--hamburger-height) / 2);
  rotate: -45deg;
}

.hamburger input:checked {
  width: 0;
  opacity: 0;
}

.hamburger:has(input:checked) + .top__bar--list {
  translate: 0;
}

@media (max-width: 62em) {
  .top__bar--list {
  position: fixed;
  left: .09rem;
  top: 4.05rem;

  width: 16rem;
  height: 26rem;
  padding-top: 3rem;
  border-right:  .05rem solid #d3d3d3;
  border-bottom:  .05rem solid #d3d3d3;
  border-bottom-right-radius: .6rem;

  background-color: var(--clr-white);

  transition: translate var(--animation-timing);
  translate: -100%;
  }

  .top__bar--list .top__bar--item {
  margin-top: 3rem;
  margin-left: 1.5rem;

  list-style: none;
  }
}

.top__bar--item .top__bar--link {
  text-decoration: none;
  color: var(--clr-text);
  font-size: 1rem;
  opacity: .8;
}

.top__bar--item .top__bar--link:hover,
.top__bar--item .top__bar--link:focus,
.top__bar--item .top__bar--link:active {
  color: var(--clr-primary);
  opacity: 1;
}

/* Hero Section */
.hero__content {
  margin-top: 15%;
  margin-left: 4%;
  margin-right: 4%;
}

/* Home Page */

.be__inspired {
	padding: 4em;
	width: 100vw;
	margin-left: -2.5%;
	outline: 2px solid var(--clr-secondary);
	outline-offset: -2.5em;
	color: #FFF;
	position: relative;
  border-radius: .625rem;
}

.be__inspired h2 {
  font-size: var(--fs-400);
	color: var(--clr-white);
	position: absolute;
	left: 45%;
	transform: translateX(-50%);
	top: .75em;
	background: var(--clr-primary);
	padding: 0 .145em;
}

.bmc__letter {
  background-color: var(--clr-white);
	padding: 1rem;
	width: 90%;
	margin-left: 2rem;
	border: 0.05rem solid #d3d3d3;
	color: var(--clr-text);
  border-radius: .625rem;
  box-shadow: 0rem 0rem 0.125rem 0.125rem rgba(0, 0, 0, .1)
}

.bmc__letter h2 {
  font-size: var(--fs-500);
  border-bottom: 0.05rem solid #d3d3d3;
}

.sender__details {
  display: flex;
  justify-content: space-between;
}

.bmc__motto {
  font-size: var(--fs-300);
  font-style: italic;
  font-weight: 600;
  color: var(--clr-primary);
}

.oma__imgs {
  margin: .1rem;
  border-radius: .5rem;
}

.oma__goals {
  border-bottom: 0.05rem solid #d3d3d3;
  padding-bottom: .5rem;
}

.exec__header {
  font-size: 1.3125rem;
}

.goals__list {
  font-size: var(--fs-300);
  list-style-type: square;
  list-style-position: inside;
} 

/* FAQS */
.faqs h2 {
  /* margin: 1.875rem 0 1.875rem; */
  text-align: center;
}

.faq__wrapper {
  max-width: 37.5rem;
  margin: 0 auto;
}

.faq {
  background-color: var(--clr-secondary);
  border: .05rem solid var(--clr-white);
  border-radius: .625rem;
  margin: 1.25rem;
  padding: 1.875rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq.active {
  background-color: #fff;
  box-shadow: 0 .1875rem .375rem rgba(0, 0, 0, 0.1), 0 .1875rem .375rem rgba(0, 0, 0, 0.1);
}

.faq.active::before,
.faq.active::after {
  content: '\f086';
  font-family: 'Font Awesome 5 Free';
  color: var(--clr-primary);
  font-size: 7rem;
  position: absolute;
  opacity: 0.1;
  top: 1.25rem;
  left: 1.25rm;
  z-index: 0;
}

.faq-title {
  font-family: var(--ff-primary);
  margin: 0 1.875rem 0 0;
  color: var(--clr-primary);
}

.faq-text {
  display: none;
  margin: 1.875rem 0 0;
}

.faq.active .faq-text {
  display: block;
}

.faq-toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  height: 1.875rem;
  width: 1.875rem;
}

.faq-toggle:focus {
  outline: 0;
}

.faq-toggle .fa-times {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  color: #fff;
  display: block;
}

.faq.active .faq-toggle .fa-chevron-down {
  display: none;
}

.faq.active .faq-toggle {
  background-color: var(--clr-primary);
}

/* Sign up & Log in */
.form {
  max-width: 22rem;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: 4px solid var(--clr-primary);
  margin: 7rem auto 2rem;

  border-radius: .625rem;
}

.form__signup {
  display: flex;
/* 
  position: relative;
  z-index: -1; */

  width: 100%;

  background-color: var(--white-color);

  border-radius: 0.625rem;
}

.form__content h2 {
  font-size: var(--fs-400);
  color: var(--clr-primary);
}

.form__content--para {
  font-weight: 600;
}

.form-group {
  display: flex;
  flex-direction: column;

  width: 100%;
  margin-bottom: 1rem;
}

input:focus {
  border-color: var(--clr-primary)!important;
}

.form-control,
.submit__btn {
  width: 100%;
  padding: .75rem;
  border: 1px solid #ccc;
  
  font-size: var(--fs-100);
  
  border-radius: .625rem;
  box-sizing: border-box;
}

/* .sub__wrapper {
  
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.sub__wrapper h2 {
  margin-bottom: 1rem;
}

.info__wrapper {
  background-color: var(--clr-white);
}

input[type=text], input[type=submit] {
  width: 90%;
  padding: .75rem;
  margin: .5rem 1.5rem;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: .625rem;
  box-sizing: border-box;
}*/

  .submit__btn {
    display: inline-block;
    border: none;
  
    background-color: var(--clr-primary);
    font-size: 1.25rem;
    color: var(--clr-white);
    
    cursor: pointer;
  }


.submit__btn:hover {
  opacity: 0.8;
}  

@media (min-width: 48em) { 
  .page__grid {
    flex-direction: row;
  }

  .page__grid > * {
    flex-shrink: 1;
    flex-basis: 100%;
  }

  .page__grid > * + * {
    margin: 0 0 0 2em;
  }

  .big__column {
    flex-basis: 250%;
  }

  .community__wrapper {
    width: 40%;
  }

  .hero__content {
    margin-top: 20%;
  }
}

@media (min-width: 62em) {
  .hero__content {
    margin-top: 18%;
  }
}

@media (min-width: 75em) {
  .hero__content {
    margin-top: 12%;
  }
}


.widgets {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.widget {
  padding: 1em;
  flex: 1 1 200px;
  border-radius: .5rem;
}

.hero__para {
  font-weight: 600;
}

/* FOOTER */
/* footer Start  */

.section__footer {
  z-index: 1000;
  background-color: var(--clr-primary);
  width: 100%;
  color: var(--clr-white);
}

.top__footer {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(255, 255, 255);
  padding-top: 1.5rem;
  padding-left: 1rem;
}

.footer__navbar,
.contact__us {
  margin-bottom: .5rem;
}

.footer__navbar--header,
.contact__us--header,
.email__us--header {
  font-size: var(--fs-200);
  font-weight: 600;
  padding-bottom: .8rem;
}

.footer__navbar--paragraph,
.contact__us--paragraph,
.email__us--paragraph {
  font-size: var(--fs-200);
  padding-bottom: .9rem;
}

.email__btn {
  display: flex;
  margin-bottom: .5rem;
}

.email__btn input {
border: .125rem solid var(--clr-secondary);
padding: .4375rem 20px;
outline: none;
border-radius: .3125rem 0rem 0rem .3125rem;
font-size: var(--fs-200);
}

.email__btn button {
  background: var(--clr-secondary);
  color: var(--clr-white);
  font-size: 1.1rem;
  padding: .4375rem 1.25rem;
  border: .125rem solid var(--clr-secondary);
  outline: none;
  border-radius: 0rem .3125rem .3125rem 0rem;
  cursor: pointer;
}

.footer__border {
  color: var(--clr-white) ;
}

.bottom__footer {
  margin-top: 1rem;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

.footer__navbar--item {
  color: var(--clr-white);
  text-decoration: none;
}

.copyright__paragraph {
  font-size: .875rem;
  padding-top: .5rem;
}

.socials {
  display: flex;
  margin-bottom: .5rem;
}

.social__link {
  background: #fafafa;
  width: 1.8em;
  height: 1.8em;
  margin: 0 .5em;
  border-radius: 50%;
  border: .125rem solid var(--clr-background);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social__facebook {
  font-size: .8rem;
  color: #4267b2;
  padding: .5em;
}

.social__twitter {
  font-size: .8rem;
  color: #000;
  padding: .5em;
}

.social__instagram {
  font-size: .8rem;
  color: #000;
  padding: .5em;
}

.social__youtube {
  font-size: .8rem;
  color: red;
  padding: .5em;
}

@media screen and (min-width: 48em){
/* footer */

  .top__footer {
            
    flex-direction: row;
    justify-content: space-around;
  }

  .footer__navbar--header,
  .contact__us--header,
  .email__us--header {
    font-size: var(--fs-300);
  }

  .footer__navbar--paragraph,
  .contact__us--paragraph,
  .email__us--paragraph {
    font-size: var(--fs-300);
  }

  .copyright__paragraph {
    font-size: var(--fs-100);
    margin-left: 4.5rem;
    margin-bottom: 0rem;
  }

  .socials {
    margin-right: 6rem;
  }

  .social__link {
    width: 2em;
    height: 2em;
  }

  .social__facebook {
    font-size: .9rem;
  }

  .social__twitter {
    font-size: .9rem;
  }

  .social__instagram {
    font-size: .9rem;
  }

  .social__youtube {
    font-size: .9rem;
  }

  .bottom__footer {
    margin-bottom: 2rem;
  }
}  

@media (min-width: 62em){
  .bottom__footer {
    margin-bottom: 0rem;
  }
}

/** About Page **/
.hero__about {
  width: 100%;
  height: 100vh;
  background-color: #0e1c1c;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.30)), url(../img/about__bg.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.toc__wrapper {
  background-color: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / .24);
  max-width: 70vw;
  margin-left: 2rem;
  border-radius: 20px;
}

.toc__header {
  background-color: #971717;
  padding: 5px;
  border-radius: 20px 20px 0 100px;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.toc__list--wrapper {
  background-color: #971717;
  border-radius: 20px 0 22px 22px;
}

.toc__heading {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
  text-align: center;
  width: 100%;
  font-weight: 600;
}

.toc__list {
  border-radius: 0 100px 20px 20px;
  background-color: #fff;
  margin: 0;
  list-style: none;
  padding: 20px 20px;
}

.toc__list--link:not(:last-child){
  margin-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
}

.toc__list--item {
  position: relative;
  color: #6a6a6a;
  text-decoration: none;
  font-weight: 600;
  font-size: .8125rem;
  display: block;
  padding: 10px 5px 10px 30px;
  border-radius: 10px;
  cursor: pointer;
  /* transition: .2s ease */
}

.toc__list--item:before{
  content: "";
  width: 12px;
  height: 12px;
  background-color: #e0bb02;
  position: absolute;
  border-radius: 50%;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.toc__list--item:hover{
  box-shadow: 0 8px 12px rgb(224 187 2 / .55);
  background-color: #e0bb02;
  color: #fff;
  max-width: 50vw;
  border-radius: 5px;
}

.toc__list--item:hover:before{
  background-color: #fff;
}

.about {
  width: 90%;
  margin: 0 auto;
}

.about h1 {
  font-size: var(--fs-700);
  color: var(--clr-primary);
}

.about h2 {
  font-size: var(--fs-500);
}

/* .oldmizekians__wrapper {
  margin-top: 1.25rem;
} */

.oldmizekians__wrapper p {
  line-height: 1.5;
  /* padding: 0 20px; */
}

.oldmizekians__wrapper .our__goal {
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.oldmizekians__wrapper .our__goal .quote__icon {
  position: absolute;
  opacity: 0.3;
  height: 100px;
}

.oldmizekians__wrapper .our__goal p {
  margin-left: 150px;
  font-size: var(--fs-400);
  font-style: italic;
  margin-right: .2rem;
}

.about__list {
 list-style-type: circle;
 margin-left: 10%;
}

.about__item {
  list-style-type: square;
}

.join__oma {
  font-weight: 600;
}

.content__description a {
  margin-left: 16%;
}
@media (min-width: 48em) {
  .toc__wrapper {
    max-width: 40vw;
  }

  .toc__list--item:hover{
    max-width: 30vw;
  }

  .about {
    width: 80%;
    margin: 0 auto;
  }

  .about h1 {
    font-size: var(--fs-800);
  }
  
  .about h2 {
    font-size: var(--fs-700);
  }

  .timeline__wrapper h2 {
    font-size: var(--fs-700);
}
  
}

@media (min-width: 75em) {
  .toc__wrapper {
    max-width: 30vw;
  }

  .toc__list--item:hover{
    max-width: 20vw;
  }

  .about {
    width: 60%;
    margin: 0 auto;
  }
  
}


.about__quote {
  padding-top: 2%;
  font-size: 1.6rem;
}

.about__para span {
  font-weight: 600;
}

#introduction,
#history,
#committee,
#membership {
  /* margin-bottom: 1rem; */
  margin-bottom: 0;
}

/* History Timeline */
.timeline__wrapper {
  max-width: 500px;
  margin: 0 auto;
  border-left: 4px solid #222;
  padding-left: 25px;
}

.timeline__wrapper h2 {
  font-size: var(--fs-400);
  margin-top: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #eee;
}

.event {
  border: 1px solid var(--clr-background);
}

.timeline__wrapper .event {
  position: relative;
  box-shadow: 0px 3px 6px -2px rgba(0, 0, 0, 0.2);
  padding: 32px;
  margin: 48px 0;
  line-height: 2;
  cursor: pointer;
  border-radius: 10px;
  transition: all 500ms;
}

.timeline__wrapper .event::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #000;
  position: absolute;
  left: -36px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  transition: all 500ms;
}

.timeline__wrapper .event:hover {
  box-shadow: 1px 6px 16px -1px rgba(0, 0, 0, 0.1);
}

.timeline__wrapper .event:hover::before {
  background: #971717;
}

.timeline__wrapper .event .event__date {
  position: absolute;
  left: -95px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.timeline__content {
  margin-top: 1rem;
}

.timeline__content p {
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .timeline__wrapper {
    max-width: 90%;
    margin-left: 40px;
  }

  .timeline__wrapper .event .event__date {
    position: static;
    margin-bottom: -20px;
  }
}


/* Executive Committee */
.executive__wrapper {
  /* padding: 24px 0; */
  max-width: 1000px;
  margin: 0 auto;
}

.executive__wrapper h2 {
  text-align: center;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 8px;
  background: #971717;
  color: #eee;
  width: 500px;
  margin: 48px auto; 
  padding-top: 1rem;
  padding-bottom: 1rem;
}


.executive__wrapper img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  box-shadow: 0 8px 29px -17px rgba(0, 0, 0, 0.4);
}

.executive__member {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 16px;
}

.executive__wrapper .executive__member--name {
  font-weight: bold;
  font-size: var(--fs-200);
  margin: 12px 0;
}

.executive__team--wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.executive__wrapper h3 {
  text-align: center;
  margin: 48px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 24px;
  text-transform: uppercase;
  font-weight: normal;
}

.job__position,
.school__name {
  font-size: 0.9375rem;
}

.job__position {
  margin-bottom: 1rem;
  font-style: italic;
}

