@import url("https://fonts.googleapis.com/css2?family=Lisu+Bosa:wght@600;800&family=Poppins:wght@400;500;600;700&display=swap");

 :root {
  --primary-color: #0a0d14;
  --primary-color-light: #20242f;
  --secondary-color: #f49e09;
  --extra-light: rgba(255, 255, 255, 0.5);
  --white: #ffffff;
  /* --max-width: 1200px;
  --header-font: "Lisu Bosa", serif; */
} 

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: 1200px;
  margin: auto;
  padding-bottom:  4rem 1rem;
}


.section__header {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--header-font);
  text-align: center;
}

.section__subheader {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  cursor: pointer;
  color: white;
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--primary-color);
}


.nav__logo h6 {
    display: inline;
    color: white;
    margin-left: 10px;
    font-size: medium;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);  /* Light shadow for contrast */
}
.nav__logo img {
    width: 3rem;
    height: 3rem;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    
}
a {
    text-decoration: none;
}
li {
    list-style: none;
} 

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*backdrop-filter: blur(8px);*/
    background-color : #0a0d14; 
    z-index: 999;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;  
    height: 6rem;
    padding: 0 1rem;
    margin: 0 auto;
    z-index: 999;
}

.toggle__menu,
.close__menu {
    display: none;
}

.nav__list {
    display: flex;
}

.nav__item {
    margin: 0 1.5rem;
    padding: 2.2rem 0;
}



.nav__link {
    font-weight: 700;
    color: white;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);  /* Light shadow for contrast */
}

.nav__link:hover {
    color: #2696E9;
}

.dropdown__link {
    display: flex;
    align-items: center;

}

.dropdown__icon {
    font-size: 1rem;
}

 .megamenu {
    position: absolute;
    width: 100%;
     top: 6rem;
    left: 0;
    background-color: #0a0d14;
    display: flex;
    justify-content: space-around;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 23px 23px -21px rgba(0,0,0,0.25);
    z-index: -99;
    visibility: hidden;
    opacity: 0;
} 

.content {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem;
}

.megamenu__item {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    padding: 10px;
} 

.header__megamenu a{
    font-weight: 600;
    color: white;
    margin-bottom: 0.4rem;
    
}
.btn a {
  color: #000;
}

.btn a:hover {
  color: white;
}



.header__megamenu a:hover {
  font-weight: 600;
  color: #2696E9;
  margin-bottom: 0.4rem;
  
}

.menu__icon {
    width:32px;
    height: 32px;
    /*border-radius: 50%;*/
    text-align: center;
    /*background-color: #efeef1;*/
    margin-bottom: 0.5rem;
    margin-right: 0.2rem; 
}
.menu__icon i {
    line-height: 32px;
    font-size: 22px;
    color:  white;
    
    
}

.menu__icon i:hover {
  
 color: #2696E9;
  
  
}


.megamenu__link a {
    font-weight: 500;
    color: white;
}

.megamenu__link a:hover {
    font-weight: 500;
    color: #2696E9;
}



.megamenu__link p {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #a8a1b5;
}

.dropdown:hover .megamenu {
    color: #a92ec8;
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
}

