/*
Theme Name: BlankSlate Child
Theme URI: https://opencollective.com/blankslate
Template: blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready,one-column,two-columns,custom-menu,featured-images,microformats,sticky-post,threaded-comments,translation-ready
Version: 2025.1762763003
Updated: 2025-11-10 08:23:23

*/


:root {
    --primary-black: #191919;
    --primary-yellow: #FAD414;
    --secondary-yellow: #FFD600;
}

body {
    font-family: "Manrope", sans-serif;
    background: #FFF;
    overflow-x: hidden;
}

body.stop {
    overflow: hidden;
}

.zp_row {
    padding: 0 100px;
}
@media (min-width: 1001px) and (max-width: 1600px) {
    .zp_row {
        padding: 0 50px;
    }
}
@media (max-width: 1000px) {
    .zp_row {
        padding: 0 20px;
    }
}

.zp_row_two {
    padding: 0 100px;
}
@media (min-width: 1001px) and (max-width: 1600px) {
    .zp_row_two {
        padding: 0 50px;
    }
}
@media (max-width: 1000px) {
    .zp_row_two {
        padding: 0 20px;
    }
}

/* BUTTON HERE */
.btn {
    border-radius: 30px;
    background: #FFDF22;
    padding: 12px 45px 12px 12px;
    color: #191919;
    font-size: 22px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: .3s all ease-in-out;
    position: relative;
    width: fit-content;
}
.btn:hover {
    background: #FFF;
    transition: .3s all ease-in-out;
}
.btn img.btn_img {
    position: absolute;
    opacity: 1;
    right: 12px;
    width: 25px;
    height: 25px;
    animation: rotate-animation 2s infinite linear;
}
.btn img.btn_img_hover {
    position: absolute;
    opacity: 0;
    right: 12px;
    width: 25px;
    height: 25px;
}
.btn:hover img.btn_img {
    opacity: 0;
}
.btn:hover img.btn_img_hover {
    opacity: 1;
    animation: rotate-animation 2s infinite linear;
}
.btn.white {
    background: #FFF;
}
.btn.white:hover {
    background: #FFDF22;
}
.btn.loadMore {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.btn.loadMore.hide {
    display: none;
}
@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@media (max-width: 1000px) {
    .btn {
        font-size: 20px;
    }
    .btn.loadMore {
        font-size: 16px;
        font-weight: 400;
    }
}

/* MENU HERE */
.mainMenu {
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 100;
}
.mainMenu ul {
    display: flex;
    border-radius: 30px;
    border: 2px solid #FFF;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(20px);
    gap: 80px;
    margin: auto;
    padding: 12px 70px;
    justify-content: center;
    align-items: center;
    max-width: 1250px;
}
.mainMenu li a {
    color: var(--primary-black);
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}
.mainMenu li.bold a {
    font-weight: 600;
}
.mainMenu li {
    padding: 12px;
    transition: .3s all ease-in-out;
}
.mainMenu li:hover {
    background-color: #FFF;
    border-radius: 30px;
    transition: .3s all ease-in-out;
}

.mainMenu li:last-child:hover {
	background-color: #FFDF22;
}

.mainMenuMobile {
    display: none;
}
@media (min-width: 1001px) and (max-width: 1100px) {
    .mainMenu ul {
        gap: 5px;
        justify-content: space-between;
        max-width: 95%;
    }
}
@media (min-width: 1101px) and (max-width: 1400px) {
    .mainMenu ul {
        gap: 10px;
        justify-content: space-between;
        max-width: 90%;
    }
}
@media (max-width: 1000px) {
  .mainMenu {
    display: none;
  }

  .mainMenuMobile {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 12px 20px;
    background-color: #0D8B0D;
/*     position: fixed;
    top: 0;
    z-index: 10; */
  }

  .mainMenuMobile img {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 100;
  }

  .burgerMenu {
    background-color: var(--secondary-yellow);
    border-radius: 100px;
    padding: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
  }

  .burgerMenu svg {
    width: 40px;
    height: 30px;
  }
  .burgerMenu svg path {
        transition: .3s all ease-in-out;
    }
    .burgerMenu.open svg path {
        transition: .3s all ease-in-out;
    }
    .burgerMenu.open svg path:nth-of-type(1) {
        transform: rotate(-45deg) translate(-7px, 3.5px);
        transition: .3s all ease-in-out;
    }

    .burgerMenu.open svg path:nth-of-type(3) {
        opacity: 0;
        transition: .3s all ease-in-out;
    }

    .burgerMenu.open svg path:nth-of-type(2) {
        transform: rotate(45deg) translate(4px, -5px);
        transition: .3s all ease-in-out;
    }

  .mainMenuMobile .mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-black); 
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 12;
  }

  .mainMenuMobile .mobileMenu.show {
    transform: translateX(0);
  }

  .mainMenuMobile .mobileMenu::after {
    content: "";
    width: 180px;
    height: 180px;
    border-radius: 500px;
    background-color: #FFF;
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }

  .mainMenuMobile ul {
    display: flex;
    flex-direction: column;
    padding-top: 20vh;
    padding-left: 10vh;
    height: 100vh;
    z-index: 10;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    touch-action: none;
  }

  .mainMenuMobile li {
    margin-bottom: 20px;
  }

  .mainMenuMobile li a {
    color: #fff;
    font-size: 21px;
    line-height: 24px;
    text-decoration: none;
    font-weight: 600;
  }
}

