:root {
    --primary-color: rgba(54, 64, 101, 1);
    --font-base: "Manrope", 'sans-serif';
    --font-size-base: 24px;
    --font-weight-base: 400;
    --line-height-base: 34px;
    --light-blue: rgba(240, 249, 253, 1);
    --blue-2: rgba(54, 115, 255, 1);
}

/*
RESET + BASE CSS
*/

/* 1. Box sizing  */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove margins and padding */
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-family: inherit;
    vertical-align: baseline;
}

/* 3. HTML5 elements like block */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* 4. Basic font in body */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Manrope", 'sans-serif';
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-base);
    line-height: var(--line-height-base);
    color: var(--primary-color);
    position: relative;
    background-color: rgba(240, 249, 253, 1);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    background-image: url("/wp-content/uploads/2025/09/top-gradient.webp");
    width:  50%;
    height: 100vh;
    background-size: contain;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center right;
}

body:after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    background-image: url("/wp-content/uploads/2025/09/bottom-gradient.webp");
    width: 998px;
    max-width: 100%;
    height: 1667px;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




section {
    overflow: hidden;
}

.site-container {
    max-width: 1160px;
    width: 100%;
    margin-inline: auto;
}

.white-text {
    color: #ffffff;
}

.light-blue-text {
   color: var(--light-blue);
}

/* 5. Lists without default bullets */
ul, li {
    list-style: none;
}



/* 6. Links */
a {
    color: inherit;
    text-decoration: none;
    transition: all .3s ease-in;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

/* 7. Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Headings */
h1 {
    font-size: 60px;
    line-height: 64px;
    font-weight: 600;
    letter-spacing: -2px;
}

h2 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

h3 {
    font-size: 40px;
    line-height: 39px;
    font-weight: 600;
}

h4 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
}

h5 {
    font-size: 26px;
    line-height: 26px;
    font-weight: 600;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Urbanist", sans-serif;
}

.text-right {
    text-align: right;
}

/* Custom text */
.small-text {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}

.cta-text {
    font-size: 30px;
    line-height: 44px;
    font-weight: 400;
}

.show-desktop {
    display: block;
}

.show-mobile {
    display: none;
}

/* Button */
.blue-button {
    padding: 26px 60px;
	max-width: 420px;
    border-radius: 99px;
    box-shadow: 0px 20px 33px 0px rgba(144, 134, 255, 0.25);
    background:  linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: var(--light-blue);
    display: inline-block;
    text-transform: uppercase;
    position: relative;

}

.blue-button:before {
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    border-radius: 99px;
    background: rgba(144, 134, 255, 0.1);
	z-index:-1; /* The "before" element is covering the button and makes it pink. This will move it back. */
}

.blue-button:hover {
  	background: rgba(255, 255, 255, 1);
 	color: rgba(54, 64, 101, 1);

}

.button-outline, .button-outline-blue-bckg {
    padding: 8px 30px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    line-height: 34px;
    position: relative;
    text-transform: uppercase;
}

.button-outline:hover {
    background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
    color: #ffffff;
}

.button-outline-blue-bckg {
    border: 2px solid rgba(227, 239, 244, 0.3);
    color: var(--light-blue);
}

.button-outline-blue-bckg:hover {
    background-color: #ffffff;
    color: rgba(54, 64, 101, 1);
}

.site-grid {
    max-width: 940px;
    width: 100%;
    margin-inline: auto;
}

/* Navigation */

.site-logo {
    margin-right: 80px;
}

.site-logo img {
    width: 200px;
}

.menu-column, .menu-column ul {
    display: flex;
    align-items: center;
}

ul#main-menu  .sub-menu, ul#language-menu .sub-menu {
    display: none;
    border-radius: 20px;
    box-shadow: 0px 20px 40px 0px rgba(29, 35, 60, 0.1);
    background: rgba(255, 255, 255, 1);
    padding: 10px;
    /*width: 275px;*/
	width: auto; /* allow shrink-wrap */
 
  	white-space: nowrap;
    position: absolute;
    top: 70px;
    left: 0;
}

ul#language-menu .sub-menu {
    width: 100px;
    top: 65px;
}

#language-menu li.menu-item-has-children:before {
    content: '\f107';
    position: absolute;
    display: block;
    font-size: 12px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    right: 0;
    top: 22px;
    transition: 0.3s all ease-in-out;
}

ul#language-menu > li > a {
    padding-block: 20px;
}

ul .sub-menu {
    display: none;
}

#main-menu li.menu-item-has-children:hover .sub-menu, #language-menu li.menu-item-has-children:hover .sub-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#language-menu li {
    position: relative;
}

#language-menu li a {
    display: flex;
    align-items: center;

}

#main-menu li.menu-item-has-children:hover:before {
    rotate: 180deg;
}

#main-menu li.menu-item-has-children .sub-menu li a {
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
    width: 100%;
}

#main-menu li.current-menu-parent li.current-menu-item   a  {
	padding: 10px 20px;
    box-sizing: border-box;
    border: 2px solid rgba(160, 137, 255, 0.1);
    border-radius: 10px;
    background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: Manrope;
    text-align: left;
}



