@font-face {
    font-family: "The-Sans-Plain";
    src: url(../fonts/The-Sans-Plain.otf);
  }

body {
    font-family: "The-Sans-Plain", "Cairo", sans-serif;
    position: relative;
    color: #616161;
}

a {
    color: #EB292A;
}

a:hover, 
a:focus,
a:active {
    color: #72BD46;
    text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 15px;
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea ,
select {
    padding: 8px;
    border: 1px solid #dddd;
    margin-bottom: 15px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
textarea:focus  {
    border-color:  #EFD417;
    border-width: 2px;
    outline: none;
}


/*======================================
=            NO GUTTER CODE            =
======================================*/
.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}

/*======================================
=            CUSTOM GUTTER CODE            =
======================================*/

@media(min-width:768px) {  /* Modify this based on column def */

.custom-gutter > [class*='col-'] {
    padding-right:4px;
    padding-left:4px; 
}

.custom-gutter > [class*="col-"]:first-child {
  padding-left:15px;
}
  
.custom-gutter > [class*="col-"]:last-child {
  padding-right:15px;
}

}



/* Preload
-------------------------------------------------------------- */
.loading-overlay {
    background: #ffffff;
    color: #2582eb;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
}

.spinner {
    margin: 25%  auto;
    width: 70px;
    text-align: center;
  }
  
  .spinner > div {
    width: 18px;
    height: 18px;
    background-color: #EB292A;
  
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
    background-color: #EFD417;
  }
  
  .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    background-color: #72BD46;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }


.navbar {
    padding: 0;
    min-height: 110px;
    background-color: #ffffff;
}
.navbar.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 60px -6px rgba(10,10,10,.2);
    -moz-box-shadow: 0px 0px 60px -6px rgba(10,10,10,.2);
    box-shadow: 0px 0px 60px -6px rgba(10,10,10,.2);
}
.btn {
    border-radius: 40px;
    padding: 12px 24px;
    margin:10px 0;
}
.btn.btn-primary {
    background-color: #EB292A;
    border-color: #EB292A;
}
.btn.btn-secondary {
    background-color: #EFD417;
    border-color: #EFD417;
}
.btn-lang {
    background-color: #EFD417;
    color: #ffffff;
    font-weight: bold;
}

.btn-circle {
    color: white;
    padding: 0;
    width: 50px; 
    height: 50px; 
    line-height: 50px; 
    border-radius: 25px; 
    text-align: center; 
    background-color: #EB292A;

} 
.btn-circle.btn-md { 
    width: 50px; 
    height: 50px; 
    line-height: 1.5; 
    border-radius: 25px; 
    font-size: 10px; 
    text-align: center; 
} 
.btn-circle.btn-xl { 
    width: 70px; 
    height: 70px; 
    line-height: 1; 
    border-radius: 35px; 
    font-size: 12px; 
    text-align: center; 
} 

.btn:hover,
.btn:focus ,
.btn-lang:hover,
.btn-lang:focus {
    background-color: #72BD46;
    border-color: #72BD46;
    color: #ffffff
}
.navbar .btn {
    line-height: 1.5;
    width: 100%;
    white-space: nowrap;
}
.navbar-brand img {
    max-width: 210px;
    height: auto;
}

.menu-collapser {
    background-color: transparent;
}

.stellarnav.desktop > ul {
    text-align: left;
    float: right;   
}

.stellarnav.desktop > ul > li {
    text-align: center;
}

.stellarnav.desktop > ul > li > a {
    padding: 0 15px;
    line-height: 90px;
    margin: 0;
    text-align: center;
    color: #616161;
    position: relative;
    font-weight: 600;
    font-size: 14px;
}
.stellarnav.desktop > ul > li > a:before {
    content: '';
    height: 5px;
    width: 0;
    opacity: 0;
    background-color: #EFD417;
    position: absolute;
    margin-left: -39px;
    margin-right: -39px;
    border: 0;
    bottom: 20px;
    left: 50%;
    -webkit-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
}

