/*
--------------------------
	Css Indexing
--------------------------
	Table of Css Content
	------- *** -------
--------------------------
** 
--------------------------
**  
--------------------------
**
--------------------------
** 
--------------------------
** 
--------------------------
** 
--------------------------
** 
--------------------------

*/
/*-----------------
    @Typography
-----------------*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Yeseva+One&display=swap");

/*---------------------------
** Global style
---------------------------*/
.mybtn1 {
  font-size: 16px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  background: #2c70f8;
  border: 0px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.mybtn1:hover {
  background: #1f71d4;
  color: #143250;
}

.remove-padding {
  padding: 0px;
}

.link-banner {
  position: relative;
}

.link-banner img {
  width: 100%;
}

.link-banner:before,
.link-banner:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

.link-banner:after {
  bottom: 0;
  right: 0;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}

.link-banner:hover:before,
.link-banner:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 0;
  -webkit-transition-duration: 1.3s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s;
}

.mt-30 {
  margin-top: 30px;
}

.section-heading .sub-title {
  font-size: 24px;
  line-height: 38px;
  font-weight: 600;
  color: #fd7e14;
  margin-bottom: 10px;
}

.section-heading .section-title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
}

.section-heading.color-white .section-title {
  color: #fff;
}

.linked-banner-area {
  padding: 100px 0px 100px;
}

.linked-banner-area img {
  width: 100%;
}

.scrolldown a {
  position: absolute;
  width: 30px;
  height: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 50px;
  border: 2px solid #fff;
  border-radius: 50px;
  z-index: 9;
}

.scrolldown a::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.mix {
  display: none;
}

.remove-col-padding {
  padding: 0;
}

.navbar-toggler {
  border: none !important;
  margin: 0px;
  padding: 0px;
  margin-right: 30px;
}

.navbar-toggler:focus {
  outline: 0px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: .4rem;
  padding-left: 0.4rem;
}

.bottomtotop i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: #2c70f8;
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  bottom: 50px;
  right: 15px;
  -webkit-box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.2);
  z-index: 80;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
}

.section-top {
  text-align: left;
}

.section-top .section-title {
  font-size: 24px;
  line-height: 38px;
  font-weight: 400;
  color: #1f71d4;
  display: inline-block;
  float: left;
  margin-right: 20px;
}

.section-top .link {
  display: inline-block;
  font-size: 14px;
  line-height: 38px;
  font-weight: 400;
  color: #2c70f8;
  text-decoration: underline;
}

@-webkit-keyframes scaleicon {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes scaleicon {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@-o-keyframes scaleicon {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes scaleicon {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.input-field {
  width: 100%;
  height: 60px;
  padding: 0px 30px;
  color: #143250;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.input-field::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #143250;
}

.input-field:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #143250;
}

.input-field::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #143250;
}

.input-field:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #143250;
}

.input-field:focus {
}

.input-field.textarea {
  min-height: 137px;
  padding: 15px 20px;
  resize: none;
}

.input-field.error {
  border: 0px;
  border-bottom: 1px solid red;
}

/* Video Btn 2 Start */
.video-play-btn2 {
  margin-left: 20px;
  display: inline-block;
  top: -5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  text-align: center;
  background-color: #bd10e6;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

.video-play-btn2:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: #bd10e6;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -3;
}

.video-play-btn2 i {
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  -o-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: text-color;
  -moz-animation-name: text-color;
  -o-animation-name: text-color;
  animation-name: text-color;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  position: inherit;
  z-index: 9;
  color: #fff;
}

/* Video Btn 2 end */

.video-play-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 18px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

.video-play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -3;
}

.video-play-btn i {
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  -o-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: text-color;
  -moz-animation-name: text-color;
  -o-animation-name: text-color;
  animation-name: text-color;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  position: inherit;
  z-index: 9;
  color: #2c70f8;
}

.email-success {
  display: block;
  width: 100%;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

@-moz-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

@media only screen and (max-width: 991px) {
  .row.reorder-xs {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.reorder-xs>[class*="col-"] {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    direction: ltr;
  }
}

/*-------------------------
    Preloader Css
---------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999999;
 }
/* PRELOADER CSS ENDS*/


.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #ff5500;
  border-radius: .25rem;
}

.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before,
.tooltip.bs-tooltip-right .arrow::before {
  margin-top: -3px;
  content: "";
  border-width: 5px 5px 5px 0;
  border-right-color: #ff5500;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: #ff5500;
}

.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: #ff5500;
}

.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before,
.tooltip.bs-tooltip-left .arrow::before {
  right: 0;
  margin-top: -3px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-left-color: #ff5500;
}

.owl-carousel {
  z-index: 0 !important;
}

/*----------------------------------
Breadcrumb Area Start
------------------------------------*/
.breadcrumb-area {
  padding: 190px 0px 90px;
  background: url(../images/breadcrumb-bg.png);
  background-repeat: no-repeat !important;
  /*background-position: center bottom !important;*/
  background-size: cover !important;
  text-align: center;
  position: relative;
}
.breadcrumb-area .overlay{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
.breadcrumb-area .pagetitle {
  font-weight: 400;
  color: #fff;
  font-size: 40px;
  line-height: 50px;
}

.breadcrumb-area .pages li {
  display: inline-block;
}

.breadcrumb-area .pages li a {
  position: relative;
  margin-right: 30px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #fff;
}

.breadcrumb-area .pages li a::after {
  position: absolute;
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0;
  right: -26px;
}

.breadcrumb-area .pages li a:hover {
  color: #f6f6f6;
}

.breadcrumb-area .pages li:last-child a {
  margin-right: 0px;
}

.breadcrumb-area .pages li:last-child a::after {
  display: none;
}

.breadcrumb-area .pages li.active a {
  color: #f6f6f6;
}

#map {
  width: 100%;
  height: 300px;
}

/*====================
** Normalize
====================*/
html {
  font-family: "Open Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin: 0;
  color: #143250;
  overflow-x: hidden;
}

h1 {
  font-size: 60px;
  line-height: 1.0833333333333333;
}

h2 {
  font-size: 52px;
  line-height: 1.4444444444444444;
}

h3 {
  font-size: 26px;
  line-height: 1.0833333333333333;
}

h4 {
  font-size: 22px;
  line-height: 1.2380952380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #143250;
  font-family: 'Yeseva One', cursive;
}