#main-menu li.menu-item-has-children .sub-menu li {
    padding: 0;
    width: 100%;
}

#main-menu li a {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
    padding-block: 20px;
}

#main-menu li.current-menu-parent > a, #main-menu li.menu-item-has-children .sub-menu li a:hover {
    background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
;
    -webkit-background-clip:
            text;
    -webkit-text-fill-color:
            transparent;
    background-clip:
            text;
    text-fill-color:
            transparent;
    text-align: left;
}

#main-menu li{
    padding-right: 40px;
}

#main-menu li:hover > a {
    background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
;
    -webkit-background-clip:
            text;
    -webkit-text-fill-color:
            transparent;
    background-clip:
            text;
    text-fill-color:
            transparent;
    text-align: left;
}

nav {
    padding: 24px 12px;
}

nav .row {
    align-items: center;
}

header {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 9999;
    transition: 0.2s ease;
}

header.hidden {
    transform: translateY(-100%);
}

header.scrolled {
    background-color: rgba(240, 249, 253, 1) ;
	box-shadow: 1px 12px 25px 0px rgba(0,0,0,0.04);
	-webkit-box-shadow: 1px 12px 25px 0px rgba(0,0,0,0.04);
	-moz-box-shadow: 1px 12px 25px 0px rgba(0,0,0,0.04);
}

.right-menu-column {
    justify-content: flex-end;
}

#social-menu  li a {
    padding-inline: 5px;
    font-size: 25px;
}

#social-menu li a:hover {
    color: rgba(54, 115, 255, 1);
}


#language-menu li a {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
}

#main-menu li {
    display: flex;
    align-items: center;
}

#language-menu li:first-of-type {
    padding-right: 15px;
}


#main-menu li.menu-item-has-children {
    position: relative;
}

#main-menu li.menu-item-has-children:before {
	opacity: 0.5;
    content: '\f107';
    position: absolute;
    display: block;
    font-size: 12px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    right: 20px ;
    top: 22px;
    transition: 0.3s all ease-in-out;
	
}

.search-menu-bar input {
    border: 2px solid rgba(54, 64, 101, 0.2) !important;
    border-radius: 99px !important;
    box-shadow: 0px 11px 15px 0px rgba(144, 134, 255, 0.18) !important;
    background-color: rgba(255,255,255,0) !important;
    padding: 25px 20px !important;
    color: rgba(54, 64, 101, 1) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 34px !important;
    transition: 0.3s all ease-in-out;
}

.search-menu-bar input:focus {
    width: 270px !important;
}

.search-menu-bar {
    margin-inline: 30px;
    height: 54px;
}

.siq-expandwdgt-cont.moveToExtremeRight .siq-expandwdgt-icon {
    right: 20px !important;
    top: 8px !important;
}

.siq-expandwdgt input::placeholder {
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 34px !important;
    text-transform: uppercase !important;
    font-family: "Manrope", sans-serif !important;
}

/* Home hero section */
#home-hero {
    padding: 240px 0 150px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.hero-content h1 {
    max-width: 940px;
    width: 100%;
    margin-inline: auto;
}

.hero-content p {
    max-width: 1160px;
    width: 100%;
    margin-inline: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
}

.hero-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
	line-height: 14px;
}

.hero-buttons a:first-of-type, .hero-buttons a:first-of-type:before {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.hero-buttons a:nth-of-type(2), .hero-buttons a:nth-of-type(2):before {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.hero-buttons a:nth-of-type(2):before {
    left: 0;
    width: calc(100% + 10px);
}

.hero-buttons a:first-of-type:before {
    width: calc(100% + 15px);
}

.hero-buttons a img {
    height: 25px;
}

.hero-buttons a span {
    margin-right: 10px;
    flex-shrink: 0;
}

.hero-buttons a:first-of-type:hover img {
    content: url('/wp-content/uploads/2025/09/Donate-icon.svg');
}

.hero-buttons a:nth-of-type(2):hover img {
    content: url('/wp-content/uploads/2025/09/Volunteer.svg');
}

.hero-buttons a:nth-of-type(2) {
    background: linear-gradient(90.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
}

.hero-buttons a:nth-of-type(2):hover {
    background: #ffffff;
}

/* Home hero section ends */

/* Programs section */

.programs-container {
    padding: 10px;
    display: flex;
    column-gap: 10px;
    background-color: rgba(29, 35, 60, 1);
}

.program-wrapper {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 410px 40px 40px;
    border-radius: 20px;
    background-size: cover;
    background-position: center center;
    text-align: center;
    position: relative;
	transition: 0.4s all ease;
}

.program-wrapper:hover {
	filter: brightness(125%);
}


.program-wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    background: linear-gradient(0.00deg, rgba(29, 35, 60, 1),rgba(29, 35, 60, 0) 100%);
    border-radius: 20px;
}

.program-wrapper span, .program-wrapper .program-button {
    position: relative;
}

.program-wrapper .program-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -1px;
    color: var(--light-blue);
    margin-bottom: 30px;
    font-family: "Urbanist", sans-serif;
}

.program-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: auto;
    transition: 0.3s all ease-in;
	line-height: 20px;
	padding-block: 15px;
}

