@charset "utf-8";
/* Variables */
:root {
  --brand-clr1: #C99F42;
  --body-clr: #3C3932;
  --white-clr: #ffffff;
  --transition: all ease .4s;
}
/* Normal CSS */
html {
  overflow-x: hidden;
}
html.open {
  overflow: hidden;
}
body {
  color: var(--body-clr);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.scroll-content {
  overflow-x: hidden;
}
*, *:focus {
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: none !important;
}
a:hover, a:focus {
  color: var(--brand-clr1);
}
a:focus {
  outline: none;
  outline-offset: 0;
}
h1, .h1 {
  font-size: 90px;
}
h2, .h2 {
  font-size: 60px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 0;
  line-height: 1.1;
}
h1 strong, .h1 strong, h2 strong, .h2 strong, h3 strong, .h3 strong, h4 strong, .h4 strong, h5 strong, .h5 strong, h6 strong, .h6 strong {
}
p, .p {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 20px;
  margin-bottom: 0;
}
ol, ul {
  padding-left: 0;
  list-style: none;
}

ul:not(header ul, footer ul) {
  font-size: 15px;
  font-family: 'Lora', serif;
  line-height: 26px;
}
ul:not(header ul, footer ul) li {
  position: relative;
  display: flex;
}
ul:not(header ul, footer ul) li::before {
  content: "-";
  padding-right: 30px;
}
ul:not(header ul, footer ul) li + li {
  padding-top: 5px;
}
img {
  max-width: 100%;
  object-fit: cover;
}
svg * {
  fill: none;
  stroke: #4D6C85;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
video {
  width: 100%;
  height: auto;
  border: none;
}
section {
  padding: 80px 0;
}
::selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-webkit-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-moz-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-o-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-ms-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
.border-dark {
  border-color: var(--body-clr);
}
.title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.title-wrap h2 + p {
  padding-top: 18px;
}
.title-wrap p {
  line-height: 1.8;
}
.title-wrap p + p {
  padding-top: 17px;
}
.title-wrap p strong {
  font-weight: 500;
}
.text-secondary {
  color: var(--body-clr) !important;
}
/* Reseted CSS */
b, strong {
  font-weight: bold;
}
.row {
  margin: 0 -10px;
}
[class*="col-"] {
  padding: 0 10px;
}

/* Form CSS  */
label {
  cursor: pointer;
}
input.btn {
  transition: var(--transition);
}
textarea {
  resize: none;
}
select.form-control {
  padding-right: 80px;
  background-image: url(../images/dropdown-arrow.png);
  background-repeat: no-repeat;
  background-position: right 30px center !important;
  cursor: pointer;
}
.form-control {
  padding: 13px 35px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2px;
  border-color: transparent;
  border-radius: 35px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.form-control:focus {
  border-color: var(--brand-clr1) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.form-control::placeholder {
  color: #868585;
}
/* Button CSS */
.btn {
  font-size: 18px;
  padding: 15.5px 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-clr);
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-width: 180px;
  border-radius: 30px;
  transition: var(--transition);
  line-height: normal;
}
.btn-primary {
  background-color: var(--brand-clr1);
}
.btn-primary:hover, .btn-primary:focus {
  color: var(--brand-clr1);
  background-color: transparent;
  border-color: var(--brand-clr1);
}
.btn-secondary {
  background-color: var(--body-clr);
}
.btn-secondary:hover, .btn-secondary:focus {
  color: var(--body-clr);
  background-color: transparent;
  border-color: var(--body-clr);
}
.btn-white {
  background-color: var(--white-clr);
  color: var(--body-clr);
  border-color: var(--white-clr);
}
.btn-white:hover, .btn-white:focus {
  color: var(--white-clr);
  background-color: transparent;
  border-color: var(--white-clr);
}
.btn-check:active + .btn:focus, .btn-check:checked + .btn, .btn.active:focus, .btn:active:focus, .show > .btn.dropdown-toggle:focus {
  box-shadow: none;
}
/* Section Title CSS */
.section-title {
  padding-bottom: 40px;
  position: relative;
  z-index: 0;
}
.section-title h2 {
  font-size: 60px;
}
/* Bg Colors */
.bg-primary {
  background-color: var(--brand-clr1) !important;
}
.bg-secondary {
  background-color: var(--body-clr) !important;
}

/* Header CSS */
.header-top {
  padding: 24px 0;
  position: relative;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--body-clr);
  border-radius: 35px;
}
.social-item:hover {
  border-color: var(--brand-clr1);
  background-color: var(--brand-clr1);
}
.social-item:hover img {
  filter: brightness(10);
}
header .btn {
  min-width: auto;
  white-space: nowrap;
}
.btn-mobile {
  display: none;
}
.brand {
  margin-left: -20%;
}

/* Toggle CSS */
.open .toggle-icon span {
  background: none;
}
.open .toggle-icon span::before {
  transform: translateY(6px) rotateZ(-45deg);
}
.open .toggle-icon span::after {
  top: auto;
  transform: translateY(-4px) rotateZ(45deg);
  bottom: 0;
}
.open .menu-bar {
  display: block;
  position: fixed;
  top: 103px;
  height: 100%;
  right: 0;
  left: 0;
  z-index: 55;
  }
  .toggle {
    display: none;
  }


/* Navbar CSS */
.menu-bar {
  padding: 60px 0;
  background-color: var(--brand-clr1);
  text-align: center;
  margin-bottom: -1px;
}
nav > ul {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
nav > ul li {
  margin: 0 45px;
  position: relative;
}
nav > ul li ul li {
  margin: 0;
}
nav > ul a:hover, nav > ul a:focus {
  color: var(--white-clr);
}
nav > ul > li + li::before {
  content: "|";
  font-weight: 400;
  padding: 0;
  position: absolute;
  left: -49px;
}
nav > ul > li > a {
  position: relative;
  padding: 5px;
}
nav > ul > li > a span {
  position: relative;
}
nav > ul > li > a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 14px;
  background-color: rgba(60, 57, 50, 0.3);
  transition: width .3s;
  z-index: 0;
}
nav > ul > li a:hover::before, nav > ul > li a.active::before {
  left: 0;
  width: 100%;
}
.menu-bar.bg-secondary nav > ul > li > a::before {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Navbar Dropdown CSS */
.dropdown {
  position: relative;
  transition: var(--transition);
}
.dropdown .dropdown-menu {
  background: var(--body-clr);
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  padding: 25px;
  color: var(--white-clr);
  transition: .4s;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 1px;
  font-weight: 500;
  min-width: 190px;
}
.dropdown .dropdown-menu li a:hover {
  opacity: 0.7;
}
.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.dropdown-menu li + li {
  padding-top: 8px;
}
.tooltip {
  opacity: 1;
  top: calc(100% + 12px);
  font-family: 'Inter Tight', sans-serif;
}
.tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 16px;
  margin-left: -5px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent var(--body-clr) transparent;
}
.sub-dropdown {
  position: relative;
}
.sub-dropdown::after {
  display: none !important;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: none;
  border-bottom: 1.5px solid var(--white-clr);
  border-left: 1.5px solid var(--white-clr);
  transform: rotate(-135deg);
  top: 43%;
}
.sub-dropdown a {
  padding-right: 4px;
}
.menu-bar.bg-secondary .dropdown .dropdown-menu {
  background: var(--brand-clr1);
}
.menu-bar.bg-secondary .tooltip::after {
  border-color: transparent transparent var(--brand-clr1) transparent;
}

/* Hero Slider CSS */
header + section {
  padding-top: 0;
}
.hero-slider {
  background-color: var(--brand-clr1);
  position: relative;
}
.hero-slider-content {
  position: relative;
  padding-top: 70px;
  padding-left: 100px;
  color: var(--white-clr);
  height: 100%;
}
.hero-slider-content p, .page-title-badge p {
  max-width: 390px;
}
.hero-slider-content h2 {
  position: relative;
}
.hero-slider-content h2::after, .page-title-badge h2::after {
  display: block;
  content: "";
  width: 60px;
  height: 2px;
  margin: 25px 0 15px;
  background-color: var(--white-clr);
  z-index: 1;
}
.hero-slider-content .btn, .page-title-badge .btn {
  margin-top: 30px;
}
.hero-slider-content .swiper-pagination {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

/* Swiper CSS */
/*.swiper {
  overflow: hidden;
}*/
.swiper-button-next, .swiper-button-prev {
  width: 56px;
  height: 56px;
  border: 2px solid var(--white-clr);
  border-radius: 100%;
  transition: var(--transition);
  z-index: 1;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: var(--white-clr);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 16px;
  color: var(--white-clr);
  font-weight: bolder;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 16px;
  color: var(--white-clr);
}
.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
  color: var(--body-clr);
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 40px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 40px;
}
.swiper-pagination {
  display: flex;
  gap: 7px;
}
.swiper-pagination-bullet {
  width: 50px;
  height: 5px;
  background-color: var(--white-clr);
  border-radius: 0;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--body-clr);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: static;
  width: 100%;
  height: 6px;
  background: rgba(60, 57, 50, 0.25);
  margin-top: 50px;
}
.swiper-distory.swiper-container-horizontal > .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-scrollbar-drag {
  background: var(--brand-clr1);
}
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: 100%;
}
.swiper-slide  {
  height: auto;
}