/* @media (max-width: 500px) {
    .mainMenuMobile img {
        width: 32px;
        height: 32px;
    }
    .burgerMenu {
        width: 25px;
        height: 25px;
    }
    .burgerMenu svg {
        width: auto;
        height: auto;
    }
} */



/* HERO HERE */
#hero {
    background: linear-gradient(180deg, #0D8B0D 0%, #000501 100%);
    padding: 150px 350px 80px 350px;
}
#hero a {
    text-decoration: none;
}
#hero .title p {
    color: #FFF;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 43px; 
}
#hero .title p strong {
    color: #FFD600;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 43px;
}
#hero .date, #hero .time, #hero .location {
    color: #FFF;
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
    display: flex;
    gap: 15px;
    width: fit-content;
    margin: 24px auto;
    align-items: center;
}
#hero .location a {
    color: #FFF;
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
}
#hero .sub {
    color: #FFD600;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 110%;
    letter-spacing: -0.36px;
    text-align: center;
    margin: 24px auto 24px auto;
}
#hero .text p {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%; 
    letter-spacing: -0.48px;
	max-width: 1220px;
	margin: auto;
}
#hero .text p strong {
    color: #FFD600;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.48px;
}
#hero .heroImgs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    margin: 24px auto 45px auto;
}
#hero .heroImgs span {
    color: #FFF;
    text-align: center;
    font-size: 100px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
#hero .heroImgs img {
    width: 100%;
    height: 100%;
}
#hero .heroImgs img.img_one {
    max-width: 140px;
}
#hero .heroImgs img.img_two {
    max-width: 215px;
}
#hero .heroBtns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 25px auto 10px auto;
}
#hero .heroLoader {
  position: relative;
  width: 100%;
  height: 5px;
  background: transparent;
  border-radius: 3px;
  display: block;
  margin: 2rem auto;
  max-width: 500px;
}

#hero .heroLoader::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0D8B0D 0%, #FFF 100%);
  animation: fillBar 4s ease-in-out infinite;
}

#hero .heroLoader svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: moveGlow 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes moveGlow {
  0% {
    left: calc(0% - 90px);
  }
  75% {
    left: calc(100% - 90px); 
  }
  100% {
    left: calc(0% - 90px); 
  }
}

@keyframes fillBar {
  0% {
    width: 0;
  }
  75% {
    width: 100%; 
  }
  100% {
    width: 0; 
  }
}
@media (min-width: 1001px) and (max-width: 1600px) {
    #hero {
        padding: 150px 100px 80px 100px;
    }
}
@media (max-width: 1000px) {
    #hero {
		padding: 40px 20px 40px 20px;
	}
    #hero .heroLoader {
        max-width: 300px;
    }
    #hero .heroLoader svg {
        width: 95px;
    }
    #hero .title p {
        font-size: 24px;
        line-height: 32px; 
    }
    #hero .title p strong {
        font-size: 24px;
        line-height: 32px; 
    }
    #hero .heroImgs span {
        font-size: 50px;
        line-height: normal;
    }
    #hero .date, #hero .time, #hero .location {
        font-size: 22px;
        line-height: 32px; 
    }
    #hero .location a {
        font-size: 22px;
        line-height: 32px; 
    }
    #hero .sub {
        font-size: 16px;
        line-height: 110%; 
    }
    #hero .text p {
        font-size: 18px;
        line-height: 20px; 
    }
    #hero .text p strong {
        font-size: 18px;
        line-height: 20px; 
    }
    #hero .heroImgs img.img_one {
        max-width: 80px;
    }
    #hero .heroImgs img.img_two {
        max-width: 120px;
    }
    #hero .heroBtns {
        flex-direction: column;
        gap: 20px;
        margin: 25px auto;
    }
    #hero .heroBtns .btn {
        margin: auto;
    }
    @keyframes moveGlow {
    0% {
        left: 0;
    }
    75% {
        left: 70%; 
    }
    100% {
        left: 0; 
    }
    }
}



/* ABOUT HERE */
#about a {
    text-decoration: none;
}
#about {
    background: #000501;
    padding-top: 100px;
    padding-bottom: 100px;
}
#about .aboutMain {
    display: flex;
    gap: 400px;
}
#about .aboutMain .left {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#about .aboutMain .title {
    color: #FFF;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.9px;
}
#about .aboutMain .sub {
    color: #FFD600;
    font-size: 24px;
    font-style: italic;
    font-weight: 200;
    line-height: 110%; 
    letter-spacing: -0.48px;
}
#about .aboutMain .text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
#about .aboutMain .text p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.36px;
}
#about .aboutMain .text p b {
    font-weight: 700;
}
#about .aboutMain .text p strong {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.48px;
}
#about .aboutMain .sub_two {
    color: #FFD600;
    font-size: 24px;
    font-style: italic;
    font-weight: 200;
    line-height: 110%; 
    letter-spacing: -0.48px;
    margin-top: -8px;
}
#about .btn.mobile {
    display: none;
}
#about .aboutMain .right {
    width: calc(100vh - 40vh);
    height: auto;
    position: relative;
    /* transform: rotate(0deg);
  will-change: transform; */
}

