@font-face {
  font-family: "Montserrat";
  src: url(../assets/fonts/Montserrat-VariableFont_wght.ttf);
}

@font-face {
  font-family: "Lora";
  src: url(../assets/fonts/Lora-VariableFont_wght.ttf);
}

:root {
  --main-color: #77085a;
  --second-color: #e9bdbe;

  --theme-white: #fefefe;
  --black: #000;

  --header-fonts: "Montserrat", sans-serif;
  --normal-fonts: "Lora", sans-serif;

  --content-width: 1000px;
  --text-hover: #414141;

  --transparent-dark: rgba(0, 0, 0, 0.5);
  --transparent-light: rgba(255, 255, 255, 0.5);
  --box-shadow: -5px 5px 10px 4px rgba(0, 0, 0, 0.5);
  --box-shadow2: -5px 5px 10px 4px rgba(247, 8, 239, 0.409);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--normal-fonts);
}

body {
  background-color: var(--second-color);
}

#main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth !important;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #333;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-white);
  border-radius: 8px;
}

.animate__animated {
  animation-play-state: paused;
}

.reveal {
  position: relative;
  opacity: 0;
  overflow: hidden;
}  

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 0.7s ease-in;
}

.active.fade-left {
  animation: fade-left 0.7s ease-in;
}

.active.fade-right {
  animation: fade-right 0.7s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

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

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

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

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

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

/* Loading Coin */
.loading_screen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: var(--second-color);
  width: 100%;
  height: 100%;
  z-index: 1002;
  transition: all 0.3s ease-in-out;
}

.loading_screen.loaded {
  margin-top: -100vh;
}

.lds-hourglass,
.lds-hourglass:after {
  box-sizing: border-box;
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  color: var(--main-color);
  width: 80px;
  height: 80px;
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  100% {
    transform: rotate(1800deg);
  }
}

/* Pattern box*/
.custom-pattern {
  background: radial-gradient(farthest-side at -33.33% 50%,
      #0000 52%,
      #1a8fe5 54% 57%,
      #0000 59%) 0 calc(112px / 2),
    radial-gradient(farthest-side at 50% 133.33%,
      #0000 52%,
      #1a8fe5 54% 57%,
      #0000 59%) calc(112px / 2) 0,
    radial-gradient(farthest-side at 133.33% 50%,
      #0000 52%,
      #1a8fe5 54% 57%,
      #0000 59%),
    radial-gradient(farthest-side at 50% -33.33%,
      #0000 52%,
      #1a8fe5 54% 57%,
      #0000 59%),
    #e4e4ed;
  background-size: calc(112px / 4.667) 112px, 112px calc(112px / 4.667);
}

/* Top Header */
#top_header {
  background-color: var(--main-color);
  color: var(--theme-white);
  width: 100%;
  height: 40px;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#top_header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--content-width);
}

#top_header .content .part_1,
#top_header .content .part_2 {
  display: flex;
  gap: 1rem;
  align-items: center;
}

#top_header .content .part_2 {
  gap: 0.5rem;
}

#top_header .content .part_2 a img {
  margin-top: 5px;
  max-width: 25px;
  max-height: 25px;
}

#top_header .content a {
  text-decoration: none;
  color: var(--second-color);
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

#top_header .content a:hover {
  color: var(--theme-white);
}

/* Header Part */
#header {
  background: rgba(0, 0, 0, 0.5) url("../assets/slides/img5.jpg");
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-position: top, top !important;
  background-size: cover !important;
  background-blend-mode: multiply !important;
  min-height: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
  color: #fff;
  /* animation: fade 1s both; */
  transition: all 0.5s linear;
}

.image-fade {
  animation: fade 0.5s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#header.header_pageview {
  background: rgba(0, 0, 0, 0.5) url("../assets/slides/img5.jpg");
  min-height: 450px;
}

#header .content {
  width: 100%;


  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--transparent-light);
  padding: 0 1rem;
  border-radius: 0 0 6px 6px;
}

#header .content .sub_content {
  width: var(--content-width);

  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

#header .content .sub_content .logo_part {
  width: 37%;
  height: 120px;
}

#header .content .sub_content .logo_part img {
  width: 100%;
  height: 100%;
}

#header .content .sub_content nav ul {
  display: flex;
  gap: 1rem;
  align-items: center;
}

nav ul li {
  list-style-type: none;
  display: inline-flex;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--black);
  font-family: var(--header-fonts);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  transition: all 0.2s ease-in-out;
}