.nav__item:hover  .dropdown__icon {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

main {
  background-image: linear-gradient(to top, var(--primary-color), transparent),
    url("indexhero.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 6rem;
}


.header__container {
  
  padding-bottom: 0rem;
  
}

.header__container h1 {
  margin-bottom: 0rem;
  max-width: 700px;
  font-size: 3rem;
  font-family: var(--header-font);
}

.header__container h4 {
  position: relative;
  margin-left: 3rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
}

.header__container h4::after {
  position: absolute;
  content: "";
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 2rem;
  background-color: var(--white);
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #2696E9;
  padding: 100px 200px;
  margin-top: 6rem;
}

.home:before {
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(3,96,251,0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .hero {
  z-index: 888;
  color: #fff;
  width: 70%;
  margin-top: 50px;
  display: none;
}
.home .hero.active {
  display: block;
}


.home .hero h1 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 40px;
}

.home .hero h1 {
  font-size: 1.2rem;
  font-weight: 600;
}

.home .hero p{
  margin-bottom: 65px;
}

.home .hero a {
  background: white;
  padding: 15px 35px;
  color: blue;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
}

.home .media-icons {
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons a {
  color: #fff;
  font-size: 1.6rem;
}

.home .media-icons a:not(:last-child) {
  margin-bottom: 20px;
}

.home .media-icons a:hover {
  transform: scale(1.3);
}

.home video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation {
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}

.slider-navigation .nav-btn {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255,255,255,0.5);
  transition: 0.3s ease;
}


.slider-navigation .nav-btn.active {
  background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child) {
  margin-right: 20px;

}

.video-slide {
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.video-slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}




.slider-navigation .nav-btn:hover {
  transform: scale(1.2);
}


.about__container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  margin-top: 0rem;
  margin-bottom:2rem;
}

.about__container :is(.section__header, .section__subheader) {
  text-align: left;
}

.about__flex {
  margin: 2rem 0;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background-color: var(--primary-color-light);
}

.about__card {
  flex: 1 1 150px;
  text-align: center;
  border-right: 2px solid var(--primary-color);
}

.about__card:last-child {
  border: none;
}

.about__card h4 {
  margin-bottom: 5px;
  font-size: 3rem;
  font-weight: 600;
  font-family: var(--header-font);
}

.about__card p {
  font-size: 0.9rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
}

.discover {
  
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    transparent
  );
}
.discover__container {
  /* max-width: 1200px;  */
  padding-bottom: 0;
}
.discover__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.discover__card {
  max-width: 320px;
  max-height: 700px;
  margin: auto;
  
}

/* .discover__card:nth-child(2) {
  transform: translateY(5rem);
} */

.discover__image {
  position: relative;
}

.discover__image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, var(--primary-color), transparent);
}

.discover__card__content {
  padding: 0 2rem;
  transform: translateY(-50%);
}

.discover__card__content h4 {
  margin-bottom: 0.2rem;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--secondary-color);
}

.discover__card__content h5 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--secondary-color);
}




.discover__card__content p {
  margin-bottom: 2rem;
}

.discover__btn {
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 1rem;
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
  cursor: pointer;
}

.blogs__container {
  padding: 1rem 0;
}

.blogs__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.blogs__card {
  position: relative;
}

.blogs__card::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to top, var(--primary-color), transparent);
}

.blogs__content {
  /* position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  z-index: 1; */
  position: absolute;
  left: 50%;
  bottom: -8rem;
  transform: translateX(-50%);
  width: 100%;
  padding: 2rem 1rem;
  transition: 0.3s;
  text-align: center;
  background-image: linear-gradient(to top, var(--primary-color), transparent);
}

.journals__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.journals__content {
  padding: 2rem;
  background-color: var(--primary-color-light);
}

.journals__author {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.journals__author img {
  max-width: 30px;
  border-radius: 100%;
}

.journals__author p {
  font-size: 0.9rem;
  opacity: 0.75;
}

.journals__content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.journals__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.journals__footer p {
  font-size: 0.9rem;
  opacity: 0.5;
}

.journals__footer span a {
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.75;
}

.journals__btn {
  margin-top: 4rem;
  text-align: center;
}

.hero__container p {
  text-align: center;
  font-size: 12rem;
  font-weight: 700;
  background-image: url("assets/banner.jpg");
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--extra-light);
}

.gallery__container {
  padding: 1rem ;
}

.gallery__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
   
}

.gallery__card {
  position: relative;
  overflow: hidden;

}

.gallery__content {
  position: absolute;
  left: 50%;
  
  transform: translateX(-50%);
  width: 100%;
  padding: 2rem 1rem;
  transition: 0.3s;
  text-align: center;
  background-image: linear-gradient(to top, var(--primary-color), transparent);
}

.gallery__content h4 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--header-font);
}

