/* ====== FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --clr--blue: 16, 73, 169; /* #1049A9 */
  --clr--orange: 232, 97, 0; /* #E86100 */
  --clr--light--orange: 254, 233, 217; /* #FEE9D9 */
  --clr--rich--black: 1, 17, 34; /* #011122 */
  --clr--gray: 23, 25, 31; /* #17191F */
  --clr--light--gray: 235, 235, 235; /* #EBEBEB */
  --clr--black: 0, 0, 0; /* #000000 */
  --clr--white: 255, 255, 255; /* #ffffff */

  --fnt--hanken--grotesk: "Hanken Grotesk", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-track {
  background: rgb(var(--clr--white));
  /* box-shadow: inset 2px 2px 3px rgba(rgb(var(--clr--gray)), 0.4); */
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgb(var(--clr--light--gray));
}

::-webkit-scrollbar-thumb {
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  background: rgb(var(--clr--gray));
  /* box-shadow: inset 0px 0px 8px rgba(var(--clr--light--gray), 0.4); */
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgb(var(--clr--gray));
}

html,
body {
  color: rgb(var(--clr--black));
  font-size: 16px;
  font-weight: 400;
  font-family: var(--fnt--hanken--grotesk);
  line-height: 20px;
  background: rgb(var(--clr--white));
  padding: 0 !important;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 5px 0;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 48px;
  line-height: 56px;
}

h2 {
  font-size: 36px;
  line-height: 40px;
}

h3 {
  font-size: 16px;
  line-height: 20px;
}

p,
ul, ol {
  font-size: 18px;
  line-height: 24px;
}

p:nth-last-of-type(1) {
  margin-bottom: 0;
}

p:has(+ ul),
p:has(+ ol) {
  margin-bottom: 1rem !important;
}

.small,
small {
  display: inline-block;
  font-weight: 400;
  line-height: 1.2;
  font-size: 14px !important;
}

a {
  color: currentColor;
}

section.copy-section p a,
.accordion-body p a {
  color: rgb(var(--clr--blue));
}

.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}

img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  max-width: 100%;
  position: relative;
}

section {
  position: relative;
}

.section-row {
  padding-block: 40px;
  position: relative;
}

.titles {
  margin-bottom: 1.75rem;
}

.titles > h1,
.titles > h2 {
  text-align: center;
  font-weight: 600;
  line-height: 1.1;
}

.titles > h1 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
}

.titles > h2 {
  font-size: 36px;
  line-height: 40px;
}

.titles__highlighter {
  color: rgb(var(--clr--orange));
}

.titles__highlighter_white {
  color: rgb(var(--clr--white));
}

.titles__sub-heading {
  text-transform: unset;
  max-width: 700px;
  margin-bottom: 10px !important;
}

.titles__sub-heading p {
  font-size: 18px;
  line-height: 24px;
}

.title-header {
  text-align: center;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.fw100 {
  font-weight: 100;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700,
strong {
  font-weight: 700;
}

.fw900 {
  font-weight: 900;
}

.ls {
  letter-spacing: 1.5px;
}

.italic {
  font-style: italic;
}

.fnt--hanken--grotesk {
  font-family: var(--fnt--hanken--grotesk);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ====== COLORS ====== */
.clr--blue {
  color: rgb(var(--clr--blue)) !important;
}

.clr--light--orange {
  color: rgb(var(--clr--light--orange)) !important;
}

.clr--orange {
  color: rgb(var(--clr--orange)) !important;
}

.clr--rich--black {
  color: rgb(var(--clr--rich--black)) !important;
}

.clr--gray {
  color: rgb(var(--clr--gray)) !important;
}

.clr--light--gray {
  color: rgb(var(--clr--light--gray)) !important;
}

.clr--black {
  color: rgb(var(--clr--black)) !important;
}

.clr--white {
  color: rgb(var(--clr--white)) !important;
}

.bgclr--blue {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--blue));
}

.bgclr--orange {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--orange));
}

.bgclr--light--orange {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--light--orange));
}

.bgclr--rich--black {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--rich--black));
}

.bgclr--gray {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--gray));
}

.bgclr--light--gray {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--light--gray));
}

.bgclr--black {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--black));
}

.bgclr--white {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--white));
}