nav ul li a:hover,
nav ul li.active a,
nav ul li a.active {
  color: var(--main-color);
}

nav ul li:nth-child(2):not(#header .content nav ul li .sub_menu li) {
  padding: 1rem 0;

}

#header .content .sub_content nav ul li .sub_menu {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  background-color: var(--transparent-light);
  padding: 0.2rem 0.5rem;

  width: 120px;
  height: 45px;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.3rem;
}

#header .content .sub_content nav ul li:hover .sub_menu {
  display: flex;
}

.btn {
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--main-color);
  padding: 0.5rem 2rem;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: var(--main-color);
  color: var(--theme-white);
  transition: all 0.4s ease-in-out;
}

.btn:hover {
  color: var(--main-color);
  background: transparent;
  box-shadow: var(--box-shadow);
}

.btn2 {
  background-color: transparent;
  color: var(--second-color);
  border: 2px solid var(--second-color);
}

.btn2:hover {
  color: var(--black);
  background-color: var(--second-color);
}

/* .btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: var(--main-color);
  z-index: -1;
  transition: all 0.8s;
}

.btn:hover::before {
  width: 160%;
} */

#header .slideshow,
.page_view {
  width: var(--content-width);
  padding: 9.5rem 2rem;

  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;

  align-items: center;
}

#header .page_view {

  padding: 9.5rem 1rem;
  padding-top: 12rem;


}

#header .slideshow {
  width: 100%;
  overflow: hidden;
}

#header .slideshow .slideshow_text {
  width: var(--content-width);
}

h1 {
  font-family: var(--header-fonts);
  letter-spacing: 0.3rem;
  width: 60%;
}

#header .page_view .s1 {
  align-self: flex-start;

}

#header .page_view h1 {
  width: 100%;
  color: var(--second-color);
  font-weight: 900;
  font-size: 4em;

}

.arrow-left {
  left: 1rem;
}

.arrow-left,
.arrow-right {
  background: transparent;
  position: absolute;
  top: 40%;
  width: 3em;
  height: 3em;

  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  z-index: 90;
  transition: all 0.2s ease-in-out;
}

.arrow-left:hover,
.arrow-right:hover {
  background-color: var(--transparent-light);
}

.arrow-left i,
.arrow-right i {
  font-size: 2rem;
}

.arrow-right {
  right: 1rem;
}

.slideshow_text {
  display: flex;

  flex-direction: column;
  margin-left: 10rem;
  gap: 1.5rem;
  width: var(--content-width);
}

.slideshow_text p {
  width: 48%;
  line-height: 1.5rem;
}

.slideshow_text .btns_part {
  display: flex;
  gap: 1rem;
}

/* .slideshow_text button {
  display: none;
} */
.page_view small {
  word-spacing: 0.1rem;
}

.page_view small a {
  text-decoration: none;
  color: var(--theme-white);
  transition: 0.2s ease-in-out;
}

.page_view small a.active,
.page_view small a:hover {
  text-decoration: underline;
}

/* Section_1 */
#section_1 {
  padding: 4rem 0rem;

  width: var(--content-width);
}

#section_1 .container,
#section_2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .text_part {
  width: 52%;
}

.container .img_part {
  background: var(--transparent-dark);
  width: 45%;
  height: 100%;
}

.container .img_part img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.container .img_part img:hover {
  transform: scale(1.2);
}

.title_part {
  position: relative;
}

.title_part h2,
.title_txt h2 {
  font-family: var(--header-fonts);
  color: var(--main-color);
  font-size: 2em;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

.text_part {
  margin-top: 1.5rem;
  line-height: 2rem;
}

.text_part p {
  margin-top: 1rem;
  font-size: 18px;
}

.text_part .btn {
  margin-top: 1.5rem;
}

/* Section_2 */
#section_2 {
  padding: 4rem 0rem;

  width: var(--content-width);
}

#section_2 ol {
  margin-left: 2rem;
}

/* Section_3*/
#section_3 {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5) url("../assets/slides/img5.jpg");
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-position: top, top !important;
  background-size: cover !important;
  background-blend-mode: multiply !important;
  min-height: 500px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--theme-white);
}

#section_3 .content {
  width: var(--content-width);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
}

#section_3 .title_part h2 {
  color: var(--second-color);
}

#section_3 .content .container {
  display: flex;
  gap: 2rem;
}