p {
  font-size: 16px;
  color: #143250;
  line-height: 1.625;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

a {
  color: #143250;
  text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

/*-------------------------
   Main Menu Area Start
--------------------------*/
.mainmenu-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  margin-top: 0px;
}

.mainmenu-area nav {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mainmenu-area .navbar {
  padding: 10px 20px;
  /*background: #06407e;*/
  background: transparent;
  margin-top: 30px;
  border-radius: 5px;
  position: relative;
}
.mainmenu-area.nav-fixed .navbar {
  padding: 0px;
  margin-top: 0px;
  border-radius: 0px;
}

.mainmenu-area.nav-fixed {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  background: #fff;
}

.mainmenu-area .navbar .navbar-brand {
  padding: 0px;
  margin: 0px;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-item {
  padding: 0px;
  position: relative;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}



.mainmenu-area .navbar #main_menu .navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  z-index: 99;
  margin-top: 0px !important;
  background: #ffffff;
  border-radius: 0px;
  border: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  -webkit-box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #2c70f8;
  -webkit-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #222;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding: 6px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-item .dropdown-menu .dropdown-item i {
  margin-right: 5px;
  font-size: 12px;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.mainmenu-area .navbar #main_menu .navbar-nav .nav-item .dropdown-menu .dropdown-item.active {
  color: #2c70f8;
  background: #fff;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-link {
  color: #2c70f8;
  line-height: 24px;
  font-size: 16px;
  line-height: 40px;
  position: relative;
  font-weight: bolder;
  padding: 17px 10px;
  -webkit-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-link:hover,
.mainmenu-area .navbar #main_menu .navbar-nav .nav-link.active{
  /*color: #ffffff;*/
  color: #fd7e14;;
}

/* .mainmenu-area .navbar #main_menu .navbar-nav .nav-link.log-reg-btn::before {
  display: none;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-link::before {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 0px;
  height: 2px;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  opacity: 0;
  -webkit-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
}
.mainmenu-area.nav-fixed .navbar #main_menu .navbar-nav .nav-link::before{
    bottom: 0px;
}

.mainmenu-area .navbar #main_menu .navbar-nav .nav-link.active::before,
.mainmenu-area .navbar #main_menu .navbar-nav .nav-link:hover::before {
  opacity: 1;
} */

.mainmenu-area .donet-btn {
  margin-left: 30px;
  padding: 7px 23px;
}

.serch-icon-area {
  right: 60px;
}

.serch-icon-area .web-serch {
  cursor: pointer;
  margin-top: 11px;
  margin-left: 80px;
}

.serch-icon-area .web-serch i {
  color: #222;
  cursor: pointer;
}

.search-form-area-mobile {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(6 6 6 / 0.90);
  padding: 10px 10px 10px;
  z-index: 999;
  display: none;
}
.search-form-area-mobile .form-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.search-form-area-mobile .form-wrapper .close{
  color: #fff;
  opacity: 1;
  font-weight: 400;
  font-size: 16px;
  margin-left: 20px;
  cursor: pointer;
}
.search-form-area-mobile input {
  height: 50px;
  z-index: 91;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 30px 0px 0px;
  font-size: 18px;
  width: 400px;
  color: #fff;
  background: none;
  border-bottom: 2px solid #ffffff57;
}
.search-form-area-mobile input::placeholder{
  color: #ffffff96;
}
.search-form-area-mobile.open {
  display: block;
}
.search-form-area-mobile input:focus{
  outline: none;
}
.log-reg-area {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-left: 30px;
}

.log-reg-area a {
  color: #fff;
}

/*-------------------------------
  Hero  Area CSS Start
--------------------------------*/
.hero-area {
  /*height: 970px;*/
  height: 100em;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.hero-area .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
}
.hero-area .content{
  text-align: center;
}
.hero-area .content .sub-title {
  font-size: 40px;
  font-weight: bolder;
  line-height: 34px;
  /*font-weight: 400;*/
  color: #fd7e14;
  margin-bottom: 16px;
  font-family: "Open Sans", sans-serif;
}

.hero-area .content .title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
}

.hero-area .content .text {
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}

.hero-area .content .links-area {
  margin-top: 40px;
}

.hero-area .content .links-area .link.left {
  font-size: 16px;
  font-weight: 400;
  padding: 14px 30px;
  display: inline-block;
  color: #fff;
  background: #1f71d4;
  cursor: pointer;
  border-radius: 14px;
  -webkit-box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0);
  margin-right: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.hero-area .content .links-area .link.left:hover {
  background: #1f71d4;
  border: 1px solid #fff;
  color: #fff;
}

.hero-area .content .links-area .link.right {
  font-size: 16px;
  font-weight: 400;
  padding: 14px 25px;
  display: inline-block;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  -webkit-box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.hero-area .content .links-area .link.right:hover {
  color: #143250;
  background: #1f71d4;
  border: 1px solid rgba(255, 255, 255, 0);
}

/*-------------------------------
  Hero  Area CSS End
--------------------------------*/
/*-------------------------------
  About Area CSS Start
--------------------------------*/
.about-area {
  padding: 0px 0px 0px;
}

.single-info-box {
  position: relative;
  transition: .3s;
  margin-bottom: 50px;
  border-radius: 4px;
  display: flex;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}


.single-info-box .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  margin-right: 30px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
}
.single-info-box .icon::after{
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 200px;
  border-top: 3px solid red;
  
}
.single-info-box  .content{
  flex: 1;
}
.single-info-box .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
}

.single-info-box .text {
  margin-bottom: 0px;
}

.single-info-box .read-more {
  margin-top: 27px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  color: #a2aeba;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-info-box .read-more:hover {
  background: #1f71d4;
  border-color: #1f71d4;
  color: #fff;
}


