/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', arial;
}

/* Poppins font */
a {
  text-decoration: none !important;
}

.section-padding {
  padding: 10rem 0;
}

@media only screen and (max-width: 56.25em) {
  .section-padding {
    padding: 5rem 0;
  }
}

.section-padding-2 {
  padding: 5rem 0;
}

.section-heading {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  font-family: "Poppins" !important;
  font-weight: 800;
}

.section-caption {
  font-size: 1.5rem;
  font-family: "Poppins" !important;
  font-style: italic;
}

.header__banner {
  position: relative;
  width: 100%;
  height: 80%;
  top: 10rem;
  z-index: 2;
}

.header__banner .banner-content {
  margin-top: 18rem;
  width: 100%;
}

.header__banner .banner-content-2 {
  margin-top: 13rem;
}

@media only screen and (max-width: 75em) {
  .header__banner .banner-content {
    margin-top: 5rem;
  }
}

.header__banner .banner-content .btn-yel {
  color: #fff;
  font-size: 1.7rem;
  font-family: 'Oswald';
  padding: 1.2rem 4rem;
  background-color: #000;
  text-decoration: none;
  border-radius: 0.3rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
}

.header__banner .banner-content .btn-yel:hover {
  letter-spacing: .2rem;
  background-color: #fad11d;
}

.header__banner .banner-caption {
  font-size: 8rem;
  color: #fad11d;
  font-family: 'Oswald';
}

@media only screen and (max-width: 37.5em) {
  .header__banner .banner-caption {
    font-size: 5.5rem;
  }
}

.header__banner .banner-text {
  color: #fff;
  font-size: 1.6rem;
  width: 90%;
  line-height: 2;
  font-family: 'Poppins';
  margin-bottom: 4rem;
}

.header__banner .banner-text-2 {
  margin-top: 2rem;
}

.header__banner .banner-text-2 span {
  padding: 0 1rem;
}

@media only screen and (max-width: 37.5em) {
  .header__banner .banner-text {
    font-size: 1.4rem;
    width: 100%;
  }
}

