
/*KOLORY MISTRAL, FONTY MISTRAL */

.MistralWhite {
    color: #F5F5F5;
}
.MistralGrey {
    color: #4D4D4D;
}
.MistralMidGrey{
    color: #A9A9A9;
}
.MistralLightGrey {
    color: #E0E0E0;
}
.MistralBlack {
    color: #161616;
}
.MistralRed {
    color: #C8102F;
}
.MistralGold {
    color: #F8C614;
}
.MistralNavyBlue {
    color: #091D63;
}
.MistralLightBlue {
    color: #2D97EC;
}

.MistralWhiteBG {
    color: #F5F5F5;
}

.MistralGreyBG {
    background-color: #4D4D4D;
}

.MistralMidGreyBG {
    background-color: #A9A9A9;
}

.MistralLightGreyBG {
    background-color: #E0E0E0;
}

.MistralBlackBG {
    background-color: #161616;
}

.MistralRedBG {
    background-color: #C8102F;
}

.MistralGoldBG {
    background-color: #F8C614;
}

.MistralNavyBlueBG {
    background-color: #091D63;
}
.MistralLightBlueBG {
    background-color: #2D97EC;
}

.KhandH2 {
    font-weight: 500;
    font-size: 52px;
    line-height: 70px;
    font-family: 'Khand', sans-serif;
    margin:0;
}

.KhandH3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    font-family: 'Khand', sans-serif;
    margin: 0;
}

.KhandH4 {
    font-weight: 500;
    font-size: 28px;
    line-height: 40px;
    font-family: 'Khand', sans-serif;
    margin: 0;
}

.KhandParagraph {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    font-family: 'Khand', sans-serif;
    margin: 0;
}


/* TABLET */
@media screen and (max-width:989px) and (min-width:576px) {
    .KhandH2 {
        font-size:calc(52 * 0.9px);
        line-height:calc(70 * 0.9px);
    }

    .KhandH3 {
        font-size: calc(36 * 0.9px);
        line-height: calc(50 * 0.9px);
    }

    .KhandH4 {
        font-size: calc(28 * 0.9px);
        line-height: calc(40 * 0.9px);
    }

    .KhandParagraph {
        font-size: calc(20 * 0.9px);
        line-height: calc(26 * 0.9px);
    }

    .ReversedFlex {
        flex-direction: column-reverse !important;
    }
}
/* MOBILE */
@media screen and (max-width:575px) {
    .KhandH2 {
        font-size: calc(52 * 0.8px);
        line-height: calc(70 * 0.8px);
    }

    .KhandH3 {
        font-size: calc(36 * 0.8px);
        line-height: calc(50 * 0.8px);
    }

    .KhandH4 {
        font-size: calc(28 * 0.8px);
        line-height: calc(40 * 0.8px);
    }

    .KhandParagraph {
        font-size: calc(20 * 0.8px);
        line-height: calc(26 * 0.8px);
    }

    .ReversedFlex {
        flex-direction: column-reverse !important;
    }
}

.KhandFont {
    font-family: 'Khand', sans-serif !important;
}

.SofiaSans {
    font-family: 'Sofia Sans', sans-serif !important;
}

.ReversedFlex{
    flex-direction:row-reverse !important;
}

html, body {
    box-sizing: border-box;
    /*overflow-x: clip;*/
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/*width*/
::-webkit-scrollbar {
    width: auto;
}

/*track*/
::-webkit-scrollbar-track {
    background: rgba(55, 55, 55, 1);
}
/*thumb*/
::-webkit-scrollbar-thumb {
    background: rgba(109, 109, 109, 1);
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(55, 55, 55, 1);
    border-radius: 20px;
}

/*thumb hover*/
::-webkit-scrollbar-thumb:hover {
    background: rgba(98, 98, 98, 1);
}

/*thumb pressed*/
::-webkit-scrollbar-thumb:active {
    background: rgba(126, 126, 126, 1);
}

.preview-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.preview-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-color: aliceblue;
    border-style: solid;
    border-width: 1px;
    opacity: 75%;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    width: 100%;
    overscroll-behavior: none;
}