#about .aboutMain .right .left_bracket {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center;
}
 #about .aboutMain .right .right_bracket {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    transform-origin: top;
    /* rotate: 180deg; */
} 
 
#about .aboutMain .right .bubbles {
    opacity: 0;
    top: 50%;
    left: 0;
    transform: translate(-35%, -15%);
    rotate: 90deg;
    position: absolute;
}
@media (min-width: 1001px) {
#about:hover .aboutMain .right {
    animation: finalRotate 3s ease-in-out 3s forwards;
}
#about:hover .aboutMain .right .left_bracket {
  animation: scale 3s ease-in-out forwards;
}

 #about:hover .aboutMain .right .right_bracket {
    animation: rotation 3s ease-out forwards;
}

#about:hover .aboutMain .right .bubbles {
    animation: opacityAnimation 4s ease-out forwards;
}




#about.hovered:not(:hover) .aboutMain .right {
    animation: finalRotateReverse 3s ease-in-out forwards;
}

#about.hovered:not(:hover) .aboutMain .right .left_bracket {
    animation: scaleReverse 3s ease-in-out forwards;
}

#about.hovered:not(:hover) .aboutMain .right .right_bracket {
    animation: rotationReverse 3s ease-out forwards;
}

#about.hovered:not(:hover) .aboutMain .right .bubbles {
    animation: opacityAnimationReverse 4s ease-out forwards;
}
}

@media (max-width: 1000px) {
    #about.active .aboutMain .right {
        animation: finalRotate 3s ease-in-out 3s forwards;
    }

    #about.active .aboutMain .right .left_bracket {
        animation: scale 3s ease-in-out forwards;
    }

    #about.active .aboutMain .right .right_bracket {
        animation: rotation 3s ease-out forwards;
    }

    #about.active .aboutMain .right .bubbles {
        animation: opacityAnimation 4s ease-out forwards;
    }

    #about.hovered:not(.active) .aboutMain .right {
        animation: finalRotateReverse 3s ease-in-out forwards;
    }

    #about.hovered:not(.active) .aboutMain .right .left_bracket {
        animation: scaleReverse 3s ease-in-out forwards;
    }

    #about.hovered:not(.active) .aboutMain .right .right_bracket {
        animation: rotationReverse 3s ease-out forwards;
    }

    #about.hovered:not(.active) .aboutMain .right .bubbles {
        animation: opacityAnimationReverse 4s ease-out forwards;
    }
}
@keyframes rotation {
    0% {
        transform: rotate(0) translateY(0deg) translateX(0px);
    }
    40% {
        transform: rotate(-180deg) translateY(-134px) translateX(-150px);
        scale: 1;
    }
    60% {
        transform: rotate(-180deg) translateY(-134px) translateX(-150px);
        scale: 1;
    }
    100% {
        transform: rotate(-180deg) translateY(-134px) translateX(-150px);
        scale: 1.3; 
    }
}