.stellarnav.desktop > ul > li > a:hover,
.stellarnav.desktop > ul > li > a:focus, 
.stellarnav.desktop > ul > li.current-menu-item > a
 {
    color: #EFD417;
}

.stellarnav.desktop > ul > li > a:hover::before ,
.stellarnav.desktop > ul > li > a:focus::before,
.stellarnav.desktop > ul > li.current-menu-item > a::before {
    width: 78px;
    opacity: 1;
}

.stellarnav.desktop li.has-sub a {
    padding-right: 15px;
}
.stellarnav.desktop > ul > li.has-sub > a {
    padding-right: 20px;
}


.stellarnav.desktop > ul > li.has-sub > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    border: 0;
}

.stellarnav.desktop ul ul li.has-sub a {
    padding-right: 35px;
}

.stellarnav.desktop ul ul li.has-sub > a:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    border: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    text-align: center;
    vertical-align: middle;
}


.stellarnav.desktop ul ul {
    text-align: left;
    background: #ffffff;
    border-top: 2px solid #EFD417;
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.1);
    -moz-box-shadow: 0 10px 15px rgba(0,0,0,.1);
    -o-box-shadow: 0 10px 15px rgba(0,0,0,.1);
    -ms-box-shadow: 0 10px 15px rgba(0,0,0,.1);
    box-shadow: 0 10px 15px rgba(0,0,0,.1);

}


.stellarnav.desktop ul ul li:last-child {
    border: 0;
}
.stellarnav.desktop ul ul li a {
    padding: 15px;
    color: #777;
    font-size: 16px;
}

.stellarnav.desktop ul ul li a:hover,
.stellarnav.desktop ul ul li a:focus, 
.stellarnav.desktop ul ul li.current-menu-item > a
 {
    background-color: #EFD417;
    color: #ffffff;
}


.stellarnav.desktop > ul > li > a.nav-btn {
    line-height: 25px;
}

.nav-btn:after,
.nav-btn:before {
    display: none;
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
}

.stellarnav li a.btn {
    color: #FFFFFF;
}

.stellarnav .call-btn-mobile, .stellarnav .close-menu, .stellarnav .location-btn-mobile, .stellarnav .menu-toggle {
    padding: 11px;
}

.stellarnav .dd-toggle {
    top: 10px;
    left: 0;
    right: auto;
}

.stellarnav.mobile.active {
    -webkit-box-shadow: 0px 0px 60px -6px rgba(10,10,10,.2);
    -moz-box-shadow: 0px 0px 60px -6px rgba(10,10,10,.2);
    box-shadow: 0px 0px 60px -6px rgba(10,10,10,.2);
}
.stellarnav.mobile ul {
    background-color: #ffffff;
    padding: 10px;
}
.stellarnav.mobile li {
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.stellarnav.mobile li:last-child {
    border-bottom: 0;
}
.stellarnav.mobile li a:hover,
.stellarnav.mobile li a:focus,
.stellarnav.mobile li.current-menu-item a {
    color: #EFD417;
}
.stellarnav.mobile ul li a.dd-toggle {
    padding: 0;
    background-color: #ededed;
    border-radius: 3px;
    color: #666;
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.stellarnav a.dd-toggle .icon-plus {
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
}

.stellarnav a.dd-toggle .icon-plus:after {
    content: '';
    display: none;
    visibility: hidden;
    width: 0;
    height: 0;
}

 
.stellarnav a.dd-toggle .icon-plus:before {
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    font-weight: 900;
    display: block;
    height: 35px;
    top: 0;
    left: 0;
    border: 0;
    width: auto;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
}


.stellarnav .menu-toggle span.bars {
    border: 1px solid #EFD417;
    border-radius: 3px;
    padding: 10px;
}

.stellarnav .menu-toggle span.bars span {
    background-color: #EFD417;
    width: 18px;
    height: 2px;
}

.page-header {
    padding: 25px 0 5px !important;
    background-color: #a7b7d3;
}

.page-header  h1 {
    color: #ffffff;
    margin: 0 0 20px;
}


.readmore {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    color: #EFD417;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid #EFD417;
    padding: 12px 36px;
    line-height: 24px;
    -moz-border-radius: 48px;
    -webkit-border-radius: 48px;
    border-radius: 48px;
    overflow: hidden;
    transition:  background-color 0.5s linear;
}

.readmore:hover {
    text-decoration: none;
    color: #fff;
    background-color: #EFD417;
}

.front-page-section {
    padding: 100px 0;
    position: relative;
}
.front-page-section .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: o;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
}

.section-header {
    margin-bottom: 50px;
}

.section-header .section-title {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 20px;
    color: #000000;
    text-align: center;
}
.section-header .section-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 20px;
    color: #555555;
    text-align: center;
}
.section-header .line {
    height: 2px;
    width: 50px;
    background-color: #EFD417;
    margin: 10px auto 20px;
}

