@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: "Poppins", sans-serif;
    background: #000000;
    overflow-x: hidden; 
}

header {
        flex-wrap: wrap;
    position: sticky;
    background-color: #000000;
    z-index: 3;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
        align-items: center;
    width: 100%;
    height: auto;
}
header .logo,
header .logo p {
    height: 15px;
    width: auto;
}



header aside:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px;
    width: auto;
}

header .logo img {
    margin: -15;
    height: 55px;
    width: 130px;
}

header aside:last-child {
    padding: 17px 55px 21px 40px;
    width: 25%; /* Adjust width as needed */
    border-width: 0px 0px 1px 1px;
    border-style: solid;
    border-color: #d7d7d7;
    border-radius: 0px 0px 0px 33px;
    display: flex;
    align-items: center;
}
header aside:last-child .button {
    padding: 15px 40px; /* Adjust padding as needed */
    margin-right: 20px; /* Add margin between buttons */
    background: linear-gradient(167deg, #1a1a1a 0%, #5d5d5d 33.12%, #232323 100%);
    box-shadow: inset 0px 9px 6px rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    text-decoration: none;
    width: auto; /* Adjust width as needed */
    align-self: center;
    transition: 0.5s all linear;
    text-align: center; /* Ensure text is centered */
}

header aside:last-child .button.registration {
    padding: 15px 40px; /* Adjust padding as needed */
    margin-right: 20px; /* Add margin between buttons */
    background: linear-gradient(167deg, #1a1a1a 0%, #5d5d5d 33.12%, #232323 100%);
    box-shadow: inset 0px 9px 6px rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    text-decoration: none;
    width: auto; /* Adjust width as needed */
    align-self: center;
    transition: 0.5s all linear;
    text-align: center; /* Ensure text is centered */
    animation: pulsate 1.5s infinite alternate ease-in-out; /* Pulsating animation */
}


header aside:last-child .button.registration:hover {
    background: linear-gradient(110.22deg, #ffff00 -2.69%, #ffff00 13.07%, #ffff00 44.89%);
    animation: none; /* Stop pulsating on hover */
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        box-shadow: inset 0px 9px 6px rgba(255, 255, 255, 0.25);
    }
    100% {
        transform: scale(1.05);
        box-shadow: inset 0px 9px 12px rgba(255, 255, 255, 0.5);
    }
}


header aside:last-child .button.registration span {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #ffffff;
    transition: 0.5s all linear;
}

header aside:last-child .button.registration {
    background: linear-gradient(110.22deg, #ffff00 -2.69%, #ffff00 13.07%, #ffff00 44.89%);
}

header aside:last-child .button:hover {
    background: linear-gradient(110.22deg, #ffff00 -2.69%, #ffff00 13.07%, #ffff00 44.89%);
}


header aside:last-child .button span {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #ffffff;
    transition: 0.5s all linear;
}
header nav {
    flex: 1; /* Take remaining space */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center the nav */
    width: 60%; /* Adjust the width of the nav */
}

header nav .burger {
    display: none;
}

header nav ul {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap; /* Prevent wrapping */
    list-style: none;
}

p img {
    margin: 40px 0 0 0;
}

header nav ul li {
    margin: 0 20px 10px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-transform: capitalize;
    color: #ffffff;
    transition: 0.5s all linear;
    white-space: nowrap;
}

header nav ul li:last-child {
    margin: 0 0 10px 0;
}

header nav ul li a {
    color: inherit;
    text-decoration: none;
}

.intro {
    position: relative;
    padding: 50px 0 100px 0;
    width: 100%;
    height: auto;
    position: relative;
    color: #ffffff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    text-align: center;
    background-color: #000000;
}

.intro::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: url("../img/bg.jpg") top center / contain no-repeat;
    border-radius: 0px 0px 71px 71px;
    opacity: 0.5;
}

.intro::before {
    position: absolute;
    z-index: 2;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 0px 0px 71px 71px;
    opacity: 0.5;
}


.container {
    margin: 0 auto;
    width: 90%;
}

.container .row {
    margin: 0 auto;
    width: 60%;
    padding: 0 15px;
}

.intro .row {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.intro h1 {
    margin: 0 0 40px 0;
    font-style: normal;
    font-weight: 600;
    font-size: 64px;
    line-height: 1;
}

.intro h1 span {
    font-weight: 700;
    font-size: 96px;
    line-height: 87.02%;
}

.intro h2 {
    margin: 0 0 1em 0;
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 1;
}

.intro h3 {
    font-size: 32px;
    line-height: 1;
    margin: 0 0 .5em;
}

.intro ul,
.intro ol {
    text-align: left;
    margin: 0 0 1.5em;
    list-style-position: inside;
}

.intro p {
    margin: 0 0 10px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    text-align: left;
}

.center-container {
    margin: 0 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.glowing-button {
    position: relative;
    padding: 15px 30px;
    font-size: 18px;
    color: #000;
    background: #fbff00a7;
    border: none;
    outline: none;
    overflow: hidden;
    z-index: 1;
    border-radius: 25px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.glowing-button svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.glowing-button path {
    fill: none;
    stroke:  #ffff00; /* Line color */
    stroke-width: 2;
    stroke-dasharray: 150 300; /* Total path length */
    stroke-dashoffset: 0;
    animation: dash 4s linear infinite, glow 2s linear infinite; /* Add glow animation */
    filter: drop-shadow(0 0 8px blue); /* Initial glow effect */
}

@keyframes dash {
    0% {
        stroke-dashoffset: 450; /* Start beyond the total length */
    }
    100% {
        stroke-dashoffset: 0; /* End at the beginning of the path */
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px #ffff00);
    }
    0% {
        filter: drop-shadow(0 0 16px #ffff00);
    }
}



.content {
    padding: 60px 0 173px 0;
    background: url("../img/bg.jpg") top center / cover repeat-y;
}

.img-text {
    margin: 0 0 50px 0;
    width: 100%;
    height: auto;
    border-radius: 64px;
}

.img-text img {
    width: 100%;
    height: 100%;

}

.content h2,
.content-title {
    margin: 40px 0 40px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
    color: #ffffff;
    text-align: center;
}

.content h3 {
    margin: 30px 0 30px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 87.02%;
    color: #ffffff;
    text-align: center;
}

.content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170.02%;
    color: #ffffff;
    text-align: center;
}

.content ol,
.content ul {
    display: flex;
    flex-direction: column;
}

.content ol li,
.content ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170.02%;
    color: #ffffff;
    text-align: center;
    align-self: center;
}

.content table {
    margin: 30px 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table,
td,
th {
    border: 1px solid #fbff2e;
}

td,
th {
    padding: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170.02%;
    color: #ffffff;
    text-align: center;
    align-self: center;
}

th {
    background-color: #7accee !important;
}

footer {
    
    bottom: 0;
    left: 0;
    color: #ececf6;
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px); 
    margin: 0 20px 40px 20px; 
    padding: 10px;
    border-top: 1px solid #f6f4f4;
    border-radius: 0px 0px 33px 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    text-align: center;
}


footer .logo {
    display: none;
    height: 15px;
    width: auto;
}

footer .logo p {
    height: 15px;
    width: auto;
}

footer .logo img {
    height: 15px;
    width: 145px;
    margin-top: 0;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-self: center;
    list-style: none;
}

footer ul li {
    margin: 10px 10px 0 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
    transition: 0.5s all linear;
}

footer ul li:hover {
    color: #fbff2e;
}

footer ul li a {
    color: inherit;
    text-decoration: none;
}

.content .img-text {
    font-size: 0;
    line-height: 0;
}

.img-text-vertical {
    /*max-height: 500px;*/
    width: auto;
}

@media(min-width:1000px) {

    p.img-text-vertical img {
        width: 20vw;
        height: 100%;
        max-height: 300px;
    }
}

.img-micro {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.img-micro-right {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.img-micro-right img, .img-micro img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

@media screen and (max-width:425px) {
    table {
        font-size: 12px;
    }
}

@media screen and (max-width:768px) {
    .img-micro, .img-micro-right {
        margin: 20px auto !important;
        float: none;
    }
}

.anchor__menu a {
    color: #ffffff;
    text-decoration: none;
}

.anchor__menu a:hover {
    color: #b9ff2e;
}

.table {
    overflow: auto;
}