.custom-swiper .txt_part {
  -webkit-user-select: text;
  /* Safari */
  -moz-user-select: text;
  /* Firefox */
  -ms-user-select: text;
  /* Internet Explorer/Edge */
  user-select: text;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera, and Firefox */
}

.custom-swiper .txt_part {
  position: relative;
  z-index: 10;
}

.custom-swiper .swiper-button-prev,
.custom-swiper .swiper-button-next {
  z-index: 5;
}

.custom-swiper [class^="swiper-button-"] {
  color: var(--second-color);
  width: 5px;
}

.custom-swiper .swiper-pagination {
  position: relative;
}

.custom-swiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--second-color);
  margin-top: 4rem !important;
}



.custom-swiper [class^="swiper-button-"]::after {
  width: 50px;
}

.swiper-container {
  padding: 1rem;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.activity_box {
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  border-radius: 8px;

  transition: all 0.3s ease-in-out;
}

.activity_box.achievements {
  height: 100%;
  width: 100%;
}

.activity_box .img_part {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  height: 300px;
  transition: all 0.3s ease-in-out;
}

.activity_box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  transition: all 0.5s ease-in-out;
}

.activity_box img:hover {
  transform: scale(1.2);
}

.activity_box:hover {
  box-shadow: var(--box-shadow);
}

.activity_box .txt_part {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity_box .txt_part p:nth-child(1) {
  font-size: small;
}

.activity_box .txt_part h3 {
  font-family: var(--header-font2);
  color: var(--main-color);
}

.activity_box .txt_part p:last-child {
  font-size: 16px;
  /* height: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.activity_box.achievements .txt_part p {
  font-size: 16px;
  line-height: 2rem;
}


/* Section_4 */
#section_4 {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

#section_4 .content {
  padding: 3rem 2rem;
  width: var(--content-width);
}

#section_4 .container {
  margin: 3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#section_4 .container .wrap {

  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 1rem;
}

.wrap .title h3 {
  color: var(--main-color);
  font-size: 3em;
  font-family: var(--header-font2);
}

.wrap .text p {
  font-weight: 800;
  font-size: 18px;
}

/* Section_5*/
#section_5 {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

#section_5 .content {
  padding: 0 2rem 3rem 2rem;
  width: var(--content-width);
  align-self: center;
  text-align: center;
}

#top {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 99;
  border: 1px solid var(--main-color);
  outline: none;
  background-color: var(--main-color);
  color: var(--theme-white);
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  font-size: 18px;
  transition: all 0.5s ease-in-out;
}

#top:hover {
  margin-bottom: 15px;
  background-color: transparent;
  box-shadow: 15px 20px 15px rgba(0, 0, 0, 0.3);
}

#top a {
  text-decoration: none;
  color: var(--theme-white);
  font-size: 18px;
}

/* ABOUT KUHABWO */


.about_1 .content {
  display: flex;
  gap: 1rem;
}

.about_1 .content.c2 {
  padding: 1rem;
  margin-top: 2rem;
  flex-direction: column;
  align-items: center;

}

.about_1 .content .part_1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about_1 .container_column {
  flex-direction: column;
}

.about_1 .container {
  display: flex;
  gap: 1rem;
  width: 100%;

}

.about_1 .container.org {
  margin-top: 2rem;
  flex-direction: column;
  align-items: center;
}

.box {
  width: 100%;
  height: 300px;
  background-color: var(--main-color);
  color: var(--theme-white);
  border-radius: 8px;
  padding: 1rem;
  transition: all .2s ease-in-out;
}

.box:hover {
  box-shadow: var(--box-shadow);
}

.Lbox {
  width: 100%;
  height: 100%;

}

.Tbox {
  background-color: rgba(255, 255, 255, 0.7);
  color: black;

}

.box .title_part h3 {
  color: var(--second-color);
  font-size: 2em;
  font-family: var(--header-font2);
}

.box .text_part {
  width: 100%;
}

.box ol,
.about_1 ol {
  padding: 0 0 0 1.5rem;
}

.box ol li:not(:first-child) {
  padding: 0.4rem 0;
}

.about_1 b {
  color: var(--second-color);
}

.about_1 .txt b {
  color: var(--main-color);
}

.about_1 .txt ol li {
  font-size: inherit;
}

