




    :root {
      --gold: #D4A017;
      --red: #B63A3A;
      --green: #177657;
      --orange: #F28B30;
      --ink: #222222;
      --bg: #FAF6ED;        /* light banana-fiber paper tone */
      --card: #FFFFFF;
      --border-soft: #E3D8BE;
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
	  position: relative;
	  -- top:15px;
    }

    /* Navbar */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(250, 246, 237, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-soft);
    }

	/*
	.hero-illustration {
	  margin-top: 1.8rem;
	  max-width: 360px;
	  opacity: 0.9;
	}
	*/


.hero-illustration {
  margin-top: 1.8rem;
  max-width: 360px;
  opacity: 0.95;
}

/* animated swirl */
.fiber-swatch {
  transform-origin: center;
  animation: fiberSwirl 6s linear infinite;
}

@keyframes fiberSwirl {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(18deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
	  position: relative;
	  -- top:0!important;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--green);
    }

    .brand-mark {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: conic-gradient(from 180deg, var(--gold), var(--red), var(--green), var(--orange), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      color: #fff;
      box-shadow: 0 0 0 2px #ffffff99;
    }

    .nav-links {
      display: flex;
      gap: 1.25rem;
      font-size: 0.85rem;
    }

    .nav-links a {
      opacity: 0.8;
    }

    .nav-links a:hover {
      opacity: 1;
      color: var(--green);
    }

    .nav-cta {
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      border: 1px solid var(--green);
      font-size: 0.8rem;
      background: #ffffff;
      color: var(--green);
    }


    /* Hero */
    /*
	.hero {
      background:
        radial-gradient(circle at 0 0, rgba(242, 139, 48, 0.12), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(212, 160, 23, 0.18), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(23, 118, 87, 0.16), transparent 60%),
        var(--bg);
      padding: 4rem 0 3rem;
    }
	*/
	
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at 0 0, rgba(242, 139, 48, 0.12), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(212, 160, 23, 0.18), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(23, 118, 87, 0.18), transparent 65%),
    #FAF6ED;
}

