:root {
	--color-primary: #2584ff;
	--color-secondary: #00d9ff;
	--color-accent: #ff3400;
	--color-headings: #1b0760;
	--color-body: #918ca4;
	--color-body-darker: #5c5577;
	--color-border: #ccc;
	--border-radius: 30px;
	--color-green: #009e22;
}

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

/* Topography */
::selection {
	background: var(--color-primary);
	color: #fff;
}
html {
	font-size: 62.5%;
}

body {
	font-family: Inter, Arial, Helvetica, sans-serif;
	color: var(--color-body);
	line-height: 1.5;
	font-size: 2.4rem;
}

h1,
h2,
h3 {
	color: var(--color-headings);
	margin-bottom: 1rem;
	line-height: 1.1;
}

h1 {
	font-size: 7rem;
}

h2 {
	font-size: 4rem;
}

h3 {
	font-size: 3rem;
	font-weight: 500;
}

p {
	margin-top: 0;
}

@media screen and (min-width: 1024px) {
	body {
		font-size: 1.8rem;
	}

	h1 {
		font-size: 8rem;
	}

	h2 {
		font-size: 4rem;
	}

	h3 {
		font-size: 2.4rem;
	}
}

/* Links */

a {
	text-decoration: none;
}

.link-arrow {
	color: var(--color-accent);
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: bold;
}

.link-arrow::after {
	content: "-->";
	margin-left: 5px;
	transition: margin 0.15s;
}

.link-arrow:hover::after {
	margin-left: 10px;
}

@media screen and (min-width: 1024px) {
	.link-arrow {
		font-size: 1.5rem;
	}
}

/* Badges */

.badge {
	border-radius: 20px;
	padding: 0.5rem 2rem;
	font-weight: 600;
	white-space: nowrap;
	font-size: 2rem;
}

.badge--primary {
	background: var(--color-primary);
	color: #fff;
}

.badge--secondary {
	background: var(--color-secondary);
	color: #fff;
}

.badge--small {
	font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
	.badge {
		font-size: 1.5rem;
	}

	.badge--small {
		font-size: 1.2rem;
		padding: 0.5rem 1.5rem;
	}
}

/* Lists */

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

.list--inline .list__item {
	display: inline-block;
	margin-right: 2rem;
}

.list--tick {
	list-style-image: url(../images/tick.svg);
	padding-left: 3rem;
	color: var(--color-headings);
}

.list--tick .list__item {
	padding-left: 0.5rem;
	margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
	.list--tick .list__item {
		padding-left: 0;
	}
}

/* Icons */

.icon {
	width: 40px;
	height: 40px;
}

.icon--primary {
	fill: var(--color-primary);
}

.icon--small {
	width: 30px;
	height: 30px;
}

.icon--white {
	fill: #fff;
}

.icon--black {
	fill: #000;
}

.icon-container {
	background: #f3f9fa;
	width: 64px;
	height: 64px;
	border-radius: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 1rem 0;
}

.icon-container--accent {
	background: var(--color-accent);
}

/* Buttons */

.btn {
	font-size: 1.8rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 2rem 4vw;
	text-align: center;
	outline: 0;
	border: 0;
	border-radius: 40px;
	cursor: pointer;
	white-space: nowrap;
}

.btn .icon {
	width: 2rem;
	height: 2rem;
	margin-right: 1rem;
	vertical-align: middle;
}

.btn--primary {
	background: var(--color-primary);
	color: #fff;
}

.btn--primary:hover {
	background: #3a8ffd;
}

.btn--secondary {
	background: var(--color-secondary);
	color: #fff;
}

.btn--secondary:hover {
	background: #00c8eb;
}

.btn--accent {
	background: var(--color-accent);
	color: #fff;
}

.btn--accent:hover {
	background: #ec3000;
}

.btn--block {
	width: 100%;
	display: inline-block;
}

.btn--stretched {
	padding-left: 6rem;
	padding-right: 6rem;
}

.btn--outline {
	background: #fff;
	color: var(--color-headings);
	border: 2px solid var(--color-headings);
}

.btn--outline:hover {
	background: var(--color-headings);
	color: #fff;
}

@media screen and (min-width: 1024px) {
	.btn {
		font-size: 1.5rem;
	}
}

/* Inputs */

.input {
	padding: 1.5rem 3.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	outline: 0;
	color: var(--color-headings);
	font-size: 2rem;
}

::placeholder {
	color: #cdcbd7;
}

.input-group {
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	display: flex;
}

.input-group .input {
	border: 0;
	flex-grow: 1;
	padding: 1.5rem 2rem;
	width: 0;
}

.input-group .btn {
	margin: 4px;
}

@media screen and (min-width: 1024px) {
	.input {
		font-size: 1.5rem;
	}
}

/* Cards */

.card {
	border-radius: 7px;
	box-shadow: 0 0 20px 10px #f3f3f3;
	overflow: hidden;
}

.card__header,
.card__body {
	padding: 2rem 3rem;
}

.card--primary .card__header {
	background: var(--color-primary);
	color: #fff;
}

.card--secondary .card__header {
	background: var(--color-secondary);
	color: #fff;
}

.card--primary .badge--primary {
	background: #126de4;
}

.card--secondary .badge--secondary {
	background: #02cdf1;
}

/* Plans */

.plan {
	transition: transform 0.2s ease-out;
}

.plan__name {
	color: #fff;
	margin: 0;
	font-weight: 500;
	font-size: 2.4rem;
}

.plan__price {
	font-size: 6rem;
}

.plan__billing-cycle {
	font-size: 2.4rem;
	font-weight: 300;
	opacity: 0.8;
	margin-right: 1rem;
}

.plan__description {
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: 1px;
	display: block;
}

.plan .list__item {
	margin-bottom: 2rem;
}

.plan--popular .card__header {
	position: relative;
}

.plan--popular .card__header::before {
	content: url(../images/popular.svg);
	width: 40px;
	display: inline-block;
	position: absolute;
	top: -6px;
	right: 5%;
}

.plan:hover {
	transform: scale(1.05);
}

.plan--popular:hover {
	transform: scale(1.15);
}

@media screen and (min-width: 1024px) {
	.plan--popular {
		transform: scale(1.1);
	}

	.plan__name {
		font-size: 1.4rem;
	}

	.plan__price {
		font-size: 5rem;
	}

	.plan__billing-cycle {
		font-size: 1.6rem;
	}

	.plan__description {
		font-size: 1.7rem;
	}
}

/* Media */

.media {
	display: flex;
	margin-bottom: 4rem;
}

.media__title {
	margin: 0;
}

.media__body {
	margin: 0 2rem;
}

.media__image {
	margin-top: 1rem;
}

/* Quotes */

.quote {
	font-size: 3rem;
	font-style: italic;
	color: var(--color-body-darker);
	line-height: 1.3;
}

.quote__text::before {
	content: open-quote;
}

.quote__text::after {
	content: close-quote;
}

.quote__author {
	font-size: 3rem;
	font-weight: 500;
	font-style: normal;
	margin-bottom: 0;
}

.quote__organizaton {
	color: var(--color-headings);
	opacity: 0.4;
	font-size: 2rem;
	font-style: normal;
}

.quote__line {
	position: relative;
	bottom: 10px;
}

@media screen and (min-width: 1024px) {
	.quote {
		font-size: 2rem;
	}

	.quote__author {
		font-size: 2.4rem;
	}

	.quote__organizaton {
		font-size: 1.6rem;
	}
}

/* Grids */
.grid {
	display: grid;
}

@media screen and (min-width: 768px) {
	.grid--1x2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1024px) {
	.grid--1x3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Testimonials */

.testimonial {
	padding: 3rem;
}

.testimonial__image {
	position: relative;
}

.testimonial__image > img {
	width: 100%;
}

.testimonial__image > .icon-container {
	position: absolute;
	top: 3rem;
	right: -32px;
}

@media screen and (min-width: 768px) {
	.testimonial .quote,
	.testimonial .quote__author {
		font-size: 2.4rem;
	}

	.testimonial .quote {
		margin-left: 6rem;
	}
}

/* Callouts */
.callout {
	padding: 4rem;
	border-radius: 5px;
}

.callout--primary {
	background: var(--color-primary);
	color: #fff;
}

.callout__heading {
	color: #fff;
	margin-top: 0;
	font-size: 3rem;
}

.callout .btn {
	justify-self: center;
	align-self: center;
}

.callout__content {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.callout .grid--1x2 {
		grid-template-columns: 1fr auto;
	}

	.callout__content {
		text-align: left;
	}

	.callout .btn {
		justify-self: start;
		margin: 0 2rem;
	}
}

/* Collapsibles */
.collapsible__header {
	display: flex;
	justify-content: space-between;
}

.collapsible__heading {
	margin-top: 0;
	font-size: 3rem;
}

.collapsible__chevron {
	transform: rotate(-90deg);
	transition: transform 0.3s;
}

.collapsible__content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s;
}

.collapsible--expanded .collapsible__chevron {
	transform: rotate(0);
}

.collapsible--expanded .collapsible__content {
	max-height: 100vh;
	opacity: 1;
}

/* Blocks */
.block {
	--padding-vertical: 6rem;
	padding: var(--padding-vertical) 2rem;
}

.block__heading {
	margin-top: 0;
}

.block__header {
	text-align: center;
	margin-bottom: 4rem;
}

.block--dark {
	background: #000;
	color: #7b858b;
}

.block--dark h1,
.block--dark h2,
.block--dark h3 {
	color: #fff;
}

.block--skewed-right {
	padding-bottom: calc(var(--padding-vertical) + 4rem);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);
}