@keyframes opacityAnimation {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scale {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  53% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@keyframes finalRotate {
    0% {
        rotate: 0;
    }
    90% {
        rotate: 0;
    }
    100% {
        rotate: -90deg;
        transform-origin: 25% 48%;
    }
}
@keyframes rotationReverse {
    0% {
        transform: rotate(-180deg) translateY(-134px) translateX(-150px);
        scale: 1.3;
    }
    40% {
        transform: rotate(-180deg) translateY(-134px) translateX(-150px);
        scale: 1;
    }
    60% {
        transform: rotate(-180deg) translateY(-134px) translateX(-150px);
        scale: 1;
    }
    100% {
        transform: rotate(0) translateY(-50%) translateX(-30px);
    }
}

@keyframes opacityAnimationReverse {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes scaleReverse {
    0% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    47% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes finalRotateReverse {
    0% {
        rotate: -90deg;
    }
    10% {
        rotate: 0;
    }
    100% {
        rotate: 0;
    }
}
@media (min-width: 1601px) and (max-width: 1800px) {
    #about .aboutMain {
        gap: 300px;
    }
}
@media (min-width: 1201px) and (max-width: 1600px) {
    #about .aboutMain {
        gap: 200px;
    }
}
/* @media (min-width: 1201px) and (max-width: 1400px) {
    #about .aboutMain {
        gap: 100px;
    }
} */
@media (min-width: 1001px) and (max-width: 1200px) {
    #about .aboutMain {
        gap: 150px;
    }
}
@media (min-width: 1001px) and (max-width: 1800px) {
    #about .aboutMain .left {
        max-width: calc(100% - 50%);
    }
}
@media (max-width: 1000px) {
    #about {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #about .aboutMain {
        flex-direction: column;
        gap: 2rem;
    }
    #about .aboutMain .left {
        max-width: 100%;
        gap: 1.5rem;
        text-align: center;
    }
    #about .aboutMain .title {
        font-size: 24px;
    }
    #about .aboutMain .sub {
        font-size: 24px;
    }
    #about .aboutMain .text {
        gap: 1rem;
    }
    #about .aboutMain .text p {
        font-size: 16px;
    }
    #about .aboutMain .text p strong {
        font-size: 18px;
    }
    #about .aboutMain .sub_two {
        font-size: 20px;
    }
    #about .btn.mobile {
        display: block;
        margin: 4rem auto 0 auto;
    }
    #about .btn.mobile img {
        top: 12px;
    }
    #about .btn.desktop {
        display: none;
    }
    #about .aboutMain .right {
        min-height: 200px;
        width: auto;
    }
    #about .aboutMain .right .left_bracket svg {
        max-height: 185px;
    }
    #about .aboutMain .right .right_bracket svg {
        max-height: 185px;
    }
    #about .aboutMain .right .bubbles svg {
        max-height: 140px;
        max-width: 100px;
    }
    @keyframes finalRotate {
    0% {
        rotate: 0;
    }
    90% {
        rotate: 0;
    }
    100% {
        rotate: -90deg;
        transform-origin: center;
    }
}
}
@media (min-width: 651px) and (max-width: 1000px) {
    #about .aboutMain .right {
        min-height: 200px;
        width: 100%;
        max-width: 500px;
        margin: auto;
    }
    #about .aboutMain .right .left_bracket {
        left: calc(100% - 62%);
        top: 50%;
    }
    #about .aboutMain .right .right_bracket {
        left: calc(100% - 52%);
        top: 46%;
    }
    #about .aboutMain .right .bubbles {
        left: calc(100% - 62%);
        top: 36%;
    }
    @keyframes rotation {
        0% {
            transform: rotate(0) translateY(0px) translateX(0px);
        }
        40% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1;
        }
        60% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1;
        }
        100% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1.3; 
        }
    }
}
@media (min-width: 501px) and (max-width: 650px) {
    #about .aboutMain .right {
        min-height: 200px;
        width: 100%;
        max-width: 400px;
        margin: auto;
    }
    #about .aboutMain .right .left_bracket {
        left: calc(100% - 66%);
        top: 50%;
    }
    #about .aboutMain .right .right_bracket {
        left: calc(100% - 55%);
        top: 46%;
    }
    #about .aboutMain .right .bubbles {
        left: calc(100% - 66%);
        top: 36%;
    }
    @keyframes rotation {
        0% {
            transform: rotate(0) translateY(0px) translateX(0px);
        }
        40% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1;
        }
        60% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1;
        }
        100% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1.3; 
        }
    }
}
@media (min-width: 301px) and (max-width: 500px) {
    #about .aboutMain .right {
        min-height: 200px;
        width: 100%;
        max-width: 200px;
        margin: auto;
    }
    #about .aboutMain .right .left_bracket {
        left: calc(100% - 80%);
        top: 50%;
    }
    #about .aboutMain .right .right_bracket {
        left: calc(100% - 55%);
        top: 45%;
    }
    #about .aboutMain .right .bubbles {
        left: calc(100% - 80%);
        top: 38%;
    }
    @keyframes rotation {
        0% {
            transform: rotate(0) translateY(0px) translateX(0px);
        }
        40% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1;
        }
        60% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1;
        }
        100% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1.3; 
        }
    }
      #about .btn.mobile {
        margin: 3rem auto 0 auto !important;
    }
}
@media (max-width: 300px) {
    #about .aboutMain .right {
        min-height: 200px;
        width: 100%;
        max-width: 200px;
        margin: auto;
    }
    #about .aboutMain .right .left_bracket svg {
        max-height: 155px;
    }
    #about .aboutMain .right .right_bracket svg {
        max-height: 155px;
    }
    #about .aboutMain .right .bubbles svg {
        max-height: 140px;
        max-width: 100px;
    }
    #about .aboutMain .right {
        min-height: 200px;
    }
    #about .aboutMain .right .left_bracket {
        left: calc(100% - 73%);
        top: 50%;
    }
    #about .aboutMain .right .right_bracket {
        left: calc(100% - 58%);
        top: 34%;
    }
    #about .aboutMain .right .bubbles {
        left: calc(100% - 74%);
        top: 38%;
    }
    @keyframes rotation {
        0% {
            transform: rotate(0) translateY(0px) translateX(0px);
        }
        40% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1;
        }
        60% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1;
        }
        100% {
            transform: rotate(-180deg) translateY(-100px) translateX(-50px);
            scale: 1.3; 
        }
    }
      #about .btn.mobile {
        margin: 3rem auto 0 auto !important;
    }
}







/* OFELH HERE */
#ofelh a {
    text-decoration: none;
}
#ofelh img.mobile {
    display: none;
}
#ofelh .ofelhMain {
    display: flex;
    gap: 160px;
    padding: 0px 300px 45px 300px;
    position: relative;
    overflow: hidden;
}
#ofelh .title.mobile {
    display: none;
}
#ofelh .title.desktop {
    padding: 65px 300px 0 300px;
}
#ofelh .title {
    color: #1E1E1E;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.9px;
    margin-bottom: 60px;
}
#ofelh .ofelhMain .sub {
    color: #0D8B0D;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1.5rem;
}
#ofelh .ofelhMain .left {
    width: 100%;
    max-width: 765px;
}
#ofelh .ofelhMain .checks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
#ofelh .ofelhMain .checks .check {
    color: #1E1E1E;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    gap: 10px;
}
#ofelh .ofelhMain .checks .check::before {
    content: "";
    width: 100%;
    height: 22px;
    max-width: 22px;
    display: block;
    border-radius: 3px;
    border: 1px solid #1E1E1E;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 -1px 10px 0 #FFF;
    transition: .5s all ease-in-out;
}
#ofelh:hover .ofelhMain .checks .check::before {
    border-radius: 3px;
    background: #FFDF22;
    box-shadow: 0 -1px 10px 0 #FFDF22;
    border: 1px solid #FFDF22;
     transition: .5s all ease-in-out;
}
#ofelh .ofelhMain .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
#ofelh .ofelhMain .img_one {
    transition: .8s all ease-in-out;
    width: 100%;
    height: 100%;
    max-width: 315px;
    max-height: 170px;
    transform-origin: top center;
}
#ofelh .ofelhMain .img_two {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 155px;
}
@media (min-width: 1001px) {
#ofelh:hover .ofelhMain .img_one {
    transform: scale(1.2);
    transition: .5s all ease-in-out;
}
}