/* Input Fields */
.form-control {
  color: rgb(var(--clr--black));
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  min-height: 30px;
  padding: 15px;
  background-color: rgb(var(--clr--white));
  border: 2px solid rgb(var(--clr--white));
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

textarea.form-control {
  min-height: 300px;
}

.form-control:disabled {
  background-color: rgb(var(--clr--white), .2);
  opacity: .6;
}

.form-control:focus {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--white));
  border: 2px solid rgb(var(--clr--orange));
  outline: 0;
  box-shadow: none;
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 2px solid rgb(var(--clr--orange));
  -webkit-text-fill-color: var(--clr--black);
  box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
  -webkit-box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
  color: rgb(var(--clr--white));
  font-size: 13px;
  text-align: center;
  background-color: rgb(220, 53, 69);
  padding: 5px 10px;
}

/* ====== BUTTONS ====== */
.btn {
  font-size: 16px;
  /* font-weight: 700 !important; */
  color: rgb(var(--clr--white));
  line-height: 28px;
  transition: ease-in .4s;
  -webkit-transition: ease-in .4s;
  -moz-transition: ease-in .4s;
  -ms-transition: ease-in .4s;
  -o-transition: ease-in .4s;
  width: fit-content;
  padding: 8px 30px !important;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn:hover,
a:hover {
  text-decoration: none;
}

.btn-large {
  font-size: 24px;
  line-height: 30px;
  padding: 18px 60px !important;
  position: relative;
  z-index: 9;
}

.primary--btn {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--blue));
  border: 2px solid rgb(var(--clr--blue));
}

.primary--btn:hover,
.primary--btn:active,
.primary--btn:focus-visible {
  color: rgb(var(--clr--white)) !important;
  background-color: rgb(var(--clr--blue)) !important;
  border: 2px solid rgb(var(--clr--blue)) !important;
  gap: 35px;
}

.primary--btn.disabled {
  background-color: rgba(var(--clr--blue), 0.6);
  border-color: rgba(var(--clr--blue), 0.6);
  cursor: not-allowed;
  color: rgb(var(--clr--white));
}

.secondary--btn {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--orange));
  border: 2px solid rgb(var(--clr--orange));
}

.secondary--btn:hover,
.secondary--btn:active,
.secondary--btn:focus-visible {
  color: rgb(var(--clr--white)) !important;
  background-color: rgb(var(--clr--orange)) !important;
  border: 2px solid rgb(var(--clr--orange)) !important;
  gap: 35px;
}

.secondary--btn.disabled {
  background-color: rgba(var(--clr--orange), 0.6);
  border-color: rgba(var(--clr--orange), 0.6);
  cursor: not-allowed;
  color: rgb(var(--clr--white));
}

.btn img {
  width: 25px;
}

