@font-face {
  font-family: "Self Modern";
  src: url("../../assets/fonts/SelfModern-Regular.woff2") format("woff2"), url("../../assets/fonts/SelfModern-Regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Self Modern";
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

header {
  padding: 30px 70px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  overflow-x: clip;
}
header .logo_holder,
header .nav_holder nav .words_holder {
  text-decoration: none;
}
header .logo_holder .words_holder_logo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}
header .logo_holder .words_holder_logo img {
  width: 100%;
}
header .logo_holder .bird_logo {
  display: none;
}
header .logo_holder .recent_holder {
  display: none;
}
header .nav_holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #3e469c;
  -webkit-box-shadow: 0px 40px 100px 100px rgb(62, 70, 156);
  -moz-box-shadow: 0px 40px 100px 100px rgb(62, 70, 156);
  box-shadow: 0px 40px 100px 100px rgb(62, 70, 156);
  height: 55vh;
  z-index: 1;
  transform: translateY(-160%);
  transition: all 0.5s ease;
}
header .nav_holder nav {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  padding: 35px 70px 0 70px;
}
header .nav_holder nav .words_holder {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
header .nav_holder nav .words_holder .mfl_holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header .nav_holder nav .words_holder .mfl_holder p {
  color: #FFF;
  white-space: nowrap;
}
header .nav_holder nav .main_nav_holder {
  display: flex;
  justify-content: space-around;
  gap: 50px;
}
header .nav_holder nav .main_nav_holder .main_nav {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
header .nav_holder nav .main_nav_holder .main_nav li a {
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
  display: flex;
  transition: all 0.5s ease;
}
header .nav_holder nav .main_nav_holder .main_nav li a:hover {
  transform: translateX(10px);
}
header .nav_holder nav .main_nav_holder .main_nav li .under_category li a {
  font-size: 20px;
  font-weight: 400;
}
header .open_nav_holder {
  transform: translateY(0);
}
header .hamburger {
  width: 70px;
  height: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  margin-top: 20px;
  z-index: 99;
  cursor: pointer;
}
header .hamburger .box {
  width: 100%;
  height: 2px;
  background-color: #3E469C;
  position: relative;
  transition: all 0.5s ease;
}
header .hamburger .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #3E469C;
  transform: translateY(16px);
  transition: all 0.5s ease;
}
header .hamburger .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #3E469C;
  transform: translateY(-16px);
  transition: all 0.5s ease;
}
header .open_hamburger .box {
  background-color: #FFF;
}
header .open_hamburger .box {
  background-color: transparent;
}
header .open_hamburger .box::before {
  background-color: #FFF;
  transform: rotate(45deg)
}
header .open_hamburger .box::after {
  background-color: #FFF;
  transform: rotate(-45deg)
}