/* Subtle ?banana leaf? wave in the background */
.hero::before {
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  height: 190px;
  background: radial-gradient(circle at 0 100%, rgba(23,118,87,0.2), transparent 60%),
              linear-gradient(120deg, rgba(250,246,237,0) 0%, rgba(23,118,87,0.1) 40%, rgba(212,160,23,0.16) 100%);
  opacity: 0.8;
  pointer-events: none;
  transform: skewY(-4deg);
}


    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 2.5rem;
      align-items: center;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.8rem;
      color: var(--orange);
      margin-bottom: 0.6rem;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 4vw, 3rem);
      line-height: 1.15;
      margin-bottom: 1rem;
      color: #1b1b1b;
    }

    .hero h1 span {
      color: var(--green);
    }

    .hero-sub {
      font-size: 0.98rem;
      max-width: 32rem;
      color: #555555;
      margin-bottom: 1.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .btn-primary {
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, var(--green), var(--gold));
      color: #ffffff;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(12, 86, 63, 0.25);
    }

    .btn-outline {
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      border: 1px solid #c8c0a8;
      background: rgba(255, 255, 255, 0.9);
      color: #333333;
      font-size: 0.9rem;
      cursor: pointer;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.85rem;
    }

    .metric-number {
      font-weight: 700;
      color: var(--green);
      font-size: 1.1rem;
    }

    .hero-card {
      background: #ffffff;
      border-radius: 1.4rem;
      border: 1px solid var(--border-soft);
      padding: 1.4rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    }

    .hero-card h3 {
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
      color: var(--ink);
    }

    .hero-card small {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #777777;
    }

    .hero-card ul {
      margin-top: 0.7rem;
      padding-left: 1.1rem;
      font-size: 0.85rem;
      color: #444444;
    }

    /* Section base */
    section {
      padding: 3rem 0;
    }

    section h2 {
      font-size: 1.4rem;
      margin-bottom: 0.4rem;
      color: #222222;
    }

    section .section-eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.75rem;
      color: var(--orange);
      margin-bottom: 0.15rem;
    }

    section .section-subtitle {
      font-size: 0.9rem;
      color: #555555;
      max-width: 36rem;
      margin-bottom: 1.8rem;
    }

    /* About / Story */
    .two-col {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
      gap: 2.5rem;
      align-items: start;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      border-radius: 999px;
      border: 1px solid rgba(23, 118, 87, 0.5);
      padding: 0.2rem 0.7rem;
      font-size: 0.75rem;
      margin-bottom: 0.5rem;
      color: var(--green);
      background: #ffffff;
    }

    .pill span {
      font-size: 0.7rem;
    }

    .list-check {
      list-style: none;
      padding-left: 0;
    }

    .list-check li {
      position: relative;
      padding-left: 1.4rem;
      margin-bottom: 0.4rem;
      font-size: 0.9rem;
      color: #444444;
    }

    .list-check li::before {
      content: "◆";
      position: absolute;
      left: 0;
      top: 0.05rem;
      font-size: 0.75rem;
      color: var(--green);
    }

    .badge-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.6rem;
      font-size: 0.85rem;
    }

    .badge {
      border-radius: 0.75rem;
      border: 1px solid var(--border-soft);
      padding: 0.6rem 0.7rem;
      background: #ffffff;
    }

    .badge strong {
      display: block;
      color: var(--green);
      font-size: 0.9rem;
    }

    /* Products */
    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .card {
      border-radius: 1.1rem;
      padding: 1.1rem;
      border: 1px solid var(--border-soft);
      background: #ffffff;
      font-size: 0.9rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    }

    .card h3 {
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
      color: var(--ink);
    }

    .card-tag {
      display: inline-block;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #888888;
      margin-bottom: 0.4rem;
    }

    /* Impact strip */
    .impact-strip {
      display: grid;
      gap: 1.1rem;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .impact-card {
      border-radius: 1rem;
      padding: 1rem;
      border: 1px solid var(--border-soft);
      background: #ffffff;
      font-size: 0.85rem;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
    }

    .impact-card h3 {
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
      color: var(--ink);
    }

    .impact-card span {
      font-size: 0.8rem;
      color: #777777;
      display: block;
      margin-bottom: 0.3rem;
    }

    /* How it works */
    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      font-size: 0.85rem;
    }

    .step {
      border-radius: 1rem;
      padding: 0.9rem;
      border: 1px solid var(--border-soft);
      background: #ffffff;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
    }

    .step-number {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--orange);
      margin-bottom: 0.4rem;
    }

    .step h3 {
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
      color: var(--ink);
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: start;
    }

    .contact-form {
      background: #ffffff;
      border-radius: 1.2rem;
      border: 1px solid var(--border-soft);
      padding: 1.4rem;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    }

    .field {
      margin-bottom: 0.8rem;
      font-size: 0.85rem;
    }

    .field label {
      display: block;
      margin-bottom: 0.2rem;
    }

    .field input,
    .field textarea {
      width: 100%;
      padding: 0.55rem 0.6rem;
      border-radius: 0.6rem;
      border: 1px solid #d3c8af;
      background: #fdfaf4;
      color: var(--ink);
      font-family: inherit;
      font-size: 0.85rem;
    }

    .field textarea {
      min-height: 110px;
      resize: vertical;
    }

    .contact-meta {
      font-size: 0.85rem;
      color: #555555;
    }

    .contact-meta p {
      margin-bottom: 0.5rem;
    }

    .tag {
      display: inline-block;
      border-radius: 999px;
      border: 1px solid #d3c8af;
      padding: 0.2rem 0.6rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-right: 0.3rem;
      margin-bottom: 0.3rem;
      color: #555555;
      background: #fffdf7;
    }

    /* Footer */

    footer {
      border-top: 1px solid var(--border-soft);
      padding: 1.4rem 0 2.2rem;
      font-size: 0.8rem;
      color: #777777;
      background: #f7f1e3;
	  position: fixed;
	  left: 0;
	  bottom: 0;
	  width: 100%;
      height: 50px;
	}

    footer .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    footer a {
      color: #555555;
      font-size: 0.8rem;
    }


/**************************************************************
***						Popup style							***
**************************************************************/