/* TEAM PART */
.team_container {

  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.team_box {

  background-color: var(--main-color);
  color: var(--theme-white);
  padding: 1rem;
  width: 250px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: all .2s ease-in-out;
}

.team_box:hover {
  box-shadow: var(--box-shadow);
}

.team_box .img_part {
  background: var(--transparent-dark);
  width: 200px;
  height: 200px;
 
  border-radius: 50%;
  border: 5px solid var(--second-color);
}

.team_box .img_part img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.team_box .img_part img:hover {
  transform: scale(1.2);
  position: relative;
    bottom: 1rem;
}

.team_container .part_2 {
  gap: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.container.org .img_part{
    width: 250px;
}

/* ACTIVITIES PAGE */


.main_container {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.Cbox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.Cbox .title h3 {
  text-transform: uppercase;
}



/* GALLERY PAGE */
.gallery_container {
  background-color: var(--transparent-dark);
  height: 750px;
  overflow-y: auto;
  padding: 1rem;
  justify-content: center;

}

.gallery_box {
  height: 450px;
  width: 250px;
}

.gallery_box:hover {
  box-shadow: var(--box-shadow2);
}

.gallery_box .img_part {
  height: 250px;
  position: relative
}

.gallery_box .img_part img {
  height: 100%;
}


/* CONTACT PAGE */
.contact_1 .content {
  display: flex;
  justify-content: space-between;
}

.contact_1 .part_1 {
  width: 50%;
  padding-top: 2rem;

}



.contact_1 ul li {
  list-style-type: none;

  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 1rem;

}
.contact_1 ul li a{
    display: flex;
  align-items: center;
  gap: 1rem;
}
.contact_1 ul li:not(:first-child) {
  padding: 1rem 0;
}

.contact_1 ul i {

  color: var(--main-color);
  font-size: 2em;
}

/*.contact_1 ul li span {*/
/*  margin-left: 1rem;*/
/*}*/

.contact_1 a {
  text-decoration: none;
  color: inherit;
  transition: all .2s ease-in-out;
}

.contact_1 a:hover {
  color: var(--main-color);
}

.contact_1 .part_2 {
  width: 50%;
}

.contact_1 .part_2 .box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c_form .groupings {
  display: flex;
  gap: 1rem;
}

.c_form .input_group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

textarea {
  resize: none;
}


.contact_2 .container {
  margin-top: 2rem;
}

/* Footer */
#footer {
  padding: 3rem 2rem;
  padding-bottom: 1rem;
  width: 100%;
  background: var(--main-color);
  color: var(--theme-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#footer .content {
  width: var(--content-width);
  display: flex;
  justify-content: space-between;

  gap: 1rem;
}

#footer .content .part_1,
#footer .content .part_2,
#footer .content .part_3 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#footer .content .part_1 .logo_part {
  width: 300px;
  height: 100%;
}

#footer .content .part_1 img {
  width: 100%;
}

#footer h4 {
  font-weight: bold;
  color: var(--black);
  font-size: 22px;
}

#footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#footer ul li {
  list-style-type: none;
  position: relative;
}

#footer a {
  text-decoration: none;
  color: var(--second-color);

  transition: all 0.2s ease-in-out;
}

#footer a:hover {
  color: var(--theme-white);
}

#footer ul.socials {
  margin-top: 1rem;
  flex-direction: row;
  gap: 1rem;
}

#footer i {
  font-size: 20px;
}

#footer .content .part_2 {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#footer .box2 {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.subscribe_form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

form .input_group {
  width: 100%;
}

form input,
form textarea {
  border: none;
  background-color: var(--transparent-dark);
  color: var(--theme-white);
  padding: 0.8rem 0.5rem;
  width: 100%;
}

.form_btn {
  padding: 0.6rem 0.5rem;
}

.affiliates {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.affiliates img {
  width: 50px;
  height: 40px;
}

#footer hr {
  width: 100%;
  color: var(--black);
}

#footer .last_part {
  margin-top: 2rem;
  width: var(--content-width);
  display: flex;
  justify-content: space-between;
  position: relative;
}

#footer .last_part::before {
  content: "";
  position: absolute;
  top: -15%;
  width: 100%;
  height: 1px;
  background-color: var(--black);
}

.menu_btn,
nav.menu_part .btn_part {
  display: none;
}

.menu_btn p {
  font-size: 2rem;
  color: var(--main-color);
  cursor: pointer;
}