.section-header.left .section-title ,
.section-header.left .section-subtitle  {
    text-align: left;
}

.section-header.left .line {
    margin-left: 0;
}

.dark .section-header .section-title ,
.dark .section-header .section-subtitle {
    color: #ffffff;
}

.dark .section-header .line {
    background-color: #ffffff;
}

.section-footer {
    text-align: center;
    margin-top:50px;
}

.page-title {
    background-color: #EFD417;
    padding: 100px 0;
    position: relative;
}
.page-title h1 {
    color: white;
    text-align: center;
}

.page-title.left h1 {
    text-align: left;
}

.page-title .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
.breadcrumb {
    background-color: transparent;
    padding: 10px 0;
    color: white;
}


.breadcrumb a ,
.breadcrumb-item+.breadcrumb-item::before , 
.breadcrumb-item.active  {
    color: white;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}


/* Call to action
-------------------------------------------------------------- */


.call-to-action {
    height: 700px;
    background-image: url(../img/img1.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    position: relative;
}

.call-to-action .content {
    padding-top: 275px;
    color: #ffffff;
    width: 400px;
    max-width: 100%;
}

.call-to-action .title {
    font-size: 20px;
}
.call-to-action .description {
    font-size: 20px;
    margin-bottom: 30px;
}
.call-to-action .sms-number {
    font-size: 100px;
    line-height: 1;
    font-weight: bold;
}

.call-to-action .btn {
    width: 260px;
}


.red-box {
    color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    max-width: 31%;
    margin: 0 1%;
    background-color: transparent;
    border: 2px solid #72BD46;
    min-height: 185px;
    overflow: hidden;

}

.red-box a {
    color: #72BD46;
}

/* Donations
-------------------------------------------------------------- */

section#donations {
    padding: 50px 0;
}

section#donations .section-header {
    margin: 0 0 50px;
}
section#donations h2.title {
    color: #EB292A;
    margin: 0 0 10px;
}

section#donations .subtitle {
    color: #616161;
    font-size: 14px;
}
.donation-box {
    color: #ffffff;
    padding: 20px;
    border-radius: 16px;
    max-width: 100%;

}

.donation-box.red {
    background-color:#EB292A;
}

.donation-box.green {
    background-color: #72BD46;
}

.donation-box.yellow {
    background-color: #EFD417;
}

.donation-box .number {
    font-size: 40px;
} 
.donation-box .title {
    font-size: 16px;
    margin-bottom:2px;
} 
.donation-box .description {
    font-size: 12px;
    text-align: justify;
} 



/* Share the good work section
-------------------------------------------------------------- */

#share-good-work {
    padding: 100px 0;
    background-image: url(../img/img5.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

#share-good-work  h2.title {
    text-align: center;
    color: #ffffff;
}


