@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
body {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  font-size: 14px;
  line-height: 23px;
}
:root{
  --lightgray :#fafafa;
  --red:#e70000;
  --black:#000;
  --white:#fff; 
  --darkgray:#1a1b1d;
  --gray:#edeff2;
  --green:#54562f;
  --lgreen:#95967e;
  
}
a {
color:  var(--darkgray);
  text-decoration: none;
}

a:hover {
  color:  var(--darkgray);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #e70000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ee7843;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* height: 72px; */
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #7a6960;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}


.pt-50
{
  padding-top: 50px;
}


.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}


.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 20px;
  font-size: 13px;
  color: #33343d;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  text-align: right;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #e70000;
  font-weight: 500;
}

.navbar .getstarted {
  background: #e70000;
  color: #fff;
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 50px;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #ee7843;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 5px 0;
  z-index: 99;
  width: 80px;
  opacity: 0;
  transition: none;
  visibility: hidden;
  background: #fff;
  border: rgb(240, 240, 240) solid 1px;
  /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width:150px;
}

.navbar .dropdown ul a {
  padding: 5px 10px;
  font-size: 13px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #e70000;
  transition: none;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  transition: none;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
  transition: none;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
  transition: none;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #7a6960;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 64, 57, 0.9);
  transition: 0.3s;
}




.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #7a6960;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #e70000;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #e70000;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;

}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #4e4039;
}

#hero h2 {
  color: #a08f86;
  margin: 15px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {

  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #e70000;
}

#hero .btn-get-started:hover {
  background: #ef7f4d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {

  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-height: 600px) {
  #hero {

  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--lightgray);
}

.section-title {
  text-align: center;
  padding-bottom: 0px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 15px;
  color: #c2b7b1;
}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #4e4039;
}

.section-title p::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #e70000;
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #fef5f1;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 24px;
  color: #4e4039;
}

.about h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #1c1d1f;
}

.about i {
  font-size: 48px;
  /* margin-top: 15px; */
  color: #f39e7a;
}

.about p {
  font-size: 15px;
  color: #5a6570;
}

@media (max-width: 991px) {
  .about .about-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/


.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: var(--red);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: #ef7f4d;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
  text-align: center;
}
.py-10
{
  padding: 10px 0px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #e70000;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(122, 105, 96, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #e70000;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 0;
  font-size: 20px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #e70000;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e70000;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e70000;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(122, 105, 96, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

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

.faq .faq-list li {
  border-bottom: 1px solid #eae7e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;

  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-weight: 600;
  padding-left: 25px;
  cursor: pointer;
  color: #c54811;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: #343a40;
}

.faq .faq-list .collapsed:hover {
  color: #e70000;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 0px 0px;
}

.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(78, 64, 57, 0.6);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #e70000;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(78, 64, 57, 0.95) 0%, rgba(78, 64, 57, 0.95) 15%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

.clients .clients-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e70000;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e70000;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

.contact .info i {
  font-size: 20px;
  color: #e70000;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdf1ec;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding:5px 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--darkgray);
}

.contact .info p {
  padding: 0 0 10px 55px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--darkgray);
}

.contact .info .email p {
  padding-top: 0px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #e70000;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #e70000;
  color: #fff;
}



.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 40px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #e70000;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ef7f4d;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--darkgray);
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;

}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #fef8f5;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #4e4039;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e70000;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #c54811;
}

#footer .footer-top {
  padding: 40px 0 0px 0;
  background: var(--darkgray);
}

#footer .footer-top .footer-contact {
  margin-bottom: 0px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 0px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;

  color: #5c5c5c;
}

#footer .footer-top h4 {

  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f39e7a;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
 
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color:#999;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color:#fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;

  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ef7f4d;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #6c757d;
}

#footer .credits a {
  color: #6c757d;
}

@media (max-width: 575px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}


#topheader
{
height: 30px;
border-bottom:#ededed solid 1px;
font-size: 12px;
padding: 5px 0px;
align-items: center;
font-family: 'Roboto', sans-serif;

}
#topheader .nn ul
{
margin-bottom: 0px !important;
}
.inline li
{
  display: inline;
}
.link li
{
  padding: 5px 10px;
}