@media (min-width: 1001px) {
#ofelh .ofelhMain .img_two.slide {
   animation: slide_in_from_right 0.8s ease forwards;
   /* opacity: 1; */
}

#ofelh .ofelhMain .img_two {
  /* opacity: 0; */
  animation: slide_out_to_right 0.8s ease forwards;
}
}
@keyframes slide_in_from_right {
  0% { 
    transform: translateX(400%); 
    /* opacity: 0; */
  }
  100% { 
    transform: translateX(0); 
    /* opacity: 1; */
  }
}
@keyframes slide_out_to_right {
  0% { 
    transform: translateX(0); 
    /* opacity: 1; */
  }
  100% { 
    transform: translateX(400%); 
    /* opacity: 0; */
  }
}

#ofelh .btn {
    margin-left: 300px;
    margin-bottom: 45px;
}
@media (min-width: 1001px) and (max-width: 1600px) {
    #ofelh .ofelhMain {
        padding: 0 100px 45px 100px;
    }
    #ofelh .title.desktop {
        padding: 65px 100px 0 100px;
    }
    #ofelh .btn {
        margin-left: 100px;
    }
}
@media (max-width: 1000px) {
    #ofelh .ofelhMain {
        padding: 0px 20px;
        flex-direction: column;
        gap: 2rem;
    }
    #ofelh img.mobile {
        display: block;
        width: 100%;
        height: 100%;
        max-width: 115px;
        margin: 2rem auto;
    }
    #ofelh .title.desktop {
        display: none;
    }
    #ofelh .title.mobile {
        display: block;
        color: #191919;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%; 
        letter-spacing: -0.48px;
        margin-bottom: 25px;
    }
    #ofelh .ofelhMain .sub {
        font-size: 20px;
        line-height: normal;
    }
    #ofelh .ofelhMain .checks .check {
        font-size: 16px;
        line-height: normal;
    }
    #ofelh .ofelhMain .checks .check::before {
        border-radius: 3px;
        background: #FFDF22;
        box-shadow: 0 -1px 10px 0 #FFDF22;
        border: 1px solid #FFDF22;
    }
    #ofelh .ofelhMain .img_two {
        display: none;
    }
    #ofelh .ofelhMain .img_one {
        max-width: 145px;
        margin: 2rem auto;
    }
    #ofelh .btn {
        margin: auto;
    }
}

/* POP UP HERE FOR INFOGRAPHIC */
#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
#popup.active {
    display: flex;
}
.popup-content {
    position: relative;
    width: 90%;
    height: 90%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
#popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1rem;
    color: var(--primary-yellow);
    cursor: pointer;
    background-color: var(--primary-black);
    border: none;
    border-radius: 100px;
    width: 50px;
    height: 50px;
}
#mainContainer .toolbar {
    display: none !important;
}

/* PROGRAM HERE */
#program {
    margin: 80px 0 0 0;
    position: relative;
    padding-bottom: 110px;
}
#program a {
    text-decoration: none;
}
#program .background {
    opacity: 0;
    position: absolute;
    /* width: 240px;
    height: 240px; */
    right: 0;
    bottom: 50px;
    transition: .5s all ease-in-out;
}
#program:hover .background {
    opacity: 1;
    transition: .5s all ease-in-out;
}
#program .title {
    color: var(--primary-black);
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.9px;
    margin: 0 auto 20px auto;
    width: fit-content;
}

p.zp_program_description {
    color: #1E1E1E;
    font-size: 32px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

#program .boxes {
    display: flex;
    gap: 90px;
}
#program .boxes .box {
    position: relative;
    padding: 40px 20px 20px 20px;
    width: calc(100% - 35%);
    border-radius: 20px;
    border: 4px solid #1E1E1E;
    background: #FFF;
    height: 365;
    transition: .5s all ease-in-out;
    z-index: 1;
}