/* Grid laout */
.grid-two,
.grid-three,
.grid-four,
.grid-five {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.grid-two > * {
  width: calc((100% / 2) - 13px);
}

.grid-three > * {
  width: calc((100% / 3) - 17px);
}

.grid-four > * {
  width: calc((100% / 4) - 19px);
}

.grid-five > * {
  width: calc((100% / 5) - 20px);
}

/* OWL CAROUSEL */
.owl-loaded {
  width: 100%;
  position: relative;
}

.owl-stage-outer {
  overflow: hidden;
}

.owl-stage {
  display: flex;
}

.owl-item {
  padding: 0;
  vertical-align: top;
  display: flex;
  justify-content: center;
}

.owl-nav {
  width: 100%;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  font-size: 21px;
  color: rgb(var(--clr--orange));
  font-weight: 700;
  background-color: transparent;
  border: 0;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.owl-nav button.owl-prev {
  left: 0;
}

.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  background: rgb(var(--clr--orange));
  border: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.owl-dots button.owl-dot.active {
  background: rgb(var(--clr--black));
}

.owl-loaded .disabled {
  display: none;
}

/* CAROUSEL STYLES */
.girls-empowered__carousel {
  position: relative;
  display: flex;
  gap: 25px;
  overflow: hidden;
}

.girls-empowered__carousel.owl-loaded {
  display: block;
  overflow: visible;
}

.girls-empowered__carousel .girls-empowered__carousel_card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  cursor: pointer;
}

.girls-empowered__carousel > .girls-empowered__carousel_card {
  position: relative;
  overflow: hidden;
}

.girls-empowered__carousel .girls-empowered__carousel_card {
  min-width: calc((100% / 3) - 17px);
}

.girls-empowered__carousel > .girls-empowered__carousel_card:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(237, 237, 237);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

/* Accordion Styles */
.accordion-button::after {
  content: "";
  background: url("/wp-content/uploads/2026/01/button-rounded-plus.svg") no-repeat 50% 50% / cover;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.accordion-button:not(.collapsed)::after {
  background: url("/wp-content/uploads/2026/01/button-rounded-minus.svg") no-repeat 50% 50% / cover;
}

/* ====== HEADER ====== */
.header {
  width: 100%;
  background-color: rgb(var(--clr--white));
  padding: 10px 0;
  box-shadow: 0 3px 6px rgba(var(--clr--black), 0.16);
  position: relative;
  z-index: 9999;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.header__fixed-header {
  background-color: rgb(var(--clr--white));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 3px 6px rgba(var(--clr--black), 0.16);
  transform: translateY(0);
}

.header__logo {
  max-width: 250px;
  padding: 10px 0;
  line-height: 1;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.header__fixed-header .header__logo {
  max-width: 180px;
  padding: 0;
}

.header__logo img {
  height: auto;
  position: relative;
}

/* ====== NAVIGATION ====== */
.header__navbar_collapse {
  flex-basis: unset;
  flex-grow: unset;
}

.header__navbar {
  justify-content: space-between;
}

.header__navbar--container {
  display: flex;
}

ul#header__navbar--menu,
ul#header__navbar_button {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__navbar_collapse.collapsing {
  height: unset !important;
}

.menu-item a {
  color: rgb(var(--clr--gray));
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}

.menu-item.current-menu-item a,
.menu-item:hover a {
  color: rgb(var(--clr--blue));
}

ul#menu-menu li.menu-item ul.sub-menu {
  min-width: 250px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: rgb(226, 226, 226);
  border: none;
  border-radius: 10px;
  position: absolute;
  z-index: 9;
  display: none;
}

ul#menu-menu li.menu-item:hover ul.sub-menu {
  display: block;
}

ul#menu-menu li.menu-item ul.sub-menu li a {
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 10px;
  display: block;
}

ul#menu-menu li.menu-item ul.sub-menu li a:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--orange));
}

.nav-btn a {
  color: rgb(var(--clr--white)) !important;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  background-color: rgb(var(--clr--blue));
  display: block;
  padding: 10px 16px 10px 20px !important;
  margin-left: 15px;
  border: 2px solid rgb(var(--clr--blue));
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: ease-in .4s;
  -webkit-transition: ease-in .4s;
  -moz-transition: ease-in .4s;
  -ms-transition: ease-in .4s;
  -o-transition: ease-in .4s;
}

.nav-btn a i {
  margin-left: 8px;
  animation: fa-pulse 5s ease infinite;
  -webkit-animation: fa-pulse 5s ease infinite;
}

.nav-btn a:hover {
  color: rgb(var(--clr--blue)) !important;
  background-color: rgb(var(--clr--white));
}

.nav-btn iframe {
  margin-left: 15px;
}

.header__navbar_toggler {
  border: 0;
}

.header__navbar_toggler:focus {
  box-shadow: unset;
}

