html,
body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  height: 100%;

  margin: 0;
  padding: 0;
}

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

header {
 width: 100%;
 height: 76px;
 top: 0;
 left: 0;
 z-index: 1030;
 background: #fff;

}

hr {
  width: 101% !important;
  margin-bottom: 40px;
  border: 1px solid #d9dadd;
}
/* NAVIGATION*/

nav {
 float: right;
 padding: 15px;
 font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 margin-right: auto;
}


 
ul {
 list-style: none;
}
 
li {
 display: inline-block;
 float: left;
 padding-left: 20px;
 padding-right: 20px;
 padding-top:5px;
 padding-bottom:5px;

}
 
a {
 color: #575656;
 text-decoration: none;
 font-weight: 500;
 
}
 
a:hover {
 text-decoration: none;
}

nav li {
  position: relative;
}
nav li > a:hover {
   color: #61c0bd;
}

nav li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #61c0bd;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

nav li > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}



/* CONTAINER */

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  positiion: relative;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* LOGO */
 
#logo {
 margin-top: 20px;
 margin-left: auto;
 float: left;
 display: block;
}

#logo img{
   width: 200px;
  height: 50px;
  max-width: 100%;
  height: auto;
}


 #menu-icon {
 background: url(../images/menu-icon.png) no-repeat center;
 display: hidden;
 width: 32px;
 height: 32px;
}

@media only screen and (max-width : 768px) {
 
 header {
 position: absolute;
 }
 
 #menu-icon {
 display:inline-block;
 margin: 15px;
 }
 
 nav ul, nav:active ul { 
 display: none;
 position: absolute;
 padding: 20px;
 background: #61c0bd;
 right: 10px;
 top: 65px;
 width: 100%;

 }
 
 nav:hover ul {
 display: block;
 }
 
 nav li {
 text-align: right;
 width: 100%;
 padding: 15px 0;
 margin-bottom: 10px;
 margin: 0;
 }
 nav li > a {
   color: #fff !important;
}
}

/*                          SITE CONTENT                */
/* background contents */
.top-section-bckrg {
  background:url(https://ifeanyi005.github.io/opencharity.github.io/images/top-image.jpg) no-repeat;
  background-size: cover;
  height:auto;
  padding:50px 0;
  transition:all 400ms cubic-bezier(0.25,0.1,0.25,1) 0s;
  -webkit-transition:all 400ms cubic-bezier(0.25,0.1,0.25,1) 0s;width:100%;
}
.top-section-bckrg{
  position:relative;
}

.top-section-bckrg:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:black;
    opacity:0;
    z-index:0;
     opacity:.6;  
}
.top-section-bckrg > *{
    position:relative;
    z-index:1;
}

@media (min-width:40.063em) { 
    .top-section-bckrg{
        background-position: top center;
    }
}

.page-header {
  font-size: 44px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 3px;
  margin-top: -20px;
}
.page-text {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
}
@media all and ( max-width: 768px ) {
  
 .page-header {
  font-size: 30px;
  padding-top: 20px;
  margin-top: 30px;
 }
.page-text {
  font-size:14px; 
}
}

@media all and ( max-width: 600px ) {
  
.page-text {
  padding-left: 30px;
  padding-right: 30px;
}
}
/*                  NEWS-EVENT                           */
.news-event, .get-involved{
  background: #f2f2f2;
  padding: 10px 0;
}
.button 
{
  float: right;
  padding: 15px 10px 10px 15px; 
  background: #61c0bd;
  color: #fff;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.button a
{
  color: #fff;
}

.button a:hover
{
  color:#61c0bd;
}

.button:hover
{
  color: #61c0bd;
  background: none;
  border: 1px solid #61c0bd;
}
/* two responsive column/grid for news - event section */

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
[class*='col-'] {
  float: left;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
[class*='col-'] {
  padding-right: 20px;
}
[class*='col-']:last-of-type {
  padding-right: 0;
}

/* grid */
.row {
  margin: 0 -10px;
  margin-bottom: 10px;
}
.row:last-child {
  margin-bottom: 0;
}
[class*="col-"] {
  padding: 10px;
}

@media all and ( min-width: 600px ) {
  
  [class*="col-"] {
    display: table-cell;
  }
  
  /* set col widths */
  .col-2-3 {
    width: 66.66%;
  }
  .col-1-2 {
    width: 50%;
  }
  .col-1-3 {
    width: 33.33%;
  }
  .col-1-4 {
    width: 25%;
  }
  .col-1-8 {
    width: 12.5%;
  }
  
}

/*                                     GET INVOLVED              */
.get-involved, .our-mission, .our-member{
  background: #fff !important;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #5b6172;
}
.get-involved img{
  width: 80px;
}
.get-involved, .our-mission H4 {
  text-align: center;
}
.button-2 a
{ 

  padding: 15px 10px 10px 15px; 
  border: 1px solid #61c0bd;
  color: #61c0bd;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  text-align: center;
}

.gi-text p{
  padding-bottom: 5px;  
  width: 80%;
  font-size: 15px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .g-text p
  {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .collaborate 
  {
    margin-left: 20px;
  }
}

/*                                     OUR MISSION              */
.our-mission {
  background: #f2f2f2 !important;
  padding-top: 20px;
  text-align: center;
}

.our-mission H3 {
  text-align: center;
  margin-top: 20px;
}

.text {
  font-size: 16px;
  font-weight: 300;
  padding: 5px 10px;
  padding-bottom: 20px;


}
.text-2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}



.icon-box img{
  background:#61c0bd ;
  padding: 12px;
  -webkit-border-radius:1100%;
  -moz-border-radius:100%;
  -o-border-radius:100%;
  border-radius:100%;
  border:6px solid #fff;
  color:#fff;
  text-align:center;
  vertical-align:middle;
  width:65px;
  height:60px;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  -o-transition:.5s;
  transition:.5s;
    
}

.icon-rectangle {
  background: #fff;
  padding-top: 25px;
  margin-top: -30px;
  color: #61c0bd;
  width: auto;
}

.icon-rectangle .text  
{
  color: #575656 !important;
  padding: 16px 16px 0px 16px;
  height: 100px;
  overflow: hidden;
}

@media all and ( max-width: 754px ) {
  
  .icon-rectangle .text  
{
  font-size: 14px;
}
  }



.owl-carousel .owl-item img {
  height: auto;
  width: 150px !important;
  margin-right: -40px !important;
}

.owl-theme .owl-nav.disabled+.owl-dots
{
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

/*               BLOG                           */

.blog {
  background: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #5b6172;
}

.blog h3
{
  padding: 10px;
}

.carousel-wrap {
  margin: 0px auto !important;
  padding: 0 5%;
  position: relative;
}
.owl-carousel .item {
  position: relative; 
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #61c0bd;
}
.owl-nav i {
  font-size: 52px;
  visibility: visible;
  position: inherit;
}
.owl-nav .owl-prev {
  left: -35px;
 
}
.owl-nav .owl-next {
  right: -20px;
 
}


/*                            FOOTER                               */

footer {
  background: #45484d;
  text-align: center;

}

footer i{
  text-align: center;
  color: #61c0bd;
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0px;

  padding-left: 15px;

}

footer hr {
  margin: 0px;
  border: 0.5px solid #585b61;
  width: 90% !important;
  vertical-align: middle;

}

footer p
{
  padding: 5px;
  color: #979eb1;
  font-size: 13px;
}
#blog-slider .owl-nav.disabled
{
  display: inline-block !important;
}