.program-button span {
    -webkit-mask: url('/wp-content/uploads/2025/09/Arrow-right.svg');
    width: 19px;
    height: 13px;
    -webkit-mask-repeat: no-repeat;
    display: inline-block;
    background-color: #fff;
    transition: 0.3s all ease-in;
	flex-shrink: 0;
}

.program-box-wrapper:hover .program-button span, .program-button:hover span {
    background-color: rgba(54, 64, 101, 1);
}

.program-box-wrapper:hover .program-button {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: rgba(54, 64, 101, 1);
}

/*Program section ends */

/* Contact section starts */

.contact-button span {
    -webkit-mask-repeat: no-repeat;
     width: 18px;
     height: 14px;
     background-color: #ffffff;
    -webkit-mask-position: center center;
}

.contact-button a {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
}

.contact-button a:hover span {
    background: linear-gradient(180.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
}

.home-contact-section {
    padding-block: 100px;
}

.contact-text {
    font-size: 30px;
    line-height: 44px;
    letter-spacing: 0px;
    padding-right: 50px;
}

.contact-button {
    display: flex;
    justify-content: flex-end;
}

.home-contact-section .row {
    align-items: center;
    row-gap: 40px;
}

/* Contact section ends */

/* Video section starts */

.video-wrapper {
    padding-block: 270px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 40px;
    max-width: 1570px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 165px;
}

.video-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background:rgba(29, 35, 60, 0.75);
}

.video-wrapper h2 {
    color: #ffffff;
    width: calc(100% - 120px);
    margin-bottom: 0;
}

.video-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.video-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    background: var(--Gradient, linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%));
    width: 80px;
    height: 80px;
    position: relative;
}

.video-wrapper a:hover {
    box-shadow: 0px 8px 15px 0px rgba(54, 115, 255, 0.18);
    background: linear-gradient(0.00deg, rgba(160, 137, 255, 1),rgba(200, 187, 255, 1) 100%);
}

.video-wrapper a:before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    display: block;
    background-color: rgba(144, 134, 255, 0.1);
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 99px;
}

/* Video Section ends */

/* Events section */

.events-section {
    max-width: 1420px;
    width: 100%;
    margin-inline: auto;
    position: relative;
}

.events-section-wrapper {
    width: 1420px;
    max-width: 90%;
    margin-inline: auto;
    position: relative;
}

.events-section a {
    border-radius: 20px;
    background: var(--White, rgba(255, 255, 255, 1));
    padding: 40px;
    margin-inline: 10px;
    text-align: center;
}