.block--skewed-left {
	padding-bottom: calc(var(--padding-vertical) + 4rem);
	clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.container {
	max-width: 1140px;
	margin: 0 auto;
}

/* Navigation Bar */
.nav {
	background: #fff;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 1rem;
	align-items: center;
}

.nav__list {
	width: 100%;
	margin: 0;
}

.nav__item {
	padding: 0.5rem 2rem;
	border-bottom: 1px solid #222;
}

.nav__item > a {
	color: #000;
	transition: color 0.3s;
}

.nav__item > a:hover {
	color: #000;
}

.nav__toggler {
	opacity: 0.5;
	transition: box-shadow 0.3s;
	cursor: pointer;
}

.nav.collapsible--expanded .nav__toggler {
	opacity: 1;
	box-shadow: 0 0 0 3px #666;
	border-radius: 5px;
}

.nav__brand {
	transform: translateY(5px);
}

@media screen and (min-width: 768px) {
	.nav__toggler {
		display: none;
	}

	.nav__list {
		width: auto;
		display: flex;
		font-size: 1.6rem;
		max-height: 100%;
		opacity: 1;
	}

	.nav__item {
		border: 0;
	}
}

.navbar{
    height: 70px;
    width: 100%;
    padding: 19px 30px;
    background-color: #ffffff;
    position: relative;
  }
  .navbar .nav-header{
    display: inline;
  }
  .navbar .nav-header .nav-logo{
    display: inline-block;
    margin-top: -20px;
  }
  .navbar .nav-links{
    display: inline;
    float: right;
    font-size: 18px;
  }
   
  .navbar .nav-links .loginBtn{
    display: inline-block;
    padding: 5px 15px;
    margin-left: 20px;
    font-size: 17px;
    color: rgb(9, 14, 90);
  }
  .navbar .nav-links a {
    padding: 10px 12px;
    text-decoration: none;
    font-weight: 550;
    color: #1b0760;
  }
  /* Hover effects */
  .navbar .nav-links a:hover{
    background-color: rgba(0, 0, 0, 0.3);
  }
   
  /* responsive navbar toggle button */
  .navbar #nav-check, .navbar .nav-btn{
    display: none;
  }

  .org-name{
	font-size: 2rem;
	margin-top: -5.5rem !important;
	margin-left: 7rem;
	position: fixed;
	color: var(--color-green);
  }
   
  @media (max-width:700px) {
    .navbar .nav-btn{
      display: inline-block;
      position: absolute;
      top: 0px;
      right: 0px;
    }
    .navbar .nav-btn label {
      display: inline-block;
      width: 55px;
      height: 55px;
      padding: 25px;
    }
    .navbar .nav-btn label span {
      display: block;
      height: 10px;
      width: 25px;
      border-top: 3px solid #eee;
    }
    .navbar .nav-btn label:hover, .navbar #nav-check:checked ~ .nav-btn label {
      background-color: #5c5577;
      transition: all 0.5s ease;
    }
    .navbar .nav-links{
      position: absolute;
      display: block;
      text-align: center;
      /* width: 50%; */
      background-color: #5c5577;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 70px;
      right: 0px;
	  z-index: 99 !important;
    }
    .navbar .nav-links a {
      display: block;
      color: white;
    }
   
    /* when nav toggle button not checked */
    .navbar #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
   
    /* when nav toggle button is checked */
    .navbar #nav-check:checked ~ .nav-links {
      height: calc(100vh - 70px);
      overflow-y: auto;
    }
    .navbar .nav-links .loginBtn {
      padding: 10px 40px ;
      margin: 20px;
      font-size:  18px;
      font-weight: bold;
      color: rgb(9, 14, 90);
    }
    /* Responsive dropdown code */
    .navbar .nav-links .dropdown, .navbar .nav-links .dropdown2 {
      float: none;
      width: 100%;
    }
    .navbar .nav-links .drop-content, .navbar .nav-links .drop-content2 {
      position: relative;
      background-color: rgb(220, 220, 250);
      top: 0px;
      left: 0px;
    }
    /* Text color */
    .navbar .nav-links .drop-content a {
      color: rgb(9, 14, 90);
    }  
   
  }
   
  /* Dropdown menu CSS code */
  .dropdown{
    position: relative;
    display: inline-block;
  }
  .drop-content, .drop-content2 {
    display: none;
    position: absolute;
    background-color: #ccc;
    min-width: 120px;
    font-size: 16px;
    top: 34px;
    z-index: 1;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
  }
  /* on hover show dropdown */
  .dropdown:hover .drop-content, .dropdown2:hover .drop-content2 {
    display: block;
  }
  /* drondown links */
  .drop-content a {
    padding: 12px 10px;
    border-bottom: 1px solid rgb(197, 197, 250);
    display: block;
    transition: all 0.5s ease !important;
  }
  .dropBtn .drop-content a:hover {
    background-color: rgb(230, 230, 230);
  }
  .dropdown:hover .dropBtn, .dropdown2:hover .dropBtn2 {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .dropdown2 .drop-content2 {
    position: absolute;
    left: 120px;
    top: 126px;
  }
  .dropBtn2 i {
    margin-left: 15px;
  }

  .logo-heading {
      margin-top: .0rem;
      text-decoration: none !important;
      border-style: none;
      color: #739f40;
  }

  .grid-org-name{
	display: flex;
	position: absolute;
	margin-top: -5.3rem;
	margin-left: 8rem;
  }

  .org-name-1{
	font-size: 2rem;
	color: var(--color-green);
}

.org-name-2{
	font-size: 2rem;
	color: var(--color-green);
	margin-left: -1rem;
}

@media screen and (max-width:340px) {
    .grid-org-name{
	    display: none;
   }

   .org-name-1{
	display: none;
}

.org-name-2{
	font-size: 2rem;
	display: none;
}
}

  @media screen and (max-width:768px) {
	.grid-org-name{
		display: block;
	}

	.org-name-1{
		font-size: 1.5rem;
		margin-bottom: 0rem;
		color: var(--color-green);
		margin-left: -2rem;
		
		margin-top: -1rem;
	}

	.org-name-2{
		font-size: 1.5rem;
		color: var(--color-green);
		margin-left: -2rem;
	}

   .logo-heading {
      margin-top: .0rem;
      text-decoration: none !important;
      border-style: none;
      color: #739f40;
      font-size: 1rem;
      width: 100%;
      margin-top: .7rem;
  } 
  }

  @media screen and (max-width:997px) {
    .logo-head{
        display: none;
      }
  }

  .logo-head{
      color: #739f40;
  }

/* Hero */

.hero__tagline {
	font-size: 2rem;
	color: #b9c3cf;
	letter-spacing: 1px;
	margin: 2rem 0 5rem;
}

.hero__image {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.hero {
		padding-top: 0;
	}

	.hero__content {
		text-align: left;
		align-self: center;
	}
}

/* Domain Block */
.block-domain .input-group {
	box-shadow: 0 0 30px 20px #e6ebee;
	border: 0;
	margin: 4rem auto;
}

.block-domain__prices {
	color: var(--color-headings);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 6rem);
	font-size: 2rem;
	font-size: 2rem;
	font-weight: 600;
	justify-items: center;
	max-width: 700px;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.block-domain__prices {
		grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
	}
}

/* Plans Block */
.block-plans .grid {
	gap: 8rem 4rem;
}

.block-pans .card {
	max-width: 500px;
	margin: 0 auto;
}

/* Features */
.feature__heading {
	margin: 1rem 0;
}

.feature {
	gap: 4rem 2rem;
	margin: 12rem 0;
}

.feature__image {
	width: 100%;
}

.feature:first-of-type {
	margin-top: 6rem;
}

@media screen and (min-width: 768px) {
	.feature:nth-of-type(even) .feature__content {
		order: 2;
	}
}

/* Showcase Block */
.block-showcase__image > img {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.block-showcase .grid {
		grid-template-columns: 50% 50%;
	}
	.block-showcase__image {
		width: auto;
	}

	.block-showcase__image > img {
		max-width: 700px;
		justify-self: end;
	}
}

/* Footer */
.footer {
	background: #232323;
	padding-top: 10rem;
}

.footer a {
	color: #777;
	transition: color 0.3s;
}

.footer a:hover {
	color: #fff;
}

.footer__section .list {
	margin: 0;
}

.footer__section {
	padding: 3rem;
	border-bottom: 1px solid #393939;
}

.footer__heading {
	text-transform: uppercase;
	font-weight: 600;
}

.footer__brand {
	margin-top: 5rem;
	text-align: center;
}

.footer__brand img {
	/* consider refactoring this and applying it to all images */
	width: 100%;
	max-width: 230px;
}

.footer__copyright {
	font-size: 2.1rem;
	color: #fff;
	opacity: 0.3;
}

@media screen and (min-width: 768px) {
	.footer__sections {
		grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
	}

	.footer .collapsible__chevron {
		display: none;
	}

	.footer .collapsible__content {
		opacity: 1;
		max-height: 100%;
	}

	.footer__brand {
		margin-top: 1rem;
		order: -1;
	}

	.footer__copyright {
		font-size: 1.5rem;
	}

	.footer__section {
		border: 0;
	}

	.footer__heading {
		font-size: 1.6rem;
	}
}

/* Sign-up Callout */

.callout-signup {
	transform: translateY(5rem);
}

/*View News */
.grid-view-news {
	display: grid;
	grid-template-columns: 800px 400px;
	gap: 100px;
	justify-content: center;
}

.page-heading {
	height: 100px;
	background: #c9c2c2;
}

.page-heading-title {
	text-align: center;
	padding-top: 2rem;
	font-size: 40px;
	color: white;
}
.newsline-image {
	width: 100%;
	margin-left: 10px;
	margin-bottom: 20px;
}

.newsline-title {
	width: 100%;
	overflow-wrap:break-word;
	margin-left: 10px;
	color: #1b0760;
	color: var(--color-headings);
	font-size: xx-large;
}

.newsline-content {
	overflow-wrap:break-word;
	margin-bottom: 30px;
	word-spacing: 6px;
	line-height: 32px;
	padding-left: 30px;
	text-align: justify;
	font-size: large;
}

.news-card-title {
	overflow-wrap:break-word;
	margin-left: 15px;
	margin-right: 10px;
	margin-top: 0px;
	margin-bottom: 30px;
	font-size: x-large;
	color: #1b0760;
}

.news-card {
	width: 100%;
	background: #c3c4bd !important;
	color: #1b0760;
	margin-left: 0px;
	margin-top: 5rem;
	margin-bottom: 5rem;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: 'Trebuchet MS', sans-serif;
}

.date-writer {
	display: flex;
}

.calendar-icon {
	padding-left: 10px;
}

.news-date {
	margin-left: 10px;
	margin-top: 8px;
	color: #1b0760;
}

.news-writer {
	margin-left: 40rem;
	margin-top: 10px;
}

.news-up-to-date-heading {
	margin-top: 50px;
	margin-left: 0rem;
}

.date-icon-and-date {
	display: flex;
}

.date-and-icon {
	display: flex;
	margin-left: 10px;
	padding-top: 10px;
}

.date-link {
	display: flex;
	text-decoration: none;
}

.news-comments {
	text-align: center;
}

.flex-container {
	display: flex;
	margin-top: 10px;
}

/*Comments Form */
.form {
	display: flex;
	flex-direction: column;
	margin-left: 50px;
	margin-right: 50px;
}