#program .boxes .box:hover {
    transition: .5s all ease-in-out;
    background: #0D8B0D;
    border: 4px solid #0D8B0D;
}
#program .boxes .box .sub {
    color: #0D8B0D;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px; 
    letter-spacing: 1.2px;
    margin-bottom: 50px;
    transition: .5s all ease-in-out;
    height: 115px;
}
/* #program .boxes .box:nth-child(1) .sub {
    margin-bottom: 30px;
} */
#program .boxes .box .text p {
    color: #1E1E1E;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1px;
    transition: .5s all ease-in-out;
}
#program .boxes .box:hover .sub {
    color: var(--secondary-yellow);
    transition: .5s all ease-in-out;
}
#program .boxes .box:hover .text p {
    color: #FFF;
    transition: .5s all ease-in-out;
}
#program .boxes .box img {
    position: absolute;
    top: -40px;
    left: 17px;
    border-radius: 100px;
}
#program .btn {
    margin: 50px auto 0px auto;
}
@media (min-width: 1001px) and (max-width: 1700px) {
    #program .boxes {
        gap: 50px;
    }
    /* #program .boxes .box .sub {
        height: 115px;
    } */
}
@media (min-width: 1001px) and (max-width: 1300px) {
    #program .boxes {
        gap: 20px;
    }
    #program .boxes .box .sub {
        font-size: 20px;
        line-height: 28px; 
        margin-bottom: 1.5rem;
        /* height: 115px; */
    }
    #program .boxes .box .text p {
        font-size: 18px;
        line-height: 20px;
    }
}
@media (max-width: 1000px) {
    #program {
        padding-bottom: 0;
        margin: 50px auto;
    }
    #program .background {
        display: none;
    }
    #program .title {
        font-size: 24px;
        margin: 2rem auto 1.5rem auto;
    }
    #program .boxes {
        flex-direction: column;
        gap: 40px;
    }
    #program .boxes .box {
        width: 100%;
        background: #0D8B0D;
        height: 326px;
        border: none;
    }
    #program .boxes .box .sub {
        color: var(--secondary-yellow);
        font-size: 24px;
        line-height: 28px; 
        margin-bottom: 1.5rem;
        height: auto;
    }
    #program .boxes .box .text p {
        color: #FFF;
        font-size: 16px;
        line-height: 20px;
    }
    #program .boxes .box img {
        width: 60px;
        height: 60px;
        top: -30px;
    }
    #program .btn {
        margin: 32px auto 0px auto;
    }
}
@media (max-width: 500px) {
    #program .boxes .box:first-of-type {
        height: 100%;
    }
}


/* OMILHTES HERE */
#omilhtes a {
    text-decoration: none;
}
#omilhtes {
  position: relative;
  padding-bottom: 100px;
  padding-top: 50px;
  overflow: hidden;
}
#omilhtes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, #FFF 59.04%, #FFDF22 100%);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}
#omilhtes:hover::before {
  opacity: 1;
}
#omilhtes > * {
  position: relative;
  z-index: 1;
}
#omilhtes .titleMain {
    color: var(--primary-black);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.64px;
    text-align: center;
    margin-bottom: 2rem;
}
#omilhtes .omilhtesMain .blocks {
    display: flex;
    gap: 2rem;
}
#omilhtes .omilhtesMain .blocks .block {
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    min-height: 915px;
    width: calc(100% - 75%);
    gap: 12px;
}
#omilhtes .omilhtesMain img.bioImg {
    width: 100%;
    height: 480px;
    max-width: 270px;
    object-fit: cover;
    object-position: top;
}
#omilhtes .omilhtesMain .title {
    color: var(--primary-black);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.48px;
	min-height: 70px;
}
#omilhtes .omilhtesMain .sub {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    min-height: 121px;
    display: flex;
    align-items: flex-start;
}
#omilhtes .omilhtesMain .text p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    min-height: 230px;
}
#omilhtes span {
    display: block;
}
#omilhtes span.hidden_text {
    display: none;
}
#omilhtes .swiper {
    display: none;
}
.swiper-button-next, .swiper-button-prev {
    display: none;
}
.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
}
.swiper-button-next svg, .swiper-button-prev svg {
    transition: .3s all ease-in-out;
}
.swiper-button-next svg path, .swiper-button-prev svg path {
    transition: .3s all ease-in-out;
}
.swiper-button-next svg path:nth-child(1), .swiper-button-prev svg path:nth-child(1) {
    transition: .3s all ease-in-out;
}
.swiper-button-next:hover svg, .swiper-button-prev:hover svg {
    fill: #FFDF22;
    transition: .3s all ease-in-out;
}
.swiper-button-next:hover svg path, .swiper-button-prev:hover svg path {
    fill: #191919;
    transition: .3s all ease-in-out;
}
.swiper-button-next:hover svg path:nth-child(1), .swiper-button-prev:hover svg path:nth-child(1) {
    fill: #FFDF22 !important;
    stroke: #FFDF22 !important;
    transition: .3s all ease-in-out;
}
#omilhtes .omilhtesMain .block .loadingLine {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 223, 34, 0.2);
  overflow: hidden;
}