.event-details {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.event-details .date {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    opacity: .5;
}

.event-details h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.event-location {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 30px;
}

.event-button, .button-3 {
    margin-top: auto;
    display: block;
    border: 2px solid rgba(227, 239, 244, 1);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    padding: 14px;
    transition: 0.3s all ease-in-out;
}

.button-2 {
    position: relative;
    display: inline-block;
    border-radius: 99px;
    padding: 18px 60px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 10px;
    background-color: transparent; /* unutrašnjost dugmeta */
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

.button-2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 2px; /* debljina border-a */
    border-radius: 99px;
    background: linear-gradient(270deg, rgba(160,137,255,1), rgba(54,115,255,1));
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.button-2:hover {
    border-radius: 99px;
    background: var(--Gradient, linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%));
}

.button-3:hover,
.events-section a:hover .event-button {
    border: 2px solid transparent;
    border-radius: 99px;
    background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(270deg, rgba(160,137,255,1), rgba(54,115,255,1)) border-box;
}


.mec-events {
    padding: 100px 0 170px;
    overflow: hidden;
}

.mec-events h2 {
    margin-bottom: 60px;
}

.events-section .slick-track {
    display: flex !important;
}

.events-section .slick-slide {
    height: inherit !important;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 32px;
    position: absolute;
    bottom: -94px;
    left: 50%;
    transform: translateX(-50%);
}

.slick-dots li {
    font-size: 0;
}

.slick-dots li button {
    border: none;
    box-shadow: none;
    padding: 0;
    width: 11px;
    height: 11px;
    border-radius: 55px;
    background: var(--Purple, rgba(160, 137, 255, 1));
    opacity: 0.25;
}

.slick-dots li.slick-active button {
    background: linear-gradient(180.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
    opacity: 1;
}

.arrow-slider {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    border-radius: 55px;
    box-shadow: 0px 8px 15px 0px rgba(54, 115, 255, 0.18);
    background: linear-gradient(180.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.arrow-slider:hover {
    background: linear-gradient(0.00deg, rgba(160, 137, 255, 1),rgba(200, 187, 255, 1) 100%);
}

.left-arrow {
    left: -74px;
}

.right-arrow {
    right: -74px;
}

.events-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Events section ends */

/* Numbers section */

.numbers-section {
    padding-block: 120px;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.numbers-section:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 29, 65, 0.7);
}

.numbers-content {
    position: relative;
    z-index: 1;
}

.numbers-content span {
    font-size: 120px;
    font-weight: 100;
    line-height: 144px;
    letter-spacing: -2px;
    font-family: "Urbanist", sans-serif;
}

.numbers-content p {
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
}


.numbers-section h2 {
    position: relative;
}

.numbers-section h2:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 8px;
    border-radius: 99px;
    background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
}

.numbers-row {
    margin-block: 100px;
}

.number-wrapper {
    padding-block: 30px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.number-wrapper:last-of-type {
    border-right: none;
}

/* Number section ends */

/* Involved section starts */

.involved-section {
    padding-block: 80px;
}

.involved-wrapper {
    padding: 50px;
    border-right: 1px solid rgba(29, 35, 60, .15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s all ease-in-out;

}

.involved-wrapper:hover img {
   transform: scale(1.07);
}



.involved-wrapper:last-of-type {
    border-right: none;
}

.involved-wrapper:hover {

    background: rgba(255, 255, 255, 1);
}


.involved-wrapper:first-of-type:hover {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.involved-wrapper:last-of-type:hover {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.involved-list {
    border-radius: 20px;
    position: relative;
    margin-block: 80px;
		overflow: hidden;
}

.involved-list:before {
    content: '';
    position: absolute;
    display: block;
    padding: 2px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(160,137,255,1), rgba(54,115,255,1));
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 20px;
}

.involved-image  {
    height: 115px;
    margin-bottom: 40px;
}

.involved-image img {
    height: 100%;
	transition: 0.3s transform ease-in-out;
}

.involved-wrapper p {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.involved-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
    max-width: 1160px;
    width: 100%;
    margin-inline: auto;
    color: rgba(54, 64, 101, 0.5);
}

/* Involved section ends */

/* Footer section */

footer {
    padding-block: 50px;
    border-top: 1px solid rgba(29, 35, 60, 0.1);
    margin-top: auto;
}

.footer-list {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 45px;
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid rgba(54, 64, 101, .1);
}

.footer-list-item {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.footer-list-item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0px;
    transition: 0.1s all ease-in-out;
}

.footer-icon {
 	height:100%;
	
	display: flex;      
  align-items: center;   
  justify-content: center;
	   
}

.footer-icon img {
 	height: 30px;
	width: 25px;
}

.footer-top-row, footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-social-menu {
    column-gap: 20px;
}

#footer-social-menu a {
    font-size: 26px;
    color: rgba(54, 115, 255, 1);
}

#footer-social-menu a:hover {
    color: rgba(54, 115, 255, .5);
}

.footer-crafted p a:hover, #privacy-menu li a:hover, .footer-list-item p:hover {
    color: rgba(54, 115, 255, 1);
}

.first-row-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 22px;
}



.first-row-wrapper ul li a, .first-row-wrapper p, .first-row-wrapper p a {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
    display: block;
    padding-inline: 20px;
    color: rgba(54, 64, 101, 0.5);
}

.first-row-wrapper .footer-crafted a {
    padding-inline: 0;
    border-right: none;
}

.first-row-wrapper .footer-crafted p {
    border-right: none;
}

.first-row-wrapper p a {
    display: inline-block;
}

.first-row-wrapper p, .first-row-wrapper a {
    border-right: 1px solid rgba(54, 64, 101, 0.1);
}

.registration-text {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    margin-top: 10px;
    color: rgba(54, 64, 101, 0.5);
}

.footer-bottom-row {
    margin-top: 55px;
}

.dropdown-container {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.dropdown-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.dropdown-number {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    opacity: .4;
    margin-right: 3px;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-arrow {
    width: 36px;
    height: 36px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 555px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.06);
    background: var(--White, rgba(255, 255, 255, 1));
    transition: 0.3s all ease-in-out;
}

.dropdown-arrow i {
    color: rgba(54, 115, 255, 1);
    font-size: 18px;
    transition: 0.3s all ease-in-out;
}

.dropdown-block h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
}



.dropdown-heading .left-column {
    display: flex;
    align-items: center;
}

.dropdown-description {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.dropdown-description p {
    margin: 40px 0 10px;
}

.dropdown-description ul li {
    position: relative;
    padding-left: 25px;
}

.dropdown-description ul li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: rgba(54, 115, 255, 1);
    left: 0;
    top: 12px;
}

.dropdown-block {
    border-radius: 5px;
    box-shadow: 0px 3px 6px 0px rgba(29, 35, 60, 0.03);
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 20px 20px 60px;
}

.dropdown-block:hover {
    background: rgba(255, 255, 255, 1);
}

.dropdown-block.open {
    background-color: #ffffff;
}

.dropdown-block:first-of-type {
    border-radius: 20px 20px 5px 5px;
}

.dropdown-block:last-of-type {
    border-radius: 5px 5px 20px 20px;
}



.dropdown-description.open {
    opacity: 1;
}

.dropdown-heading.open i {
    rotate: 180deg;
    color: #ffffff;
}

.dropdown-heading.open .dropdown-arrow {
    background: linear-gradient(180.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
}

/* Footer section ends */

.logos-section {
    padding-bottom: 80px;
}

.default-content h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 39px;
}

.default-content {
    border-radius: 20px;
    box-shadow: 0px 3px 6px 0px rgba(29, 35, 60, 0.03);
    background: rgba(255, 255, 255, 1);
    padding: 60px;
}

.default-content p {
    margin-bottom: 30px;
}

.default-content {
    margin-bottom: 60px;
}

.default-content ul, .default-content ol {
    padding-left: 30px;
    margin-bottom: 30px;
}

.default-content ul li, .default-content ol li {
    position: relative;
    padding-left: 20px;
    margin-top: 10px;
}

.default-content ul li:before{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    border-radius: 55px;
    background: linear-gradient(180.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
    width: 6px;
    height: 6px;
    top: 15px;
}

.default-content #siq_search_results .search-results-R div.search-results-title a {
	color: #000 !important;
}


.default-inner h1 {
    padding: 70px 0 50px;
    background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
;
    -webkit-background-clip:
            text;
    -webkit-text-fill-color:
            transparent;
    background-clip:
            text;
    text-fill-color:
            transparent;
    font-family: Urbanist;
    font-size: 90px;
    font-weight: 800;
    line-height: 80px;
    letter-spacing: -2px;
    text-align: center;
    text-transform: uppercase;
}

.default-content a {
    background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
;
    -webkit-background-clip:
            text;
    -webkit-text-fill-color:
            transparent;
    background-clip:
            text;
    text-fill-color:
            transparent;
}

.siq_search_page .default-content a {
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    text-fill-color: unset;
}

.default-inner {
    padding-top: 125px;
}

.f-thumbs.is-modern .f-thumbs__slide button {
    display: none;
}

.search-menu-bar  input.active-search, .search-menu-bar input:focus {
    background-color: rgba(255,255,255, 1) !important;
}

.gallery-image-slide:hover img {
    filter: brightness(120%);
}



.footer-backdrope {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 35, 60, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(50px);
    transition: 0.3s all ease-in-out;
    z-index: -1;
    opacity: 0;
}

.footer-backdrope.active {
    z-index: 10000;
    opacity: 1;
}

.feedback-modal {
    background-color: #ffffff;
    padding: 60px;
    max-width: 600px;
    width: 90%;
    margin-inline: auto;
    position: relative;
    border-radius: 20px;
    box-shadow: 0px 28px 50px 0px rgba(29, 35, 60, 0.2);
}

.feedback-modal .confirmation-text {
    text-align: center;
}

.feedback-modal .confirmation-icon {
    width: 150px;
    height: 150px;
    border-radius: 555px;
    background: rgba(160, 137, 255, 0.1);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.feedback-modal .close-confirmation {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 555px;
    background: linear-gradient(180.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.feedback-modal .gfield--type-html {
    text-align: center !important;
}

.feedback-modal  textarea {
    background-color: rgba(255,255,255,0) !important;
    border: none !important;
    border-bottom: 2px solid rgba(29, 35, 60, 0.1) !important;
    padding: 10px 0 !important;
    min-block-size: unset !important;
    outline: none !important;
    box-shadow: none !important;
}

.feedback-modal .close-confirmation:hover {
    transform: scale(1.15);
}

.feedback-modal .close-confirmation i {
    color: #ffffff;
    font-size: 16px;
}

.form-wrapper h4 {
    margin-bottom: 10px;
}

.feedback-modal form textarea::placeholder, .feedback-modal form textarea {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
	color: var(--primary-color) !important;
}


.feedback-modal
input[type="submit"] {
    border-radius: 99px !important;
    box-shadow: 0px 20px 33px 0px rgba(144, 134, 255, 0.25) !important;
    background:  linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%) !important;
    display: inline-block !important;
    margin-inline: auto !important;
    padding: 26px 80px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    line-height: 0 !important;
    position: relative;
    z-index: 2 !important;
}

.feedback-modal input[type="submit"]:hover {
    color: var(--primary-color) !important;
    background-color: #ffffff !important;
}

.feedback-modal .btn-wrapper {
    display: inline-block !important;
    margin-inline: auto !important;
    position: relative !important;
    margin-top: 36px !important;
}

.feedback-modal .btn-wrapper:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 99px;
    background: rgba(144, 134, 255, 0.1);
    z-index: 1;
}

.trp-language-switcher {
	background-color: rgba(255,255,255,0) !important;
	border: none !important;
}

.trp-switcher-dropdown-list {
    border-radius: 20px !important;
    background: rgb(255, 255, 255) !important;
    padding: 10px !important;
    white-space: nowrap;
}

@media(min-width: 1920px) {
    .left-arrow {
        left: -120px;
    }

    .right-arrow {
        right: -120px;
    }
}

@media(max-width: 1500px) {
    #main-menu li a {
        font-size: 18px;
    }

    #main-menu li {
        padding-right: 30px;
    }

    #main-menu li.menu-item-has-children:before {
        right: 15px;
    }

    .site-logo img {
        width: 200px;
    }

    .site-logo {
        margin-right: 50px;
    }
}

