@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}

/*DECLARE VARIABLES*/
/*COLORS*/
/*COLORS*/
.text-color1 {
  color: #e33c34;
}

/*FONT-STYLES*/
/*FONT-STYLES*/
/*TYPOGRAPHY*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: "Merriweather", serif;
  color: #000;
}

h1 {
  font-size: 90px;
  line-height: 90px;
  font-weight: 700;
}

h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
}

h3 {
  font-size: 26px;
  line-height: 40px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

h5 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
}

h6 {
  font-size: 15px;
  font-weight: 600;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  font-family: "DM Sans", sans-serif;
  color: #767676;
}

/*TYPOGRAPHY*/
/*BUTTON*/
input:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

.button-style-header {
  background-color: #f3b42c;
  padding: 15px 25px;
  border-radius: 7px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button-style {
  background-color: #f3b42c;
  padding: 15px 25px;
  border-radius: 7px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 25px 40px;
}

.button-style:hover {
  background-color: #b88923;
}

.button-style-header:hover {
  background-color: #b88923;
}

.button-style-2 {
  background-color: #e33c34;
  padding: 15px 25px;
  border-radius: 7px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button-style-2:hover {
  background-color: #ab2721;
}

.button-style-3 {
  background-color: #f2f2f2;
  padding: 15px 25px;
  border-radius: 7px;
  color: #848484;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button-style-3:hover {
  background-color: #e33c34;
  color: #fff;
}

/*BUTTON*/
/*INPUTS AND FORM*/
.form-line {
  width: 100%;
  padding: 10px 0;
}
.form-line input {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  padding: 0 0 0 30px;
}
.form-line textarea {
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 20px 0 0 30px;
}
.form-line .semi-input {
  width: 50%;
}

input, textarea {
  border: none;
}

/*INPUTS AND FORM*/
/*DECLARE VARIABLES*/
body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 0;
}

.application {
  display: block;
  margin: 0 auto;
  width: 1920px;
  max-width: 100%;
  background: #fff;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.1);
}

.container {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
  transition: 0.5s;
}

/*1920px for computer*/
/*ASSETS*/
/*social icons*/
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.social-icons li {
  width: 40px;
  height: 40px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.social-icons li:hover i {
  color: #e33c34;
}

/*social icons*/
/*comments in details*/
.comments-section .comment {
  width: 100%;
  padding: 40px 10px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.6235294118);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comments-section .comment .commentor-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-right: 20px;
}
.comments-section .comment .commentor-image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comments-section .comment .comment-context {
  width: 75%;
}
.comments-section .comment .comment-context .commentor-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comments-section .comment .comment-context .commentor-name .button-style {
  padding: 10px 10px;
}

.comment-form .form-line {
  display: flex;
  justify-content: space-between;
}
.comment-form .form-line input {
  padding: 35px 0 35px 30px;
}
.comment-form .form-line textarea {
  height: 180px;
}
.comment-form .form-line input, .comment-form .form-line textarea {
  background-color: #f2f2f2;
}
.comment-form .form-line .semi-input {
  width: 49%;
}
.comment-form .button-style-2 {
  padding: 30px 60px;
}

/*comments in details*/
/*blogs-date*/
.blog-date {
  background-color: #e33c34;
  border-radius: 7px 7px 0 7px;
  width: 70px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-date h4 {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  width: 60%;
}
.blog-date h4 span {
  font-size: 20px;
}

/*blogs-date*/
/*ASSETS*/
/*HEADER*/
.sticky {
  position: fixed !important;
  top: 0;
  background-color: #fff;
  box-shadow: black 5px 5px 23px -13px;
  width: 100%;
  max-width: 1920px;
  z-index: 998;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/*HEADER-TOP*/
.header-top {
  background-color: #313131;
}
.header-top a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.header-top .headertop-firstpart {
  display: flex;
  align-items: center;
}
.header-top .headertop-firstpart .hte {
  display: flex;
  align-items: center;
}
.header-top .headertop-firstpart .hte i {
  color: #f3b42c;
  padding: 15px 10px;
}
.header-top .headertop-firstpart .hte a:hover {
  color: #f3b42c;
}
.header-top .headertop-lastpart {
  display: flex;
  align-items: center;
}
.header-top .headertop-lastpart .social-icons-header {
  display: flex;
  align-items: center;
  background-color: #000;
  margin: 0 10px;
  gap: 30px;
  padding: 10px 50px;
}
.header-top .headertop-lastpart .social-icons-header li a:hover {
  color: #f3b42c;
}
.header-top .headertop-lastpart .social-icons-header li a:hover i {
  color: #f3b42c;
}
.header-top .headertop-lastpart .social-icons-header li i {
  font-size: 16px;
}
.header-top .headertop-lastpart .login-register {
  display: flex;
  align-items: center;
}
.header-top .headertop-lastpart .login-register a, .header-top .headertop-lastpart .login-register p {
  color: #9c9c9c;
  padding: 0 10px;
}
.header-top .headertop-lastpart .login-register a:hover, .header-top .headertop-lastpart .login-register p:hover {
  color: #fff;
}

/*HEADER-TOP*/
/*HEADER-MAIN*/
.menu-button {
  display: none;
}

.header-main .header-wrap {
  padding: 15px 20px 15px 0;
  justify-content: end;
  gap: 11%;
  position: relative;
  z-index: 10;
}
.header-main .logo {
  background-color: #e33c34;
  padding: 20px 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.header-main .nav-list {
  display: flex;
  align-items: center;
}
.header-main .nav-list li {
  padding: 20px 30px;
  position: relative;
}
.header-main .nav-list li .active {
  color: #e33c34;
}
.header-main .nav-list li .active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 5px;
  width: 60%;
  background-color: #e33c34;
}
.header-main .nav-list li a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 5px;
  width: 0;
  background-color: #000;
  transition: width 0.5s ease;
}
.header-main .nav-list li:hover a::after {
  width: 60%;
}
.header-main .last-header-part {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-main .last-header-part .join-link {
  display: flex;
  align-items: center;
}
.header-main .last-header-part .join-link i {
  font-size: 16px;
  color: #e33c34;
  background-color: #f2f2f2;
  padding: 15px;
  border-radius: 50%;
}
.header-main .last-header-part .join-link .join-us-text {
  padding: 0 15px;
}
.header-main .last-header-part .join-link .join-us-text span {
  font-family: "Merriweather", serif;
  font-weight: 600;
}
.header-main .last-header-part .vertical-thin-line {
  width: 2px;
  height: 50px;
  background-color: #f2f2f2;
}
.header-main .last-header-part .search-icon i {
  font-size: 30px;
  color: #767676;
}

/*HEADER-MAIN*/
/*HEADER*/
/*HERO SECTION*/
.hero-sliders {
  position: relative;
}
.hero-sliders .owl-carousel .owl-carousel .owl-stage-outer {
  z-index: 1;
}
.hero-sliders .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.hero-sliders .owl-nav i {
  color: #000;
  font-size: 30px;
  background-color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-sliders .owl-nav i:hover {
  background-color: #767676;
}
.hero-sliders .owl-nav .owl-prev {
  position: absolute;
  left: 4%;
}
.hero-sliders .owl-nav .owl-next {
  position: absolute;
  right: 4%;
}
.hero-sliders .owl-dots {
  display: none;
}

.slide {
  width: 100%;
  height: 700px;
  position: relative;
}
.slide .container {
  position: relative;
  height: inherit;
  z-index: 2;
}
.slide .container .slide-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.slide .container .slide-content h1 {
  font-family: "DM Sans";
  color: #fff;
  margin-bottom: 20px;
}
.slide .container .slide-content h1 span {
  font-style: italic;
  color: #f3b42c;
}
.slide .container .slide-content p {
  color: #fff;
  margin-bottom: 50px;
}
.slide .container .slide-content .button-style, .slide .container .slide-content .button-style-2 {
  padding: 25px 50px;
}
.slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0));
  z-index: 1;
}

.slide-1 {
  background-image: url(https://i.imgur.com/lDepBkb.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-2 {
  background-image: url(https://i.imgur.com/VKePR9j.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-3 {
  background-image: url(https://i.imgur.com/rZzZBT8.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
}

/*HERO SECTION*/
/*SECOND SECTION*/
.section-second {
  margin: 145px 0;
}

.services-cards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.services-cards-row .service-card {
  border-radius: 10px;
  padding: 20px;
}
.services-cards-row .service-card h2, .services-cards-row .service-card p {
  text-align: center;
}
.services-cards-row .service-card h2 {
  font-size: 22px;
  line-height: 30px;
}
.services-cards-row .service-card p {
  width: 250px;
  margin: 20px auto;
}
.services-cards-row .service-card .service-card-content {
  padding: 90px 70px 70px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1098039216);
}
.services-cards-row .service-card .service-card-content .service-card-image {
  width: 180px;
  height: 180px;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
}
.services-cards-row .service-card .service-card-content .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.services-cards-row .service-card .more-detail-arrow {
  cursor: pointer;
  width: 80px;
  height: 80px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.services-cards-row .service-card .more-detail-arrow:hover {
  background-color: #f3b42c;
}
.services-cards-row .sc-border-1 {
  background: linear-gradient(180deg, #36a1b0 0%, #36a1b0 40%, transparent 95%);
}
.services-cards-row .sc-border-2 {
  background: linear-gradient(180deg, #f3b42c 0%, #f3b42c 40%, transparent 95%);
}
.services-cards-row .sc-border-3 {
  background: linear-gradient(180deg, #e33c34 0%, #e33c34 40%, transparent 95%);
}

/*SECOND SECTION*/
/*THIRD SECTION*/
.title-box .yellow-line {
  width: 50px;
  height: 3px;
  background-color: #f3b42c;
  margin-bottom: 10px;
}
.title-box .invert-title {
  display: flex;
  flex-direction: column-reverse;
  width: 540px;
  margin-bottom: 30px;
}
.title-box p {
  margin-bottom: 10px;
}

.section-third {
  padding: 0 0 100px;
  position: relative;
}
.section-third .dark-fade-shape {
  width: 40%;
  height: 95%;
  position: absolute;
  top: -40px;
  left: 100px;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.0941176471), transparent);
  border-radius: 0 50% 50% 0;
}
.section-third .section-wrap {
  display: flex;
  justify-content: center;
}
.section-third .section-wrap .left-side { /*LEFTS SIDE =======*/
  width: 42%;
  position: relative;
}
.section-third .section-wrap .left-side .main-image {
  width: 630px;
  height: 630px;
  position: relative;
  z-index: 3;
}
.section-third .section-wrap .left-side .main-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.section-third .section-wrap .left-side .small-image {
  width: 300px;
  height: 300px;
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: -90px;
  filter: drop-shadow(7px 7px 10px rgba(0, 0, 0, 0.1960784314));
}
.section-third .section-wrap .left-side .small-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.section-third .section-wrap .left-side .play-icon {
  position: absolute;
  top: 150px;
  left: -34px;
}
.section-third .section-wrap .left-side .play-icon i {
  background-color: #e33c34;
  color: #fff;
  width: 130px;
  font-size: 28px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.section-third .section-wrap .left-side .play-icon .red-triangle {
  width: 55px;
  height: 55px;
  background-color: #e33c34;
  position: absolute;
  z-index: 1;
  bottom: -19px;
  left: 10px;
  transform: rotate(45deg);
  border-radius: 10px;
}
.section-third .section-wrap .left-side .yellow-circle {
  border: 3px solid #f3b42c;
  height: 585px;
  width: 585px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 160px;
  z-index: 4;
}
.section-third .section-wrap .right-side { /*RIGHT SIDE =======*/
  width: 50%;
  padding-left: 130px;
}
.section-third .section-wrap .right-side .phrase {
  margin-bottom: 40px;
}
.section-third .section-wrap .right-side .boxed-phrase {
  background-color: #f2f2f2;
  padding: 20px 55px;
  width: 580px;
  color: #000;
  font-weight: 600;
  border-left: solid 8px #f3b42c;
  border-radius: 10px;
}
.section-third .section-wrap .right-side .boxed-phrase span {
  color: #e33c34;
}
.section-third .section-wrap .right-side .mission-story {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 25px;
}
.section-third .section-wrap .right-side .mission-story p {
  width: 260px;
}
.section-third .section-wrap .right-side .mission-story h3 {
  margin-bottom: 20px;
}
.section-third .section-wrap .right-side .mission-story h3 i {
  color: #e33c34;
  margin-right: 15px;
}
.section-third .section-wrap .right-side .button-style {
  padding: 25px 60px;
}

/*THIRD SECTION*/
/*FOURTH SECTION*/
.section-fourth {
  position: relative;
  padding: 100px 0;
}
.section-fourth .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.section-fourth .bg-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
  opacity: 0.1;
  -webkit-mask-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.section-fourth .container {
  position: relative;
  z-index: 2;
}
.section-fourth .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.section-fourth .stats-row .stat-card .stat-icon {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.section-fourth .stats-row .stat-card .stat-icon .hearts-animate {
  position: absolute;
  z-index: 1;
}
.section-fourth .stats-row .stat-card .stat-icon .hearts-animate .big-heart {
  font-size: 40px;
  padding-bottom: 35px;
}
.section-fourth .stats-row .stat-card .stat-icon .hearts-animate .mid-heart {
  font-size: 36px;
  padding-bottom: 25px;
}
.section-fourth .stats-row .stat-card .stat-icon .hearts-animate .small-heart {
  font-size: 26px;
  padding-bottom: 5px;
}
.section-fourth .stats-row .stat-card .stat-icon img {
  width: 40%;
  height: 40%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
@keyframes heartMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-120px);
    opacity: 0;
  }
}
.section-fourth .stats-row .stat-card .stat-icon:hover .big-heart {
  animation: heartMove 0.7s ease-in-out forwards;
}
.section-fourth .stats-row .stat-card .stat-icon:hover .mid-heart {
  animation: heartMove 0.7s ease-in-out forwards;
  animation-delay: 0.15s;
}
.section-fourth .stats-row .stat-card .stat-icon:hover .small-heart {
  animation: heartMove 0.7s ease-in-out forwards;
  animation-delay: 0.25s;
}
.section-fourth .stats-row .stat-card h3 {
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 10px;
}
.section-fourth .stats-row .stat-card p {
  font-size: 20px;
  text-align: center;
}
.section-fourth .stats-row .stat-card-1 .stat-icon {
  background-color: #36a1b0;
}
.section-fourth .stats-row .stat-card-1 .stat-icon .hearts-animate i {
  color: #36a1b0;
}
.section-fourth .stats-row .stat-card-2 .stat-icon {
  background-color: #f3b42c;
}
.section-fourth .stats-row .stat-card-2 .stat-icon .hearts-animate i {
  color: #f3b42c;
}
.section-fourth .stats-row .stat-card-3 .stat-icon {
  background-color: #e33c34;
}
.section-fourth .stats-row .stat-card-3 .stat-icon .hearts-animate i {
  color: #e33c34;
}
.section-fourth .stats-row .stat-card-4 .stat-icon {
  background-color: #4a78e0;
}
.section-fourth .stats-row .stat-card-4 .stat-icon .hearts-animate i {
  color: #4a78e0;
}

/*FOURTH SECTION*/
/*FIFTH SECTION*/
.section-fifth {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-fifth .section-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}
.section-fifth .section-wrap .text-box {
  display: flex;
  flex-direction: column-reverse;
  width: 790px;
  margin: 0 auto 60px;
}
.section-fifth .section-wrap .text-box p {
  margin-bottom: 20px;
  color: #b4b4b4;
}
.section-fifth .section-wrap .text-box h2 {
  color: #fff;
  position: relative;
  line-height: 65px;
}
.section-fifth .section-wrap .text-box h2 .red-circle {
  position: absolute;
  bottom: -7px;
  z-index: -1;
  right: 260px;
  width: 140px;
  background: #e33c34;
  mask: url(https://i.imgur.com/JTrhXY4.png) no-repeat;
  mask-size: 100%;
}
.section-fifth .section-wrap .text-box h2 .red-circle img {
  background: #e33c34;
  mask: url(https://i.imgur.com/JTrhXY4.png) no-repeat;
  mask-size: 0;
}
.section-fifth .section-wrap a {
  padding: 25px 40px;
}

.section-fifth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://i.imgur.com/3UoIsAd.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(15%) grayscale(1) contrast(0.8);
  z-index: 1;
}

/*FIFTH SECTION*/
/*SIXTH SECTION*/
.section-sixth {
  padding: 100px 0;
  position: relative;
}
.section-sixth .red-rectangle {
  background-color: #e33c34;
  width: 45%;
  height: 90%;
  z-index: 1;
  border-radius: 0 0 0 15px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(https://i.imgur.com/OBG2yJ0.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
.section-sixth .section-wrap {
  display: flex;
  position: relative;
  z-index: 2;
}
.section-sixth .section-wrap .left-side {
  width: 50%;
}
.section-sixth .section-wrap .left-side .left-side-container {
  width: 460px;
  margin: 0 100px 0 auto;
}
.section-sixth .section-wrap .left-side .left-side-container p {
  margin-bottom: 20px;
}
.section-sixth .section-wrap .left-side .left-side-container .slogan {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.section-sixth .section-wrap .left-side .left-side-container .slogan .icon {
  background: #e33c34;
  mask: url(https://i.imgur.com/GYIacFe.png) no-repeat;
  width: 100px;
  height: 70px;
  mask-size: 100%;
  margin-right: 15px;
}
.section-sixth .section-wrap .left-side .left-side-container .slogan .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e33c34;
  mask: url(https://i.imgur.com/GYIacFe.png) no-repeat;
  mask-size: 0;
}
.section-sixth .section-wrap .left-side .left-side-container .slogan h3 {
  font-size: 20px;
}
.section-sixth .section-wrap .right-side .events-slides .owl-dots {
  display: block;
  transform: rotate(90deg);
  position: absolute;
  right: -15%;
  top: 45%;
}
.section-sixth .section-wrap .right-side .events-slides .owl-dots .owl-dot {
  background-color: #ad3831;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  margin: 5px;
}
.section-sixth .section-wrap .right-side .events-slides .owl-dots .owl-dot.active {
  background-color: #fff;
  width: 20px;
  height: 20px;
}
.section-sixth .section-wrap .right-side .events-slides .owl-stage-outer {
  width: 650px;
}
.section-sixth .section-wrap .right-side .events-slides .owl-stage-outer .owl-item {
  width: 650px;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider {
  margin: 0 30px;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .date-box {
  background-color: #e33c34;
  color: white;
  width: 180px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 25px;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .thumbnail {
  width: 180px;
  height: 180px;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info {
  padding: 0 30px;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info a:hover p, .section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info a:hover h3, .section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info a:hover i {
  color: #e33c34;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info .time-place {
  display: flex;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info .time-place i, .section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info .time-place p {
  margin-right: 5px;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info .time-place i {
  color: #f3b42c;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info .time-place .time a {
  display: flex;
  align-items: center;
}
.section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info .time-place .place a {
  display: flex;
  align-items: center;
}

/*SIXTH SECTION*/
/*SEVENTH SECTION*/
.section-seventh {
  padding: 100px 0;
}
.section-seventh .title-box .yellow-line {
  margin: 0 auto 10px;
}
.section-seventh .title-box .invert-title {
  margin: 0 auto 30px;
  text-align: center;
}
.section-seventh .donate-cards {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.section-seventh .donate-card {
  width: 410px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding-bottom: 10px;
}
.section-seventh .donate-card .donate-card-image {
  background-image: url(https://i.imgur.com/hoxdUVr.png);
  background-position: 0 0;
  height: 322px;
  width: 100%;
  -webkit-mask-image: url(https://i.imgur.com/hoxdUVr.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position-y: center;
}
.section-seventh .donate-card .donate-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-seventh .donate-card .donate-card-content {
  width: 80%;
  margin: 0 auto;
}
.section-seventh .donate-card .donate-card-content h3 {
  text-align: center;
  font-size: 24px;
  margin: 15px auto;
}
.section-seventh .donate-card .donate-card-content p {
  text-align: center;
}
.section-seventh .donate-card .donate-card-content .percentage-bar {
  width: 100%;
}
.section-seventh .donate-card .donate-card-content .percentage-bar progress {
  width: 100%;
  height: 4px;
  background-color: #36a1b0;
  margin: 10px 0 10px;
  display: flex;
  align-items: center;
  position: relative;
}
.section-seventh .donate-card .donate-card-content .percentage-bar progress:after {
  content: attr(value) "%";
  position: absolute;
  top: 70%;
  font-family: "Merriweather", serif;
  left: 76%;
  font-size: 32px;
  margin-top: 10px;
  font-weight: 700;
  color: #e33c34;
}
.section-seventh .donate-card .donate-card-content .button-style-3 {
  width: 100%;
  display: block;
  text-align: center;
  margin: 20px 0;
  padding: 25px 0;
}
.section-seventh .donate-card .donate-card-content h4 {
  font-size: 18px;
}
.section-seventh .donate-card .donate-card-content h4 span {
  font-size: 18px;
  color: #767676;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.section-seventh .donate-card .donate-card-content .note {
  display: flex;
  justify-content: space-between;
}

/*SEVENTH SECTION*/
/*EIGHTH SECTION*/
textarea {
  resize: none;
}

.section-eighth {
  padding: 100px 0;
}
.section-eighth .section-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-eighth .section-wrap .left-side {
  width: 50%;
  border-radius: 15px;
  background-color: #f2f2f2;
  padding: 100px;
}
.section-eighth .section-wrap .left-side input, .section-eighth .section-wrap .left-side textarea {
  border: none;
}
.section-eighth .section-wrap .left-side .fl-1 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eighth .section-wrap .left-side .form-line textarea {
  border-radius: 8px;
}
.section-eighth .section-wrap .right-side {
  width: 50%;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.section-eighth .section-wrap .right-side .image-container {
  width: 100%;
  height: auto;
}
.section-eighth .section-wrap .right-side .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.section-eighth .section-wrap .right-side .yellow-band {
  position: relative;
  z-index: 2;
  bottom: 3%;
  background-color: #f3b42c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 30px;
  border-radius: 0 0 15px 15px;
}
.section-eighth .section-wrap .right-side .yellow-band .contact-info, .section-eighth .section-wrap .right-side .yellow-band .location-info {
  display: flex;
  align-items: center;
}
.section-eighth .section-wrap .right-side .yellow-band .contact-info i, .section-eighth .section-wrap .right-side .yellow-band .location-info i {
  background-color: #fff;
  color: #000;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  margin-right: 20px;
}
.section-eighth .section-wrap .right-side .yellow-band .contact-info i:hover, .section-eighth .section-wrap .right-side .yellow-band .location-info i:hover {
  background-color: #e33c34;
  color: #fff;
}
.section-eighth .section-wrap .right-side .yellow-band .contact-info p, .section-eighth .section-wrap .right-side .yellow-band .location-info p {
  color: #fff;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.section-eighth .section-wrap .right-side .yellow-band .contact-info p:hover, .section-eighth .section-wrap .right-side .yellow-band .location-info p:hover {
  color: #e33c34;
}

/*EIGHTH SECTION*/
/*NINETH SECTION*/
.section-nineth {
  padding: 100px 0;
  background-color: #f2f2f2;
  position: relative;
}
.section-nineth .image-background {
  position: absolute;
  width: 600px;
  height: 100%;
  top: 0;
  left: 0;
}
.section-nineth .image-background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
  opacity: 0.1;
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.section-nineth .background-map {
  position: absolute;
  width: 800px;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 1;
}
.section-nineth .background-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 90%);
  mask-image: linear-gradient(to left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 90%);
}
.section-nineth .section-wrap {
  display: flex;
  align-items: center;
}
.section-nineth .section-wrap .left-side {
  width: 40%;
}
.section-nineth .section-wrap .left-side .title-box {
  width: 430px;
}
.section-nineth .section-wrap .right-side {
  width: 60%;
}
.section-nineth .section-wrap .right-side .testimonials {
  display: flex;
  align-items: center;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial {
  position: relative;
  z-index: 1;
  width: 650px;
  height: 300px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0941176471);
  padding: 50px 100px;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .quote-container {
  background-color: #e33c34;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  right: 40px;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .quote-container .quote {
  background-color: #fff;
  mask: url(https://i.imgur.com/wuA558G.png) no-repeat;
  mask-size: 100%;
  width: 40px;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .quote-container .quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
  mask: url(https://i.imgur.com/wuA558G.png) no-repeat;
  mask-size: 0;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .quarter-circle {
  background-color: #f2f2f2;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  top: -125px;
  right: -125px;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: linear-gradient(90deg, #e43d35 0%, #eb7930 50%, #f3b32b 100%);
  display: flex;
  align-items: end;
  justify-content: flex-start;
  position: absolute;
  top: -70px;
  left: 40px;
  z-index: 10;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .profile-info {
  margin: 0 0 15px 75px;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .profile-info .rating-stars {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.section-nineth .section-wrap .right-side .testimonials .testimonial .profile-info .rating-stars i {
  color: #f3b42c;
  font-size: 20px;
  margin-right: 5px;
}
.section-nineth .section-wrap .right-side .testimonials .owl-stage-outer {
  height: 450px;
}
.section-nineth .section-wrap .right-side .testimonials .owl-stage-outer .owl-stage {
  margin: 80px 0;
}
.section-nineth .section-wrap .right-side .testimonials .owl-dots {
  display: flex;
  gap: 5px;
  position: absolute;
  left: -67%;
  bottom: 50px;
}
.section-nineth .section-wrap .right-side .testimonials .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background-color: #313131;
  border-radius: 50%;
}
.section-nineth .section-wrap .right-side .testimonials .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  background-color: #e33c34;
  border-radius: 50%;
}

/*NINETH SECTION*/
/*TENTH SECTION*/
.section-tenth {
  background: linear-gradient(90deg, #e43d35 0%, #eb7930 50%, #f3b32b 100%);
  padding: 100px 0;
  position: relative;
}
.section-tenth .background-image {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.05;
  width: 100%;
}
.section-tenth .background-image img {
  width: 100%;
}
.section-tenth .section-wrap .sponsors {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-tenth .section-wrap .sponsors .sponsor {
  background-color: #fff;
  mask: url(https://i.imgur.com/YoxxyRZ.png) no-repeat;
  mask-size: 100%;
  width: 80px;
  opacity: 0.6;
  transition: 0.3s;
  cursor: pointer;
}
.section-tenth .section-wrap .sponsors .sponsor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
  mask: url(https://i.imgur.com/YoxxyRZ.png) no-repeat;
  mask-size: 0;
}
.section-tenth .section-wrap .sponsors .sponsor:hover {
  opacity: 1;
}

/*TENTH SECTION*/
/*ELEVENTH SECTION*/
.blogposts-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blogposts-row .blog-card {
  position: relative;
  width: 450px;
}
.blogposts-row .blog-card .blog-thumbnail {
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border-radius: 15px;
}
.blogposts-row .blog-card .blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 1s ease;
}
.blogposts-row .blog-card .blog-thumbnail img:hover {
  transform: scale(1.2);
}
.blogposts-row .blog-card .blog-info {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0823529412);
  padding: 20px;
  position: relative;
  z-index: 3;
  margin-top: -10%;
}
.blogposts-row .blog-card .blog-info .blog-title {
  margin: 20px 0;
  width: 90%;
}
.blogposts-row .blog-card .blog-info .blog-title h3 {
  transition: 0.3s;
}
.blogposts-row .blog-card .blog-info .blog-title a:hover h3 {
  color: #e33c34;
}
.blogposts-row .blog-card .blog-info .blog-date {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
.blogposts-row .blog-card .blog-info .blog-infos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blogposts-row .blog-card .blog-info .blog-infos i {
  color: #f3b42c;
  margin-right: 5px;
  transition: 0.3s;
}
.blogposts-row .blog-card .blog-info .blog-infos .blog-author a, .blogposts-row .blog-card .blog-info .blog-infos .blog-comments a {
  display: flex;
  align-items: center;
}
.blogposts-row .blog-card .blog-info .blog-infos p {
  transition: 0.3s;
}
.blogposts-row .blog-card .blog-info .blog-infos a:hover p {
  color: #e33c34;
}
.blogposts-row .blog-card .blog-info .blog-infos a:hover i {
  color: #e33c34;
}
.blogposts-row .blog-card .blog-info .read-more {
  border-top: 2px solid #f2f2f2;
  padding-top: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.blogposts-row .blog-card .blog-info .read-more span {
  color: #e33c34;
  margin-right: 10px;
  font-weight: 600;
}
.blogposts-row .blog-card .blog-info .read-more a {
  transition: 0.3s;
}
.blogposts-row .blog-card .blog-info .read-more a:hover {
  color: #e33c34;
}

.section-eleventh {
  padding: 100px 0;
}
.section-eleventh .section-wrap .title-box {
  margin: 0 auto 40px;
  text-align: center;
  width: fit-content;
}
.section-eleventh .section-wrap .title-box .yellow-line {
  margin: 0 auto 20px;
}

/*ELEVENTH SECTION*/
/*TWELVE SECTION*/
.section-twelveth {
  padding: 50px 0 0;
  margin-bottom: -3%;
}
.section-twelveth .social-images-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-twelveth .social-images-row .social-image {
  width: 260px;
  height: 260px;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.section-twelveth .social-images-row .social-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: 1s ease-in-out;
}
.section-twelveth .social-images-row .social-image img:hover {
  transform: scale(1.2);
}
.section-twelveth .social-images-row .social-image .social-hover-link {
  opacity: 0.9;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-twelveth .social-images-row .social-image .social-hover-link i {
  color: #fff;
  font-size: 36px;
}
.section-twelveth .social-images-row .social-image a:hover .social-hover-link {
  visibility: visible;
}
.section-twelveth .social-images-row .social-image a:hover .shl-1 {
  background-color: #e33c34;
}
.section-twelveth .social-images-row .social-image a:hover .shl-2 {
  background-color: #000;
}
.section-twelveth .social-images-row .social-image a:hover .shl-3 {
  background-color: #f3b42c;
}
.section-twelveth .social-images-row .social-image a:hover .shl-4 {
  background-color: #36a1b0;
}
.section-twelveth .social-images-row .social-image a:hover .shl-5 {
  background-color: #4a78e0;
}

/*TWELVE SECTION*/
/*FOOTER*/
.footer {
  background-color: #313131;
  padding: 150px 0 50px;
  background-image: url(https://i.imgur.com/It5mq18.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer .widgets {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 80px;
}
.footer .widgets .widget h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 30px;
}
.footer .widgets .widget h3 .red-line {
  width: 30px;
  height: 2px;
  background-color: #e33c34;
}
.footer .widgets .widget li {
  padding: 10px 0px;
}
.footer .widgets .widget a {
  color: #7e7e7e;
}
.footer .widgets .widget a:hover {
  color: #fff;
}
.footer .widgets .widget .button-style-2 {
  color: #fff;
}
.footer .widgets .widget .button-style-2:hover {
  background-color: #ab2721;
}
.footer .widgets .widget-1 {
  width: 400px;
}
.footer .widgets .widget-4 {
  width: 275px;
}
.footer .widgets .widget-4 .hte {
  display: flex;
  align-items: center;
}
.footer .widgets .widget-4 .hte i {
  color: #f3b42c;
  padding: 15px 15px 15px 0;
}
.footer .widgets .widget-4 .hte a:hover {
  color: #f3b42c;
}
.footer .footer-bottom {
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  border-radius: 10px;
  justify-content: space-between;
}
.footer .footer-bottom .social-icons {
  display: flex;
  align-items: center;
}
.footer .footer-bottom .social-icons li {
  padding: 10px;
}
.footer .footer-bottom .social-icons i {
  color: #fff;
  background-color: #313131;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/*FOOTER*/
/*TITLE BAR*/
.title-bar {
  height: 350px;
  width: 100%;
  background-image: url(https://i.imgur.com/BB5AsOB.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 center;
  position: relative;
  z-index: 1;
}
.title-bar:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0));
  z-index: 1;
}
.title-bar .container {
  height: 100%;
}
.title-bar .container .section-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  height: 100%;
}
.title-bar .container .section-wrap h1, .title-bar .container .section-wrap p, .title-bar .container .section-wrap a {
  color: #fff;
  font-family: "Merriweather", serif;
}
.title-bar .container .section-wrap h1 {
  font-size: 60px;
  font-weight: 600;
}

/*TITLE BAR*/
/*================== ABOUT US PAGE ===================*/
.section-about-first {
  padding: 100px 0 200px;
  background-image: url(https://i.imgur.com/9jXj1FW.png);
  background-repeat: no-repeat;
  background-position: bottom left;
}
.section-about-first .section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-about-first .section-wrap .left-side {
  width: 47.5%;
  padding: 0 90px;
}
.section-about-first .section-wrap .left-side .percentage-bar {
  width: 100%;
  margin-bottom: 40px;
}
.section-about-first .section-wrap .left-side .percentage-bar label h4 {
  font-size: 22px;
}
.section-about-first .section-wrap .left-side .percentage-bar progress {
  width: 100%;
  border: 0;
  margin: 10px 0 10px;
  display: flex;
  align-items: center;
  position: relative;
}
.section-about-first .section-wrap .left-side .percentage-bar progress::-webkit-progress-bar {
  border: 0;
  background-color: #f2f2f2;
  height: 20px;
  border-radius: 10px;
}
.section-about-first .section-wrap .left-side .percentage-bar progress::-webkit-progress-value {
  content: "70%";
  background-color: #e33c34;
  border: #e33c34 10px solid;
  border-radius: 10px;
}
.section-about-first .section-wrap .left-side .percentage-bar .progress-bar-1:after {
  content: attr(value) "%";
  position: absolute;
  bottom: 0;
  margin-bottom: 30px;
  font-family: "DM Sans", sans-serif;
  left: 71%;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 700;
  color: #767676;
}
.section-about-first .section-wrap .left-side .percentage-bar .progress-bar-2:after {
  content: attr(value) "%";
  position: absolute;
  bottom: 0;
  margin-bottom: 30px;
  font-family: "DM Sans", sans-serif;
  left: 43%;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 700;
  color: #767676;
}
.section-about-first .section-wrap .left-side .text {
  margin-bottom: 40px;
}
.section-about-first .section-wrap .left-side .contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-about-first .section-wrap .left-side .contact-info h4 {
  font-size: 23px;
}
.section-about-first .section-wrap .left-side .contact-info .contact-profile {
  display: flex;
  align-items: center;
}
.section-about-first .section-wrap .left-side .contact-info .contact-profile .contact-image {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px dashed #d6d5d5;
  margin-right: 20px;
}
.section-about-first .section-wrap .left-side .contact-info .contact-profile .contact-image img {
  width: 85%;
  height: 85%;
  border-radius: 50%;
  object-fit: cover;
}
.section-about-first .section-wrap .left-side .contact-info .contact-profile .contact-name h4 {
  color: #f3b42c;
  font-style: italic;
}
.section-about-first .section-wrap .left-side .contact-info .contact-profile .contact-name p {
  text-transform: uppercase;
}
.section-about-first .section-wrap .right-side {
  position: relative;
  width: 47.5%;
  z-index: 1;
}
.section-about-first .section-wrap .right-side .yellow-background {
  background-color: #f3b42c;
  width: 40%;
  height: 80%;
  border-radius: 15px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-about-first .section-wrap .right-side .kids-image {
  width: 90%;
  height: 100%;
  margin-left: 5%;
  border-radius: 15px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  display: inline-block;
}
.section-about-first .section-wrap .right-side .kids-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 1s ease;
}
.section-about-first .section-wrap .right-side .kids-image img:hover {
  transform: scale(1.2);
}
.section-about-first .section-wrap .right-side:hover .yellow-background {
  background-color: #e33c34;
}

/*SECTION ABOUT 2*/
.section-about-second .container {
  position: relative;
}
.section-about-second .container .section-wrap {
  position: absolute;
  z-index: 10;
  width: 100%;
  bottom: -75px;
}
.section-about-second .container .section-wrap .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #e33c34;
  border-radius: 15px;
  padding: 60px 0;
}
.section-about-second .container .section-wrap .stats-row .stat-card {
  display: flex;
  align-items: center;
}
.section-about-second .container .section-wrap .stats-row .stat-card .stat-icon {
  width: 70px;
  height: 70px;
  margin-right: 10px;
}
.section-about-second .container .section-wrap .stats-row .stat-card .stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.section-about-second .container .section-wrap .stats-row .stat-card .si-1 {
  background-color: #f3b42c;
  mask: url(https://i.imgur.com/3nABm1d.png) no-repeat;
  mask-size: 100%;
}
.section-about-second .container .section-wrap .stats-row .stat-card .si-1 img {
  background-color: #f3b42c;
  mask: url(https://i.imgur.com/3nABm1d.png) no-repeat;
  mask-size: 0;
}
.section-about-second .container .section-wrap .stats-row .stat-card .si-2 {
  background-color: #f3b42c;
  mask: url(https://i.imgur.com/CQ10UyK.png) no-repeat;
  mask-size: 100%;
}
.section-about-second .container .section-wrap .stats-row .stat-card .si-2 img {
  background-color: #f3b42c;
  mask: url(https://i.imgur.com/CQ10UyK.png) no-repeat;
  mask-size: 0;
}
.section-about-second .container .section-wrap .stats-row .stat-card .si-3 {
  background-color: #f3b42c;
  mask: url(https://i.imgur.com/rHE1IrR.png) no-repeat;
  mask-size: 100%;
}
.section-about-second .container .section-wrap .stats-row .stat-card .si-3 img {
  background-color: #f3b42c;
  mask: url(https://i.imgur.com/rHE1IrR.png) no-repeat;
  mask-size: 0;
}
.section-about-second .container .section-wrap .stats-row .stat-card .si-4 {
  background-color: #f3b42c;
  mask: url(https://i.imgur.com/OIA6IHx.png) no-repeat;
  mask-size: 100%;
}
.section-about-second .container .section-wrap .stats-row .stat-card .si-4 img {
  background-color: #f3b42c;
  mask: url(https://i.imgur.com/OIA6IHx.png) no-repeat;
  mask-size: 0;
}
.section-about-second .container .section-wrap .stats-row .stat-card h3 {
  font-size: 40px;
  line-height: 40px;
  text-align: left;
  margin-bottom: 10px;
  color: #fff;
}
.section-about-second .container .section-wrap .stats-row .stat-card p {
  font-size: 18px;
  text-align: left;
  color: #fff;
}

/*SECTION ABOUT 2*/
/*SECTION ABOUT 3*/
.section-about-third {
  padding: 150px 0;
}

/*SECTION ABOUT 3*/
/*SECTION ABOUT 4*/
.section-about-fourth {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.section-about-fourth .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
}
.section-about-fourth .bg-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
  opacity: 0.1;
  -webkit-mask-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.section-about-fourth .poverty-kids {
  width: 900px;
  height: 620px;
  border-radius: 15px;
  border-right: 10px solid #f3b42c;
  position: absolute;
  top: 0;
  left: 0;
}
.section-about-fourth .poverty-kids img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about-fourth .section-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.section-about-fourth .section-wrap .left-side {
  width: 50%;
}
.section-about-fourth .section-wrap .right-side {
  width: 50%;
}
.section-about-fourth .section-wrap .right-side .accordions .accordion {
  width: 80%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1333333333);
  margin: 20px 0;
}
.section-about-fourth .section-wrap .right-side .accordions .accordion .accordion-title {
  padding: 20px 40px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.section-about-fourth .section-wrap .right-side .accordions .accordion .accordion-title.active {
  color: #e33c34;
}
.section-about-fourth .section-wrap .right-side .accordions .accordion .accordion-title:hover {
  color: #e33c34;
}
.section-about-fourth .section-wrap .right-side .accordions .accordion .accordion-text {
  line-height: 40px;
  padding: 20px 40px;
}
.section-about-fourth .section-wrap .right-side .accordions .a-2 .accordion-text, .section-about-fourth .section-wrap .right-side .accordions .a-3 .accordion-text {
  display: none;
}

/*SECTION ABOUT 4*/
/*SECTION ABOUT 5*/
.section-about-fifth {
  padding: 100px 0;
}
.section-about-fifth .section-wrap .title-box {
  margin: 0 auto 40px;
  text-align: center;
  width: fit-content;
}
.section-about-fifth .section-wrap .title-box .yellow-line {
  margin: 0 auto 20px;
}
.section-about-fifth .section-wrap .volunteers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-picture {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-picture img {
  width: 95%;
  height: 95%;
  object-fit: cover;
  border-radius: 50%;
  object-position: center;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-picture .frame {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f2f2f2;
  mask: url(https://i.imgur.com/hYHtZ2k.png) no-repeat;
  mask-size: 100%;
  transition: 0.3s ease-in-out;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-picture .frame img {
  background-color: #f2f2f2;
  mask: url(https://i.imgur.com/hYHtZ2k.png) no-repeat;
  mask-size: 0;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-picture:hover .frame {
  background: linear-gradient(90deg, #e43d35 0%, #eb7930 50%, #f3b32b 100%);
  mask: url(https://i.imgur.com/hYHtZ2k.png) no-repeat;
  mask-size: 100%;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-picture:hover .frame img {
  background: linear-gradient(90deg, #e43d35 0%, #eb7930 50%, #f3b32b 100%);
  mask: url(https://i.imgur.com/hYHtZ2k.png) no-repeat;
  mask-size: 0;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card h4, .section-about-fifth .section-wrap .volunteers-row .volunteer-card p {
  text-align: center;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card p {
  margin-bottom: 30px;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-socials .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-socials .social-icons li {
  width: 50px;
  height: 50px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.section-about-fifth .section-wrap .volunteers-row .volunteer-card .volunteer-socials .social-icons li:hover i {
  color: #e33c34;
}

/*SECTION ABOUT 5*/
/*SECTION ABOUT 6*/
.section-about-sixth {
  padding: 0px 0 100px;
  background: transparent;
}
.section-about-sixth .section-wrap {
  border-top: 1px solid rgb(182, 181, 181);
  padding-top: 100px;
}
.section-about-sixth .section-wrap .sponsor {
  background-color: rgb(153, 153, 153) !important;
  mask: url(https://i.imgur.com/YoxxyRZ.png) no-repeat;
  mask-size: 100%;
  width: 80px;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}
.section-about-sixth .section-wrap .sponsor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: rgb(153, 153, 153) !important;
  mask: url(https://i.imgur.com/YoxxyRZ.png) no-repeat;
  mask-size: 0;
}
.section-about-sixth .section-wrap .sponsor:hover {
  background-color: rgb(59, 58, 58);
  mask: url(https://i.imgur.com/YoxxyRZ.png) no-repeat;
  mask-size: 100%;
}
.section-about-sixth .section-wrap .sponsor:hover img {
  background-color: gray;
  mask: url(https://i.imgur.com/YoxxyRZ.png) no-repeat;
  mask-size: 0;
}

/*SECTION ABOUT 6*/
/*================== ABOUT US PAGE ===================*/
/*================== BECOME A VOLUNTEER PAGE ===================*/
.main-section-become-volunteer {
  padding: 100px 0;
}
.main-section-become-volunteer .title-box {
  margin: 0 auto 40px;
  text-align: center;
  width: fit-content;
}
.main-section-become-volunteer .title-box .yellow-line {
  margin: 0 auto 20px;
}
.main-section-become-volunteer .main-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}
.main-section-become-volunteer .main-section .left-side {
  width: 47.5%;
}
.main-section-become-volunteer .main-section .left-side .images-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.main-section-become-volunteer .main-section .left-side .images-row .image {
  width: 48%;
  height: 250px;
  border-radius: 15px;
}
.main-section-become-volunteer .main-section .left-side .images-row .image img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-section-become-volunteer .main-section .left-side p {
  font-size: 18px;
  margin-bottom: 40px;
}
.main-section-become-volunteer .main-section .left-side .requirements {
  margin-bottom: 30px;
}
.main-section-become-volunteer .main-section .left-side .requirements li {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.main-section-become-volunteer .main-section .left-side .requirements li i {
  margin-right: 10px;
  font-size: 20px;
  color: #f3b42c;
  transition: 0.3s ease-in-out;
}
.main-section-become-volunteer .main-section .left-side .requirements li p {
  margin: 0;
  font-weight: 600;
  color: #000;
  transition: 0.3s ease-in-out;
}
.main-section-become-volunteer .main-section .left-side .requirements li:hover i {
  color: #e33c34;
}
.main-section-become-volunteer .main-section .left-side .requirements li:hover p {
  color: #e33c34;
}
.main-section-become-volunteer .main-section .left-side .call-part {
  padding: 40px 0 0;
  border-top: 1px solid #c4c2c2;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context {
  display: flex;
  align-items: center;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context .call-icon {
  width: 60px;
  height: 60px;
  background-color: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context .call-icon i {
  color: #e33c34;
  font-size: 22px;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context .call-icon:hover {
  background-color: #e33c34;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context .call-icon:hover i {
  color: #fff;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context .call-infos p {
  margin: 0;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context .call-infos h4, .main-section-become-volunteer .main-section .left-side .call-part .call-context .call-infos p {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context .call-infos p:hover {
  color: #e33c34;
}
.main-section-become-volunteer .main-section .left-side .call-part .call-context .call-infos h4:hover {
  color: #e33c34;
}
.main-section-become-volunteer .main-section .right-side {
  width: 47.5%;
}
.main-section-become-volunteer .main-section .right-side form {
  width: 100%;
}
.main-section-become-volunteer .main-section .right-side form .form-line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-section-become-volunteer .main-section .right-side form .form-line input, .main-section-become-volunteer .main-section .right-side form .form-line textarea {
  width: 100%;
  border-radius: 10px;
  background-color: #f2f2f2;
  border: none;
  color: #313131;
  padding: 25px 0 25px 30px;
  margin: 0 0 10px 0;
  outline: none;
}
.main-section-become-volunteer .main-section .right-side form .form-line textarea {
  height: 180px;
}
.main-section-become-volunteer .main-section .right-side form .form-line .semi-input {
  width: 49%;
}
.main-section-become-volunteer .main-section .right-side form .form-line input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.main-section-become-volunteer .main-section .right-side form .button-style-2 {
  border: none;
  padding: 30px 60px;
}

/*================== BECOME A VOLUNTEER PAGE ===================*/
/*================== DONATIONS PAGE ===================*/
.donations-main-section .donate-cards {
  flex-wrap: wrap;
}
.donations-main-section .donate-cards .donate-card {
  margin-bottom: 40px;
}
.donations-main-section .donate-cards .donate-card .donate-card-content a:hover h3 {
  color: #e33c34;
}

/*================== DONATIONS PAGE ===================*/
/*================== DONATIONS DETAIL PAGE ===================*/
.main-donation-detail-section {
  padding: 100px 0;
}
.main-donation-detail-section .section-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.main-donation-detail-section .section-wrap .left-side {
  width: 60%;
  margin-right: 40px;
}
.main-donation-detail-section .section-wrap .left-side h2 {
  font-size: 32px;
}
.main-donation-detail-section .section-wrap .left-side p, .main-donation-detail-section .section-wrap .left-side h2 {
  margin: 20px 0;
}
.main-donation-detail-section .section-wrap .left-side .donate-card {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0823529412);
  border-radius: 15px;
  padding-bottom: 40px;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-image {
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
  border-radius: 15px 15px 0 0;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content {
  width: 90%;
  margin: 0 auto;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content h3 {
  text-align: center;
  font-size: 24px;
  margin: 15px auto;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content p {
  text-align: center;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content .percentage-bar {
  width: 100%;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content .percentage-bar progress {
  width: 100%;
  height: 4px;
  background-color: transparent;
  margin: 10px 0 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content .percentage-bar progress::-webkit-progress-bar {
  border: 0;
  background-color: #f2f2f2;
  height: 7px;
  border-radius: 10px;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content .percentage-bar progress::-webkit-progress-value {
  content: "70%";
  background-color: #36a1b0;
  border: #36a1b0 0px solid;
  border-radius: 10px;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content .percentage-bar progress:after {
  content: attr(value) "%";
  position: absolute;
  top: 70%;
  font-family: "Merriweather", serif;
  right: 0%;
  font-size: 32px;
  margin-top: 20px;
  font-weight: 700;
  color: #e33c34;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content h4 {
  font-size: 18px;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content h4 span {
  font-size: 18px;
  color: #767676;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.main-donation-detail-section .section-wrap .left-side .donate-card .donate-card-content .note {
  display: flex;
  justify-content: space-between;
}
.main-donation-detail-section .section-wrap .left-side .requirements {
  margin-bottom: 20px;
}
.main-donation-detail-section .section-wrap .left-side .requirements li {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.main-donation-detail-section .section-wrap .left-side .requirements li i {
  margin-right: 20px;
  font-size: 20px;
  color: #f3b42c;
  transition: 0.3s ease-in-out;
}
.main-donation-detail-section .section-wrap .left-side .requirements li p {
  margin: 0;
  font-weight: 600;
  color: #000;
  transition: 0.3s ease-in-out;
}
.main-donation-detail-section .section-wrap .left-side .requirements li:hover i {
  color: #e33c34;
}
.main-donation-detail-section .section-wrap .left-side .requirements li:hover p {
  color: #e33c34;
}
.main-donation-detail-section .section-wrap .left-side .images-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}
.main-donation-detail-section .section-wrap .left-side .images-row .image {
  width: 48%;
  height: 350px;
  border-radius: 15px;
}
.main-donation-detail-section .section-wrap .left-side .images-row .image img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-donation-detail-section .section-wrap .left-side .call-to-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.main-donation-detail-section .section-wrap .left-side .call-to-action .button-style-2 {
  margin-right: 20px;
  padding: 25px 50px;
}
.main-donation-detail-section .section-wrap .left-side .download-book {
  width: 100%;
  padding: 60px 60px;
  background-color: #f2f2f2;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-donation-detail-section .section-wrap .left-side .download-book .download-title {
  display: flex;
  align-items: center;
}
.main-donation-detail-section .section-wrap .left-side .download-book .download-title i {
  color: #e33c34;
  font-size: 60px;
  margin-right: 10px;
}
.main-donation-detail-section .section-wrap .right-side {
  width: 30%;
}
.main-donation-detail-section .section-wrap .right-side .donator-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin-right: 20px;
}
.main-donation-detail-section .section-wrap .right-side .donator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.main-donation-detail-section .section-wrap .right-side .this-donation-creator {
  display: flex;
  align-items: flex-start;
  background-color: #f2f2f2;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
}
.main-donation-detail-section .section-wrap .right-side .this-donation-creator .creation-info a {
  display: block;
  margin-bottom: 10px;
}
.main-donation-detail-section .section-wrap .right-side .this-donation-creator .creation-info a:hover {
  color: #e33c34;
}
.main-donation-detail-section .section-wrap .right-side .this-donation-creator .creation-info a:hover p {
  color: #e33c34;
}
.main-donation-detail-section .section-wrap .right-side .this-donation-creator .creation-info p {
  margin-bottom: 10px;
}
.main-donation-detail-section .section-wrap .right-side .this-donation-creator .creation-info p a {
  display: inline;
}
.main-donation-detail-section .section-wrap .right-side .this-donation-creator .creation-info .tag i {
  color: #e33c34;
  margin-right: 10px;
}
.main-donation-detail-section .section-wrap .right-side .recents-donations {
  background-color: #f2f2f2;
  border-radius: 15px;
  padding: 40px;
}
.main-donation-detail-section .section-wrap .right-side .recents-donations h4 {
  margin-bottom: 20px;
}
.main-donation-detail-section .section-wrap .right-side .recents-donations .recent-donation {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.main-donation-detail-section .section-wrap .right-side .recents-donations .recent-donation .donator-infos .donation-cost {
  color: #e33c34;
  font-weight: 600;
}
.main-donation-detail-section .section-wrap .right-side .recents-donations .recent-donation .donator-infos .donator-name p {
  display: inline;
}
.main-donation-detail-section .section-wrap .right-side .recents-donations .recent-donation .donator-infos .donator-name a {
  font-weight: 600;
}
.main-donation-detail-section .section-wrap .right-side .recents-donations .recent-donation .donator-infos .donator-name a:hover {
  color: #e33c34;
}

/*================== DONATIONS DETAIL PAGE ===================*/
/*================== CONTACT PAGE ===================*/
.contact-first-section {
  padding: 100px 0;
}
.contact-first-section .map-container {
  width: 100%;
  height: 500px;
  border-radius: 15px 15px 0 0;
}
.contact-first-section .map-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: 15px 15px 0 0;
}
.contact-first-section .yellow-band {
  position: relative;
  z-index: 2;
  bottom: 3%;
  background-color: #f3b42c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 30px;
  border-radius: 0 0 15px 15px;
}
.contact-first-section .yellow-band .contact-info, .contact-first-section .yellow-band .location-info {
  display: flex;
  align-items: center;
}
.contact-first-section .yellow-band .contact-info i, .contact-first-section .yellow-band .location-info i {
  background-color: #fff;
  color: #000;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  margin-right: 20px;
}
.contact-first-section .yellow-band .contact-info i:hover, .contact-first-section .yellow-band .location-info i:hover {
  background-color: #e33c34;
  color: #fff;
}
.contact-first-section .yellow-band .contact-info p, .contact-first-section .yellow-band .location-info p {
  color: #fff;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.contact-first-section .yellow-band .contact-info p:hover, .contact-first-section .yellow-band .location-info p:hover {
  color: #e33c34;
}

.contact-second-section .title-box {
  margin: 0 auto 40px;
  text-align: center;
  width: fit-content;
}
.contact-second-section .title-box .yellow-line {
  margin: 0 auto 20px;
}
.contact-second-section .title-box .invert-title {
  margin: 0 auto 30px;
  text-align: center;
}
.contact-second-section form {
  width: 70%;
  margin: 0 auto;
}
.contact-second-section form .form-line {
  display: flex;
  justify-content: space-between;
}
.contact-second-section form .form-line input {
  padding: 35px 0 35px 30px;
}
.contact-second-section form .form-line textarea {
  height: 180px;
}
.contact-second-section form .form-line input, .contact-second-section form .form-line textarea {
  background-color: #f2f2f2;
}
.contact-second-section form .form-line .semi-input {
  width: 49%;
}
.contact-second-section form .button-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-second-section form .button-container .button-style-2 {
  padding: 25px 60px;
  margin: 5px auto;
}

/*================== CONTACT PAGE ===================*/
/*================== BLOGS PAGE ===================*/
.blogs-main-section {
  padding: 100px 0;
}
.blogs-main-section .blogposts-row {
  flex-wrap: wrap;
}
.blogs-main-section .blogposts-row .blog-card {
  margin-bottom: 40px;
}

/*================== BLOGS PAGE ===================*/
/*================== BLOG-DETAIL PAGE ===================*/
.blog-detail-main-section {
  padding: 100px 0;
}
.blog-detail-main-section .section-wrap {
  display: flex;
}
.blog-detail-main-section .section-wrap .left-side {
  width: 70%;
  padding: 0 20px 0 0;
}
.blog-detail-main-section .section-wrap .left-side h2 {
  font-size: 32px;
}
.blog-detail-main-section .section-wrap .left-side p {
  margin: 20px 0;
}
.blog-detail-main-section .section-wrap .left-side .article-image {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}
.blog-detail-main-section .section-wrap .left-side .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 15px;
}
.blog-detail-main-section .section-wrap .left-side .article-image .blog-date {
  position: absolute;
  right: 0;
  bottom: 0;
}
.blog-detail-main-section .section-wrap .left-side .article-info {
  display: flex;
  align-items: center;
}
.blog-detail-main-section .section-wrap .left-side .article-info a {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.blog-detail-main-section .section-wrap .left-side .article-info a p {
  margin: 0;
  transition: 0.3s ease-in-out;
}
.blog-detail-main-section .section-wrap .left-side .article-info a i {
  color: #f3b42c;
  margin-right: 10px;
  transition: 0.3s ease-in-out;
}
.blog-detail-main-section .section-wrap .left-side .article-info a:hover i, .blog-detail-main-section .section-wrap .left-side .article-info a:hover p {
  color: #e33c34;
}
.blog-detail-main-section .section-wrap .left-side .tags-section {
  padding: 20px 0;
  margin-top: 40px;
  border-top: 2px solid #ebebeb;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .first-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .first-line .article-tags {
  display: flex;
  align-items: center;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .first-line .article-tags h5 {
  margin-right: 10px;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .first-line .article-tags .button-style {
  padding: 12px 15px;
  font-size: 14px;
  margin: 0 5px;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .second-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .second-line a {
  width: 48%;
  height: 200px;
  background-color: #f2f2f2;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .second-line a h4 {
  width: 70%;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .second-line a:hover {
  background-color: #e33c34;
}
.blog-detail-main-section .section-wrap .left-side .tags-section .second-line a:hover h4 {
  color: #fff;
}
.blog-detail-main-section .section-wrap .right-side {
  width: 30%;
  padding: 0 0 0 20px;
}
.blog-detail-main-section .section-wrap .right-side .search-bar {
  position: relative;
  margin-bottom: 40px;
}
.blog-detail-main-section .section-wrap .right-side .search-bar input {
  background-color: #e33c34;
  border-radius: 10px;
  border: none;
  padding: 30px 80px 30px 40px;
  width: 100%;
  color: #fff;
  font-size: 20px;
}
.blog-detail-main-section .section-wrap .right-side .search-bar input::placeholder {
  color: #fff;
  font-weight: 500;
}
.blog-detail-main-section .section-wrap .right-side .search-bar i {
  color: #fff;
  position: absolute;
  right: 40px;
  top: 50%;
  font-size: 24px;
  transform: translateY(-50%);
}
.blog-detail-main-section .section-wrap .right-side .rs-box {
  background-color: #f2f2f2;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.blog-detail-main-section .section-wrap .right-side .rs-box h4 {
  margin-left: 20px;
  margin-bottom: 20px;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin-bottom: 10px;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post .recent-post-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-right: 20px;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post .recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post .recent-post-infos {
  width: 60%;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post .recent-post-infos a {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post .recent-post-infos a p {
  margin: 0;
  transition: 0.3s ease-in-out;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post .recent-post-infos a i {
  color: #f3b42c;
  margin-right: 10px;
  transition: 0.3s ease-in-out;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post .recent-post-infos a:hover i, .blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post .recent-post-infos a:hover p {
  color: #e33c34;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post:hover {
  background-color: #fff;
}
.blog-detail-main-section .section-wrap .right-side .recents-posts .recent-post:hover h5 {
  color: #e33c34;
}
.blog-detail-main-section .section-wrap .right-side .categories .categories-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin-bottom: 5px;
  border-radius: 10px;
}
.blog-detail-main-section .section-wrap .right-side .categories .categories-links a .right-arrow {
  width: 20px;
  height: auto;
  background-color: #e33c34;
  mask: url(https://i.imgur.com/TLX1NKA.png) no-repeat;
  mask-size: 100%;
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.blog-detail-main-section .section-wrap .right-side .categories .categories-links a .right-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #e33c34;
  mask: url(https://i.imgur.com/TLX1NKA.png) no-repeat;
  mask-size: 0;
}
.blog-detail-main-section .section-wrap .right-side .categories .categories-links a:hover {
  background-color: #fff;
}
.blog-detail-main-section .section-wrap .right-side .categories .categories-links a:hover p {
  color: #000;
}
.blog-detail-main-section .section-wrap .right-side .categories .categories-links a:hover .right-arrow {
  opacity: 1;
}
.blog-detail-main-section .section-wrap .right-side .right-tags h4 {
  margin-bottom: 40px;
}
.blog-detail-main-section .section-wrap .right-side .right-tags .tags-links {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  padding: 0 20px;
}
.blog-detail-main-section .section-wrap .right-side .right-tags .tags-links .tag-link {
  margin-bottom: 40px;
  margin-right: 10px;
}
.blog-detail-main-section .section-wrap .right-side .right-tags .tags-links .tag-link .bs-tag {
  background-color: #fff;
  color: #000;
  transition: 0.3s ease-in-out;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.blog-detail-main-section .section-wrap .right-side .right-tags .tags-links .tag-link .bs-tag:hover {
  background-color: #e33c34;
  color: #fff;
}

/*================== BLOG-DETAIL PAGE ===================*/
/*================== EVENTS PAGE ===================*/
.events-main-section {
  padding: 100px 0;
}
.events-main-section .events-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.events-main-section .events-row .event-card {
  width: 320px;
  height: 440px;
  margin: 0 40px 40px 0;
  border-radius: 15px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%), url(https://i.imgur.com/iJVXvKt.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: end;
  padding: 20px 30px;
  transition: 0.7s ease-in-out;
}
.events-main-section .events-row .event-card a:hover h3 {
  color: #e33c34;
}
.events-main-section .events-row .event-card .blog-date {
  position: absolute;
  top: 0;
  right: 0;
}
.events-main-section .events-row .event-card .event-infos {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.events-main-section .events-row .event-card .event-infos a {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.events-main-section .events-row .event-card .event-infos a i {
  color: #f3b42c;
  margin-right: 10px;
  transition: 0.3s ease-in-out;
}
.events-main-section .events-row .event-card .event-infos a p {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.events-main-section .events-row .event-card .event-infos a:hover i, .events-main-section .events-row .event-card .event-infos a:hover p {
  color: #e33c34;
}
.events-main-section .events-row .event-card .event-title h3 {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.events-main-section .events-row .event-card:hover {
  background-position-x: 5%;
}

/*================== EVENTS PAGE ===================*/
/*================== EVENT DETAIL PAGE ===================*/
.event-detail-main-section {
  padding: 100px 0;
}
.event-detail-main-section .section-wrap {
  display: flex;
}
.event-detail-main-section .section-wrap .left-side {
  width: 70%;
  padding: 0 40px 0 0;
}
.event-detail-main-section .section-wrap .left-side .first-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.event-detail-main-section .section-wrap .left-side .first-line .blog-date {
  border-radius: 10px;
}
.event-detail-main-section .section-wrap .left-side .first-line h2 {
  font-size: 36px;
}
.event-detail-main-section .section-wrap .left-side .images-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}
.event-detail-main-section .section-wrap .left-side .images-row .image {
  width: 48%;
  height: 350px;
  border-radius: 15px;
}
.event-detail-main-section .section-wrap .left-side .images-row .image img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.event-detail-main-section .section-wrap .left-side .context p {
  margin-bottom: 40px;
}
.event-detail-main-section .section-wrap .left-side .context .bold {
  font-weight: 600;
}
.event-detail-main-section .section-wrap .left-side .context .red {
  color: #e33c34;
}
.event-detail-main-section .section-wrap .right-side {
  width: 25%;
}
.event-detail-main-section .section-wrap .right-side .event-infos-box {
  background-color: #f2f2f2;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
}
.event-detail-main-section .section-wrap .right-side .event-infos-box .event-info {
  margin-bottom: 20px;
}
.event-detail-main-section .section-wrap .right-side .event-infos-box .event-info p {
  font-weight: 500;
  color: #000;
}
.event-detail-main-section .section-wrap .right-side .event-infos-box .event-info p .red {
  color: #e33c34;
}
.event-detail-main-section .section-wrap .right-side .event-infos-box .socials .social-icons {
  justify-content: flex-start;
}
.event-detail-main-section .section-wrap .right-side .event-infos-box .socials .social-icons li {
  background-color: #fff;
  transition: 0.2s ease-in-out;
}
.event-detail-main-section .section-wrap .right-side .event-infos-box .socials .social-icons li:hover {
  background-color: #e33c34;
}
.event-detail-main-section .section-wrap .right-side .event-infos-box .socials .social-icons li:hover i {
  color: #fff;
}
.event-detail-main-section .section-wrap .right-side .event-location {
  width: 100%;
  height: 400px;
  border-radius: 15px 15px 0 0;
}
.event-detail-main-section .section-wrap .right-side .event-location iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: 15px 15px 0 0;
}

/*================== EVENT DETAIL PAGE ===================*/
/*================================== RESPONSIVE ==================================*/
/*================================== RESPONSIVE ==================================*/
/*=============== 1440 PX ================*/
@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .application {
    width: 1440px;
    max-width: 100%;
  }
  .container {
    width: 1360px;
  }
  /*TYPOGRAPHY*/
  h1 {
    font-size: 60px;
    line-height: 60px;
  }
  h2 {
    font-size: 36px;
    line-height: 45px;
  }
  h3 {
    font-size: 26px;
    line-height: 40px;
  }
  h4 {
    font-size: 24px;
    line-height: 30px;
  }
  h5 {
    font-size: 16px;
    line-height: 30px;
  }
  h6 {
    font-size: 15px;
  }
  /*TYPOGRAPHY*/
  /*HEADER*/
  .sticky {
    max-width: 1440px;
  }
  .header-main .header-wrap {
    gap: 4%;
  }
  .header-main .logo {
    padding: 15px 20px;
  }
  .header-main .nav-list li {
    padding: 15px 30px;
  }
  .header-main .nav-list li .a {
    font-size: 16px;
  }
  .header-main .nav-list li .active::after {
    height: 3px;
  }
  .header-main .nav-list li a::after {
    height: 3px;
  }
  .header-main .nav-list li:hover a::after {
    width: 60%;
  }
  .header-main .last-header-part .join-link i {
    font-size: 14px;
    padding: 13px;
  }
  .header-main .last-header-part .join-link .join-us-text p {
    line-height: 26px;
  }
  .header-main .last-header-part .join-link .join-us-text span {
    font-size: 14px;
  }
  .header-main .last-header-part .search-icon i {
    font-size: 26px;
  }
  .header-main .button-style-header {
    padding: 12px 20px;
    font-size: 14px;
  }
  /*HEADER*/
  /*HERO SECTION*/
  .hero-sliders .owl-nav i {
    font-size: 26px;
    width: 60px;
    height: 60px;
  }
  .hero-sliders .owl-nav .owl-prev {
    position: absolute;
    left: 2%;
  }
  .hero-sliders .owl-nav .owl-next {
    position: absolute;
    right: 2%;
  }
  .slide {
    height: 500px;
  }
  .slide .container .slide-content {
    left: 10%;
  }
  .slide .container .slide-content p {
    color: #fff;
    margin-bottom: 50px;
  }
  .slide .container .slide-content .button-style, .slide .container .slide-content .button-style-2 {
    padding: 15px 20px;
    font-size: 13px;
    margin-right: 10px;
  }
  /*HERO SECTION*/
  /*SECTION 2*/
  .services-cards-row .service-card {
    padding: 15px;
  }
  .services-cards-row .service-card .service-card-content .service-card-image {
    width: 160px;
    height: 160px;
  }
  .services-cards-row .service-card .more-detail-arrow {
    width: 70px;
    height: 70px;
    bottom: -36px;
  }
  /*SECTION 2*/
  /*SECTION 3*/
  .title-box .yellow-line {
    width: 50px;
    height: 3px;
    background-color: #f3b42c;
    margin-bottom: 10px;
  }
  .title-box .invert-title {
    display: flex;
    flex-direction: column-reverse;
    width: 540px;
    margin-bottom: 30px;
  }
  .title-box .invert-title p {
    margin-bottom: 10px;
  }
  .section-third {
    padding: 0 0 100px;
    position: relative;
  }
  .section-third .dark-fade-shape {
    left: 135px;
  }
  .section-third .section-wrap .left-side { /*LEFTS SIDE =======*/ }
  .section-third .section-wrap .left-side .main-image {
    width: 600px;
    height: 600px;
  }
  .section-third .section-wrap .left-side .small-image {
    width: 260px;
    height: 260px;
    left: -60px;
  }
  .section-third .section-wrap .left-side .play-icon {
    position: absolute;
    top: 150px;
    left: -34px;
  }
  .section-third .section-wrap .left-side .play-icon i {
    background-color: #e33c34;
    color: #fff;
    width: 130px;
    font-size: 28px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
  }
  .section-third .section-wrap .left-side .play-icon .red-triangle {
    width: 55px;
    height: 55px;
    background-color: #e33c34;
    position: absolute;
    z-index: 1;
    bottom: -19px;
    left: 10px;
    transform: rotate(45deg);
    border-radius: 10px;
  }
  .section-third .section-wrap .left-side .yellow-circle {
    height: 485px;
    width: 485px;
    right: 160px;
  }
  .section-third .section-wrap .right-side { /*RIGHT SIDE =======*/
    width: 50%;
    padding-left: 130px;
  }
  .section-third .section-wrap .right-side .phrase {
    margin-bottom: 20px;
  }
  .section-third .section-wrap .right-side .boxed-phrase {
    padding: 15px 35px;
    width: 100%;
    margin-bottom: 20px;
  }
  .section-third .section-wrap .right-side .mission-story {
    gap: 20px;
    margin-bottom: 45px;
  }
  .section-third .section-wrap .right-side .mission-story h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .section-third .section-wrap .right-side .button-style {
    padding: 15px 60px;
  }
  /*SECTION 3*/
  /*SECTION 6*/
  .section-sixth .section-wrap .right-side .events-slides .owl-dots {
    right: -9%;
  }
  /*SECTION 6*/
  /*SECTION 10*/
  /*SECTION 10*/
  /*SECTION 11*/
  .blogposts-row .blog-card .blog-info .blog-title h3 {
    font-size: 24px;
  }
  /*SECTION 11*/
  /*ABOUT*/
  .section-about-fourth .poverty-kids {
    width: 675px;
    height: 600px;
  }
  /*ABOUT*/
}
/*=============== 1440 PX ================*/
/*=============== 1360 PX ================*/
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
  .application {
    width: 1360px;
    max-width: 100%;
  }
  .container {
    width: 1200px;
  }
  /*TYPOGRAPHY*/
  h1 {
    font-size: 60px;
    line-height: 60px;
  }
  h2 {
    font-size: 36px;
    line-height: 45px;
  }
  h3 {
    font-size: 26px;
    line-height: 40px;
  }
  h4 {
    font-size: 24px;
    line-height: 30px;
  }
  h5 {
    font-size: 16px;
    line-height: 30px;
  }
  h6 {
    font-size: 15px;
  }
  /*TYPOGRAPHY*/
  /*HEADER*/
  .sticky {
    max-width: 1360px;
  }
  .header-main .header-wrap {
    gap: 4%;
  }
  .header-main .logo {
    padding: 15px 20px;
  }
  .header-main .nav-list li {
    padding: 15px 30px;
  }
  .header-main .nav-list li .a {
    font-size: 16px;
  }
  .header-main .nav-list li .active::after {
    height: 3px;
  }
  .header-main .nav-list li a::after {
    height: 3px;
  }
  .header-main .nav-list li:hover a::after {
    width: 60%;
  }
  .header-main .last-header-part .join-link i {
    font-size: 14px;
    padding: 13px;
  }
  .header-main .last-header-part .join-link .join-us-text p {
    line-height: 26px;
  }
  .header-main .last-header-part .join-link .join-us-text span {
    font-size: 14px;
  }
  .header-main .last-header-part .search-icon i {
    font-size: 26px;
  }
  .header-main .button-style-header {
    padding: 12px 20px;
    font-size: 14px;
  }
  /*HEADER*/
  /*HERO SECTION*/
  .hero-sliders .owl-nav i {
    font-size: 26px;
    width: 60px;
    height: 60px;
  }
  .hero-sliders .owl-nav .owl-prev {
    position: absolute;
    left: 2%;
  }
  .hero-sliders .owl-nav .owl-next {
    position: absolute;
    right: 2%;
  }
  .slide {
    height: 500px;
  }
  .slide .container .slide-content {
    left: 10%;
  }
  .slide .container .slide-content p {
    color: #fff;
    margin-bottom: 50px;
  }
  .slide .container .slide-content .button-style, .slide .container .slide-content .button-style-2 {
    padding: 15px 20px;
    font-size: 13px;
    margin-right: 10px;
  }
  /*HERO SECTION*/
  /*SECTION 2*/
  .services-cards-row .service-card {
    padding: 15px;
  }
  .services-cards-row .service-card .service-card-content .service-card-image {
    width: 160px;
    height: 160px;
  }
  .services-cards-row .service-card .more-detail-arrow {
    width: 70px;
    height: 70px;
    bottom: -36px;
  }
  /*SECTION 2*/
  /*SECTION 3*/
  .title-box .yellow-line {
    width: 50px;
    height: 3px;
    background-color: #f3b42c;
    margin-bottom: 10px;
  }
  .title-box .invert-title {
    display: flex;
    flex-direction: column-reverse;
    width: 540px;
    margin-bottom: 30px;
  }
  .title-box .invert-title p {
    margin-bottom: 10px;
  }
  .section-third {
    padding: 0 0 100px;
    position: relative;
  }
  .section-third .dark-fade-shape {
    left: 135px;
  }
  .section-third .section-wrap .left-side { /*LEFTS SIDE =======*/ }
  .section-third .section-wrap .left-side .main-image {
    width: 600px;
    height: 600px;
  }
  .section-third .section-wrap .left-side .small-image {
    width: 260px;
    height: 260px;
    left: -60px;
  }
  .section-third .section-wrap .left-side .play-icon {
    position: absolute;
    top: 150px;
    left: -34px;
  }
  .section-third .section-wrap .left-side .play-icon i {
    background-color: #e33c34;
    color: #fff;
    width: 130px;
    font-size: 28px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
  }
  .section-third .section-wrap .left-side .play-icon .red-triangle {
    width: 55px;
    height: 55px;
    background-color: #e33c34;
    position: absolute;
    z-index: 1;
    bottom: -19px;
    left: 10px;
    transform: rotate(45deg);
    border-radius: 10px;
  }
  .section-third .section-wrap .left-side .yellow-circle {
    height: 485px;
    width: 485px;
    right: 160px;
  }
  .section-third .section-wrap .right-side { /*RIGHT SIDE =======*/
    width: 50%;
    padding-left: 130px;
  }
  .section-third .section-wrap .right-side .phrase {
    margin-bottom: 20px;
  }
  .section-third .section-wrap .right-side .boxed-phrase {
    padding: 15px 35px;
    width: 100%;
    margin-bottom: 20px;
  }
  .section-third .section-wrap .right-side .mission-story {
    gap: 20px;
    margin-bottom: 45px;
  }
  .section-third .section-wrap .right-side .mission-story h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .section-third .section-wrap .right-side .button-style {
    padding: 15px 60px;
  }
  /*SECTION 3*/
  /*SECTION 6*/
  .section-sixth .section-wrap .right-side .events-slides .owl-dots {
    right: -9%;
  }
  /*SECTION 6*/
  /*SECTION 7*/
  .section-seventh .donate-card {
    width: 360px;
  }
  .section-seventh .donate-card .donate-card-image {
    height: 280px;
  }
  /*SECTION 7*/
  /*SECTION 9*/
  .section-nineth .section-wrap .right-side {
    width: 50%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-dots {
    left: -100%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-stage-outer {
    width: 600px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial {
    width: 590px;
    height: 265px;
    padding: 15px 80px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo {
    width: 115px;
    height: 115px;
    top: -70px;
    left: 15px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo img {
    width: 105px;
    height: 105px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .quote-container {
    width: 70px;
    height: 70px;
    top: 30px;
    right: 25px;
  }
  .section-nineth .section-wrap .left-side {
    width: 50%;
  }
  /*SECTION 9*/
  /*SECTION 10*/
  /*SECTION 10*/
  /*SECTION 11*/
  .blogposts-row .blog-card {
    position: relative;
    width: 380px;
  }
  .blogposts-row .blog-card .blog-info .blog-infos p {
    font-size: 16px;
  }
  .blogposts-row .blog-card .blog-info .blog-infos i {
    font-size: 16px;
  }
  .blogposts-row .blog-card .blog-info .blog-title h3 {
    font-size: 20px;
  }
  /*SECTION 11*/
  /*SECTION 12*/
  .section-twelveth .social-images-row .social-image {
    width: 220px;
    height: 220px;
  }
  /*SECTION 12*/
  /*ABOUT*/
  .section-about-fourth .section-wrap .left-side {
    width: 45%;
  }
  .section-about-fourth .section-wrap .right-side {
    width: 55%;
    padding-left: 80px;
  }
  .section-about-fourth .poverty-kids {
    width: 675px;
    height: 600px;
  }
  /*ABOUT*/
}
/*=============== 1360 PX ================*/
/*=============== 1200 PX ================*/
@media only screen and (min-width: 1200px) and (max-width: 1359px) {
  .application {
    width: 1200px;
    max-width: 100%;
  }
  .container {
    width: 1080px;
  }
  /*TYPOGRAPHY*/
  h1 {
    font-size: 50px;
    line-height: 60px;
  }
  h2 {
    font-size: 32px;
    line-height: 45px;
  }
  h3 {
    font-size: 24px;
    line-height: 40px;
  }
  h4 {
    font-size: 22px;
    line-height: 30px;
  }
  h5 {
    font-size: 14px;
    line-height: 30px;
  }
  h6 {
    font-size: 14px;
  }
  P {
    font-size: 14PX;
  }
  /*TYPOGRAPHY*/
  /*HEADER-TOP*/
  .header-top a {
    font-size: 12px;
  }
  .header-top .headertop-firstpart .hte i {
    padding: 10px 7px;
  }
  .header-top .headertop-lastpart .social-icons-header {
    gap: 20px;
    padding: 10px 20px;
  }
  .header-top .headertop-lastpart .social-icons-header li i {
    font-size: 14px;
  }
  .header-top .headertop-lastpart .login-register a, .header-top .headertop-lastpart .login-register p {
    padding: 0 10px;
  }
  /*HEADER-TOP*/
  /*HEADER*/
  .sticky {
    max-width: 1200px;
  }
  .header-main .header-wrap {
    gap: 4%;
  }
  .header-main .logo {
    padding: 10px 15px;
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-main .logo img {
    width: 90%;
    height: auto;
  }
  .header-main .nav-list li {
    padding: 10px 20px;
  }
  .header-main .nav-list li .a {
    font-size: 14px;
  }
  .header-main .nav-list li .active::after {
    height: 2px;
  }
  .header-main .nav-list li a::after {
    height: 2px;
  }
  .header-main .nav-list li:hover a::after {
    width: 60%;
  }
  .header-main .last-header-part {
    gap: 10px;
  }
  .header-main .last-header-part .join-link i {
    font-size: 14px;
    padding: 13px;
  }
  .header-main .last-header-part .join-link .join-us-text p {
    line-height: 26px;
  }
  .header-main .last-header-part .join-link .join-us-text span {
    font-size: 14px;
  }
  .header-main .last-header-part .search-icon i {
    font-size: 26px;
  }
  .header-main .button-style-header {
    padding: 12px 20px;
    font-size: 14px;
  }
  /*HEADER*/
  /*HERO SECTION*/
  .hero-sliders .owl-nav i {
    font-size: 26px;
    width: 60px;
    height: 60px;
  }
  .hero-sliders .owl-nav .owl-prev {
    position: absolute;
    left: 2%;
  }
  .hero-sliders .owl-nav .owl-next {
    position: absolute;
    right: 2%;
  }
  .slide {
    height: 500px;
  }
  .slide .container .slide-content {
    left: 10%;
  }
  .slide .container .slide-content p {
    color: #fff;
    margin-bottom: 50px;
  }
  .slide .container .slide-content .button-style, .slide .container .slide-content .button-style-2 {
    padding: 15px 20px;
    font-size: 13px;
    margin-right: 10px;
  }
  /*HERO SECTION*/
  /*SECTION 2*/
  .services-cards-row .service-card {
    padding: 15px;
  }
  .services-cards-row .service-card .service-card-content {
    padding: 70px 30px 70px;
  }
  .services-cards-row .service-card .service-card-content .service-card-image {
    width: 130px;
    height: 130px;
    top: -80px;
  }
  .services-cards-row .service-card .more-detail-arrow {
    width: 70px;
    height: 70px;
    bottom: -36px;
  }
  /*SECTION 2*/
  /*SECTION 3*/
  .title-box .yellow-line {
    width: 50px;
    height: 3px;
    background-color: #f3b42c;
    margin-bottom: 10px;
  }
  .title-box .invert-title {
    display: flex;
    flex-direction: column-reverse;
    width: 540px;
    margin-bottom: 30px;
  }
  .title-box .invert-title p {
    margin-bottom: 10px;
  }
  .section-third {
    padding: 0 0 100px;
    position: relative;
  }
  .section-third .dark-fade-shape {
    left: 135px;
    height: 76%;
    top: -11px;
  }
  .section-third .section-wrap .left-side { /*LEFTS SIDE =======*/ }
  .section-third .section-wrap .left-side .main-image {
    width: 500px;
    height: 500px;
  }
  .section-third .section-wrap .left-side .small-image {
    width: 230px;
    height: 230px;
    left: -40px;
    bottom: 10px;
  }
  .section-third .section-wrap .left-side .play-icon {
    position: absolute;
    top: 150px;
    left: -34px;
  }
  .section-third .section-wrap .left-side .play-icon i {
    background-color: #e33c34;
    color: #fff;
    width: 130px;
    font-size: 28px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
  }
  .section-third .section-wrap .left-side .play-icon .red-triangle {
    width: 55px;
    height: 55px;
    background-color: #e33c34;
    position: absolute;
    z-index: 1;
    bottom: -19px;
    left: 10px;
    transform: rotate(45deg);
    border-radius: 10px;
  }
  .section-third .section-wrap .left-side .yellow-circle {
    height: 460px;
    width: 460px;
    right: 70px;
  }
  .section-third .section-wrap .right-side { /*RIGHT SIDE =======*/
    width: 50%;
    padding-left: 130px;
  }
  .section-third .section-wrap .right-side .phrase {
    margin-bottom: 20px;
  }
  .section-third .section-wrap .right-side .boxed-phrase {
    padding: 15px 35px;
    width: 100%;
    margin-bottom: 20px;
  }
  .section-third .section-wrap .right-side .mission-story {
    gap: 20px;
    margin-bottom: 45px;
  }
  .section-third .section-wrap .right-side .mission-story h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .section-third .section-wrap .right-side .button-style {
    padding: 15px 60px;
  }
  /*SECTION 3*/
  /*SECTION 5*/
  .section-fifth .section-wrap .text-box {
    width: 590px;
  }
  .section-fifth .section-wrap .text-box h2 .red-circle {
    bottom: -7px;
    right: 205px;
    top: 75px;
    width: 95px;
  }
  /*SECTION 5*/
  /*SECTION 6*/
  .section-sixth .section-wrap .right-side .events-slides .owl-stage-outer {
    width: 540px;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-stage-outer .owl-item {
    width: 540px;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-dots {
    right: -9%;
  }
  /*SECTION 6*/
  /*SECTION 7*/
  .section-seventh .donate-card {
    width: 320px;
  }
  .section-seventh .donate-card .donate-card-image {
    height: 250px;
  }
  /*SECTION 7*/
  /*SECTION 9*/
  .section-nineth .section-wrap .right-side {
    width: 50%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-dots {
    left: -100%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-stage-outer {
    width: 540px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial {
    width: 530px;
    height: 250px;
    padding: 15px 10px 15px 85px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo {
    width: 115px;
    height: 115px;
    top: -45px;
    left: 25px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo img {
    width: 105px;
    height: 105px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .quote-container {
    width: 70px;
    height: 70px;
    top: 30px;
    right: 25px;
  }
  .section-nineth .section-wrap .left-side {
    width: 50%;
  }
  /*SECTION 9*/
  /*SECTION 10*/
  /*SECTION 10*/
  /*SECTION 11*/
  .blogposts-row .blog-card {
    position: relative;
    width: 340px;
  }
  .blogposts-row .blog-card .blog-thumbnail {
    height: 235px;
  }
  .blogposts-row .blog-card .blog-info .blog-infos {
    gap: 10px;
  }
  .blogposts-row .blog-card .blog-info .blog-infos p {
    font-size: 14px;
  }
  .blogposts-row .blog-card .blog-info .blog-infos i {
    font-size: 14px;
  }
  .blogposts-row .blog-card .blog-info .blog-title h3 {
    font-size: 16px;
  }
  .blogposts-row .blog-card .blog-info .read-more a {
    font-size: 14px;
  }
  /*SECTION 11*/
  /*SECTION 12*/
  .section-twelveth .social-images-row .social-image {
    width: 180px;
    height: 180px;
  }
  /*SECTION 12*/
  /*ABOUT*/
  .section-about-fourth .poverty-kids {
    width: 675px;
    height: 600px;
  }
  /*ABOUT*/
}
/*=============== 1200 PX ================*/
/*=============== 1024 PX ================*/
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .application {
    width: 1024px;
    max-width: 100%;
  }
  .container {
    width: 900px;
  }
  /*TYPOGRAPHY*/
  h1 {
    font-size: 44px;
    line-height: 60px;
  }
  h2 {
    font-size: 30px;
    line-height: 45px;
  }
  h3 {
    font-size: 22px;
    line-height: 40px;
  }
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
  h5 {
    font-size: 14px;
    line-height: 30px;
  }
  h6 {
    font-size: 14px;
  }
  P {
    font-size: 14PX;
  }
  /*TYPOGRAPHY*/
  /*HEADER-TOP*/
  .header-top a {
    font-size: 12px;
  }
  .header-top .headertop-firstpart .hte i {
    padding: 10px 7px;
  }
  .header-top .headertop-lastpart .social-icons-header {
    gap: 20px;
    padding: 10px 20px;
  }
  .header-top .headertop-lastpart .social-icons-header li i {
    font-size: 14px;
  }
  .header-top .headertop-lastpart .login-register a, .header-top .headertop-lastpart .login-register p {
    padding: 0 10px;
  }
  /*HEADER-TOP*/
  /*HEADER*/
  .sticky {
    max-width: 1200px;
  }
  .header-main .header-wrap {
    gap: 4%;
  }
  .header-main .logo {
    padding: 10px 15px;
    width: 100px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-main .logo img {
    width: 90%;
    height: auto;
  }
  .header-main .nav-list li {
    padding: 7px 10px;
  }
  .header-main .nav-list li .a {
    font-size: 14px;
  }
  .header-main .nav-list li .active::after {
    height: 2px;
  }
  .header-main .nav-list li a::after {
    height: 2px;
  }
  .header-main .nav-list li:hover a::after {
    width: 60%;
  }
  .header-main .last-header-part {
    gap: 10px;
  }
  .header-main .last-header-part .search-icon {
    display: none;
  }
  .header-main .last-header-part .join-link i {
    font-size: 14px;
    padding: 13px;
  }
  .header-main .last-header-part .join-link .join-us-text p {
    line-height: 26px;
  }
  .header-main .last-header-part .join-link .join-us-text span {
    font-size: 14px;
  }
  .header-main .last-header-part .search-icon i {
    font-size: 26px;
  }
  .header-main .button-style-header {
    padding: 12px 20px;
    font-size: 14px;
  }
  /*HEADER*/
  /*HERO SECTION*/
  .hero-sliders .owl-nav i {
    font-size: 26px;
    width: 60px;
    height: 60px;
  }
  .hero-sliders .owl-nav .owl-prev {
    position: absolute;
    left: 2%;
  }
  .hero-sliders .owl-nav .owl-next {
    position: absolute;
    right: 2%;
  }
  .slide {
    height: 500px;
  }
  .slide .container .slide-content {
    left: 10%;
  }
  .slide .container .slide-content p {
    color: #fff;
    margin-bottom: 50px;
  }
  .slide .container .slide-content .button-style, .slide .container .slide-content .button-style-2 {
    padding: 15px 20px;
    font-size: 13px;
    margin-right: 10px;
  }
  /*HERO SECTION*/
  /*SECTION 2*/
  .services-cards-row .service-card {
    padding: 15px;
  }
  .services-cards-row .service-card .service-card-content {
    padding: 70px 10px 40px;
  }
  .services-cards-row .service-card .service-card-content .service-card-image {
    width: 130px;
    height: 130px;
    top: -80px;
  }
  .services-cards-row .service-card .more-detail-arrow {
    width: 70px;
    height: 70px;
    bottom: -36px;
  }
  /*SECTION 2*/
  /*SECTION 3*/
  .title-box .yellow-line {
    width: 50px;
    height: 3px;
    background-color: #f3b42c;
    margin-bottom: 10px;
  }
  .title-box .invert-title {
    display: flex;
    flex-direction: column-reverse;
    width: 380px;
    margin-bottom: 30px;
  }
  .title-box .invert-title h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .title-box .invert-title p {
    margin-bottom: 10px;
  }
  .section-third {
    padding: 0 0 100px;
    position: relative;
  }
  .section-third .dark-fade-shape {
    left: 90px;
    height: 53%;
    top: -5px;
  }
  .section-third .section-wrap .left-side { /*LEFTS SIDE =======*/ }
  .section-third .section-wrap .left-side .main-image {
    width: 400px;
    height: 400px;
  }
  .section-third .section-wrap .left-side .small-image {
    width: 160px;
    height: 160px;
    left: 5px;
    bottom: 235px;
  }
  .section-third .section-wrap .left-side .play-icon {
    position: absolute;
    top: 150px;
    left: -34px;
  }
  .section-third .section-wrap .left-side .play-icon i {
    background-color: #e33c34;
    color: #fff;
    width: 130px;
    font-size: 28px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
  }
  .section-third .section-wrap .left-side .play-icon .red-triangle {
    width: 55px;
    height: 55px;
    background-color: #e33c34;
    position: absolute;
    z-index: 1;
    bottom: -19px;
    left: 10px;
    transform: rotate(45deg);
    border-radius: 10px;
  }
  .section-third .section-wrap .left-side .yellow-circle {
    height: 400px;
    width: 400px;
    right: 40px;
  }
  .section-third .section-wrap .right-side { /*RIGHT SIDE =======*/
    width: 50%;
    padding-left: 120px;
  }
  .section-third .section-wrap .right-side .phrase {
    margin-bottom: 20px;
  }
  .section-third .section-wrap .right-side .boxed-phrase {
    padding: 15px 15px;
    width: 100%;
    margin-bottom: 20px;
  }
  .section-third .section-wrap .right-side .mission-story {
    display: block;
    margin-bottom: 45px;
  }
  .section-third .section-wrap .right-side .mission-story h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .section-third .section-wrap .right-side .button-style {
    padding: 15px 60px;
  }
  /*SECTION 3*/
  /*SECTION 5*/
  .section-fifth .section-wrap .text-box {
    width: 590px;
  }
  .section-fifth .section-wrap .text-box h2 .red-circle {
    bottom: -7px;
    right: 270px;
    top: 75px;
    width: 95px;
  }
  /*SECTION 5*/
  /*SECTION 6*/
  .section-sixth .section-wrap .right-side .events-slides .owl-stage-outer {
    width: 480px;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-stage-outer .owl-item {
    width: 480px;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-dots {
    right: 20%;
    top: auto;
    transform: rotate(0deg);
  }
  .section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info {
    padding: 0px 10px;
  }
  .section-sixth .section-wrap .right-side .events-slides .event-slider .event .event-info a h3 {
    font-size: 17px;
  }
  .section-sixth .section-wrap .right-side .events-slides .event-slider .event .time-place i, .section-sixth .section-wrap .right-side .events-slides .event-slider .event .time-place p {
    font-size: 12px;
  }
  /*SECTION 6*/
  /*SECTION 7*/
  .section-seventh .donate-card {
    width: 280px;
  }
  .section-seventh .donate-card .donate-card-image {
    height: 220px;
  }
  .section-seventh .donate-card .donate-card-content {
    width: 90%;
  }
  .section-seventh .donate-card .donate-card-content h3 {
    font-size: 20px;
  }
  .section-seventh .donate-card .donate-card-content p {
    font-size: 14px;
  }
  .section-seventh .donate-card .donate-card-content h4 {
    font-size: 16px;
  }
  .section-seventh .donate-card .donate-card-content h4 span {
    font-size: 14px;
  }
  .section-seventh .donate-card .donate-card-content .percentage-bar progress:after {
    left: 70%;
    font-size: 28px;
  }
  .section-seventh .donate-card .donate-card-content .button-style-3 {
    padding: 15px 0;
    font-size: 12px;
  }
  /*SECTION 7*/
  /*SECTION 8*/
  .section-eighth .section-wrap .left-side {
    padding: 30px;
  }
  .section-eighth .section-wrap .right-side .yellow-band {
    display: block;
    padding: 20px 15px;
  }
  .section-eighth .section-wrap .right-side .yellow-band .contact-info {
    margin-bottom: 10px;
  }
  /*SECTION 8*/
  /*SECTION 9*/
  .section-nineth .section-wrap .right-side {
    width: 50%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-dots {
    left: -100%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-stage-outer {
    width: 450px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial {
    width: 440px;
    height: 275px;
    padding: 15px 10px 15px 85px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo {
    width: 115px;
    height: 115px;
    top: -45px;
    left: 25px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo img {
    width: 105px;
    height: 105px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .quote-container {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
  }
  .section-nineth .section-wrap .left-side {
    width: 50%;
  }
  .section-nineth .section-wrap .left-side .title-box {
    width: 380px;
  }
  /*SECTION 9*/
  /*SECTION 10*/
  /*SECTION 10*/
  /*SECTION 11*/
  .blogposts-row .blog-card {
    position: relative;
    width: 290px;
  }
  .blogposts-row .blog-card .blog-thumbnail {
    height: 215px;
  }
  .blogposts-row .blog-card .blog-info .blog-date {
    width: 55px;
    height: 65px;
  }
  .blogposts-row .blog-card .blog-info .blog-infos {
    gap: 10px;
  }
  .blogposts-row .blog-card .blog-info .blog-infos p {
    font-size: 12px;
  }
  .blogposts-row .blog-card .blog-info .blog-infos i {
    font-size: 12px;
  }
  .blogposts-row .blog-card .blog-info .blog-title h3 {
    font-size: 14px;
  }
  .blogposts-row .blog-card .blog-info .read-more a {
    font-size: 12px;
  }
  /*SECTION 11*/
  /*SECTION 12*/
  .section-twelveth .social-images-row .social-image {
    width: 150px;
    height: 150px;
  }
  /*SECTION 12*/
  /*FOOTER*/
  .footer .widgets .widget-1 {
    width: 290px;
  }
  .footer .widgets .widget h3 {
    font-size: 16px;
  }
  .footer .widgets .widget .button-style-2 {
    padding: 15px 25px;
    font-size: 12px;
  }
  /*FOOTER*/
  /*ABOUT*/
  .section-about-fourth .poverty-kids {
    width: 675px;
    height: 600px;
  }
  /*ABOUT*/
}
/*=============== 1200 PX ================*/
/*=============== 768 PX ================*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .application {
    width: 768px;
    max-width: 100%;
  }
  .container {
    width: 668px;
  }
  /*TYPOGRAPHY*/
  h1 {
    font-size: 44px;
    line-height: 60px;
  }
  h2 {
    font-size: 30px;
    line-height: 45px;
  }
  h3 {
    font-size: 22px;
    line-height: 40px;
  }
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
  h5 {
    font-size: 14px;
    line-height: 30px;
  }
  h6 {
    font-size: 14px;
  }
  P {
    font-size: 14PX;
  }
  /*TYPOGRAPHY*/
  /*HEADER*/
  .sticky {
    max-width: 768px;
  }
  .header-top {
    display: none;
  }
  .header-main .header-wrap {
    gap: 27%;
  }
  .header-main .header-wrap .logo {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 100px;
  }
  .header-main .header-wrap .logo img {
    width: 100%;
  }
  .header-main .header-wrap .vertical-thin-line, .header-main .header-wrap .search-icon {
    display: none;
  }
  .header-main .header-wrap .menu-button {
    display: block;
  }
  .header-main .header-wrap .menu-button i {
    color: #000;
    font-size: 24px;
  }
  .header-main .header-wrap .visible {
    display: block !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out;
  }
  .header-main .header-wrap .navigation {
    background: rgba(255, 255, 255, 0.4039215686);
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 90px;
    z-index: -1;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .header-main .header-wrap .navigation .nav-list {
    background: #fff;
    width: 50%;
    height: 100%;
    padding: 30px 10px;
    display: block;
    transition: opacity 0.5s ease-in-out;
  }
  .header-main .header-wrap .navigation .nav-list li {
    text-align: left;
    border-bottom: 2px solid #f2f2f2;
  }
  .header-main .header-wrap .navigation .nav-list li .active::after {
    left: 50%;
    bottom: 26px;
    height: 2px;
    width: 30%;
  }
  .header-main .header-wrap .slide-in-left {
    animation: slideInLeft 0.5s ease-in-out forwards;
  }
  .header-main .header-wrap .slide-in-right {
    animation: slideInRight 2s ease-in-out forwards;
  }
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-150px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /*HEADER*/
  /*HERO SECTION*/
  .section-first .slide {
    height: 400px;
  }
  .section-first .slide .container .slide-content .button-style, .section-first .slide .container .slide-content .button-style-2 {
    padding: 15px 15px;
    font-size: 12px;
  }
  .section-first .hero-sliders .owl-nav i {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .section-first .hero-sliders .owl-nav .owl-prev {
    position: absolute;
    right: 4%;
    left: auto;
    bottom: 1%;
  }
  /*HERO SECTION*/
  /*SECTION 2*/
  .section-second .services-cards-row {
    display: block;
  }
  .section-second .services-cards-row .service-card {
    margin-bottom: 100px;
  }
  .section-second .services-cards-row .service-card .service-card-content {
    padding: 85px 10px 30px;
  }
  .section-second .services-cards-row .service-card h2 br {
    display: none;
  }
  .section-second .services-cards-row .service-card p {
    width: 95%;
  }
  .section-second .services-cards-row .service-card .more-detail-arrow {
    width: 65px;
    height: 65px;
    bottom: -25px;
  }
  /*SECTION 2*/
  .title-box {
    text-align: center;
  }
  .title-box .yellow-line {
    margin: 0 auto 10px;
  }
  .title-box .invert-title {
    width: 100%;
    margin: 0 auto 30px;
  }
  .title-box .invert-title p {
    margin-bottom: 0 !important;
  }
  /*SECTION 3*/
  .section-third .section-wrap .left-side {
    display: none;
  }
  .section-third .section-wrap .right-side {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .section-third .section-wrap .right-side .boxed-phrase {
    margin: 0 auto 40px;
  }
  .section-third .section-wrap .right-side .mission-story {
    margin: 0 auto 40px;
    justify-content: center;
  }
  .section-third .section-wrap .right-side .button-style {
    padding: 15px 60px;
  }
  /*SECTION 3*/
  /*SECTION 4*/
  .section-fourth {
    padding: 50px 0;
  }
  .section-fourth .stats-row {
    flex-wrap: wrap;
    width: 75%;
    margin: 0 auto;
  }
  .section-fourth .stats-row .stat-card {
    margin-bottom: 40px;
  }
  /*SECTION 4*/
  /*SECTION 5*/
  .section-fifth {
    padding: 50px 0;
  }
  .section-fifth .section-wrap .text-box {
    width: 80%;
  }
  .section-fifth .section-wrap .text-box h2 .red-circle {
    bottom: -30px;
    right: 185px;
    width: 85px;
  }
  .section-fifth .section-wrap a {
    padding: 15px 30px;
    font-size: 14px;
  }
  /*SECTION 5*/
  /*SECTION 6*/
  .section-sixth {
    padding: 50px 0;
  }
  .section-sixth .red-rectangle {
    width: 87%;
    height: 55%;
    border-radius: 15px 0 0 15px;
    bottom: 0;
    top: auto;
    right: 0;
  }
  .section-sixth .section-wrap {
    display: block;
  }
  .section-sixth .section-wrap .left-side {
    width: 100%;
    padding: 0 0 30px 0;
  }
  .section-sixth .section-wrap .left-side .left-side-container p {
    text-align: center;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan {
    display: block;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan .icon {
    width: 70px;
    margin: 0 auto;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan h3 {
    text-align: center;
  }
  .section-sixth .section-wrap .left-side .left-side-container .button-style {
    padding: 15px 30px;
    font-size: 14px;
    margin: 0 120px;
  }
  .section-sixth .section-wrap .right-side {
    width: 100%;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-dots {
    transform: rotate(0deg);
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }
  /*SECTION 6*/
  /*SECTION 7*/
  .section-seventh {
    padding: 50px 0;
  }
  .section-seventh .donate-cards {
    flex-wrap: wrap;
  }
  .section-seventh .donate-cards .donate-card {
    width: 60%;
    margin-bottom: 40px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-image {
    height: 315px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content {
    width: 90%;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h3 {
    font-size: 20px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content p {
    font-size: 14px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content .percentage-bar progress:after {
    left: 80%;
    font-size: 28px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h4 {
    font-size: 16px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h4 span {
    font-size: 13px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content .button-style-3 {
    padding: 15px 0;
    font-size: 12px;
  }
  /*SECTION 7*/
  /*SECTION 8*/
  .section-eighth {
    padding: 50px 0;
  }
  .section-eighth .section-wrap {
    display: block;
  }
  .section-eighth .section-wrap .left-side {
    width: 100%;
    margin-bottom: 40px;
  }
  .section-eighth .section-wrap .right-side {
    width: 100%;
  }
  /*SECTION 8*/
  /*SECTION 9*/
  .section-nineth {
    padding: 50px 0;
  }
  .section-nineth .section-wrap {
    display: block;
  }
  .section-nineth .section-wrap .left-side {
    width: 100%;
    margin-bottom: 40px;
  }
  .section-nineth .section-wrap .left-side .title-box {
    margin: 0 auto;
    width: 90%;
  }
  .section-nineth .section-wrap .right-side {
    width: 100%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-dots {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  /*SECTION 9*/
  /*SECTION 11*/
  .section-eleventh .blogposts-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  /*SECTION 11*/
  /*SECTION 12*/
  .section-twelveth .social-images-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  /*SECTION 12*/
  /*FOOTER*/
  .footer .widgets {
    display: block;
  }
  .footer .widgets .widget-1 {
    margin-bottom: 40px;
  }
  /*FOOTER*/
  /*DONATION DETAIL*/
  .main-donation-detail-section {
    padding: 50px 0;
  }
  .main-donation-detail-section .section-wrap .left-side {
    width: 100%;
  }
  .main-donation-detail-section .section-wrap .right-side {
    display: none;
  }
  /*DONATION DETAIL*/
  /*BLOG DETAIL*/
  .blog-detail-main-section {
    padding: 50px 0;
  }
  .blog-detail-main-section .section-wrap .left-side {
    width: 100%;
  }
  .blog-detail-main-section .section-wrap .right-side {
    display: none;
  }
  /*BLOG DETAIL*/
  /*EVENT DETAIL*/
  .event-detail-main-section {
    padding: 50px 0;
  }
  .event-detail-main-section .section-wrap .left-side {
    width: 100%;
  }
  .event-detail-main-section .section-wrap .right-side {
    display: none;
  }
  /*EVENT DETAIL*/
  /*CONTACT*/
  .contact-first-section .yellow-band {
    display: block;
  }
  .contact-first-section .yellow-band div {
    margin-bottom: 10px;
  }
  .contact-second-section form {
    width: 100%;
  }
  /*CONTACT*/
  /*BECOME A VOLUNTEER*/
  .main-section-become-volunteer .main-section {
    display: block;
  }
  .main-section-become-volunteer .main-section .left-side {
    width: 100%;
  }
  .main-section-become-volunteer .main-section .right-side {
    width: 100%;
  }
  /*BECOME A VOLUNTEER*/
}
/*=============== 768 PX ================*/
/*=============== 600 PX ================*/
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .application {
    width: 600px;
    max-width: 100%;
  }
  .container {
    width: 540px;
  }
  /*TYPOGRAPHY*/
  h1 {
    font-size: 36px;
    line-height: 60px;
  }
  h2 {
    font-size: 26px;
    line-height: 45px;
  }
  h3 {
    font-size: 20px;
    line-height: 40px;
  }
  h4 {
    font-size: 18px;
    line-height: 30px;
  }
  h5 {
    font-size: 14px;
    line-height: 30px;
  }
  h6 {
    font-size: 14px;
  }
  P {
    font-size: 14PX;
  }
  /*TYPOGRAPHY*/
  /*HEADER*/
  .sticky {
    max-width: 600px;
  }
  .header-top {
    display: none;
  }
  .header-main .header-wrap {
    gap: 27%;
  }
  .header-main .header-wrap .logo {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 100px;
  }
  .header-main .header-wrap .logo img {
    width: 100%;
  }
  .header-main .header-wrap .vertical-thin-line, .header-main .header-wrap .search-icon {
    display: none;
  }
  .header-main .header-wrap .menu-button {
    display: block;
  }
  .header-main .header-wrap .menu-button i {
    color: #000;
    font-size: 24px;
  }
  .header-main .header-wrap .visible {
    display: block !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out;
  }
  .header-main .header-wrap .navigation {
    background: rgba(255, 255, 255, 0.4039215686);
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 90px;
    z-index: -1;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .header-main .header-wrap .navigation .nav-list {
    background: #fff;
    width: 50%;
    height: 100%;
    padding: 30px 10px;
    display: block;
    transition: opacity 0.5s ease-in-out;
  }
  .header-main .header-wrap .navigation .nav-list li {
    text-align: left;
    border-bottom: 2px solid #f2f2f2;
  }
  .header-main .header-wrap .navigation .nav-list li .active::after {
    left: 50%;
    bottom: 26px;
    height: 2px;
    width: 30%;
  }
  .header-main .header-wrap .slide-in-left {
    animation: slideInLeft 0.5s ease-in-out forwards;
  }
  .header-main .header-wrap .slide-in-right {
    animation: slideInRight 2s ease-in-out forwards;
  }
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-150px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .header-main .header-wrap .last-header-part {
    background: rgba(255, 255, 255, 0.4039215686);
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 15px;
    top: 485px;
    z-index: -1;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .header-main .header-wrap .last-header-part .join-link {
    margin-bottom: 40px;
  }
  /*HEADER*/
  /*HERO SECTION*/
  .section-first .slide {
    height: 400px;
  }
  .section-first .slide .container .slide-content .button-style, .section-first .slide .container .slide-content .button-style-2 {
    padding: 15px 15px;
    font-size: 12px;
  }
  .section-first .hero-sliders .owl-nav i {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .section-first .hero-sliders .owl-nav .owl-prev {
    position: absolute;
    right: 4%;
    left: auto;
    bottom: 1%;
  }
  /*HERO SECTION*/
  /*SECTION 2*/
  .section-second .services-cards-row {
    display: block;
  }
  .section-second .services-cards-row .service-card {
    margin-bottom: 100px;
  }
  .section-second .services-cards-row .service-card .service-card-content {
    padding: 85px 10px 30px;
  }
  .section-second .services-cards-row .service-card h2 br {
    display: none;
  }
  .section-second .services-cards-row .service-card p {
    width: 95%;
  }
  .section-second .services-cards-row .service-card .more-detail-arrow {
    width: 65px;
    height: 65px;
    bottom: -25px;
  }
  /*SECTION 2*/
  .title-box {
    text-align: center;
  }
  .title-box .yellow-line {
    margin: 0 auto 10px;
  }
  .title-box .invert-title {
    width: 100%;
    margin: 0 auto 30px;
  }
  .title-box .invert-title p {
    margin-bottom: 0 !important;
  }
  /*SECTION 3*/
  .section-third .section-wrap .left-side {
    display: none;
  }
  .section-third .section-wrap .right-side {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .section-third .section-wrap .right-side .boxed-phrase {
    margin: 0 auto 40px;
    width: 530px;
  }
  .section-third .section-wrap .right-side .mission-story {
    margin: 0 auto 40px;
    justify-content: center;
  }
  .section-third .section-wrap .right-side .button-style {
    padding: 15px 60px;
  }
  /*SECTION 3*/
  /*SECTION 4*/
  .section-fourth {
    padding: 50px 0;
  }
  .section-fourth .stats-row {
    flex-wrap: wrap;
    width: 75%;
    margin: 0 auto;
  }
  .section-fourth .stats-row .stat-card {
    margin-bottom: 40px;
  }
  /*SECTION 4*/
  /*SECTION 5*/
  .section-fifth {
    padding: 50px 0;
  }
  .section-fifth .section-wrap .text-box {
    width: 80%;
  }
  .section-fifth .section-wrap .text-box h2 .red-circle {
    bottom: -30px;
    right: 185px;
    width: 85px;
  }
  .section-fifth .section-wrap a {
    padding: 15px 30px;
    font-size: 14px;
  }
  /*SECTION 5*/
  /*SECTION 6*/
  .section-sixth {
    padding: 50px 0;
  }
  .section-sixth .red-rectangle {
    width: 87%;
    height: 55%;
    border-radius: 15px 0 0 15px;
    bottom: 0;
    top: auto;
    right: 0;
  }
  .section-sixth .section-wrap {
    display: block;
  }
  .section-sixth .section-wrap .left-side {
    width: 100%;
    padding: 0 0 30px 0;
  }
  .section-sixth .section-wrap .left-side .left-side-container p {
    text-align: center;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan {
    display: block;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan .icon {
    width: 70px;
    margin: 0 auto;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan h3 {
    text-align: center;
  }
  .section-sixth .section-wrap .left-side .left-side-container .button-style {
    padding: 15px 30px;
    font-size: 14px;
    margin: 0 120px;
  }
  .section-sixth .section-wrap .right-side {
    width: 100%;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-stage-outer {
    width: 540px;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-dots {
    transform: rotate(0deg);
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }
  /*SECTION 6*/
  /*SECTION 7*/
  .section-seventh {
    padding: 50px 0;
  }
  .section-seventh .donate-cards {
    flex-wrap: wrap;
  }
  .section-seventh .donate-cards .donate-card {
    width: 80%;
    margin-bottom: 40px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-image {
    height: 339px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content {
    width: 90%;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h3 {
    font-size: 20px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content p {
    font-size: 14px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content .percentage-bar progress:after {
    left: 80%;
    font-size: 28px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h4 {
    font-size: 16px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h4 span {
    font-size: 13px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content .button-style-3 {
    padding: 15px 0;
    font-size: 12px;
  }
  /*SECTION 7*/
  /*SECTION 8*/
  .section-eighth {
    padding: 50px 0;
  }
  .section-eighth .section-wrap {
    display: block;
  }
  .section-eighth .section-wrap .left-side {
    width: 100%;
    margin-bottom: 40px;
    padding: 20px;
  }
  .section-eighth .section-wrap .right-side {
    width: 100%;
  }
  /*SECTION 8*/
  /*SECTION 9*/
  .section-nineth {
    padding: 50px 0;
  }
  .section-nineth .section-wrap {
    display: block;
  }
  .section-nineth .section-wrap .left-side {
    width: 100%;
    margin-bottom: 40px;
  }
  .section-nineth .section-wrap .left-side .title-box {
    margin: 0 auto;
    width: 90%;
  }
  .section-nineth .section-wrap .right-side {
    width: 100%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-dots {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial {
    width: 535px;
  }
  /*SECTION 9*/
  /*SECTION 11*/
  .section-eleventh .blogposts-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  /*SECTION 11*/
  /*SECTION 12*/
  .section-twelveth .social-images-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  /*SECTION 12*/
  /*FOOTER*/
  .footer .widgets {
    display: block;
  }
  .footer .widgets .widget-1 {
    margin-bottom: 40px;
  }
  /*FOOTER*/
  /*DONATION DETAIL*/
  .main-donation-detail-section {
    padding: 50px 0;
  }
  .main-donation-detail-section .section-wrap .left-side {
    width: 100%;
  }
  .main-donation-detail-section .section-wrap .right-side {
    display: none;
  }
  /*DONATION DETAIL*/
  /*BLOG DETAIL*/
  .blog-detail-main-section {
    padding: 50px 0;
  }
  .blog-detail-main-section .section-wrap .left-side {
    width: 100%;
  }
  .blog-detail-main-section .section-wrap .right-side {
    display: none;
  }
  /*BLOG DETAIL*/
  /*EVENT DETAIL*/
  .event-detail-main-section {
    padding: 50px 0;
  }
  .event-detail-main-section .section-wrap .left-side {
    width: 100%;
  }
  .event-detail-main-section .section-wrap .right-side {
    display: none;
  }
  /*EVENT DETAIL*/
  /*CONTACT*/
  .contact-first-section .yellow-band {
    display: block;
  }
  .contact-first-section .yellow-band div {
    margin-bottom: 10px;
  }
  .contact-second-section form {
    width: 100%;
  }
  /*CONTACT*/
  /*BECOME A VOLUNTEER*/
  .main-section-become-volunteer .main-section {
    display: block;
  }
  .main-section-become-volunteer .main-section .left-side {
    width: 100%;
  }
  .main-section-become-volunteer .main-section .right-side {
    width: 100%;
  }
  /*BECOME A VOLUNTEER*/
}
/*=============== 600 PX ================*/
/*=============== 400 PX ================*/
@media only screen and (min-width: 400px) and (max-width: 599px) {
  .application {
    width: 400px;
    max-width: 100%;
  }
  .container {
    width: 380px;
    margin: 0 auto;
  }
  /*TYPOGRAPHY*/
  h1 {
    font-size: 30px;
    line-height: 60px;
  }
  h2 {
    font-size: 24px;
    line-height: 45px;
  }
  h3 {
    font-size: 20px;
    line-height: 40px;
  }
  h4 {
    font-size: 18px;
    line-height: 30px;
  }
  h5 {
    font-size: 14px;
    line-height: 30px;
  }
  h6 {
    font-size: 14px;
  }
  P {
    font-size: 14PX;
  }
  /*TYPOGRAPHY*/
  /*HEADER*/
  .sticky {
    max-width: 400px;
  }
  .header-top {
    display: none;
  }
  .header-main .header-wrap {
    gap: 27%;
  }
  .header-main .header-wrap .logo {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 100px;
  }
  .header-main .header-wrap .logo img {
    width: 100%;
  }
  .header-main .header-wrap .vertical-thin-line, .header-main .header-wrap .search-icon {
    display: none;
  }
  .header-main .header-wrap .menu-button {
    display: block;
  }
  .header-main .header-wrap .menu-button i {
    color: #000;
    font-size: 24px;
  }
  .header-main .header-wrap .visible {
    display: block !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out;
  }
  .header-main .header-wrap .navigation {
    background: rgba(255, 255, 255, 0.4039215686);
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 90px;
    z-index: -1;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .header-main .header-wrap .navigation .nav-list {
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 30px 10px;
    display: block;
    transition: opacity 0.5s ease-in-out;
  }
  .header-main .header-wrap .navigation .nav-list li {
    text-align: left;
    border-bottom: 2px solid #f2f2f2;
  }
  .header-main .header-wrap .navigation .nav-list li .active::after {
    left: 50%;
    bottom: 26px;
    height: 2px;
    width: 30%;
  }
  .header-main .header-wrap .slide-in-left {
    animation: slideInLeft 0.5s ease-in-out forwards;
  }
  .header-main .header-wrap .slide-in-right {
    animation: slideInRight 2s ease-in-out forwards;
  }
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-150px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .header-main .header-wrap .last-header-part {
    background: rgba(255, 255, 255, 0.4039215686);
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 15px;
    top: 485px;
    z-index: -1;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .header-main .header-wrap .last-header-part .join-link {
    margin-bottom: 40px;
  }
  /*HEADER*/
  /*HERO SECTION*/
  .section-first .slide {
    height: 400px;
  }
  .section-first .slide .container .slide-content .button-style, .section-first .slide .container .slide-content .button-style-2 {
    padding: 15px 15px;
    font-size: 12px;
  }
  .section-first .hero-sliders .owl-nav {
    display: none;
  }
  /*HERO SECTION*/
  /*SECTION 2*/
  .section-second .services-cards-row {
    display: block;
  }
  .section-second .services-cards-row .service-card {
    margin-bottom: 100px;
  }
  .section-second .services-cards-row .service-card .service-card-content {
    padding: 85px 10px 30px;
  }
  .section-second .services-cards-row .service-card h2 br {
    display: none;
  }
  .section-second .services-cards-row .service-card p {
    width: 95%;
  }
  .section-second .services-cards-row .service-card .more-detail-arrow {
    width: 65px;
    height: 65px;
    bottom: -25px;
  }
  /*SECTION 2*/
  .title-box {
    text-align: center;
  }
  .title-box .yellow-line {
    margin: 0 auto 10px;
  }
  .title-box .invert-title {
    width: 100%;
    margin: 0 auto 30px;
  }
  .title-box .invert-title p {
    margin-bottom: 0 !important;
  }
  /*SECTION 3*/
  .section-third .section-wrap .left-side {
    display: none;
  }
  .section-third .section-wrap .right-side {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .section-third .section-wrap .right-side .boxed-phrase {
    margin: 0 auto 40px;
    width: 360px;
  }
  .section-third .section-wrap .right-side .mission-story {
    margin: 0 auto 40px;
    display: block;
  }
  .section-third .section-wrap .right-side .mission-story h3 {
    margin-bottom: 10px;
  }
  .section-third .section-wrap .right-side .mission-story p {
    margin: 0 auto;
  }
  .section-third .section-wrap .right-side .button-style {
    padding: 15px 60px;
  }
  /*SECTION 3*/
  /*SECTION 4*/
  .section-fourth {
    padding: 50px 0;
  }
  .section-fourth .stats-row {
    flex-wrap: wrap;
    width: 75%;
    margin: 0 auto;
  }
  .section-fourth .stats-row .stat-card {
    margin-bottom: 40px;
  }
  /*SECTION 4*/
  /*SECTION 5*/
  .section-fifth {
    padding: 50px 0;
  }
  .section-fifth .section-wrap .text-box {
    width: 80%;
  }
  .section-fifth .section-wrap .text-box h2 .red-circle {
    bottom: -30px;
    right: 185px;
    width: 85px;
  }
  .section-fifth .section-wrap a {
    padding: 15px 30px;
    font-size: 14px;
  }
  /*SECTION 5*/
  /*SECTION 6*/
  .section-sixth {
    padding: 50px 0;
  }
  .section-sixth .red-rectangle {
    width: 87%;
    height: 55%;
    border-radius: 15px 0 0 15px;
    bottom: 0;
    top: auto;
    right: 0;
  }
  .section-sixth .section-wrap {
    display: block;
  }
  .section-sixth .section-wrap .left-side {
    width: 100%;
    padding: 0 0 30px 0;
  }
  .section-sixth .section-wrap .left-side .left-side-container {
    width: 380px;
    margin: 0 auto;
  }
  .section-sixth .section-wrap .left-side .left-side-container p {
    text-align: center;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan {
    display: block;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan .icon {
    width: 70px;
    margin: 0 auto;
  }
  .section-sixth .section-wrap .left-side .left-side-container .slogan h3 {
    text-align: center;
  }
  .section-sixth .section-wrap .left-side .left-side-container .button-style {
    padding: 15px 5px;
    font-size: 12px;
    margin: 0 117px;
  }
  .section-sixth .section-wrap .right-side {
    width: 100%;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-stage-outer {
    width: 380px;
  }
  .section-sixth .section-wrap .right-side .events-slides .owl-dots {
    transform: rotate(0deg);
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }
  .section-sixth .section-wrap .right-side .events-slides .event-slider .event {
    display: block;
  }
  .section-sixth .section-wrap .right-side .events-slides .event-slider .event .date-box {
    width: 125%;
  }
  .section-sixth .section-wrap .right-side .events-slides .event-slider .event .thumbnail {
    height: auto;
    width: 100%;
  }
  /*SECTION 6*/
  /*SECTION 7*/
  .section-seventh {
    padding: 50px 0;
  }
  .section-seventh .donate-cards {
    flex-wrap: wrap;
  }
  .section-seventh .donate-cards .donate-card {
    width: 90%;
    margin-bottom: 40px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-image {
    height: 270px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content {
    width: 90%;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h3 {
    font-size: 20px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content p {
    font-size: 14px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content .percentage-bar progress:after {
    left: 80%;
    font-size: 28px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h4 {
    font-size: 16px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content h4 span {
    font-size: 13px;
  }
  .section-seventh .donate-cards .donate-card .donate-card-content .button-style-3 {
    padding: 15px 0;
    font-size: 12px;
  }
  /*SECTION 7*/
  /*SECTION 8*/
  .section-eighth {
    padding: 50px 0;
  }
  .section-eighth .section-wrap {
    display: block;
  }
  .section-eighth .section-wrap .left-side {
    width: 100%;
    margin-bottom: 40px;
    padding: 20px;
  }
  .section-eighth .section-wrap .right-side {
    width: 100%;
  }
  .section-eighth .section-wrap .right-side .yellow-band {
    display: block;
    padding: 20px 10px;
  }
  /*SECTION 8*/
  /*SECTION 9*/
  .section-nineth {
    padding: 50px 0;
  }
  .section-nineth .image-background {
    width: 100%;
  }
  .section-nineth .section-wrap {
    display: block;
  }
  .section-nineth .section-wrap .left-side {
    width: 100%;
    margin-bottom: 40px;
  }
  .section-nineth .section-wrap .left-side .title-box {
    margin: 0 auto;
    width: 90%;
  }
  .section-nineth .section-wrap .right-side {
    width: 100%;
  }
  .section-nineth .section-wrap .right-side .testimonials .owl-dots {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial {
    width: 380px;
    padding: 20px 10px;
    height: auto;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .quote-container {
    display: none;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .profile-info {
    margin: 0 0 15px 165px;
  }
  .section-nineth .section-wrap .right-side .testimonials .testimonial .profile-photo {
    width: 125px;
    height: 125px;
    top: -20px;
    left: 20px;
  }
  /*SECTION 9*/
  /*SECTION 11*/
  .section-eleventh .blogposts-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  /*SECTION 11*/
  /*SECTION 12*/
  .section-twelveth .social-images-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  /*SECTION 12*/
  /*FOOTER*/
  .footer .widgets {
    display: block;
  }
  .footer .widgets .widget-1 {
    margin-bottom: 40px;
  }
  /*FOOTER*/
  .comments-section .comment {
    flex-direction: column;
  }
  /*DONATION DETAIL*/
  .main-donation-detail-section {
    padding: 50px 0;
  }
  .main-donation-detail-section .section-wrap .left-side {
    width: 100%;
    margin-right: 0;
  }
  .main-donation-detail-section .section-wrap .left-side .download-book {
    flex-direction: column;
    margin: 0 auto;
    gap: 20px;
  }
  .main-donation-detail-section .section-wrap .left-side .call-to-action {
    flex-direction: column;
    gap: 20px;
  }
  .main-donation-detail-section .section-wrap .right-side {
    display: none;
  }
  /*DONATION DETAIL*/
  /*BLOG DETAIL*/
  .blog-detail-main-section {
    padding: 50px 0;
  }
  .blog-detail-main-section .section-wrap .left-side {
    width: 100%;
  }
  .blog-detail-main-section .section-wrap .left-side .tags-section .first-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .blog-detail-main-section .section-wrap .right-side {
    display: none;
  }
  /*BLOG DETAIL*/
  /*EVENT DETAIL*/
  .event-detail-main-section {
    padding: 50px 0;
  }
  .event-detail-main-section .section-wrap .left-side {
    width: 100%;
  }
  .event-detail-main-section .section-wrap .right-side {
    display: none;
  }
  /*EVENT DETAIL*/
  /*CONTACT*/
  .contact-first-section .yellow-band {
    display: block;
  }
  .contact-first-section .yellow-band div {
    margin-bottom: 10px;
  }
  .contact-second-section form {
    width: 100%;
  }
  /*CONTACT*/
  /*BECOME A VOLUNTEER*/
  .main-section-become-volunteer .main-section {
    display: block;
  }
  .main-section-become-volunteer .main-section .left-side {
    width: 100%;
  }
  .main-section-become-volunteer .main-section .right-side {
    width: 100%;
  }
  /*BECOME A VOLUNTEER*/
}
/*=============== 400 PX ================*/

/*# sourceMappingURL=style.css.map */