#omilhtes .omilhtesMain .block .loadingLine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: #FFDF22;
  border-radius: 5px;
  animation: loadingExpand 1.5s ease-in-out infinite;
}
@keyframes loadingExpand {
  0% {
    left: 0;
    width: 30%;
    opacity: 0.7;
  }
  50% {
    left: 0;
    width: 100%;
    opacity: 1;
  }
  100% {
    left: 0%;
    width: 100%;
    opacity: 0;
  }
}
@media (min-width: 1001px) and (max-width: 1300px) {
    #omilhtes .omilhtesMain .blocks {
        gap: 1rem;
    }
    #omilhtes .omilhtesMain img.bioImg {
        height: 350px;
    }
    #omilhtes .omilhtesMain .title {
        font-size: 20px;
        line-height: normal; 
    }
    #omilhtes .omilhtesMain .sub {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (max-width: 1250px) {
    #omilhtes .swiper {
        display: block;
    }
    #omilhtes .omilhtesMain .blocks .block.desktop {
        display: none;
    }
    #omilhtes .navBtns {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row-reverse;
        width: 80px;
    }
    .swiper-button-next, .swiper-button-prev {
        display: block;
    }
    .swiper-button-prev {
        transform: rotate(-180deg);
    }
    #omilhtes .omilhtesMain .blocks .swiper .block {
        min-height: 730px;
    }
}
@media (max-width: 1000px) {
    #omilhtes {
        padding-top: 0;
        padding-bottom: 3rem;
    }
    #omilhtes .omilhtesMain .blocks .swiper .block {
        text-align: center;
    }
    #omilhtes .omilhtesMain img.bioImg {
        margin: 0 auto;
        max-height: 320px;
        max-width: 180px;
    }
    #omilhtes .omilhtesMain .btn.loadMore {
        margin: 0.5rem auto;
    }
    #omilhtes .titleMain {
        font-size: 24px;
        line-height: 130%; 
    }
    #omilhtes .omilhtesMain .title {
        font-size: 22px;
        line-height: 130%; 
    }
    #omilhtes .omilhtesMain .sub {
        font-size: 18px;
        line-height: 40px; 
    }
    #omilhtes .omilhtesMain .text p {
        font-size: 14px;
        line-height: 24px; 
    }
}
@media (max-width: 768px) {
    #omilhtes .omilhtesMain .blocks .swiper .block {
        min-height: 100%;
        gap: 12px;
    }
}




/* Form
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	/* color: #666; */
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
    min-height: 127px;
}

input::placeholder, textarea::placeholder {
    color: var(--primary-black) !important;
}

input[type="text"], input[type="email"], select, textarea, input[type="tel"] {
    border-radius: 20px;
    background: rgba(25, 25, 25, 0.05);
    display: flex;
    padding: 24px 51px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--primary-black) !important;
    font-family: 'Averta CY', sans-serif;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    width: 100%;
    /* max-width: 600px; */
}

.form {
    padding: 100px;
}

.wpcf7 select.wpcf7-select {
	padding: 24px 20px;
    font-family: 'Averta CY', sans-serif;
    color: var(--primary-black);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
}


.zp_twocolumn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

div#wpcf7-f5-o1 .zp_first p {
	position: relative;
}
div#wpcf7-f5-o1 .zp_first p svg {
	position: absolute;
    top: 40%;
    /* transform: translateY(-50%); */
    right: 38%;
    transition: all 300ms;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
div#wpcf7-f5-o1 .zp_first p svg.rotate {
    transform: rotate(-180deg);
    transition: all 300ms;
}
div#wpcf7-f5-o1 .zp_first p svg.rotate path:first-child {
    fill: #FFD600;
    stroke: white;
}
div#wpcf7-f5-o1, div#wpcf7-f2578-o1 {
    max-width: 825px;
    margin: auto;
}

div#wpcf7-f5-o1 p, div#wpcf7-f2578-o1 p {
	margin-bottom: 16px;
}

button.zp_submit_btn.wpcf7-submit {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    background: transparent;
    border: navajowhite;
    color: var(--primary-black);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; 
}

.wpcf7-acceptance {
    color: #191919;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
    letter-spacing: 0.07px;
}

.zp_acceptance_link {
	color: #191919;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.07px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
	transition: ease 0.3s all;
}

.zp_acceptance_link:hover {
	color: var(--primary-yellow) !important;
	transition: ease 0.3s all;
	text-decoration: underline; 
}
button.zp_submit_btn.wpcf7-submit svg {
    transition: all 300ms;
}
button.zp_submit_btn.wpcf7-submit:hover svg {
    transition: all 300ms;
    transform: translateX(20px);
}
button.zp_submit_btn.wpcf7-submit:hover path:first-child {
    fill: #FFD600;
    stroke: white;
}
.wpcf7-submit.error {
    opacity: 1;
    cursor: not-allowed;
}

.zp_medical_sector span.wpcf7-list-item.first.last label {
    display: flex;
    flex-direction: row-reverse;
	gap: 16px;
}

h2.zp_form_title {
    color: var(--primary-black);
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 88px; 
}
.zp_form_subtitle {
    margin: 2rem auto;
}
.zp_form_subtitle p {
    color: var(--primary-black);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
}
.zp_form_subtitle p strong {
    color: var(--secondary-yellow);
    font-style: italic;
}
.zp_form_subtitle p:last-of-type {
    font-style: italic;
    font-size: 22px;
}
@media (max-width: 1250px) {
	.zp_form_subtitle{
		font-size: 48px;
		line-height: 56px;
	}
	h2.zp_form_title {
		font-size: 32px;
		line-height: 38px;
	}
}
@media (max-width: 1000px) {
    .form {
        margin-top: 4rem;
        padding: 0 20px;
    }
    .zp_twocolumn {
        flex-direction: column;
        gap: 8px;
    }
    .zp_twocolumn p {
        width: 100%;
    }
    h2.zp_form_title {
        font-size: 32px;
        line-height: 32px; 
    }
    .zp_form_subtitle {
        margin: 1.5rem auto;
        font-size: 22px !important;
        line-height: 24px !important; 
    }
    .zp_form_subtitle p {
        font-size: 22px !important;
        line-height: 24px !important; 
        margin: 24px auto;
    }
    .zp_form_subtitle p:last-of-type {
        font-size: 18px !important;
    }
    input[type="text"], input[type="email"], select, textarea, input[type="tel"] {
        padding: 9px 20px;
        font-size: 16px;
        border-radius: 7.5px;
    }
    .wpcf7 select.wpcf7-select {
        padding: 19px 20px;
        font-size: 16px;
    }
    div#wpcf7-f5-o1 .zp_first p svg {
        right: auto;
        left: 66%;
        top: 37%;
    }
    .zp_twocolumn.accept {
		flex-direction: column;
	}
    button.zp_submit_btn.wpcf7-submit {
        font-size: 16px;
        font-weight: 600;
        margin: auto;
    }
    .wpcf7-acceptance {
        font-size: 8px;
    }
    .zp_acceptance_link,
	span.wpcf7-list-item-label {
        font-size: 16px;
    }
    textarea {
        min-height: 100px;
    }
}
@media (max-width: 500px) {
    div#wpcf7-f5-o1 .zp_first p svg {
        left: 70%;
    }
}