.header__nav {
  width: 100%;
  border-bottom: 1px solid #fff;
  height: 7rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header__nav-2 {
  background-color: #000 !important;
  border-bottom: none !important;
}

@media only screen and (max-width: 75em) {
  .header__nav {
    background-color: #000 !important;
    border-bottom: none !important;
  }
}

.header__nav .fad {
  color: #fff;
  position: absolute;
  float: right;
  right: 2rem;
  top: 2rem;
  font-size: 3rem;
  display: none;
}

@media screen and (max-width: 990px) {
  .header__nav .fad {
    display: block;
  }
}

.header__nav--logo {
  width: 100%;
}

.header__nav--logo img {
  height: 10rem;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  margin-top: -1.7rem;
}

@media only screen and (max-width: 75em) {
  .header__nav--logo img {
    -webkit-transform: scale(1.35);
            transform: scale(1.35);
  }
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 1.2rem;
  z-index: 10;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 991px) {
  .header__nav ul {
    display: block;
    margin-top: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#2d2d2d), to(#000));
    background-image: linear-gradient(to right, #2d2d2d, #000);
    height: 0;
    overflow: hidden;
    border-radius: .8rem;
  }
}

.header__nav ul .btn {
  background-color: #fff;
}

.header__nav ul .btn::before, .header__nav ul .btn::after {
  display: none;
}

.header__nav ul .btn a {
  color: #000;
}

.header__nav ul .btn-2 {
  background-color: #fad11d;
}

.header__nav ul .btn-2:hover a {
  color: #000;
}

.header__nav ul .btn-2 a {
  color: #fff;
}

.header__nav ul li {
  display: inline;
  padding: .8rem 1.2vw;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 75em) {
  .header__nav ul li {
    display: block;
    margin-bottom: 1rem;
  }
}

.header__nav ul li:hover a {
  color: #fad11d;
}

.header__nav ul li::before {
  width: 100%;
  height: 2px;
  background-color: #fad11d;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header__nav ul li::after {
  width: 100%;
  height: 2px;
  background-color: #fad11d;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header__nav ul li:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.header__nav ul li:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.header__nav ul li a {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Poppins';
  font-weight: 500;
  text-decoration: none;
}

.pagination {
  display: inline-block;
  margin-top: 3rem;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}

.pagination a {
  color: #4d4d4d;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  font-family: 'Poppins';
  font-size: 1.5rem;
  border: 1px solid #d2d2d2;
}

.pagination a:first-child {
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

.pagination a:last-child {
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.pagination a.active {
  background-color: #fad11d;
  color: white;
  border: 1px solid #fad11d;
}

.pagination a:hover:not(.active) {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.login {
  width: 100%;
  height: 100vh;
  position: fixed;
  font-family: 'Poppins';
  overflow-x: hidden;
}

@media only screen and (max-width: 56.25em) {
  .login {
    height: 100%;
    padding-bottom: 5rem;
    overflow-y: scroll;
  }
}

.login-box {
  padding: 3rem 2rem;
  margin: 0 auto;
  padding-top: 6rem;
  max-width: 80%;
}

.login-box-2 {
  max-width: 50%;
}

@media only screen and (max-width: 75em) {
  .login-box {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}

.login-box .fg-pass {
  position: relative;
  top: 3rem;
  float: right;
  right: 0;
  font-family: 'Oswald';
  font-size: 1.5rem;
  color: #fad11d;
}

.login-box .fg-pass:hover {
  color: #000;
}

@media only screen and (max-width: 75em) {
  .login-box {
    max-width: 60%;
  }
}

@media only screen and (max-width: 56.25em) {
  .login-box {
    max-width: 90%;
  }
}

.login-box .fa-arrow-down {
  font-size: 2rem;
  text-align: center;
  width: 6rem;
  height: 5rem;
  position: relative;
  margin-top: 1rem;
  -webkit-transform: translateX(-50%) scale(0.8);
          transform: translateX(-50%) scale(0.8);
  left: 50%;
  outline: 1px solid #000;
  line-height: 5rem;
}

.login-box p {
  text-align: center;
  font-size: 1.1rem;
}

.login-box .form {
  margin-top: 7rem;
}

@media only screen and (max-width: 75em) {
  .login-box .form {
    margin-top: 0;
  }
}

.login-box .form-box {
  margin-bottom: 2rem;
  overflow: visible;
}

@media only screen and (max-width: 75em) {
  .login-box .form-box {
    margin-bottom: 1rem;
  }
}

.login-box .form-box label {
  font-size: 2.5rem;
  font-family: 'Oswald';
  margin-bottom: 1rem;
}

@media only screen and (max-width: 56.25em) {
  .login-box .form-box label {
    font-size: 2rem;
  }
}

.login-box .form button {
  margin-top: 2rem;
  padding: 1.5rem;
  width: 100%;
  border: none;
  outline: none;
  background-color: #000;
  color: #fff;
  font-family: 'Oswald';
  font-size: 1.8rem;
  text-transform: uppercase;
  position: relative;
  border-radius: 0.5rem;
  cursor: pointer;
}

.login-box .form button:hover::before {
  left: 0;
  top: 0;
}

.login-box .form button::before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  left: -1rem;
  z-index: -1;
  top: 1rem;
  border-radius: 0.5rem;
  background: #fad11d;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.login-box .form-input {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  border: none;
  border-bottom: 2px solid #000;
  outline: none;
}

.login-box h2 {
  color: #000;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}

.login .col-lg-4 {
  padding: 0 !important;
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(233, 165, 20, 0.7))), url("../img/login2.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(233, 165, 20, 0.7)), url("../img/login2.jpg");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  .login .col-lg-4 {
    display: none;
  }
}

.login .col-lg-4 .rgt-content {
  margin-top: 5rem;
  text-align: center;
  color: #fff;
}

.login .col-lg-4 .rgt-content h1 {
  font-size: 4rem;
  text-transform: uppercase;
}

.login .col-lg-4 .rgt-content p {
  font-size: 1.3rem;
}

.login .col-lg-4 .rgt-content a {
  color: #fff;
  font-size: 1.7rem;
  font-family: 'Oswald';
  padding: 1.2rem 4rem;
  background-color: #000;
  text-decoration: none;
  border-radius: 0.3rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
  position: absolute;
  bottom: 10rem;
  margin-left: -5rem;
}

.donate-container {
  font-family: 'Poppins';
}

.donate-container .form button {
  width: 60% !important;
  padding: 2rem;
  margin: 3rem auto;
  background-color: #000;
  font-size: 2rem;
  font-family: 'Oswald';
  color: #fad11d;
  border-radius: 0.8rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.donate-container .row {
  margin-top: 0 !important;
}

.donate-container .row .col-md-6 select {
  width: 100%;
  padding: 2rem;
  margin-top: 1rem;
  font-size: 1.4rem !important;
  outline: none;
  border: 1px solid #d2d2d2;
  border-radius: 0.6rem;
}

.donate-container .row .col-md-6 select option {
  padding: 1rem 0;
}

.donate-container .row .col-md-6 .form-input {
  width: 100%;
  padding: 2rem;
  margin-top: 1rem;
  border: 1px solid #d2d2d2;
  border-radius: .6rem;
  font-size: 1.4rem;
  outline: none;
}

.donate-container h2 {
  margin-top: 5rem;
  text-transform: capitalize;
}

.donate-container h2 span {
  font-size: 1.5rem;
  color: #888888;
}

.donate-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}

@media only screen and (max-width: 56.25em) {
  .donate-box ul {
    display: block;
  }
}

.donate-box ul .active {
  background-color: #fad11d;
  color: #fff;
  border: 1px solid #fad11d;
}

.donate-box ul li {
  display: inline;
  list-style: none;
  padding: 2.5rem 3rem;
  border: 1px solid #d2d2d2;
  font-size: 1.8rem;
  font-family: 'Oswald';
  border-radius: 0.6rem;
  cursor: pointer;
}

@media only screen and (max-width: 56.25em) {
  .donate-box ul li {
    display: block;
    width: 48%;
    float: left;
    left: 0;
    position: relative;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
  }
}

.donate-box ul li:hover {
  background-color: #fad11d;
  color: #fff;
  border: 1px solid #fad11d;
}

.donate-box ul li:not(:last-child) {
  margin-right: .5rem;
}

.donate-box ul .form [type="text"] {
  padding: 2.5rem 3rem;
  border: 1px solid #d2d2d2;
  font-size: 1.8rem;
  font-family: 'Oswald';
  border-radius: 0.6rem;
  outline: none;
  background-color: #fff !important;
  color: #fad11d !important;
}

@media only screen and (max-width: 56.25em) {
  .donate-box ul .form [type="text"] {
    padding: 1.5rem 2rem;
  }
}

.header {
  height: 80rem;
  background-image: url("../img/bg4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
  overflow: hidden;
}

.header-2 {
  height: 60rem;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(233, 165, 20, 0.7))), url("../img/banner.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(233, 165, 20, 0.7)), url("../img/banner.jpg");
}

@media only screen and (max-width: 56.25em) {
  .header-2 {
    height: 55rem !important;
  }
}

.header-2::before {
  display: none;
}

.header-3 {
  background-position: center left;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(233, 165, 20, 0.7))), url("../img/contact-us.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(233, 165, 20, 0.7)), url("../img/contact-us.jpg");
}

.header-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(233, 165, 20, 0.7))), url("../img/banner3.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(233, 165, 20, 0.7)), url("../img/banner3.jpg");
}

.header-5 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(233, 165, 20, 0.7))), url("../img/banner4.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(233, 165, 20, 0.7)), url("../img/banner4.jpg");
}