.logo
{
  justify-content: left;
}
.logo-r
{
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

.donate
{
  background-color: var(--red);
  padding: 5px 15px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: 0px;
}
.donate a{
  color: #fff;
  font-size: 13px;
}
.navbar
{
  border-top: var(--gray) solid 1px;
}

.highlighted
{
  background-color: var(--darkgray);
  display: flex;
  align-items: center;
  color: #fff;
  padding: 25px 0px; 
}
.f20
{
  font-size: 20px;
  font-weight: 600;
}
.pt-15
{
  padding-top: 15px;
}
.py-15
{
  padding-top: 15px;
  padding-bottom: 15px;
}
.pt-20
{
  padding-top: 20px;
}
.py-20
{
  padding-top: 20px;
  padding-bottom: 20px;
}
.f14
{
  font-size:13px;

  font-family: 'Open Sans', sans-serif;
}
.f13
{
  font-size:13px;
}
.donatebtn
{
  background-color: var(--red);
  padding: 5px 15px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  border: 0px;
  align-items: flex-end;
}
.align-item-right
{
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}
.pt-40
{
  padding-top: 40px;
}
.py-40
{
  padding-top: 40px;
  padding-bottom: 40px;
}
.pb-40
{
  padding-bottom: 40px;
}
.text-right
{
  text-align: right;
}
.gtext
{
  color: #fff;
  padding: 40px;
  }


 
  .scrollpic .carousel-cell img{
    width: 100%;
    height: auto;
  }
  .donatese
  {
    margin:40px 0 0 0px;
    background-color: var(--green);
    padding:40px 20px 40px 20px;
    color: #fff;
    position: relative;
    text-align: center;
  }

  .carousel {
    background:none
  }
  
  
  .carousel-cell  .content 
  {
    padding: 50px 15px;
  }

 
  .subscribeinput button
  {
    background-color: var(--darkgray);
    border-radius: 50px;
    padding: 5px 15px;
    border:0px;
    color: #fff;
    font-size: 13px;
  }
  .subscribeinput input:focus, .subscribeinput input:hover,.subscribeinput input:active
  {
    border: 0px !important;
    outline: 0px;
  }

  #footer .footer-top h4{
    color: #fff;
    font-size: 16px;
    
  }
  #footer
  {
    font-size: 12px;
  }
  .footer-links li
  {
    font-size: 12px;
    line-height: 20px;
    padding: 5px 0px;
    color:#999;
  }
  .sociallink li{
    padding: 0px 5px;
  }
  .b
  {
    font-weight: 600;
  }
  .team
  {
    position: relative;
  }
  .team img{
    width: 100%;
    height: auto;
    margin: 5px;
  }
  .team .namesection
  {
    position: absolute;
    width: 100%;
   margin: auto;
   text-align: center;
   padding: 5px 10px;
   color: var(--black);
  }

  .pl-0
  {
    padding-left: 0px;
  }
  .inputlo input
  {
    width: 100%;
    border: var(--gray) solid 1px;
    padding: 3px 15px;
    height: 34px;
  }
  .loginbtn
  {
    background-color: var(--red);
    color: #fff;
    font-size: 13px;
    text-align: center;
    border: 0px;
    width: 100%;
    padding: 5px 10px;
  }
  .inputlo input:active,   .inputlo input:focus,   .inputlo input:hover
  {
    border: var(--gray) 1px solid !important;
    outline: var(--gray) 1px solid !important;
  }

  table th{
    background-color: var(--lightgray);
    padding: 5px 10px;
  }
  .table-border td
  {
border: var(--gray) solid 1px;
padding: 5px;

  }
  .table-hover td
  {
border: var(--gray) solid 1px;
padding:3px 5px;
background-color:#fff;

  }

  .question
  {
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
  }
.faq-list li
{
list-style: none;
padding: 10px 0px;
border-bottom: var(--lightgray) solid 1px;
}
.faqlist
{
  padding-top: 1px;
  color:gray;
  padding-left: 24px;
}

.ii img{
  width: 100px;
  border-radius: 10px;
}
.ii
{
  padding-bottom: 10px;
}