@media(min-width: 1224px) {

    .container {
        max-width: 1224px;
    }
}

@media(max-width: 1300px) {
    .program-button {
        padding-inline: 20px;
    }
}

@media(max-width: 1200px) {
    .programs-container {
        flex-wrap: wrap;
    }

    .program-wrapper {
        width: calc(50% - 10px);
    }

    .left-arrow {
        left: -17px;
    }

    .right-arrow {
        right: -17px;
    }
}

@media(max-width: 1100px) {
    .site-logo {
        margin-right: 10px;
    }

    #main-menu li a {
        font-size: 16px;
    }

    .search-menu-bar {
        margin-inline: 10px;
    }
}

@media(max-width: 991px) {

    h1,  body .hero-inner h1 {
        font-size: 70px;
        line-height: 60px;
    }

    .show-desktop {
        display: none
    }

    .show-mobile {
        display: block;
    }

    nav {
        padding: 10px 8px
    }

   /* .open header nav.show-mobile {
        padding: 0;
    }

    .open header .show-mobile .container-fluid:first-of-type {
        padding: 0;
    }

    .open header .show-mobile .container-fluid:first-of-type .row {
        background-color: rgba(240, 249, 253, 1) ;
        position: relative;
        z-index: 1000;
        padding: 10px 12px;
    }*/

    .hamburger-menu {
        position: relative;
        width: 30px;
        height: 20px;
    }

    .hamburger-menu span {
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: rgba(29, 35, 60, 1);
        border-radius: 6px;
        left: 0;
        transition: 0.3s ease-in-out;
    }

    .hamburger-menu span:first-of-type {
        top: 0;
    }

    .hamburger-menu span:nth-of-type(2) {
        top: 9px
    }

    .hamburger-menu span:nth-of-type(3) {
        top: 18px
    }

    .hamburger-holder {
        display: flex;
        justify-content: flex-end;
    }

    body.open .hamburger-menu span:nth-of-type(1) {
        transform: translateY(10px) rotate(45deg);
    }

    body.open .hamburger-menu span:nth-of-type(2) {
        opacity: 0;
    }

    body.open .hamburger-menu span:nth-of-type(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .site-logo img {
        width: 185px;
    }

    nav .row {
        position: relative;
        z-index: 5;
    }

    .mobile-menu-wrapper {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: 100%;
        background-color: var(--light-blue);
        z-index: 1;
        padding-top: 80px;
        background-image: url('/wp-content/uploads/2025/09/top-gradient-1.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transform: translateX(-100%);
        transition: 0.3s all ease-in-out;
        overflow: auto;
    }

    .mobile-menu-wrapper.open {
        transform: none;
    }

    #main-mobile-menu li.open:before {
        rotate: 180deg;
    }

    body.open {
     overflow: hidden;
    }

    #main-mobile-menu li a {
        font-size: 18px;
        font-weight: 500;
        line-height: 34px;
        display: flex;
        justify-content: space-between;
        color: #2f4772;
        padding: 10px;
    }

    .sub-menu.open li.current-menu-item a, .sub-menu li.current-menu-item a {
        box-sizing: border-box;
        border: 2px solid rgba(160, 137, 255, 0.1);
        border-radius: 10px;
        background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);

        -webkit-background-clip:
                text;
        -webkit-text-fill-color:
                transparent;
        background-clip:
                text;
        text-fill-color:
                transparent;
        font-family: Manrope;
        font-size: 18px;
        font-weight: 400;
        line-height: 34px;
        letter-spacing: 0px;
        text-align: left;
    }

    #main-mobile-menu li {
        padding: 10px;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    #main-mobile-menu li:last-of-type  {
        border-bottom: 1px solid rgba(0,0,0,.10);
    }

    #main-mobile-menu .sub-menu {
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0px 3px 6px 0px rgba(29, 35, 60, 0.1);
        background: rgba(255, 255, 255, 1);
    }

    #main-mobile-menu .sub-menu.open {
        display: block;
    }

    #main-mobile-menu .sub-menu li, #main-mobile-menu .sub-menu li:last-of-type {
        border: none;
    }

    #main-mobile-menu li {
        position: relative;
    }

    #main-mobile-menu li.menu-item-has-children:before {
        content: '\f107';
        position: absolute;
        display: block;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        right: 20px;
        top: 23px;
        font-size: 24px;
        color: rgba(54, 64, 101, 1);
        transition: 0.3s all ease-in-out;
        right: 20px;
    }


    #main-mobile-menu li.current-menu-parent > a, #main-mobile-menu li.current-menu-parent:before  {
        background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        text-align: left;
    }

    #home-hero {
        padding: 150px 0 80px;
    }

    .contact-button {
        justify-content: center;
    }

    .contact-text {
        padding-right: 0;
        text-align: center;
    }

    .home-contact-section {
        padding-block: 80px;
    }

    .video-wrapper {
        padding: 150px 0;
    }

    .video-content {
        flex-direction: column;
        row-gap: 20px;
    }

    .video-content h2 {
        width: 100%;
        text-align: center;
    }

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

    .numbers-section {
        padding: 100px 0 40px;
    }

    .numbers-section h2:before {
        width: 44px;
        height: 4px;
        top: -24px;
    }

    .numbers-row {
        margin-block: 60px;
    }

    .number-wrapper {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255, .15);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 12px;
    }

    .numbers-content span {
        order: 2;
        font-size: 80px;
        line-height: 100px;
    }

    .involved-wrapper {
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 1px solid rgba(29, 35, 60, .15);
        padding: 20px 30px;
    }

    .involved-wrapper:last-of-type {
        border-bottom: none;
    }

    .involved-wrapper .involved-image {
        order: 2;
    }

    .involved-wrapper .involved-image {
        margin: 0;
        height: 70px;
        width: 100px;
        display: flex;
        justify-content: center;
    }

    .involved-list {
        max-width: calc(100% - 12px);
        margin: 40px auto;
    }

    .footer-list {
        flex-direction: column;
        margin: 0;
        padding: 0 20px;
        width: 100%;
    }

    .footer-top-row {
        flex-direction: column;
    }

    .footer-list-item {
        width: 100%;
        position: relative;
        border: none;
    }

    .footer-list-item:before {
        content: '';
        position: absolute;
        width: 200%;
        height: 1px;
        left: -50%;
        bottom: 0;
        background-color: rgba(29, 35, 60, 0.1);
    }

    footer {
        overflow: hidden;
    }

    .footer-list-item {
        column-gap: 0;
        justify-content: space-between;
        padding: 25px 0;
    }

    .footer-list {
        border-right: none;
        margin-bottom: 55px;
    }

    .footer-icon {
        order: 2;
        display: flex;
        justify-content: center;
    }

    footer {
        padding-top: 0;
    }
}