.form-border {
	background: -webkit-linear-gradient(right, #a6f77b, #2ec06f);
	height: 1px;
	width: 100%;
}

.form-content {
	background: #fbfbfb;
	border: none;
	outline: none;
	padding-top: 14px;
	display: table-cell;
	width: 100%;
}

.form-group {
	margin-bottom: 20px;
}

.grid-comments-form {
	display: grid;
	grid-template-columns: repeat(3, 10fr);
}

.submit-comment-button {
	height: 60px;
	width: 200px;
	border-radius: 5px;
	border-style: none;
	margin-bottom: 30px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.up-icon-arrow {
		display: none;
	}

	.grid-view-news {
		display: block;
		width: 100%;
		justify-content: center;
		gap: 0 !important;
	}

	.news-card-title {
		overflow-wrap:break-word;
		margin-left: 15px;
		margin-right: 10px;
		margin-top: 0px;
		margin-bottom: 30px;
		font-size: large !important	;
		color: #1b0760;
	}
	
	.newsline-content {
		overflow-wrap:break-word;
		margin-bottom: 30px;
		word-spacing: 6px;
		line-height: 32px;
		padding-left: 30px;
		text-align: justify;
		font-size: medium;
	}

	.news-card {
		width: 98%;
		margin-left: 5px;
		background: #c3c4bd !important;
		color: #1b0760;
		margin-top: 5rem;
		margin-bottom: 5rem;
		padding-top: 10px;
		padding-bottom: 10px;
		font-family: 'Trebuchet MS', sans-serif;
	}
}

/*--------HOME-NEWS-SECTION------------------*/
.grid-home-news {
	display: grid;
	grid-template-columns: repeat(3, 400px);
	gap: 20px;
	padding-top: 0px;
	margin-left: 40px;
	justify-content: center;
}

.home-news-card {
	width: 100%;
	background: #c3c4bd !important;
	color: #1b0760;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: 'Trebuchet MS', sans-serif;
}

@media screen and (max-width: 768px) {
.homepage-articles {
   padding-bottom: 5px !important;
}

@media screen and (max-width:768px) {
	.facebook-area{
		margin-left: auto;
		margin-right: auto;
	}

	.twitter-area{
		margin-left: auto;
		margin-right: auto;
	}
}

.grid-home-news {
	display: block;
	width: 80%;
	justify-content: center;
} 

.home-news-card {
	width: 100%;
	background: #c3c4bd !important;
	color: #1b0760;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: 'Trebuchet MS', sans-serif;
}

.owl-carousel {
	width: 90%;
}

.updated-news {
	padding-top: 0;
	padding-left: 10px !important;
	font-size: 2.5rem !important;
}

.comsip-on-twitter {
	padding-top: 30px;
	width: 90%;
}

.comsip-on-facebook {
	width: 90%;
}

.facebook-iframe {
	width: 100%;
}

.twitter-timeline-a-tag {
	width: 100%;
}

.comsip-news-date {
	font-size: 1.3rem;
	margin-left: -50px;
}

.comsip-news-writer {
	font-size: 1.3rem;	
}

.comsip-news-heading {
	font-size: 1.9rem !important;
}

.comsip-news-image {
	width: 100%;
}

.read-more-button {
	font-size: 1.8rem;
}

.comsip-media {
	font-size: 2.5rem !important;
	padding-left: 20px !important;
	margin-top: 0px;
}

.card-facebook {
	margin-top: 30px !important;
	width: 16rem !important;
}

.card-twitter {
	margin-top: 30px !important;
	width: 16rem !important;
	margin-left: 0;
	display: flex;
}

.twitter-image {
  margin-left: 50px;
  margin-bottom: 20px;
}

.facebook-image {
	margin-left: 4rem;
	margin-top: 0;
}

.announcements-text {
	margin-left: 30px;
	margin-top: 0;
}

/*Media Query for View News*/
.grid-view-news {
	display: grid;
	grid-template-columns: auto;
}

.newsline-title {
	padding-left: 5px;
	padding-right: 10px;
	font-size: 2rem !important;
	overflow-wrap: break-word;  
    word-wrap: break-word; 
    word-break: break-word;
}

.our-newsline-with-title{
	padding-left: 1rem;
	padding-right: 1rem;
	color: #000;
	font-weight: bold;
	font-size: 2rem !important;
	overflow-wrap: break-word;  
    word-wrap: break-word; 
    word-break: break-word;
}

.newsline-content {
	width: 95%;
	font-size: medium;
}

.news-writer {
	margin-left: 0rem;
	font-size: medium;
	margin-top: 10px;
    margin-right: 1.5rem;
}

.news-date {
	font-size: medium;
}

.date-writer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
}

.date-icon-and-date {
	display: flex;
}

.news-up-to-date-heading {
	margin-top: 0px;
	font-size: 2rem !important;
	margin-left: 2rem;
}

.news-card-title {
	font-size: 2rem
}

.form {
	margin-left: 2.4rem;
	margin-top: 3rem;
}

.news-comments {
	text-align: left;
	margin-left: 30px;
	font-size: larger;
}

.submit-comment-button {
	width: 250px;
}

.comsip-on-facebbook-title {
	text-align: center;
	font-size: x-large !important;
	color: var(--color-headings);
	padding-top: 30px !important;
	padding-bottom: 0px;
}

.comsip-on-twitter-title {
	text-align: center;
	font-size: x-large !important;
	color: var(--color-headings);
	padding-bottom: 0px;
	padding-top: 0px;
}

.updated-articles-heading {
	font-size: x-large !important;
	color: var(--color-headings);
	text-align: center;
}
}

.updated-news {
	font-size: 3rem;
	margin-left: 10rem;
}

.social-media-text {
	font-size: 3rem;
}

.announcements-text {
	font-size: 3rem;
}

.date-writer {
	display: flex;
	justify-content: space-between;
	margin-top: 13px;
}

.our-news-view-image{
	width: 800px;
}