/* Latest News
-------------------------------------------------------------- */

section#latest-news {
    padding: 50px 0;
}

section#latest-news .section-header {
    margin: 0 0 50px;
}
section#latest-news h2.title {
    color: #EFD417;
    margin: 0 0 10px;
}

section#latest-news  .subtitle {
    color: #616161;
    font-size: 14px;
}

.article {
    position: relative;
}

.article-title {
    font-size: 18px;
    line-height: 24px;
}
.article-title a {
    color:#72BD46;
}
.article-title a:hover, .article-title a:focus {
    color: #EB292A;
}   
.article-excerpt {
    font-size: 13px;
    text-align: justify;
}

.article-date {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: #EB292A;
    padding: 10px;
    -webkit-border-bottom-left-radius: 25px;
    -webkit-border-bottom-right-radius: 25px;
    -moz-border-bottom-left-radius: 25px;
    -moz-border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.article-date span {
    display: block;
    margin-bottom: 5px;
    text-align: center;
    color: #fff;
}

.article-date span.day {
    font-size: 20px;
    line-height: 1;
}
.article-date span.month {
    font-size: 14px;
}


/* counter
-------------------------------------------------------------- */

#counter {
    padding: 100px 0;
    /*background-color: #EB292A;*/
    background-color: #a7b7d3;
    background-image: url(../img/counterbg.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

#counter h2.title {
    text-align: center;
    color: #ffffff;
}
.counter-box {
    position: relative;
    margin: 5px;
}

.counter-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba( 0, 0, 0, 0.4 );
}

.counter-content {
    text-align: center;
    color: #ffffff;
}
.counter-value {
    font-weight: bold;
    font-size: 64px;
}
.counter-label {
    font-size: 15px;
}


/* events
-------------------------------------------------------------- */

#events {
    padding: 100px 0;
    /*background-color: #72BD46;*/
    background-color: #a4b960;
}

#events h2.title {
    text-align: center;
    color: #ffffff;
}


#events .event {
    position: relative;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    padding: 15px;
    padding: 15px 40px 15px 15px;
}

#events .event:after {
    content: '\f105';
    display: block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 0;
    top: 50%;
    margin-top: -20px;
    color: #E6E6E6;
    text-align: center;
}

.event-title {
    font-size: 18px;
}

.event-title a {
    color: #a7b7d3;
}


.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    color: black;
    font-size: 35px;
    padding-right: 20px;
    outline: none;
}

.nav-container {
    margin-top: 50px;
    text-align: center;
}

.nav-container div {
    display: inline-block;
}
.nav-container button {
    background-color: transparent;
    border: 0;
    padding: 0;
    color: #ffffff;
    outline: none;
    line-height: 24px;
}

.nav-container button.owl-prev span ,
.nav-container button.owl-next span {
    font-size: 20px;
}

.nav-container button.owl-dot ,
.nav-container button.owl-dot:focus {
    width: 10px;
    height: 10px;
    background-color: rgba( 0, 0, 0, 0.16 );
    border: 0;
    margin: 0 2px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-appearance: none;
    outline: none;
}

.nav-container button.owl-dot.active {
    background-color: #ffffff;
    border: 0;
    outline: none;
}


/* Sidebar
-------------------------------------------------------------- */

.sidebar .widget {
    margin-bottom: 30px;
}
.sidebar .widget-title {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 36px;
    color: #000000;
    position: relative;
}
.sidebar .widget-title:after {
    content: '';
    display: block;
    height: 2px;
    width: 50px;
    background-color: #EFD417;
    position: absolute;
    top:42px;
}

.sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar .widget ul li {
    margin-bottom: 8px;
}

/* Comments
-------------------------------------------------------------- */

article.post {
    margin-bottom: 60px;
}

.commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commentlist ul.children {
    list-style: none;
}