body {
    background-color: #F5F5F5 !important;
}

.formContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}
/*REGISTRATION*/
.registration-container {
    width: 80%;
    margin: 0 auto;
    padding-top: 0.6rem;
    background-color: #F5F5F5 !important;
    border-radius: 15px;
    color: #161616 !important;
}

  
    .registration-container h1 {
        text-align: center;
    }

    .registration-container input.form-control,
    .registration-container select {
        width: 100%;
        color: #161616;
    }

    .registration-container input[type="submit"] {
        display: block;
        margin: 0 auto;
        padding: 10px 30px;
        border-radius: 25px;
        background-color: green;
        border-color: transparent;
    }

    .registration-container p {
        font-weight: bold;
        font-style: italic;
    }

.registrationForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    border-radius: 1rem;
    background-image: url('https://e0.pxfuel.com/wallpapers/246/497/desktop-wallpaper-badass-martial-art-forms-all-women-should-learn-to-break-bones-taekwondo-fighter.jpg');
    background-position-y: 350px;
    background-position-x: -70px;
    background-repeat: no-repeat;
    background-color: black;
    padding: 1rem;
    padding-bottom: 23rem;
}
/*END REGISTRATIONS*/


.btnMain {
    color: white;
    background-color: dodgerblue;
    border-radius: 0.4rem;
    transition: 300ms;
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
}

    .btnMain:hover {
        color: white;
        background-color: royalblue;
    }

.header-secondary {
    color: white;
    padding: 0.4rem;
}
/*LAYOUT AND NAVBAR AND FOOTER*/
.tkdNavbarMain{
    width:100%;
}
.navbarContentButtonsList {
    width: 80%;
    gap: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin:0 auto !important;
}
.nav-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4rem;
}
.nav-right {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap:4rem;
}
.nav_logo {
    display: block;
    height: 5.5rem;
    margin-bottom: -2.2rem;
    border-radius: 50%;
    outline-offset:-1px;
}
.nav_logo :hover, .nav_logo :active, .nav_logo :focus {
    outline: solid #C8102F 3px;
}
.nav_logo_mobile {
    display: none;
}

.activeNavButton {
    outline: solid #C8102F 3px !important;
    color: white !important;
}


.footerMain {
    display: flex;
    justify-items: center;
    align-items: center;
    background-color: black;
    color: white;
    justify-content: space-around;
    margin-bottom: 0px;
}



.footerSection {
    border-top: 6px solid #C8102F !important;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    min-height: 60vh;
    background-color: #161616;
    color: #F5F5F5;
}


.footerContainer {
    height: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
    justify-content: center;
}


.footerSectionRW {
    border-top: 6px solid #C8102F !important;
    width: 100%;
    display: flex;
    min-height: 60vh;
    background-color: #161616;
    color: #F5F5F5;
    align-items: center;
    justify-content: center;
    font-family: 'Khand', sans-serif !important;
}



.footerUpperPartRW {
    display:flex;
    flex-direction: row;
    justify-content:space-between !important;
}

.upperButtonOSF a:hover,
.lowerButtonOSF a:hover {
    text-decoration: none; 
    color: inherit; 
}


.footerContainerRW {
    width: 50%;
    min-height: 50vh;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
}

.FooterContentInfoContainer {
    width: 100%;
    text-align: end;
}