/*-------------------------------
  About  Area CSS End
--------------------------------*/
/*-------------------------------
  Statistics Area CSS Start
--------------------------------*/
.statistics {
  padding: 10px 0px 25px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.statistics .overlay{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.statistics .section-heading {
  margin-bottom: 37px;
}

.statistics .single-statistics-box {
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.statistics .single-statistics-box .left {
  margin-right: 20px;
}

.statistics .single-statistics-box .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.statistics .single-statistics-box .right .num {
  font-size: 28px;
  font-weight: 400;
  color: #1f71d4;
}

.statistics .single-statistics-box .right .title {
  color: #555;
  margin-bottom: 0px;
}

.statistics .video-area {
  position: relative;
  z-index: 9;
  text-align: center;
}



.statistics .video-area .video-bg-shape {
  position: absolute;
  top: -200px;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  z-index: 1;
}

.statistics .video-area .video-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*-------------------------------
  Statistics Area CSS End
--------------------------------*/
/*-------------------------------
  Causes Area CSS Start
--------------------------------*/
.causes {
  padding: 10px 0px 10px;
}
.causes .feature-causes{

}

.causes .section-heading {
  margin-bottom: 50px;
}
.featured-causes-slider .slider-item,
.featured-causes-slider-two .slider-item
{
  padding: 15px 15px 15px;
}
.featured-causes-slider .owl-dots,
.featured-causes-slider-two .owl-dots
{
  display: block;
  text-align: center;
}
.featured-causes-slider .owl-dots .owl-dot,
.featured-causes-slider-two .owl-dots .owl-dot
{
  width: 10px;
  height: 10px;
  border-radius: 50px;
  display: inline-block;
  background: #2c70f8;
  margin: 0px 4px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.featured-causes-slider .owl-dots .owl-dot.active,
.featured-causes-slider-two .owl-dots .owl-dot.active
{
  width: 20px;
}

.single-causes {
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
  border-radius: 10px;
  overflow: hidden;
}
.featured-causes-slider-two .single-causes{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px;
}
.featured-causes-slider-two .single-causes .img{
  width: 60%;
  flex: 60%;
}
.featured-causes-slider-two .single-causes .img img{
  width: 100%;
}
.featured-causes-slider-two .single-causes .content{
  width: 40%;
  flex: 40%;
  padding-left: 30px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
}
.featured-causes-slider-two .single-causes .content .donateBtn{
  top: auto;
  left: auto;
  position: unset;
  margin-bottom: 30px;
  box-shadow: none;
}


.featured-causes-slider-two .single-causes .img{
  padding: 0px;
}

.single-causes .img {
  overflow: hidden;
  padding: 20px 20px 0px 20px;
}
.featured-causes-slider-two .single-causes .content .title{
  font-size: 28px;
}
.single-causes .img img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-causes .content {
  padding: 0px 20px 20px;
}

.single-causes .content .progress-area .persentage{
    display: block;
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single-causes .content .progress-area .progress {height: 10px;}

.single-causes .content .progress-area .progress .progress-bar {
  border-radius: 50px;
  font-weight: 400;
  background: #2c70f8;
}

.single-causes .content .top-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.single-causes .content .text{
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 19px;
}
.single-causes .content .top-meta .left {
  font-weight: 400;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  width: 50%;
  flex: 50%;
  color: #333;
  font-family: 'Yeseva One', cursive;
}

.single-causes .content .top-meta .left span {
  color: #1f71d4;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.single-causes .content .top-meta .right {
  font-weight: 400;
  width: 50%;
  flex: 50%;
  text-align: right;
  color: #333;
  font-family: 'Yeseva One', cursive;
}

.single-causes .content .top-meta .right span {
  color: #1f71d4;
  font-family: "Open Sans", sans-serif;
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.single-causes .content .title {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
}

.single-causes .content .mybtn1 {
  background: #1f71d4;
  padding: 7px 15px;
  font-size: 14px;
  box-shadow: none;
  position: relative;
  top: -20px;
  left: 20px;
  border-radius: 50px;
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 16%);
}

.single-causes .content .mybtn1:hover {
  background: #2c70f8;
  color: #fff;
}

.single-causes:hover .img img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/*-------------------------------
  Causes Area CSS End
--------------------------------*/
/*-------------------------------
  Donate Area CSS Start
--------------------------------*/
.donate {
  background: url(../images/donet-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0px 100px;
  position: relative;
}

.donate .overlay {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
}

.donate .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.donate .content .donet-btn-area {
  align-self: center;
  align-items: center;
}


.donate .content .title {
  font-size: 36px;
  line-height: 46px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0px;
}

.donate .content .donet-price {
  margin-bottom: 0px;
}

.donate .content .donet-price li {
  display: inline-block;
  margin-bottom: 0px;
}

.donate .content .donet-price li a {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 25px;
  display: inline-block;
  color: #143250;
  background: #1f71d4;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin: 0px 4px;
}

.donate .content .donet-price li a:hover {
  background: #fff;
}

.donate .content .donet-btn-area .mybtn1 {
  background: #1f71d4;
}

.donate .content .donet-btn-area .mybtn1:hover {
  background: #fff;
}

/*-------------------------------
  Donate Area CSS End
--------------------------------*/
/*-------------------------------
  Request Area CSS Start
--------------------------------*/
.request-to-call {
  padding: 10px 0px 10px;
  position: relative;
}

.request-to-call .bgimg {
  position: absolute;
  right: -50px;
}

.request-to-call .section-heading {
  margin-bottom: 45px;
}

.request-to-call .request-form input {
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  border: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  padding: 0px 20px;
  border-radius: 4px;
}

.request-to-call .request-form .mybtn1 {
  margin-top: 15px;
  background: #1f71d4;
  border: 1px solid #1f71d4;
}

.request-to-call .request-form .mybtn1:hover {
  color: #222;
  background: none;
}

.request-to-call .right-area {
  text-align: center;
}

.request-to-call .right-area img{
  display: inline-block;
}
/*-------------------------------
  Request Area CSS End
--------------------------------*/
/*-------------------------------
  Event Area CSS Start
--------------------------------*/
.event-area {
  background: url(../images/event-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0px 95px;
}

.event-area .section-heading {
  margin-bottom: 50px;
}

.event-area .owl-controls {
  position: relative;
}

.event-area .owl-controls .owl-dots {
  text-align: center;
  margin-top: 46px;
}

.event-area .owl-controls .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background: #ddd;
  display: inline-block;
  border-radius: 50%;
  margin: 0px 3px 0px;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.event-area .owl-controls .owl-dots .owl-dot.active {
  background: #1f71d4;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.single-event .img {
  position: relative;
  overflow: hidden;
}

.single-event .img img {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-event .img .shape {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 3;
}

.single-event .content {
  background: #2c70f8;
  padding: 30px 30px 30px;
  text-align: center;
}

.single-event .content .title {
  color: #fff;
  font-weight: 400;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 23px;
}

.single-event .content .info {
  color: #fff;
  margin-bottom: 5px;
}

.single-event .content .info i {
  color: #1f71d4;
  margin-right: 7px;
}

.single-event .content .mybtn1 {
  margin-top: 20px;
  background: #1f71d4;
  color: #143250;
}

.single-event .content .mybtn1:hover {
  background: #fff;
}

.single-event:hover .img img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.single-event:hover .img .shape {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.event-page {
  padding: 100px 0px 70px;
}

.event-page .single-event {
  margin-bottom: 30px;
}

.event-page .single-event .content .title {
  font-size: 24px;
  line-height: 34px;
}

/*-------------------------------
  Event Area CSS End
--------------------------------*/
/*-------------------------------
  Team Area CSS Start
--------------------------------*/
.team {
  padding: 90px 0px 95px;
  background: #f7fbff;
}

.team .section-heading {
  margin-bottom: 29px;
}
.team .team-member {
  text-align: center;
}
.team .team-member .bg-color {
  position: relative;
}

.team .team-member .bg-color .t-img {
  
}
.team .team-member .name{

  margin-top: 20px;
}
.team .team-member .name span{
  font-size: 18px;
  line-height: 28px;
  font-family: 'Yeseva One', cursive;
  display: block;
}
.team .team-member .name small{
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
.team .team-member .bg-color .t-img{
  padding: 0px 15px;
}
.team .team-member .bg-color .t-img img {
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.team .team-member .bg-color .t-img .name {
  background: rgba(44, 112, 248, 0.7);
  position: absolute;
  z-index: 9;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.team .team-member .bg-color .t-img .name span {
  color: #fff;
  font-size: 22px;
  display: block;
  text-align: center;
}


.team .team-member .bg-color .social-links li {
  display: inline-block;
  margin: 0px 4px;
}

.team .team-member .bg-color .social-links li a {
  color: #777;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.team .team-member .bg-color .social-links li a:hover {
  color: #2c70f8;
}

.team .team-member:hover .bg-color .t-img .name {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.team .owl-carousel .owl-stage-outer {
  padding-top: 70px;
}

.team .owl-controls {
  position: relative;
}

.team .owl-controls .owl-dots {
  text-align: center;
  margin-top: 46px;
}

.team .owl-controls .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #1f71d4;
  display: inline-block;
  border-radius: 50px;
  margin: 0px 3px 0px;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.team .owl-controls .owl-dots .owl-dot.active {
  width: 20px;
}

/*-------------------------------
  Team Area CSS End
--------------------------------*/
/*-------------------------------
  Testimonial Area CSS Start
--------------------------------*/
.testimonial {
  padding: 10px 0px 15px;
}

.testimonial .section-heading {
  margin-bottom: 50px;
}

.testimonial .single-testimonial {
  text-align: center;
  display: block;
  padding: 30px 30px 30px;
  background: #f7fbff;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.testimonial .single-testimonial:hover{
  border-color: #1f71d4;
}
.testimonial .single-testimonial .review-text {
  margin-top: 20px;
}
.testimonial-slider .slider-item{
  padding: 72px 1px 1px;
}
.testimonial .single-testimonial .review-text p {
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 25px;
}

.testimonial .single-testimonial .people {
}

.testimonial .single-testimonial .people .img {
  display: inline-block;
  margin-top: -208px;
}

.testimonial .single-testimonial .people .img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0px 5px 20px rgb(0 0 0 / 7%);
  object-fit: cover;
}

.testimonial .single-testimonial .people .title {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0px;
}

.testimonial .single-testimonial .people .designation {
  font-size: 14px;
  line-height: 24px;
  color: #1f71d4;
  margin-bottom: 0px;
}

.testimonial .owl-controls {
  position: relative;
}

.testimonial .owl-controls .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.testimonial .owl-controls .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #1f71d4;
  display: inline-block;
  border-radius: 50px;
  margin: 0px 3px 0px;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.testimonial .owl-controls .owl-dots .owl-dot.active {
  width: 20px;

}

/*-------------------------------
  Testimonial Area CSS End
--------------------------------*/
/*-------------------------------
  Blog Area CSS Start
--------------------------------*/
.blog {
  padding: 10px 0px 15px;
}

.blog .section-heading {
  margin-bottom: 48px;
}

.blog .owl-controls {
  position: relative;
}

.blog .owl-controls .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.blog .owl-controls .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #2c70f8;
  display: inline-block;
  border-radius: 50px;
  margin: 0px 3px 0px;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.blog .owl-controls .owl-dots .owl-dot.active {
width: 20px;
}

.single-blog {
  position: relative;
}

.single-blog .content {
  padding: 23px 20px 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;

}

.single-blog .content .blog-title{
  display: inline-block;
  font-size: 22px;
} 
.single-blog .content .text p{
  font-size: 16px;
}
.single-blog .content .title a {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-blog .content .title a:hover {
  color: #2c70f8;
}

.single-blog .content .top-meta {
  margin-bottom: 0px;
}

.single-blog .content .top-meta li {
  display: inline-block;
  margin-right: 10px;
}

.single-blog .content .top-meta li a ,
.single-blog .content .top-meta li p
{
  color: #555;
  font-size: 14px;
  font-weight: 600;
}

.single-blog .content .top-meta li a i {
  color: #2c70f8;
}

.single-blog .content .link {
  padding: 6px 20px;
  color: #fff;
}

.single-blog .content .link i {
  font-size: 14px;
  margin-left: -5px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-blog .content .link:hover i {
  opacity: 1;
  margin-left: 5px;
}

/*-------------------------------
  Blog Area CSS End
--------------------------------*/
/*-------------------------
Blog Area Start
--------------------------*/
.comment-area {
  margin-top: 33px;
}

.comment-area .header-area {
  margin-bottom: 29px;
}

.comment-area .header-area .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 12px;
}

.comment-area .all-comment-list>li {
  margin-bottom: 30px;
}

.comment-area .all-comment-list li .single-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
}

.comment-area .all-comment-list li .single-comment .left {
  margin-right: 30px;
}

.comment-area .all-comment-list li .single-comment .left img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.comment-area .all-comment-list li .single-comment .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.comment-area .all-comment-list li .single-comment .right .top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7px;
}

.comment-area .all-comment-list li .single-comment .right .top-area .name {
  margin-right: 20px;
  color: #143250;
  font-weight: 400;
  font-size: 16px;
}

.comment-area .all-comment-list li .single-comment .right .top-area .top-meta li {
  display: inline-block;
}

.comment-area .all-comment-list li .single-comment .right .top-area .top-meta li a,
.comment-area .all-comment-list li .single-comment .right .top-area .top-meta li span {
  color: #7a8794;
}

.comment-area .all-comment-list li .single-comment .right .top-area .top-meta li a {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.comment-area .all-comment-list li .single-comment .right .top-area .top-meta li a:hover {
  color: #2c70f8;
}

.comment-area .all-comment-list li .single-comment .right .content .text {
  margin-bottom: 10px;
  color: #101d29;
}

.comment-area .all-comment-list li .single-comment .right .bottom-area {
  padding-top: 2px;
}

.comment-area .all-comment-list li .single-comment .right .bottom-area li {
  display: inline-block;
}

.comment-area .all-comment-list li .single-comment .right .bottom-area li a,
.comment-area .all-comment-list li .single-comment .right .bottom-area li span {
  color: #7a8794;
}

.comment-area .all-comment-list li .single-comment .right .bottom-area li a {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.comment-area .all-comment-list li .single-comment .right .bottom-area li a:hover {
  color: #2c70f8;
}

.comment-area .all-comment-list li .single-comment.main-content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comment-area .all-comment-list li .single-comment.replay {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 85px;
  margin-top: 20px;
}

.comment-area .show-more-area {
  display: block;
  text-align: center;
}

.comment-area .show-more-area a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: underline;
  color: #143250;
}

.comment-area .write-comment {
  padding-top: 29px;
  margin-bottom: 30px;
}

.comment-area .write-comment .header-area .title {
  border-bottom: 0px;
  padding-bottom: 0px;
}

.news-details .single-box .single-box-footer {
  padding-top: 25px;
  margin-top: 25px;
  background: #f7efff;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-details .single-box .single-box-footer .title {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0px;
  font-weight: 400;
}

.news-details .single-box .single-box-footer .social-links {
  display: inline-block;
}

.news-details .single-box .single-box-footer .social-links li {
  display: inline-block;
  margin-right: 4px;
}

.news-details .single-box .single-box-footer .social-links li a {
  color: #555;
}

.news-details .single-box .single-box-footer .right ul li {
  display: inline-block;
  margin-left: 15px;
}

.news-details .single-box .single-box-footer .right ul li a {
  color: #29293a;
}

.write-comment-area {
  padding-top: 30px;
}

.write-comment-area input {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.write-comment-area input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555;
}

.write-comment-area input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
}

.write-comment-area input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
}

.write-comment-area input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555;
}

.write-comment-area textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  color: #888888;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}

.write-comment-area textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #888888;
}

.write-comment-area textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
}

.write-comment-area textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
}

.write-comment-area textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #888888;
}

.write-comment-area .submit-btn {
  background: #2c70f8;
  border: 0px;
  color: #fff;
  padding: 15px 30px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.write-comment-area .submit-btn:hover {
  background: #1f71d4;
}

.write-comment-area .submit-btn:focus {
  outline: 0px;
}

#comment-area {
  margin-top: 43px;
}

#comment-area .top-header-area .title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 25px;
}

#comment-area .all-comment {
  margin-top: 18px;
  width: 100%;
}

#comment-area .all-comment li {
  margin-bottom: 30px;
  width: 100%;
}

#comment-area .all-comment li .single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

#comment-area .all-comment li .single-comment .left-area {
  text-align: center;
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
}

#comment-area .all-comment li .single-comment .left-area::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.3);
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#comment-area .all-comment li .single-comment .left-area img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #2c70f8;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

#comment-area .all-comment li .single-comment .left-area .name {
  margin-top: 15px;
  font-size: 14px;
  color: #143250;
  font-weight: 400;
  margin-bottom: 0px;
}