.gallery__card:hover .gallery__content {
  bottom: 0;
}

.contact {
  background-image: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.05),
    transparent
  );
}

.contact__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.contact__card {
  max-width: 150px;
  margin: auto;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--extra-light);
  border-radius: 100%;
  cursor: pointer;
}

.contact__card span {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  transition: 0.3s;
  color: #0031cc;
}

.contact__card:hover span {
  color: var(--secondary-color);
}


.contact__col h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--header-font);
}

.contact__col h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--header-font);
}

.contact__col h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--header-font);
}
footer{
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  background-color: #0d0d0d;
 

  
}

ul{
  list-style: none;
}

.footer-col{
  width: 25%;
  padding: 50px 2.5%;
}


.icon i {
  margin-right: 10px; /* Adjust spacing as needed */
  vertical-align: middle; /* Align icon with text */
  color: white;
  

}



.footer-col h4{
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 22px;
  color: #f49e09;
  text-transform: capitalize;
}

.footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: white;
  height: 2px;
  width: 60px;
}

/* ul li:not(:last-child){
  margin-bottom: 8px;
} */

.footer-col ul li a{
  display: block;
  font-size: 15px;
  text-transform: capitalize;
  color: white;
  text-decoration: none;
  transition: 0.4s;
  padding-bottom: 10px;
}

 /* ul li a:hover{
  color: white;
  padding-left: 2px;
}  */

.links a{
  display: inline-block;
  height: 44px;
  width: 44px;
  color: white;
  background-color: rgba(40, 130, 214, 0.8);
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: 0.4s;
}

.links a:hover{
  color: #4d4f55;
  background-color: white;
}
.footer-copyright {
  text-align: center;
  /* margin-top: 20px; */
  margin-bottom: 20px;
  font-size: 14px;
  color: #aaa; /* Adjust color as needed */
  width: 100%; /* Ensure full width */
  border-top: 1px solid white;
}

.footer-copyright p {
  margin-top: 20px;

}
/* .footer__container {
  text-align: center;
}

.footer__container h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer__socials {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer__socials span a {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.footer__socials span a:hover {
  color: var(--secondary-color);
}

.footer__container p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 4rem;
}

.footer__nav {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__link a {
  font-weight: 500;
  color: var(--white);
}

.footer__link a:hover {
  color: var(--secondary-color);
}

.footer__bar {
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid var(--extra-light);
} */

@media (width < 900px) {


  .about__container {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }

  .about__container :is(.section__header, .section__subheader) {
    text-align: center;
  }

  .about__image {
    grid-area: 1/1/2/2;
  }


  .blogs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journals__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero__container p {
    font-size: 10rem;
  }

 

  .contact__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__col:first-child {
    grid-area: 1/1/2/3;
    text-align: center;
  }
}

@media (width < 600px) {
 

  .about__card {
    border: none;
  }

  .discover__grid {
    grid-template-columns: repeat(1, 1fr);
  }




  
  .journals__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero__container p {
    font-size: 6rem;
  }

 

  .contact__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .contact__col:first-child {
    grid-area: unset;
  }
}



@media (width > 768px) {
 

  .header__container {
    height: calc(100% - 10rem);
  }

  .header__socials {
    display: flex;
  }

}

@media screen and (max-width : 1316px) {
  .footer-col{
    
    padding: 25px 1%;
}
}

@media screen and (min-width : 1316px) {
  .header__container {
   
    min-height: 90vh;
    padding-top: 8rem;
  }
  
}