@media(max-width: 768px) {
    .site-logo img {
        width: 135px;
    }

    h1,  body .hero-inner h1  {
        font-size: 40px;
        font-weight: 800;
        line-height: 42px;
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
        row-gap: 24px;
    }

    .hero-buttons a {
        padding: 20px 40px;
        max-width: 100%;
        border-radius: 99px;
    }

    .hero-buttons a:before {
        width: calc(100% + 18px);
        height: calc(100% + 18px);
        top: -8px;
        left: -8px;
    }

    .hero-buttons a:first-of-type, .hero-buttons a:first-of-type:before, .hero-buttons a:nth-of-type(2), .hero-buttons a:nth-of-type(2):before {
        border-radius: 99px;
    }

    .hero-buttons a:nth-of-type(2) {
        background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
    }

    .hero-buttons a:before {
        top: -9px;
    }

    .hero-buttons a:nth-of-type(2):before {
        left: -8px;
        width: calc(100% + 15px);
    }

    .blue-button {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0px;
        box-shadow: 0px 14px 10px 0px rgba(144, 134, 255, 0.2);
    }

    .program-wrapper {
        width: 100%;
    }

    .programs-container {
        row-gap: 10px;
        background-color: unset;
    }

    .program-wrapper .program-title {
        margin-bottom: 20px;
    }

    .home-contact-section {
        padding-block: 60px;
    }

    .home-contact-section .row {
        row-gap: 30px;
    }

    .video-wrapper {
        padding: 50px 0;
    }

    .video-content h2 {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
    }

    .video-wrapper a {
        width: 60px;
        height: 60px;
    }

    .video-wrapper a img {
        height: 24px;
    }

    .involved-wrapper .involved-image {
        width: 40px;
    }

    body:after {
        display: none;
    }

    body:before {
        background-image: url("/wp-content/uploads/2025/09/top-gradient-1.png");
        width: 360px;
        height: 812px;
    }

    .first-row-wrapper {
        flex-direction: column;
    }

    .footer-bottom-row {
        display: flex;
        flex-direction: column;
    }

    .registration-text {
        order: -1;
        margin-bottom: 10px;
        line-height: 19px;
        margin-top: 0;
    }

    .footer-bottom-row {
        margin-top: 30px;
    }

    .footer-list {
        margin-bottom: 30px;
    }

    #footer-social-menu a {
        font-size: 40px;
    }

    #footer-social-menu {
        column-gap: 40px;
    }

    .first-row-wrapper {
        row-gap: 10px;
    }

    .first-row-wrapper .copyright {
        order: 4;
        border-right: none;
    }

    .first-row-wrapper ul li a, .first-row-wrapper p, .first-row-wrapper p a {
        font-size: 14px;
        font-weight: 400;
        line-height: 19px;
    }

    #privacy-menu li:nth-of-type(2) a {
        border-right: none;
    }

    .mobile-menu-wrapper {
        padding-top: 65px;
    }

    .default-content {
        padding: 20px;
    }

    .default-content p, .default-content ul, .default-content ol {
        margin-bottom: 20px;
    }

    .default-content h2 {
        font-size: 26px;
        line-height: 20px;
    }

    .default-inner {
        padding-top: 50px;
    }

    .default-content li {
        font-size: 16px;
        line-height: 24px;
    }

}