/* Video CSS */
.video-section {
  text-align: center;
  background-color: var(--brand-clr1);
  position: relative;
  margin-top: -1px;
}
.video-section::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 50%;
  background: var(--body-clr);
  z-index: 0;
}
.video-wrap {
  display: inline-flex;
  position: relative;
}
.video-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 57, 50, 0.5);
  z-index: 0;
}
.play-block {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.play-block h3 {
  color: var(--white-clr);
  padding-top: 15px;
  padding-bottom: 0;
}
.play-btn:hover {
  opacity: 0.7;
}

/* Discover our Actions CSS */
.discover-actions {
  background-color: var(--body-clr);
}
.discover-actions .container {
  position: relative;
}
.discover-actions .container::before {
  position: absolute;
  content: "";
  top: 0;
  right: 100%;
  width: 300%;
  height: 100%;
  background-color: var(--body-clr);
  z-index: 11;

}
.discover-actions .section-title h2 {
  color: var(--white-clr);
}
.img-wrap {
  position: relative;
  overflow: hidden;
}
.action-item h3 {
  padding-top: 20px;
  color: var(--white-clr);
}
.action-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(60, 57, 50, 0.5);
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 1;
}
.action-item .img-wrap:hover .action-content {
  transform: translateY(0);
}

/* We Support CSS */
.associations-item h5 {
  font-size: 18px;
  font-weight: 500;
  color: var(--brand-clr1);
  padding-bottom: 5px;
  text-transform: uppercase;
}
.associations .container {
  position: relative;
  z-index: 0;
}
.associations .container::before {
  position: absolute;
  content: "";
  top: 0;
  right: 100%;
  width: 300%;
  height: 100%;
  background-color: var(--white-clr);
  z-index: 11;
}
.associations-item figcaption {
  padding-top: 20px;
}
.associations-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(60, 57, 50, 0.5);
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 1;
}
.associations-item .img-wrap:hover .associations-content {
  transform: translateY(0);
}
.btn-block {
  padding-top: 80px;
  text-align: center;
}

/* Support Us CSS */
.support-us {
  padding: 0;
  position: relative;
}
.support-us::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 55%;
  background: var(--body-clr);
  z-index: 0;
}
.support-wrap {
  display: flex;
  background-color: var(--brand-clr1);
  color: var(--white-clr);
  position: relative;
}
.support-content {
  padding: 100px 140px 100px 160px;
  width: 100%;
}
.support-content h2 {
  padding-bottom: 0;
}
.support-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding: 45px 0;
}
.support-item + .support-item {
  border-top: 1px solid var(--white-clr);
}
.support-item p {
  padding-bottom: 0;
}
.support-item .btn {
  min-width: 220px;
}

/* Accordion CSS */
.support-us .accordion-body {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 0;
}
.support-us .accordion-button {
  color: var(--white-clr);
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  font-size: 28px;
}
.support-us .accordion-button:not(.collapsed) {
  color: var(--white-clr);
  background-color: transparent;
  box-shadow: none;
}
.support-us .accordion-button::after {
  background-image: url(../images/down-arrow.svg) !important;
}

.support-us .accordion-item {
  background-color: transparent;
  border: 0;
}
.support-us .accordion-button:focus {
  box-shadow: none;
  border: none;
}

/* CTA CSS */
.callto-action {
  padding: 140px 0;
  background-color: var(--body-clr);
  color: var(--white-clr);
}
.callto-action h2 {
  padding-bottom: 0;
}
.input-group .form-control {
  margin-bottom: 0;
}
.callto-action .form-control {
  border: 2px solid var(--white-clr);
  background-clip: var(--white-clr);
}

/* Page Title CSS */
.page-title {
  color: var(--white-clr);
  background-color: var(--brand-clr1);
}
.center-bottom {
  text-align: center;
}
.center-bottom h1 {
  margin-top: -60px;
}
.title-overlap {
  padding-bottom: 160px;
}
/*.title-overlap p {
  font-size: 22px;
  line-height: 32px;
}*/
.title-overlap .page-title-content {
  max-width: 645px;
  padding-left: 120px;
}
.title-overlap .page-title-content h1 {
  padding-bottom: 30px;
  margin-left: -257px;
}

/* Our History CSS */
.our-history {
  background-color: var(--brand-clr1);
  color: var(--white-clr);
  padding-top: 0;
  margin: -1px 0;
}
.our-history .row:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.history-content {
  max-width: 550px;
}
.history-content h2 {
  padding-bottom: 30px;
}
/*.history-content p {
  font-size: 22px;
  line-height: 32px;
}*/
.our-mission {
  background-color: var(--brand-clr1);
  color: var(--white-clr);
  padding-top: 50px;
}
.history-mission {
  max-width: 500px;
  margin-left: auto;
}
.history-mission h2 {
  padding-bottom: 30px;
}

/* Our Actions CSS */
.our-actions {
  padding: 135px 0 100px;
}
.our-actions [class*="col-"] {
  padding-bottom: 100px;
}
.action-detail > img {
  margin-bottom: 50px;
}
.action-detail h2 {
  padding-bottom: 20px;
}
.action-detail .btn {
  margin-top: 20px;
}
.action-detail.horizontal {
  max-width: 508px;
}
.overlap-top {
  margin-top: -376px;
}

/* The Governance CSS */
.the-governance {
  color: var(--white-clr);
  background-color: var(--brand-clr1);
  position: relative;
}
.the-governance::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 50%;
  background-color: var(--white-clr);
  z-index: 0;
}
.the-governance .container {
  position: relative;
}
.the-governance h1 {
  padding-bottom: 80px;
}
.the-governance h2 {
  padding-bottom: 25px;
}
.governance-item {
  color: var(--body-clr);
 }
.governance-item img {
  margin-bottom: 50px;
}
.governance-item h3 {
  font-size: 40px;
  font-weight: 500;
  padding-bottom: 20px;
}
.board-directors {
  padding-top: 0;
  padding-bottom: 120px;
}
.board-directors .section-title {
  text-align: center;
  padding-bottom: 80px;
}
.director figcaption {
  padding-top: 40px;
}
.director h3 {
  font-size: 40px;
  font-weight: 500;
  padding-bottom: 15px;
}

.history-about {
  text-align: left;
  padding-top: 38px;
  position: relative;
  bottom: -75px;
}
.project {
  padding-top: 290px;
}
.project ul {
  padding-left: 30px;
}
.project h2 {
  padding-bottom: 20px;
}
.project-inner {
  background: var(--brand-clr1);
  color: var(--white-clr);
  padding: 95px 138px;
}
.project-inner .inner-content {
  max-width: 670px;
}

.project .project-col7 {
  width: 66%;
}
.project .project-col5 {
  width: 40%;
  margin-left: -115px;
  margin-top: -152px;
  position: relative;
}

.benefits {
  padding-top: 148px;
}
.benefits .title {
  max-width: 1495px;
  margin-left: auto;
}
.video-style-two {
  background: var(--white-clr);
  padding-top: 40px;
}
.video-style-two.video-section::before {
  background: var(--brand-clr1);
}
.the-house {
  margin: 0 auto;
  color: var(--white-clr);
  background: var(--brand-clr1);
  padding-top: 60px;
  padding-bottom: 140px;
}
.the-house .container {
  max-width: 1360px;
}
.the-house h2 {
  padding-bottom: 20px;
}
.the-house .inner-content {
  max-width: 500px;
}
.the-partners {
  padding-top: 140px;
}
.the-partners .swiper {
  position: relative;
}
.the-partners .container {
  max-width: 1084px;
}
.the-partners .title {
  text-align: center;
  max-width: 946px;
  margin: 0 auto;
  padding-bottom: 55px;
}
.the-partners .title h2 {
  padding-bottom: 40px;
}
.the-partners .inner-content {
  background: #EDEDEB;
  padding: 50px 37px;
  height: 100%;
}
.the-partners .inner-content h3 {
  font-size: 40px;
  line-height: 40px;
  color: var(--brand-clr1);
  padding-bottom: 27px;
}
.go-furter {
  text-align: center;
  padding: 94px 0 150px;
}
.go-furter .btn-block {
  padding-top: 28px;
}


/* Building Geeks Page CSS */
.project.style-two {
  padding-top: 256px;
}
.project.style-two .project-col5 {
  margin-right: -118px;
  margin-top: -156px;
  margin-left: auto;
  width: 42%;
  z-index: 1;
}
.benefits ul {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 26px;
  padding-left: 35px;
}
.benefits .inner-list li::before {
  background: var(--body-clr);
}
.benefits span {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 26px;
}