.header__navbar_icon {
  background-color: rgb(var(--clr--blue));
  width: 32px;
  height: 3px;
  margin: 6px 0;
  display: block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(1),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(1) {
  transform: rotate(45deg) translate(7px, 7px);
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  -moz-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  -o-transform: rotate(45deg) translate(7px, 7px);
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(2),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(2) {
  opacity: 0;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(3),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
  -moz-transform: rotate(-45deg) translate(5px, -6px);
  -ms-transform: rotate(-45deg) translate(5px, -6px);
  -o-transform: rotate(-45deg) translate(5px, -6px);
}

.header__navbar .header__navbar_toggler.collapsed .header__navbar_icon {
  opacity: 1 !important;
  transform: rotate(0deg) translate(0px, 0px) !important;
  -webkit-transform: rotate(0deg) translate(0px, 0px) !important;
  -moz-transform: rotate(0deg) translate(0px, 0px) !important;
  -ms-transform: rotate(0deg) translate(0px, 0px) !important;
  -o-transform: rotate(0deg) translate(0px, 0px) !important;
}

@keyframes fa-pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  5% {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
  }

  20% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  30% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  35% {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  55% {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
  }

  70% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

a.scrolly-button {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  -webkit-transform: translate(-50%, 8px);
  -moz-transform: translate(-50%, 8px);
  -ms-transform: translate(-50%, 8px);
  -o-transform: translate(-50%, 8px);
  transition: opacity .25s ease, transform .25s ease;
  -webkit-transition: opacity .25s ease, transform .25s ease;
  -moz-transition: opacity .25s ease, transform .25s ease;
  -ms-transition: opacity .25s ease, transform .25s ease;
  -o-transition: opacity .25s ease, transform .25s ease;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 10px 15px rgba(var(--clr--black), 0.15);
}

a.scrolly-button:hover {
  color: rgb(var(--clr--blue)) !important;
  background-color: rgb(var(--clr--white)) !important;
}

a.scrolly-button.scrolly-button__visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}

/* ====== Hero ====== */
.gutter-top {
  margin-top: 88px;
}

.hero {
  overflow: hidden;
}

.hero__banner {
  min-height: 620px;
  display: flex;
}

.hero__banner_content {
  width: 60%;
  padding: 6.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 9;
}

.hero__banner_content > * {
  max-width: 600px;
}

.hero__banner_content_learn-button {
  font-weight: 700;
  height: 52px;
  padding: 16px 20px 16px 24px !important;
}

.hero__banner_content_title {
  text-align: left !important;
  text-wrap: balance;
}

.hero__banner_content_progress-wrapper_progress {
  background-color: rgb(var(--clr--white));
  max-width: 480px;
  height: 35px;
  padding: 8px;
  margin-block: 10px;
  box-shadow: 3px 3px 12px rgba(var(--clr--black), 0.3);
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.hero__banner_content_progress-wrapper_progress-bar {
  background-color: rgb(var(--clr--orange));
  width: 0;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  animation: fillProgress 800ms ease-out forwards;
  -webkit-animation: fillProgress 800ms ease-out forwards;
}

@keyframes fillProgress {
  to {
    width: var(--bar--width);
  }
}

.hero__banner_content_progress-wrapper_progress-label {
  font-size: 20px;
  line-height: 24px;
  max-width: 400px;
}

.hero__banner_content_progress-wrapper_progress-label-value {
  font-weight: 600;
  display: block;
}

.hero__banner_image {
  width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 8;
}

.hero__banner_image:before {
  content: "";
  width: 900px;
  aspect-ratio: 1 / 1;
  background-color: rgb(var(--clr--orange));
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-40%, 40%);
  -webkit-transform: translate(-40%, 40%);
  -moz-transform: translate(-40%, 40%);
  -ms-transform: translate(-40%, 40%);
  -o-transform: translate(-40%, 40%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.hero__banner_image_thumbnail {
  width: 100%;
  max-width: 480px;
}

/* Video Hero */
.hero-banner__container {
  width: 100%;
  /* aspect-ratio: 19 / 7; */
  position: relative;
}

/* .hero-banner__container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgb(var(--clr--black));
  background: -webkit-linear-gradient(90deg, rgba(var(--clr--black), 0.2) 0%, rgba(var(--clr--black), 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(var(--clr--black), 0.2) 0%, rgba(var(--clr--black), 0) 100%);
  background: linear-gradient(90deg, rgba(var(--clr--black), 0.2) 0%, rgba(var(--clr--black), 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
} */

.hero-banner__container video {
  width: 100%;
  height: 590px;
  /* aspect-ratio: 19 / 7; */
  object-fit: contain;
  object-position: right;
}

.hero-banner__video_desktop {
  display: block !important;
}

.hero-banner__video_mobile {
  display: none !important;
}

.hero-banner__content-area {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.hero-banner__content-wrapper {
  margin-top: 10vw;
}

.hero-banner__content {
  width: 35%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-banner__content .hero-banner__hero-title {
  color: rgb(var(--clr--white));
  font-size: clamp(24px, 2.7vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-banner__content .hero-banner__hero-copy p {
  color: rgb(var(--clr--white));
  font-size: clamp(16px, 1.4vw, 28px);
  margin-block: 30px;
}

/* .hero-banner__content-area .hero__banner_content * {
  color: rgb(var(--clr--white));
} */

.video-controls {
  background-color: rgb(238, 238, 238);
  padding: 5px 20px;
  position: absolute;
  right: 35px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  gap: 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.video-controls__toggle-btn {
  color: rgb(var(--clr--black));
  background: rgba(var(--clr--black), 0);
  padding: 0;
  border: 0;
}

/* ====== Girls Education ====== */
.girls-education {
  background-color: rgb(var(--clr--gray));
}

.girls-education__header .titles > h2 {
  color: rgb(var(--clr--white));
  text-align: left;
}

.girls-education__wrapper {
  /* margin-block: 4rem; */
  display: flex;
  gap: 35px;
}

.girls-education__wrapper_copy-wrapper_card {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #B6B7BA;
}

.girls-education__wrapper_copy-wrapper_card:last-child {
  border-bottom: 0px solid #B6B7BA;
}

.girls-education__wrapper_image {
  width: calc(100% / 2);
}

.girls-education__wrapper_copy {
  width: calc(100% / 2);
}

.girls-education__wrapper_image-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.girls-education__wrapper_card {
  text-align: center;
}

.girls-education__wrapper_card_icon {
  width: 140px;
  margin-bottom: 25px;
}

.girls-education p {
  color: rgb(var(--clr--white));
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.girls-education__wrapper_copy-wrapper_content p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.girls-education__wrapper_copy-wrapper_card_stat {
  color: rgb(var(--clr--orange)) !important;
  font-size: 48px !important;
  line-height: 56px !important;
  font-weight: 700;
  margin: 0;
}

.girls-education__content {
  text-align: center;
}

.lazy-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
  -moz-transition: opacity 0.6s ease, transform 0.6s ease;
  -ms-transition: opacity 0.6s ease, transform 0.6s ease;
  -o-transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-image.is-loaded {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

/* ====== Changes the Story ====== */
.changes-the-story {
  overflow: hidden;
}

.changes-the-story__wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.changes-the-story__wrapper_header .titles > h2,
.changes-the-story__wrapper_header {
  text-align: left;
}

.changes-the-story__wrapper_header.title-header {
  width: calc(100% / 2);
}

.changes-the-story__wrapper_image {
  width: calc(100% / 2);
}

.changes-the-story__wrapper_image img {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.saras-fight {
  text-align: center;
  background-color: rgb(244, 245, 247);
}

.saras-fight__header .titles {
  margin-bottom: 15px;
}

.saras-fight__header .titles > h2,
.saras-fight__header {
  text-align: left;
}

.saras-fight__header p {
  font-size: 18px;
  line-height: 24px;
  max-width: 660px;
}

.saras-fight__wrapper_video {
  width: 100%;
  margin-block: 1rem;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.saras-fight__wrapper_explore-button {
  font-size: 20px;
  line-height: 35px;
  font-weight: 700;
  width: 450px;
  /* max-width: 490px; */
  height: 64px;
  margin: 10px auto;
  justify-content: space-between;
}

.saras-fight__wrapper_explore-button:hover {
  width: 480px;
}

.explore-modal {
  z-index: 9999;
}

.explore-modal__header {
  padding: 0;
  border: 0;
}

.explore-modal__header_btn-close {
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 35px;
  z-index: 9;
  background: rgb(var(--clr--light--gray));
  width: 1.2em;
  height: 1.2em;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.explore-modal__header_btn-close:focus {
  box-shadow: unset;
}

.explore-modal__header_btn-close i {
  color: rgb(var(--clr--black));
  line-height: 1;
}

.explore-modal__body {
  padding: 0;
}

.explore-modal__body_content {
  padding: 30px 40px;
}

.explore-modal__body_image-wrapper {
  position: relative;
}

.explore-modal__body_image {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.explore-modal__body_image_tooltip {
  font-size: 14px;
  color: rgb(var(--clr--white));
  background: rgba(var(--clr--black), 0.5);
  max-width: 100%;
  padding: 5px 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.explore-modal__body_content > * {
  font-size: 16px;
  line-height: 20px;
}

.explore-modal__body_content_title {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 20px;
}

/* ====== Child Sponsorship Empower ====== */
.sponsorship-empower {
  text-align: center;
  background-color: rgb(var(--clr--orange));
}

.sponsorship-empower__wrapper {
  padding: 0;
  background-color: rgb(var(--clr--white));
  /* box-shadow: 0px 10px 6px rgba(var(--clr--black), 0.15); */
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.sponsorship-empower__wrapper_copy {
  width: 55%;
  padding: 35px 50px 35px 35px;
}

.sponsorship-empower__header {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
}

.sponsorship-empower__header .titles {
  margin-bottom: 15px;
}

.sponsorship-empower__header .titles > h2 {
  /* font-size: 30px;
  line-height: 36px; */
  text-align: left;
}

.sponsorship-empower__wrapper_image {
  width: 45%;
}

.sponsorship-empower__wrapper_image_thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sponsorship-empower__accordion {
  text-align: left;
  max-width: 550px;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sponsorship-empower__accordion-item {
  background: rgb(var(--clr--light--gray));
  border: 0;
  border-radius: 40px !important;
  -webkit-border-radius: 40px !important;
  -moz-border-radius: 40px !important;
  -ms-border-radius: 40px !important;
  -o-border-radius: 40px !important;
}

.sponsorship-empower__accordion-button {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  background-color: rgb(var(--clr--light--gray));
  padding: 0 15px 0 0;
  cursor: pointer;
  gap: 10px;
  box-shadow: unset !important;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.sponsorship-empower__accordion-button:not(.collapsed) {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--light--gray));
}

.sponsorship-empower__accordion-button_icon {
  width: 65px;
}

.sponsorship-empower__accordion-body {
  padding: 10px 75px 10px 75px;
}

.sponsorship-empower__accordion-button h3 {
  font-size: 18px;
  line-height: 24px;
}

.sponsorship-empower__accordion-body p {
  font-size: 16px;
  line-height: 20px;
}

/* ====== Girls Who Received Education ====== */
.received-education {
  background-color: rgb(var(--clr--gray));
}

.received-education__header {
  color: rgb(var(--clr--white));
}

.received-education__header .titles {
  margin: 0;
}

.received-education__header .titles > h2 {
  text-align: left;
  margin-bottom: 15px;
}

.received-education__header p {
  font-size: 18px;
  line-height: 24px;
}

.received-education p {
  font-size: 18px;
  line-height: 24px;
}

.received-education__world-map {
  margin-top: 1rem;
}

.received-education__world-map_wrapper {
  margin-block: 2rem;
}

.received-education__world-map_header p {
  color: rgb(var(--clr--white));
}

.received-education__world-map_footer p {
  color: rgb(var(--clr--white));
  text-align: center;
} 

/* ====== WORLD MAP ====== */
.received-education__world-map {
  position: relative;
}

.received-education__world-map_custom {
  display: block;
  aspect-ratio: 72 / 37;
}

.received-education__world-map_custom path {
  transition: fill 0.3s ease;
  -webkit-transition: fill 0.3s ease;
  -moz-transition: fill 0.3s ease;
  -ms-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
}

.received-education__world-map_custom .received-education__world-map_custom_country path,
.received-education__world-map_custom .received-education__world-map_custom_country polygon {
  fill: rgb(var(--clr--orange));
}

.received-education__world-map_custom .received-education__world-map_custom_country_highlight path,
.received-education__world-map_custom .received-education__world-map_custom_country_highlight polygon {
  fill: rgb(var(--clr--orange)) !important;
}

.received-education__world-map_custom_country_popup {
  display: none;
  background: rgb(var(--clr--white));
  z-index: 9997;
  width: calc(100% - 30px);
  max-width: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(var(--clr--black), 0.2);
}

.received-education__world-map_custom_country_popup img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.received-education__world-map_custom_country_popup-copy {
  padding: 20px;
}

.received-education__world-map_custom_country_popup-copy .received-education__world-map_custom_country_popup-title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: rgb(var(--clr--orange));
}

.received-education__world-map_custom_country_popup-copy p {
  color: rgb(101, 103, 107);
  font-size: 16px !important;
}

.received-education__world-map_custom_country_popup-copy em {
  font-weight: 500;
}

.received-education__world-map_custom_country_popup_donation-button {
  width: 100%;
  margin-top: 20px;
}

.received-education__world-map_custom_country_popup-tag-wrap {
  margin-block: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.received-education__world-map_custom_country_popup-tag {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  background: rgb(244, 245, 247);
  padding: 2px 10px 2px 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.received-education__world-map_custom_country_popup-tag img {
  width: 24px;
  height: 24px;
}

.received-education__world-map_custom_country_popup_close {
  position: absolute;
  top: 3px;
  right: 4px;
  z-index: 9;
  background: rgba(var(--clr--white), 0.9);
  border: none;
  font-size: 21px;
  cursor: pointer;
  color: rgb(var(--clr--black));
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#country-popup-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 9996;
}

.received-education__world-map_custom_country_icon {
  pointer-events: none;
  transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
  -webkit-transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
  -moz-transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
  -ms-transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
  -o-transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
  opacity: 1;
}

.received-education__world-map_custom_country_ripple {
  fill: rgb(var(--clr--light--gray));
  stroke: rgb(var(--clr--light--gray));
  stroke-width: 2;
  opacity: 0;
}

.received-education__world-map_custom_country:hover .received-education__world-map_custom_country_ripple {
  animation: circle-ripple .9s ease-out infinite;
  -webkit-animation: circle-ripple .9s ease-out infinite;
}

.received-education__world-map_custom_country_ripple.received-education__world-map_custom_country_ripple-1 {
  animation-delay: 0s;
}

.received-education__world-map_custom_country_ripple.received-education__world-map_custom_country_ripple-2 {
  animation-delay: 0.2s;
}

.received-education__world-map_custom_country_ripple.received-education__world-map_custom_country_ripple-3 {
  animation-delay: 0.4s;
}

.received-education__world-map_custom_country_icon,
.received-education__world-map_custom_country_icon-selected,
.received-education__world-map_custom_country_ripple {
  pointer-events: all;
  cursor: pointer;
}

.received-education__world-map_wrapper_map-controller {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.received-education__world-map_wrapper_map-controller button {
  font-size: 24px;
  color: rgb(var(--clr--white));
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@keyframes circle-ripple {
  0% {
    r: 20;
    opacity: 0.6;
    stroke-width: 2;
  }

  70% {
    r: 35;
    opacity: 0.2;
    stroke-width: 1;
  }

  100% {
    r: 50;
    opacity: 0;
    stroke-width: 0.5;
  }
}

/* ====== Girls Empowering ====== */
.girls-empowered {
  background-color: rgb(244, 245, 247);
  overflow: hidden;
}

.girls-empowered__header .titles {
  margin-bottom: 15px;
}

.girls-empowered__header .titles > h2 {
  text-align: left;
}

.girls-empowered__header p {
  font-size: 18px;
  line-height: 24px;
}

/* .girls-empowered__carousel .owl-stage {
  margin: 0 auto;
} */

.girls-empowered__carousel {
  margin-top: 3rem;
}

.girls-empowered__carousel .owl-item {
  padding: 10px 10px 20px 10px;
}

.girls-empowered__carousel_card {
  background-color: rgb(var(--clr--white));
  overflow: hidden;
  box-shadow: 0px 10px 15px rgba(var(--clr--black), 0.15);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.girls-empowered__carousel_card-header {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.girls-empowered__carousel_card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: scale 0.7s ease-in-out;
  -webkit-transition: scale 0.7s ease-in-out;
  -moz-transition: scale 0.7s ease-in-out;
  -ms-transition: scale 0.7s ease-in-out;
  -o-transition: scale 0.7s ease-in-out;
}

.girls-empowered__carousel_card:hover .girls-empowered__carousel_card-image {
  scale: 1.1;
}

.girls-empowered__carousel_card-body {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.girls-empowered__carousel_item-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.girls-empowered__carousel_card-body_copy {
  flex-grow: 1;
  margin-bottom: 16px;
}

.girls-empowered__carousel_card-body_head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.girls-empowered__carousel_card-body_head p {
  color: rgb(101, 103, 107);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.girls-empowered__carousel_read-more-button {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 12px 20px !important;
}

.girls-empowered__carousel_read-more-button:hover {
  color: rgb(var(--clr--blue)) !important;
  background-color: rgb(var(--clr--white)) !important;
}

/* ====== FAQ ====== */
.faq-section {
  background-color: rgb(var(--clr--orange));
}

.faq-section__header {
  color: rgb(var(--clr--white));
  max-width: 920px;
  margin: 0 auto;
}

.faq-section__header .titles {
  margin-bottom: 10px;
}

.faq-section__header .titles > h2 {
  text-align: left;
}

.faq-section__accordion {
  margin-top: 3rem;
}

.faq-section__accordion {
  text-align: left;
  max-width: 920px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-section__accordion-item {
  border: 0;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.faq-section__accordion-button {
  font-weight: 700;
  cursor: pointer;
  box-shadow: unset !important;
  gap: 10px;
}

.faq-section__accordion-button h3 {
  font-size: 20px;
  line-height: 28px;
}

.faq-section__accordion-button:not(.collapsed) {
  color: rgb(var(--clr--black));
  background-color: transparent;
}

.accordion-body.faq-section__accordion-body {
  padding-top: 0;
}

/* ====== SINGLE ARTICLE ====== */
section.single-article {
  padding-block: 2rem;
}

.single-article-wrapper__entry-header_entry-title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
}

.single-article-wrapper__entry-header_entry-meta {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
}

.single-article-wrapper__post-thumbnail img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: 16px;
}

/* ====== 404 ====== */
.error-message {
  min-height: calc(100vh - 260px);
  display: flex;
  align-items: center;
}

.error-message__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.error-message__title {
  color: rgb(var(--clr--orange));
  font-size: clamp(48px, 7.5vw, 120px);
  font-weight: 900;
}

.error-message__content p {
  font-size: 20px;
  line-height: 35px;
}

.error-message__back-button {
  font-size: 20px;
  line-height: 35px;
  font-weight: 700;
}

/* ====== VIDEO PLAYER ====== */
.video-section__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 45px auto;
}

.video-section__player video {
  width: 100%;
  display: block;
  cursor: pointer;
}

.video-section__player .video-section__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.video-section__player .video-section__play-icon.hidden {
  display: none;
}

body.single-post .video-section__player {
  margin-block: 0;
}

.video-toggle-btn {
  color: rgb(var(--clr--white));
  background: rgba(var(--clr--black), 0);
  padding: 0;
  border: 0;
  position: absolute;
  right: 35px;
  bottom: 25px;
  z-index: 999;
}

/* Single Article */
.single-article-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.single-article-wrapper__text-content img {
  margin: 35px auto 5px;
  display: block;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.single-article-wrapper__text-content img + small {
  margin-bottom: 35px;
}

.single-article-wrapper__text-content h2 {
  margin-bottom: 16px;
}

.single-article-wrapper__text-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

.single-article-wrapper__text-content a {
  color: currentColor;
}

/* ====== FOOTER ====== */
.footer {
  background-color: rgb(var(--clr--gray));
  padding-bottom: clamp(80px, 9vw, 180px);
}

.footer__logo {
  display: block;
  max-width: 210px;
  margin: 0 auto 25px;
}

.footer__logo img {
  height: auto;
}

.footer__content {
  color: rgb(var(--clr--white));
  padding-block: 50px;
  margin-block: 50px;
  border-top: 2px solid rgb(var(--clr--white), .2);
  border-bottom: 2px solid rgb(var(--clr--white), .2);
}

.footer__content_contact-details {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.footer__content_contact-heading {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 15px !important;
}

.footer__content_contact-details {
  max-width: 900px;
  margin: 0 auto;
}

.contact-section__contact-cta_button {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  background-color: rgb(var(--clr--gray));
  padding: 10px 30px !important;
  border-color: rgb(var(--clr--gray));
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.contact-section__contact-cta_button:hover {
  color: rgb(var(--clr--white)) !important;
  background-color: rgb(var(--clr--orange)) !important;
}

.footer__content .footer__social-grid {
  text-align: center;
  width: 260px;
  margin-top: 35px;
  justify-content: flex-end;
  gap: 15px;
}

.footer__content .footer__social-grid > * {
  text-decoration: none;
  width: 40px;
  height: 40px;
  background-color: rgb(var(--clr--white));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.footer__content .footer__social-grid a i {
  font-size: 20px;
  color: rgb(var(--clr--gray));
}

.footer__content .footer__social-grid a i[class*="youtube"] {
  margin-top: 1px;
}

.footer__content .footer__social-grid a:hover i {
  color: rgb(var(--clr--orange));
}

.footer__copyright {
  font-size: 14px;
  line-height: 16px;
  color: rgb(var(--clr--white));
  text-align: center;
}

.footer__partner-logos {
  justify-content: center;
}

.footer__partner-logos > * {
  width: 150px;
}