header.second_header {
  position: relative;
  background-image: url("../../assets/images/Second_Header_BG.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

header.third_header {
  position: relative;
}

@media only screen and (max-width: 1440px) {
  header {
    padding: 30px 70px 0 30px;
  }
  header .nav_holder {
    height: 70vh;
  }
  header .nav_holder nav {
    grid-template-columns: 0.5fr 2fr;
    padding: 30px 70px 0 70px;
  }
  header .nav_holder nav .words_holder .mfl_holder {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  header .nav_holder {
    height: 90vh;
  }
  header .nav_holder nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  header .nav_holder nav .main_nav_holder {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1024px) {
  header .nav_holder {
    height: 115vh;
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding: 30px;
  }
  header .nav_holder {
    transform: translateY(-200%);
    height: 150vh;
  }
  header .nav_holder nav .words_holder .mfl_holder p {
    display: none;
  }
  header .open_nav_holder {
    transform: translateY(0);
  }
  header .hamburger {
    padding-top: 10px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 500px) {
  header {
    padding: 30px;
  }
  header .logo_holder .hand_logo {
    display: none;
  }
  header .logo_holder .bird_logo {
    display: block;
    width: 90%;
  }
  header .logo_holder .words_holder_logo {
    display: none;
  }
  header .logo_holder .recent_holder {
    display: flex;
    align-items: center;
  }
  header .logo_holder .recent_holder h2 {
    font-size: 26px;
    line-height: 1;
  }
  header .nav_holder nav {
    padding: 30px;
  }
  header .nav_holder nav .main_nav li a {
    font-size: 32px;
  }
  header .hamburger {
    padding-top: 0;
  }
}
footer {
  margin-top: 150px;
  padding-bottom: 120px;
  padding-top: 30px;
  position: relative;
}
footer .footer_holder .footer_logo_holder {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  margin-bottom: 75px;
}
footer .footer_holder .footer_logo_holder .mfl_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer .footer_holder .footer_logo_holder .mfl_list li {
  color: #3E469C;
  font-size: 18px;
}
footer .footer_holder .social_media {
  display: flex;
  gap: 40px;
  margin-bottom: 45px;
}
footer .footer_holder .footer_donate {
  display: flex;
  justify-content: space-between;
}
footer .footer_holder .footer_donate .footer_donate_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 25px;
  width: 60%;
}
footer .footer_holder .footer_donate .footer_donate_list li a {
  text-decoration: none;
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
  color: #3E469C;
  transition: all 0.5s ease;
  display: flex;
}
footer .footer_holder .footer_donate .footer_donate_list li a:hover {
  transform: translateX(10px);
}
footer .footer_holder .footer_donate .donate_btn {
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  color: #3E469C;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  border: 1px solid #3E469C;
  padding: 0 55px;
  transition: all 0.5s ease;
  text-decoration: none;
}
footer .footer_holder .footer_donate .donate_btn:hover {
  color: #FF9900;
  border: 1px solid #FF9900;
}

@media only screen and (max-width: 1200px) {
  footer {
    padding-bottom: 80px;
  }
  footer .footer_holder .footer_donate .footer_donate_list {
    column-gap: 70px;
    row-gap: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  footer .footer_holder .footer_donate {
    flex-direction: column;
    gap: 20px;
  }
  footer .footer_holder .footer_donate .footer_donate_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 10px;
  }
  footer .footer_holder .footer_donate .donate_btn {
    width: fit-content;
    align-self: center;
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 768px) {
  footer {
    margin-top: 50px;
  }
  footer .footer_holder .footer_logo_holder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  footer .footer_holder .footer_logo_holder img {
    width: 85%;
  }
  footer .footer_holder .social_media {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  footer .footer_holder .social_media .social_media_list {
    justify-content: center;
  }
  footer .footer_holder .social_media .social_media_list li a {
    display: flex;
  }
  footer .footer_holder .footer_donate .footer_donate_list {
    column-gap: 0;
  }
  footer .footer_holder .footer_donate .footer_donate_list li a {
    font-size: 18px;
  }
}
section.red_car_bg .red_car {
  width: 100%;
}
section.red_car_bg .red_car_mobile {
  display: none;
}

@media only screen and (max-width: 500px) {
  section.red_car_bg.container {
    padding: 0;
  }
  section.red_car_bg.container .red_car {
    display: none;
  }
  section.red_car_bg.container .red_car_mobile {
    display: block;
    width: 100%;
  }
}
section.under_car_section {
  position: relative;
}
section.under_car_section .under_car_section_holder {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  top: -130px;
  gap: 100px;
  position: relative;
}
section.under_car_section .under_car_section_holder .under_car_first h5 {
  display: none;
}
section.under_car_section .under_car_section_holder .under_car_first p {
  margin-top: 25px;
}
section.under_car_section .under_car_section_holder .under_car_first .wire_title {
  display: flex;
  gap: 10px;
  margin-top: 80px;
  margin-bottom: 55px;
}
section.under_car_section .under_car_section_holder .under_car_first .wire_title img {
  height: 100%;
}
section.under_car_section .under_car_section_holder .under_car_first .book_img {
  width: 100%;
}
section.under_car_section .under_car_section_holder .under_car_second {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 {
  padding-top: 150px;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 h5 {
  width: 50%;
  margin-bottom: 95px;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 a {
  text-decoration: none;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 a img {
  width: 100%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 a h2 {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 a p {
  transition: all 0.3s ease;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 a:hover img {
  transform: translateY(-30px);
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 a:hover h2 {
  color: #FF9900;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 a:hover p {
  color: #FF9900;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 {
  padding-top: 75px;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a {
  text-decoration: none;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a img {
  width: 100%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a h2{
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a h6 {
  transition: all 0.3s ease-in-out;
}

section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a p {
  transition: all 0.3s ease;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a:hover img {
  transform: translateY(-30px);
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a:hover h2,
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a:hover h6 {
  color: #FF9900;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a:hover h6 {
  border-color: #FF9900;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 a:hover p {
  color: #FF9900;
}
section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 h6 {
  font-size: 16px;
  font-weight: 400;
  color: #3E469C;
  line-height: 24px;
  border-top: 1px solid #3E469C;
  border-bottom: 1px solid #3E469C;
  padding: 20px 0;
  margin-top: 40px;
}

footer h5 {
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 1024px) {
  section.under_car_section .under_car_section_holder {
    top: -100px;
    gap: 50px;
  }
  section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 h5 {
    width: 80%;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  section.under_car_section .under_car_section_holder {
    grid-template-columns: 1fr;
    top: 0;
    position: relative;
    gap: 50px;
  }
  section.under_car_section .under_car_section_holder .under_car_first {
    order: 2;
  }
  section.under_car_section .under_car_section_holder .under_car_first p {
    margin-top: 25px;
  }
  section.under_car_section .under_car_section_holder .under_car_first .wire_title {
    display: flex;
    gap: 10px;
    margin-top: 80px;
    margin-bottom: 55px;
  }
  section.under_car_section .under_car_section_holder .under_car_first .wire_title img {
    height: 100%;
  }
  section.under_car_section .under_car_section_holder .under_car_first .book_img {
    width: 100%;
  }
  section.under_car_section .under_car_section_holder .under_car_second {
    order: 1;
  }
  section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 h5 {
    width: 80%;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 500px) {
  section.under_car_section .under_car_section_holder {
    gap: 30px;
    top: -75px;
  }
  section.under_car_section .under_car_section_holder .under_car_first {
    order: 1;
  }
  section.under_car_section .under_car_section_holder .under_car_first h5 {
    display: block;
    width: 40%;
    margin-bottom: 20px;
  }
  section.under_car_section .under_car_section_holder .under_car_first p {
    display: none;
  }
  section.under_car_section .under_car_section_holder .under_car_first .wire_title {
    display: none;
  }
  section.under_car_section .under_car_section_holder .under_car_first .book_img {
    display: none;
  }
  section.under_car_section .under_car_section_holder .under_car_second {
    order: 2;
    overflow-x: scroll;
    padding-bottom: 50px;
  }
  section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 {
    padding-top: 0;
    order: 2;
    width: 240px;
  }
  section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content1 h5 {
    display: none;
  }
  section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 {
    padding-top: 0;
    order: 1;
    width: 240px;
  }
  section.under_car_section .under_car_section_holder .under_car_second .under_car_second_content2 h6 {
    display: none;
  }
}
section.donate .donate_holder {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  padding: 0 0;
  align-items: center;
  position: relative;
  top: -50px;
}
section.donate .donate_holder .donate_first_content {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 1fr;
  background-color: #FF9900;
  align-items: center;
  padding-left: 70px;
  width: 100%;
  transition: all 0.5s ease;
}
section.donate .donate_holder .donate_first_content .p_holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background-color: #FF9900;
  height: 360px;
  align-items: center;
  transition: all 0.5s ease;
}
section.donate .donate_holder .donate_first_content .p_holder p {
  color: #FFF;
}
section.donate .donate_holder .donate_first_content .p_holder p span {
  color: #3E469C;
}
section.donate .donate_holder .donate_first_content h4 {
  transform: rotate(-90deg);
  justify-self: flex-end;
  text-transform: uppercase;
  color: #FFF;
  margin-right: -25px;
}
section.donate .donate_holder .donate_first_content::before {
  background-image: url("../../assets/images/Book.jpg");
  background-repeat: no-repeat;
  content: "";
  top: -67%;
  left: 70px;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}
section.donate .donate_holder .donate_first_content:hover {
  width: 115%;
}
/* section.donate .donate_holder .donate_first_content:hover .p_holder {
  gap: 60px;
} */

@media only screen and (max-width: 1220px) {
  section.donate .donate_holder {
    padding: 0 75px 0 65px;
    top: -50px;
  }
  section.donate .donate_holder .donate_first_content {
    padding-left: 40px;
  }
  section.donate .donate_holder .donate_first_content .p_holder {
    height: 360px;
  }
  section.donate .donate_holder .donate_first_content::before {
    left: 40px;
  }
}
@media only screen and (max-width: 1120px) {
  section.donate .donate_holder {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    padding: 0 75px 0 65px;
    top: 0;
  }
  section.donate .donate_holder .donate_first_content {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr;
    background-color: #FF9900;
    align-items: center;
    padding-left: 70px;
    width: 100%;
    transition: all 0.5s ease;
  }
  section.donate .donate_holder .donate_first_content .p_holder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: #FF9900;
    height: 360px;
    align-items: center;
    transition: all 0.5s ease;
  }
  section.donate .donate_holder .donate_first_content .p_holder p {
    color: #FFF;
  }
  section.donate .donate_holder .donate_first_content .p_holder p span {
    color: #3E469C;
  }
  section.donate .donate_holder .donate_first_content::before {
    left: 40px;
    width: 55%;
  }
}
@media only screen and (max-width: 1024px) {
  section.donate .donate_holder {
    grid-template-columns: 1fr;
    padding: 0;
    top: -100px;
  }
  section.donate .donate_holder .donate_first_content {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr;
    background-color: #FF9900;
    align-items: center;
    padding-left: 70px;
    width: 100%;
  }
  section.donate .donate_holder .donate_first_content .p_holder {
    height: 300px;
  }
  section.donate .donate_holder .donate_first_content::before {
    content: unset;
  }
  section.donate .donate_holder .donate_first_content:hover {
    width: 100%;
  }
  section.donate .donate_holder .donate_first_content:hover .p_holder {
    gap: 20px;
  }
  section.donate .donate_holder .donate_second_content {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  section.donate .donate_holder {
    grid-template-columns: 1fr;
    padding: 0;
    top: 0;
  }
  section.donate .donate_holder .donate_first_content {
    grid-template-columns: 1fr;
    align-items: center;
    padding-left: 0;
    width: 100%;
    padding: 20px;
  }
  section.donate .donate_holder .donate_first_content .p_holder {
    height: auto;
    grid-template-columns: 1fr;
    order: 2;
  }
  section.donate .donate_holder .donate_first_content h4 {
    order: 1;
    transform: rotate(0);
    margin-right: 0;
    justify-self: flex-start;
    margin-bottom: 110px;
  }
  section.donate .donate_holder .donate_first_content::before {
    content: unset;
  }
  section.donate .donate_holder .donate_first_content:hover {
    width: 100%;
  }
  section.donate .donate_holder .donate_first_content:hover .p_holder {
    gap: 20px;
  }
  section.donate .donate_holder .donate_second_content {
    display: none;
  }
}
section.publications .publications_holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
section.publications .publications_holder .publications_content {
  display: flex;
  flex-direction: column;
}
section.publications .publications_holder .publications_content .publications_title {
  padding-bottom: 55px;
}
section.publications .publications_holder .publications_content a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding-left: 60px;
}
section.publications .publications_holder .publications_content a img {
  margin: 0 auto 25px 0;
  transition: all 0.5s ease;
}
section.publications .publications_holder .publications_content a p {
  transition: all 0.5s ease;
}
section.publications .publications_holder .publications_content a:hover img {
  transform: translateY(-20px);
}
section.publications .publications_holder .publications_content a:hover p {
  color: #FF9900;
}
section.publications .publications_holder .publications_content h5 {
  width: 50%;
  margin: 0 0 60px auto;
}
section.publications .publications_holder .publications_content:last-child {
  padding-top: 100px;
}

@media only screen and (max-width: 1200px) {
  section.publications .publications_holder {
    gap: 50px;
  }
  section.publications .publications_holder .publications_content a {
    padding-left: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  section.publications .publications_holder {
    gap: 40px;
  }
  section.publications .publications_holder .publications_content a {
    padding-left: 0;
  }
  section.publications .publications_holder .publications_content h5 {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  section.publications {
    margin-top: 30px;
  }
  section.publications .publications_holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  section.publications .publications_holder .publications_content a {
    padding-left: 0;
  }
  section.publications .publications_holder .publications_content h5 {
    display: none;
  }
  section.publications .publications_holder .publications_content:nth-child(2) {
    padding-top: 90px;
  }
  section.publications .publications_holder .publications_content:last-child {
    padding-top: 0;
    grid-column: 1/-1;
    width: 50%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 500px) {
  section.publications {
    margin-top: 30px;
    overflow-x: scroll;
    padding-bottom: 50px;
  }
  section.publications .publications_holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 500px;
  }
  section.publications .publications_holder .publications_content a {
    padding-left: 0;
  }
  section.publications .publications_holder .publications_content h5 {
    display: none;
  }
  section.publications .publications_holder .publications_content:nth-child(2) {
    padding-top: 90px;
  }
  section.publications .publications_holder .publications_content:last-child {
    padding-top: 0;
    grid-column: 1/-1;
    width: 50%;
    margin: 0 auto;
  }
}
section.bird_section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: flex-end;
}
section.bird_section .bird_content img {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  section.bird_section {
    padding: 30px;
    grid-template-columns: 1fr;
  }
  section.bird_section .bird_content img {
    display: none;
  }
}
section.news_and_more {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 100px;
  margin-top: 30px;
}
section.news_and_more .news_and_more_content h4 {
  line-height: 46px;
  margin-bottom: 60px;
}
section.news_and_more .news_and_more_content .text_holder {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
section.news_and_more .news_and_more_content .text_holder .news_date_list {
  margin-top: 130px;
}
section.news_and_more .news_and_more_content .text_holder .news_date_list li {
  padding: 12px;
  border-top: 1px dashed #3E469C;
  border-bottom: 1px dashed #3E469C;
}
section.news_and_more .news_and_more_content .text_holder .news_date_list li:first-child {
  border-bottom: none;
}
section.news_and_more .news_and_more_content .text_holder .news_date_list li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #3E469C;
  display: flex;
  text-decoration: none;
  transition: all 0.5s ease;
}
section.news_and_more .news_and_more_content .text_holder .news_date_list li a:hover {
  transform: translateX(10px);
}
section.news_and_more .news_and_more_content h5 {
  margin-bottom: 110px;
}
section.news_and_more .news_and_more_content .news_holder h4 {
  margin-bottom: 40px;
  text-transform: uppercase;
}
section.news_and_more .news_and_more_content .news_holder .news_list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 100px;
}
section.news_and_more .news_and_more_content .news_holder .news_list li a {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  color: #3E469C;
  display: flex;
  transition: all 0.5s ease;
}
section.news_and_more .news_and_more_content .news_holder .news_list li a:hover {
  transform: translateX(20px);
}
section.news_and_more .news_and_more_content .donate_news_holder {
  background-color: #FF9900;
  padding: 40px 30px 30px 30px;
  margin-bottom: 35px;
}
section.news_and_more .news_and_more_content .donate_news_holder .doante_news_link {
  font-size: 35px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 100px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFF;
  transition: all 0.5s ease;
  display: flex;
}
section.news_and_more .news_and_more_content .donate_news_holder .doante_news_link:hover {
  transform: translateX(20px);
}
section.news_and_more .news_and_more_content .donate_news_holder .donate_text {
  display: flex;
  flex-direction: column;
  gap: 55px;
}
section.news_and_more .news_and_more_content .donate_news_holder .donate_text .donate_text_link {
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.5s ease;
}
section.news_and_more .news_and_more_content .donate_news_holder .donate_text .donate_text_link span {
  color: #3E469C;
}
section.news_and_more .news_and_more_content .donate_news_holder .donate_text .donate_text_link:hover {
  transform: translateX(10px);
}

@media only screen and (max-width: 1024px) {
  section.news_and_more {
    gap: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  section.news_and_more {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  section.news_and_more .news_and_more_content h5 {
    margin-bottom: 30px;
  }
  section.news_and_more .news_and_more_content .text_holder .news_date_list {
    margin-top: 30px;
  }
  section.news_and_more .news_and_more_content .news_holder .news_list {
    margin-bottom: 50px;
  }
  section.news_and_more .news_and_more_content .donate_news_holder .doante_news_link {
    margin-bottom: 50px;
  }
}
section.category_news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 130px;
}
section.category_news .category_news_holder {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
section.category_news .category_news_holder a {
  text-decoration: none;
}
section.category_news .category_news_holder a .img_holder {
  margin-bottom: 20px;
  transform: translateY(0);
  transition: transform 0.5s ease;
}
section.category_news .category_news_holder a .img_holder img {
  width: 100%;
}
section.category_news .category_news_holder a h2 {
  margin-bottom: 25px;
  transition: color 0.5s ease;
}
section.category_news .category_news_holder a p {
  transition: color 0.5s ease;
}
section.category_news .category_news_holder a p span {
  font-weight: 700;
}
section.category_news .category_news_holder a:hover .img_holder {
  transform: translateY(-30px);
}
section.category_news .category_news_holder a:hover h2 {
  color: #FF9900;
}
section.category_news .category_news_holder a:hover p {
  color: #FF9900;
}
section.category_news .category_news_holder .category_image_holder img {
  width: 100%;
}
section.category_news .load_more_holder {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.category_news .load_more_holder button {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #3E469C;
  padding: 15px 25px;
  border: 1px solid #3E469C;
  background-color: transparent;
  transition: all 0.5s ease;
}
section.category_news .load_more_holder button:hover {
  border: 1px solid #FF9900;
  color: #FF9900;
}

@media only screen and (max-width: 768px) {
  section.category_news {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  section.category_news .category_news_holder a h2 {
    display: block;
  }
  section.category_news .category_news_holder .category_image_holder {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  section.category_news {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
section.who_we_are {
  margin-top: 130px;
}
section.who_we_are h3 {
  margin-bottom: 50px;
}
section.who_we_are .who_we_are_holder {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
section.who_we_are .who_we_are_holder .who_we_are_content .img_holder {
  margin-bottom: 20px;
  transform: translateY(0);
  transition: transform 0.5s ease;
}
section.who_we_are .who_we_are_holder .who_we_are_content .img_holder img {
  width: 100%;
}
section.who_we_are .who_we_are_holder .who_we_are_content h2 {
  margin-bottom: 25px;
  transition: color 0.5s ease;
}
section.who_we_are .who_we_are_holder .who_we_are_content p {
  transition: color 0.5s ease;
}
section.who_we_are .who_we_are_holder .who_we_are_content:hover .img_holder {
  transform: translateY(-30px);
}
section.who_we_are .who_we_are_holder .who_we_are_content:hover h2 {
  color: #FF9900;
}
section.who_we_are .who_we_are_holder .who_we_are_content:hover p {
  color: #FF9900;
}
section.who_we_are .who_we_are_holder .who_we_are_content_splash {
  position: relative;
}
section.who_we_are .who_we_are_holder .who_we_are_content_splash img {
  position: absolute;
  bottom: -17%;
}
section.who_we_are .who_we_are_holder_second {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
section.who_we_are .who_we_are_holder_second .who_we_are_content .img_holder {
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}
section.who_we_are .who_we_are_holder_second .who_we_are_content .img_holder img {
  width: 100%;
}
section.who_we_are .who_we_are_holder_second .who_we_are_content h2 {
  margin-bottom: 25px;
  transition: color 0.5s ease;
}
section.who_we_are .who_we_are_holder_second .who_we_are_content p {
  transition: color 0.5s ease;
}
section.who_we_are .who_we_are_holder_second .who_we_are_content:hover .img_holder {
  transform: translateY(-30px);
}
section.who_we_are .who_we_are_holder_second .who_we_are_content:hover h2 {
  color: #FF9900;
}
section.who_we_are .who_we_are_holder_second .who_we_are_content:hover p {
  color: #FF9900;
}
section.who_we_are .who_we_are_holder_second .who_we_are_content_second {
  padding-top: 115px;
}

@media only screen and (max-width: 1440px) {
  section.who_we_are .who_we_are_holder .who_we_are_content_splash {
    position: relative;
  }
  section.who_we_are .who_we_are_holder .who_we_are_content_splash img {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  section.who_we_are .who_we_are_holder .who_we_are_content_splash {
    position: relative;
  }
  section.who_we_are .who_we_are_holder .who_we_are_content_splash img {
    width: 100%;
    bottom: 0;
  }
}
@media only screen and (max-width: 1024px) {
  section.who_we_are .who_we_are_holder {
    grid-template-columns: 1fr;
  }
  section.who_we_are .who_we_are_holder .who_we_are_content_splash {
    display: none;
  }
  section.who_we_are .who_we_are_holder .who_we_are_content_splash img {
    width: 100%;
    bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  section.who_we_are {
    margin-top: 0;
  }
  section.who_we_are .who_we_are_holder_second .who_we_are_content_second {
    padding-top: 0;
  }
}
@media only screen and (max-width: 500px) {
  section.who_we_are .who_we_are_holder {
    overflow-x: scroll;
  }
  section.who_we_are .who_we_are_scroll {
    overflow-x: scroll;
  }
  section.who_we_are .who_we_are_scroll .who_we_are_holder_second {
    width: 500px;
    gap: 20px;
  }
}
section.contribute_story {
  margin-top: 40px;
}
section.contribute_story h2 {
  margin-bottom: 40px;
}
section.contribute_story form .contribure_story_holder {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
section.contribute_story form .contribure_story_holder .contribure_story_content {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
section.contribute_story form .contribure_story_holder .contribure_story_content > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.contribute_story form .contribure_story_holder .contribure_story_content > div label {
  font-size: 26px;
  font-weight: 400;
  color: #3E469C;
}
section.contribute_story form .contribure_story_holder .contribure_story_content > div input {
  height: 45px;
  border: 1px solid #3E469C;
  outline-color: #FF9900;
  padding-left: 10px;
}
section.contribute_story form .contribure_story_holder .contribure_story_content_spark {
  position: relative;
}
section.contribute_story form .contribure_story_holder .contribure_story_content_spark img {
  position: absolute;
  top: 220px;
  left: -50px;
}
section.contribute_story form .radio_holder {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.contribute_story form .radio_holder .radio_content {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.contribute_story form .radio_holder .radio_content label {
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  color: #3E469C;
}
section.contribute_story form .radio_holder textarea {
  border: 1px solid #3E469C;
}
section.contribute_story form button {
  margin-top: 30px;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  color: #3E469C;
  background-color: transparent;
  padding: 20px;
  border: 1px solid #3E469C;
  transition: all 0.5s ease;
}
section.contribute_story form button:hover {
  border: 1px solid #FF9900;
  color: #FF9900;
}

section.contribute_story_second {
  margin-top: 130px;
}

@media only screen and (max-width: 1440px) {
  section.contribute_story form .contribure_story_holder .contribure_story_content_spark img {
    width: 450px;
    top: 160px;
    left: -50px;
  }
}
@media only screen and (max-width: 1200px) {
  section.contribute_story form .contribure_story_holder .contribure_story_content_spark img {
    width: 400px;
    top: 200px;
  }
}
@media only screen and (max-width: 1024px) {
  section.contribute_story form .contribure_story_holder {
    grid-template-columns: 1fr;
  }
  section.contribute_story form .contribure_story_holder .contribure_story_content_spark img {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  section.contribute_story {
    margin-top: 0;
  }
}
section.contact_us {
  margin-top: 55px;
}
section.contact_us h2 {
  margin-bottom: 45px;
}
section.contact_us .map_holder {
  margin-bottom: 45px;
}
section.contact_us .map_holder iframe {
  width: 100%;
  height: 545px;
}
section.contact_us .form_holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
section.contact_us .form_holder .form_content .contact_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.contact_us .form_holder .form_content .contact_list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 400;
  color: #3E469C;
  text-decoration: none;
  transition: transform 0.5s ease;
}
section.contact_us .form_holder .form_content .contact_list li a:hover {
  transform: translateY(-5px);
}
section.contact_us .form_holder .form_content form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
section.contact_us .form_holder .form_content form > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.contact_us .form_holder .form_content form > div label {
  font-size: 26px;
  font-weight: 400;
  color: #3E469C;
}
section.contact_us .form_holder .form_content form > div input {
  height: 45px;
  border: 1px solid #3E469C;
  padding-left: 10px;
  outline-color: #FF9900;
}
section.contact_us .form_holder .form_content form > div textarea {
  border: 1px solid #3E469C;
  padding-top: 10px;
  padding-left: 10px;
  outline-color: #FF9900;
}
section.contact_us .form_holder .form_content form button {
  width: fit-content;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  color: #3E469C;
  padding: 20px;
  border: 1px solid #3E469C;
  transition: all 0.5s ease;
  background-color: transparent;
}
section.contact_us .form_holder .form_content form button:hover {
  border: 1px solid #FF9900;
  color: #FF9900;
}

@media only screen and (max-width: 768px) {
  section.contact_us .form_holder {
    grid-template-columns: 1fr;
  }
}
section.glimpse_collection {
  margin-top: 130px;
}
section.glimpse_collection h3 {
  margin-bottom: 40px;
}
section.glimpse_collection .glimpse_collection_holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_holder .img_holder {
  margin-bottom: 20px;
  transform: translateY(0);
  transition: transform 0.5s ease;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_holder .img_holder img {
  width: 100%;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_holder h2 {
  margin-bottom: 25px;
  transition: color 0.5s ease;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_holder p {
  transition: color 0.5s ease;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_holder:hover .img_holder {
  transform: translateY(-30px);
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_holder:hover h2 {
  color: #FF9900;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_holder:hover p {
  color: #FF9900;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_quote {
  display: flex;
  gap: 15px;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_quote h3 {
  margin: 0;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_splash {
  position: relative;
  height: 570px;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_splash img {
  position: absolute;
  left: -100px;
}
section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content_second {
  padding-top: 120px;
}

@media only screen and (max-width: 768px) {
  section.glimpse_collection {
    margin-top: 0;
  }
  section.glimpse_collection .glimpse_collection_holder {
    grid-template-columns: 1fr;
  }
  section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_quote {
    display: flex;
    gap: 15px;
  }
  section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_quote h3 {
    margin: 0;
  }
  section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content .content_splash {
    display: none;
  }
  section.glimpse_collection .glimpse_collection_holder .glimpse_collection_content_second {
    padding-top: 0;
  }
}
h2 {
  font-size: 49px;
  font-weight: 400;
  line-height: 1;
  color: #3E469C;
}

h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  color: #3E469C;
}

h4 {
  font-size: 35px;
  font-weight: 400;
  line-height: 24px;
  color: #3E469C;
}

h5 {
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #3E469C;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #3E469C;
}

.social_media_list {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
.social_media_list li a {
  display: flex;
  transition: all 0.5s ease;
}
.social_media_list li a:hover {
  transform: translateY(-5px);
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 35px;
  }
  .container {
    padding: 0 30px;
  }
}

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