.training {
  background: var(--brand-clr1);
  color: var(--white-clr);
  padding: 0;
  margin-top: 66px;
  display: block;
}
.training ul {
  padding-left: 25px;
}
.training .row {
  margin: 0;
}
.training .row >* {
  padding: 0;
}
.training .inner-content .title {
  padding-bottom: 30px;
}
.training .inner-content .sub-title {
  position: relative;
  padding-left: 52px;
  padding-bottom: 24px;
}
.training .inner-content {
  padding: 116px 130px;
  max-width: 1475px;
  float: right;
  width: 100%;
}

.training .inner-content .sub-title:before {
  content: "1";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 60px;
  line-height: 60px;
  color: transparent;
  font-family: 'Inter Tight', sans-serif;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--white-clr);
}
.training .inner-content .sub-title:nth-child(2):before {
  content: "2";
}
.training .inner-content .sub-title:nth-child(3):before {
  content: "3";
}
.training-titles .sub-title:not(:last-child) {
  margin-bottom: 60px;
  border-bottom: 1px solid var(--white-clr);
}
.training .img-wrap {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 100%;
  background-size: cover;
}
.the-partners-slide {
  padding-bottom: 40px;
}
.the-partners-slide .container {
  position: relative;
}
.the-partners-slide .container::before {
  position: absolute;
  content: "";
  top: 0;
  right: 100%;
  width: 300%;
  height: 100%;
  background-color: var(--white-clr);
  z-index: 11;
}

/* Digital Plumbers Page CSS */
.training.style-two .inner-list li::before {
  top: 16px;
}
.balance-sheet {
  display: block;
  text-align: center;
  background: var(--body-clr);
  color: var(--white-clr);
  padding: 124px 0 150px;
}
.balance-sheet h2 {
  padding-bottom: 22px;
}
.balance-sheet h3 {
  font-size: 40px;
  font-weight: 700;
}
.balance-sheet .title {
  text-align: center;
  padding-bottom: 75px;
}
.balance-sheet .row [class*="col-"] p {
  padding-bottom: 0;
  font-size: 22px;
  line-height: 32px;
}
.balance-sheet .row {
  margin: 0 -54px;
}
.balance-sheet .row [class*="col-"] {
  position: relative;
  padding: 0 54px;
}
.balance-sheet .row [class*="col-"] + [class*="col-"]:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 2px;
  background: var(--white-clr);
}
.benefits.style-two {
  padding-top: 170px;
}
.training.style-two {
  margin-top: 189px;
}
.training.style-two .img-wrap {
  margin-top: -138px;
}
.training.style-two .inner-content .title {
  padding-bottom: 0;
}

/* Donation */
.style-two.title-overlap .page-title-content h1 {
  padding-bottom: 10px;
}
.style-two.title-overlap .page-title-content h2 {
  color: var(--body-clr);
  line-height: 70px;
  padding-bottom: 15px;
  margin-left: -30px;
}
.deductibility {
  padding: 118px 0 160px;
}
.deductibility .title {
  text-align: center;
  padding-bottom: 70px;
}
.deductibility .inner-content {
  background: var(--brand-clr1);
  padding: 105px;
  height: 100%;
  color: var(--white-clr);
}
.deductibility .inner-content.style-two {
  background: var(--body-clr);
}
.deductibility .inner-content h3 {
  line-height: 38px;
}
.deductibility .inner-content >:not(:last-child) {
  padding-bottom: 45px;
}
/*.deductibility .inner-content p, .deductibility .inner-content b {
  font-size: 22px;
  line-height: 32px;
}*/

/* Patronage Competemces Page CSS */
.sponsorship .title {
  padding-bottom: 55px;
}
.sponsorship .line-bullets li::before {
  padding-right: 20px;
  font-size: 16px;
}
.sponsorship {
  background: #EDEDEB;
  padding: 152px 0;
}
.sponsorship .inner-content {
  padding: 64px;
}
.sponsorship .inner-content.bg-white {
  color: var(--body-clr);
}
.sponsorship .inner-content.bg-white .inner-list li::before {
  background: var(--body-clr);
}
.sponsorship .inner-content > :not(:last-child) {
  padding-bottom: 30px;
}
.sponsorship .inner-content p {
  font-size: 16px;
  line-height: 26px;
}
.they-support {
  padding-bottom: 168px;
}
.they-support .inner-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.patron {
  display: block;
  padding: 160px 0;
}
.patron .title {
  text-align: center;
  padding-bottom: 50px;
}
.patron .inner-content {
  position: relative;
  padding-left: 50px;
}
.patron .row [class*="col-"] .inner-content::before {
  content: "1";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 60px;
  line-height: 60px;
  color: transparent;
  font-family: 'Inter Tight', sans-serif;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--body-clr);
}
.patron .row [class*="col-"]:nth-child(2) .inner-content:before {
  content: "2";
}
.patron .row [class*="col-"]:nth-child(3) .inner-content:before {
  content: "3";
}

/* Godmothers CSS */
.godmothers-content {
  padding-left: 200px;
}
.godmothers-content h2 {
  padding-bottom: 30px;
}
.godmothers-content p {
  max-width: 500px;
}

/* Become Godmother CSS */
.become-godmother {
  padding: 140px 0;
  background-color: #EDEDEB;
  text-align: center;
}
.become-godmother .section-title {
  color: var(--brand-clr1);
}
.become-godmother .container {
  max-width: 670px;
}

/* Actualites Archives CSS */
.badge-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 20px;
}
.badge {
  font-size: 15px;
  font-weight: 600;
  background-color: var(--body-clr);
  padding: 5px 13px;
  border-radius: 0;
  text-transform: uppercase;
}
.date {
  font-size: 15px;
  font-weight: 600;
  padding: 5px 13px;
  text-transform: uppercase;
}
.page-title-badge .page-title-content {
  padding-left: 120px;
}
.page-title-badge h1 {
  padding-bottom: 60px;
}
.page-title-badge {
  position: relative;
}
.page-title-badge .container {
  position: relative;
}
.page-title-badge::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 60px;
  background-color: var(--white-clr);
  z-index: 0;
}

/* Blog List CSS */
.blog-list {
  padding: 120px 0;
}
.filtter-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  padding-bottom: 54px;
}
.filtter-wrap h6 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 0;
}
.filtter-wrap .form-select {
  width: auto;
  min-width: 190px;
  border-radius: 30px;
  padding: 15px 24px;
  border-color: #3C3932;
  background-position: right 1.5rem center;
}
.blog-item {
  margin-bottom: 110px;
  position: relative;
  overflow: hidden;
}
.blog-item .img-wrap img {
  transition: var(--transition);
}
.blog-item:hover .img-wrap img {
  transform: scale(1.1);
}
.blog-item .badge-wrap {
  gap: 22px;
}
.blog-item figcaption {
  padding-top: 40px;
}
.blog-item figcaption h4 {
  font-size: 28px;
  padding-bottom: 15px;
}

/* Actualites Detail CSS */
.single-detail {
  padding-top: 60px;
  padding-bottom: 0;
}
.single-detail h1 {
  padding-bottom: 60px;
}
.single-detail .img-wrap {
  position: relative;
  color: var(--body-clr);
  overflow: visible;
}
.single-detail .img-wrap img {
  margin-bottom: 140px;
}
.single-detail .img-wrap .container {
  position: relative;
}
.single-detail .img-wrap::before {  
  position: absolute;
  content: "";
  left: 0;
  top: 25%;
  bottom: 0;
  width: 100%;
  background-color: var(--white-clr);
  z-index: 0;
}
.kirao-content {
  max-width: 770px;
}
.images-block {
  padding-top: 80px;
}

/* Committed Employees CSS */
.committed-employees {
  padding-top: 40px;
}
.committed-employees .row {
  margin: 0 -25px;
}
.committed-employees [class*="col-"] {
  padding: 0 25px;
}
.committed-employees .section-title {
  padding-bottom: 50px;
}

/* Blog List Gray CSS */
.blog-list-gray {
  padding-bottom: 20px;
  background-color: #EDEDEB;
}

/* Contact US CSS */
.contact-us {
  padding: 40px 0 140px;
  text-align: center;
  background-color: var(--brand-clr1);
}
.contact-us .container {
  max-width: 808px;
}
.contact-us .section-title {
  padding-bottom: 20px;
  color: var(--white-clr);
}
.contact-us p {
  font-size: 22px;
  line-height: 32px;
  color: var(--white-clr);
}
.contact-us small {
  font-size: 15px;
}
.contact-us .wpcf7-form {
  background-color: var(--white-clr);
  padding: 50px;
  border-radius: 16px;
}
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpcf7-not-valid-tip {
  text-align: left;
  font-size: 14px;
}
.form-floating .form-control {
  font-size: 15px;
}