.view-article-newsline-content{
	margin-top: 2rem;
	font-size: 2rem !important;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

.news-writer-article{
	margin-top: -5.5rem;
	margin-left: 20rem; 
	font-weight: bold;
}

.news-articles-date-writer-columns{
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
} 

.news-view-article-date{
	margin-top: -.3rem;
}

.article-writer-text{
	font-weight: bold;
	color: #000;
}

@media screen and (max-width:768px) {
	.news-view-article-date{
		margin-top: -.3rem;
		font-size: 1.8rem;
	}

	.article-writer-text{
		font-weight: bold;
		color: #000;
		font-size: 1.8rem;
	}

	.news-articles-date-writer-columns{
		display: block;
	} 

	.news-up-to-date-heading {
		margin-top: 0px;
		font-size: 2rem !important;
	}

	.grid-view-news {
		display: block;
	}

	.our-news-view-image{
		width: 90%;
		margin-left: 1.5rem;
		margin-right: auto;
	}

	.view-article-newsline-content{
		margin-top: 2rem;
		font-size: 1.8rem !important;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
	}
}

.comsip-news-image {
	width: 100%;
	height: 200px;
}

.comsip-news-heading  {
	margin-left: 10px;
	margin-right: 10px;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	font-size: 2rem !important;
}

.comsip-news-date {
	margin-top: 7px;
}

.comsip-news-writer {
	margin-top: 7px;
	margin-right: 10px;
}

.homepage-articles {
	background: #e6e1e1;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 40px;
}

.news-card {
	background: white;
	margin-top: 0;
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
	.news-card {
		background: white;
		margin-top: 0;
		margin-bottom: 0;
		width: 96%;
	}
}

.read-more-button {
	height: 6rem;
	width: 15rem;
	background: #9d9999;
	text-decoration: none;
	border-style: none;
	margin-bottom: 20px;
	margin-left: 10px;
	margin-top: 10px;
	border-radius: 15px;
	cursor: pointer;
}

.twitter-image {
	width: 95%;
}

.facebook-image {
	margin-bottom: 50px;
}

.comsip-media {
	margin-left: 12px;
}

.card-facebook {
	width: 13rem;
}

.facebook-text {
    padding-left: 0px;
	margin-left: 0px;
}

.card-twitter {
	width: 13rem;
	margin-left: -5px;
}

.twitter-text {
	padding-left: 0px;
	margin-left: 0px;
}

@media screen and (max-width: 768px) {
	.facebook-text {
		padding-left: 1rem;
		margin-left: 1rem;
	}
	
	.twitter-text {
		padding-left: 0rem;
		margin-left: 0px;
	}
}

.updated-news {
	margin-left: 14px;
}

.comsip-on-facebook {
	margin-left: 30px;
}

.comsip-on-facebbook-title {
	text-align: left;
	font-size: xx-large;
	color: var(--color-headings);
	padding-top: 0px;
	padding-bottom: 0px;
}

.comsip-on-twitter-title {
	text-align: left;
	font-size: xx-large;
	color: var(--color-headings);
	padding-bottom: 0px;
	padding-top: 0px;
}

.updated-articles-heading {
	font-size: xx-large !important;
	color: var(--color-headings);
	text-align: left;
}

.articles-heading {
	text-align: center;
	color: var(--color-headings);
	font-size: xx-large;
	padding-top: 40px;
}

@media screen and (max-width: 768px) {
	.articles-heading {
		text-align: center;
		color: var(--color-headings);
		font-size: large;
		padding-top: 40px;
	}

	.updated-articles-heading {
		font-size: xx-large;
		color: var(--color-headings);
		text-align: center;
	}

	.comsip-on-facebook {
		margin-left: 50px;
		margin-top: -70px;
		text-align: center;
	}

	.comsip-on-twitter {
		margin-top: -40px;
		margin-left: 80px;
		text-align: center;
		margin-bottom: 30px;
	}
}

/* -----------ABOUT US---------------------------------*/
.about-us {
	text-align: center;
	font-size:xx-large;
	padding-top: 40px;
	margin-top: 0px;
}

.about {
	background: #bfc7bf;
	margin-top: 0px;
}

.about-content {
	color: var(--color-headings);
	text-align: center;
	padding: 10px;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	font-size: 2rem !important;
}

.about-card-content {
	padding: 20px;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	font-size: 2rem !important;
	color: var(--color-headings);
}

.about-card {
	background: white;
	margin-bottom: 30px;
	text-align: center;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	margin-left: 1rem;
	margin-right: 1rem;
}

.about-image {
	width: 100%;
	height: 250px;
}

.about-title {
	text-align: center;
	font-size:x-large;
}

.objectives-grid{
	display: flex;
	margin-left: 2rem;
	margin-right: auto;
}

.objective-button{
	width: 30px;
	height: 30px;
	background: var(--color-green);
	color: #fff;
	border: none;
}

.objective-content{
	color: var(--color-headings);
	font-size: 2rem !important;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

.wrap-objectives{
	margin-top: 3.4rem;
	margin-bottom: 3rem;
}

.mission-icon{
	font-size: 8rem !important;
	margin-top: 2rem;
	margin-bottom: 0rem;
}

.objectives-icon{
	font-size: 8rem !important;
	margin-top: 2rem;
	margin-bottom: 0rem;
}

.vision-icon{
	font-size: 8rem !important;
	margin-top: 2rem;
	margin-bottom: 0rem;
}

.board-image{
	width: 100%;
	/* margin-left: 33rem; */
	padding-left: 2rem;
	padding-right: 2rem;
	margin-bottom: 4rem;
	
}

.board-text{
	text-align: center;
	color: var(--color-green);
	font-weight: bold;
	padding-top: 2rem;
	padding-bottom: 1rem;
}

.union-card{
	background: #fff;
	margin-left: 33rem;
	margin-right: 30rem;
	width: 50%;
	margin-bottom: 4rem
}

@media screen and (max-width: 768px) {
	.union-card{
		background: #fff;
		width: 100%;
		margin-bottom: 4rem;
		margin-left: 0rem;
		margin-right: 0rem;
	}

	.board-text{
		text-align: center;
		color: var(--color-green);
		font-weight: bold;
		font-size: 1.5rem;
	}

	.board-image{
		width: 100%;
		margin-left: 0rem;
		margin-right: 0rem;
		margin-bottom: 2rem;
	}

	.about-us {
		text-align: center;
		font-size:large;
		padding-top: 40px;
	}
	
	.about-content {
		color: #1b0760;
		text-align: center;
		padding: 10px;
		width:100%;
	}

	.about-image{
		width: 90%;
		margin-top: 2rem;
	}

	.about-grid {
		display: grid;
		grid-template-columns: 1fr;
		padding-bottom: 10px;
		gap: 10px;
		margin-left: 0px;
	}

	.about-card {
		background: white;
		width: 98%;
		margin-left: 1rem;
		text-align: center;
	}

	.about-title {
		text-align: center;
		font-size:large;
	}

	.about-card-content {
		color: hsl(253, 86%, 20%);
		text-align: center;
		font-size: medium;
		text-align: justify;
	}
}

/* ------------SERVICES ----------------------------------*/
.services-heading {
	text-align: center;
	padding-top: 40px;
	font-size:xx-large;
	color: #1b0760;
}

.services-content {
	text-align: center;
	padding-top: 20px;
	padding-left: 10px;
	padding-right: 10px;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	font-size: 2rem !important;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 300px);
	gap: 20px;
	margin-bottom: 50px;
	margin-left: 20px;
	margin-top: 30px;
	justify-content: center;
}

.services-card {
	background: var(--color-border);
	margin-left: 30px;
}

.services-title {
	text-align: center;
	font-size: 2rem !important;
	color: #1b0760;
	padding-left: 15px;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

.card-services-content {
	padding-left: 20px;
	padding-right: 20px;
	font-size: 2rem !important;
	color: #1b0760;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	padding-bottom: 2rem;
}

.fa-capacity-building{
	font-size: 80px !important;
	margin-top: 2rem;
}

.capacity-building-icon-section{
	justify-content: center;
	align-items: center;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.services-grid {
		display: block;
		justify-content: center;
		margin-left: 0px;
	}

	.services-card {
		background: var(--color-border);
		width: 100%;
        justify-content: center;
		padding-top: 5px;
		margin-left: 0px;
		margin-bottom: 30px;
	}

	.services-heading {
		font-size: large;
		color: #1b0760;
	}

	.services-content {
		text-align: justify;
		font-size: medium;
		padding-left: 20px;
		padding-right: 20px;
	}

	.services-title {
		padding-left: 5px;
	}
	
	.card-services-content {
		text-align: justify;
		font-size: medium;
		color: #1b0760;
	}
}

/*---------------TEAM----------------------------*/
.column {
	float: left;
	width: 25%;
	padding: 0 20px;
  }
  
  .row {
	  margin-top: 30px;
  }
  
  .row:after {
	content: "";
	display: table;
	clear: both;
  }
  
  @media screen and (max-width: 600px) {
	.column {
	  width: 100%;
	  display: block;
	  margin-bottom: 20px;
	}
  }
  
  .card {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	padding: 16px;
	text-align: center;
	background-color: #f1f1f1;
	margin-bottom: 50px;
  }

.team {
	background: #edf3ee;
	margin-right: 0px;
}

.team-image {
    /*width:  300px;*/
    /*height: 300px;*/
    width:  300px;
    height: 300px;
    /*object-fit: cover;*/
}

.team-image-card{
  text-align: center;
}

.team-heading {
	text-align: center;
	padding-top: 50px;
	font-size: XX-large;
}

.grid-team {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 40px;
	margin-left: 1rem;
	margin-right: 1rem;
	padding-bottom: 50px;
}

.card-team {
	background: white;
	margin-top: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.team-name {
	text-align: center;
	padding-top: 20px;
	font-size: x-large;
}

.team-position {
	text-align: center;
	font-size: larger;
	color: #000;
}

@media screen and (max-width: 768px) {
	.grid-team {
		display: block;
		margin-left: 0px;
		justify-content: center; 
	}
	
	.card-team {
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
		background: white;
		margin-top: 20px;
		width: 90%;
		justify-content: center; 
		margin-left: 2rem;
		padding-bottom: 10px;
	}
	
	.team-name {
		text-align: center;
		padding-top: 20px;
		font-size: large;
	}
	
	.team-position {
		text-align: center;
		font-size: medium;
		color: #000;
		text-align: center;
	}

	.team-image {
		/*width: 100%;*/
		/*justify-content: center;*/
		height: 300px;
		width: 300px;
	}

	.team-heading {
		text-align: center;
		padding-top: 50px;
		font-size: x-large;
	}
}				

/* -----------CONTACTS--------------------*/
.table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	border: 1px solid #ddd;
	text-align: center;
	margin-top: 30px;
	margin-left: 0px;
  }
  
  th {
	text-align: left !important;
	text-align: left;
	padding: 8px;
	padding-left: 20px;
	padding-right: 20px;
	color: #000;
	padding-bottom: 20px;
  }

  td {
	text-align: left;
	padding: 8px;
	word-break: break-all;
	padding-left: 20px;
	padding-right: 20px;
	color: #000;
	padding-bottom: 20px;
  }
  
  tr:nth-child(even){
	  background-color: #f2f2f2;
	}

.table-container {
	margin: 20px;
	padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
	.table-container {
		margin: 10px;
		padding-bottom: 30px;
	}

	th {
		text-align: left !important;
		text-align: left;
		padding: 8px;
		padding-left: 20px;
		padding-right: 20px;
		color: #000;
		padding-bottom: 20px;
		font-size: medium;
	  }

	  td {
		text-align: left;
		padding: 8px;
		word-break: break-all;
		padding-left: 20px;
		padding-right: 20px;
		color: #000;
		padding-bottom: 20px;
		font-size: small;
	  }
}

.contacts {
	background: #e6ebee;
	margin-top: 0px;
}			

.contacts-heading {
	text-align: center;
	padding-top: 30px;
	color: var(--color-headings);
	font-size: xx-large;
}

.region-name {
	text-align: center;
}

.grid-contacts {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   padding-bottom: 50px;
   padding-left: 20px;
   padding-right: 20px;
}

.contacts-card {
	background: white;
	padding-bottom: 30px;
}

.phone-contact {
	width: 30px;
}	

.email-contact {
	width: 30px;
}

.content-centered {
	margin-left: 30px;
	margin-right: 20px;
}

.address-contact {
	width: 30px;
}

.address-text {
    overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;	
	font-size: 2rem !important;
	color: var(--color-headings);
}

.phone-text {
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;	
	font-size: 2rem !important;
	color: var(--color-headings);
}

.email-text {
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;	
	font-size: 2rem !important;
	color: var(--color-headings);
}

@media screen and (max-width: 768px) {
	.contacts-heading {
		text-align: center;
		padding-top: 30px;
		color: var(--color-headings);
		font-size: large;
	}

	.grid-contacts {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 20px;
	 }

	 .region-name {
		text-align: center;
		font-size: x-large;
	}
}

.follow-us-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-left: 17rem;
	margin-bottom: 0px;
}

.subscription-text {
	margin-left: 5rem;
}

.social-img{
	margin-left: 2rem;
}

.subscription-btn {
	margin-bottom: 30px;
}

.newsletter-subscribe-button {
	height: 50px;
	width: 130px;
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.follow-us-grid {
		display: block;
		margin-left: 0px;
		padding-bottom: 3rem;
		gap: 10px;
	}

	.subscription-text {
		margin-left: 3rem;
	}

	.follow-links{
		margin-left: 3rem;
		margin-top: -30px;
	}	
}

/*-------------ANNOUNCEMENTS----------------------*/
.read-more-button-a {
	background: #009e22;
	color: white;
	padding: 3px;
}

.announcements-details {
	display: block;
}

.announcement-btn-position {
	margin-top: 0px;
	margin-left: 120px;;
}

.show-announceement-heading {
	margin-bottom: 60px;
	text-align: center;
}

.grid-announcement-item {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0px;
}

.showing-announcement-content {
	text-align: justify;
	font-size: large;
	word-spacing: 6px;
	line-height: 32px;
}

.download-anncouncement {
	margin-top: 30px;
	width: 200px;
	height: 50px;
	border-radius: 10px;
	border-style: none;
	background: #009e22;
	color: white;
	cursor: pointer;
}

.view-selected-announcement-item {
	margin: 20px;
}

.announcement-btn-position {
	margin-top: 0px;
	text-align: center;
}

.show-announceement-heading {
	margin-bottom: 40px;
	text-align: center;
}

.list-hr {
	height:0px;
	 width: 100%;
}

.btn-ann-download {
  background-color: #009e22;
  border-radius: 20px;
  border-style: none;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  width: 190px;
}

.download-announcement-icon {
	margin-left: -110px;
	fill: white;
	margin-right: 10px;
}

.download-ann-text {
	position: absolute;
	padding-top: 10px;
	font-size: x-large;
	left: 20px;
}

@media screen and (max-width: 768px) {
	.my-announcement-card{
        width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	.page-heading-title {
		font-size: xx-large;
		text-align: center;
	}

	.showing-announcement-title {
		font-size: large;
	}

	.showing-announcement-content {
		text-align: justify;
		font-size: medium;
		word-spacing: 6px;
		line-height: 32px;
	}
	
	.grid-announcement-item {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0px;
	}	 
}

/*---------Home Announcement---------------*/
@media screen and (max-width: 768px) {
	.announcement-document{
		display: none;
	 }
}

.announcements-heading {
	text-align: center;
	color: var(--color-headings);
	font-size: xx-large;
}

.grid-announcements {
	display: grid;
	gap: 1rem;
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.announcement-card {
	background: var(--color-border);
	color: var(--color-headings);
	padding: 1rem;
}

.read-more-announcement {
	width: 100%;
	background: var(--color-accent);
	color: #fff;
	height: 50px;
	border-style: none;
	border-radius: 20px;
	cursor: pointer;
	margin-top: 20px;
}

.download-announcement {
	width: 100%;
	background: var(--color-green);
	color: #fff;
	height: 50px;
	border-style: none;
	border-radius: 20px;
	margin-left: 2rem;
	cursor: pointer;
	margin-bottom: 20px;
	margin-left: 0px;
}

@media screen and (max-width: 768px) {
	.grid-announcements {
		display: block;
		width: 100%;
	}

	.announcement-card {
		background: var(--color-border);
		color: var(--color-headings);
		width: 100%;
		margin-bottom: 30px;
	}

	.announcements-heading {
		text-align: center;
		color: var(--color-headings);
		font-size: large;
	}
}

@media screen and (min-width:768px) {
	.grid-announcements {
		grid-template-columns: repeat(3, 400px);
		justify-content: center;
		gap: 30px;
	}
}

/*------------REPORTS-----------------------------------------*/
@media screen and (max-width: 768px) {
	.report-document{
		display: none;
	}
}

.view-reports {
	margin-top: -20px !important;
	background: #4bdcb1;
}

.reporting-card {
	background: #fff;
	margin:20px;
	padding: 20px;
}

@media screen and (min-width: 768px) {
	.grid-reporting-container {
		display: grid;
		grid-template-columns: 400px 400px 400px;
		gap: 20px !important;
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	.view-reports {
		padding-top: 5px !important;
		background: #4bdcb1;
	}

	.grid-reporting-container {
		display: block;
		width: 100%;
		gap: 20px !important;
		justify-content: center;
		margin: 0px;
	}

	.reporting-card {
		background: #fff;
		padding: 20px;
		margin-top: 20px !important;	
	}
}

.reports-container {
	margin-left: 30px;
	margin-top: 50px;
	margin-right: 30px;
}

.hr-reports-devider {
	height:1px;
	margin-top:50px;
}

@media screen and (max-width: 768px) {
	.reports-container {
		margin-left: 10px;
		margin-top: 20px;
		margin-right: 10px;
	}

	.report-table {
		width: 80%;
	}
}

.view-in-detail{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.view-report-date-label{
	font-size: 2.5rem !important;
	color: #000;
}

.view-report-date-text{
	font-size: 2rem !important;
}

.view-report-date-container{
	margin-top: 2rem;
}

.view-report-subject-label{
	font-size: 2.5rem !important;
	color: #000;
}

.view-report-subject-text{
	font-size: 2rem !important;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

.view-report-content-label{
	font-size: 2.5rem !important;
	color: #000;
}

.view-report-content-text{
	font-size: 2rem !important;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

.view-report-download{
	margin-bottom: 3rem;
}

.back-to-list-reports-icon{
	font-size: 40px !important;
	color: #000;
	margin-left: 12.9rem;
	margin-top: 2rem;
}

.report-list-title{
	padding-right: 3rem;
	font-size: 2rem !important;
}

@media screen and (max-width: 768px) {
	.back-to-list-reports-icon{
		font-size: 40px !important;
		color: #000;
		margin-left: 2.5rem;
		margin-top: 2rem;
	}
}

/*-----------------PROGRAMS---------------------------*/
.grid-programs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 30px;
}

.programs-card {
	background: #b9c3cf;
}

.programs-image {
	width: 100%;
}

.program-title {
	font-size: xx-large;
	color: var(--color-headings);
	padding: 20px;
}

.programs-content {
	text-align: justify;
	color: var(--color-headings);
	font-size: large;
	word-spacing: 6px;
	line-height: 32px;
	padding: 20px;
}

@media screen and (max-width: 768px) {
	.grid-programs {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
		margin: 30px;
	}

	.programs-content {
		text-align: justify;
		color: var(--color-headings);
		font-size: medium;
		padding: 20px;
		word-spacing: 6px;
		line-height: 32px;
	}

	.program-title {
		font-size: x-large;
		color: var(--color-headings);
		padding: 20px;
	}
}

/*---------------------PORTFOLIO-------------------------*/
.portfolio {
	background: #d0d5d0;
	margin-top: 0rem;
	padding-top: 3rem;
	margin-bottom: 0rem;
	padding-bottom: 3rem;
}

.portfolio-heading {
	padding-top: 50px;
	font-size: xx-large;
	text-align: center;
	color: var(--color-headings);
}

.portfolio-buttons {
	text-align: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 20px;
	padding-bottom: 20px;
}

.savings-button, .loans-button, .investments-button {
	margin-left: 20px;
	margin-right: 20px;
	height: 50px;
	padding-left: 20px;
	padding-right: 20px;
	background: var(--color-green);
	color: white;
	border-style: none;
	border-radius: 10px;
	cursor: pointer;
}

.portfolio-card {
	background: white;
	width: 30%;
	margin-left: 480px;
}

.portfolio-title {
	font-size: xx-large;
	text-align: center;
	color: var(--color-headings);
	padding: 20px;
}

.portfolio-image {
	width: 100%;
}

.portfolio-content {
	text-align: justify;
	font-size: x-large;
	padding: 20px;
}

/* Style the tab */
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
	background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
	background-color: #ccc;
  }
  
  /* Style the tab content */
  .tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
  }

  @media screen and (max-width: 768px) {
	.portfolio-buttons {
		text-align: center;
		display: grid;
		grid-template-columns: 1fr;
		padding-top: 20px;
		gap: 20px;
		padding-bottom: 20px;
	}

	.savings-button, .loans-button, .investments-button {
		height: 50px;
		background: var(--color-green);
		margin-right: 30px;
		color: white;
		border-style: none;
		border-radius: 10px;
		cursor: pointer;
		font-size: medium;
	}

	.portfolio-card {
		background: white;
		width: 100%;
		margin-left: 0px;
	}

	.portfolio-title {
		font-size: x-large;
		text-align: center;
		color: var(--color-headings);
		padding: 20px;
	}

	.portfolio-content {
		font-size: medium;
	}
  }

  /*----Up Arrow-------*/
  .up-icon-arrow {
	  margin-left: 1190px;
  }

  @media screen and (max-width: 768px) {
	.up-icon-arrow {
		margin-left: 350px;
	}

	.portfolio-heading {
		padding-top: 50px;
		font-size: large;
		text-align: center;
		color: var(--color-headings);
	}
  }

  /*------------------NEWS SLIDESHOW----------------------*/
  .slide-show{
	  background: #dfe2e8;
  }

.slideshow-heading-image-grid{
	 display: grid;
	 grid-template-columns: 1fr 1fr; 
}

.slideshow-heading-title{
	color: #000;
	font-weight: bold;
	font-size: 2rem !important;
	overflow-wrap: break-word;  
    word-wrap: break-word; 
    word-break: break-word;
}

.slides-show-outer-container{
	width: 100%;
	background: #fff;
	opacity: .6;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.mySlides {
	display: none;
	width: 100%;
	height: 100vh;
}

.slide-show-img {
	width: 100%;
	object-fit: cover;
}

.slideshow-image-container{
	background: #fff;
	opacity: 1;
}

.slideshow-item-text {
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-top: 10rem;
}

.slideshow-item-text h3 {
	font-size: 3rem;
	margin-bottom: 2.5rem;
	color: #fff;
	opacity: 1;
	width: 100%;
}

.slideshow-item-text h2 {
	color: #fff;
}

.slideshow-item-text button {
	background: #009e22;
	color: #fff;
	border-radius: 20px;
	border-style: none;
	padding: 20px;
	cursor: pointer;
}

.go-to-contacts-section{
	color: #000;
	font-weight: bold;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-bottom: 2rem;;
	font-size: 2rem !important;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

@media screen and (max-width:768px) {
	.slideshow-item-text {
		position: absolute;
		top: 0;
		left: 0;
		color: #fff;
		padding-left: 2rem;
		padding-right: 2rem;
		margin-top: 3rem;
	}

	.go-to-contacts-section{
		color: #000;
		font-weight: bold;
		margin-top: 1rem;
		padding-left: 2rem;
		padding-right: 2rem;
		font-size: 2rem !important;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
	}
	
	.slide-show{
		background: #dfe2e8;
		padding-bottom: 7rem;
	}
}

.slideshow-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width:768px) {
	.slideshow-container {
		width: 100%;
		height: 500px;
	  }
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

@media only screen and (max-width: 1000px) {
	.slideshow-item-text {
		max-width: 100%;
		padding: 10rem 5rem;
	}
  }

  @media only screen and (max-width: 599px) {
	.slideshow-item-text h3 {
		font-size: 1.8rem;
	}

	.slideshow-item-text h2 {
		font-size: 1.8rem;
	}

	.slideshow-item-text button {
		padding: 5px;
	}
  }

  @media screen and (max-width:768px) {
	.news-updates-heading{
		font-size: 2rem !important;
	 }

	 .slideshow-heading-title{
		word-break:break-all;
		font-size: 1rem;
	}

	.slideshow-heading-image-grid{
		display: block;
   }

   .slideshow-item-text{
	   padding: 3rem 2rem;
   }
  }

  /* updated */
  .sliding-showing-grid{
	  display: grid;
	  /* grid-template-columns: repeat(2, 1fr); */
	  grid-template-columns: 65% 35%;
	  /* margin-bottom: -15rem; */
	  margin-bottom: -2rem;
  }

  .my-slide-showing-img{
	  /* width: 700px; */
	  width: 100%;
	  height: 700px;
	  background: #000;
	  opacity: .7;
  }

  .go-to-contacts-section-text{
	  margin-top: 13rem;
	  padding-left: 2rem;
	  padding-right: 2rem;
	  font-size: 2rem !important;
	  color: #000;
	  font-weight: bold;
	  overflow-wrap: break-word;  
      word-wrap: break-word; 
      word-break: break-word;
  }

  @media screen and (max-width: 768px) {
	.my-slide-showing-img{
		width: 100%;
		height: 500px;
		background: #000;
		opacity: .7;
	}

	.go-to-contacts-section-text{
		display: none;
		padding-left: 2rem;
		padding-right: 2rem;
		font-size: 2rem !important;
		color: #000;
		font-weight: bold;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
	}
  }

  .layer {
	background-color: green;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: .2;
  }

  .news-brief-button-title-grid{
	  display: flex;
	  gap: 10px;
  }

  .news-in-brief-button{
	  height: 30px;
	  background: var(--color-green);
	  color: #fff;
	  border: none;
  }

  .news-in-brief-title{
	  margin-top: 0px;
	  color: var(--color-headings);
      overflow-wrap: break-word;  
      word-wrap: break-word; 
      word-break: break-word;
  }

  .news-in-brief-listing{
	  margin-left: 20px;
	  margin-right: 20px;
  }

  .news-in-brief-heading{
	  margin-left: 20px;
  }

  .slideshow-dots{
	   text-align:center;
	   padding-bottom:2rem;
	   padding-top:2rem;
  }

  @media screen and (max-width: 768px) {
	.slideshow-dots{
		text-align:center;
		margin-bottom: -5rem;
		margin-top:10rem;
   }

	.news-in-brief-title{
		margin-top: 0px;
		color: var(--color-headings);
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
		font-size: 1.5rem;
	}

	.news-in-brief-heading{
		margin-left: 20px;
		font-size: 2rem !important;
	}

	.sliding-showing-grid{
		display: block;
		margin-bottom: -15rem;
	}

	.slideshow-heading-title{
		color: #000;
		font-weight: bold;
		font-size: 2rem !important;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
	}
  }

  /*---------------HOME NEWS ARTICLES SECTION-----------*/
  .grid-home-news-section {
	  display: grid;
	  grid-template-columns: repeat(3, 400px);
	  justify-content: center;
	  gap: 50px;
  }

  .news-card-area {
	  width: 100%;
	  margin-left: 5rem;
  }

  .facebook-area {
	  width: 100%;
	  margin-left: 5rem;
  }

  .twitter-area {
	  width: 100%;
  }

  @media screen and (max-width:768px) {
	.grid-home-news-section {
		display: block;
		width: 100%;
		margin: auto;
	}

	.news-card-area {
		width: 100%;
		margin-left: 0px;
	}
  
	.facebook-area {
		width: 100%;
		margin-left: 0px;
	}

	.facebook-text {
		margin-top: 0px;
		padding-bottom: 0px;
	}

	.twitter--text {
		margin-left: 20px;
	}

	.news-updates-text {
		padding-left: 20px;
		margin-top: 0px;
		margin-bottom: 10px;
	}
  }

/*----------PARTNERS------------------------*/
.partners-grid{
	display: flex;
	/*text-align: center;*/
}

.partners-image{
	width: 200px;
	height: 200px	;
}

.partners-card{
	width: 100%;
}
	
.partners-heading{
	text-align: center;
}

.sub-hr{
	height: 5px;
	background: #db8725;
}

@media screen and (max-width:768px) {
	.partners-grid{
		display: grid;
		grid-template-columns: 1fr;
		text-align: center;
		gap: 30px;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}	
}

/*---------PROJECTS-----------*/
/*----------Projects list--------------*/
@media screen and (max-width: 768px) {
	.project-document{
		display: none;
	}
}

.project-list-image{
	width: 25%;
}

.projects-card{
	display: flex;
	margin-left: 54rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
	width: 50%;
}

.project-list-title{
	margin-top: 0px;
	margin-left: 2rem;
	word-break: break-all;
	margin-right: 2rem;
}

@media screen and (max-width:768px) {
	.project-list-title{
		margin-top: 0px;
		margin-left: 2rem;
		word-break: break-all;
		text-align: justify;
		margin-right: 2rem;
		color: #000;
	}

	.project-list-image{
		width: 90%;
		margin-top: 2rem;
		margin-bottom: 2rem;
	}

	.projects-card{
		display: block;
		margin-left: 0rem;
		margin-top: 1rem;
		margin-bottom: 0rem;
		width: 100%;
		text-align: center;
		padding-bottom: 3rem	;
	}	
}

/*---------View Project--------------*/
.our-project-name-label{
   padding-top: 1rem;
   font-size: 2.5rem !important;
   color: #000;
   font-weight: bold;
}

.our-project-description-label{
   padding-top: 1rem;
   font-size: 2.5rem !important;
   color: #000;
   font-weight: bold;
}

.view-project-description{
	color: #000;
	overflow-wrap: break-word;  
    word-wrap: break-word; 
    word-break: break-word;
	font-size: 2rem;
}

.view-project-image{
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.view-project-content{
	overflow-wrap: break-word;  
    word-wrap: break-word; 
    word-break: break-word;
	padding-top: 1rem;
	font-size: 2rem;
	padding-bottom: 2rem;
}

.view-project-grid{
	display: block;
	width: 80%;
	margin: auto;
}

.back-project-icon{
	color: black;
	font-size: 40px !important;
	margin-left: 35rem;
	margin-top: 2rem;
}

.view-project-title{
	color: #000;
	overflow-wrap: break-word;  
    word-wrap: break-word; 
    word-break: break-word;
	font-size: 2rem;
}

.download-project{
	text-align: right;
	margin-bottom: 1rem;
}

@media screen and (max-width:768px) {
	.our-project-description-label{
		padding-top: 1rem;
		font-size: 2.5rem !important;
		color: #000;
		font-weight: bold;
		margin-left: 1rem;
		margin-right: auto;
	 }

	.view-project-description{
		color: #000;
		font-size: 2rem;
		margin-left: 1rem;
		margin-right: 1rem;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
	}

	.our-project-name-label{
		padding-top: 1rem;
		font-size: 2.5rem !important;
		color: #000;
		font-weight: bold;
		margin-left: 1rem;
		margin-right: 1rem;
	 }

	.download-project{
		text-align: right;
		margin-bottom: 1rem;
		margin-right: 1rem;
	}

	.view-project-image{
		width: 90%;
		margin-top: 2rem;
		margin-bottom: 2rem;
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.view-project-title{
		color: #000;
		font-size: 2.8rem;
		margin-left: 1rem;
		margin-right: auto;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
	}

	.view-project-content{
		padding-top: 1rem;
		font-size: 2rem;
		padding-bottom: 2rem;
		padding-left: 2rem;
		padding-right: 2rem;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
	}

	.back-project-icon{
		color: black;
		font-size: 30px !important;
		margin-left: 2rem;
		margin-top: 2rem;
	}

	.view-project-image{
		width: 100%;
		margin-top: 1rem;
	}

	.view-project-grid{
		display: block;
		width: 100%;
		margin-left: 0rem;
	}
}

/*---------------NEWSLETTER------------------*/
/*-----------Home Newsletter--------------*/
@media screen and (max-width:768px) {
    .newsletter-document{
        display: none;
	}
}

.newsletter{
	background: #47d9db;
	margin-top: -24px;
	padding-top: .5rem;
	padding-bottom: .5rem;
	margin-bottom: -28px;
}

.home-newsletter-image{
	width: 200px;
}

.home-newsletter-grid{
	display: flex;
	gap: 30px;
	justify-content: center;
}

.home-newsletter-title{
	margin-top: 0px;
	word-break: break-all;
	width: 500px;
	padding-top: 1rem;
	padding-right: 2rem;
	color: var(--color-headings);
}

.home-newletteer-card{
	width: 100%;
	margin-bottom: 5rem;
	margin-top: 3rem;
}

.wrap-newsletter-card{
	background: #fff;
	width: 700px;
	display: flex;
	gap: 2rem	;
}

.wrap-newsletter-link{
	display: flex;
	gap: 1rem;
}

.our-newsletter-heading-title{
	margin-top: 0px;
	padding-top: 0px;
	color: var(--color-headings);
	font-weight: bold;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

.our-newsletters-llist-content-wrapper{
	margin-top: 3rem;
	margin-bottom: 3rem;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.our-newsletter-view-content-wrapper{
	width: 80%;
	margin: auto;
}

.back-to-list-our-newsletter-icon{
	font-size: 40px !important;
	color: #000;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

@media screen and (max-width:768px) {
	.our-newsletter-heading-title{
		margin-top: 0px;
		padding-top: 0px;
		font-size: 1.7rem;
	}

	.home-newsletter-grid{
		display: block;
		gap: 30px;
		justify-content: center;
	}

	.wrap-newsletter-card{
		background: #fff;
		width: 100%;
		display: block;
		gap: 2rem;
	}

	.home-newsletter-image{
		width: 100%;
	}

	.home-newsletter-title{
		margin-top: 0px;
		word-break: break-all;
		width: 100%;
		padding-top: 1rem;
		padding-right: 1rem;
		padding-left: 1rem;
		color: var(--color-headings);
	}

	.home-newletteer-card{
		width: 100%;
		margin-bottom: 5rem;
		margin-top: 3rem;
	}

	.wrap-newsletter-link{
		display: block;
		gap: 1rem;
	}	
}

.newsletter-button-counter{
	margin-left: 5rem;
	margin-top: 3rem;
	width: 4rem;
	background: var(--color-green);
	border: none;
	color: #fff;
}

.newsletter-listing-items{
	margin-top: -6rem !important;
}

.newletter-layer{
	background-color: green;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: .6;
}

.newsline-image{
	width: 40%;
	margin-left: 16rem;
	margin-top: -3rem;
}

.newsline-image-list-grid{
	display: grid;
	grid-template-columns: 20% 80%;
}

.our-newsletters-list{
	margin-left: 5rem;
	margin-right: auto;
}

@media screen and (max-width:768px) {
    .newsletter-button-counter{
		margin-left: 1rem;
		margin-top: 3rem;
		width: 4rem;
		background: var(--color-green);
		border: none;
		color: #fff;
	}
	
	.newsletter-listing-items{
		margin-left: 3rem !important;
	}

	.newsline-image-list-grid{
		display: block;
	}

	.newsline-image{
		width: 30%;
		/* height: 100px; */
		margin-left: 6.5rem;
		margin-top: -3rem;
		margin-bottom: 5rem;
	}
}

/*---------------PHOTO GALLERY----------------------*/
.photo-caption{
   word-break: break-all;
}

.img-gallery{
    width: 80%;
    /* margin: 100px auto 50px; */
    display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
	margin-top: 2rem;
	margin-left: 7rem;
}

.img-gallery img{
	width: 300px;
	height: 300px;
	object-fit: cover;
    cursor: pointer;
}

.img-gallery img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0px 32px 75px rgba(68,77,136,0.2);
}

.full-img{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img{
    width: 90%;
    max-width: 500px;
}

.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.photo-card{
   width: 100%;
}

.photo-category-btn{
	display: block;
	margin-top: 20px;
	margin-left: 2rem;
	width: 250px;
	height: 70px;
	border-style: none;
	cursor: pointer;
	background: #d7dad9;
	color: var(--color-headings);
}

.photo-gallery-container{
	display: grid;
	grid-template-columns: 250px 1fr;
}

.image-gallery-category-heading{
   margin-left: 27rem;
   word-break: break-all;
}

.back-photo-gallery-icon-and-photo-category-text{
	display: flex;
}

.active, .photo-category-btn:hover {
	background-color: #666;
	color: white;
  }

.hide-btn{
	display: none;
}

@media screen and (max-width:768px) {
	.photo-gallery-container{
		display: block;
	}	

	.photo-category-btn{
		display: block;
		margin-top: 20px;
		margin-left: auto;
		margin-right: auto;
		width: 90%;
		height: 70px;
		border-style: none;
		cursor: pointer;
		background: #d7dad9;
		color: var(--color-headings);
		font-size: medium;
	}

	.image-gallery-category-heading{
		margin-left: 7rem;
		margin-right: 9rem;
		margin-top: 3rem;
		text-align: center;
		word-break: break-all;
		font-size: medium;
	 }

	 .hide-btn{
		display: none;
	}

	.img-gallery img{
		width: 100%;
		cursor: pointer;
	}

	.img-gallery{
		width: 80%;
		margin: 100px auto 50px;
		display: block;
		grid-gap: 30px;
		margin-top: 2rem;
	}
}

/*------------------VIDEO GALLERY---------------*/
.video-gallery{
	background: #334;
}

.video-caption {
	word-break: break-all;
	margin-top: 2rem;
}

.back-video-gallery-icon{
	color: white;
	font-size: 40px !important;
	margin-left: 27rem !important;
	margin-top: 1rem;
}

.outer-container{
    position: relative;
    min-height: 100vh;
    background: #334;
	padding-top: 2rem;
	padding-bottom: 3.5rem;
}

.outer-container .video-container{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-left: 5rem;
	margin-right: 5rem;
    justify-content: center;
    padding: 10px;
}

.outer-container .video-container .video{
	width: 100%;
    border: 5px solid #fff;
    border-radius: 6px;
    box-shadow: 0 15px rgba(0,0,0,.7);
    cursor: pointer;
    overflow: hidden;
}

.outer-container .video-container .video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.outer-container .video-container .video:hover video{
    transform: scale(1.1);
}

.outer-container .popup-video{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0,0,0,.8);
    height: 100%;
    width: 100%;
    display: none;
}

.outer-container .popup-video video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    border-radius: 5px;
    border: 5px solid #fff;
    object-fit: cover;
}

.outer-container .popup-video span{
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 50px;
    color: #fff;
    font-weight: bolder;
    z-index: 100;
    cursor: pointer;
}

.video-list-card {
	margin-top: 1rem;	
}

.video-gallery-grid{
	display: grid;
	grid-template-columns: 250px 1fr;
	background: #334;
}

.video-gallery-category-heading{
	word-break: break-all;
	color: #fff;
    margin-left: 29rem;
	text-align: center;
}

.back-icon-and-category-text{
	display: flex;
}

@media screen and (max-width:768px) {
    .outer-container .popup-video video{
        width: 95%;
    }  
	
	.video-gallery-grid{
		display: block;
	}

	.video-list-card {
		margin-top: -20px;
		padding-top: 1rem;
	}

	.back-video-gallery-icon{
		color: white;
		font-size: 40px !important;
		margin-left: 2rem !important;
		margin-top: 1.5rem;
	}

	.video-gallery-category-heading{
		color: #fff;
		 margin-left: 5rem;
		 margin-top: 2.5rem;
		 margin-right: 5rem;
		 text-align: center;
		 font-size: medium;
		 word-break: break-all;
	}

	.hide-btn{
		display: none;
	}

	.outer-container .video-container{
		display: block;
		gap: 30px;
		padding: 10px;
		margin-left: 1rem;
		margin-right: 1rem;
	}
}

/*---------REWORKED ANNOUNCEMENTS-------------------*/
/*---------Announcements list------------------------*/
.announcements-list{
   background: #dfdddb;
   padding-bottom: 3rem;
   padding-top: 3rem;
}

.announcement-list-grid{
   display: flex;
   align-items: center;
}

.announcement-list-title{
   overflow-wrap: break-word;  
   word-wrap: break-word; 
   word-break: break-word;
   color: var(--color-headings);
   font-weight: bold;
   margin-left: 1rem;
   margin-right: 1rem;
   margin-top: 0px;
   padding-top: 1rem;
}

.announcements-list-card{
   margin-left: 35rem;
   background: #fff;
   width: 50%;
   margin-bottom: 3rem;
   padding-top: 2rem;
   padding-bottom: 2rem;
}

.announcement-picture-icon{
	font-size: 50px !important;
	color: black;
	margin-left: 1rem;
}

.announcement-pdf-icon{
	font-size: 50px !important;
	color: orange;
	margin-left: 1rem;
}

.announcement-xlsx-icon{
   font-size: 50px !important;
   color: green;
   margin-left: 1rem;
}

.announcement-docx-icon{
	font-size: 50px !important;
	color: blue;
	margin-left: 1rem;
}

.announcement-pptx-icon{
   font-size: 50px !important;
   color: red;
   margin-left: 1rem;
}

.announcement-wrap-link{
	display: flex;
}

.date-grid{
   display: flex;
   gap: 1rem;
   margin-left: 35rem;
}

.announcement-calendar-icon{
   color: #000;
}

.announcement-date{
	color: #000;
}

@media screen and (max-width:768px) {
	.announcement-page-title{
		font-size: 20px;
		padding-top: 3.7rem;
	}
	
	.announcements-list-card{
		margin-left: 0rem;
		background: #fff;
		width: 80%;
		margin-bottom: 3rem;
		margin-left: auto;
		margin-right: auto;
		padding-top: 2rem;
		padding-bottom: 2rem;
	 }

	 .announcements-list{
		background: #dfdddb;
		padding-bottom: 1rem;
		padding-top: 3rem;
	 }

	 .announcement-picture-icon{
		font-size: 50px !important;
		color: black;
		margin-left: 1rem;
	}
	
	.announcement-pdf-icon{
		font-size: 50px !important;
		color: orange;
		margin-left: 1rem;
	}
	
	.announcement-xlsx-icon{
	   font-size: 50px !important;
	   color: green;
	   margin-left: 1rem;
	}
	
	.announcement-docx-icon{
		font-size: 50px !important;
		color: blue;
		margin-left: 1rem;
	}
	
	.announcement-pptx-icon{
	   font-size: 50px !important;
	   color: red;
	   margin-left: 1rem;
	}

	.announcement-list-title{
		color: var(--color-headings);
		margin-left: 1rem;
		margin-right: 1rem;
		margin-top: 0px;
		padding-top: 1rem;
		font-size: 2rem;
	 }

	 .date-grid{
		display: flex;
		gap: 1rem;
		margin-left: 3rem;
	 }
	 
	 .announcement-calendar-icon{
		color: #000;
	 }
	 
	 .announcement-date{
		 color: #000;
	 }
}

/*-------------View Announcement--------------*/
.announcement-view-page-heading-title{
	font-size: xx-large;
	text-align: center;
	padding-top: 2.8rem;
	color: #fff;
 }

 .announcement-view-date-grid{
    display: flex;
	margin-top: 2rem;
 }

 .announcement-date{
    margin-left: 1rem;
	color: #000;
	font-weight: bold;
 }

 .announcement-view-title{
    color: #000;
	font-weight: bold;
	font-size: 2rem !important;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	margin-bottom: 1rem;
 }

 .announcement-view-calendar-icon{
    color: #000;
 }

 .date-and-download-button-wrapper{
	 display: flex;
	 justify-content: space-between;
 }

 .announcement-view-download-link{
	 margin-top: 0rem;
 }

 .view-announcement-image{
    width: 100%;
 }

 .announcement-from-to{
    display: flex;
	justify-content: space-between;
	margin-top: 2.5rem;
 }
 
 .announcement-from{
   font-size: 2rem;
 }

 .announcement-to{
    font-size: 2rem;
 }

 .view-announcement-content{
	 margin-top: 2rem;
	 overflow-wrap: break-word ;  
	 word-wrap: break-word; 
	 word-break: break-word;
	 font-size: 2rem !important;
 }

 .btn-view-announcement-download{
	 width: 150px;
	 height: 50px;
	 border-style: none;
	 border-radius: 10px;
	 background: var(--color-green);
	 color: #fff;
	 cursor: pointer;
 }

 .back-to-list-announcement-icon{
    margin-left: 5rem;
	margin-top: 2rem;
	font-size: 40px !important;
	color: #000;
 }

 .announcement-list-button-number{
	margin-left: 25rem;
	background: var(--color-green);
	color: #fff;
	border: none;
	height: 40px;
	min-width: 40px;
 }

 .date-list-announcement{
	margin-top: -3.5rem;
 }

 .announcement-button-number-list{
	margin-left: 7rem;
	margin-right: auto;
 }

 @media screen and (max-width:768px) {
	.announcement-list-button-number{
		margin-left: 2rem;
		margin-bottom: 2rem;
		background: var(--color-green);
		color: #fff;
		border: none;
		height: 40px;
		min-width: 40px;
	 }

	 .announcement-button-number-list{
		margin-left: 0rem;
		margin-right: auto;
		display: block;
	 }

	 .date-list-announcement{
		margin-top: 0rem;
	 }
 }

@media screen and (max-width:768px) {
	.this-announcement-card{
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

	.back-to-list-announcement-icon{
		margin-left: 2rem;
		margin-top: 2rem;
		font-size: 40px !important;
		color: #000;
	 }

	.announcement-view-page-heading-title{
       font-size: 30px;
	   text-align: center;
	   color: #fff;
	}  

	.announcement-view-page-heading-title{
		font-size: x-large;
		text-align: center;
		padding-top: 2.8rem;
		color: #fff;
	 }

	 .announcement-view-title{
		color: #000;
		font-size: 2rem !important;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;	
	 }

	 .announcement-date{
		margin-left: 1rem;
		color: #000;
		font-weight: bold;
		font-size: 1.4rem;
	 }

	 .btn-view-announcement-download{
		width: 100px;
		height: 40px;
		border-style: none;
		border-radius: 10px;
		background: var(--color-green);
		color: #fff;
		cursor: pointer;
		font-size: 1.4rem;
		margin-top: 1rem;
	}

	.view-announcement-image{
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 2rem;
	 }

	 .date-and-download-button-wrapper{
		display: flex;
		justify-content: space-between;
		margin-top: 1rem;
	}

	.announcement-from{
		font-size: 1.5rem;
	  }
	 
	  .announcement-to{
		 font-size: 1.5rem;
	  }

	  .view-announcement-content{
		margin-top: 2rem;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
		font-size: 2rem;
	}
}

/*-------------REWORKED ANNOUNCEMENTS---------------*/
/*-------------aNNOUNCEMENTS lIST------------------*/
.program-list-image{
	width: 30%;
}

.list-programs-grid{
	display: flex;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.list-programs-card{
	width: 50%;
	background: #c7caca;
	margin-left: 35rem;
	margin-right: auto;
}

.program-list-title{
	margin-top: 0px;
	margin-left: 2rem;
	color: var(--color-headings);
	font-weight: bold;
	padding-right: 2rem;
	padding-top: 2rem;
	padding-bottom: 1rem;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

@media screen and (max-width:768px) {
	.program-list-title{
		margin-top: 0px;
		margin-left: 2rem;
		color: var(--color-headings);
		padding-right: 2rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
		font-size: 2rem;
	}

	.list-programs-card{
		width: 96%;
		background: #c7caca;
		margin-left: auto;
		margin-right: auto;
		margin-top: 2rem;
		margin-bottom: 3rem;
	}
	
	.program-list-image{
		width: 100%;
	}

	.list-programs-grid{
		display: block;
		margin-top: 0rem;
		margin-bottom: 0rem;
	}
}

/*------------View program------------------*/
.view-program-title{
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	color: #000;
    padding-bottom: 2rem;
	font-weight: bold;
}

.view-program-grid{
	width: 60%;
    padding-bottom: 2rem;
	margin-left: 27rem;
}

.view-program-image{
	width: 100%;
}

.view-program-content{
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-top: 2rem;
	font-size: 2.3rem;
}

.back-program-icon{
	margin-left: 27rem;
	font-size: 40px !important;
	color: #000;
	margin-top: 2rem;
}

@media screen and (max-width:768px) {
	.view-program-image{
		width: 90%;
		margin-left: 2rem;
		margin-right: auto;
	}

	.view-program-content{
		padding-left: 2rem;
		padding-right: 2rem;
		margin-top: 2rem;
		font-size: 1.9rem;
	}

	.back-program-icon{
		margin-left: 2rem;
		font-size: 40px !important;
		color: #000;
		margin-top: 2rem;
	}

	.view-program-grid{
		width: 100%;
		padding-bottom: 2rem;
		margin-left: 0rem;
	}

	.view-program-title{
		color: #000;
		padding-bottom: 2rem;
		font-size: 2.5rem;
		margin-left: 2rem;
		margin-right: 2rem;
	}
}

/*----------------REWORKED REPORTS--------------*/
/*===============list Reports----------------------*/
.list-reports-grid{
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 50px;
	margin-left: 4rem;
	margin-right: auto;
}

.project-list-button{
	width: 200px;
	word-break: break-all;
	padding: 2rem;
	margin-bottom: 2rem;
	border-style: none;
	background: #d7d5d4;
	cursor: pointer;
}

.list-of-reports-date{
	display: flex;
	gap: 10px;
}

.list-report-calendar-icon{
	color: #000;
	font-size: 40px !important;
}

.list-report-date{
	color: #000;
	font-size: 2rem;
}

.list-of-reports-inner-grid{
	display: grid;
	grid-template-columns: 280px 550px 100px;
}

.download-the-report{
	width: 150px;
	height: 50px;
	border-style: none;
	background: var(--color-green);
	color: #fff;
	cursor: pointer;
}

.report-list-title{
	margin-top: 0px;
	font-size: 2rem !important;
	font-weight: bold;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

.list-of-reports-card{
	margin-top: 3rem;
	margin-bottom: 6rem;
}

.list-of-projects-heading{
	font-size: 2.7rem;
}

.list-report-number-grid{
	display: block;
}

.list-report-number{
	height: 40px;
	min-width: 40px;
	background: var(--color-green);
	color: #fff;
	border: none;
	margin-bottom: 2rem;
}

@media screen and (max-width:768px) {
	.project-list-button{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		word-break: break-all;
		padding: 2rem;
		margin-bottom: 2rem;
		border-style: none;
		background: #d7d5d4;
		cursor: pointer;
	}

    .list-reports-grid{
		display: block;
		gap: 50px;
		margin-left: 4rem;
		margin-right: auto;
	}	
	
	.list-of-projects{
	   width: 100%;
	}

	.list-of-reports-inner-grid{
		display: block;
	}

	.list-report-calendar-icon{
		color: #000;
		font-size: 30px !important;
	}

	.list-report-date{
		color: #000;
		font-size: 1.8rem;
	}

	.report-list-title{
		margin-top: 0px;
		font-size: 2rem;
	}
}

/*---------------Report by project-------------------*/
.project-details-heading{
	text-align: center;
}

.project-name-divider{
	width: 100px;
	height: .2rem;
	background: var(--color-green);
}

.back-to-reports-list-icon{
	margin-left: 28.5rem;
	margin-top: 2rem;
	font-size: 40px !important;
	color: #000;
}

@media screen and (max-width:768px) {
	.back-to-reports-list-icon{
		margin-left: 3rem;
		margin-top: 2rem;
		font-size: 40px !important;
		color: #000;
	}	
}

/*---------------SPEECHES------------------------*/
.back-to-list-speeches-icon{
  margin-left: 13rem;
  margin-top: 2rem;
  font-size: 40px !important;
  color: #000;
}

.speech-embed-document{
    margin-top: 2rem;
	margin-bottom: 2rem;
}

.list-speeches-grid{
	display: block;
	gap: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	margin-bottom: 0rem;
	width: 80%;
}

.speech-date-container{
	display: flex;
}

.speech-date-container-inner{
	display: flex;
	margin-top: .7rem;
	margin-left: 4.2rem;
}

.speech-date-label{
	color: #000;
	font-weight: bold;
	font-size: 2rem;
}

.list-speech-calendar-icon{
	color: #000;
	font-size: 30px !important;
}

.speech-date-text{
	margin-left: 1rem;
	color: #000;
	font-size: 2rem;
}

.speech-subject-container{
	display: flex;
}

.speech-subject-inner{
	display: flex;
	margin-top: 1rem;
	margin-left: 1.5rem;
}

.sppech-subject-label{
	font-size: 2rem !important;
	color: #000;
	font-weight: bold;
}

.speech-subject-heading{
	margin-top: 0rem;
	margin-left: 2rem;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	font-size: 2rem !important;
	color: var(--color-headings);
	font-weight: bold;
}

.speech-picture-icon{
	font-size: 30px !important;
	color: #000;
}

.speech-pdf-icon{
	font-size: 30px !important;
	color: orange;
}

.speech-xlsx-icon{
	font-size: 30px !important;
	color: green;
}

.speech-docx-icon{
	font-size: 30px !important;
	color: blue;
}

.speech-pptx-icon{
	font-size: 30px !important;
	color: red;
}

.speech-made-by-container{
	display: flex;
}

.speech-made-by-label{
	font-size: 2rem;
	color: #000;
	font-weight: bold;
}

.speech-made-by-text{
	font-size: 2rem !important;
	color: #000;
	margin-left: 5.5rem;
	margin-right: auto;
	word-break: break-all;
}

.speech-download-button-container{
	margin-left: -1rem;
}

.speech-download-label{
	font-size: 2rem !important;
	color: #000;
	font-weight: bold;
}

.download-speech-button{
	width: 120px;
	height: 40px;
	background: var(--color-green);
	color: #fff;
	border-style: none;
	margin-left: 1rem;
	cursor: pointer;
}

.speech-date-outer-grd{
	display: flex;
}

.speech-button-list-grid{
	display: flex;
}

.speeches-button-list{
	height: 3rem;
	width: 5rem;
	border: none;
	background: var(--color-green);
	color: #fff;
	margin-top: 2.4rem;
	margin-left: 7rem;
}

@media screen and (max-width:768px) {
 .speech-button-list-grid{
	display: block;
  }

  .speeches-button-list{
	height: 3rem;
	width: 5rem;
	border: none;
	background: var(--color-green);
	color: #fff;
	margin-top: 2.4rem;
	margin-left: 2rem;
  }

  .back-to-list-speeches-icon{
		margin-left: 2rem;
		margin-top: 2rem;
		font-size: 40px !important;
		color: #000;
	}

  .speech-date-outer-grd{
	  display: block;
  }	

  .speech-date-container-inner{
	display: flex;
	margin-top: .7rem;
	margin-left: 0rem;
}

.list-speeches-grid{
	display: block;
	gap: 30px;
	margin-left: 2rem;
	margin-right: auto;
	margin-top: 2rem;
	margin-bottom: 0rem;
	width: 90%;
}

.speech-subject-container{
	display: block;
}

.speech-subject-inner{
	display: flex;
	margin-top: 1rem;
	margin-left: 0rem;
	padding-right: 1.4rem;
}

.speech-made-by-container{
	display: block;
}

.speech-made-by-text{
	font-size: 2rem !important;
	color: #000;
	margin-left: 0rem;
	word-break: break-all;
}

.speech-download-button-container{
	display: block;
}

.download-speech-button{
	width: 150px;
	height: 40px;
	background: var(--color-green);
	color: #fff;
	border-style: none;
	margin-left: 0rem;
	cursor: pointer;
}
}

/*---------------SUCCESS STORIES---------------------*/
.success-story-by{
	font-weight: bold;
	color: #000;
	margin-left: -10px;
}

.list-success-story-number{
	background: var(--color-green);
	color: #fff;
	min-width: 40px;
	height: 40px;
	border: none;
	margin-left: 25rem;
}

.button-number-title-grid{
	margin-left: 8rem;
	margin-right: 8rem;
}

.list-success-story-title-column{
	/* margin-top: 0rem; */
	margin-top: -4rem;
}

@media screen and (max-width:768px) {
	.button-number-title-grid{
		margin-left: 0rem;
		margin-right: 0rem;
		display: block;
	}

	.success-story-by{
       font-size: 1.7rem !important;
	   margin-top: 1.8rem;
	   margin-bottom: 0px;
	}

	.list-success-story-number{
		background: var(--color-green);
		color: #fff;
		min-width: 40px;
		height: 40px;
		border: none;
		margin-left: 3rem;
		margin-bottom: 2rem;
	}

	.list-success-story-title-column{
		/* margin-top: 0rem; */
		margin-top: 0rem;
	}
}

/*-----------------RADIO PROGRAMS---------------------*/
.radio-program-date-coontainer{
	display: flex;
}

.radio-program-audio{
	height: 50px;
}

.list-radio-program-calendar-icon{
	color: #000;
	font-size: 30px !important;
}

.radio-program-date-text{
	margin-left: 1rem;
	color: #000;
	font-size: 2rem !important;
}

.radio-programs-grid{
	display: grid;
	grid-template-columns: 200px 600px 300px;
	gap: 40px;
	justify-content: center;
	margin-top: 3rem;
}

.radio-program-name{
	margin-top: 0px;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	font-size: 2rem !important;
	color: var(--color-headings);
	font-weight: bold;
}

.button-list-grid{
	display: flex;
	gap: 3rem;
	margin-left: 3rem;
	margin-right: 3rem;
}

.radio-programs-button-list{
	background: var(--color-green);
	color: #fff;
	height: 3rem;
	width: 5rem;
	/* max-width: 5rem; */
	border: none;
	margin-top: 3.1rem;
}

@media screen and (max-width:768px) {
	.button-list-grid{
		display: block;
		gap: 3rem;
		margin-left: 3rem;
		margin-right: 3rem;
	}

	.radio-programs-grid{
		display: block;
		gap: 40px;
		justify-content: center;
		margin-top: 3rem;
	}	

	.radio-program-date-coontainer{
		display: flex;
		margin-left: 1rem;
	}

	.radio-program-name{
		margin-top: 0px;
		overflow-wrap: break-word;  
		word-wrap: break-word; 
		word-break: break-word;
		font-size: 2rem;
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.radio-program-audio{
		height: 50px;
		width: 100%;
	}
}

/*-------------PORTFOLIO REVISED-------------------------*/
.portfolio-category-grid{
   display: flex;
   gap: 50px;
   justify-content: center;
}

.portfolio-list-grid{
	display: grid;
	grid-template-columns: repeat(3, 300px);
	gap: 30px;
}

.portfolio-buttons-wrapper{
	display: block;
}

.portfolio-list-card{
	background: #fff;
}

.portfolio-item-image{
	width: 100%;
	height: 195px;
}

.portfolio-item-heading{
	text-align: center;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	padding: 1rem;
	font-weight: bold;
}

.portfolio-item-content{
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	padding: 1rem;
	font-size: 2rem !important;
}

.portfolio-categories-buttons{
	background: #fff;
	padding: 2rem;
}

.portfolio-category-button{
	width: 200px;
	height: 70px;
	margin-bottom: 2rem;
	border-style: none;
	cursor: pointer;
	background: #d7d5d4;
}

.portfolio-category-card-heading{
	width: 200px;
	margin-top: 0px;
	padding-bottom: 1rem;
	font-size: 2rem;
}

.portfolio-category-list{
	width: 240px;
}

.active, .portfolio-category-button:hover {
	background-color: #666;
	color: white;
  }

@media screen and (max-width:768px) {
	.portfolio-category-card-heading{
		width: 200px;
		margin-top: 0px;
		padding-bottom: 1rem;
		font-size: 2rem;
		margin-left: auto;
		margin-right: auto;
	}

	.portfolio-category-grid{
		display: block;
		margin-top: -3rem;
		margin-bottom: -3rem;
	 }	

	 .portfolio-categories-buttons{
		background: #fff;
		padding: 2rem;
		text-align: center;
	}

	.portfolio-category-button{
		width: 100%;
		height: 70px;
		margin-bottom: 2rem;
		margin-left: auto;
		margin-right: auto;
		border-style: none;
		cursor: pointer;
		background: #d7d5d4;
	}

	.portfolio-list-grid{
		display: block;
		gap: 30px;
	}

	.portfolio-category-list{
		width: 93%;
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.portfolio-item-heading{
		text-align: center;
		padding: 1rem;
		font-size: 2rem !important;
	}

	.portfolio-item-image{
		width: 90%;
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.portfolio-list-card{
		background: #fff;
		margin-left: 1rem;
		margin-right: 1rem;
	}
}

/*------------PRELOADER-------------------*/
.my-container{
	display: flex;
	justify-content: center;
	text-align: center;
  }

  .my-loader{
	position: relative;
	margin-top: 14em;
  }

  .my-loader:before, .my-loader:after {
	content: "";
	width: 1.8em;
	height: 1.8em;
	position: absolute;
	border-radius: 4em;
  }

  .my-loader:before{
	background: lightcoral;
	left: 0;
	transform: translateX(10px);
	animation: Moveleft 1s ease infinite;
   }

  .my-loader:after{
	background: lightgreen;
	right: 0;
	transform: translateX(-10px);
	animation: Moveright 1s ease infinite;
  }

  @keyframes Moveright{
	0%{
	  transform: translateX(-10px);
	}
	50%{
	  transform: translateX(10px);
	  background: rgba(144,238,144,0.692);
	}
	100%{
	   transform: translateX(-10px);
	}
  }

  @keyframes Moveleft{
	0%{
	  transform: translateX(10px);
	}
	50%{  
	  transform: translateX(-10px);
	  background: rgba(240,128,128,0.692);
	}
	100%{
	   transform: translateX(10px);
	}
  }

  @media screen and (max-width:768px) {
	.my-loader{
		position: relative;
		margin-top: 8em;
	  }	  
  }

/* --------------------8 Jobs of a Member--------------- */
.eight-jobs{
   background: #eefdf1;
   margin-bottom: -3rem;
}

.eight-jobs-heading{
	text-align: center;
	font-size: 2.5rem !important;
	padding-top: 2rem;
}

.eight-jobs-description{
	font-size: 2rem !important;
	text-align: center;
	padding-top: 2rem;
	padding-bottom: 2rem;
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
}

.eight-jobs-button-title{
	display: flex;
}

.eight-bobs-button{
	width: 50px;
	height: 50px;
	background: var(--color-green);
	color: #fff;
	border: none;
}

.eight-jobs-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 5rem;
	margin-left: 5rem;
	margin-right: auto;
	padding-bottom: 2rem;
}

.eight-jobs-title{
	overflow-wrap: break-word;  
	word-wrap: break-word; 
	word-break: break-word;
	font-size: 2rem !important;
	color: var(--color-headings);
}

@media screen and (max-width:768px) {
	.eight-jobs-grid{
		display: block;
		gap: 0rem;
		margin-left: 5rem;
		margin-right: auto;
		padding-bottom: 2rem;
	}

	.eight-jobs-button-title{
		display: flex;
		margin-bottom: 3rem;
	}

	.eight-jobs{
		background: #eefdf1;
		margin-bottom: -5rem;
	 }
}

/*----------------TEXT EDITOR------------------------*/
p{
	word-break: break-all;
	padding-left: 1rem;
	padding-right: 1rem;
}

ol{
	word-break: break-all;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-left: 2rem;
}

ul{
	word-break: break-all;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-left: 2rem;
}

strong{
	word-break: break-all;
	padding-left: 1rem;
	padding-right: 1rem;
}

h1,h2,h3,h4,h5{
	word-break: break-all;
}

/* Video Programs */
.programs-numbering{
	height: 40px;
	width: 60px;
	background: var(--color-green);
	color: #fff;
	text-align: center;
	padding-top: 7px;
	padding-left: auto;
	padding-right: auto;
}	

.video-prog-content-right{
	margin-left: 1rem;
	width: 500px;
}

.numbering-content-flex{
	display: flex;
}

.video-programs-title{
	font-weight: bold;
	margin-top: -10px;
}

.video-date-icon{
	display: flex;
	margin-left: 1rem;
}

.video-programs{
	margin-left: 40rem;
	margin-top: 3rem;
}

.empty-video-progs{
	margin-left: 9rem;
}

.video-prog-number-title{
	margin-bottom: 3rem;
}

.vid-prog-date-text{
	margin-top: -5px;
}

.pagination-video-component{
	display: flex;
	justify-content: center;
}

.prev-page-btn{
	margin-right: 1rem;
	background: #4287f5 !important;
	border: none;
	color: #fff;
	/* height: 40px; */
	/* padding-left: .8rem;
	padding-right: auto; */
	padding: .5rem;
	cursor: pointer;
}

.next-page-btn{
	margin-left: 1rem;
	background: #4287f5 !important;
	border: none;
	color: #fff;
	/* height: 40px; */
	/* padding-left: .4rem;
	padding-right: .8rem; */
	padding: .5rem;
	cursor: pointer;
}

.current-page-txt{
	background: var(--color-green);
	color: #fff;
	border: none;
	/* padding-top: .5rem; */
	padding: .5rem;
}

.video-media-element-prog{
	width: 500px;
}

.pagination-announcement-list{
	background: #dfdddb;
	padding-bottom: 3rem;
}

.pagination-view-announcement{
	background: #dfdddb;
	padding-bottom: 3rem;
	padding-top: 3rem;
}

@media screen and (max-width:768px) {
	.video-programs{
		margin-left: 0rem;
		margin-top: 3rem;
	}	

	.video-media-element-prog{
		width: 98%;
		margin-left: .5rem;
		margin-right: .5rem;
	}

	.empty-video-progs{
		margin-left: 0rem;
	}

	.video-prog-content-right{
		margin-left: 0rem;
		width: 98%;
	}

	.numbering-content-flex{
		display: block;
	}

	.programs-numbering{
		height: 40px;
		width: 60px;
		background: var(--color-green);
		color: #fff;
		text-align: center;
		padding-top: 7px;
		padding-left: auto;
		padding-right: auto;
		margin-bottom: 2rem;
		margin-left: 1rem;
	}
}