.FooterTitleHeader {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.lightHoverBtn {
    transition: all 300ms;
    padding: 0.2rem 0.4rem;
    color: White !important;
    font-weight: 600;
    font-size: 18px !important;
    line-height: 26px;
    height: min-content;
    outline: solid #161616 3px;
}

.lightHoverBtn:hover {
    outline: solid #C8102F 3px;
    color: white !important;
}
.lightHoverBtn:active {
    outline: solid #C8102F 3px;
    color: white !important;
}
.lightHoverBtn:focus-visible {
    outline: solid #C8102F 3px;
    color: white !important;
}

/*LandingPage i lista nadchodz�cych zawod�w*/


.SectionTitleH1 {
    color: white;
}

.CompetitionNameHeader {
    color: white;
}

.CompetitionDateHeader {
    color: white;
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.CompetitionContainer {
    background-color: transparent
}

.ManageInnerContainer {
    display: flex;
    background-color: rgb(35,35,35);
    border-radius: 1rem;
    padding: 1rem;
}

.ManagePosterContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.ManageButtonsContainer {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1rem;
    flex-wrap:wrap;
    flex-direction:column !important;
}

.emptyEventListWrap {
    min-height: 20rem;
    display:flex;
    align-items: flex-start;
}

.ManageGroupEmailFormContainer {
    background-color: rgb(35,35,35);
    border-radius: 1rem;
    padding: 2rem;
}

.CompetitionCard {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    margin-top: 1rem;
    background-color: transparent;
}

.align-start {
    align-items: flex-start !important;
}

.DataWraper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap:2rem;
}

.PosterAndDataWraper {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items:flex-start;
    gap: 1rem;
}


    .HorizontallyDirectedPosterAndDataWraper {
        flex-direction: row !important;
    }

.CompetitionCardInner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.TitleCenterRW {
    width: 100%;
    text-align: center;
}
.EventKeyData {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
    background-color: #161616;
    color: #F5F5F5;
    font-family: 'Khand', sans-serif;
    padding: 2rem;
    text-align: left;
    width: 100%;
    word-break: break-word;
}
.CompetitionManageViewCard {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    background-color: #151515;
    border-radius: 0.6rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

/*jakby ktoś pytał czemu disabled ma inny kolor */

.form-disabled {
    background-color: #E0E0E0 !important;
    color: #161616 !important;
}

.PosterImgContainer {
    align-self: flex-start !important;
    max-width: 100% !important;
    height: fit-content;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0.6rem;
    box-shadow: 2px, 20px, 20px;
    align-items: center;
    justify-content: center;
    align-self: center;
}


.PosterImgContainerRW {
    align-self: flex-start !important;
    max-width: 100% !important;
    height: fit-content;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 2px, 20px, 20px;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.PosterImgContainerBigRW {
    background-size: contain;
}

.PosterImgContainerBig {
    width: contain;
    height: fit-content;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 1rem;
    margin: 0 auto !important;
}

.PosterImgContainerSmall {
    min-width: 10rem;
    min-height: 15rem;
    max-width: 11rem;
    max-height: 16.5rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0.6rem;
    object-fit:contain !important;
    box-shadow: 2px,20px, 20px;
}
.horizontalImage {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}
.verticalImage{
    width:100% !important;
    max-width: 50% !important;
    height:auto !important;
}

.DescriptionAndRegisterBtnContainer {
    padding-left: 1rem;
    width: 100%;
    margin-top: -0.4rem;
    color: white;
    text-align: justify;
}
.DescriptionAndRegisterBtnContainerRW {
    display:flex;
    flex-direction:column;
    gap: 1rem;
    width: 100%;
}

    .DescriptionAndRegisterBtnContainerRW hr {
        font-weight: bold;
        text-decoration: none;
        color: #161616;
    }
    .DescriptionAndRegisterBtnContainer hr {
    font-weight: bold;
    text-decoration: none;
    color: white;
}

    .DescriptionAndRegisterBtnContainer a {
        font-weight: bold;
        text-decoration: none;
        color: white;
    }

.CompetitionDescription {
    color: #161616 !important;
    text-align: justify;
    width: 100%;
    padding: 0 1rem;
}
    .CompetitionDescription a {
        font-weight: bold;
        text-decoration: none;
    }


.RegisterToCompetitionButton {
    border-style: none;
    background-color: white;
    color: #C8102F;
    transition: 300ms;
    text-align: center;
    border: 4px solid #C8102F;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 26px !important;
    width: 100%;
    height: 4rem;
    font-family: 'Khand', sans-serif !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.read-more {
    border: none;
    width: 100%;
    height: 4rem;
    color: #161616;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 26px !important;
    font-family: 'Khand', sans-serif !important;
}

.DisabledRegisterToCompetitionButtonButton {
    border-style: none;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    transition: 300ms;
    text-align: center;
    width: 100%;
    min-height: 4rem;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 26px !important;
    font-family: 'Khand', sans-serif !important;
    word-break: break-word;
    white-space: normal; 
}
.RegisterToCompetitionButton:hover {
    background-color: #C8102F;
    color: #F5F5F5 !important;
}

.OpenRegistrationPageFormRW {
    width: 100%;
}
.OpenRegistrationPageForm {
    /* width: 100%;
    align-self: stretch;*/
}

.preview-container {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.preview-thumbnail {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
    border-color: aliceblue;
    border-style: solid;
    border-width: 1px;
    opacity: 75%;
}

.LogoMain {
    width: fit-content;
    max-width: 5.5rem;
    height: fit-content;
    max-height: 5.5rem;
    margin-bottom: -2.6rem;
    filter: drop-shadow(0px 4px 5px rgba(30,30,30, 0.4));
    border-radius: 50%;
    /*outline: solid #C8102F 3px !important;*/
    outline-offset:-2px;
}

.LogoMain :hover {
    outline: solid #C8102F 3px !important;
}

.LogoMain :focus {
    outline: solid #C8102F 3px !important;
}
.LogoMain :focus-visible {
    outline: solid #C8102F 3px !important;
}

.LogoMainBig {
    width: fit-content;
    max-width: 9rem;
    height: fit-content;
    max-height: 9rem;
}

.CompetitionTitleBlock {
    padding: 1rem;
    border-radius: 0.4rem;
    color: black;
    margin-bottom: 0.5rem;
}

.SettingsLabel {
    font-size: 1.4rem;
    color: #161616 !important;
}

.registration-container {
    width: 50%;
    margin: 2rem auto;
    padding: 2rem 3rem;
    background-color: rgb(50, 50, 50);
    border-radius: 15px;
    color: white;
}

.registration-container h1 {
    text-align: center;
}

.registration-container input.form-control,
.registration-container select {
    width: 100%;
}

.head-text {
    font-size: 22px;
    padding-bottom: 40px;
}

#rodoCheckbox + label {
    padding: 20px;
}

.countdown-wrapper {
    background-color: #F5F5F5 !important;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    width: fit-content;
}

.countdown-box {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #C8102F !important;
    color: white;
    border-radius: 0.4rem;
    font-size: 3.2rem;
    font-family: Calibri;
    font-weight: bold;
}

.countdown-box-deadline {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #F8C614 !important;
    color: white;
    border-radius: 0.4rem;
    font-size: 3.2rem;
    font-family: Calibri;
    font-weight: bold;
}

.countdown-text {
    border-radius: 0.4rem;
    background-color: white;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    display: block;
    text-align: center;
    color: black;
    font-family: Calibri;
    font-weight: bold;
    font-size: 1.5rem;
}

.SingleCountdownItemContainer {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}


.registration-container::-webkit-scrollbar {
    display: none !important;
    color: transparent;
}

.form-group .form-control {
    overflow: auto;
    margin-right: -17px;
}

.event-status {
    text-align: center;
    font-weight: bold;
}

.form-group .btn-success {
    background-color: forestgreen !important;
    border-radius: 5rem !important;
}

.SectionTitleH1 {
    text-align: center;
    margin: 2rem 0;
    color:black !important;
}

.link-description {
    font-weight: 600;
}

.form-disabled {
    background-color: rgb(73, 73, 73);
    color: lightgray;
    border-radius: 0.3rem;
    padding: 0.4rem;
    width: 100%;
    cursor: not-allowed;
    border-style: solid;
    border-width: 0.4px;
    border-color: #7A7A7A
}


/*ABOUT PAGE NIGGA*/
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}
/*TITLESECTION*/
.TitleSection {
    background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(21, 21, 21, 1)), url('../TitleBg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Tilt Warp', sans-serif;
    font-weight: 900;
    color: white;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.AboutTitle {
    font-kerning: none;
    padding: 2rem 1rem;
}

.SuperLarge {
    font-size: 24vh;
}

.QuiteLarge {
    font-size: 12vh;
    font-weight: bolder;
}

/*CLUBINFOSECTION*/

.CoachesTitleSectionPhoto {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 35%;
    font-family: 'Tilt Warp', sans-serif;
    font-weight: 900;
    color: white;
    height: 75vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(21, 21, 21, 1)), url('../coachesSectionBg.jpg');
}
.ClubInfoSection {
    background-image: linear-gradient(rgb(21 21 21),rgb(14, 0, 28));
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-direction: column;
    padding-bottom: 30vh;
}

.Highlight-yellow-black {
    font-family: 'Bebas Neue', sans-serif;
    background-color: yellow;
    color: black;
    padding: 0.2rem 0.6rem;
    border-radius: 0.15rem;
    font-weight:700;
}

.Highlight-White-Black {
    font-family: 'Bebas Neue', sans-serif;
    background-color: white;
    color: black;
    padding: 0.2rem 0.6rem;
    font-weight: 700;
    border-radius: 0.15rem;
}

.ClubInfoSubtitle {
    text-align: justify;
    padding: 1rem 1rem;
    max-width:65vw;
    margin-left:auto;
    margin-right:auto;
}

.CoachCard {
    border-radius: 3rem;
    color: white;
    padding: 3rem;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-self: center;
    gap: 3rem;
    margin: 3rem 1rem;
}
.CoachCard-Reverted {
    border-radius: 3rem;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction:row-reverse;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-self: center;
    gap: 3rem;
    margin: 3rem 1rem;
}

.CoachPhoto {
    height: 34rem;
    width: 34rem;
    background-image: url('../mainc.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50rem;
    background-size: 105%;
    background-position: center;
    border: solid 0.6rem white;
}

.CoachPhoto-Secondary {
    height: 28rem;
    width: 28rem;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50rem;
    background-size: 105%;
    background-position: center;
    border:solid 0.6rem white;
}

.KatarzynaPhoto {
    background-image: url('../Katarzyna.jpg');
}

.MateuszPhoto {
    background-image: url('../Mateusz.jpg');
}

.RomekPhoto {
    background-image: url('../RomekProfil.jpg');
}

.MainCoachDescriptionContainer {
}


.ClubInfoSubtitle-Invert {
    text-align: justify;
    padding: 1.6rem 1.6rem;
    color: black;
    background-color: white;
    border-radius: 1rem;
    font-weight: bolder;
}

.ArriveLeft {
}

.ArriveRight {
}

.ArriveBottom {
}

.ArriveTop {
}
.Arrive-BottomLeft-Rotate{

}
.Arrive-BottomRight-Rotate{

}
.Arrive-TopLeft-Rotate{

}
.Arrive-TopRight-Rotate{

}
/*Osiągnięcia klubowe*/
.ClubAchievementsSection {
    height: auto;
    padding-bottom:30vh;
    background: black;
    background-image: linear-gradient(rgb(21 21 21),rgb(27, 0, 33));
    font-family: 'Bebas Neue', sans-serif;
}

.ClubInfoSubtitle {
    color: white;
}

.ClubInfoSubtitlePhoto {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    font-family: 'Tilt Warp', sans-serif;
    font-weight: 900;
    color: white;
    height: 75vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(21, 21, 21, 1)), url('../medale.jpg');
}
.AchievementsContent{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-items:center;
}
.LineAchievements {
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-content: center;
    justify-items: center;
    align-items: center;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:3rem;
}

.PhotoAchievements {
    width: 40rem;
    height: 26rem;
    background-repeat: no-repeat;
    background-size: 110%;
    background-size: cover;
    background-position: center;
    border: 0.6rem solid white;
    border-radius: 0.6rem;
}

.FirstPhotoAchievements {
    background-image: url('../mistralZawody.jpg');
}

.SecondPhotoAchievements {
    background-image: url('../Emilka.jpg');
}

.ThirdPhotoAchievements {
    background-image: url('../sedziowie.jpg');
}

.FourthPhotoAchievements {
    background-image: url('../Krzychu.jpg');
}

/*SUMMER CAMPS */

.AboutSection {
    background-image: linear-gradient(rgb(21 21 21),rgb(27, 0, 33));
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-direction: column;
    padding-bottom: 8vh;
}

.SummerCampSubtitlePhoto {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    font-family: 'Tilt Warp', sans-serif;
    font-weight: 900;
    color: white;
    height: 75vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(21, 21, 21, 1)), url('../smallMistrals2.png');
}

.TextAchievments {
    width: 45%;
    margin: 2rem;
    text-align: justify;
}
.SmallMistralsSequence {
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 103%;
    background-position: center center;
    border-radius: 0.6rem;
    margin: 1rem;
    border: solid white 0.6rem;
}
.Photo-Medium {
    height: 23rem;
    width: 35rem;
}
.Photo-Large {
    height: 40rem;
    width: 72rem;
    margin-left:auto;
    margin-right:auto;
}

.SmallMistrals1  {
    background-image: url('../smallMistrals1.png');
}
.SmallMistrals2  {
    background-image: url('../smallMistrals3.png');
}
.SmallMistrals3  {
    background-image: url('../smallMistrals4.png');
}
.SmallMistrals4 {
    background-image: url('../smallMistrals6.png');
}
.SmallMistrals5 {
    background-image: url('../smallMistrals5.png');
}

.SummerCamp1 {
    background-image: url('../summerCamps1.png');
}
.SummerCamp2 {
    background-image: url('../summerCamps2.png');
}
.SummerCamp3 {
    background-image: url('../summerCamps3.png');
}
.SummerCamp4 {
    background-image: url('../summerCamps4.png');
}
.SummerCamp5 {
    background-image: url('../summerCamps5.png');
}

.SequenceMistralsPhotoHolder {
    display: flex;
    justify-content: center;
    align-content:center;
}
.Half-Down{
    margin-top:-5rem;
}
.Half-Up {
    margin-top: 10rem;
}

/*5. ta*/

.FirstButton {
    border-radius: 30rem;
    border-style: none;
    padding: 1.5rem 3rem;
    background-color: white;
    color: black;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    align-content: center;
    margin-top: 2rem;
}

.HeaderSectionLast {
    text-align: justify;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.wrapLastSection {
    margin-top: 10vh;
    display: flex;
    text-align: justify;
    align-items: center;
    flex-direction: column;

}


.CompetitionSectionRW {
    display:flex;
    align-items:center;
    justify-content: center;
    padding: 3rem 0;
}

.RegistrationWraperRW {
    width: 35%;
    display:flex;
    flex-direction: column;
}

.RegistrationWraperRW p{
   font-style: italic;
   font-weight: bold;
}

    .CompetitionWraperRW {
        width: 80%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

.CompetitionContainerRW {
    width: 80%;
}
@media screen and (max-width:1640px) and (min-width:1200px) {
    .CompetitionContainerRW {
        width: 70%;
    }


}
/*TABLET LANDSCAPE*/
@media screen and (max-width:1199px) and (min-width:990px) {
    .CompetitionWraperRW,
    .RegistrationWraperRW {
        width: 80%;
    }

    .CompetitionContainerRW {
        width: 80%;
    }
}
/* TABLET */
@media screen and (max-width:989px) and (min-width:576px) {
    .CompetitionWraperRW,
    .RegistrationWraperRW {
        width: 85%;
    }

    .PosterImgContainerRW {
        align-self: center !important;
        min-width:100%;
    }

    .CompetitionContainerRW {
        width: 80%;
    }
}
/* MOBILE */
@media screen and (max-width:575px) {
    .CompetitionWraperRW,
    .RegistrationWraperRW {
        width: 90% !important;
    }

    .PosterImgContainerRW {
        align-self: center !important;
        width: 100%; 
        height: auto; 
        display: block; 
        min-width:100%;
    }

    .CompetitionContainerRW {
        width: 100% !important;
    }
}



.CompetitionCardRW {
    display: flex;
    flex-direction: column;
    margin:0 auto;
}

.CompetitionDescriptionRW {
    text-align: left;
    flex-direction: row;
    max-width: 100%;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

    .CompetitionDescriptionRW > * > * > p {
        hyphens: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

.ShortDescription,
.FullDescription {
    display: flex;
    max-width: 100%;
    font-family: ' Sofia Sans', sans-serif;
    margin: 0;
    padding: 0 1rem;
    overflow:hidden;
}