.form-floating .form-control {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--body-clr);
  padding: 10px 0;
}
.form-floating > label {
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 700;
  display: none;
}


/* International CSS */
.international {
  padding-top: 80px;
  padding-bottom: 0;
  background-color: var(--body-clr);
  color: var(--white-clr);
  position: relative;
}
.international .container {
  position: relative;
}
.international-content {
  max-width: 700px;
}
.international-content h1 {
  padding-bottom: 20px;
}
.international-content h2 {
  color: var(--brand-clr1);
  padding-bottom: 20px;
}
.international-content p {
  /*font-size: 22px;
  line-height: 32px;*/
  max-width: 600px;
}
.international::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 110px;
  background-color: var(--white-clr);
  z-index: 0;
}
.international-list .swiper {
  position: relative;
}
.international-list {
  padding: 120px 0 20px;
}
.international-list + .international-list {
  padding-top: 0;
}
.international-list .section-title {
  padding-bottom: 40px;
}
.international-item span {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-clr1);
}
.international-item h4 {
  font-size: 28px;
  line-height: 33px;
  padding-bottom: 20px;
}
.international-item h5 {
  font-size: 16px;
  color: var(--brand-clr1);
  font-weight: 700;
  padding-top: 10px;
}
/*.international-item p {
  font-size: 22px;
  line-height: 32px;
}*/
.international-item {
  margin-bottom: 110px;
}
.international-item figcaption {
  margin-top: 40px;
}
.international-item {
  overflow: hidden;
}
.international-item .img-wrap img {
  transition: var(--transition);
}
.international-item:hover .img-wrap img {
  transform: scale(1.1);
}

/* International Directors CSS */
.international-directors .section-title {
  text-align: center
}
.international-directors .swiper {
  position: relative;
}
.international-directors .swiper-button-next, .international-directors .swiper-button-prev {
  top: 20%;
}
.international-directors .container::before {
  position: absolute;
  content: "";
  top: 0;
  right: 100%;
  width: 300%;
  height: 100%;
  background-color: var(--white-clr);
  z-index: 11;
}
.directors-item figcaption {
  padding-top: 50px;
}
.directors-item h4 {
  font-size: 40px;
  font-weight: 500;
  padding-bottom: 16px;
}


/* Footer CSS */
footer {
  padding: 65px 0 80px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer-links {
  font-size: 15px;
}
.footer-links h6 {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 16px;
}
.footer-links ul li + li {
  padding-top: 4px;
}

/* Return To Top CSS */
#return-to-top {
  position: fixed;
  bottom: 75px !important;
  right: 20px;
  background: rgb(60, 57, 50);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 3;
  text-align: center;
  padding-top: 12px;
  transform: rotate(180deg);
  opacity: 1 !important;
  -webkit-transition: display 0s linear;
  -moz-transition: display 0 ease;
  -ms-transition: display 0 ease;
  -o-transition: display 0 ease;
  transition: display 0 ease;
}
#return-to-top i::before, #return-to-top i::after {
  position: absolute;
  top: 18px;
  content: "";
  height: 15px;
  width: 3px;
  background: #fff;
  transform: rotate(45deg);
  right: 19px;
}
#return-to-top i::before {
  left: 19px;
  transform: rotate(-45deg);
}
#return-to-top:hover {
  background: var(--body-clr);
  opacity: .6;
}
#my-scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.modal-dialog {
  max-width: 800px;
}
.modal-content {
  border: 16px solid #fff;
}
.modal iframe {
  height: 415px;
}

/* Static Page CSS */
.static-content {
  background-color: #C99F42;
  color: var(--white-clr);
}

/* Error Page CSS */
.error-content {
  text-align: center;
  background-color: #C99F42;
  color: var(--white-clr);
}
.error-content h1 {
  font-size: 160px;
  font-weight: 700;
}
.error-content .btn {
  margin-top: 20px;
}
.wp-pagenavi > * {
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  padding: 5px 16px !important;
  align-items: center;
  justify-content: center;
  margin: 5px !important;
}
.wp-pagenavi > span:not(.pages):hover, .wp-pagenavi > a:hover, .wp-pagenavi > span.current {
  border-color: var(--brand-clr1);
  color: var(--brand-clr1);
}
.responsive-space h2 {
  padding-top: 30px;
  padding-bottom: 20px;
}
.single-detail .img-wrap {
  padding-bottom: 80px;
}
.navigation.post-navigation {
  font-size: 24px;
  padding: 0 50px 50px;
  text-align: center;
  max-width: 1350px;
  margin: 0 auto;
}
.navigation.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
nav > ul > li.current_page_item > a::before, nav > ul > li.current-menu-parent > a::before {
  width: 100%;
}
.second-blog.page-title-badge::before,
.archive.category .page-title-badge::before {
  display: none !important;
}
.single-detail .img-wrap p img {
  margin-bottom: 25px;
  margin-right: 0;
}
.single-detail .img-wrap h1 {
  font-size: 60px;
  padding-bottom: 0;
}
.single-detail .img-wrap h2 {
  font-size: 40px;
}
.the-partners.the-partners-slide .swiper.support-slider {
    max-width: 1000px;
    margin: auto;
}
/* Responsive CSS */
@media screen and (min-width: 1300px) {
  .video-wrap {
    max-width: 1000px;
  }
}
@media screen and (min-width: 1400px) {
  .our-history .container, .our-actions .container, .the-governance .container, .page-title.single-detail .container, .first-finance .container, .committed-employees .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 1350px;
  }  
  
  .first-finance .container{
    padding-left: 0;
    padding-right: 0;
    max-width: 1300px;
  }  
  
  
  .video-wrap {
    max-width: 1150px;
  }
}
@media screen and (min-width: 1700px) {
  .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 1636px;
  }
  .the-partners-slide .container {
    max-width: 1636px;    
  }
  .video-wrap {
    max-width: 1360px;
  }
}

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

@media screen and (max-width: 1699px) {
  h2 {
    font-size: 50px;
  }
  .section-title h2 {
    font-size: 50px;
  }
  .support-content {
    padding: 75px;
  }
  h1, .h1 {
    font-size: 70px;
  }
  .page-title-badge h1 {
    padding-bottom: 35px;
  }
  .page-title-badge .page-title-content {
    padding-left: 100px;
  }
  .page-title-badge::before {
    height: 25px;
  }
  .deductibility .inner-content {
    padding: 65px;
  }
  .director h3 {
    font-size: 30px;
  }
  .governance-item h3 {
    font-size: 30px;
  }
  .center-bottom h1 {
    margin-top: -45px;
  }
  .the-partners .inner-content h3 {
    font-size: 30px;
  }
  .the-partners .inner-content h3 {
    padding-bottom: 15px;
  }
  .benefits .title {
    max-width: 1188px;
    margin-left: auto;
  }
  .training.style-two .inner-content {
    padding: 70px;
  }
  .balance-sheet h3 {
    font-size: 30px;
  }
  .balance-sheet .row [class*="col-"] p {
    font-size: 20px;
    line-height: 30px;
  }
  .directors-item h4 {
    font-size: 30px;
  }
  .dropdown .dropdown-menu {
    padding: 20px;
  }
}
@media screen and (max-width: 1599px) {
    .title-overlap .page-title-content h1 {
    padding-bottom: 30px;
    margin-left: -225px;
  }
  .project.style-two .project-col5 {
    margin-right: -52px;
  }
  .patron {
    padding: 120px 0;
  }
  .sponsorship {
    padding: 120px 0;
  }
  .they-support {
    padding-bottom: 120px;
  }
  .they-support .title h2 {
    padding-bottom: 10px !important;
  }
  .patron {
    padding: 100px 0;
  }
  .sponsorship {
    padding: 100px 0;
  }
}