#comment-area .all-comment li .single-comment .left-area .date {
  font-size: 12px;
  color: #143250;
  margin-bottom: 0px;
}

#comment-area .all-comment li .single-comment .right-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#comment-area .all-comment li .single-comment .right-area .header-area .stars-area {
  margin-left: 0px;
}

#comment-area .all-comment li .single-comment .right-area .header-area .stars-area .stars {
  padding: 0px;
  margin-bottom: 5px;
  display: inline-block;
}

#comment-area .all-comment li .single-comment .right-area .header-area .stars-area .stars li {
  display: inline-block;
  width: auto;
  font-size: 12px;
  margin-right: -2px;
  color: #fc9715;
  margin-bottom: 0px;
}

#comment-area .all-comment li .single-comment .right-area .header-area .title {
  font-size: 16px;
  font-weight: 400;
  color: #143250;
  margin-top: 0px;
}

#comment-area .all-comment li .single-comment .right-area .comment-body p {
  font-size: 16px;
  line-height: 26px;
}

#comment-area .all-comment li .single-comment .right-area .comment-footer .links a {
  display: inline-block;
  font-size: 14px;
}

#comment-area .all-comment li .replay-review {
  margin-left: 100px;
}

#comment-area .all-comment li .replay-area {
  position: relative;
  padding-left: 127px;
  margin-bottom: 20px;
}

#comment-area .all-comment li .replay-area textarea {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

#comment-area .all-comment li .replay-area button {
  width: 120px;
  height: 40px;
  line-height: 40px;
  border: 0px;
  background: #2c70f8;
  color: #fff;
  font-weight: 400;
  border-radius: 3px;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

#comment-area .all-comment li .replay-area .remove {
  width: 120px;
  height: 40px;
  border: 0px;
  background: #1f71d4;
  color: #fff;
  font-weight: 400;
  border-radius: 3px;
  font-size: 14px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin-top: 0px;
}

#comment-area .review-area .title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}

#comment-area .write-comment-area {
  padding-top: 20px;
}

#comment-area .write-comment-area input {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

#comment-area .write-comment-area input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555;
}

#comment-area .write-comment-area input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
}

#comment-area .write-comment-area input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
}

#comment-area .write-comment-area input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555;
}

#comment-area .write-comment-area textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  color: #888888;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}

#comment-area .write-comment-area textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #888888;
}

#comment-area .write-comment-area textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
}

#comment-area .write-comment-area textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
}

#comment-area .write-comment-area textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #888888;
}

#comment-area .write-comment-area .submit-btn {
  background: #2c70f8;
  border: 0px;
  color: #fff;
  padding: 15px 30px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#comment-area .write-comment-area .submit-btn:hover {
  background: #1f71d4;
}

#comment-area .write-comment-area .submit-btn:focus {
  outline: 0px;
}

section.home-news.news-details {
  padding: 60px 0px;
}

/*-----------------------------
** Footer Area Start
------------------------------*/
.footer {
  overflow: hidden;
  position: relative;
  padding: 8px 0px 0px;
  background: #06407e;
}

.footer .footer-logo {
  margin-top: -0px;
}

.footer .footer-widget .footer-item .title {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
}

.footer-item {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.footer .footer-widget .footer-item ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.footer .footer-widget ul li {
  list-style: none;
}

.footer .footer-widget ul li a {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #fff;
}
.footer .footer-widget ul li a:hover{
  background: #1f71d4;
  border-color: #1f71d4;
}

.footer .footer-widget ul li i {
  font-size: 12px;
  padding-right: 4px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.footer .fotter-social-links ul {
  padding-left: 0px;
  margin-left: 0px;
}

.footer .fotter-social-links ul li {
  display: inline-block;
}

.footer .fotter-social-links ul li a {
  font-size: 14px;
  width: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 4px;
  text-align: center;
  line-height: 35px;
  margin: 0px 3px;
  padding: 0px;
  color: #1f71d4;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.footer .fotter-social-links ul li a:hover {
  background: #1f71d4;
  color: #fff;
}

.footer .fotter-social-links ul li:first-child {
  margin-left: 0px;
}

.footer .copy-bg {
  background: #24303e;
  margin-top: 60px;
  padding: 20px 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copy-bg .content {
  text-align: center;
}

.footer .copy-bg .content .content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #fff;
}

.footer .copy-bg .content .content p a {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #1f71d4;
}

.about-widget .footer-logo {
  margin-bottom: 22px;
}

.about-widget .text {
  margin-bottom: -2px;
}

.about-widget .text p {
  font-size: 16px;
  color: #fff;
}

.address-widget .title {
  margin-bottom: 25px;
}

.address-widget .about-info li {
  margin-bottom: 15px;
}

.address-widget .about-info li p {
  position: relative;
  padding-left: 50px;
  margin-bottom: 0px;
  color: #fff;
}

.address-widget .about-info li p i {
  position: absolute;
  left: 0;
  font-size: 14px;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  text-align: center;
  line-height: 33px;
  padding: 0px;
  text-align: center;
  color: #fff;
  padding-left: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: inline-block;
}

.address-widget .about-info li:hover i {
  background: #1f71d4;
  border-color: #1f71d4;
  color: #fff;
}

.address-widget .about-info li:last-child {
  margin-bottom: 0px;
}

.info-link-widget .title {
  margin-bottom: 11px;
}

.info-link-widget .link-list li {
  padding: 8px 0;
  display: block;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}

.info-link-widget .link-list li a {
  font-size: 16px;
  line-height: 26px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.info-link-widget .link-list li a:hover {
  color: #1f71d4;
}

.info-link-widget .link-list li i.fas {
  font-size: 14px;
}

.info-link-widget .link-list li:last-child {
  border-bottom: 0px;
}

.footer-newsletter-widget .title {
  margin-bottom: 25px;
}

.footer-newsletter-widget .newsletter-form-area {
  position: relative;
}

.footer-newsletter-widget .newsletter-form-area input {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0px 20px;
  background: none;
  color: #fff;
}

.footer-newsletter-widget .newsletter-form-area button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  border: 0px;
  color: #fff;
  background: #2c70f8;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.footer-newsletter-widget .newsletter-form-area button:hover {
  background: #1f71d4;
}

.footer-newsletter-widget .newsletter-form-area button:focus {
  outline: 0px;
}

.footer-newsletter-widget .social-links {
  margin-top: 20px;
  margin-bottom: 23px;
}

.footer-newsletter-widget .social-links .title {
  font-size: 16px;
  font-weight: 400;
  text-transform: inherit;
  color: #fff;
  margin-bottom: 10px;
}

/*-----------------------------
** Footer Area End
------------------------------*/
/*---------------------------
** Causes Area Start
---------------------------*/
.causes-page {
  padding: 100px 0px 70px;
}

.causes-page .single-causes {
  margin-bottom: 30px;
}

.recent-causes-widget {
  background: #fff;
  padding: 20px 30px 28px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.recent-causes-widget .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #252a32;
  display: block;
  text-align: center;
  margin-bottom: 17px;
}

.recent-causes-widget .separator {
  background: #eeeeee;
  width: 195px;
  height: 2px;
  display: block;
  margin: 0 auto;
}

.recent-causes-widget .post-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 30px;
}

.recent-causes-widget .post-list li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.recent-causes-widget .post-list li .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.recent-causes-widget .post-list li .post .post-img {
  margin-right: 20px;
  width: 65px;
  height: 65px;
}
.recent-causes-widget .post-list li .post .post-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.recent-causes-widget .post-list li .post .post-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.recent-causes-widget .post-list li .post .post-details .post-title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #252a32;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 0px;
}