.header-6 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(233, 165, 20, 0.7))), url("../img/banner6.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(233, 165, 20, 0.7)), url("../img/banner6.jpg");
}

@media only screen and (max-width: 56.25em) {
  .header {
    background-position: center center;
    height: 70rem;
  }
}

.header::before {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
}

.section-video {
  background-image: -webkit-gradient(linear, left top, right top, from(#FF9742), color-stop(rgba(250, 209, 29, 0.8)), to(rgba(233, 165, 20, 0.7))), url("../img/bg0.jpg");
  background-image: linear-gradient(to right, #FF9742, rgba(250, 209, 29, 0.8), rgba(233, 165, 20, 0.7)), url("../img/bg0.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 5rem 0 6rem 0;
  font-family: 'Poppins';
}

@media only screen and (max-width: 75em) {
  .section-video {
    background-size: cover;
  }
}

@media only screen and (max-width: 56.25em) {
  .section-video .col-lg-4 {
    margin-bottom: 2rem;
  }
}

.section-video .sec-bg {
  width: 100%;
  height: 30rem;
  margin-top: -15rem;
  position: relative;
  background-image: url("../img/child.jpg");
  border-radius: 0.8rem;
  -webkit-box-shadow: 6px 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 6px 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
  overflow: hidden;
}

.section-video .sec-bg::before {
  content: 'African Children';
  position: absolute;
  padding: .7rem 2rem;
  background-color: #fad11d;
  font-family: "Oswald";
  color: #fff;
  font-size: 1.6rem;
  top: 2rem;
  z-index: 2;
}

.section-video .sec-bg::after {
  position: absolute;
  width: 0;
  height: 0;
  content: '';
  float: left;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-transform: scale(2);
          transform: scale(2);
  z-index: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.section-video .sec-bg:hover::after {
  width: 100%;
  height: 100%;
}

.section-video .sec-bg-play {
  position: absolute;
  float: right;
  right: 2rem;
  bottom: 2rem;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 2;
}

.section-video .sec-bg-play:active {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

.section-video .sec-name {
  font-size: 1.6rem;
  font-family: "Oswald";
}

.section-video .sec-name span {
  margin-top: 0.6rem;
  font-size: 1.3rem;
  font-style: italic;
  color: #fff;
  font-family: 'Poppins';
}

.section-video .sec-vd-cp {
  color: #fff;
  font-family: 'Oswald';
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-video .sec-vd-text {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
}

.section-video .sec-ul {
  width: 10rem;
  height: 1px;
  background-color: #000;
}

body {
  height: 114rem;
}

.section-conference {
  background-color: #fff;
}

.section-conference .section-heading,
.section-conference .section-caption {
  text-align: center;
}

.section-conference .row {
  margin-top: 5rem;
}

@media only screen and (max-width: 75em) {
  .section-conference .row .col-lg-6 {
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 75em) {
  .section-conference .row .col-md-6 {
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 75em) {
  .section-conference .row {
    margin-top: 3rem;
  }
}

.section-conference .event {
  background-color: #fff;
  padding: 1rem 0;
  padding-bottom: 3rem;
  border-bottom-right-radius: .8rem;
  border-bottom-left-radius: .8rem;
  margin-top: -.8rem;
}

.section-conference .sec-eve-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  padding: 0 2rem;
}

.section-conference .sec-eve-box img {
  border-radius: .8rem;
  -webkit-box-shadow: 0 1rem 2rem #d2d2d2;
          box-shadow: 0 1rem 2rem #d2d2d2;
}

.section-conference .sec-eve-content {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  font-family: 'Poppins';
}

.section-conference .sec-eve-content .time {
  margin-right: 1rem;
  font-weight: 500;
  color: #2d2d2d;
}

.section-conference .sec-eve-content h3 {
  font-size: 1.6rem;
}

.section-conference .sec-eve-content h3 a {
  color: #000;
}

.section-conference .sec-eve-content p {
  color: #fad11d;
  font-weight: 600;
}

.section-conference .sec-con--content .btn-yel {
  color: #fff;
  font-size: 1.7rem;
  font-family: 'Oswald';
  padding: 1.2rem 4rem;
  background-color: #000;
  text-decoration: none;
  border-radius: 0.3rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
}

.section-conference .sec-con--content .btn-yel:hover {
  letter-spacing: .2rem;
  background-color: #fad11d;
}

.section-conference .sec-con--content h2 {
  color: #2d2d2d;
  font-family: 'Poppins';
  margin-top: 1rem;
  text-transform: uppercase;
}

.section-conference .sec-con--content p {
  color: #888888;
  font-size: 1.2rem;
  font-family: 'Poppins';
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-conference .sec-con--content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: 'Oswald';
  margin-bottom: 3rem;
}

.section-conference .sec-con--content ul li {
  list-style: none;
  font-weight: 600;
  font-size: 2rem;
  color: #fad11d !important;
}

.section-conference .sec-con--content ul li span {
  font-size: 1.6rem;
  color: #4d4d4d;
}

.section-conference .sec-con--content .row img {
  border: 7px solid #fad11d;
  padding: 1rem;
  width: 100%;
}

.section-blog .row {
  margin-top: 5rem;
}

@media only screen and (max-width: 56.25em) {
  .section-blog .row .col-lg-3 {
    margin-bottom: 3rem;
  }
}

.section-blog .form-header {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Poppins';
  margin-top: 6rem;
  margin-bottom: 3rem;
}

.section-blog .form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 56.25em) {
  .section-blog .form-box:first-child {
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .section-blog .form-box {
    display: block;
    margin-bottom: 0;
    margin-top: 0;
  }
}

.section-blog .form button {
  width: 100%;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  background-color: #000;
  text-transform: uppercase;
  font-family: 'Oswald';
  outline: none;
  cursor: pointer;
}

.section-blog .form-input {
  width: 33.3%;
  padding: 1.6rem 2rem;
  background-color: #eeeeee;
  border-radius: .3rem;
  border: 1px solid #979797;
  outline: none;
  text-transform: uppercase;
  font-size: 1.3rem;
}

@media only screen and (max-width: 56.25em) {
  .section-blog .form-input {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.section-blog .form-input-2 {
  width: 100%;
  padding-bottom: 15rem;
}

.section-blog .form-input:not(:last-child) {
  margin-right: 1rem;
}

@media only screen and (max-width: 56.25em) {
  .section-blog .form-input:not(:last-child) {
    margin-right: 0;
  }
}

.section-blog .sec-blog--details {
  margin-top: 10rem;
}

.section-blog .sec-blog--info {
  background-color: #fff;
  height: 60rem;
  -webkit-box-shadow: 1rem 2rem 3rem #f3f3f3;
          box-shadow: 1rem 2rem 3rem #f3f3f3;
  padding: 8rem 4rem;
  font-family: 'Poppins';
  margin-top: 5rem;
  margin-left: -7rem;
}

.section-blog .sec-blog--info-2 h1 {
  font-family: 'Oswald';
  font-size: 4rem !important;
  color: #fad11d;
  margin-bottom: 1rem !important;
}

.section-blog .sec-blog--info-2 ul {
  margin-top: 2rem;
}

.section-blog .sec-blog--info-2 ul li {
  font-size: 1.6rem;
  padding: 2rem 0;
  list-style: none;
  color: #888888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-blog .sec-blog--info-2 ul li i {
  margin-right: 1rem;
  font-size: 2rem;
  color: #fad11d;
}

.section-blog .sec-blog--info-2 .icon-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 7rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.section-blog .sec-blog--info-2 .icon-box a i {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  background-color: #fad11d;
  text-align: center;
  line-height: 5rem;
  -webkit-box-shadow: 0 1rem 4rem #fad11d;
          box-shadow: 0 1rem 4rem #fad11d;
}

@media only screen and (max-width: 37.5em) {
  .section-blog .sec-blog--info {
    margin-top: 3rem;
    margin-left: 0;
    height: auto;
  }
}

@media only screen and (max-width: 75em) {
  .section-blog .sec-blog--info {
    height: auto;
  }
}

.section-blog .sec-blog--info h1 {
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.section-blog .sec-blog--info p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.section-blog .sec-blog--bg {
  width: 100%;
  height: 60rem;
  background-image: url("../img/bg0.jpg");
}

.section-blog .sec-blog--bg-2 {
  background-image: url("../img/contact-bg.jpg");
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  border: 7px solid #fad11d;
}

@media only screen and (max-width: 56.25em) {
  .section-blog .sec-blog--bg-2 {
    background-position: center bottom !important;
    height: 40rem;
  }
}

.section-blog .sec-blog-vision {
  background-color: #f2f2f2;
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 56.25em) {
  .section-blog .sec-blog-vision {
    margin-bottom: 2rem;
  }
}

.section-blog .sec-blog-vision:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.section-blog .sec-blog-vision::before {
  position: absolute;
  content: 'Donate';
  width: 0;
  height: 0;
  line-height: 30rem;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 151, 66, 0.692)), color-stop(rgba(250, 209, 29, 0.8)), to(rgba(233, 165, 20, 0.7))), url("../img/vision/d1.jpg");
  background-image: linear-gradient(to right, rgba(255, 151, 66, 0.692), rgba(250, 209, 29, 0.8), rgba(233, 165, 20, 0.7)), url("../img/vision/d1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  font-family: "Poppins";
  font-size: 5rem;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 50%;
}

.section-blog .sec-blog-vision-1::before {
  position: absolute;
  content: 'Inspiration';
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 151, 66, 0.692)), color-stop(rgba(250, 209, 29, 0.8)), to(rgba(233, 165, 20, 0.7))), url("../img/vision/d2.jpg");
  background-image: linear-gradient(to right, rgba(255, 151, 66, 0.692), rgba(250, 209, 29, 0.8), rgba(233, 165, 20, 0.7)), url("../img/vision/d2.jpg");
  background-position: center center;
  left: 0;
  top: 0;
}

.section-blog .sec-blog-vision-2::before {
  position: absolute;
  content: 'Leaders';
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 151, 66, 0.692)), color-stop(rgba(250, 209, 29, 0.8)), to(rgba(233, 165, 20, 0.7))), url("../img/vision/d3.jpeg") !important;
  background-image: linear-gradient(to right, rgba(255, 151, 66, 0.692), rgba(250, 209, 29, 0.8), rgba(233, 165, 20, 0.7)), url("../img/vision/d3.jpeg") !important;
  left: 0;
  top: 0;
  background-position: center center;
  background-size: 160%;
}

.section-blog .sec-blog-vision img {
  margin-bottom: 2rem;
}

.section-blog .sec-blog-vision h2 {
  font-size: 3rem;
  font-family: 'Oswald';
  margin-bottom: 2rem;
}

.section-blog .sec-blog-vision--text {
  font-size: 1.4rem;
  font-family: 'Poppins';
}

.section-blog .sec-blg-bg {
  height: 22rem;
  overflow: hidden;
  background-image: url("../img/bg1.jpg");
  background-size: 135%;
  background-position: top center;
  position: relative;
}

.section-blog .sec-blg-bg span {
  position: absolute;
  background-color: #16a2cc;
  padding: .6rem 2rem;
  float: right;
  top: 2rem;
  right: 0;
  font-size: 1.1rem;
  font-family: 'Poppins';
  border-top-left-radius: .3rem;
  border-bottom-left-radius: .3rem;
  color: #fff;
  z-index: 3;
}

.section-blog .sec-blg-bg-1 {
  background-image: url("../img/bg2.jpg");
}

.section-blog .sec-blg-bg-1 span {
  background-color: #fff;
  color: #eb660e;
}

.section-blog .sec-blg-bg-2 {
  background-image: url("../img/bg3.jpg");
}

.section-blog .sec-blg-bg-3 {
  background-image: url("../img/bg6.jpeg");
}

.section-blog .sec-blg-bg-3 span {
  background-color: #fff;
  color: #fad11d;
}

.section-blog .sec-blg-bg-4 {
  background-image: url("../img/blog/blog.jpg");
  background-position: top  center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 56.25em) {
  .section-blog .sec-blg-bg-4 {
    background-size: cover;
    background-position: right center;
  }
}

.section-blog .sec-blg--content {
  width: 100%;
  -webkit-box-shadow: 0 .5rem 2rem #d2d2d2;
          box-shadow: 0 .5rem 2rem #d2d2d2;
  border-radius: 0.8rem;
  margin-bottom: 3rem;
  overflow: hidden;
  font-family: 'Poppins';
}

.section-blog .sec-blg--content .comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 1rem 0;
  text-transform: uppercase;
  color: #4d4d4d;
  font-size: 1.1rem;
}

.section-blog .sec-blg--details {
  padding: .5rem 2.2rem;
}

.section-blog .sec-blg--details h2 {
  margin-bottom: 2rem;
}

.section-blog .sec-blg--details h2 a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.section-blog .sec-blg--details p {
  font-size: 1.35rem;
  color: #444444;
}

.section-blog .sec-blg--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 1.5rem;
}