@media(max-width: 575px) {
		.involved-wrapper {
		border-right: none;

	}
	
	.video-wrapper {
		border-radius: 20px;
		overflow:hidden;
	}	
     body .hero-inner h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 40px;
        letter-spacing: -2px;
        margin-bottom: 10px;
    }

    body.home h1 {
        font-size: 32px;
        font-weight: 600;
        line-height: 34px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 30px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0px;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 26px;
        font-weight: 600;
        line-height: 31px;
        letter-spacing: 0px;
    }

    h4 {
        font-size: 22px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0px;
    }

    .mec-events h2 {
        margin-bottom: 20px;
    }

    p {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    #home-hero {
        padding: 90px 0 25px;
    }

    .site-logo img {
        width: 135px;
        height: 40px;
    }

    .hero-content {
        row-gap: 0
    }

    .hero-content p {
        margin-bottom: 30px;
    }

    .program-wrapper .program-title {
        font-size: 26px;
        font-weight: 600;
        line-height: 31px;
        letter-spacing: 0;
    }

    .home-contact-section {
        padding-block: 40px;
    }

    .contact-text {
        font-size: 18px;
        line-height: 24px;
    }

    .mec-events {
        padding: 40px 0 70px;
    }

    .event-details h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
    }

    .event-date, .event-location {
        font-size: 14px;
        font-weight: 400;
        line-height: 19px;
    }

    .events-section a {
        padding: 20px;
    }

    .slick-dots {
        bottom: -54px;
        column-gap: 20px;
    }

    .slick-dots li button {
        width: 6px;
        height: 6px;
    }

    .numbers-row {
        margin-block: 40px;
    }

    .number-wrapper {
        padding: 15px 12px;
    }

    .number-wrapper span {
        font-size: 34px;
        font-weight: 300;
        line-height: 41px;
        letter-spacing: 0px;
    }

    .number-wrapper p {
        font-size: 18px;
        font-weight: 600;
        line-height: 25px;
        letter-spacing: 0px;
    }

    .numbers-content a {
        width: 100%;
    }

    .numbers-section:before {
        background: linear-gradient(180.00deg, rgba(29, 35, 60, 0.73),rgba(29, 35, 60, 1) 100%);
    }

    .numbers-section {
        background-position: 70% top;
    }

    .involved-section {
        padding-block: 40px;
    }

    .involved-list {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .involved-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 19px;
    }

    .involved-wrapper p {
        font-size: 18px;
        font-weight: 600;
        line-height: 25px;
        letter-spacing: 3px;
    }

    .involved-wrapper .involved-image {
        height: 40px;
    }


    body section {
        padding-inline: 8px !important;
    }

    .dropdown-description ul li {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    .dropdown-block h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
    }

    .dropdown-description p {
        margin-block: 20px;
    }

    .dropdown-arrow {
        width: 20px;
        height: 20px;
        border-radius: 10px;
        background-color: rgba(255,255,255, 0);
        box-shadow: unset;
    }

    .dropdown-arrow i {
        font-size: 15px;
    }

    .dropdown-block {
        padding: 20px;
    }

    .dropdown-number {
        display: none;
    }

    .dropdown-block .left-column {
        width: calc(100% - 20px);
    }

    .dropdown-block, .dropdown-block:first-of-type, .dropdown-block:last-of-type {
        border-radius: 10px;
    }

    .dropdown-description ul li:before {
        width: 4px;
        height: 4px;
        border-radius: 2px;
    }

    .dropdown-description ul li {
        padding-left: 20px;
    }

    .dropdown-heading.open i {
        color: rgba(160, 137, 255, 1);;
    }

    .blue-button {
        padding: 26px 20px;
        width: 100%;
        justify-content: center;
    }

    .dropdown-heading.open .dropdown-arrow {
        background: rgba(255,255,255, 0);
    }

    .logos-section {
        padding-bottom: 40px;
    }

    .vide0-wrapper {
        border-radius: 20px;
    }

    .video-wrapper:before {
        border-radius: 20px;
    }

    .events-section-wrapper {
        max-width: 100%;
    }

    .default-content-main {
        padding-inline: 0 !important;
    }

    .default-content ul, .default-content ol {
        padding-left: 15px;
    }

    .default-content h2 {
        line-height: 120%;
    }

    .feedback-modal {
        padding: 40px 20px;
    }
}

@media(max-width: 420px) {
    .program-wrapper {
        padding: 150px 20px 20px;
    }
}

@media(max-width: 375px) {
    .button-2 {
        padding: 18px 20px;
        width: 100%;
    }
}

@media(max-width: 330px) {
	.program-button span {
		width: 28px;
	}
}