/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex; /* Centers the popup */
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden by default */
    visibility: hidden; /* Also hidden */
    transition: opacity 0.3s ease, visibility 0.3s; /* Smooth transition */
    z-index: 1000;
}

.popup-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Popup Box */
.popup {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.5); /* Starts smaller */
    transition: transform 0.3s ease; /* Growing effect */
    max-width: 90%;
    text-align: center;
}

.popup-overlay.open .popup {
    transform: scale(1); /* Grows to full size */
}

.popup_text_body {
	max-height: 500px; 
	text-align: left; 
	overflow-y: auto;
	overflow-x: clip;
}

/* Close Button */
.closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.closeBtn:hover {
    color: #333;
}

/* Button Styling */
.PU_button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.SDG_8_9_12_13 {
	color:blue;


}

.SDG_8_9_12_13:hover {
	color:green;
    cursor: pointer;


}

.sdg_img_wrap {
  width: 345px;
  height: 700px;
  float: right;
  padding: 10px;
}

.sdg_goal_img_wrap {
  width: 300px;
  height: 300px;
  float: right;
  padding: 10px;
}

.sdg_img_wrap span {
  -- padding-top: 70px;
  display: inline-block;
}

.sdg_wrap {
	max-width: 650px; 
	text-align: left;
}



.sdg_wrap ul {
	width: 650px; 
	text-align: left;
}

.sdg_wrap ul {
    margin: 10px 0 20px;
    font-size: var(--m3t7, 16px);
    line-height: var(--m3t8, 22px);
    -webkit-padding-start: 16px;
    padding-inline-start: 16px;
}

.sdg_wrap li {
    margin-bottom: 12px;
    -webkit-padding-start: 4px;
    padding-inline-start: 4px;
    list-style: disc;
}



.sdg_navbar_bottom {
    background-color: #333; /* Dark background */
    overflow: hidden;
    -- position: fixed; /* Fix position to the bottom of the screen */
    bottom: 0;
    width: 97%; /* Full width */
    display: flex; /* Use flexbox for even distribution */
	margin: auto;	/*	Center the tabs	*/
}

.sdg_navbar_bottom a {
    flex-grow: 1; /* Make all links equal width */
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    color: white;
    display: block; /* Ensures the whole area is clickable */
}

/*
.sdg_navbar_bottom a:hover {
    background-color: #ddd; 
    color: black;
}
*/

.sdg_navbar_bottom_8:hover {
    background-color: #A21942; /* Hover effect */
    color: white;
}

.sdg_navbar_bottom_9:hover {
    background-color: #FD6925; /* Hover effect */
    color: white;
}

.sdg_navbar_bottom_12:hover {
    background-color: #BF8B2E; /* Hover effect */
    color: white;
}

.sdg_navbar_bottom_13:hover {
    background-color: #3F7E44; /* Hover effect */
    color: white;
}


.sdg_navbar_bottom a.active {
    background-color: #04AA6D; /* Active tab color */
    color: white;
}

.WrapOnWord {
    overflow-wrap: break-word;
}

.ESG_Native {
	color:var(--green);


}

.ESG_Native:hover {
	color:#E79227;
    cursor: pointer;


}

.AfCFTA {
	color:var(--green)!important;
    display: inline!important;
}


.AfCFTA:hover {
	color:#E79227!important;
    cursor: pointer!important;
}

.FMCG {
	color:var(--green)!important;
    display: inline!important;
}


.FMCG:hover {
	color:#E79227!important;
    cursor: pointer!important;
}


/* Segment card icons */
.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  background: #fdfaf4;
  border: 1px solid #e2d6bc;
}

.card-icon--salon {
  background: #ffeef7;
  border-color: #f4c4dd;
}

.card-icon--investor {
  background: #e9f4ff;
  border-color: #bcd7ff;
}

.card-icon--brand {
  background: #e9ffef;
  border-color: #bde8c4;
}

/* Segment illustrations */
.segment-illustration {
  margin: 0.6rem 0 0.9rem;
  border-radius: 0.9rem;
  padding: 0.55rem 0.65rem;
  background: #fdfaf4;
  border: 1px solid #e2d6bc;
}