.section-blog .sec-blg--link .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  padding: 1rem 2rem;
  border-top: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
}

.section-blog .sec-blg--link .user img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: .3rem;
  border: 3px solid #fad11d;
  margin-right: 1rem;
}

.section-blog .sec-blg--link .user .name {
  font-size: 1.5rem;
  font-family: 'Oswald';
  font-style: italic;
  margin-top: .5rem;
  color: #888888;
}

.section-blog .sec-blg--link .icon {
  width: 25%;
  padding: 0 2rem;
  border-top: 1px solid #d2d2d2;
  text-align: center;
}

.section-blog .sec-blg--link .icon a {
  color: #888888;
}

.section-blog .sec-blg--link .icon a i {
  font-size: 1.6rem;
  margin-top: 1.8rem;
}

.section-info {
  background-image: url("../svg/gradient-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

@media only screen and (max-width: 75em) {
  .section-info {
    background-size: cover;
  }
}

.section-info .section-heading,
.section-info .section-caption {
  color: #fff !important;
}

.section-info .section-caption {
  margin-bottom: 5rem;
}

.section-info .button {
  color: #fff;
  font-size: 1.7rem;
  font-family: 'Oswald';
  padding: 1.2rem 4rem;
  background-color: #000;
  text-decoration: none;
  border-radius: 0.3rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
  position: relative;
  top: 2rem;
}

.section-info .button:hover {
  letter-spacing: .2rem;
  background-color: #fad11d;
}

.section-info .sec-info--bg {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

@media only screen and (max-width: 56.25em) {
  .section-info .sec-info--bg-2 {
    display: none;
  }
}

@media only screen and (max-width: 37.5em) {
  .section-info .sec-info--bg {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    margin-left: -2rem;
  }
}

.section-info .sec-info--text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2;
  font-family: 'Poppins';
  margin-bottom: 2rem;
  width: 95%;
}

.section-donate {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../img/banner2.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/banner2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  text-align: center;
}

.section-donate .section-heading,
.section-donate .section-caption {
  text-align: center;
  color: #fad11d;
  text-transform: capitalize;
}

.section-donate h3 {
  color: #fff;
  font-family: 'Oswald';
  width: 75%;
  font-size: 2.5rem;
  margin: 5rem auto;
  text-align: center;
  line-height: 1.6;
}

@media only screen and (max-width: 56.25em) {
  .section-donate h3 {
    width: 90%;
    font-size: 2.2rem;
  }
}

.section-donate .btn-yel {
  color: #fff;
  font-size: 1.7rem;
  font-family: 'Oswald';
  padding: 1.2rem 4rem;
  background-color: #fad11d;
  text-decoration: none;
  border-radius: 0.3rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
}

.section-donate .btn-yel:hover {
  letter-spacing: .2rem;
  background-color: #fad11d;
}

.section-map .mapouter {
  position: relative;
  text-align: right;
  height: 50rem !important;
  width: 100% !important;
  margin-top: 5rem;
}

.section-map .gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
}

.section-newsletter {
  text-align: center;
  background-color: #e9a514;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%23edae16' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23f0b717' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23f3bf19' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23f7c81b' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23fad11d' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%23fcc628' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%23fdba31' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23feaf38' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23ffa33d' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23ff9742' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left left;
}

.section-newsletter .form {
  padding: 3rem;
  background-color: #ffaa00;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%23ffb100' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23ffb800' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23ffbf00' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23ffc500' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23ffcc00' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%23ffd624' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%23ffe038' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23ffeb49' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23fff558' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23ffff66' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100%;
  -webkit-box-shadow: 0 1.5rem 3rem #c78a11;
          box-shadow: 0 1.5rem 3rem #c78a11;
  background-repeat: no-repeat;
  border-radius: 0.8rem;
  font-family: 'Poppins';
  width: 60%;
  margin: 0 auto;
}

@media only screen and (max-width: 56.25em) {
  .section-newsletter .form {
    width: 100%;
    background-size: cover;
  }
}

.section-newsletter .form h2 {
  color: #fff;
  margin-bottom: 2rem;
  font-family: 'Oswald';
  font-size: 2.4rem;
  text-transform: uppercase;
}

.section-newsletter .form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media only screen and (max-width: 56.25em) {
  .section-newsletter .form-box {
    display: block;
  }
}

.section-newsletter .form-box-2 {
  margin-top: 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-newsletter .form-box-2 p {
  color: #fff;
  font-size: 1.5rem;
  width: 70%;
  text-align: left;
}

@media only screen and (max-width: 56.25em) {
  .section-newsletter .form-box-2 p {
    width: 100%;
    text-align: center;
  }
}

.section-newsletter .form-box button {
  padding: 1rem 4rem;
  border-radius: 2.5rem;
  background-color: #000;
  border: none;
  font-size: 1.7rem;
  font-family: 'Oswald';
  color: #fff;
  cursor: pointer;
  outline: none;
}

.section-newsletter .form input {
  width: 50%;
  padding: 2rem 2rem;
  outline: none;
  border-radius: .5rem;
  border: none;
  font-size: 1.3rem;
}

@media only screen and (max-width: 56.25em) {
  .section-newsletter .form input {
    width: 100%;
  }
}

.section-newsletter .form input:first-child {
  margin-right: 1rem;
}

@media only screen and (max-width: 56.25em) {
  .section-newsletter .form input:first-child {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.section-event .btn-yel {
  color: #fff;
  font-size: 1.7rem;
  font-family: 'Oswald';
  padding: 1.2rem 4rem;
  background-color: #000;
  text-decoration: none;
  border-radius: 0.3rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 45%;
}

@media only screen and (max-width: 56.25em) {
  .section-event .btn-yel {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    top: -5rem;
  }
}

.section-event .btn-yel:hover {
  letter-spacing: .2rem;
  background-color: #fad11d;
}

.section-event .row {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 56.25em) {
  .section-event .row {
    margin-bottom: 2rem;
  }
}

.section-event .row .col-lg-6:last-child {
  padding: 8rem 3rem;
  font-family: 'Poppins';
}

@media only screen and (max-width: 56.25em) {
  .section-event .row .col-lg-6:last-child {
    padding: 6rem 2rem;
  }
}

.section-event .row .col-lg-6:last-child h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.section-event .row .col-lg-6:last-child .text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: #5a5a5a;
}

.section-event .row .col-lg-6:last-child ul {
  margin-top: 1rem;
}

.section-event .row .col-lg-6:last-child ul li {
  list-style: none;
  padding: .6rem 0;
  font-size: 1.4rem;
}

.section-event .row .col-lg-6:last-child ul li i {
  margin-right: 1rem;
}

.section-event .row .col-lg-6 img {
  width: 100%;
}

.section-gallery {
  font-family: 'Poppins';
  /* Create four equal columns that sits next to each other */
}

.section-gallery .details {
  position: absolute;
  bottom: 3rem;
  width: 90%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  z-index: 2;
}

.section-gallery .details .heading {
  color: #fff;
  font-family: 'Oswald';
  text-transform: capitalize;
}

.section-gallery .row {
  display: -ms-flexbox;
  /* IE10 */
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
}

.section-gallery .row-container {
  padding: 0 5rem;
}

@media only screen and (max-width: 56.25em) {
  .section-gallery .row-container {
    padding: 0;
  }
}

@media only screen and (max-width: 56.25em) {
  .section-gallery .row {
    margin-left: .5rem;
    margin-right: .5rem;
    padding: 0;
  }
}

.section-gallery .row figure {
  position: relative;
  overflow: hidden;
}

.section-gallery .row figure:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.section-gallery .row figure::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.7));
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
}