@media screen and (max-width: 1399px) {
  h2 {
    font-size: 46px;
  }
  .hero-slider-content {
    padding-top: 35px;
    padding-left: 65px;
  }
  .hero-slider-content .btn, .page-title-badge .btn {
    margin-top: 15px;
  }
  .section-title h2 {
    font-size: 46px;
  }
  .support-content {
    padding: 75px 40px;
  }
  .support-item {
    gap: 50px;
  }
  .page-title-badge h1 {
    padding-bottom: 30px;
  }
  h1, .h1 {
    font-size: 56px;
  }
  .page-title-badge .page-title-content {
    padding-left: 80px;
  }
  .badge-wrap {
    padding-bottom: 12px;
  }
  .title-overlap .page-title-content {
    padding-left: 100px;
  }
  .title-overlap .page-title-content h1 {
    margin-left: -190px;
  }
  .godmothers-content {
    padding-left: 20px;
  }
  /*.title-overlap p {
    font-size: 20px;
    line-height: 30px;
  }*/
  .style-two.title-overlap .page-title-content h2 {
    padding-bottom: 10px;
  }
  .the-governance h1 {
    padding-bottom: 40px;
  }
  .board-directors .section-title {
    padding-bottom: 50px;
  }
  .center-bottom h1 {
    margin-top: -35px;
  }
  .project-inner {
    padding: 95px 120px;
  }
  .benefits .title {
    max-width: 1015px;
    margin-left: auto;
  }
  .balance-sheet .row [class*="col-"] {
    padding: 0 24px;
  }
  .balance-sheet h3 {
    font-size: 26px;
  }
  .balance-sheet {
    padding: 100px 0;
  }
  .our-history {
    padding-bottom: 50px;
  }
  /*.history-content p {
    font-size: 20px;
    line-height: 30px;
  }*/
  .international-content p {
    /*font-size: 20px;
    line-height: 30px;*/
    max-width: 490px;
  }
  .international-list .section-title {
    padding-bottom: 30px;
  }
  .international-item h4 {
    font-size: 26px;
    line-height: 30px;
    padding-bottom: 15px;
  }
  .international-item span {
    font-size: 16px;
  }
  /*.international-item p {
    font-size: 18px;
    line-height: 28px;
  }*/
  .international-item h5 {
    font-size: 14px;
  }
  nav > ul li {
    margin: 0 30px;
  }
  nav > ul > li + li::before {
    left: -35px;
  }
}

