/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
	box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background-color: var(--black);
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input, textarea,select {
    outline: none !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}
/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #000000;
    --avenirLTProBook: "AvenirLTProBook";
    --ivyMode-light: "IvyMode-Light";
    --ivyMode-regular: "IvyMode-Regular";
    --whyte-book: "Whyte-Book";
    --whyte-medium: "Whyte-Medium";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "AvenirLTProBook";
    src: url("../webfonts/AvenirLTProBook.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "IvyMode-Light";
    src: url("../webfonts/IvyMode-Light.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "IvyMode-Regular";
    src: url("../webfonts/IvyMode-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Whyte-Book";
    src: url("../webfonts/Whyte-Book.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Whyte-Medium";
    src: url("../webfonts/Whyte-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}
body::-webkit-scrollbar-track {
    background: var(--white); 
}
body::-webkit-scrollbar-thumb {
	background-color: var(--black);
}
/* SCROLL-CSS */

/* LOADER-CSS */
/* LOADER-CSS */

/* COMMON-CSS */
.common_light_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--whyte-book);
    color: var(--black);
    text-transform: capitalize;
    position: relative;
    transition: .5s ease;
    border: none;
    z-index: 2;
}
.common_light_btn:hover {
    color: var(--black)
}
.common_light_btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(92deg, #D4B652 0.55%, #F8E88C 21.66%, #E3C05B 42.26%, #D49C44 58.22%, #DBB452 79.85%, #FAE395 97.36%);
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    transition: .5s ease;
}
.common_light_btn:hover::before{
    opacity: 1;
}
.common_light_btn span {
    top: 50%;
    transform: translateY(-50%);
    right: -55px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--white);
    transition: .3s ease;
    overflow: hidden
}
.common_light_btn span::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(92deg, #D4B652 0.55%, #F8E88C 21.66%, #E3C05B 42.26%, #D49C44 58.22%, #DBB452 79.85%, #FAE395 97.36%);
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    transition: .5s ease;
}
.common_light_btn:hover span::before{
    opacity: 1;
}
.common_light_btn span,.common_light_btn span i {
    position: absolute;
    transition: .25s ease
}
.common_light_btn span i:nth-child(2) {
    left: -20px;
    top: 0;
    transform: rotate(-45deg)
}
.common_light_btn span i:first-child {
    left: 17px
}
.common_light_btn:hover span i:nth-child(2) {
    left: 17px;
    top: 17px;
    transform: rotate(0deg)
}
.common_light_btn:hover span i:first-child {
    left: 100px
}
.move_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%) translate(0% , 0%);
    z-index: 99;
    pointer-events: none;
}
/*body::before,*/
/*body::after {*/
/*    content: '';*/
/*    position: fixed;*/
/*    top: 0;*/
/*    width: 1px;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, #FBCB4A -5.99%, #E6AD06 22.62%, #FDF2BF 51.77%, #F8EA88 79.85%, #FBCB4A 98.93%);*/
/*    z-index: 99;*/
/*    opacity: 0.4;*/
/*}*/
/*body::before{*/
/*    left: 120px;*/
/*}*/
/*body::after{*/
/*    right: 110px;*/
/*}*/
.drag_btn {
    color: #000D1C;
    text-align: center;
    font-size: 20px;
    font-family: var(--ivyMode-regular);
    text-transform: uppercase;
    width: 152px;
    height: 152px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%) translate(0% , 0%);
    z-index: 99;
    border: 0;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 1s;
    pointer-events: none;
}
.drag_btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 165px;
    height: 165px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 100%;
}
.drag_btn i {
    font-size: 14px;
}
/* COMMON-CSS */