.section-gallery .column {
  -ms-flex: 25%;
  /* IE10 */
  -webkit-box-flex: 25%;
          flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

@media only screen and (max-width: 56.25em) {
  .section-gallery .column {
    -ms-flex: 100%;
    -webkit-box-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

.section-gallery .column img {
  vertical-align: middle;
  width: 100% !important;
}

.section-blog-page {
  padding: 6rem 0;
}

.section-blog-page--leftContent {
  background-color: #fff;
  -webkit-box-shadow: 0 .5rem .8rem #d2d2d2;
          box-shadow: 0 .5rem .8rem #d2d2d2;
  border-radius: .5rem;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}

.section-blog-page--leftContent h2 {
  font-family: 'Oswald';
  border-bottom: 1px solid #d2d2d2;
  padding: 1.6rem;
  color: #4d4d4d;
  text-transform: uppercase;
}

.section-blog-page--leftContent figure {
  padding: 2rem 2rem 0 2rem;
}

.section-blog-page--leftContent figure img {
  width: 100%;
  border-radius: .5rem;
  height: 14rem;
}

@media only screen and (max-width: 56.25em) {
  .section-blog-page--leftContent figure img {
    height: auto;
  }
}

.section-blog-page--leftContent img {
  border-radius: .5rem;
}

.section-blog-page--leftContent p {
  color: #888888;
  font-size: 1.2rem;
  line-height: 1.7;
  padding: 0 2rem;
  font-family: 'Poppins';
}

.section-blog-page--leftContent .recent-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 2rem;
}

.section-blog-page--leftContent .recent-post .content {
  margin-left: 2rem;
  text-align: left;
}

.section-blog-page--leftContent .recent-post .content p {
  padding: 0;
  font-size: 1rem;
}

.section-blog-page--leftContent .recent-post a {
  color: #000;
  font-size: 1.3rem;
  position: relative;
  top: -.7rem;
  font-family: 'Poppins';
}

.section-blog-page--leftContent .recent-post a:hover {
  color: #fad11d;
}

.section-blog-page--leftContent .abt-link {
  color: #000;
  font-family: 'Oswald';
  font-size: 1.7rem;
  padding-left: 2rem;
}

.section-blog-page--leftContent .abt-link:hover {
  color: #fad11d;
}

@media only screen and (max-width: 56.25em) {
  .section-blog-page {
    padding: 3rem 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .comments-header {
    font-size: 2rem !important;
  }
}

.section-blog-page .sec-blg--content {
  width: 100% !important;
  padding-bottom: 5rem;
}

.section-blog-page .sec-blg--content .form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 56.25em) {
  .section-blog-page .sec-blg--content .form-box:first-child {
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .section-blog-page .sec-blg--content .form-box {
    display: block;
    margin-bottom: 0;
    margin-top: 0;
  }
}

.section-blog-page .sec-blg--content .form button {
  width: 100%;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  background-color: #000;
  text-transform: uppercase;
  font-family: 'Oswald';
}

.section-blog-page .sec-blg--content .form-input {
  width: 33.3%;
  padding: 1.6rem 2rem;
  background-color: #eeeeee;
  border-radius: .3rem;
  border: 1px solid #979797;
  outline: none;
  text-transform: uppercase;
  font-size: 1.3rem;
}

@media only screen and (max-width: 56.25em) {
  .section-blog-page .sec-blg--content .form-input {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.section-blog-page .sec-blg--content .form-input-2 {
  width: 100%;
  padding-bottom: 15rem;
}

.section-blog-page .sec-blg--content .form-input:not(:last-child) {
  margin-right: 1rem;
}

@media only screen and (max-width: 56.25em) {
  .section-blog-page .sec-blg--content .form-input:not(:last-child) {
    margin-right: 0;
  }
}

.section-blog-page .sec-blg--content .comments {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
  font-size: 1.5rem !important;
  margin-left: 1rem;
  margin-bottom: -.7rem !important;
}

.section-blog-page .sec-blg--content .comments span {
  padding: 0 1.5rem;
  color: #999696;
}

.section-blog-page .sec-blg--content .social-link {
  margin-top: 1rem;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.section-blog-page .sec-blg--content .social-link .fa-twitter {
  background-image: -webkit-gradient(linear, left top, right top, from(#12c4f0), to(#098aa1)) !important;
  background-image: linear-gradient(to right, #12c4f0, #098aa1) !important;
}

.section-blog-page .sec-blg--content .social-link .fa-instagram {
  background-image: -webkit-gradient(linear, left top, right top, from(#f03e12), to(#b11b1b)) !important;
  background-image: linear-gradient(to right, #f03e12, #b11b1b) !important;
}

.section-blog-page .sec-blg--content .social-link span {
  margin-right: 1rem;
}

.section-blog-page .sec-blg--content .social-link .icons {
  width: 3rem;
  height: 3rem;
  margin-right: .5rem;
  border-radius: 50%;
  color: #fff;
  line-height: 3rem;
  text-align: center;
}

.section-blog-page .sec-blg--content .social-link .icons:nth-child(1) {
  background-image: -webkit-gradient(linear, left top, right top, from(#1260f0), to(#093ea1));
  background-image: linear-gradient(to right, #1260f0, #093ea1);
}

.section-blog-page .sec-blg--content .authour {
  padding: 2rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f3f3f3;
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .sec-blg--content .authour {
    display: block;
  }
}

.section-blog-page .sec-blg--content .authour-3 {
  padding-left: 7rem !important;
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .sec-blg--content .authour-3 {
    padding-left: 1.5rem !important;
  }
}

.section-blog-page .sec-blg--content .authour-end {
  margin-bottom: 3rem;
}

.section-blog-page .sec-blg--content .authour-2 {
  background-color: #fff;
  border-bottom: 1px solid #d2d2d2;
  margin-top: 0;
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .sec-blg--content .authour-2 {
    padding: 2rem 1.5rem;
  }
}

.section-blog-page .sec-blg--content .authour-2 .text {
  font-size: 1.2rem !important;
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .sec-blg--content .authour-2 h4 {
    padding-bottom: 2rem;
  }
}

.section-blog-page .sec-blg--content .authour-2 h4 span {
  float: right;
  right: 0;
  position: absolute;
  font-size: 1.6rem;
  font-family: 'Poppins';
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .sec-blg--content .authour-2 h4 span {
    font-size: 1.1rem;
    margin-top: 1.7rem;
  }
}

.section-blog-page .sec-blg--content .authour-2 h4 span i {
  color: #fad11d;
}

.section-blog-page .sec-blg--content .authour-2 h4 span:first-child {
  cursor: pointer;
}

.section-blog-page .sec-blg--content .authour-2 h4 span:last-child {
  right: 8rem;
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .sec-blg--content .authour-2 h4 span:last-child {
    display: none;
  }
}

.section-blog-page .sec-blg--content .authour h4 {
  font-size: 2.6rem;
  font-family: 'Oswald';
}

.section-blog-page .sec-blg--content .authour p {
  font-size: 1.5rem !important;
}

.section-blog-page .sec-blg--content .authour-img {
  margin-right: 2rem;
  margin-top: .6rem;
}

.section-blog-page .sec-blg--content .authour-img-2 {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.section-blog-page .sec-blg--content .authour-img img {
  border-radius: 50%;
}

.section-blog-page .sec-blg--content figure {
  height: 50rem !important;
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .sec-blg--content figure {
    height: 35rem !important;
  }
}

.section-blog-page .sec-blg--content .sec-blg--details h2 {
  font-size: 3rem !important;
  color: #2d2d2d !important;
  font-weight: 700;
  margin-bottom: -.1rem;
}

.section-blog-page .sec-blg--content .sec-blg--details p {
  color: #888888;
  font-size: 1.5rem;
  width: 95%;
  line-height: 1.7;
}

@media only screen and (max-width: 37.5em) {
  .section-blog-page .sec-blg--content .sec-blg--details p {
    font-size: 1.4rem;
  }
}

.section-blog-page .sec-blg--content .sec-blg--details h3 {
  color: #2d2d2d;
  font-weight: 600;
}

.section-blog-page .sec-blg--content .sec-blg--details ul {
  margin-bottom: 1rem;
}

.section-blog-page .sec-blg--content .sec-blg--details ul li {
  list-style-type: none;
  padding: .8rem 0;
  color: #888888;
  font-size: 1.4rem;
}

.section-blog-page .sec-blg--content .sec-blg--details ul li i {
  margin-right: .6rem;
  color: #fad11d;
}

.footer {
  background-image: -webkit-gradient(linear, left top, right top, from(#2d2d2d), to(#000));
  background-image: linear-gradient(to right, #2d2d2d, #000);
  font-family: 'Poppins';
  color: #fff;
  padding-top: 10rem;
}

@media only screen and (max-width: 56.25em) {
  .footer {
    padding-top: 5rem;
  }
}

.footer-copyright {
  padding: 2rem 0;
  padding-top: 3rem;
  background-color: #000;
  text-align: center;
}

.footer-copyright p {
  font-size: 1.2rem;
}

.footer .col-lg-2, .footer .col-lg-4 {
  margin-bottom: 1rem;
}

.footer .mt {
  margin-bottom: 3rem;
}

.footer h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer h3 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer-caption {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.8;
}

.footer-box {
  padding: 0 .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 56.25em) {
  .footer-box {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media only screen and (max-width: 56.25em) {
  .footer-box img {
    margin-right: 1rem;
  }
}

.footer-box i {
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  text-align: center;
  line-height: 3rem;
  font-size: 1.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fad11d), to(#ffaa00));
  background-image: linear-gradient(to bottom, #fad11d, #ffaa00);
}

.footer-box-2 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.footer-box:not(:last-child) {
  margin-bottom: 1rem;
}

.footer ul li {
  padding: .5rem 0;
  list-style: none;
}

.footer ul li a {
  color: #fad11d;
  font-size: 1.2rem;
}
/*# sourceMappingURL=main.css.map */