@media screen and (max-width: 1299px) {
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 22px;
  }
  .hero-slider-content {
    padding-top: 20px;
    padding-left: 40px;
  }
  .hero-slider-content .swiper-pagination {
    bottom: -20px;
  }
  .play-btn img {
    width: 100px;
    height: 100px;
  }
  .section-title h2 {
    font-size: 38px;
  }
  .section-title {
    padding-bottom: 25px;
  }
  .hero-slider {
    padding-bottom: 20px;
  }
  .video-section {
    padding-bottom: 20px;
  }
  .callto-action {
    padding: 100px 0;
  }
  .support-us .accordion-button {
    font-size: 22px;
  }
  .page-title-badge .page-title-content {
    padding-left: 60px;
  }
  .filtter-wrap .form-select {
    padding: 10px 20px;
  }
  .filtter-wrap {
    padding-bottom: 40px;
  }
  .blog-list {
    padding: 100px 0;
  }
  .blog-item {
    margin-bottom: 70px;
  }
  .single-detail {
    padding-top: 12px;
  }
  .single-detail h1 {
    padding-bottom: 45px;
  }
  .single-detail .img-wrap img {
    margin-bottom: 100px;
  }
  .blog-list-gray {
    padding-bottom: 20px;
  }
  .title-overlap .page-title-content {
    padding-left: 70px;
  }
  .title-overlap .page-title-content h1 {
    margin-left: -158px;
  }
  
  .title-overlap {
    padding-bottom: 100px;
  }
  .deductibility .title {
    padding-bottom: 50px;
  }
  .deductibility .inner-content h3 {
    font-size: 24px;
  }
  .overlap-top {
    margin-top: -270px;
  }
  .our-actions {
    padding: 135px 0 0px;
  }
  .history-about {
    padding-top: 0;
  }
  .project-inner {
    padding: 55px 100px;
  }
  .go-furter {
    text-align: center;
    padding: 20px 0 100px;
  }
  .benefits {
    padding-top: 100px;
  }
  .project.style-two {
    padding-bottom: 20px;
  }
  .training .inner-content {
    padding: 100px;
  }
  .the-partners {
    padding-top: 100px;
  }
  .benefits .title {
    max-width: 853px;
    margin-left: auto;
  }
  .training .inner-content {
    padding: 70px;
  }
  .training.style-two .inner-content {
    padding: 50px;
  }
  .training.style-two .inner-content .inner-list li {
    padding-left: 35px;
  }
  .benefits.style-two {
    padding-top: 100px;
  }
  .balance-sheet .title {
    padding-bottom: 55px;
  }
  .balance-sheet h3 {
    font-size: 24px;
  }
  .balance-sheet .row [class*="col-"] p {
    font-size: 16px;
    line-height: 24px;
  }
  .international-item {
    margin-bottom: 100px;
  }  
  .international-list {
    padding: 100px 0 0;
  }
  .international-directors {
    padding-top: 0;
  }
  .directors-item h4 {
    font-size: 28px;
  }
  .directors-item figcaption {
    padding-top: 40px;
  }
  .single-detail .img-wrap h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1199px) {
  nav > ul li {
    margin: 0 15px;
  }
  .center-bottom h1 {
    margin-top: -30px;
  }
  .swiper {
    overflow: hidden;
  }
  .brand {
    margin-left: 0;
  }
  .header-left {
    gap: 15px;
  }
  header .btn {
    font-size: 14px;
    padding: 13px 16px;
  }
  nav > ul > li + li::before {
    left: -20px;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
  }
  .support-wrap {
    flex-direction: column;
  }
  .support-wrap > img {
    max-height: 500px;
  }
  .blog-list {
    padding: 80px 0;
  }
  .page-title-badge .page-title-content {
    padding-left: 40px;
  }
  h1, .h1 {
    font-size: 48px;
  }
  .page-title-badge {
    padding-bottom: 20px !important;
  }
  .page-title-badge::before {
    height: 0;
  }
  .blog-item figcaption h4 {
    font-size: 24px;
  }
  .badge {
    font-size: 14px;
    padding: 5px 10px;
  }
  .single-detail .img-wrap img {
    margin-bottom: 70px;
  }
  .committed-employees {
    padding-top: 0;
  }
  .committed-employees .section-title {
    padding-bottom: 40px;
  }
  .blog-list-gray {
    padding-bottom: 20px;
  }
  .single-detail {
    padding-top: 40px;
  }
  .single-detail h1 {
    padding-bottom: 30px;
  }
  .menu-bar {
    padding: 40px 0;
  }
  .contact-us {
    padding: 20px 0 100px;
  }
  .title-overlap .page-title-content {
    padding-left: 40px;
  }
  .title-overlap .page-title-content h1 {
    margin-left: -119px;
  }
  .brand {
    width: 90px;
  }
  .become-godmother {
    padding: 100px 0;
  }
  .style-two.title-overlap .page-title-content h2 {
    line-height: 44px;
  }
  .deductibility {
    padding: 100px 0;
  }
  .our-actions {
    padding: 100px 0 0px;
  }
  .overlap-top {
    margin-top: -170px;
  }
  .title-overlap .page-title-content h1 {
    padding-bottom: 10px;
  }
  .director h3 {
    font-size: 24px;
  }
  .director figcaption {
    padding-top: 30px;
  }
  .governance-item h3 {
    font-size: 24px;
    padding-bottom: 15px;
  }
  .board-directors .section-title {
    padding-bottom: 30px;
  }
  .board-directors {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .the-governance {
    padding-bottom: 50px;
  }
  .history-about {
    bottom: 0;
    padding: 40px 0 !important;
  }
  .project {
    padding-top: 190px;
  }
  .project .project-col5 {
    margin-top: -90px;
  }
  .benefits {
    padding-top: 100px;
  }
  .the-house {
    padding-bottom: 100px;
  }
  .the-partners {
    padding-top: 100px;
  }
  .the-partners .title h2 {
    padding-bottom: 30px;
  }
  .the-partners .title {
    padding-bottom: 45px;
  }
  .training.style-two .img-wrap {
    margin-top: -70px;
  }
  .training.style-two {
    margin-top: 150px;
  }
  .balance-sheet .row [class*="col-"] {
    padding: 0 18px;
  }
  .balance-sheet .title {
    padding-bottom: 45px;
  }
  .patron .inner-content {
    min-width: 300px;
  }
  .patron .title {
    padding-bottom: 35px;
  }
  .international::before {
    height: 0;
  }
  .international {
    padding: 80px 0;
  }
  .international-item span {
    font-size: 14px;
  }
  .international-item h4 {
    font-size: 24px;
  }
  .international-item h5 {
    font-size: 12px;
  }
  .callto-action .input-group .form-control {
    padding: 13px 24px;
  }
  .directors-item figcaption {
    padding-top: 40px;
  }
  .single-detail .img-wrap h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 991px) {
  .error-content h1 {
    font-size: 100px;
  }
  .static-content, .error-content {
    padding: 50px 0 40px;
  }
  /*.menu-bar.bg-secondary .dropdown .dropdown-menu {
    background: transparent;
  }*/
  .dropdown .dropdown-menu {
    position: static !important;
    visibility: visible;
    opacity: 1;
/*    background: none;*/
    text-align: center;
    margin-top: 10px;
    /*border: none;
    padding: 0;*/
    margin-bottom: 0;
    display: none;
  }
  /*.dropdown .dropdown-menu li {
    display: none;
  }*/
  nav > ul li.dropdown:hover .dropdown-menu {
    display: block;
  }
  .tooltip::after {
    /*left: auto;
    transform: rotate(180deg);
    top: 13px;
    right: -20px;
    border-color: transparent transparent #fff transparent;
    border-width: 5px;*/
    bottom: auto;
    top: 22px;
    right: 0;
    left: 0;
    width: 9px;
    margin: 0 auto;
  }
  .center-bottom h1 {
    margin-top: -28px;
  }
  .menu-bar.bg-secondary .btn-secondary {
    background: var(--brand-clr1);
  }
  .menu-bar.bg-secondary .btn-secondary:hover {
    background: transparent;
    border-color: var(--brand-clr1);
    color: var(--brand-clr1);
  }
  .modal-dialog {
    max-width: 90%;
    margin: 0 auto;
  }
  .header-left {
    display: none;
  }
  .toggle {
    display: block;
  }
  .toggle-icon {
    position: relative;
    height: 24px;
    width: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
  }
  .toggle-icon span {
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 12px;
    background: var(--body-clr);
    transition: var(--transition);
  }
  .menu-bar .container {
    overflow: scroll;
  }
  .toggle-icon span:before, .toggle-icon span:after {
    content: "";
    height: 3px;
    width: 100%;
    position: absolute;
    top: -10px;
    border-radius: 12px;
    background: var(--body-clr);
    transition: var(--transition);
  }
  .toggle-icon span:after {
    top: auto;
    bottom: -10px;
    transition: var(--transition);
  }
  .menu-bar {
    display: none;
  }
  nav > ul > li + li::before {
    content: none;
  }
  nav > ul {
    flex-direction: column;
  }
  .btn-mobile {
    display: inline-flex;
    flex-direction: column;
  }
  nav > ul > li + li {
    margin-top: 35px;
  }
  .menu-bar {
    padding: 40px 0;
  }
  .brand {
    width: 70px;
  }
  .social-item {
    width: 45px;
    height: 45px;
  }
  footer .social-item {
    min-width: 45px;
    min-height: 45px;
  }
  .header-top {
    padding: 20px 0;
  }
  .menu-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100% - 103px);
  }
  header .btn {
    padding: 13px 34px;
  }
  .hero-slider-content {
    padding-left: 15px;
  }
  h2 {
    font-size: 32px;
  }
  .hero-slider-content .btn, .page-title-badge .btn {
    margin-top: 5px;
  }
  .hero-slider-content h2::after, .page-title-badge h2::after {
    margin: 21px 0 5px;
  }
  .btn-block {
    padding-top: 60px;
  }
  h2 {
    font-size: 32px;
  }
  .callto-action h2 {
    padding-bottom: 25px;
  }
  footer .container {
    gap: 20px;
  }
  .support-us .accordion-body {
    gap: 50px;
  }
  .dropdown:hover .dropdown-menu {
    position: inherit;
    top: 12px;
  }
  .blog-item {
    margin-bottom: 50px;
  }
  .page-title-badge .page-title-content {
    padding-left: 20px;
  }
  .badge-wrap {
    gap: 12px;
  }
  .page-title-badge h1 {
    padding-bottom: 20px;
  }
  h1, .h1 {
    font-size: 40px;
  }
  .page-title-badge {
    padding-bottom: 40px !important;
    padding-top: 40px;
  }
  .filtter-wrap {
    padding-bottom: 30px;
  }
  .filtter-wrap .form-select {
    padding: 6px 20px;
  }
  .single-detail .img-wrap img {
    margin-bottom: 50px;
  }
  .kirao-content {
    padding-bottom: 30px;
  }
  .section-title {
    padding-bottom: 15px;
  }
  .committed-employees .section-title {
    padding-bottom: 15px;
  }
  .images-block .row [class*="col-"]:not(:last-child) {
    padding-bottom: 50px;
  }
  .contact-us {
    padding: 40px 0 100px;
  }
  .contact-us .section-title {
    padding-bottom: 8px;
  }
  .title-overlap .page-title-content {
    padding-left: 0;
  }
  .title-overlap .page-title-content .btn {
    font-size: 14px;
    padding: 15.5px 25px
  }
  .title-overlap {
    padding-bottom: 50px;
  }
  .godmothers-content h2 {
    padding-bottom: 20px;
  }
  .godmothers-content {
    padding-left: 0;
    padding-bottom: 35px;
  }
  .godmothers-content p {
    max-width: 100%;
    padding-bottom: 15px;
  }
  .become-godmother {
    padding: 80px 0;
  }
  .badge {
    font-size: 13px
  }
  .date {
    font-size: 14px;
  }
  .title-overlap .page-title-content h1 {
    margin-left: -90px;
  }
  .title-overlap .page-title-content h1 ,.title-overlap .page-title-content h2 {
    margin-left: 50% !important;
    transform: translateX(-50%);
    margin-top: -20px;
    text-align: center;
    width: 100%;
  }
  .title-overlap .page-title-content h2 {
    margin-top: -10px;
  }
  .title-overlap .page-title-content {
    max-width: 100%;
  }
  .deductibility {
    padding: 80px 0;
  }
  .deductibility .title {
    padding-bottom: 30px;
  }
  .deductibility .inner-content {
    padding: 40px;
  }
  .deductibility .inner-content h3 {
    line-height: 32px;
  }
  .deductibility .inner-content > :not(:last-child) {
    padding-bottom: 25px;
  }
  .overlap-top {
    margin-top: 0;
  }
  .our-actions {
    padding: 80px 0 0px;
  }
  .our-actions [class*="col-"] {
    padding-bottom: 70px;
  }
  .the-governance {
    padding: 50px 0;
  }
  .the-governance h1 {
    padding-bottom: 30px;
  }
  .governance-item img {
    margin-bottom: 40px;
  }
  .callto-action {
    padding: 80px 0;
  }
  .board-directors {
    padding-bottom: 44px;
  }
  .history-about .row {
    flex-direction: column-reverse;
  }
  .history-about .row [class*="col-"]:not(:first-child) {
    padding-bottom: 20px;
  }
  .project .flex-column {
    flex-direction: column-reverse !important;
  }
  .project .project-col5 {
    width: 100%;
    margin: 0;
  }
  .project .project-col5 img, .project .project-col7 img {
    width: 100%;
  }
  .project .project-col7 {
    width: 100%;
  }
  .project {
    padding-top: 80px;
  }
  .project-inner {
    padding: 50px;
  }
  .inner-list {
    padding-left: 0;
  }
  .inner-list li {
    padding-left: 35px;
  }
  .project h2 {
    padding-bottom: 15px;
  }
  .benefits {
    padding-top: 80px;
  }
  .project {
    padding-bottom: 34px;
  }
  .the-partners {
    padding-top: 80px;
  }
  .go-furter {
    text-align: center;
    padding: 0 0 80px;
  }
  .the-partners .title {
    padding-bottom: 30px;
  }
  .the-partners .inner-content h3 {
    font-size: 24px;
  }
  .the-partners .inner-content h3 {
    padding-bottom: 10px;
  }
  
  .history-about-two .col-lg-5  img {
    width: 100%;
  }
  .history-about-two .row {
    flex-direction: row-reverse;
  }
  .history-about-two .row [class*="col-"]:not(:last-child) {
    padding-bottom: 20px;
  }
  .project.project.style-two .flex-column {
    flex-direction: column !important;
  }
  .project.style-two .project-col5 {
    width: 100%;
    margin: 0;
  }
  .project.style-two {
    padding-top: 80px;
  }
  .project.style-two {
    padding-bottom: 0;
  }
  .training .inner-content .title {
    padding-bottom: 15px;
  }
  .training-titles .sub-title:not(:last-child) {
    margin-bottom: 30px;
  }
  .training .inner-content .sub-title {
    padding-bottom: 10px;
  }
  .training .inner-content .sub-title::before {
    font-size: 40px;
    line-height: 40px;
  }
  .training .inner-content .sub-title {
    position: relative;
    padding-left: 40px;
  }
  .training .inner-content {
    padding: 50px;
  }
  .the-partners .title h2 {
    padding-bottom: 20px;
  }
  .training.style-two .img-wrap {
    margin-top: 0;
  }
  .training.style-two {
    margin-top: 0;
    padding: 70px 0 20px;
  }
  .balance-sheet {
    padding: 80px 0;
  }
  .balance-sheet h2 {
    padding-bottom: 15px;
  }
  .balance-sheet .title {
    padding-bottom: 35px;
  }
  .balance-sheet h3 {
    font-size: 20px;
  }
  .benefits.style-two {
    padding-top: 80px;
  }
  .project.style-two {
    padding-bottom: 80px;
  }
  .project.style-three {
    padding-bottom: 60px;
  }
  .benefits.style-two .row [class*="col-"]:not(:last-child) {
    padding-bottom: 20px;
  }
  .training {
    margin-top: 0;
  }
  .patron {
    padding: 80px 0;
  }
  .patron .title {
    padding-bottom: 20px;
  }
  .patron .row [class*="col-"] .inner-content::before {
    font-size: 46px;
    line-height: 46px;
  }
  .patron .inner-content {
    padding-left: 40px;
  }
  .our-history {
    padding-bottom: 40px;
  } 
  .they-support {
    padding-bottom: 80px;
  }
  .history-content {
    max-width: 100%;
  }
  .history-content h2,.history-mission h2 {
    padding-bottom: 20px;
  }
  .our-history img {
    width: 100%;
  }
  .our-history .row [class*="col-"]:not(:last-child),.our-mission .row [class*="col-"]:not(:last-child) {
    padding-bottom: 20px;
  }
  .history-mission {
    max-width: 100%;
    margin-left: auto;
  }
  /*.international-content p {
    font-size: 16px;
    line-height: 26px;
  }*/
  .international-item {
    margin-bottom: 70px;
  }
  .international-item h5 {
    padding-top: 0;
  }
  .directors-item figcaption {
    padding-top: 35px;
  }
  .directors-item h4 {
    font-size: 26px;
  }
  .modal iframe {
    height: 350px;
  }
  .modal-dialog {
    margin: 15px auto;
  }  
  .btn-mobile {
    display: flex;
    margin-top: 50px;
    flex-direction: column;
  }
  .open body, .open #my-scrollbar, .open .scroll-content {
    overflow: hidden !important;
    transform: none !important;
  }
  .open header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1111111;
    width: 100%;
    background: #fff;
  }
  .open #return-to-top {
    opacity: 0 !important;
  }
  .single-detail .img-wrap h1 {
    font-size: 38px;
  }
  .single-detail .img-wrap h2 {
    font-size: 32px;
  }
  .single-detail .img-wrap h3 {
    font-size: 26px;
  }
  /*img {
    height: auto !important;
  }*/
  .single-detail .img-wrap::before {
    top: 15%;
  }
}

