@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Didact+Gothic&family=Gabarito:wght@400..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*-------------------------------header-------------------------------*/
.header_section {
    background-color: #ff6700;
    color: white;
    padding: 6rem 2rem 0 2rem;
    position: relative;
    height: 720px;
}
.header_container {
    max-width: 1200px;
    margin: 4% auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
}
.text_content {
    flex: 1 1 500px;
    position: relative;
    bottom: 51px;
}

.text_content img{
    width: 260px;
    position: relative;
    bottom: 95px
}

.header_title {
    font-weight: 700;
    font-size: 2.7rem;
    line-height: 1.3;
}
.header_sub_title {
    font-size: 1.3rem;
    color: #f2f2f2;
    margin-top: 1.5rem;
    line-height: 30px;
}
.header_sub_title a {
    color: white;
    text-decoration: underline;
}
.cards_boxes {
    flex: 1 1 400px;
    background-color: rgb(255 255 255 / 26%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.cards_item {
    background: white;
    color: black;
    border-radius: 0.75rem;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.cards_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.cards_item .cards_text {
    font-weight: 700;
    font-size: 1rem;
}

.cards_text a{
    text-decoration: none;
    color: #193153;
}
.img_btn_head{
    width: 50px;
}
.wave {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .header_container {
        flex-direction: column;
        text-align: center;
    }
    .header_title {
        font-size: 2rem;
    }
}
/*-------------------------header_page----------------------------*/
.header_section_page {
    background-color: #ff6700;
    color: white;
    padding: 6rem 2rem 0 2rem;
    position: relative;
    height: 140px;
    position: relative;
}

.logo_header_page_img{
    position: absolute;
    top: 2px;
    left: 71px;
    width: 220px;
    height: auto;
    z-index: 10;
}

.wave_page {
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
}

/* -------------------HOME_button------------------ */
@media(min-width:300px) and (max-width:765px){
    .button_home_header {
        position: absolute;
        top: 7px;
        left: 84%;
        transform: translateX(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #fff;
        border: none;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0px 0px 0px 4px #ffffff;
        margin-top: 10px;
    }
}
@media(min-width:768px) and (max-width:990px){
    .button_home_header {
        position: absolute;
        top: 7px;
        left: 87%;
        transform: translateX(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #fff;
        border: none;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0px 0px 0px 4px #ffffff;
        margin-top: 10px;
    }
}
@media(min-width:992px) and (max-width:1190px){
    .button_home_header {
        position: absolute;
        top: 7px;
        left: 90%;
        transform: translateX(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #fff;
        border: none;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0px 0px 0px 1px #ffffff;
        margin-top: 10px;
    }
}
@media(min-width:1200px){
    .button_home_header {
        position: absolute;
        top: 7px;
        left: 93%;
        transform: translateX(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #fff;
        border: none;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0px 0px 0px 4px #ffffff;
        margin-top: 10px;
    }
}
.img_button_home_header {
    width: 25px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    z-index: 1;
}
.text_button_home_header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.button_home_header:hover {
    width: 140px;
    border-radius: 50px;
    background-color: #193153;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.button_home_header:hover .img_button_home_header {
    transform: translate(-50%, -200%);
}
.button_home_header:hover .text_button_home_header {
    opacity: 1;
    z-index: 2;
}


/* <!------------------ Join Us ---------------------- */
.btn_Join_Us {
  background-color: #193153;
  color: white;
  border: none;
  padding: 10px 32px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}
.btn_Join_Us#joinUs_Button {
  position: fixed;
  top: 41%;
  right: -135px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left top;
  z-index: 3000;
  transition: right 0.5s ease;
  border-radius: 2px 2px 10px 10px;
}
.Join_Us_div.active ~ #joinUs_Button {
  right: 270px;
}
.send_button_form {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    color: #193153;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #193153;
    padding: 10px 40px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
.send_button_form:hover {
  color: white;
}
.send_button_form::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #193153;
  z-index: -1;
  transition: all 1s;
}
.send_button_form:hover::before {
  width: 160%;
}
.send_button_form#joinUs_Button {
  position: fixed;
  top: 41%;
  right: -135px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left top;
  z-index: 3000;
  transition: right 0.5s ease;
}
.send_button_form#joinUs_Button.moved {
  right: 325px;
}
.Join_Us_div {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}
.JoinUs_forms {
  margin-top: 60px;
}
.join_container {
  background-color: white;
  padding: 30px;
  border-radius: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  height: 100%;
  overflow-y: auto;
  position: absolute;
  right: 0;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  direction: ltr;
  text-align: left;
}
.join_container h2 {
  color: #3f3f3f;
  position: absolute;
  top: 20px;
}
.Join_Us_div.active .join_container {
  transform: translateX(0);
  opacity: 1;
}
/*.close_button_JoinUs {*/
/*    position: absolute;*/
/*    top: 8px;*/
/*    right: 27px;*/
/*    width: 41px;*/
/*    height: 41px;*/
/*    line-height: 40px;*/
/*    text-align: center;*/
/*    font-size: 33px;*/
/*    font-weight: bold;*/
/*    cursor: pointer;*/
/*    color: #fff;*/
/*    background-color: #193135;*/
/*    border-radius: 50%;*/
/*    z-index: 2010;*/
/*    transition: background-color 0.3s ease;*/
/*    padding-bottom: 50px;*/
/*}*/
.JoinUs_forms input[type="text"],
.JoinUs_forms input[type="email"],
.JoinUs_forms textarea {
  /*width: 363px;*/
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    height: 40px;
}

#id_message{
    height: fit-content;
}
.div_Rol_join {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    align-items: left;
    flex-direction: column;
    align-content: flex-start;
}

.JoinUs_forms label {
  display: flex;
  margin-bottom: 10px;
  font-size: 16px;
  color: #5d5d5d;
  /*align-items: center;*/
  flex-basis: 22%;
  cursor: pointer;
  align-items: baseline;
}
.div_Rol_join label:not(:first-child) {
  font-weight: normal;
  font-size: 16px;
  color: #5d5d5d;
  display: flex;
  align-items: center;
  flex-basis: 22%;
  cursor: pointer;
}
.div_Rol_join input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.choose_file_join_div {
  display: flex;
  margin-bottom: 15px;
  flex-direction: column;
  justify-content: left;
}
.choose_file_join_div p{
    font-size: 12px;
    color: #809bc9;
    width: 300px;
}
.choose_file_join_div label {
  font-weight: bold;
  font-size: 16px;
  color: #5d5d5d;
    gap: 5px;
}
.file_input_joinus input[type="file"] {
  /*width: 363px;*/
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background-color: #fff;
  font-size: 14px;
  color: #5d5d5d;
  cursor: pointer;

}
.file_input_joinus input[type="file"]::-webkit-file-upload-button {
  background: #193153;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: bold;
}
.file_input_joinus input[type="file"]::-webkit-file-upload-button:hover {
  background: #5883be;
}
.checkbox-options{
    display: flex;
    gap: 12px;
}
.form-control{
    height: 40px;
}
/* <!------------------ JOURNAL ---------------------- */
.about-title {
	font-size: 7.5rem;
	font-weight: 900;
	text-transform: uppercase;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
	background: linear-gradient(
        to bottom,
         #193153 30%,
         rgb(255 255 255 / 0%) 76%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
    letter-spacing: 10px;
    margin-top: 70px;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin-left: auto;
    margin-right: auto;
    top: 100px;
}
.main_member {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    background: #fffcf4f2;
    height: 700px;
    margin-top: 45px;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    bottom: 110px;
}

.card {
	position: absolute;
	width: 280px;
	height: 380px;
	background: white;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(100%);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(100%);
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(100%);
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(100%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

.member-info {
	text-align: center;
	margin-top: 40px;
	transition: all 0.5s ease-out;
}

.member-name {
	color: #ff6700;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.member-name::before,
.member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100px;
	height: 2px;
	background: #ff6700;
}

.member-name::before {
	left: -120px;
}

.member-name::after {
	right: -120px;
}

.member-role {
	color: #848696;
	font-size: 1.5rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 0;
	margin-top: -15px;
	position: relative;
}
.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8, 42, 123, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #ff6700;
	transform: scale(1.2);
}

.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #ff6700;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	border: none;
	outline: none;
	padding-bottom: 4px;
}

.nav-arrow:hover {
	background: #ff9d5b;
	transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
	left: 20px;
	padding-right: 3px;
    top: 300px;
}

.nav-arrow.right {
	right: 20px;
	padding-left: 3px;
    top: 300px;
}

@media (max-width: 768px) {
	.about-title {
		font-size: 4.5rem;
	}

	.card {
		width: 200px;
		height: 280px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	.member-name {
		font-size: 2rem;
	}

	.member-role {
		font-size: 1.2rem;
	}

	.member-name::before,
	.member-name::after {
		width: 50px;
	}

	.member-name::before {
		left: -70px;
	}

	.member-name::after {
		right: -70px;
	}
}
/*----------------------------*/
.journal_cards_div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.journals_card.placeholder {
  visibility: hidden;
  width: 200px;
  height: 250px;
}
/*----------------------AIMS-----------------------*/

/*!*!* === removing default button style ===*!*!*/
/*.aims_title {*/
/*  margin: 0;*/
/*  height: auto;*/
/*  background: transparent;*/
/*  padding: 0;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*}*/

/*!* button styling *!*/
/*.aims_title {*/
/*  --border-right: 6px;*/
/*  --text-stroke-color: #193153;*/
/*  --animation-color: #193153;*/
/*  --fs-size: 2em;*/
/*  text-decoration: none;*/
/*  position: relative;*/
/*  text-transform: uppercase;*/
/*  color: transparent;*/
/*  -webkit-text-stroke: 0.5px var(--text-stroke-color);*/
/*}*/
/*!* this is the text, when you hover on button *!*/
/*.hover-text {*/
/*    position: absolute;*/
/*    box-sizing: border-box;*/
/*    content: attr(data-text);*/
/*    color: var(--animation-color);*/
/*    width: 0%;*/
/*    inset: 0;*/
/*    border-right: var(--border-right) solid var(--animation-color);*/
/*    overflow: hidden;*/
/*    transition: 0.5s ease-in-out;*/
/*    -webkit-text-stroke: 1px var(--animation-color);*/
/*    font-weight: bold;*/
/*}*/
/*!* hover *!*/
/*.aims_title:hover .hover-text {*/
/*  width: 100%;*/
/*  !*filter: drop-shadow(0 0 10px var(--animation-color));*!*/
/*  !*transition: 150s ease-in-out*!*/
/*}*/
/*.aims_section_web{*/
/*    width: 1000px;*/
/*    position: relative;*/
/*    left: 250px;*/
/*    right: 250px;*/
/*    margin-top: 50px;*/
/*}*/
/*.aims_section_web p{*/
/*    text-align: justify;*/
/*    margin-bottom: 40px;*/
/*    font-size: 20px;*/
/*    line-height: 35px;*/
/*}*/
/*.actual-text{*/
/*    font-weight: bold;*/
/*}*/

.title_aims_new {
    width: 800px;
    margin: auto;
    margin-top: 55px;
}

.aims_row {
    position: relative;
    height: 50px;
    z-index: 1;
    clear: both;
    margin-bottom: 50px;
    text-align: center;
    margin-top: 85px;
}

.aims_row--intro {
    padding-top: 20px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: #fff;
    opacity: 0.4;
}

.aims_row--intro span {
    font-size: 11px;
}

.skew-title {
    font-size: 25px; /* panel-y / 2 = 50px/2 */
}

.skew-title span {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 50px;
    margin: auto;
    z-index: 2;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 40px; /* panel-y / 1.4 */
    line-height: 50px;
    transform: skewY(-15deg);
    transform-origin: 0 100%;
    transition: all 0.2s;
    cursor: default;
}

.skew-title span:after,
.skew-title span:before {
    display: block;
    top: 0;
    left: 0;
    width: 40px;
    height: 50px;
    position: absolute;
    background: #193153; /* darken(#2896d7, 40%) */
    content: ' ';
    z-index: -1;
    transition: all 0.2s;
}

.skew-title span:before {
    background: rgba(0,0,0,0.1);
    transform: skewY(15deg);
    transform-origin: 0 0;
}

.skew-title span:nth-child(even) {
    background-color: #193153; /* darken(default-bg, 15%) */
    transform: skewY(15deg);
    transform-origin: 100% 100%;
    color: #d9d9d9; /* darken(#fff, 15%) */
}

.skew-title span:nth-child(even):after {
    background-color: #193153;
}

.skew-title span:nth-child(even):before {
    transform-origin: 100% 0;
    transform: skewY(-15deg);
}

.skew-title span.flat {
    transform: skewY(0);
    color: #fff;
}

.skew-title span.flat:before {
    transform: skewY(0);
}

.skew-title span.flat:nth-child(even):after {
    background-color: #193153; /* default-bg */
}

.skew-title span.alt:after {
    background-color: #ff6700; /* از آخرین مقدار alt-bg */
}

.skew-title span.alt:nth-child(even):after {
    background-color: #ff6700; /* darken(alt-bg, 15%) */
}

.skew-title span.alt.flat:nth-child(even):after {
    background-color: #ff6700;
}


/*--------------------------------------------------------*/
.card_for_aims {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 15px;
    margin-right: 50px;
    margin-left: 50px;
    row-gap: 80px;
}

.card_aim {
    border-top: 5px solid;
    border-image: linear-gradient(to left, #193153, #ff6700) 1 0;
    padding: 15px;
    height: 100%;
    box-sizing: border-box;
}

.card_aim_p {
    margin: 0;
    text-align: left;
}

@media (max-width: 1200px) {
    .card_for_aims {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .card_for_aims {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .card_for_aims {
        grid-template-columns: 1fr;
    }
}

/*-------------------------subject_events-----------------------------------*/
.subject_event{
    display: flex;
    margin-left: 50px;
    margin-right: 50px;
    gap: 200px;
    justify-content: space-between;
}
.subject_event_button{
    width: 250px;
}
.subject_event_h1_p{
    width: 850px;
    margin-left: 35px;
}
.subject_event_h1_p h1{
    color: #193153;
    font-weight: bold;
}
.subject_event_h1_p p{
    font-size: 20px;
    line-height: 30px;
}
.subject_event_button button{
    width: 150px;
}
/*----------------event_subject-_btn------------------------*/
.btn_event_archive {
    border: none;
    display: block;
    position: relative;
    padding: 0.7em 2.4em;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: #193135;
    z-index: 1;
    font-family: inherit;
    font-weight: 500;
    width: 150px;
    height: 60px;
    top: 125px;
    right: 15px;
}

.btn_event_archive .btn_event_archive_span {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 60px;
  background: transparent;
  z-index: -1;
  border: 4px solid #ff670087;
  border-bottom: 4px solid #ff670087;
}

.btn_event_archive .btn_event_archive_span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  background: #ffffff; /* ← جایگزین --lightgray */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
}

.btn_event_archive:hover .btn_event_archive_span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #ff6700;
}

.btn_event_archive:hover {
  color: white;
}

.btn_event_archive:active .btn_event_archive_span::before {
  background: #ff6700;
}
/*------------------------events----------------------------*/
.container_event_div {
    margin: 0 auto;
  }

.cards_column_event {
    padding: 4%;
    box-sizing: border-box;
    display: flex;
    margin-top: 15px;
    gap: 30px;
    height: 530px;
}

.column-1 {
    padding-top: 100px;
}

.card_events {
    width: 92%;
    max-width: 340px;
    margin: 0 auto 60px;
    position: relative;
    background: #EB5160;
    color: #fff;
    cursor: pointer;
    transition: opacity 200ms linear 320ms, transform 200ms ease-out 320ms;
    border-radius: 5px;
    height: 370px;
}
.cards_borders_event {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 6px;
    opacity: 0.5;
    left: -6px;
    top: -6px;
    transition: opacity 200ms linear, transform 200ms ease-out;
}

.card_events h1 {
    position: relative;
    /*padding: 135px 40px 100px 10px;*/
    width: 80%;
    transform: translate3d(20%, 0, 0);
    transition: opacity 200ms linear 120ms, transform 200ms ease-in 120ms;
    top: 80px;
    color: #384455;
    font-size: 34px;
    text-transform: capitalize;
    font-weight: bold;
    word-spacing: -3px;
    padding-top: 100px;
}

.card_events > img {
    width: 320px;
    position: absolute;
    top: -6%;
    left: -6%;
    transition: transform 700ms cubic-bezier(0.77, 0, 0.175, 1), width 300ms ease, height 300ms ease;
    object-fit: cover;
    height: 50%;
    border-radius: 5px;
}

.covers_events {
    position: fixed;
    background: #EB5160;
    z-index: 100;
    transform-origin: 50% 50%;
    transition: transform 700ms cubic-bezier(0.77, 0, 0.175, 1), width 300ms ease,height 300ms ease;
    will-change: transform;
    -webkit-transition: transform 700ms cubic-bezier(0.77, 0, 0.175, 1), width 300ms ease,height 300ms ease;
    -moz-transition: transform 700ms cubic-bezier(0.77, 0, 0.175, 1), width 300ms ease,height 300ms ease;
    -ms-transition: transform 700ms cubic-bezier(0.77, 0, 0.175, 1), width 300ms ease,height 300ms ease;
    -o-transition: transform 700ms cubic-bezier(0.77, 0, 0.175, 1), width 300ms ease,height 300ms ease;
    height: fit-content;

}

.open_content_event {
    width: 100%;
    z-index: 110;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    top: 37px;
    transform: translateY(30px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.open_content_event.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.open_content_event img {
    position: relative;
    width: 1185px;
    margin: 20px 0 0 3%;
    z-index: 5;
    height: 775px;
    object-fit: cover;
    border-radius: 10px;
}

.open_content_event .event_text_div {
    background: #fff;
    margin: -56% 5% 5%;
    padding: 60% 5% 5% 5%;
    width: 90%;
    border-radius: 10px;
}

.open_content_event .event_text_div h1,
.open_content_event .event_text_div p {
    max-width: 700px;
    margin: 0 auto;
}

.close_content_events {
    display: block;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 30px;
    height: 30px;
}

.close_content_events span {
    background: #222;
    width: 30px;
    height: 6px;
    display: block;
    position: absolute;
    top: 14px;
}

.span_events_one { transform: rotate(45deg); }
.span_events_two { transform: rotate(-45deg); }

.card_events.clicked img,
.card_events.out img {
    transform: translate3d(0, -40px, 0);
    opacity: 0;
}

.card_events.clicked {
    transition: transform 400ms ease-out, opacity 400ms ease-out;
    transform: scale(0.9);
    opacity: 0;
}
.card_events.out {
    transition: transform 400ms ease-out, opacity 400ms ease-out;
    transform: scale(0.95);
    opacity: 0.3;
}

.card_events.clicked .cards_borders_event {
    opacity: 0;
    transform: scale(1.3);
}

.card_events.out h1,
.card_events.clicked h1 {
    transform: translate3d(20%, -40px, 0);
    opacity: 0;
}

@media screen and (max-width: 600px) {
    .cards_column_event {
        width: 90%;
    }

    .column-1 {
        padding-top: 0;
    }

    .open_content_event img {
        margin-top: 40px;
    }
}
.open_content_event .event_text_div p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 16px auto;
    text-align: justify;
    max-width: 700px;
}

.card_events:nth-child(1) {
    background: #ffece4;
    border: 1px solid #9c9c9c;
}
.card_events:nth-child(2) {
    background: #edd5d5;
    border: 1px solid #9c9c9c;
}
.card_events:nth-child(3) {
    background: #ffead6;
    border: 1px solid #9c9c9c;
}
.card_events:nth-child(4) {
    background: #d2f0f2;
    border: 1px solid #9c9c9c;
}
/*------------------------members_page-----------------------------*/
.bg_custom_member {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: radial-gradient(#19315338 5%, #0000 6%), radial-gradient(#ffe9bdfc 5%, #0000 6%);
    background-position: 0 0, 1.5rem 1.5rem;
    background-size: 3rem 3rem;
}

.members-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.personal_card_new {
    display: flex;
    flex-flow: column nowrap;
    place-items: center;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: rgba(245, 245, 245, 1);
    position: relative;
    width: 256px;
    height: 335px;
    perspective: 1000px;
    z-index: 0;
    transition: all 1s ease-out;
    margin-top: 50px;
}

.personal_card_new:hover {
    filter: grayscale(0%);
    scale: 1;
}

.personal_card_new:hover::after,
.personal_card_new:hover::before {
    opacity: .5;
    rotate: 60deg;
}

.personal_card_new:hover::after {
    translate: 100% 0;
}

.personal_card_new:hover::before {
    translate: -100% 0;
}

.personal_card_new .card-title {
    color: rgb(36 35 35 / 75%);
    font-size: 1.1em;
    font-weight: 600;
    margin: .5em;
    position: relative;
    transition: all .3s ease-out;
    z-index: 100;
    text-shadow: 0px 0px 0px rgba(100, 100, 100, .25);
}

.personal_card_new:hover .card-title {
    color: rgba(100, 100, 100, 1);
    text-shadow: 0px 8px 5px rgba(100, 100, 100, .35);
}

.personal_card_new:hover span {
    filter: grayscale(0%);
}

.avatar {
    scale: 1.2;
    transition: all .3s ease-out;
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: 15px;
    object-fit: cover;
}

.card-info {
    --angle: 0deg;
    display: flex;
    width: 235px;
    flex-flow: column nowrap;
    place-items: center;
    margin: 5px .75em;
    color: rgba(100, 100, 100, 1);
    background-color: #fff;
    transition: all .5s ease-out;
    animation: animateBorder 10s linear infinite reverse;
    border: .15em solid;
    position: relative;
    z-index: 10;
    border-image:
            linear-gradient(var(--angle), rgba(245, 245, 245, 1), rgb(255 134 13 / 73%), rgba(245, 245, 245, 1)) 1;
    min-height: 320px;
}

.card-info p {
    color: rgba(100, 100, 100, 1);
    line-height: 1.25em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    font-size: 14px;
    margin: 1em 0;
    transition: all .3s ease-out .3s;
    height: 335px;
}

.card-info .btn {
    display: block;
    padding: 8px 16px;
    background-color: #193153;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: .85em;
    transition: all 0.3s ease-in-out;
    margin-bottom: 5px;
}

.card-info .btn:hover {
    cursor: pointer;
    background-color: #4d6a9b;
}

.card-info .btn:active {
    box-shadow: inset 0px -2px 3px rgba(235, 16, 206, .25);
}

.card-links {
    transition: all .3s linear;
    opacity: 0;
    display: flex;
    flex-flow: row wrap;
    gap: 1em;
    position: relative;
    top: -2rem;
    list-style: none;
    color: rgba(100, 100, 100, 1);
    font-size: .75em;
}

.card-links a {
    transition: color .3s ease-out;
}

.card-links a:hover {
    color: rgba(235, 16, 206, .75);
}

.card-links img {
    width: 24px;
    height: 24px;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.card-links a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.personal_card_new .toggle-checkbox {
    visibility: hidden;
    position: absolute;
}

.personal_card_new:hover:has(.toggle-checkbox:checked) .card-title {
    text-shadow: 0px 2px 5px rgba(100, 100, 100, .35);
}

.personal_card_new:has(.toggle-checkbox:checked) {
    border-radius: 10px;
    height: 340px;
}



.personal_card_new:has(.toggle-checkbox:checked) .card-info {
    translate: 0 -20%;
    border-width: 1px;
    border: none;
    box-shadow:
            inset 0 0 5px #ffa46c,
            inset 0px 0px 2px rgba(100, 100, 100, .25),
            inset 0px 30px 40px #faa060;
    border-radius: 10px;
    width: 215px;
    min-height: 350px;
    padding-bottom: 15px;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 50px;
}

.personal_card_new:has(.toggle-checkbox:checked) .card-info span {
    translate: 0 75%;
}

.personal_card_new:has(.toggle-checkbox:checked) .card-info p {
    transition: all .1s ease-out;
    font-size: 14px;
}

.personal_card_new:has(.toggle-checkbox:checked) .card-links {
    opacity: 1;
    top: -100px;
    padding-right: 40px;
    margin-bottom: 0px;
}

@keyframes animateBorder {
    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
/*------------------ footer ----------------------*/
.footer{
    margin-top: 100px;
}
.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}
.footers_social_div {
    position: absolute;
    right: 0;
    width: 236px;
}
.footers_svg_icons {
    height: 54px;
    left: -69px;
    display: block;
    position: absolute;
    top: -50px;
    width: 236px;
}
.footers_svg_icons_path {
    fill: #ff6700;
}
.footers_social_links_a.footers_linkedin img {
    height: 26px;
    left: -56px;
    top: -32px;
    width: 26px;
    position: absolute;
}
.footers_social_links_a {
    display: block;
    padding: 10px;
    position: absolute;
}
.footers_social_links_a.footers_instagram img{
    height: 32px;
    left: 0px;
    top: -39px;
    width: 32px;
    position: absolute;
}
.footers_social_links_a.footers_telegram img{
    height: 24px;
    left: 62px;
    top: -30px;
    width: 24px;
    position: absolute;
}
.footers_social_links_a.footers_web img{
    height: 34px;
    left: 113px;
    top: -35px;
    width: 34px;
    position: absolute;
}
.footers_copyright_div {
    background-color: #ff6700;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}
.footers_copyright_wrappers {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}
.footers_copyright_text_p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}
.footers_copyright_links {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
/*----------------event_archive_page---------------------------*/
.bg_custom_event_archive {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: radial-gradient(#ffd59fad 5%, #0000 6%), radial-gradient(#ffe9bd96 5%, #0000 6%);
    background-position: 0 0, 1.5rem 1.5rem;
    background-size: 3rem 3rem;
}
.card_archive_event_div {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 10px 20px #9e9e9e33;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.card_archive_event_div::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 100%;
    /*background: linear-gradient(-45deg, #ffc175 0%, #ff78b5 100%);*/
    background: linear-gradient(-45deg, #fdd5b9 0%, #bbcde6 100%);
    z-index: 1;
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.card_archive_event_div:hover::before {
    width: 100%;
}
.card_archive_event_div:hover {
    box-shadow: none;
}
.content_card_archive_event {
    position: relative;
    align-items: center;
    gap: 20px;
    z-index: 2;
    color: #5c5c5c;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.card_img_archive_event {
    width: 380px;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
    margin-left: 24px;
    flex-shrink: 0;
    /*position: relative;*/
    /*top: 50px;*/
    margin-top: 50px;
    margin-bottom: 50px;
}
.text_archive_event_div3{
    margin-top: 10px;
    margin-bottom: 10px;
}
.heading_text_archive_event {
    font-weight: 700;
    font-size: 32px;
}
.text_archive_event_p {
    line-height: 1.5;
}

.text_archive_event_div{
    display: flex;
    flex-direction: row;
    gap: 33px;
}

@media (min-width: 1400px) and (max-width: 1600px){
    .card_img_archive_event {
        width: 340px;
        height: 200px;
    }
    .card_archive_event_div{
        width: 1200px;
        height: 80%;
    }
}
@media (max-width: 1400px) {
    .card_img_archive_event {
        width: 340px;
        height: 200px;
    }
}
@media (max-width: 1200px) {
    .card_img_archive_event {
        width: 340px;
        height: 200px;
    }
}
@media (max-width: 992px) {
    .card_img_archive_event {
        width: 300px;
        height: 180px;
    }
    .card_archive_event_div{
        width: 80%;
        height: 80%;
    }
}
@media (max-width: 768px) {
    .content_card_archive_event {
        flex-direction: column;
        text-align: center;
        margin-left: 15px;
    }

    .card_img_archive_event {
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .heading_text_archive_event {
        font-size: 24px;
    }

    .card_archive_event_div {
        padding: 24px;
    }
}
@media (max-width: 576px) {
    .heading_text_archive_event {
        font-size: 20px;
    }

    .text_archive_event_p {
        font-size: 14px;
    }

    .card_archive_event_div {
        padding: 20px;
    }
}

/*---------------radio_buttom_join_us----------------*/
.uiverse-pixel-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    border-radius: 0.5em;
    align-content: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-left: 15px;
}

.uiverse-pixel-radio {
  display: flex;
  align-items: center;
  gap: 0.75em;
  cursor: pointer;
  font-size: 12px;
  color: #000;
  position: relative;
}

.uiverse-pixel-radio input[type="radio"] {
  appearance: none;
  width: 5px;
  height: 5px;
  background: #5e81b6;
  border: none;
  box-shadow:
    0 0 0 0.15em #000,
    0 0 0 0.3em #fff,
    0 0 0 0.45em #000;
  image-rendering: pixelated;
  margin: 0;
  transition: all 0.1s steps(1);
  position: relative;
}

.uiverse-pixel-radio input[type="radio"]::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.1s ease-out;
  box-shadow: 0 0 0 1px #000;
}

.uiverse-pixel-radio input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
  background: #000;
}

.uiverse-pixel-radio input[type="radio"]:hover {
  background: #193153;
}

.uiverse-pixel-radio input[type="radio"]:active {
  background: #230226;
  transform: translateY(0.125em);
}

.uiverse-pixel-radio input[type="radio"]:focus-visible {
  outline: 2px dashed #fff;
  outline-offset: 0.2em;
}

/*-------------------wave-bg--------------------------*/
.wave-bg {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="none" stroke="%23fcf5e7fc" stroke-width="1" d="M0,100 C480,-40 960,280 1440,100"/><path fill="none" stroke="%23fcf5e7fc" stroke-width="1" d="M0,120 C480,-20 960,300 1440,120"/><path fill="none" stroke="%23fcf5e7fc" stroke-width="1" d="M0,140 C480,0 960,320 1440,140"/><path fill="none" stroke="%23fcf5e7fc" stroke-width="1" d="M0,160 C480,20 960,340 1440,160"/><path fill="none" stroke="%23fcf5e7fc" stroke-width="1" d="M0,180 C480,40 960,360 1440,180"/><path fill="none" stroke="%23fcf5e7fc" stroke-width="1" d="M0,200 C480,60 960,380 1440,200"/><path fill="none" stroke="%23fcf5e7fc" stroke-width="1" d="M0,220 C480,80 960,400 1440,220"/><path fill="none" stroke="%23fcf5e7fc" stroke-width="1" d="M0,240 C480,100 960,420 1440,240"/></svg>') no-repeat center/cover;
}