@media screen and (max-width : 1144px) {
 
 .nav__item {
    
    padding: 1.4rem 0;
}
 
  .megamenu {
    flex-direction: column;
    box-shadow: none;
    position: static;
    height: 0;
    max-width: 450px;
    overflow: hidden;
}

.nav__link {
  
   text-shadow: none;
}


.dropdown:hover .megamenu{
    height: 100%;
}
.nav__list {
    position : absolute;
    height: 100vh;
    width: 100%;
    left: -100%;
    max-width: 450px;
    top: 0;
    background-color: #0a0d14;
    overflow-x: hidden;
    display: block;
    transition: 0.3s;
}
.toggle__menu,
.close__menu {
display: block;
}
.toggle__menu i {
  color: white;
}
.toggle__menu i:hover
{
color: #a92ec8;
}

.close__menu {
margin: 1rem 1rem 1rem auto;
background-color: #2696E9;
border-radius: 50%;
width: 32px;
height: 32px;
text-align: center;
}

.close__menu:hover {
color: #a92ec8;
}

.close__menu i {
line-height: 32px;
color: #fff;
font-size: 22px; 
}
.show__menu {
left: 0;
}
   nav {
    justify-content: space-between;
  }
    /* .megamenu {
        justify-content: center;
        flex-wrap: wrap;
    }  */
    /* section {
        padding: 100px 20px;
    } */
    .home .media-icons {
        right: 15px;
        display: flex;
        flex-direction: column;
        transition: 0.5s ease;
    }

    /* .about__header {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .about__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .about__card {
      padding: 5rem 2rem;
    }

    .faq__container {
      grid-template-columns: repeat(1, 1fr);
    } */

    .discover__grid {
      grid-template-columns: repeat(2, 2fr);
    }
  
    .gallery__grid {
      grid-template-columns: repeat(2, 2fr);
    }
  
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
        padding: 25px 2.5%;
    }
 .footer-col h4::before{
      left: auto;
    }
    /* .slider {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      max-width: 700px;
      overflow: hidden;
      background: rgb(255, 255, 255);
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(7.4px);
      -webkit-backdrop-filter: blur(7.4px);
      border: 1px solid rgba(255, 255, 255, 0.4);
    }
     */

   
}

@media screen and (max-width : 768px) {
  
    .megamenu {
        flex-direction: column;
        box-shadow: none;
        position: static;
        height: 0;
        max-width: 450px;
        overflow: hidden;
    }

    .dropdown:hover .megamenu{
        height: 100%;
    }
    .nav__list {
        position : absolute;
        height: 100vh;
        width: 100%;
        left: -100%;
        max-width: 450px;
        top: 0;
        
        overflow-x: hidden;
        display: block;
        transition: 0.3s;
    }
    .toggle__menu,
.close__menu {
    display: block;
}


.close__menu {
    margin: 1rem 1rem 1rem auto;
    background-color: #2696E9;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
}


.close__menu i {
   line-height: 32px;
   color: #fff;
   font-size: 22px; 
}
.show__menu {
    left: 0;
}
.home .hero a {
    background: red;
    padding: 15px 35px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
}
.about__header {
  grid-template-columns: repeat(1, 1fr);
}

.about__grid {
  grid-template-columns: repeat(1, 1fr);
}

.discover__grid {
  grid-template-columns: repeat(1, 1fr);
}


/* .about__card {
  padding: 5rem 2rem;
} */

.gallery__grid {
  grid-template-columns: repeat(1, 1fr);
}
.footer-col{
    width: 100%;
}
}
/* main {
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
} 

.industry {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 250px;
margin: 10px;
}

.industry i {
font-size: 3rem;
color: #4CAF50;
margin-bottom: 10px;
}

.industry p {
font-size: 0.9rem;
font-weight: bold;
color: #333;
text-align: center;
}
h1 {
  font-size: 1.5rem;
  padding: 20px;
  margin: 20px 0px;
}

.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 601px;
  overflow: hidden;
  background: rgb(255, 255, 255);
  /* border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  /* backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.article__grid {
  grid-template-columns: repeat(3, 1fr);
}
} */


/* @media screen and (max-width : 600px) {
  .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 300px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .article__grid {
    grid-template-columns: repeat(1, 1fr);
  }
   */

@media screen and (max-width : 500px) {
  .section__header {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--header-font);
    text-align: center;
  }
  .header__container h1 {
    margin-bottom: 1rem;
    max-width: 700px;
    font-size: 2rem;
    font-family: var(--header-font);
  }
  
}