@media screen and (min-width: 768px) {
  .collapse:not(.show) {
    display: block;
  }
  .accordion-button::after {
    display: none;
  }
  .accordion-button {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .contact-us .wpcf7-form {
    padding: 20px;
  }
  .navigation.post-navigation .nav-links {
    gap: 10px;
    flex-direction: column;
  }
  .single-detail .img-wrap::before {
    top: 15%;
  }
  .single-detail .img-wrap {
    padding-bottom: 30px;
  }
  .navigation.post-navigation {
    font-size: 20px;
    padding: 0 50px 50px;
  }
  .wp-pagenavi > * {
    min-width: 40px;
    height: 40px;
  }
  .error-content h1 {
    font-size: 70px;
  }
  .error-content .btn {
    margin-top: 0;
  }
  nav > ul > li + li {
    margin-top: 18px;
  }
  .menu-bar {
    padding: 30px 0;
  }
  .btn {
    font-size: 14px;
    padding: 12.1px 30px;
  }
  .header-top {
    padding: 14px 0;
  }
  .brand {
    width: 66px;
  }
  section {
    padding: 50px 0;
  }
  .hero-slider {
    padding-bottom: 80px;
  }
  .open .menu-bar {
    top: 88px;
  }
  .menu-bar .container {
    height: calc(100% - 88px);
  }
  .hero-slider-content {
    padding-left: 0;
    padding-top: 40px;
    text-align: left;
  }
  .hero-slider-content h2::after {
    display: none;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next,  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    display: none;
  }
  .hero-slider-content p, .page-title-badge p {
    margin: 0 auto;
  }
  .hero-slider-content .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-slider-content .swiper-pagination {
    bottom: -40px;
  }
  .hero-slider-content h2 {
    padding-bottom: 15px;
  }
  .video-section .container {
    max-width: 100%;
    padding: 0;
  }
  .swiper-container-horizontal > .swiper-scrollbar {
    margin-top: 30px;
  }
  h3 {
    font-size: 16px;
  }
  .associations-item h5 {
    font-size: 14px;
  }
 
  .social-item {
    width: 40px;
    height: 40px;
  }
  .video-section {
    padding-bottom: 0;
  }
  .section-title {
    padding-bottom: 12px;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .btn-block {
    padding-top: 35px;
  }
  .support-content {
    padding: 27px 27px 15px;
  }
  .support-item {
    padding: 30px 0;
  }
  .support-item {
    gap: 25px;
  }
  .support-wrap > img {
    max-height: 300px;
  }
  .callto-action {
    padding: 50px 0;
  }
  .support-us .accordion-button {
    font-size: 20px;
  }
  h2 {
    font-size: 30px;
  }
  p, ul:not(header ul, footer ul), .benefits ul {
    font-size: 14px;
    line-height: 24px;
  }
  .play-btn img {
    width: 80px;
    height: 80px;
  }
  .callto-action .input-group {
    flex-direction: column;
    gap: 15px;
  }
  .callto-action .input-group .form-control {
    width: 100%;
    padding: 10.2px 35px;
    text-align: center;
    border-radius: 35px !important;
  }
  .callto-action .input-group .btn {
    border-radius: 35px !important;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .callto-action .input-group .form-control {
    font-size: 14px;
  }
  .support-us .accordion-body {
    gap: 25px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  .support-item .btn {
    min-width: 165px;
  }
  footer {
    padding: 50px 0;
  }
  
  footer .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .container {
    gap: 24px;
  }
  .footer-links {
    text-align: center;
  }
  footer .social-item {
    width: 40px;
    height: 40px;
    min-height: 40px;
    min-width: 40px;
  }
  footer .link-logo img {
    width: 76px;
    height: 76px;
    min-height: 76px;
  }
  .page-title-badge .page-title-content {
    padding-left: 0;
    padding-top: 40px;
  }
  .page-title-badge h2::after {
    display: none;
  }
  .hero-slider-content p, .page-title-badge p {
    max-width: 100%;
  }
  .blog-list {
    padding: 50px 0;
  }
  .filtter-wrap {
    padding-bottom: 25px;
  }
  .form-select {
    font-size: 12px;
  }
  .filtter-wrap h6 {
    font-size: 16px;
  }
  .badge {
    font-size: 12px;
  }
  .date {
    font-size: 12px;
  }
  .blog-item .badge-wrap {
    gap: 10px;
  }
  .blog-item figcaption h4 {
    font-size: 20px;
  }
  .blog-item {
    margin-bottom: 30px;
  }
  .line-bullets {
    padding-bottom: 10px;
  }
  .line-bullets li + li {
    padding-top: 10px;
  }
  .committed-employees .section-title {
    padding-bottom: 5px;
  }
  .single-detail .img-wrap img {
    margin-bottom: 35px;
  }
  .blog-list-gray {
    padding-bottom: 50px;
  }
  .blog-item figcaption h4 {
    padding-bottom: 10px;
  }
  .contact-us .section-title {
    color: var(--white-clr);
  }
  .contact-us p {
    font-size: 18px;
    line-height: 28px;
    color: var(--white-clr);
  }
  .form-control {
    margin-bottom: 14px;
  }
  .form-floating > .form-control, .form-floating > .form-select {
    height: calc(3rem + 2px);
    line-height: 1.25;
  }
  .form-floating textarea {
    height: 110px !important;
  }
  .contact-us {
    padding: 40px 0 50px;
  }
  .title-overlap .page-title-content h1 {
    margin-left: 0;
  }
  .title-overlap .page-title-content {
    padding-left: 0;
    padding-top: 40px;
  }
  .title-overlap .page-title-content {
    padding-top: 0 !important;
    text-align: center;
  }
  /*.title-overlap p {
    font-size: 16px;
    line-height: 26px;
  }*/
  .style-two.title-overlap .page-title-content h2 {
    margin-top: -20px;
  }
  .deductibility {
    padding: 50px 0;
  }
  .deductibility .title {
    padding-bottom: 20px;
  }
  .deductibility .inner-content h3 {
    font-size: 20px;
    line-height: 30px;
  }
  /*.deductibility .inner-content p, .deductibility .inner-content b {
    font-size: 16px;
    line-height: 26px;
  }*/
  .deductibility .inner-content {
    padding: 36px 30px 50px;
  }
  .deductibility .row [class*="col-"]:not(:last-child) {
    padding-bottom: 25px;
  }
  .our-actions {
    padding: 50px 0 0;
  }
  .action-detail > img {
    margin-bottom: 40px;
  }
  .action-detail h2 {
    padding-bottom: 15px;
  }
  .action-detail .btn {
    margin-top: 10px;
  }
  .our-actions [class*="col-"] {
    padding-bottom: 50px;
  }
  .action-detail h2 br {
    display: none;
  }
  .the-governance h1 br {
    display: none;
  }
  .the-governance h1 {
    padding-bottom: 20px;
  }
  .the-governance::before {
    height: 0;
  }
  .the-governance {
    padding: 50px 0 30px;
  }
  .board-directors {
    padding-top: 50px;
    padding-bottom: 44px;
  }
  .board-directors .section-title {
    padding-bottom: 20px;
  }
  .board-directors .row [class*="col-"]:not(:last-child) {
    padding-bottom: 14px;
  }
  .governance-item h3 {
    padding-bottom: 10px;
  }
  .history-about {
    bottom: 0;
    padding: 10px 0 40px !important;
  }
  .project {
    padding-top: 50px;
  }
  .benefits {
    padding-top: 50px;
  }
  .video-section {
    padding-top: 0;
  }
  .the-house {
    padding: 50px 0;
  }
  .the-house h2 {
    padding-bottom: 15px;
  }
  .the-house .row [class*="col-"]:not(:last-child) {
    padding-bottom: 30px;
  }
  .the-partners .title {
    padding-bottom: 20px;
  }
  .the-partners {
    padding-top: 50px;
  }
  .the-partners .title h2 {
    padding-bottom: 20px;
  }
  .the-partners .inner-content h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .the-partners .inner-content {
    padding: 35px;
  }
  .the-partners .inner-content {
    padding: 35px 35px 15px;
  }
  .the-partners .row [class*="col-"]:not(:last-child) {
    padding-bottom: 30px;
  }
  .go-furter .btn-block {
    padding-top: 15px;
  }
  .go-furter {
    text-align: center;
    padding: 0 0 50px;
  }
  .project-inner {
    padding: 50px 30px;
  }
  .go-furter .btn {
    padding: 12px 18px;
  }
  .project.style-two {
    padding-top: 50px;
  }
  .benefits ul {
    padding-left: 0;
  }
  .training {
    margin-top: 0;
  }
  .training .img-wrap {
    height: 450px;
  }
  .training .inner-content {
    padding: 50px 30px 20px;
  }
  .the-partners .title h2 {
    padding-bottom: 15px;
  }
  .training.style-two .inner-content {
    padding: 50px 30px 30px;
  }
  .training.style-two {
    margin-top: 0;
    padding: 70px 0 0;
  }
  .balance-sheet {
    padding: 50px 0;
  }
  .balance-sheet h2 {
    padding-bottom: 10px;
  }
  .balance-sheet .title {
    padding-bottom: 15px;
  }
  .balance-sheet .row [class*="col-"] + [class*="col-"]::before {
    display: none;
  }
  .balance-sheet .row [class*="col-"] + [class*="col-"] {
    padding-top: 30px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .balance-sheet .row {
    margin: 0 -12px;
  }
  .benefits.style-two {
    padding-top: 50px;
  }
  .project.style-three {
    padding-bottom: 30px;
  }
  .benefits .row [class*="col-"]:not(:last-child) {
    padding-bottom: 20px;
  }
  .patron {
    padding: 50px 0;
  }
  .patron .title {
    padding-bottom: 20px;
  }
  .patron .row [class*="col-"] .inner-content::before {
    font-size: 30px;
    line-height: 40px;
  }
  .deductibility.sponsorship .container > .row [class*="col-"]:not(:last-child) {
    padding-bottom: 40px;
  }
  .deductibility.sponsorship .container > .row .row [class*="col-"]:not(:last-child) {
    padding-bottom: 25px;
  }
  .they-support {
    padding-bottom: 50px;
  }
  .deductibility.sponsorship .inner-content {
    padding: 36px 30px 30px;
  }
  /*.history-content p {
    font-size: 16px;
    line-height: 24px;
  }*/
  .our-history {
    padding-bottom: 20px;
  }
  .blog-item figcaption {
    padding-top: 30px;
  }
  .images-block .row [class*="col-"]:not(:last-child) {
    padding-bottom: 40px;
  }
  .kirao-content {
    padding-bottom: 20px;
  }
  .images-block {
    padding-top: 65px;
  }
  .committed-employees .row [class*="col-"]:not(:last-child) {
    padding-bottom: 20px;
  }
  .international-content {
    max-width: 100%;
    padding-bottom: 20px;
  }
  .international-content h1 {
    padding-bottom: 15px;
  }
  .international-content h2 {
    padding-bottom: 15px;
  }
  .international {
    padding: 50px 0;
  }
  .international-list {
    padding: 50px 0 0;
  }
  .international-list .section-title {
    padding-bottom: 20px;
  }
  .international-item h4 {
    font-size: 20px;
  }
  .international-item h4 {
    padding-bottom: 10px;
  }
  /*.international-item p {
    font-size: 16px;
    line-height: 26px;
  }*/
  .international-item figcaption {
    margin-top: 30px;
  }
  .international-item {
    margin-bottom: 0px;
  }
  .international-list + .international-list {
    padding-top: 10px;
  }
  .directors-item figcaption {
    padding-top: 30px;
  }
  .directors-item h4 {
    font-size: 24px;
  }
  .swiper-container-horizontal > .swiper-scrollbar {
    margin-top: 30px;
  }
  .international-list {
    padding-bottom: 50px;
  }
  .swiper-distory.swiper-container-horizontal > .swiper-scrollbar {
    margin-top: 20px;
  }
  .the-partners .support-slider .inner-content {
    padding: 20px 25px 15px;
  }
  .swiper .aos-init.swiper-slide {
    opacity: 1!important;
    transform: translateZ(0) !important;
  }
  .page-title .container {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

}

@media screen and (max-width: 575px) {
  .navigation.post-navigation {
    padding: 0 20px 50px;
  }
  .center-bottom h1 {
    margin-top: -24px;
  }
  .hero-slider .container, .page-title .container  {
    max-width: 100%;

  }
  .hero-slider-content ,.page-title-content,.page-title-badge h1,.responsive-space {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .play-btn img {
    width: 50px;
    height: 50px;
  }
  h1, .h1 {
    font-size: 36px;
  }
  .contact-us p {
    font-size: 16px;
    line-height: 26px;
  }
  .form-control {
    margin-bottom: 5px;
  }
  .form-floating > label {
    font-size: 16px;
  }
  .form-floating textarea {
    height: 100px !important;
  }
  .form-floating > .form-control, .form-floating > .form-select {
    height: calc(2.8rem + 2px);
    line-height: 1.25;
  }
  .project-inner {
    padding: 40px 20px;
  }
  .training .inner-content .sub-title::before {
    font-size: 30px;
    line-height: 30px;
  }
  .training .inner-content .sub-title {
    padding-left: 30px;
  }
  .patron .title {
    padding-bottom: 15px;
  }
  .patron .inner-content {
    padding-left: 30px;
  }
  .deductibility.sponsorship .title {
    padding-bottom: 15px;
  }
  .patron .row [class*="col-"]:not(:last-child) {
    padding-bottom: 30px;
  }
  .project ul {
    padding-left: 0;
  }
  ul:not(header ul, footer ul) li::before {
    padding-right: 20px;
  }
  .training ul {
    padding-left: 0;
  }
  .swiper-distory.swiper-container-horizontal > .swiper-scrollbar {
    margin-top: 8px;
  }
  .single-detail .img-wrap h1 {
    font-size: 28px;
  }
  .single-detail .img-wrap h2 {
    font-size: 26px;
    padding-top: 20px !important;
  }
  .single-detail .img-wrap h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .filtter-wrap .form-select {
    min-width: 132px;
  }
  .filtter-wrap {
    gap: 10px;
  }
  .filtter-wrap h6 {
    font-size: 12px;
  }
  .filtter-wrap .form-select {
    padding: 6px 14px;
  }
  .filtter-wrap .form-select {
    padding: 6px 16px;
  }
  .our-history {
    padding-bottom: 0;
  }
  .single-detail .img-wrap h1 {
    font-size: 26px;
  }
  .single-detail .img-wrap h2 {
    font-size: 24px;
    padding-top: 20px !important;
  }
  .single-detail .img-wrap h3 {
    font-size: 22px;
  }
  .single-detail .img-wrap h4 {
    font-size: 20px;
  }
  .single-detail .img-wrap h5 {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  .title-overlap .page-title-content .btn {
    padding: 13px 20px;
  }
  .training.style-two .img-wrap {
    height: auto;
  }
  .training.style-two .inner-content {
    padding: 50px 10px 30px;
  }
}

/********** CUSTOM *******/

/* FIX SCROLLBAR */
section.international-directors,
section.the-partners,
section.hero-slider,
section.associations {
    overflow: hidden;
}

/* FIX BLOG IMAGES */ 
@media screen and (max-width: 991px) {
    .single-detail .img-wrap p img {
        height: auto;
    }
    .blog-item .img-wrap img {
        min-height: 200px;
    }
    .single-detail .img-wrap:before {
        top: 10%;
    }
}

@media screen and (min-width: 991px) {
    .blog-item .img-wrap img {
        min-height: 380px;
    }  
    .featured_article img.w-100 {
        min-height: 700px;
    }
    .single-international .single-detail .img-wrap img {
       max-height: 500px;
    }
}


.type-international {
    padding: 0;
    background: transparent;
    position: relative;
}