.recent-causes-widget .post-list li .post .post-details .post-title:hover {
  color: #2c70f8;
}

.recent-causes-widget .post-list li .post .post-details .time-left {
  color: #7b8698;
  font-size: 12px;
  margin-bottom: 0px;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
}

.recent-causes-widget .post-list li:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

.recent-causes-widget .post-list li .progress-area {
  margin-top: 0px;
}
.recent-causes-widget .post-list li .progress-area .persentage{
  display: block;
  text-align: right;
  font-weight: 600;
  font-size: 12px;
}
.recent-causes-widget .post-list li .progress-area .progress {
  border-radius: 50px;
  height: 10px;
  background: #ddd;
}

.recent-causes-widget .post-list li .progress-area .progress .progress-bar {
  border-radius: 50px;
  font-weight: 400;
  background: #2c70f8;
  font-size: 9px;
}

.categori-widget {
  padding: 22px 30px 22px;
  background: #fff;
  border-radius: 10px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
}

.categori-widget .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #252a32;
  display: block;
  text-align: center;
  margin-bottom: 17px;
}

.categori-widget .separator {
  background: #eeeeee;
  width: 195px;
  height: 2px;
  display: block;
  margin: 0 auto;
}

.categori-widget .categori-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 17px;
}

.categori-widget .categori-list li {
  list-style: none;
  line-height: 36px;
}

.categori-widget .categori-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.categori-widget .categori-list li a:hover,
.categori-widget .categori-list li a.active {
  color: #2c70f8;
  padding-left: 5px;
}

.tags-widget {
  background: #fff;
  padding: 22px 30px 15px;
  margin-top: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
}

.tags-widget .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #252a32;
  display: block;
  text-align: center;
  margin-bottom: 17px;
}

.tags-widget .separator {
  background: #eeeeee;
  width: 195px;
  height: 2px;
  display: block;
  margin: 0 auto;
}

.tags-widget .tags-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 29px;
}

.tags-widget .tags-list li {
  list-style: none;
  display: inline-block;
}

.tags-widget .tags-list li a {
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  color: #505b6d;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 15px;
  margin-right: 9px;
}

.tags-widget .tags-list li a:hover {
  background: #2c70f8;
  border-color: #2c70f8;
  color: #fff;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.tags-widget .tags-list li a.active {
  background: #2c70f8;
  border-color: #2c70f8;
  color: #fff;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

/*---------------------------
** Causes Details Area Start
---------------------------*/
.causes-details-page {
  padding: 100px 0px 70px;
}

.causes-details-page .single-causes {
  margin-bottom: 30px;
}

.single-causes.details .img img {
  width: 100%;
}
.single-causes.details .top-box-wrapper{
  padding: 0px 30px;
  margin-top: -200px;
  display: block;
  position: relative;
  z-index: 5;
  margin-bottom: 50px;
}
.single-causes.details .top-box-wrapper .t-b-inner{
  background: #fff;
  padding: 30px;
  display: block;
  border-radius: 10px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.single-causes.details .content {
  text-align: left;
}

.single-causes.details .content .top-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.single-causes.details .content .top-meta .left {
  font-weight: 400;
  margin-right: 20px;
}

.single-causes.details .content .top-meta .left span {
  color: #1f71d4;
}

.single-causes.details .content .top-meta .right {
  font-weight: 400;
}

.single-causes.details .content .top-meta .right span {
  color: #1f71d4;
}

.single-causes.details .content .title {
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 5px;
  margin-top: 18px;
}

.single-causes.details .content .top-meta-2 li {
  display: inline-block;
  margin-right: 15px;
}

.single-causes.details .content .top-meta-2 li p {
  font-size: 15px;
  color: #555;
  font-weight: 600;
}

.single-causes.details .content .top-meta-2 li p span {
  font-weight: 400;
}

.single-causes.details .content .mybtn1 {
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 16px;
  left: 0px;
  margin-top: 30px;
}

.single-causes.details .content .footer-text {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
}

.single-causes.details .content .footer-text .social-text li {
  display: inline-block;
  margin: 0px 4px;
}

.single-causes.details .content .footer-text .social-text li a {
  margin-bottom: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  border-radius: 50%;
  color: #1f71d4;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.single-causes.details .content .footer-text .social-text li a:hover {
  background: #2c70f8;
  color: #fff;
  border-color: #2c70f8;
}

/*---------------------------
** Make a Donation Area Start
---------------------------*/
.causes-details2 {
  padding: 30px 0px 0px;
}

.causes-details2 .single-causes {
  margin-bottom: 30px;
}

.makea-donation {
}

.makea-donation .top-header-area {
  padding: 0px 0px 0px;
  position: relative;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.makea-donation .top-header-area img {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
}

.makea-donation .top-header-area .title {
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
}

.makea-donation .top-header-area .text {
  color: #143250;
}

.makea-donation .content {
  padding: 40px 0px 0px;
}

.makea-donation .content .donet-price {
  margin-bottom: 0px;
}

.makea-donation .content .donet-price li {
  display: inline-block;
  margin-bottom: 0px;
}

.makea-donation .content .donet-price li a {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 30px;
  display: inline-block;
  color: #143250;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin: 0px 4px;
}

.makea-donation .content .donet-price li a:hover {
  background: #2c70f8;
  color: #fff;
}
.makea-donation .content .donet-price li a.active {
  background: #2c70f8;
  color: #fff;
}
.makea-donation .content .donet-price li.amount {
  margin-top: 35px;
}

.makea-donation .content .donet-price li.amount p {
  display: inline-block;
  margin-bottom: 0px;
}

.makea-donation .content .donet-price li.amount input {
  border: 0px;
  padding: 10px 20px;
  font-size: 14px;
  margin-left: 10px;
  height: auto;
  width: 120px;
  display: inline-block;
  background: #2c70f8;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

.makea-donation .content .paying-system {
  margin-top: 40px;
}

.makea-donation .content .paying-system .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 27px;
}

.makea-donation .content .paying-system .select-area p {
  display: inline-block;
}

.makea-donation .content .paying-system .select-area select {
  display: inline-block;
  margin: 0px 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2px 15px;
  border-radius: 50px 50px 50px 50px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.makea-donation .content .mybtn1 {
  display: inline-block;
  margin-top: 25px;
}

#make_a_donation_modal .makea-donation {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#make_a_donation_modal2 .makea-donation {
  text-align: center;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#make_a_donation_modal2 .makea-donation .content {
  padding: 50px 30px 30px;
}

#make_a_donation_modal2 .makea-donation .content .donation-amount .text {
  margin-bottom: 0px;
}

#make_a_donation_modal2 .makea-donation .content .donation-amount .number {
  font-size: 30px;
  font-weight: 400;
}

#make_a_donation_modal2 .button-area {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#make_a_donation_modal2 .button-area a {
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 7px 35px;
  border-radius: 50px;
  color: #231c0d;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#make_a_donation_modal2 .button-area a i {
  font-size: 14px;
}