/* STICKY */
#sticky {
    color: var(--primary-black);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
    transform: rotate(-90deg);
    text-decoration: none;
    border-radius: 12px 12px 0 0;
    background: var(--secondary-yellow);
    padding: 9px 24px;
    position: fixed;
    top: 50%;
    right: -90px;
    z-index: 1;
}
@media (max-width: 1000px) {
   #sticky {
    font-size: 16px;
    line-height: 32px;
    padding: 4px 15px;
    right: 0;
    left: 0;
    top: auto;
    bottom: 10px;
    transform: rotate(0deg);
    width: fit-content;
    height: fit-content;
    margin: auto;
}
}

/* FOOTER HERE */
.footer {
    background: #010B02;
    padding: 88px 235px 30px 235px;
}
.footer .footerHere {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
}
.footer .footerHere .left img {
    width: 100%;
    height: 100%;
    max-width: 240px;
}
.footer .footerHere .left img.mobile {
    display: none;
}
.footer .footerHere .right img {
    width: 100%;
    height: 100%;
    max-width: 340px;
}
.footer .footerHere .middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}
.footer .footerHere .middle p, .footer .footerHere .middle a {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    margin: auto;
}
.footer .footerHere .middle .text_footer p {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    width: 100%;
  display: flex;
}
.footer .footerHere .middle .text_footer p strong {
    color: var(--secondary-yellow);
    text-decoration: none;
    font-size: inherit !important;
}
.footer .footerHere .middle p.location_footer {
    max-width: 450px;
}
.footer .footerHere .middle p.location_footer a {
    align-items: start;
    gap: 0;
}
.footer .footerHere .middle p.location_footer a svg {
    width: 30px !important;
    height: 100% !important;
    margin-top: 3px;
}
.footer .bottom .bottom_border {
    margin: 45px auto 30px auto;
    opacity: 0.6;
}
.footer .bottom .bottomHere {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .bottom a, .footer .bottom p {
    color: rgba(255, 255, 255, 0.50);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px; 
    text-decoration: none;
    width: fit-content;
}
@media (min-width: 1001px) and (max-width: 1600px) {
    .footer {
        padding: 88px 100px 30px 100px;
    }
    .footer .footerHere .right img {
        max-width: 240px;
    }
    .footer .footerHere .middle p svg {
        width: 20px;
        height: 20px;
    }
    .footer .footerHere .middle p, .footer .footerHere .middle a {
        width: max-content;
    }
}
@media (max-width: 1000px) {
    .footer {
        padding: 30px 20px 10px 20px;
    }
    .footer .footerHere {
        flex-direction: column;
    }
    .footer .footerHere .middle {
        gap: 15px;
    }
    .footer .footerHere .middle p, .footer .footerHere .middle a {
        font-size: 20px;
        line-height: 32px; 
        display: flex;
        align-items: center;
        gap: 15px;
        width: fit-content;
        margin: auto;
    }
    .footer .footerHere .middle .text_footer p {
        font-size: 24px;
    }
    .footer .bottom .bottom_border {
        margin: 20px auto 10px auto;
    }
    .footer .bottom .bottomHere {
        flex-direction: column;
    }
    .footer .bottom a, .footer .bottom p  {
        text-align: center;
        line-height: 30px;
    }
    .footer .footerHere .left {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .footer .footerHere .left img {
        max-width: 80px;
    }
    .footer .footerHere .left img.mobile {
        display: block;
        max-width: 140px;
    }
    .footer .footerHere .right img {
        display: none;
    }
    .footer .footerHere .middle p svg {
        width: 20px;
        height: 20px;
    }
    
}
@media (max-width: 500px) {
.footer .footerHere .middle p.location_footer {
        max-width: 300px;
    }
    .footer .footerHere .middle .text_footer p {
        display: block;
    }
    .footer .footerHere .middle .text_footer p a {
        display: block;
    }
}

@media screen and (max-width: 992px) {
	#about a.button.pdf-link .btn.white {
		margin: auto;
	}
}

@media screen and (max-width: 1620px) {
	.footer {
		padding: 88px 50px 30px 50px;
	}
	.zp_row {
		padding: 0 50px;
	}
}