/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c5203e;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #1a2858;
}

.example::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* #custom-preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #1A2858;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-size: 2rem;
  overflow: hidden;
}

.loader-screen {
  opacity: 0;
  transition: opacity 0.8s ease;
  position: absolute;
  width: 100vw;
}

.loader-screen.active {
  opacity: 1;
} */

/* .fade-element {
  opacity: 0;
  visibility: hidden;
transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.fade-element.visible {
  opacity: 1;
  visibility: visible;
} */
#custom-loader {
  position: fixed;
  z-index: 9999;
  background: #1A2858;
  /* blue */
  color: white;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  text-align: center;
  transition: opacity 1s ease;
  overflow: hidden;
}

#custom-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0.5rem;
}

/* #line3{
  animation: fadeInDownSoft 2s ease-out forwards;
} */

#line3 {
  opacity: 0;
  transition: opacity 1s ease;
}
#line3{
	margin-bottom: 50px;
}

div#line4,
div#line1{
  /* animation: fadeInDownSoft 1s ease-out forwards; */
  animation: fadeIn ease 3s;
  -webkit-animation: fadeIn ease 3s;
  -moz-animation: fadeIn ease 3s;
  -o-animation: fadeIn ease 3s;
  -ms-animation: fadeIn ease 3s;
}

.lines {
  position: relative;
  width: 100%;
  align-content: center;
}

.lines div#line3>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

#line4 {
  width: 50%;
/*   animation: fadeInUp 0.8s ease forwards; */
  margin: auto;
}

#line4 img {
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
    /* Comes from top */
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDownSoft {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=== FADE IN  ===*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.readMoreContent>div {
  height: 630px;
  overflow-y: auto;
}


/*Login SignUp Style  */
.container {
  max-width: 1240px !important;
  margin: auto;
}

.login-sec {
  background-color: #1a2858;
}

.log-sign-main {
  position: relative;
  width: 70%;
  margin: 5px auto;
  padding: 50px 100px;
  border-radius: 25px;
}

.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.log-sign-form-sec h2 {
  font-family: 'Inter', Sans-serif;
  font-size: 46px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.log-sign-main input[type=text],
.log-sign-main input[type=password],
.log-sign-main input[type=email] {
  width: 100%;
  margin: 8px 0;
  border-radius: 50px;
  padding: 12px 15px;
  background: #fff;
  border: 1px solid #fff;
  margin-bottom: 40px;
  outline: none;
}

.paswrd-field {
  position: relative;
}

.paswrd-field span.toggle-password {
  color: #000;
  position: absolute;
  top: 27px;
  right: 13px;
  cursor: pointer;
}

.log-sign-main button {
  position: relative;
  font-family: 'Inter', Sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .25px;
  color: #fff;
  background: #09b759;
  display: inline-block;
  padding: 12px 45px !important;
  cursor: pointer;
  transition: all .3s ease-in-out;
  border-radius: 8px;
  margin: 10px auto 0px;
  display: table;
  outline: none;
  border: none;
}

.log-sign-main button:hover {
  background: #c5203e;
}

button:focus {
  outline: unset !important;
}

.swal2-confirm {
    background: #C5203E !important;
    color: white !important;
}

#toggle-password {
    position: absolute;
    top: 25px;
    right: 20px;
    color: #000;
	cursor: pointer;
}

/* Hide Edge browser's password reveal icon */
#password-field::-ms-reveal {
  display: none;
}

#password-field::-ms-clear {
  display: none;
}

/*Login Style End  */

/* Logout Start */

#signout a {
  padding: 15px 15px;
  margin-left: 10px;
}

/* Logout End */


/* Responsive Start */

@media screen and (min-width: 1600px) {

  .bannerSec .elementor-container {
    min-height: 600px !important;
  }
}

/* @media screen and (max-width: 1600px) {

  #line4,
  #line4 img {
    height: 425px;
  }

  .lines div#line3 {
    top: -200px;
  }
} */


/* 
  ##Device = Ipads, Ipad Pro 
  ##Screen = B/w 1024px to 1365px
*/
@media only screen and (min-width: 1024px) and (max-width: 1365px) {

  .isssues-inner-sec .elementor-column>div {
    margin: 0 10px 0px 10px !important;
  }

  .readMoreContent>div {
    height: auto;
  }

/*   #line4,
  #line4 img {
    height: 400px;
  } */

  .readMoreContent li {
    text-align: left;
  }

  .log-sign-main {
    width: 100%;
  }

}

/* 1024px to 1365px Dont delete this bracket! */




/* 
  ##Device = Tablets, Ipads 
  ##Screen = B/w 768px to 1023px
*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {

/*   .lines div#line3 {
    top: -100px;
  } */

/*   #line4,
  #line4 img {
    height: 250px;
  } */

  .donate_section .elementor-column>div {
    /* 		justify-content: flex-start !important; */
  }

  .donate_section .elementor-column>div .elementor-element-f9f16e8,
  .donate_section .elementor-column>div .elementor-element-e7068d7 {
    width: auto !important;
  }

  .donate_section .elementor-column>div .elementor-element-f9f16e8 .elementor-icon-box-wrapper,
  .donate_section .elementor-column>div .elementor-element-e7068d7 .elementor-icon-box-wrapper {
    width: fit-content !important;
    margin: auto;
  }

  .donation-form {
    width: auto !important;
  }

  .donation-form .elementor-form .elementor-field-group {
    justify-content: center;
    margin-bottom: 0px !important;
  }

  .donation-form .elementor-field-option {
    margin: 0px 6px 0px 0px;
  }
	
	.isssues-inner-sec {
		margin-top: 0 !important;
	}

  .isssues-inner-sec .elementor-column {
    width: 100%;
  }

  .isssues-inner-sec .elementor-column>div {
    justify-content: center;
    margin: 15px 10px 10px 10px !important;
  }

  .readMoreContent>div {
    height: auto;
  }

  .readMoreContent li {
    text-align: left;
  }

  .loader-text {
    font-size: 40px;
  }

  .log-sign-main {
    width: 100%;
  }

}

/* 768px to 1023px  Dont delete this bracket! */
@media (max-width: 1199px) {
	#line4 {
    width: 70%;
}
}
@media (max-width: 991px) {
	#line4 {
    width: 80%;
}
}

@media (max-width: 767px) {

  #line3>div {
    display: flex;
  }

  .loader-text {
    font-size: 24px;
    line-height: 38px;
  }

  .lines div#line3 {
/*     position: unset; */
    /*     top: -70px; */
  }

/*   #line4 {
    height: 200px;
  }

  #line4 img {
    height: 100%;
  } */

  .isssues-inner-sec .elementor-column>div {
    justify-content: center;
  }

  /* .elementor-element-dc6c0d0 p,
  .readMoreContent p {
    text-align: justify;
  } */

  .readMoreContent li {
    text-align: left;
  }

  .readMoreContent>div {
    height: auto;
  }

  .make .elementor-icon {
    position: relative;
    top: 6px;
  }

  .donation-form .elementor-field-subgroup {
    justify-content: center;
  }
  
	.donation-form .elementor-field-option {
    margin: 15px 10px 15px 0px;
  }
/* 
  .lines div#line3>div {
    height: 100vh;
  } */

  .log-sign-main {
    padding: 50px 20px;
    width: 100%;
  }

  .log-sign-form-sec h2 {
    font-size: 36px;
  }
}

@media (max-width: 481px) {

  .lines div#line3 {
    /*     top: -100px; */
  }

  #line4 {
    height: 140px;
  }
}