/* Medium to Small Screen Viewers */
@media (max-width: 800px) {
  :root {
    --content-width: 100%;
  }

  #top_header {
    padding: 1rem;
  }

  #top_header .content {

    gap: 0.5rem;
  }

  #top_header .content .part_1 a:nth-child(2) {
    display: none;
  }

  #header .content,
  #header .content .sub_content {
    width: 100%;
  }

  .menu_btn {
    display: flex;
    z-index: 1001;
  }

  .menu_btn.fixed {
    position: fixed;
    right: 1rem;
  }

  nav.menu_part {
    display: block;
    position: fixed;
    top: 0;
    left: -100vw;
    background: var(--second-color);
    height: 100vh !important;

    width: 100vw;
    padding-top: 5rem;
    border-radius: 0 3px 3px 0;
    z-index: 1000;
    transition: all 0.5s linear;
  }

  nav.menu_part.active {
    left: 0;
    box-shadow: 400px 1px 10px 3000px rgb(0 0 0 / 50%);
  }

  #header .content .sub_content nav ul {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    padding-top: 4rem;
  }

  nav ul li:nth-child(2):not(#header .content nav ul li .sub_menu li) {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #header .content .sub_content nav ul li .sub_menu {
    position: relative;
    top: 1rem;
    left: 0;
    width: 150px;
    height: 60px;
  }

  #header .content .sub_content nav ul li:hover .content nav ul li:nth-child(3) {
    margin-top: 4rem;
  }

  nav.menu_part .btn_part {
    display: flex;
    padding: 0 2rem;
  }

  #header .content .sub_content .logo_part {
    width: 80%;
  }

  #header .content .sub_content .button_part {
    display: none;
  }

  #header .slideshow,
  .page_view {
    padding: 9.5rem 1rem;
    padding-top: 10rem;
  }

  .slideshow_text {
    margin-left: 0;
  }

  .slideshow_text h1 {
    font-size: 1.5rem;
    width: 100%;
  }

  .slideshow_text p {
    width: 100%;
  }

  .arrow-left,
  .arrow-right {
    top: 90%;
    display: none;
  }

  .arrow-left {
    left: 1rem;
  }

  .arrow-right {
    right: 2rem;
  }

  .slideshow_text button {
    display: flex;
  }

  #section_1 {
    width: 100%;
    padding: 3rem 1rem;
    padding-bottom: 1rem;
  }

  #header .page_view h1 {
    font-size: 3em;
  }

  #section_1 .container {
    flex-direction: column;
    gap: 1rem;
  }


  #section_2 {
    padding: 1rem;
  }

  #section_2 .content {
    width: 100%;
    padding: 0;
  }

  #section_2 .container {
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .container .text_part,
  .container .img_part,
  .container.org .img_part,{
    width: 100%;
  }

  .about_1 .content,
  .about_2 .container,
  #section_1.contact_1 .container {
    flex-direction: column;
  }

  .activities_2 .content .button_part {
    text-align: center;
  }

  .box,
  .gallery_box {
    width: 100%;
  }

  #section_3 {
    padding: 1rem;
  }

  .title_part h2,
  .title_txt h2 {
    font-size: 1.7em;
  }

  #section_3 .content,
  #section_4 .content {
    padding: 3rem 1rem;
    width: 100%;
  }

  #section_3 .content .feed {
    width: 100%;
  }

  .partner_box {
    width: 150px;
    height: 100px;
  }

  #section_4 .content .container {
    gap: 0.5rem;
    flex-direction: column;
  }

  #section_1.about_1 {
    flex-direction: column;
  }

  #section_2.about_2 {
    width: 100%;
  }



  .text_container {
    columns: 1;
  }
.team_container, 
.team_container .part_2{
 flex-direction:column;
}
.team_box, 
.team_container .part_1{
 width:100%;
}
  .contact_1 .content {
    flex-direction: column;
    gap: 2rem;
  }
    
    .container .img_part,
    .container .text_part{
        width: 100%;
    }
  .contact_1 .part_1,
  .contact_1 .part_2 {
    width: 100%;
  }

  .c_form .groupings {
    gap: 0.5rem;
  }

  .contact_1 ul li {
    font-size: 20px;
  }

  #footer {
    padding: 3rem 0.5rem;
    padding-bottom: 1rem;
  }

  #footer .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  #footer ul {
    gap: 1rem;
  }


  #footer small {
    font-size: 0.65rem;
  }

  #footer .content .part_1,
  #footer .content .part_2,
  #footer .content .part_3 {
    align-items: center;
  }

  #footer .last_part {
    flex-direction: column;
    align-items: center;
  }



  #top {
    bottom: 70px;
    right: 5px;
  }

}