#make_a_donation_modal2 .button-area a:hover {
  background: #2c70f8;
  color: #fff;
}

/*---------------------------
** About Area Start
---------------------------*/
.about {
  padding: 100px 0px 100px;
}

.about .video {
  padding: 250px 0px 250px;
  background: url(../images/video-bg2.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.about .video::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 112, 248, 0.7);
  z-index: 8;
}

.about .video .video-btn-area {
  position: absolute;
  z-index: 99;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about .title-area {
  text-align: center;
  margin-top: 52px;
}

.about .title-area .title {
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
}

.about .about-info-box-area {
  margin-top: 52px;
  padding-bottom: 100px;
}

/*---------------------------
** About Area End
---------------------------*/
/*---------------------------
** Volunteer Area Start
---------------------------*/
.volunteer {
  padding: 90px 0px 0px;
}

.volunteer .title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 38px;
}

.volunteer .img {
  margin-top: 50px;
}

/*---------------------------
** Volunteer Area End
---------------------------*/
/*-------------------------------
  Hero  Area CSS Start
--------------------------------*/
.event-details {
  padding: 100px 0px 100px;
}

.event-details .top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 25px;
}

.event-details .top-area .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.event-details .top-area .left .title {
  font-size: 30px;
  line-height: 44px;
  font-weight: 400;
  margin-bottom: 0px;
}

.event-details .top-area .left .location {
  margin-bottom: 0px;
}

.event-details .top-area .left .location i {
  color: #1f71d4;
}

.event-details .top-area .right {
  width: 400px;
  text-align: right;
}

.event-details .top-area .right .price-btn {
  font-size: 16px;
  font-weight: 400;
  padding: 14px 25px;
  display: inline-block;
  border: 0px;
  cursor: pointer;
  border-radius: 50px;
  -webkit-box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  margin-right: 30px;
}

.event-details .details-info {
  padding-top: 25px;
}

.event-details .details-info .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 15px;
}

.event-details .speakers-area .speaker-info {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-details .speakers-area .speaker-info .left {
  margin-right: 30px;
}

.event-details .speakers-area .speaker-info .left img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
}

.event-details .speakers-area .speaker-info .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.event-details .speakers-area .speaker-info .right .title {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 16px;
}

.event-details .speakers-area .speaker-info .social-links li {
  display: inline-block;
  margin-right: 6px;
}

.event-details .speakers-area .speaker-info .social-links li a {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.event-details .speakers-area .speaker-info .social-links li a:hover {
  color: #2c70f8;
}

.event-details .event-details-area {
  margin-top: 25px;
}

.event-details .event-details-area .heading .title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.event-details .event-details-area .info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #262e3b;
}

.event-details .event-details-area .info-list li p {
  margin-bottom: 7px;
}

.event-details .event-details-area .info-list li p i {
  font-size: 14px;
  margin-right: 10px;
}

.event-details .buy-tickets-area {
  padding: 25px 30px 30px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.event-details .buy-tickets-area .header-area {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 10px;
}

.event-details .buy-tickets-area .header-area .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
}

.event-details .buy-tickets-area .content {
  padding-top: 20px;
}

.event-details .buy-tickets-area .content .tickets-categori {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-details .buy-tickets-area .content .tickets-categori .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.event-details .buy-tickets-area .content .tickets-categori .right select {
  padding: 1px 10px;
  border-radius: 50px 50px 50px 50px;
}

.event-details .buy-tickets-area .content .mybtn1 {
  margin-top: 16px;
  display: inline-block;
}

.event-details .google_map_wrapper {
  padding-top: 50px;
}

.event-details .contact-to-speakers {
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  padding: 30px 30px 30px;
  margin-top: 50px;
}

.event-details .contact-to-speakers .header-area {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.event-details .contact-to-speakers .header-area .title {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0px;
}

.event-details .speakers-area {
  margin-top: 43px;
}

.event-details .speakers-area .nav {
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 7px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.event-details .speakers-area .nav .nav-item {
  margin: 0px;
  display: inline-block;
}

.event-details .speakers-area .nav .nav-item .nav-link {
  border: 0px;
  display: block;
  background: #e9ebf1;
  border-radius: 50px;
  padding: 12px 40px;
  color: #262e3b;
}

.event-details .speakers-area .nav .nav-item .nav-link i {
  margin-right: 7px;
}

.event-details .speakers-area .nav .nav-item .nav-link.active {
  background: #1f71d4;
}

/*---------------------------
** Blog Area Start
---------------------------*/
.blog-page {
  padding: 100px 0px 100px;
}

.blog-page  .single-blog {
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-blog .content .inner-content{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
/*---------------------------
** Blog Area End
---------------------------*/
/*---------------------------
** Blog-details Area End
---------------------------*/
.blog-details-area {
  padding: 100px 0px 100px;
}

.blog-details-area .blog-details {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-details-area .blog-details img{
  width: 100%;
}
.blog-details-area .blog-details .content {
  padding: 23px 20px 25px;
}

.blog-details-area .blog-details .content .title {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 13px;
}

.blog-details-area .blog-details .content .top-meta {
  margin-bottom: 19px;
}

.blog-details-area .blog-details .content .top-meta li {
  display: inline-block;
  margin-right: 10px;
}

.blog-details-area .blog-details .content .top-meta li a {
  color: #143250;
}

.blog-details-area .blog-details .content .top-meta li a i {
  color: #2c70f8;
}

.blog-details-area .blog-details .post-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
}

.blog-details-area .blog-details .post-footer .title {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  display: inline-block;
  margin-right: 10px;
}

.blog-details-area .blog-details .post-footer .social-share {
  display: inline-block;
}

.blog-details-area .blog-details .post-footer .social-share li {
  display: inline-block;
}

.blog-details-area .blog-details .post-footer .social-share li a {
  font-size: 14px;
  margin: 0px 2px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-details-area .blog-details .post-footer .social-share li a:hover {
  color: #2c70f8;
}

.write-comment-area {
  padding-top: 30px;
}

.write-comment-area input {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.write-comment-area input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555;
}

.write-comment-area input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
}

.write-comment-area input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
}

.write-comment-area input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555;
}

.write-comment-area textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  color: #888888;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}

.write-comment-area textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #888888;
}

.write-comment-area textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
}

.write-comment-area textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
}

.write-comment-area textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #888888;
}

.write-comment-area .submit-btn {
  background: #2c70f8;
  border: 0px;
  color: #fff;
  padding: 15px 30px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.write-comment-area .submit-btn:hover {
  background: #1f71d4;
}

.write-comment-area .submit-btn:focus {
  outline: 0px;
}

#comment-area {
  margin-top: 43px;
}

#comment-area .top-header-area .title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 25px;
}

#comment-area .all-comment {
  margin-top: 18px;
  width: 100%;
}

#comment-area .all-comment li {
  margin-bottom: 30px;
  width: 100%;
}

#comment-area .all-comment li .single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

#comment-area .all-comment li .single-comment .left-area {
  text-align: center;
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
}

#comment-area .all-comment li .single-comment .left-area::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.3);
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#comment-area .all-comment li .single-comment .left-area img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #2c70f8;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

#comment-area .all-comment li .single-comment .left-area .name {
  margin-top: 15px;
  font-size: 14px;
  color: #143250;
  font-weight: 400;
  margin-bottom: 0px;
}

#comment-area .all-comment li .single-comment .left-area .date {
  font-size: 12px;
  color: #143250;
  margin-bottom: 0px;
}

#comment-area .all-comment li .single-comment .right-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#comment-area .all-comment li .single-comment .right-area .header-area .stars-area {
  margin-left: 0px;
}

#comment-area .all-comment li .single-comment .right-area .header-area .stars-area .stars {
  padding: 0px;
  margin-bottom: 5px;
  display: inline-block;
}

#comment-area .all-comment li .single-comment .right-area .header-area .stars-area .stars li {
  display: inline-block;
  width: auto;
  font-size: 12px;
  margin-right: -2px;
  color: #fc9715;
  margin-bottom: 0px;
}

#comment-area .all-comment li .single-comment .right-area .header-area .title {
  font-size: 16px;
  font-weight: 400;
  color: #143250;
  margin-top: 0px;
}

#comment-area .all-comment li .single-comment .right-area .comment-body p {
  font-size: 16px;
  line-height: 26px;
}