/* HEADER-CSS */
.header-mob-flex {
    display: none;
}
.header_wrapper{
    padding: 10px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.header_wrapper::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.8px;
    opacity: 0.4;
    background: linear-gradient(90deg, #FBCB4A -5.99%, #E6AD06 22.62%, #FDF2BF 51.77%, #F8EA88 79.85%, #FBCB4A 98.93%);
}
.header_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 70px;
}
.header_inner_flex{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_logo {
    max-width: 210px;
}
.header_nav ul{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_nav ul:hover li a{
    opacity: 0.5;
}
.header_nav ul li a{
    font-size: 13px;
    font-family: var(--whyte-medium);
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    transition: .25s ease;
}
.header_nav ul li a:hover{
    opacity: 1;
}
.header_nav ul li a::before{
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(
    ../images/nav_img.png);
    background-position: center;
    background-size: cover;
    width: 30px;
    height: 15px;
    opacity: 0;
    transition: .25s ease;
}
.header_nav ul li a:hover::before{
    opacity: 1;
}
.header_btn{
    display: flex;
    align-items: center;
    gap: 10px;
}
.drop_btn {
    position: relative;
    z-index: 99;
}
.custom_dropdown {
    position: absolute;
    top: 25px;
    left: 0px;
    width: 220px;
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: .5s ease;
}
.custom_dropdown ul li {
    width: 100%;
}
.custom_dropdown ul li a {
    padding: 10px 15px;
    background-color: var(--white);
    color: var(--black);
    display: inline-flex;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
}
.custom_dropdown ul li a:hover {
    background: linear-gradient(92deg, #D4B652 0.55%, #F8E88C 21.66%, #E3C05B 42.26%, #D49C44 58.22%, #DBB452 79.85%, #FAE395 97.36%);
    color: var(--black);
}
.drop_btn:hover .custom_dropdown{
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(2px);
}
.dropdown i {
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    transition: .5s ease;
    transform: translateY(-2px);
}
/* HEADER-CSS */

/* INDEX-CSS */
.index_banner_wrapper{
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 250px 0px 0px 0px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.index_banner_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(359deg, rgba(0, 0, 0, 0.00) 60.25%, rgba(0, 0, 0, 0.60) 92.33%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 46.84%, rgba(0, 0, 0, 0.60) 70.7%);
    z-index: -1;
}
.index_banner_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}
.index_banner_bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_banner_wrap_text{
    text-align: center;
}
.index_banner_wrap_text img{
    margin: 0px 0px 20px 0px;
}
.index_banner_wrap_text h6{
    font-size: 80px;
    font-family: var(--ivyMode-light);
    background: linear-gradient(92deg, #D4B652 -2.65%, #F8E88C 21.21%, #E3C05B 44.48%, #D49C44 62.51%, #DBB452 86.95%, #FAE395 98.01%, #FFF 104.89%, #FFF 107.38%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin: 0px 0px 10px 0px;
}
.index_banner_wrap_text h3{
    font-size: 20px;
    font-family: var(--avenirLTProBook);
    color: var(--white);
    text-transform: capitalize;
    margin: 0px 0px 20px 0px;
}
.index_banner_wrap_btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.index_banner_slider {
    width: 100%;
    height: 65px;
    position: relative;
}
.index_banner_slider marquee {
    width: 100%;
    position: absolute;
    bottom: -100px;
    left: 0;
}
.index_banner_slider ul{
    display: flex;
    align-items: center;
    gap: 10vw;
    width: 300vw;
}
.index_banner_slider ul li{
    font-size: 45px;
    font-family: var(--ivyMode-light);
    color: var(--white);
    opacity: 0.7;
}
.index_first_wrapper{
    height: 130vh;
    display: flex;
    align-items: center;
    min-height: 1200px;
}
.index_first_wrap_float_img{
    position: absolute;
}
.index_first_wrap_float_img_1{
    top: 80px;
    left: 15px;
}
.index_first_wrap_float_img_2 {
    bottom: 50px;
    left: 15px;
}
.index_first_wrap_float_img_3 {
    top: 80px;
    right: 15px;
}
.index_first_wrap_float_img_4{
    bottom: 50px;
    right: 15px;
}
.index_first_wrap_text{
    text-align: center;
}
.index_first_wrap_text img{
    margin: 0px 0px 10px 0px;
}
.index_first_wrap_text h6{
    font-size: 60px;
    font-family: var(--ivyMode-light);
    color: var(--white);
    text-transform: uppercase;
    max-width: 820px;
    margin: 0 auto 20px auto;
    line-height: 60px;
}
.index_first_wrap_text h3{
    font-size: 16px;
    font-family: var(--avenirLTProBook);
    color: var(--white);
    text-transform: capitalize;
    max-width: 600px;
    margin: 0 auto 20px auto;
}
.index_first_wrap_btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.index_second_wrapper {
    height: 100vh;
    background-image: url(../images/second_bg.png);
    background-position: bottom;
    background-size: cover;
    padding: 0px 0px 0px 0px;
    position: relative;
}
.second_slider .swiper-slide {
    height: 100vh;
    padding: 100px 0px 0px 0px;
}
.second_slider_text{
    text-align: center;
}
.second_slider_text h6{
    font-size: 60px;
    font-family: var(--ivyMode-light);
    color: var(--white);
    text-transform: uppercase;
}
.swiper-slide .second_slider_float_box {
    max-width: 400px;
    margin: 0 auto;
    opacity: 0;
    transition: 0.5s ease;
    position: absolute;
    transform: scaleY(0) translateX(-50%);
    bottom: 0;
    left: 50%;
    z-index: 1;
}
.swiper-slide-active .second_slider_float_box {
    opacity: 1;
    z-index: 10;
    transform: scaleY(1) translateX(-50%);
}
.active{
    transform: scaleY(1) translateX(-50%);
}
.index_third_wrapper{
    padding: 100px 0px 50px 0px;
}
.index_third_text_wrap{
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}
.index_third_text_wrap h6{
    font-size: 60px;
    color: var(--white);
    font-family: var(--ivyMode-light);
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
}
.index_third_text_wrap p{
    font-size: 16px;
    color: var(--white);
    font-family: var(--avenirLTProBook);
    text-transform: capitalize;
    max-width: 860px;
    margin: 0 auto 10px auto;
}
.index_third_hov_text_wrap{
    padding: 100px 0px;
}
.index_third_hov_box{
    position: relative;
    margin: 0px 0px 80px 0px;
}
.index_third_hov_box:hover .index_third_hov_box_imgLeft{
    opacity: 1;
    visibility: visible;
}
.index_third_hov_box:hover .index_third_hov_box_imgRight{
    opacity: 1;
    visibility: visible;
}
.index_third_hov_box:hover .index_third_hov_box_text h6{
    background: linear-gradient(92deg, #D4B652 0.55%, #F8E88C 21.66%, #E3C05B 42.26%, #D49C44 58.22%, #DBB452 79.85%, #FAE395 97.36%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.index_third_hov_box_text{
    text-align: center;
}
.index_third_hov_box_text h6{
    font-size: 160px;
    color: var(--white);
    font-family: var(--ivyMode-light);
    text-transform: uppercase;
}
.index_third_hov_box_imgLeft {
    position: absolute;
    top: -80px;
    left: 190px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s ease;
    width: 355px;
    height: 446px;
  }
.index_third_hov_box_imgLeft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.index_third_hov_box_imgRight {
    position: absolute;
    top: -80px;
    right: 190px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s ease;
    width: 355px;
    height: 446px;
  }
.index_third_hov_box_imgRight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
  .img_fix .index_third_hov_box_imgLeft{
    left: 70px;
  }
  .img_fix .index_third_hov_box_imgRight{
    right: 70px;
  }
  .img_fix2 .index_third_hov_box_imgLeft{
    left: 0px;
  }
  .img_fix2 .index_third_hov_box_imgRight{
    right: 0px;
  }

  .index_fourth_vid_box {
    width: 100%;
    height: 830px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.index_fourth_vid_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_fourth_Slider .swiper-wrapper {
    padding: 0px 0px 40px 0px;
}
.index_fourth_vid_box h6{
    font-size: 60px;
    color: var(--white);
    font-family: var(--ivyMode-light);
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
}
.index_fourth_Slider .swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 1;
    transform: scale(1.2);
}
.index_fourth_Slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{
    background: linear-gradient(92deg, #D4B652 0.55%, #F8E88C 21.66%, #E3C05B 42.26%, #D49C44 58.22%, #DBB452 79.85%, #FAE395 97.36%);
    transform: scale(1.7) !important;
}
.index_fourth_Slider .swiper-pagination-bullets-dynamic {
    z-index: 9999;
    padding: 10px 0px;
}
.index_new_wrapper{
    padding: 0px 0px 100px 0px;
}
.index_new_wrap_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.index_new_wrap_text h6{
    margin-bottom: 20px !important;
}
/* INDEX-CSS */

/* INNER-CSS */

.inner_banner_wrapper {
    height: 65vh;
    padding: 200px 0px 0px 0px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.inner_banner_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(359deg, rgba(0, 0, 0, 0.00) 60.25%, rgba(0, 0, 0, 0.60) 92.33%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 46.84%, rgba(0, 0, 0, 0.60) 70.7%);
    z-index: -1;
}
.membership_wrapper {
    padding: 230px 0px 0px 0px;
    position: relative;
}
.member_wrap_box_text{
    margin: 0px 0px 40px 0px;
}
.member_wrap_box_text h6 {
    font-size: 30px;
    color: var(--white);
    font-family: var(--ivyMode-light);
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
}
.membership_wrap_box {
    width: 100%;
    max-width: 950px;
    background-color: var(--black);
    margin: 0px auto 0 auto;
    border-radius: 40px;
    padding: 30px;
    text-align: center;
    position: relative;
}
.membership_wrap_box::before {
    content: '';
    position: absolute;
    top: -2.5px;
    left: -2.5px;
    width: calc(100% + 5px);
    height: calc(100% + 5px);
    background: linear-gradient(92deg, #D4B652 0.55%, #F8E88C 21.66%, #E3C05B 42.26%, #D49C44 58.22%, #DBB452 79.85%, #FAE395 97.36%);
    z-index: -1;
    border-radius: 40px;
}
.member_wrap_box_img {
    margin: 0px 0px 25px 0px;
}
.member_wrap_box_input {
    text-align: start;
    position: relative;
}
.member_wrap_box_input label {
    font-size: 20px;
    color: var(--white);
    font-family: var(--ivyMode-light);
    margin: 0px 0px 10px 5px;
}
.member_wrap_box_input label span {
    color: red;
}
.member_wrap_box_input input {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: transparent;
    border-radius: 50px;
    font-size: 14px;
    /* font-family: var(--whyte-book); */
    color: #ffffff;
    transition: .5s ease;
    border: 1px solid var(--white);
    padding: 15px 20px;
}
.member_wrap_box_input input::placeholder{
    color: var(--white);
}
.member_wrap_box_input textarea {
    display: flex;
    align-items: center;
    width: 100%;
    height: 150px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 14px;
    /*font-family: var(--whyte-book);*/
    color: #ffffff;
    transition: .5s ease;
    border: 1px solid var(--white);
    padding: 20px 20px;
}
.member_wrap_box_input textarea::placeholder{
    color: var(--white);
}
.about_founder_wrapper{
    height: auto;
    padding: 100px 0px;
    min-height: auto;
}
.about_founder_wrapper .index_first_wrap_text{
    text-align: start;
}
.about_founder_wrapper .index_first_wrap_text h6,
.about_founder_wrapper .index_first_wrap_text h3{
    max-width: 100%;
}
.index_first_wrap_text_img {
    width: 80%;
    margin: 0 auto;
}
.index_first_wrap_text_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
/* INNER-CSS */

/* FOOTER-CSS */
.footer_top_wrap_f{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 80px 0px;
}
.footer_logo_text {
    max-width: 780px;
}
.footer_logo_text h6{
    font-size: 60px;
    color: var(--white);
    font-family: var(--ivyMode-light);
    line-height: 54px;
    text-transform: capitalize;
    margin: 0px 0px 20px 0px;
}
.footer_wrapper {
    padding: 90px 0px 0px 0px;
}
.footer_links h6{
    font-size: 30px;
    color: var(--white);
    font-family: var(--ivyMode-light);
    margin: 0px 0px 40px 0px;
}
.footer_links ul li{
    line-height: 33px;
}
.footer_links ul li a{
    font-size: 20px;
    color: var(--white);
    font-family: var(--ivyMode-light);
}
.copyright_text{
    text-align: center;
    padding: 50px 0px 10px 0px;
}
.copyright_text p{
    font-size: 20px;
    color: var(--white);
    font-family: var(--ivyMode-light);
    text-transform: capitalize;
}
/* FOOTER-CSS */

/* ANIMATIONS */

/* ANIMATIONS */

.affiliations_banner {
    position: relative;
}

.affiliations_grid_wrapper {
    padding: 100px 0;
    background-color: #f9f8f4;
    /* Light eggshell/beige background */
    color: #000;
}

.grupo_rosanegra_main .section_title_gold {
    font-family: var(--ivyMode-light);
    font-size: 24px;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.rosanegra_title {
    font-family: var(--ivyMode-regular);
    font-size: 70px;
    letter-spacing: 12px;
    margin-bottom: 5px;
}

.sub_title_gold {
    font-size: 14px;
    letter-spacing: 3px;
    font-family: var(--whyte-book);
    font-weight: bold;
}

.affiliations_divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4b652, transparent);
    margin: 50px 0;
    position: relative;
}

.affiliations_divider::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 10px;
    background-color: #d4b652;
}

.affiliation_logo_box {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.affiliation_logo_box:hover {
    transform: translateY(-5px);
}

.logo_text {
    font-family: var(--ivyMode-regular);
    font-size: 32px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.logo_subtext {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    color: #333;
}

.cursive {
    font-family: 'Brush Script MT', cursive;
    text-transform: lowercase;
    font-size: 40px;
}

.bordered {
    border: 2px solid #000;
    padding: 5px 15px;
    display: inline-block;
}

.heavy {
    font-weight: 900;
    letter-spacing: -1px;
}

.outlined_heavy {
    font-weight: 900;
    -webkit-text-stroke: 1px #000;
    color: transparent;
    letter-spacing: 2px;
}

.affiliations_grid_wrapper .active {
    transform: unset !important;
}

.affiliations_filter_tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter_tab {
    background: transparent !important;
    border: 1px solid rgb(0 0 0 / 20%) !important;
    color: var(--black) !important;
    padding: 10px 25px !important;
    font-family: var(--whyte-medium);
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50px !important;
}

.filter_tab.active,
.filter_tab:hover {
    border-color: #D4B652 !important;
    background: #D4B652 !important;
    color: var(--black) !important;
}

.affiliations_row {
    justify-content: center;
}

/* AFFILIATIONS-PAGE-CSS */

/*ADDITIONAL CSS*/
.member_wrap_box_input i {
    position: absolute;
    top: calc(50% + 20px);
    transform: translateY(-50%);
    right: 20px;
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
}
.remove_div {
    color: red !important;
}
/*ADDITIONAL CSS*/