.btnn
{
  background-color: transparent;
  border: 0px;
  color: #fff;
  padding: 15px 0 0 0;
}

.refer img, .referb img{
  width: 100%;
  height: auto;
}
.referb img{
  
    border-radius: 10px;
  }
.referb
{
  position: absolute;
  width: 60%;
  background-color: var(--red);
  padding: 15px;
  top: 285px;
  margin: auto;
  text-align: center;
  align-items: center;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 10px;
  align-self: center;
  left: 0;
  color: #fff;
  right: 0;
  box-shadow: #5a6570 2px 0px 10px;
}

.service img{
  border-radius: 10px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.pl-40
{
  padding-left: 40px;
}
 .submit button
{
  background-color: var(--red);
  color: white;
  font-size: 14px;
  text-align: center;
  border: 0px;
  padding: 10px 15px;
  margin: 0px m !important;

}
.radio
{
  padding: 5px;
  margin: 5px;
}
.form-control
{
  font-size: 13px !important;
}
.pr-15
{
  padding-right: 15px;
}
.donatebtn a{
  color: #fff;
  font-size: 13px;
}
.pb-10
{
  padding-bottom: 10px;
}

.photo 
{
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.pl-15
{
  padding-left: 15px;
}

.sidebar
{
  background-color: #2d3134;
  padding: 5px;
  color: #fff;
}
/* ------ MLM ---- */
.tree ul {
	padding-top: 20px; position: relative;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tree li {
	float: left; text-align: center;
	list-style-type: none;
	position: relative;
	padding: 20px 5px 0 5px;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before, .tree li::after{
	content: '';
	position: absolute; top: 0; right: 50%;
	border-top: 1px solid #ccc;
	width: 50%; height: 20px;
}
.tree li::after{
	right: auto; left: 50%;
	border-left: 1px solid #ccc;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after, .tree li:only-child::before {
	display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child{ padding-top: 0;}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before, .tree li:last-child::after{
	border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before{
	border-right: 1px solid #ccc;
	border-radius: 0 5px 0 0;
	-webkit-border-radius: 0 5px 0 0;
	-moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
	border-radius: 5px 0 0 0;
	-webkit-border-radius: 5px 0 0 0;
	-moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before{
	content: '';
	position: absolute; top: 0; left: 50%;
	border-left: 1px solid #ccc;
	width: 0; height: 20px;
}

.tree li a{
	 border: 1px solid rgb(237, 250, 237); 
	padding: 10px 10px;
	text-decoration: none;
	color: #666;
	font-family: arial, verdana, tahoma;
	font-size: 11px;
	display: inline-block;
	
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover+ul li a {
	background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}
/*Connector styles on hover*/
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before, 
.tree li a:hover+ul ul::before{
	border-color:  #94a0b4;
}
/* -------- MLM----------- */
/* .tree{
  height: calc(100vh - 260px);
  overflow-y: scroll;
} */
.brbt 
{
  border-bottom: #eaedf1 solid 1px;
}
.f11
{
  font-size: 11px;
  line-height: 10px;
  color: #0172bd;
}

.searc input:active, .searc input:hover, .searc input:focus{
  border: 0px;
  outline: 0px;

} 
.sicon
{
  position: absolute;
  right: 10px;
  top: 5px;
}
.f16 
{
  font-size: 16px;
}
.edit 
{
  font-size: 10px;
  color: #fff;
  margin: auto;
  text-align: center;
  padding: 2px 0px;
  position: absolute;
  bottom: 0px;
  background-color: #0172bd;
  border-radius: 3px;
  width: 70px;
  left: 0;
  right: 0;
}

.edit a
{
  color: #fff;
}
.table
{
  font-size: 12px;
}


.mainbanner img, .banner img
{
 width: 100%;
height: auto;
}

  .left 
  {
    width: 100px;
    box-shadow: #343a40 0px 0px 5px;
    background-color: #fff;
    height:100vh;
    z-index: 99;
    position: relative;
    position: fixed;
  }

  .dashboard-mm
  {
    width: 100%;
    background-color: #fdf1ec;
    padding: 15px;
  }
  .prr
  {
    width: calc(100vw - 100px);
    right: 0px;
    position: relative;
    float: right;
    margin-left: 100px;
  }
  .left ul{
    margin-left: 0px;
    padding-left: 0px;
  }
  .leftlist li
  {
    list-style: none;
  font-size: 13px;
  padding: 15px;
  text-align: center; 
  border-top: #efeff0 solid 1px;
  }
  .leftlist li:hover,   .leftlist li:active 
  {
    background-color: var(--red);
    color: #fff;
    cursor: pointer;

  }
  .logout
  {
    position: absolute;
    bottom: 45px; 
    width: 100%;
  }
  .table th{
    background-color: #e7f4fd;
  }
  .pp
  {
    font-size: 13px;

  }
  .pp .col-md-8
  {
    color: #000;
    font-weight: 600;
  }
  .pp .form-group
  {
    padding: 5px 0px;
  }
  .pp .col-md-4
  {
    color: rgb(128, 126, 139);
  }
  .pr-40
  {
    padding-right: 40px;
  }
  .flickity-page-dots .dot
  {
    margin:0px 0px -10px 8px !important;
  }
  .description
  {
    text-align: center;
  }
  .f26
  {
    font-size: 26px;
    font-weight: 600;
  }
  .pb-15
  {
    padding-bottom: 15px;
  }
  .add .navbar a{
    font-size: 13px;
padding: 0px;
    font-weight: 500;
    border-top: 0px;
  } .add .navbar a:focus
  {
    font-size: 13px;
padding:0px 10px;
    font-weight: 500;
    border-top: 0px;
  }
  .addbut a
{
  font-size: 13px;
  color: #1489d8;
  font-weight: 600;
  
}
.form-group
{
  padding-top: 10px;
  font-size: 13px;
}
.adddmemid
{
  height: calc(100vh - 50px);
}
.adddme .col-md-8{
  width: 100% !important;
}
.adsubmit
{
  width: 100px;
  background-color: #3ba82c;
  margin: 15px 0px;
  text-align: center;
  float: right;
  border: 0px;
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
}
.paid 
{
  background-color: #e9ffef;

}
.unpaid 
{
  background-color: #ffdbdb;
}
.add .navbar
{
  border-top: 0px !important;
}
.ppd
{
  color: #0b8a55;
}
.greendd
{
  background-color: #e9ffef;
  width: 10px;
  height: 10px;
  overflow: hidden;
  display: inline-block;
  border: #e2e7eb solid 1px;
  font-size: 13px;

}
.reddd
{
  background-color: #ffdbdb;
  width: 10px;
  height: 10px;
  overflow: hidden;
  display: inline-block;
  border: #e2e7eb solid 1px;
  font-size: 13px;
}
@media  (min-width:320px) {
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
.profile 
{
  background-color: #fdf1ec;
  padding: 15px;
  margin: 0px;
}
  .ppto img
  {
    width: auto;
    height: auto;
    margin: auto;
  }
  .text-light
{
  margin: auto;
}
  #profile .logo, #profile.logo-r
{
  height: 50px;
  align-items: center;
  text-align: left;
  display: flex;
}
  #profile .proflo img
{
  width: 100%;
  padding: 5px 0px;
  height: 45px;
}

  #mid
{
  height:auto;
  margin-top:0px;
  overflow-y: scroll;
}
  .search 
{
border: 0px;
width: 100%;
font-size: 13px;
padding: 5px 20px 5px 5px;
}
  .red 
{
  background-color:#f9931f;
padding: 15px;
color: #fff;
margin: 0px 0px 0px 0px;
text-align: center;
}
.blue 
{
  background-color: #0172bd;
padding: 15px;
color: #fff;
margin: 0px 0px 0px 0px;
text-align: center;
}
.green
{
  background-color:#00aa9e;
padding: 15px;
color: #fff; 
text-align: center;
margin: 0px 0px 0px 0px;
}
  #header .d-flex, .subscriber .d-flex, .highlighted .d-flex, .footer-links .d-flex, .testimonial .d-flex, .qr .d-flex, #contact .d-lfex, .cntact .d-flex, .profile .d-flex, #profile .d-flex, .reffer .d-flex
{
  display: block !important;
}
.sociallink li 
{
  display: inline !important; 
}
.desk-hid 
{
  display: block;
}
.mob-hid 
{
  display: none;
}
.fixed-top
{
position: relative !important;
}
.dn-bt 
{
  text-align: right; float: right;

  width: 100%;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  width: calc(100vw - 25px);
}
.highlighted .align-item-right
{
  align-items: left !important;
  justify-content: flex-end;
  text-align: left;
}
.mainbanner
{
 padding-top:0px;
}
.mainbanner .carousel-cell
{
  min-height: 240px;
  width: 100%;
}
.banner .carousel-cell
{
  height: 100%;
}
.pt-5 {
  padding-top:30px!important;
}
#main {
  margin-top: 0px;
}
.carousel-cell {
  width: 100%;
  height: 100%;
  margin-right: 20px;
  background-image: url(../../images/testimonial.png);
  background-repeat: no-repeat;
  border-radius: 5px;
  font-size: 13px;
  color: #fff;
  background-size: cover;
  background-color: RGBA(255,255,255,0.1);
 
}
.services .icon-box {
  padding:5px 30px;
  position: relative;
  overflow: hidden;
  margin: 0  0 15px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  width: 100%;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.scrollpic .carousel-cell
{
  margin: 5px 10px;
  height: 200px;
}
.scrollpic
{
  margin:0px 0 0 0px;

  padding:10px 0px 10px 0px;
  color: #fff;
  position: relative;
}
.subscriber
{
  background-color: var(--red);
  height: auto;
  padding: 25px;
  line-height: 20px;
  width: 100%;
  margin: auto;
  color: #fff;
  justify-content: left;

}
.subscriber  .align-item-right
{
  justify-content: start  !important;
  align-items: flex-start;
  text-align:left;
  padding-top:20px;
  line-height: 18px;
}
.subscribeinput{
  background-color: #ffffff;
  padding: 5px 5px 5px 15px;
  border-radius: 35px;
  width: 100%;
  float: none;
  margin: 5px auto;
}
.subscribeinput input
{
  border: 0px;
  width: 100%;
  font-size: 13px;
}
.subscribeinput .d-flex{
  display: flex !important;
}
.subscriber .container 
{
  padding: 0px;
}
#footer .text-right 
{
  text-align: left !important;
}
.banner
{
 padding-top: 0px;
}
.aid li
{
  padding: 5px 15px;
  margin: 5px 0px;
  width: 100%;
  display: inline-flex;
  list-style: none;
  border: var(--lightgray) solid 5px;

}
.testimonial .d-flex .col-md-6 img 
{
width: 100%;
}
.testimonial
{
  margin:0px 0 0 0px;
  background-color: var(--green);
  padding:60px 5px 20px 5px;
  color: #fff;
  position: relative;
}
.qr
{
  background-color: var(--lightgray);
  padding:40px 10px;
}
.qr .col-md-6 .text-center
{
  text-align: left !important;
}
.qr .col-md-6 img
{
text-align: left;

}
.contact .info {
  border-top: 0px solid #e70000;
  border-bottom: 0px solid #e70000;
  padding:5px 5px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 0px 0 rgba(0, 0, 0, 0.12);
}
#contact .container
{
  padding: 0px;
}
.wid320
{
  width: 280px;
  height: auto;
  margin: auto;
}
.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #e70000;
  border-bottom: 3px solid #e70000;
  padding:5px 15px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.profile .container 
{
  padding: 0px;
}
.profile .align-items-center
{
text-align: center;
}
}
@media  (min-width:375px) {
  .mainbanner .carousel-cell {
    min-height: 260px;
    width: 100%;
}
}
@media  (min-width:425px) {
  .mainbanner .carousel-cell {
    min-height: 320px;
    width: 100%;
}
}
@media (min-width:576px)
{
  .container, .container-sm {
    max-width:95% !important;
}
.mainbanner .carousel-cell {
  min-height: 430px;
  width: 100%;
}

.scrollpic .carousel-cell
{
  margin: 5px 10px;
  height: 300px;
}
}
@media  (min-width:768px) {
  .red, .blue, .green{
    padding: 5px;
  }
  .services .icon-box
  {
    min-height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
.profile 
{
  background-color: #fdf1ec;
  padding: 15px 0px;
}
  .ppto img
  {
    width: 70px;
    height: auto;
    margin: auto;
  }
  .text-light
{
  margin: 0;
}
  #profile .logo, #profile.logo-r
{
  height: 50px;
  align-items: center;
text-align: left;
  display: flex;
}
  .search 
{
border: 0px;
width: 320px;
font-size: 13px;
padding: 5px 20px 5px 5px;
}
  #header .d-flex, .subscriber .d-flex, .highlighted .d-flex, .footer-links .d-flex, .testimonial .d-flex, .qr .d-flex, #contact .d-lfex, .cntact .d-flex, .profile .d-flex, #profile .d-flex, .reffer .d-flex
  {
    display: flex !important;
  }
  .mainbanner .carousel-cell {
    min-height: 240px;
    width: 100%;
}
.scrollpic .carousel-cell
{
  margin: 5px 10px;
  height: 350px;
}
.dn-bt {
  text-align: right;
  float: right;
  width: 120px;
}
.desk-hid 
{
  display: none;
}
.mob-hid 
{
  display: block;
}
.container {
  max-width: 95%!important;
  width: 100%;
  line-height: 20px;
}
}
@media  (min-width:800px) {
  #profile .proflo img
{
  width: auto;
  padding: 5px 0px;
  height: 45px;
}

  #mid
{
  height: calc(100vh - 85px);
  margin-top:10px;
  overflow-y: scroll;
}
  .red 
{
  background-color:#f9931f;
padding: 15px;
color: #fff;
margin: 0px 0px 0px 0px;
text-align: center;
}
.blue 
{
  background-color: #0172bd;
padding: 15px;
color: #fff;
margin: 0px 0px 0px 0px;
text-align: center;
}
.green
{
  background-color:#00aa9e;
padding: 15px;
color: #fff; 
text-align: center;
margin: 0px 0px 0px 0px;
}
  .mainbanner .carousel-cell {
    min-height: 240px;
    width: 100%;
}
.testimonial .d-flex .col-md-6 img
{
  width:95%;
}
.aid li
{
  padding: 5px 15px;
  margin: 5px 0px;
  width: 250px;
  display: inline-flex;
  list-style: none;
  border: var(--lightgray) solid 5px;
}
.carousel-cell {
  width: 40%;
  height: 100%;
  margin-right: 10px;
}
.scrollpic .carousel-cell
{
  height: 220px;
}
.services .icon-box
{
  margin: 0  0 0px 0;
}
  .subscriber .align-item-right
{
  padding-top:0px
}
.contact .php-email-form
{
  padding: 15px;  
}
}
@media  (min-width:1024px)
{

.mainbanner .carousel-cell {
  min-height: 280px;
  width: 100%;
}
.aid li {
  padding: 5px 15px;
  margin: 5px 0px;
  width: 24%;
  display: inline-flex;
  list-style: none;
  border: var(--lightgray) solid 5px;
}
.profile 
{
  background-color: #fdf1ec;
  padding: 15px;

}

}
@media  (min-width:1280px)
{

.mainbanner .carousel-cell {
  min-height: 350px;
  width: 100%;
}
.scrollpic .carousel-cell
{
  height: 280px;
}

}
@media  (min-width:1366px) {
  .container {
    max-width: 1280px!important;
    width: 100%;
    line-height: 20px;
}
 #header .d-flex, .subscriber .d-flex, .highlighted .d-flex, .footer-links .d-flex, .testimonial .d-flex, .qr .d-flex, #contact .d-lfex, .cntact .d-flex, .profile .d-flex
{
  display: flex !important;
}
.pt-5 {
  padding-top:30px!important;
}

.highlighted .align-item-right
{
  align-items: flex-end !important;
  justify-content: flex-end;
  text-align: left;
}

.subscriber .container 
{
  padding: inherit;
}

.fixed-top
{
  position: fixed !important;
}
.dn-bt 
{
  text-align: right; float: right;
  width: auto;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.mainbanner
{
 padding-top:125px;
}
.mainbanner .carousel-cell
{
  width: 100%;
  min-height: 430px;
}
.banner .carousel-cell
{

    width: 100%;
    height: 450px;
    margin-right: 0px;
    background-repeat: no-repeat;
  color: #fff;

    background-color: RGBA(255,255,255,0.1);
   
  }
  #main {
    margin-top: 0px;
  }
  .carousel-cell {
    width: 40%;
    height: 100%;
    margin-right: 10px;
    background-image: url(../../images/testimonial.png);
    background-repeat: no-repeat;
    border-radius: 5px;
    font-size: 13px;
    color: #fff;
    background-size: cover;
    background-color: RGBA(255,255,255,0.1);
   
  }
  .services .icon-box {
    padding:15px 30px;
    position: relative;
    overflow: hidden;
    margin: 0  0 0px 0;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    width: 100%;
    text-align: center;
    border-bottom: 3px solid #fff;
  }
  .scrollpic .carousel-cell
  {
    margin: 5px 10px;
  }
  .scrollpic
  {
    margin:0px 0 0 0px;

    padding:20px 0px 20px 0px;
    color: #fff;
    position: relative;
  }
  .subscriber
  {
    background-color: var(--red);
    height: auto;
    padding: 25px;

    width: 100%;
    margin: auto;
    color: #fff;
    justify-content: center;

  }
  .subscriber  .align-item-right
{
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  padding-top:0px ;
}
.subscribeinput{
  background-color: #ffffff;
  padding: 5px 5px 5px 15px;
  border-radius: 35px;
  width: 320px;
  float: none;
  margin: 5px auto;


}
.subscribeinput input
{
  border: 0px;
  width: 280px;
  font-size: 13px;
}
.sociallink li 
{
  display: inline !important; 
}
#footer .text-right 
{
  text-align: right !important;
}
.banner
{
 padding-top: 100px;
}
.aid li
{
  padding: 5px 15px;
  margin: 5px 0px;
  width: 250px;
  display: inline-flex;
  list-style: none;
  border: var(--lightgray) solid 5px;

}
.testimonial .d-flex .col-md-6 img 
{
width:95%;
}
.testimonial
{
  margin:0px 0 0 0px;
  background-color: var(--green);
  padding:60px 20px 20px 20px;
  color: #fff;
  position: relative;
}
.qr
{
  background-color: var(--lightgray);
  padding: 40px;
}
.qr .col-md-6 img
{
text-align: center;

}
.qr .col-md-6 .text-center
{
  text-align: center !important;
}
.contact .info {
  border-top: 3px solid #e70000;
  border-bottom: 3px solid #e70000;
  padding: 30px;
  background: #fff;
  width: 100%;
  margin: 0px 15px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form
{
  margin:0px 15px;
}
#contact .container
{
  padding: inherit
}

.wid320
{
  width: 320px;
  height: auto;
  margin: auto;
}
.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #e70000;
  border-bottom: 3px solid #e70000;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.scrollpic .carousel-cell
{
  height: 280px;
}
.profile{
  margin: 50px 0 0 0;
}
}

.donatebanner img
{
  width: 100%;
  height: auto;

}



#about ul  {
  padding-left: 0px;
  margin-left: 5px;
}


.pl-60
{
  padding-left: 60px;
}
 .watermarklogo img
{
  max-width:200px ;
  width: 100%;
}
@media  (min-width:1400px) {
  .container {
    max-width: 1366px!important;
    width: 100%;
    line-height: 20px;
}
  .mainbanner .carousel-cell
  {
    min-height: 430px;
  }
  .scrollpic .carousel-cell
  {
    height: 300px;
  }
}
  

.py-5 {
  padding-top:30px !important;
  padding-bottom:30px !important;
}
.refer img
{ max-width: 450px;
  height: auto;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
margin: auto;
}
.address .text-left 
{
  text-align: left;
}

#profile .navbar ul
{
  display: block;
}

.table-wid
{
  width: 100%;
  height: auto;
  overflow-x: scroll;
}
.table-wid table 
{
  max-width: 100%;

}
.treecontainer
{
  width: 100%;
  overflow-x: scroll;
}
.tree
{
  min-width: 800px;
  overflow-x: scroll;
}

.mainw
{
  width: 100%;
  overflow: hidden;
}