#comment-area .all-comment li .single-comment .right-area .comment-footer .links a {
  display: inline-block;
  font-size: 14px;
}

#comment-area .all-comment li .replay-review {
  margin-left: 100px;
}

#comment-area .all-comment li .replay-area {
  position: relative;
  padding-left: 127px;
  margin-bottom: 20px;
}

#comment-area .all-comment li .replay-area textarea {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

#comment-area .all-comment li .replay-area button {
  width: 120px;
  height: 40px;
  line-height: 40px;
  border: 0px;
  background: #2c70f8;
  color: #fff;
  font-weight: 400;
  border-radius: 3px;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

#comment-area .all-comment li .replay-area .remove {
  width: 120px;
  height: 40px;
  border: 0px;
  background: #1f71d4;
  color: #fff;
  font-weight: 400;
  border-radius: 3px;
  font-size: 14px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin-top: 0px;
}

#comment-area .review-area .title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}

#comment-area .write-comment-area {
  padding-top: 20px;
}

#comment-area .write-comment-area input {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

#comment-area .write-comment-area input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555;
}

#comment-area .write-comment-area input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
}

#comment-area .write-comment-area input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
}

#comment-area .write-comment-area input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555;
}

#comment-area .write-comment-area textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  color: #888888;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}

#comment-area .write-comment-area textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #888888;
}

#comment-area .write-comment-area textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
}

#comment-area .write-comment-area textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
}

#comment-area .write-comment-area textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #888888;
}

#comment-area .write-comment-area .submit-btn {
  background: #2c70f8;
  border: 0px;
  color: #fff;
  padding: 15px 30px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#comment-area .write-comment-area .submit-btn:hover {
  background: #1f71d4;
}

#comment-area .write-comment-area .submit-btn:focus {
  outline: 0px;
}

/*---------------------------
** Blog-details Area End
---------------------------*/
/*-------------------------------
  Aside Newsletter Widget Start
--------------------------------*/
.recent-post-widget {
  background: #fff;
  padding: 20px 30px 28px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.recent-post-widget .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #252a32;
  display: block;
  text-align: center;
  margin-bottom: 17px;
}

.recent-post-widget .separator {
  background: #eeeeee;
  width: 195px;
  height: 2px;
  display: block;
  margin: 0 auto;
}

.recent-post-widget .post-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 30px;
}

.recent-post-widget .post-list li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.recent-post-widget .post-list li .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recent-post-widget .post-list li .post .post-img {
  margin-right: 20px;
}

.recent-post-widget .post-list li .post .post-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.recent-post-widget .post-list li .post .post-details .post-title {
  font-size: 14px;
  color: #2f3744;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.recent-post-widget .post-list li .post .post-details .post-title:hover {
  color: #2c70f8;
}

.recent-post-widget .post-list li .post .post-details .date {
  color: #7b8698;
  font-size: 12px;
  margin-bottom: 0px;
}

.recent-post-widget .post-list li:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.categori-widget-area {
  padding: 20px 30px 28px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.categori-widget-area .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #252a32;
  display: block;
  text-align: center;
  margin-bottom: 17px;
}

.categori-widget-area .separator {
  background: #eeeeee;
  width: 195px;
  height: 2px;
  display: block;
  margin: 0 auto;
}

.categori-widget-area .categori-list {
  margin-top: 22px;
}

.categori-widget-area .categori-list a {
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.categori-widget-area .categori-list a:hover {
  color: #2c70f8;
}

.social-widget-area {
  padding: 20px 30px 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-widget-area .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #252a32;
  display: block;
  text-align: center;
  margin-bottom: 17px;
}

.social-widget-area .separator {
  background: #eeeeee;
  width: 195px;
  height: 2px;
  display: block;
  margin: 0 auto;
}

.social-widget-area .categori-list {
  margin-top: 22px;
  text-align: center;
}

.social-widget-area .categori-list li {
  display: inline-block;
}

.social-widget-area .categori-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 0px 3px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  color: #143250;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.social-widget-area .categori-list li a.fb:hover {
  background: #3b5999;
  color: #fff;
}

.social-widget-area .categori-list li a.tw:hover {
  background: #55acee;
  color: #fff;
}

.social-widget-area .categori-list li a.in:hover {
  background: #0077B5;
  color: #fff;
}

.archives-widget {
  padding: 22px 30px 22px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.archives-widget .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #252a32;
  display: block;
  text-align: center;
  margin-bottom: 17px;
}

.archives-widget .separator {
  background: #eeeeee;
  width: 195px;
  height: 2px;
  display: block;
  margin: 0 auto;
}

.archives-widget .archives-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 17px;
}

.archives-widget .archives-list li {
  list-style: none;
  line-height: 36px;
}

.archives-widget .archives-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.archives-widget .archives-list li a:hover {
  color: #2c70f8;
}

.tag-widget {
  padding: 22px 30px 15px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.tag-widget .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #252a32;
  display: block;
  text-align: center;
  margin-bottom: 17px;
}

.tag-widget .separator {
  background: #eeeeee;
  width: 195px;
  height: 2px;
  display: block;
  margin: 0 auto;
}

.tag-widget .tags-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 29px;
}

.tag-widget .tags-list li {
  list-style: none;
  display: inline-block;
}

.tag-widget .tags-list li a {
  font-size: 13px;
  padding: 8px 22px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  color: #505b6d;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 15px;
  margin-right: 9px;
}