.commentlist li.comment {
    padding: 15px;
    background-color: #e2e2e2;
    border: 1px solid #cccccc;
    margin-bottom: 30px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.commentlist li.comment .avatar {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.commentlist li.comment .comment-meta {
    margin-bottom: 20px;
}

.comment-form-comment label {
    display: block;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea {
    width: 100%;
}

/* Pagination
-------------------------------------------------------------- */

.pagination {
    padding: 30px 0;
}
.pagination .screen-reader-text {
    display: none;
}
.pagination .nav-links {
    width: 100%;
    text-align: center;
}
.pagination .nav-links a, 
.pagination .nav-links span {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #EFD417;
    color: #EFD417;
    background-color: transparent;
}

.pagination .nav-links a:hover,
.pagination .nav-links span.current {
    color: white;
    background-color: #EFD417;
    text-decoration: none;
}



/* Social Links
-------------------------------------------------------------- */

.social-links {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 30px;
    padding: 10px 10px 10px;
    -webkit-border-bottom-left-radius: 25px;
    -webkit-border-bottom-right-radius: 25px;
    -moz-border-bottom-left-radius: 25px;
    -moz-border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;

}

.social-links ul,
.social-links li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-bottom: 5px;
    line-height: 1;
}


.social-links li a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #EB292A;
}

.social-links li a.twitter {
    background-color: #1da1f2;
}
.social-links li a.snapchat {
    background-color: #fffc00;
    color: #000;
}
.social-links li a.facebook {
    background-color: #3b5998;
}
.social-links li a.instagram {
    background-color: #c13584;
}

.social-links li a:hover {
    color: #ffffff;
    background-color: #EFD417;
}

.search-form {
    position: relative;
}

.search-form input.search-field  {
  width: 100%;
  margin: 0;
  height: 42px;
  padding-left: 42px;
}

.search-form button.search-submit {
    background-color: transparent;
    border: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: #555555;
    height: 42px;
    width: 42px;
    position: absolute;
    text-align: center;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
}



/* Testimonials
-------------------------------------------------------------- */

.slick-slide , 
.slick-slide a {
    outline: none
}

.testimonials-carousel .slick-dots {
    bottom: -55px;
}

.testimonials-carousel .slick-dots li.slick-active button:before {
    color: #EFD417;
}

.testimonials-carousel blockquote {
    padding: 20px 20%;
}

.testimonials-carousel .author {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dark .testimonials-carousel blockquote, 
.dark .testimonials-carousel .author ,
.dark .testimonials-carousel .company-name   {
    color: #ffffff
}

.testimonials-carousel-nav {
    width: 50%;
    margin: 30px auto;
}
.testimonial-thumbnail {
    text-align: center;
}
.testimonial-thumbnail img {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #efefef;
    text-align: center;
    width: 150px;
    height: 150px;
    cursor: pointer;
}
.testimonial-thumbnail.slick-current img {
    opacity: 1;
    border-color: #EFD417;
}

.testimonials-carousel {
    text-align: center;
}






/* Interviews
-------------------------------------------------------------- */

.interviews-item {
    margin-bottom: 30px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    overflow: hidden;
}

.interviews-item a {
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
         transition: all 0.3s ease-in-out;
}

.interviews-item img {
    display: block;
    width: 100%;
    height: auto;
}

.interviews-item a .overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba( 0, 0, 0, 0.4 );
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
         transition: all 0.3s ease-in-out;
}

.interviews-item a:hover .overlay {
    background-color: rgba( 0, 0, 0, 0.7 );
}


.interviews-item a i {
    font-size: 20px;
    color: #1e1e1e;
    width: 50px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    background-color: white;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 9;
}

.interviews-item a:hover i {
    background-color: #EFD417;
    color: #ffffff;
}


.interviews-item .title {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
}





/* Talents
-------------------------------------------------------------- */

.talent-item {
    margin-bottom: 30px;
    background-color: #e2e2e2;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.talent-item .inner  {
    padding: 15px;
}

.talent-item a {
    display: block;
}

.talent-item h4.title {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 15px;
}

.talent-item h4.title a {
    color: #121212;
}

.talent-item h4.title a:hover {
    color: #EFD417;
    text-decoration: none;
}

.talent-item .social-links a {
    border-color: #666666;
    color: #666666;
}

.talent-item .social-links a:hover {
    border-color: #EFD417;
    color: #EFD417;
    background-color: transparent;
}



/* Clips
-------------------------------------------------------------- */

.clip-item {
    margin-bottom: 30px;
}

.clip-item figure  {
    margin-bottom: 10px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.clip-item img  {
    width: 100%;

}

.clip-item a {
    display: block;
}

.clip-item h4.title {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin: 15px 0;
}

.clip-item h4.title a {
    color: #121212;
}

.clip-item h4.title a:hover {
    color: #EFD417;
    text-decoration: none;
}

.clip-item .social-links a {
    border-color: #666666;
    color: #666666;
}

.clip-item .social-links a:hover {
    border-color: #EFD417;
    color: #EFD417;
    background-color: transparent;
}

/* Galleries
-------------------------------------------------------------- */

.grid-sizer ,
.grid-item { width: 33%; }

.gutter-sizer {
    width: 0.5%;
}


.grid-item { 
    margin-bottom: 5px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}


.gallery-item img {
    width: 100%;
}

.gallery-item a {
    color: #ffffff;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
         transition: all 0.3s ease-in-out;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-item a .overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba( 0, 0, 0, 0.4 );
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
         transition: all 0.3s ease-in-out;
}



.gallery-item a:hover .overlay {
    background-color: rgba( 255, 255, 255, 0.7 );
}


.gallery-item a i {
    font-size: 20px;
    color: #1e1e1e;
    width: 50px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -18px -25px;
    z-index: 9;
    display: none;
}

.gallery-item a:hover i {
    background-color: #EFD417;
    color: #ffffff;
    display: inline-block;
}


.gallery-item .title {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
}


.gallery-item a:hover .title {
    color: #EFD417;
    text-decoration: none;
}

/* Portfolio
-------------------------------------------------------------- */

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-item a {
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
         transition: all 0.3s ease-in-out;
}

.portfolio-item img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio-item a .overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    background-color: rgba( 0, 0, 0, 0.4 );
    -webkit-transition: visibility 0s, opacity 0.5s linear;
    -moz-transition: visibility 0s, opacity 0.5s linear;
     -ms-transition: visibility 0s, opacity 0.5s linear;
      -o-transition: visibility 0s, opacity 0.5s linear;
         transition: visibility 0s, opacity 0.5s linear;
}

.portfolio-item a:hover .overlay {
    visibility: visible;
    opacity: 1;
}

.portfolio-item a i {
    font-size: 32px;
    color: #1e1e1e;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
    visibility: hidden;
    opacity: 0;
}

.portfolio-item a:hover i {
    visibility: visible;
    opacity: 1;
}


/* Counter boxes
-------------------------------------------------------------- */

.counter-section {
    background-color: #ffffff;
}

.counter-box-container {
    margin-bottom: 20px;
}

.counter-text {
    font-size: 20px;
    text-align: center;
}

.counter-value-container {
    line-height: 64px;
    text-align: center;
    margin-bottom: 10px;
}
.counter-value-container span {
    display: inline-block;
    line-height: 64px;
    font-size: 48px;
}

.dark .counter-section {
    background-color: #EFD417;
}

.dark .counter-text ,
.dark .counter-value {
    color: #ffffff;
}



/* Bottom Bar
-------------------------------------------------------------- */

.site-footer {
    background-color: #606060;
    color: #ffffff;
    font-size: 13px;
}
.site-footer h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.site-footer  ul {
    margin: 0;
    padding: 0 15px;
}

.site-footer li {
    margin: 0;
    padding: 5px 0;
}
.site-footer li ,
.site-footer a {
    color: #ffffff;
}

.site-footer a:hover {
    color: #72BD46;
    text-decoration: none;
}

.site-info {
    color: #606060;
    font-size: 13px;
    background-color: white;
}

.footer ,
.footer a {
    color: white;
}

.footer .widgets-area {
    padding: 45px 0;
    background-color: #003087;
}

.footer .widget-title {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 600;
}

.footer .widget {
    margin-bottom: 40px;
    font-size: 14px;
}

.footer .widget ul,
.footer .widget li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .widget li {
    margin: 0 0 10px 0;
}


/* Contact Info
-------------------------------------------------------------- */

.contact-info ul {
    margin: 0;
}

.contact-info ul li,
 .contact-info ul li {
    display: block;
    padding-bottom: 0;
    margin-bottom: 10px;
    line-height: normal;
    list-style: none;
}

.contact-info ul li>span.contact-info-icon {
    padding-right: 10px;
    vertical-align: top;
    padding-top: 4px;
}

.contact-info ul li>span {
    display: table-cell;
}

.contact-info ul li span.contact-info-heading {
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.contact-info ul li .contact-info-details {
    line-height: 24px;
}

/* Bottom Bar
-------------------------------------------------------------- */

.bottom {
    background-color: #003087;
    padding: 20px 0;
    line-height: 45px;
    font-size: 14px;
    color: #ffffff
}

.bottom a, 
.bottom a:hover {
    text-decoration: none;
    color: #ffffff
}

.bottom .column-one { 
    text-align: left;
}

.bottom .column-two { 
    text-align: right;
}

.bottom ul.menu ,
.bottom ul.menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bottom ul.menu li {
    float: left;
    margin-right: 10px
}

.bottom .column-two ul.menu li {
    float: right;
    margin-left: 10px
}


/* Pagination
-------------------------------------------------------------- */

.page-link {
    color: #72BD46;
}

.page-item.active .page-link {
    background-color: #72BD46;
    border-color: #72BD46;
}


/* Typography
-------------------------------------------------------------- */


/* GoTop Button
-------------------------------------------------------------- */
.go-top {
    position: fixed !important;
    bottom: 15px;   
    right: 15px;
    width: 45px;
    cursor: pointer;   
    background-color: #EFD417;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    color: #606060;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;   	
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
         transition: all 0.3s ease-in-out;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
       opacity: 0;
}


.go-top.show {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    z-index: 99;
}

.go-top:hover {
 background-color: #222222;
 color: #fff !important;
}


.list-group-item.active {
    background-color: #72BD46;
    border-color: #72BD46;
}


@media (max-width: 480px) {

    .navbar-brand {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .donation-box {
        max-width: 100%;
      height: auto;
        text-align: center;
    }

}

/*New CSS*/
.ecommerce-container .main-div{
position: relative;
height: 280px;

}
.ecommerce-container .main-div .transparent-div{

    height: 100%;
    width: 100%;
    opacity: 100%;
    align-items: center;
    display: flex;
    
}
.ecommerce-container .main-div .transparent-div .sub-div{
    position: absolute;
    border: 2px solid white;
    z-index: 10000;
    /*top: 22px;*/
    /*bottom: 0px;*/
    right: 0px;
    left: 0;
    margin: 0 auto;
    height: 84%;
    width: 88%;
}
.ecommerce-container .main-div .transparent-div .opacity-div{
    background-color: black;
    position: absolute;
    opacity: 30%;
    z-index: 100;
    top: 0;
    bottom:0 ;
    right: 0;
    left: 0;
}
.ecommerce-container .main-div .transparent-div .sub-div .text-div{
    opacity: 100%;
        padding: 30px;

}
.donation-class-btn{
    background-color: red;
    border-radius: 25px;
    width: 100px;
    height: 60px;
}