.segment-illustration svg {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

/* Slightly different tints per segment */
.segment-illustration--salon {
  background: #ffeef7;
  border-color: #f4c4dd;
}

.segment-illustration--investor {
  background: #e9f4ff;
  border-color: #bcd7ff;
}

.segment-illustration--brand {
  background: #e9ffef;
  border-color: #bde8c4;
}



/*
.kente-strip {
  margin: 2.5rem 0 1.5rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #E3D8BE;
  background: #f7f1e3;
}
*/

.kente-strip {
    margin: 15px auto;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #E3D8BE;
    background: #f7f1e3;
    width: 90%;
}

.kente-strip svg {
  width: 100%;
  height: 52px;
  display: block;
}

.ring-illustration {
  max-width: 120px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}


    /* Responsive */
    @media (max-width: 880px) {
      .hero-grid,
      .two-col,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero {
        padding-top: 3rem;
      }
      .hero-metrics {
        gap: 1rem;
      }
      .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .impact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

	@media (max-width: 640px) {
		.nav-links {
			display: none;
		}
		.cards {
			grid-template-columns: minmax(0, 1fr);
		}
		.impact-strip {
			grid-template-columns: minmax(0, 1fr);
		}
		.steps {
			grid-template-columns: minmax(0, 1fr);
		}
		
		.sdg_wrap ul {
			width: 100%; 
		}

		.sdg_wrap {
			width: 100%; 
		}

		.sdg_img_wrap {
			width: 200px;
			height: 406px;
			padding: 10px;
		}
		
	}

	
	.nav-login {
		padding: 0.4rem 0.9rem;
		border-radius: 999px;
		border: 1px solid #c8c0a8;
		font-size: 0.8rem;
		background: transparent;
		color: var(--ink);
		opacity: 0.85;
	}
	
	.nav-login:hover {
		opacity: 1;
		border-color: var(--green);
		color: var(--green);
	}
		
/* Login modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 9999;
}

.modal {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 1.2rem;
  box-shadow: 0 25px 80px rgba(0,0,0,0.18);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 1.1rem 1.2rem 0.6rem;
}

.modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.modal-subtitle {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: #666;
  max-width: 26rem;
}

.modal-close {
  border: 1px solid #d3c8af;
  background: #fffdf7;
  color: #333;
  border-radius: 0.8rem;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
}

.modal-body {
  padding: 0.6rem 1.2rem 1.2rem;
}


.role-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0.6rem 0 1rem;
}

.role-tab {
  border: 1px solid #d3c8af;
  background: #fffdf7;
  border-radius: 0.9rem;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  text-align: left;
}

.role-tab small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 0.2rem;
}

.role-tab strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}

.role-tab.active {
  border-color: rgba(23,118,87,0.6);
  box-shadow: 0 10px 25px rgba(12, 86, 63, 0.12);
}

.role-tab.active strong {
  color: var(--green);
}

.role-hint {
  border: 1px dashed #d3c8af;
  border-radius: 0.9rem;
  padding: 0.75rem 0.85rem;
  background: #fdfaf4;
  color: #444;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.modal-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  align-items: center;
}

.btn-secondary {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #c8c0a8;
  background: rgba(255,255,255,0.9);
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
}

.small-note {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: #777;
}

/* Accessibility: show modal when active */
.modal-backdrop.active {
  display: flex;
}


.disabled-div {
  pointer-events: none; /* Disables mouse events */
  opacity: 0.5;         /* Visually indicates the disabled state */
  cursor: not-allowed;  /* Changes the cursor */
}

/* ================================
   Products – Video Section
================================ */

.products-video {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.products-video h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2d1f; /* deep natural green */
}

.products-video p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5a4a;
}

/* ================================
   Responsive Video Embed
================================ */

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.videoIfrm {
	width: 600px;
	height: 300px;
	
}
/* ================================
   Mobile Adjustments
================================ */

@media (max-width: 768px) {
  .products-video {
    margin: 3rem auto;
  }

  .products-video h2 {
    font-size: 1.6rem;
  }

  .products-video p {
    font-size: 1rem;
  }

	.videoIfrm {
		width: 100%;
		height: 150px;
	}

}	
	
	