.tag-widget .tags-list li a:hover {
  background: #2c70f8;
  border-color: #2c70f8;
  color: #fff;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

/*---------------------------
** Contact Us  Area Start
---------------------------*/
.contact-us {
  padding: 100px 0px 100px;
}

.contact-us .contact-section-title .subtitle {
  color: #143250;
  font-size: 28px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-us .contact-section-title .title {
  color: #2c70f8;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.contact-us .contact-section-title .text {
  color: #777;
}

.contact-us .left-area {
  background: #fff;
}

.contact-us .left-area .contact-form {
  margin-top: 12px;
  padding: 30px 30px 30px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(14, 35, 107, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(14, 35, 107, 0.15);
}

.contact-us .left-area .contact-form ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.contact-us .left-area .contact-form ul li {
  list-style: none;
}

.contact-us .left-area .contact-form ul li .input-field {
  margin-bottom: 20px;
  background: none;
  border-radius: 0px;
  border: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-us .left-area .contact-form ul li .input-field:focus {
  border: 0px !important;
  border-bottom: 1px solid #2c70f8 !important;
}

.contact-us .left-area .contact-form ul li .input-field.textarea {
  margin-bottom: 35px;
}

.contact-us .left-area .contact-form .captcha-area li img {
  max-width: 225px;
  display: inline-block;
}

.contact-us .left-area .contact-form .captcha-area li i {
  display: inline-block;
  margin-left: 15px;
  font-size: 22px;
  color: #777;
}

.contact-us .left-area .contact-form .captcha-area li .input-field {
  margin-bottom: 20px;
  background: none;
  max-width: 225px;
  border-radius: 0px;
  border: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-us .left-area .contact-form .captcha-area li .input-field:focus {
  border: 0px !important;
  border-bottom: 1px solid #2c70f8 !important;
}

.contact-us .right-area .top-content {
  margin-bottom: 23px;
}

.contact-us .right-area .top-content .title {
  font-size: 28px;
  line-height: 28px;
  color: #143250;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-us .right-area .contact-info {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(14, 35, 107, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(14, 35, 107, 0.15);
  border-bottom: 2px solid #2c70f8;
  padding: 30px 30px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-us .right-area .contact-info .left {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.contact-us .right-area .contact-info .left .icon {
  text-align: center;
  font-size: 30px;
  color: #2c70f8;
  border-radius: 50%;
  margin-right: 30px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.contact-us .right-area .contact-info .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contact-us .right-area .contact-info .content a {
  display: block;
  margin-bottom: 0px;
}

.contact-us .right-area .contact-info .content p {
  margin-bottom: 0px;
}

.contact-us .right-area .contact-info:hover {
  -webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-us .right-area .contact-info:hover .icon {
  font-size: 32px;
}

.contact-us .right-area .social-links .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #143250;
  margin-top: -5px;
  margin-bottom: 18px;
}

.contact-us .right-area .social-links ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.contact-us .right-area .social-links ul li {
  display: inline-block;
}

.contact-us .right-area .social-links ul li a {
  font-size: 16px;
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  margin: 0px 3px;
  background: #2c70f8;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.contact-us .right-area .social-links ul li a:hover {
  background: #2c70f8;
}


/*---------------------------
Faq Page Start
-----------------------------*/
.faq-section {
  padding: 100px 0px 100px;
}

.ui-accordion .ui-accordion-header {
  padding: 20px 40px 20px !important;
  margin-top: 20px !important;
  color: #fff;
  border: 0px;
  font-size: 20px;
}

.ui-accordion .ui-accordion-header:focus {
  outline: 0px;
  border: 0px;
}

.ui-accordion .ui-accordion-header .ui-icon {
  display: none;
}

.ui-accordion .ui-accordion-header::before {
  position: absolute;
  content: "\f128";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  left: 15px;
}

.ui-accordion .ui-widget-content {
  border: 0px;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
  padding: 15px 20px 10px;
}


.ui-accordion .ui-accordion-header {
  background: #334f90;
}

/*---------------------------
Faq Page End
-----------------------------*/
/*PAGINATION DESIGN*/

.page-center ul.pagination li {
  width: 35px !important;
  height: 35px !important;
  background: #ff55001a !important;
  border-radius: 50% !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 35px !important;
  margin: 0px 5px !important;
  transition: all .3s !important;
  display: inline-block !important;
  color: #000 !important;
}

.page-center ul.pagination li a:hover {
  color: #000 !important;
}

.page-center ul.pagination {
  display: inline-block !important;
  margin: 0 auto !important;
}

.page-center ul.pagination li.active {
  background: #ff5500 !important;
  color: #fff !important;
  cursor: no-drop !important;
}

.page-center {
  text-align: center !important;
}

.page-link {
  position: unset !important;
  display: unset !important;
  padding: unset !important;
  margin-left: unset !important;
  line-height: unset !important;
  color: unset !important;
  background-color: unset !important;
  border: unset !important;
}

/*PAGINATION DESIGN ENDS*/

/* tags active design */
/* tags active design end */


.login-signup {
  padding: 70px 0px 70px;
}

.login-signup .log-reg-tab-wrapper {
  background: #fff;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.login-signup .log-reg-tab-menu {
  text-align: center;
  background: #fff;
}

.login-signup .log-reg-tab-menu .nav {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-signup .log-reg-tab-menu .nav li {
  -webkit-box-flex: inherit;
  -ms-flex: 50%;
  flex: 50%;
  max-width: 50%;
  display: inline-block;
  text-align: center;
  background: #eee;
}

.login-signup .log-reg-tab-menu .nav li a {
  font-size: 18px;
  font-weight: 400;
  color: #17222c;
  display: block;
  padding: 12px 0px;
}

.login-signup .log-reg-tab-menu .nav li a.active {
  background: #1f71d4;
  color: #fff;
}

.login-signup .login-area .header-area {
  text-align: center;
  /* display: -webkit-box; */
  display: -ms-flexbox;
  /* display: flex; */
  /* -webkit-box-pack: justify; */
  -ms-flex-pack: justify;
  /* justify-content: space-between; */
  padding: 15px 30px 0px;
}

.login-signup .login-area .header-area .title {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0px;
}

.login-signup .login-area .header-area .social-links li {
  display: inline-block;
}

.login-signup .login-area .header-area .social-links li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  display: inline-block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-left: 5px;
}

.login-signup .login-area .header-area .social-links li a:hover {
  background: #1f71d4;
  color: #fff;
}

.login-signup .login-area .signin-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 30px 0px;
}

.login-signup .login-area .signin-area p {
  margin-right: 10px;
  font-size: 14px;
}

.login-signup .login-area .signin-area a {
  font-size: 14px;
  color: #1f71d4;
}



.login-signup .login-area .login-form .form-input {
  position: relative;
  margin-bottom: 15px;
}

.login-signup .login-area .login-form .form-input input {
  width: 100%;
  height: 50px;
  padding: 0px 30px 0px 45px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.login-signup .login-area .login-form .form-input i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  color: #1f71d4;
}

.login-signup .login-area .captcha-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-signup .login-area .captcha-area .img img {
  max-width: 120px;
}

.login-signup .login-area .captcha-area .icon {
  margin-left: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1f71d4;
}

.login-signup .login-area .form-forgot-pass {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
}

.login-signup .login-area .to-login-page {
  text-align: right;
}

.login-signup .login-area .submit-btn {
  width: 100%;
  height: 50px;
  text-align: center;
  background: #1f71d4;
  border: 0px;
  color: #fff;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
  border: 1px solid #1f71d4;
}

.login-signup .login-area .submit-btn:hover {
  color: #1f71d4;
  background: #fff;
}

.login-signup .login-area .forgot-pass {
  font-size: 14px;
  color: #1f71d4;
}

.login-signup .login-area .social-area {
  text-align: center;
  padding-top: 26px;
}

.login-signup .login-area .social-area .title {
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  color: #1f71d4;
  position: relative;
}

.login-signup .login-area .social-area .title::after {
  position: absolute;
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 100%;
  margin-right: 7px;
}

.login-signup .login-area .social-area .title::before {
  position: absolute;
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 100%;
  margin-left: 7px;
}

.login-signup .login-area .social-area .text {
  font-size: 20px;
  font-weight: 300;
  color: #1f71d4;
}

.login-signup .login-area .social-area .social-links {
  padding-left: 0px;
}

.login-signup .login-area .social-area .social-links li {
  display: inline-block;
}

.login-signup .login-area .social-area .social-links li a i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  color: #fff;
  margin: 0px 5px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.login-signup .login-area .social-area .social-links li a i.fa-facebook-f {
  background: #0069f7;
}

.login-signup .login-area .social-area .social-links li a i.fa-twitter {
  background: #00c6f7;
}

.login-signup .login-area .social-area .social-links li a i.fa-google-plus-g {
  background: #d1062c;
}

.profile-area-img {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.profile-area {
  position: relative;
  margin-left: 10px;
}

.profile-area a {
  transition: all linear .3s;
}

.profile-area a:hover {
  color: #1f71d4;
}

.profile-area-content {
  position: absolute;
  top: 100%;
  width: 180px;
  right: 0px;
  background: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  display: none;
}

.profile-area-content li a {
  line-height: 35px;
  font-weight: 400;
  font-size: 15px;
  transition: all linear .3s;
}

.profile-area-content li a:hover {
  color: #1f71d4;
}

.profile-area-content li a i {
  font-size: 12px;
  margin-right: 4px;
}

/*---------------------------
** LOgin Signup  Area End
---------------------------*/

.user-image-wrapper {
  position: relative;
  padding-left: 40px;
}

img.user-img {
  width: 30px;
  height: 30px;
  left: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.shadow-none {
  box-shadow: unset !important;
  padding: 0px !important;
  margin: 0px !important;
}

.makea-donation .preloaded_amountValue {
  width: 120px;
  padding: 0px 10px;
  border: 1px solid red;
  background: red;
  color: #fff;
  border-radius: 50px;
  height: 30px;
  font-size: 16px;
  font-weight: 400;
}

.makea-donation .preloaded_amountValue::placeholder {
  color: #fff !important;
}

.makea-donation .preloaded_amountValue::-webkit-placeholder {
  color: #fff !important;
}
.single-blog .img img{
  width: 100%;
}

.thankyou {
  padding: 60px 0px 60px;
  }
  .thankyou .content {
    background: #2c70f8;
    padding: 20px 30px 50px;
    text-align: center;
    }
    .thankyou .content .icon {
      font-size: 90px;
      color: #ffffff;
      }
    .thankyou .content .heading {
      font-size: 28px;
      line-height: 38px;
      text-transform: uppercase;
      color: #fff;
      font-weight: 400; }
    .thankyou .content .text {
      color: #fff;
      margin-bottom: 0px; }
    .thankyou .content a.link {
      color: #fff;
      margin-top: 20px;
      display: block;
      text-decoration: underline;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 400; }



/*  counter */
a{
  display: block;
}
.single-causes.details.donate-page{
  padding: 0px;
  box-shadow: none;
}
.single-causes.details.donate-page .img{
  padding: 0px;
}
.counter-area {
  padding: 10px 0px 10px;
  background: #f7fbff;
}
.bg-gray{
  background: #f7fbff;
}
.counter-area::before, .bg-overly::before {
	z-index: -1;
	background: #000;
}
.counter-icon {
	position: relative;
}
.counter-area .single-counter {
  margin-bottom: 30px;
  text-align: center;
}
.counter-area .single-counter .counter-icon {
	text-align: center;
	display: inline-block;
	position: relative;
  margin-bottom: 20px;
}

.counter-area .single-counter .counter-text h3 {
	color: #222;
	font-size: 45px;
	margin-bottom: 0;
}
.counter-area .single-counter .counter-text p {
	color: #555;
	margin-bottom: 0;
}

img.rounded-corners {
  border-radius: 50%;
  height: 30vh;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}