:root {
    --fontFamilyRoboto: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --FontFamilyNotoSans:  'Noto Sans', sans-serif;
    --H1headingFontSize: 45px;
    --H2headingFontSize: 35px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: auto;
}

main {
    margin-top: 9.5rem;
}




/*BUTTONS*/
/*.btn {
    
    font-family: var(--FontFamilyNotoSans);
    font-weight: 500;
    padding: rem 4rem;
    font-size: 14px;
    letter-spacing: 0.8px;
}*/

/*.btn-lg:hover {
    color: #00486C;
    border-color: #00486C;
    background-color: white;
}
*/
.primary {
    background-color: #00486C;
    font-family: var(--FontFamilyNotoSans);
    font-weight: 500;
    padding: .8rem 4rem;
    color: white;
    font-size: 14px;
    letter-spacing: 0.8px;
}

.primary:hover {
    color: #F26722;
    border-color: #F26722;
}

.startpage-btn {
    background: #F8961D;
    transition: none;
    padding: .8rem 2rem;
    color: white;
    font-family: var(--FontFamilyNotoSans);
    font-weight: 500;
    font-size: 15px;
}

    .startpage-btn:hover {
        background-color: #F26722;
    }

#orange {
    border-color: white;
    box-shadow: none;
    color: white;
    padding: .6rem 2rem;
    font-family: var(--FontFamilyNotoSans);
    font-weight: 500;
    font-size: 15px;
}

    #orange:hover {
        color: #00486C;
        background-color: white;
    }

#btn-blue {
    background: #00486C;
    color: white;
    padding: .6rem 2rem;
    font-family: var(--FontFamilyNotoSans);
    font-weight: 500;
    font-size: 15px;
}
    #btn-blue:hover {
        color: #00486C;
        border-color: #00486C;
        background-color: white;
    }
@media screen and (max-width: 992px) {
/*    .btn {
        font-family: var(--FontFamilyNotoSans);
        font-weight: 500;
        padding: .8rem 4rem;
        color: #FCFCFC;

        letter-spacing: 0.8px;
    }
    .btn-lg:hover {
        color: #00486C;
        border-color: #00486C;
        background-color: white;
    }
*/
    .primary:hover {
        color: #F26722;
        border-color: #F26722;
    }

    .startpage-btn {
        background: #F8961D;
        transition: none;
        padding: .7rem 2rem;

    }

        .startpage-btn:hover {
            background-color: #F26722;
        }

    #orange {
        border-color: white;
        box-shadow: none;

    }

        #orange:hover {
            color: #00486C;
            background-color: white;
        }
}


/* NAVIGATION  NAV + FOOT*/

nav {
    color: white;
    font-weight: bolder;
    box-shadow: 0px 3px 6px #00000029;
}

.logoimgnav {
    height: 100px;
    width: 150px;
    margin-bottom: 1rem;
    margin-left: 4rem;
}

.navbar {
    background-color: white;
    padding-bottom: 0;
}

#navbarNav {
    max-width: 100%;
}

.nav-link {
    font-family: var(--fontFamilyRoboto);
    font-size: 17px;
    text-align: center;
    text-transform: uppercase;
    color: #00486C;

}

    .nav-link > p {
        font-family: var(--fontFamilyRoboto);
        font-size: 17px;
        color: black;
        font-weight: 300;
        text-transform: none;
        margin-bottom: 0;
    }

    .nav-link:hover,
 /*   .nav-link:focus,*/
    .footer-nav:hover {
        /*border-bottom: 2px solid #F8961D;*/
        color: #F8961D;
    }

/*.nav-link .active {
    color: #F8961D;
}*/


@media screen and (max-width: 1315px) and (min-width: 992px) {
    .nav-link > p {
        display: none;
    }

    header {
        margin-top: 8.2rem;
    }

    .logoimgnav {
        height: 80px;
        width: 100px;
    }

    
}

@media screen and (max-width: 992px) {
    header {
        margin-top: 7.2rem;
    }
    .logoimgnav {
        height: 80px;
        width: 100px;
        margin-bottom: 1rem;
        /* margin-left: 4rem;*/
    }
}

.footer-container {
    min-width: 100%;
    height: 100%;
    background-color: #F9F1EA;
}

.footer-nav {
    text-transform: uppercase;
    text-decoration: none;
    text-align: left;
    color: #00486C;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    
}

.footer-nav > p {
    font-size: 17px;
    color: black;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.8px;
    
}

.footer-title {
    font-family: var(--fontFamilyRoboto);
    font-size: 32px;
    color: #00486C;
    margin-bottom: 20px;
    font-weight: 700;
}

.icon-phone {
    color: #00486C;
    font-size: 26px
}
.icon-envelope {
    color: #00486C;
    font-size: 22px
}

.contact-row {
    display: flex;
    flex-direction: row;
    padding: 4px 0;
    /*gap: 2rem;*/
}

.contact-name {
    font-family: var(--fontFamilyRoboto);
    font-size: 18px;
    color: #00486C;
    font-weight: 600;
    text-decoration: none;
}

.contact-info {
    font-family: var(--fontFamilyRoboto);
    font-size: 17px;
    color: #00486C;
    font-weight: 400;
    padding-left: 1rem;
    text-decoration: none;
}

    .contact-name:visited,
    .contact-info:visited {
        color: #00486C;
    }

.logoimg {
    height: 100px;
}




/*STARTPAGE*/
/* HEADER */

.test {
    display: flex;
    flex-direction: row;
    margin: auto;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.mobile-header {
    display: none;
}

.container-fluid {
    padding: 0;
    width: 100%;
}

.header-container {
    position: relative;
    margin: 0;
    flex-basis: 50%;
    
}

.header-img {
    margin: auto;
}



/*.img-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,.5);
    color: white;
    max-width: 100%;
    padding: 10rem 5rem;
    margin: auto;
    
}*/



.img-text-block {
    background-color: rgba(0,0,0,.5);
    color: white;
    padding: 40px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}
/*    .img-text-block > h1 {
        font-family: var(--fontFamilyRoboto);
        font-weight: 700;
        font-size: var(--H1headingFontSize);
    }

    .img-text-block > p {
        font-family: var(--fontFamilyRoboto);
        font-weight: 400;
        font-size: 25px;
        letter-spacing: .8px;
    }*/

.text-box-center {
    background-color: rgba(0,0,0,.5);
    color: white;
    padding: 40px;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

    .text-box-center > h1,
    .text-box-center > h2,
    .img-text-block > h1 {
        font-family: var(--fontFamilyRoboto);
        font-weight: 700;
        font-size: 40px;
    }

    .text-box-center > p,
    .img-text-block > p {
        font-family: var(--fontFamilyRoboto);
        font-weight: 400;
        font-size: 25px;
        letter-spacing: .8px;
        padding-right: 5rem;
    }

        .banner {
            height: 600px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }




@media screen and (max-width: 1200px) {
    .mobile-header {
        display: block;
    }
    .test {
        display: none;
    }

    .img-text-container {
        padding: 16rem 0 16rem 8rem;
        margin: auto;
    }
    .text-box-center > h1,
    .text-box-center > h2,
    .img-text-block > h1 {
        font-size: var(--H1headingFontSize);
    }

    p,
    .text-box-center > p,
    .img-text-block > p {
        font-size: 25px;
        padding-right: 0;
    }



}
@media screen and (max-width: 999px) {
    .text-box-center > h1,
    .text-box-center > h2,
    .img-text-block > h1 {
        font-size: 35px;
    }

    p,
    .text-box-center > p,
    .img-text-block > p {
        font-size: 20px;
    } 
}

@media screen and (max-width: 800px) {
    .card {
        flex-direction: column;
    }
    .banner {
        height: 400px;
    }
    .text-box-center > p {
        display: none;
    }

}

@media screen and (max-width: 600px) {
    .text-box-center > h1,
    .text-box-center > h2,
    .img-text-block > h1 {
        font-size: 30px;
    }

    p,
    .text-box-center > p,
    .img-text-block > p {
        font-size: 20px;
    }


}


@media screen and (max-width: 450px) {

    .text-box-center > h1,
    .text-box-center > h2,
    .img-text-block > h1 {
        font-size: 25px;
    }

    p,
    .text-box-center > p,
    .img-text-block > p {
        font-size: 18px;
    }
}




/*TEXT SECTION*/

.text-section1 {
    background-color: #FFFFFF;
    padding: 2rem;
}


    .text-section1 > h2 {
        font-family: var(--fontFamilyRoboto);
        font-size: var(--H2headingFontSize);
        color: #00486C;
        font-weight: 800;
        padding-bottom: .5rem;
    }

    .text-section1 > p {
        font-family: var(--FontFamilyNotoSans);
        letter-spacing: 0.8px;
        font-size: 20px;
        font-weight: 400;
        color: #1C1C1C;
        padding-top: .2rem;
    }

.blue-container {
    display: flex;
    flex-direction: row;
    text-align: left;
    
}

.text-section {
    
    height: 600px;
    width: 50%;
    padding: 75px;
    background-color: #00486C;
}

    .text-section > h2 {
        color: #FFFFFF;
        font-family: var(--fontFamilyRoboto);
        font-size: var(--H2headingFontSize);
        font-weight: 800;
        padding-bottom: .5rem;
        margin-top: 10%;
    }

    .text-section > p {
        font-family: var(--FontFamilyNotoSans);
        letter-spacing: 0.8px;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
        padding-bottom: 1rem;
    }

#bg-img {
    background-image: url('../images/rob-wingate-iluqsrjyp8c-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.orange-text-section {
    background-color: #F26722;
    padding: 6rem 15rem;
}

    .orange-text-section > h2 {
        font-family: var(--fontFamilyRoboto);
        font-size: var(--H2headingFontSize);
        color: #FFFFFF;
        font-weight: 700;
        padding-bottom: .5rem;
    }

    .orange-text-section > p {
        font-family: var(--FontFamilyNotoSans);
        letter-spacing: 0.8px;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
        padding: .5rem 5rem;
    }

.text-section-cards {
    height: 400px;
    padding: 10rem 5rem 0 5rem;
}

    .text-section-cards > h2 {
        font-family: var(--fontFamilyRoboto);
        font-size: var(--H2headingFontSize);
        color: #1C1C1C;
        font-weight: 700;
        padding: 0 2rem .5rem 2rem;
    }

    .text-section-cards > p {
        font-family: var(--FontFamilyNotoSans);
        letter-spacing: 0.8px;
        font-size: 20px;
        font-weight: 400;
        color: #1C1C1C;
        padding: .5rem 2rem 0 2rem;
    }

.text-right {
    display: flex;
    justify-content: end;
    flex-direction: column;
    text-align: right;
    padding-right: 5rem;
    margin: 0;
    font-family: var(--fontFamilyRoboto);
    font-weight: 700;
    font-size: 20px;
    color: #008ED5;
    padding-top:10px;
}

.arrow-right {
    display: flex;
    justify-content: end;
    padding: 0 5rem 1rem 0;

}
.text-section-pink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FBFBFB;
    padding: 6rem 0 8rem 0;
    max-width: 100%;
    text-align: center;
}
    .text-section-pink > h2 {
        font-family: var(--fontFamilyRoboto);
        font-size: var(--H2headingFontSize);
        font-weight: 700;
        padding-bottom: 4rem;
    }
.pink-container {
    width: 50%;
    height: 900px;
    border-radius: 15px;
    border: none;
    box-shadow: 0px 6px 6px #00000029;
    background-color: white;
    margin-left: 0;
}

.vertical-line {
    border-left: 3px solid #F26722;
    height: 700px;
    position: absolute;
    left: 28%;
    margin-top: 6.5rem;
    display: flex;

}

    .vertical-line > img {
        width: 400px;
        height: 400px;
        margin-left: 0;
    }
    .vertical-line > p {
        margin-right: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: left;
        font-family: var(--FontFamilyNotoSans);
        font-size: 16px;
    }

        .vertical-line > p > span {
            padding-top: 28px;
            padding-left: 3rem;
        }

@media screen and (max-width: 1614px) {



    .text-right {
        padding-right: 12rem;
    }

    .arrow-right {
        padding: 0 12rem 1rem 0;
    }

    .pink-container {
        width: 55%;
    }

    .vertical-line {
        left: 26%;
        margin-top: 6rem;

    }

        .vertical-line > img {
            width: 350px;
            height: 350px;

        }


}
@media screen and (min-width: 1200px) and (max-width: 1614px) {

    .pink-container {
        width: 67%;
    }

    .vertical-line {
        left: 21%;
        margin-top: 4rem;
    }

        .vertical-line > img {
            width: 350px;
            height: 350px;
            /*padding-right: 2rem;*/
        }
}

@media screen and (max-width: 1200px) {
    .blue-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #bg-img {
        background-image: url('../images/rob-wingate-iluqsrjyp8c-unsplash.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center
    }

    .text-section {
        width: 100%;
        background-color: #00486C;
    }

    .text-section1 {
        width: 100%;
        background-color: #FFFFFF;
    }
        .text-section1 > h2 {
            font-size: 30px;
        }

    .text-section > h2 {
        color: #FFFFFF;
        font-family: var(--fontFamilyRoboto);
        font-size: 30px;
        font-weight: 700;
    }

    .text-section > p {
        font-family: var(--FontFamilyNotoSans);
        letter-spacing: 0.8px;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .orange-text-section {
        background-color: #F26722;
        padding: 5rem 5rem;
    }

        .orange-text-section > p {
            padding: .5rem 1rem;
        }

    .text-section-cards {
        padding: 5rem 2rem 0 2rem;
        
    }


    .text-right {
        padding-right: 5rem;
    }

    .arrow-right {
        padding: 0 5rem 1rem 0;
    }
    .text-section-pink > h2 {
        font-size: 30px;
    }
    .pink-container {
        width: 75%;
        height: 800px;

    }

    .vertical-line {
        left: 18%;
        margin-top: 2rem;
        width: 75%;

    }

        .vertical-line > img {
            width: 250px;
            height: 250px;

        }


            .vertical-line > p > span {
                padding-top: 20px;
                padding-left: 3rem;
            }

}
@media screen and (max-width: 992px) {
    .text-right {
        padding-right: 8rem;

    }

    .arrow-right {
        padding: 0 8rem 1rem 0;
    }
    .pink-container {
        width: 75%;
        height: 800px;
    }

    .vertical-line {
        left: 18%;
        margin-top: 2rem;
        width: 75%;
    }

        .vertical-line > img {
            width: 250px;
            height: 250px;
        }


        .vertical-line > p > span {
            padding-top: 18px;
            padding-left: 3rem;
        }

}
@media screen and (min-width: 767px) and (max-width: 992px) {

    .pink-container {
        width: 67%;
        height: 1000px;
    }

    .vertical-line {
        left: 21%;
        display: flex;
        flex-direction: column;

    }

        .vertical-line > p > span {
            padding-top: 18px;
            padding-left: 3rem;
            
            width: 75%;
        }

        .vertical-line > img {
            width: 250px;
            height: 250px;
            
        }
}

@media screen and (max-width: 767px) {
    .text-section {
        padding: 40px;
    }
    .text-section > h2{
        margin-top: 0;
    }
        .text-section > p {
            padding-bottom: 5px;

        }

    .text-right {
        padding-right: 3rem;
        padding-top: 5rem;
    }

    .arrow-right {
        padding: 0 3rem 1rem 0;
    }
    .pink-container {
        border: none;
        box-shadow: none;
        background-color: #FBFBFB;
        height: 1000px;
    }

    .vertical-line {
        border-left: 3px solid #F26722;
        height: 700px;
        position: absolute;
        left: 10%;
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        width: 75%;
    }

        .vertical-line > img {
            width: 250px;
            height: 250px;
            margin: auto;
        }


        .vertical-line > p > span {
            font-size: 13px;
            padding-top: 18px;
            padding-left: 3rem;

        }

        .vertical-line > p  {
        margin-bottom: 100px;
        }
    .orange-text-section {
        padding: 2rem 0;
    }
}
@media screen and (max-width: 500px) {

    .text-right {
        padding-top: 13rem;
        font-size: 18px;
    }



}





    /* CALENDER  */
    .calender-cards {
        padding: 60px 25px;
        display: grid;
        grid-template-columns: auto auto;
        gap: 1rem;
    }

    .calender-section {
        background-color: #f2f2f2;
        padding: 3rem;
    }


    .calender-title {
        color: #00486C;
        font-family: var(--fontFamilyRoboto);
        font-size: 35px;
        font-weight: 600;
    }

    .fa {
        color: #00486C;
    }


    .calender-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0px 3px 6px #00000029;
        padding: 25px 25px;
        display: flex;
        flex-direction: row;
        gap: 25px;
        /*    justify-content: flex-start;
    align-items: flex-start;*/
    }

    .event-logo {
        margin-left: auto;
    }

    .event-date {
        display: flex;
        flex-direction: column;
        /*margin: 10px;*/
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        background-color: #00486C;
        width: 115px;
        height: 115px;
    }

    .event-date-top {
        font-size: 55px;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 75px;
        width: 100%;
        border-radius: 15px;
        color: white
    }

    .event-date-bottom {
        display: flex;
        font-size: 17px;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
        height: 50px;
        width: 100%;
        color: white;
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
        background-color: #008ED5;
    }

    .event-title {
        color: #00486C;
        font-weight: 700;
        font-size: 25px;
    }

    .event-association {
        font-size: 20px;
        padding-bottom: 3px;
    }

    .event-location {
        font-weight: bold;
        font-size: 15px;
    }

    .event-location, .event-adress {
        font-size: 15px;
        color: #00486C;
    }

    .location-div {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .location-info {
        flex-direction: column;
    }

    .calender-location-icon {
        font-size: 45px;
    }


    @media screen and (max-width: 1200px) {
        .calender-cards {
            padding: 30px 10px;
            display: grid;
            grid-template-columns: auto auto;
            gap: 1rem;
        }

        .calender-section {
            background-color: #f2f2f2;
            padding: 3rem;
        }

        .calender-title {
            color: #00486C;
            font-family: var(--fontFamilyRoboto);
            font-size: 25px;
            font-weight: 600;
        }


        .calender-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0px 3px 6px #00000029;
            padding: 20px 20px;
            display: flex;
            flex-direction: row;
            gap: 25px;
        }

        .event-logo {
            margin-left: auto;
        }

            .event-logo > img {
                width: 50px;
            }

        .event-date {
            display: flex;
            flex-direction: column;
            /*margin: 10px;*/
            justify-content: center;
            align-items: center;
            border-radius: 15px;
            background-color: #00486C;
            width: 100px;
            height: 100px;
        }

        .event-date-top {
            font-size: 38px;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 85px;
            width: 100%;
            border-radius: 15px;
            color: white
        }

        .event-date-bottom {
            display: flex;
            font-size: 15px;
            justify-content: center;
            align-items: center;
            flex-grow: 1;
            height: 50px;
            width: 100%;
            color: white;
            border-bottom-right-radius: 15px;
            border-bottom-left-radius: 15px;
            background-color: #008ED5;
        }

        .event-title {
            color: #00486C;
            font-weight: 700;
            font-size: 20px;
        }

        .event-association {
            font-size: 15px;
            padding-bottom: 3px;
        }

        .event-location {
            font-weight: bold;
            font-size: 15px;
        }

        .event-location, .event-adress {
            font-size: 12px;
            color: #00486C;
        }

        .location-div {
            display: flex;
            flex-direction: row;
            gap: 10px;
        }

        .location-info {
            flex-direction: column;
        }

        .calender-location-icon {
            font-size: 35px;
        }
    }

    @media screen and (max-width: 992px) {
        .calender-cards {
            padding: 30px 10px;
            display: grid;
            grid-template-columns: auto;
            justify-content: center;
            width: 75%;
            margin: auto;
            gap: 1rem;
        }

        .event-logo > img {
            width: 45px;
        }
    }

    @media screen and (max-width: 650px) {
        .calender-cards {
            padding: 30px 10px;
            display: grid;
            grid-template-columns: auto;
            justify-content: center;
            /*margin: auto;*/
            gap: 1rem;
        }

        .calender-section {
            background-color: #f2f2f2;
            padding: 3rem;
            align-items: center;
        }

        .calender-title {
            color: #00486C;
            font-family: var(--fontFamilyRoboto);
            font-size: 25px;
            font-weight: 600;
        }


        .calender-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0px 3px 6px #00000029;
            padding: 12px 12px;
            display: flex;
            flex-direction: row;
            gap: 25px;
        }

        .event-logo {
            margin-left: auto;
        }

            .event-logo > img {
                width: 35px;
            }

        .event-date {
            display: flex;
            flex-direction: column;
            /*margin: 10px;*/
            justify-content: center;
            align-items: center;
            border-radius: 15px;
            background-color: #00486C;
            width: 85px;
            height: 85px;
        }

        .event-date-top {
            font-size: 30px;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 85px;
            width: 100%;
            border-radius: 15px;
            color: white
        }

        .event-date-bottom {
            display: flex;
            font-size: 13px;
            justify-content: center;
            align-items: center;
            flex-grow: 1;
            height: 50px;
            width: 100%;
            color: white;
            border-bottom-right-radius: 15px;
            border-bottom-left-radius: 15px;
            background-color: #008ED5;
        }

        .event-title {
            color: #00486C;
            font-weight: 700;
            font-size: 17px;
        }

        .event-association {
            font-size: 12px;
            padding-bottom: 3px;
        }

        .event-location {
            font-weight: bold;
            font-size: 12px;
        }

        .event-location, .event-adress {
            font-size: 11px;
            color: #00486C;
        }

        .location-div {
            display: flex;
            flex-direction: row;
            gap: 10px;
        }

        .location-info {
            flex-direction: column;
        }

        .calender-location-icon {
            font-size: 25px;
        }
    }


    /* CAROUSEL */
    /*.carousel-inner {
    display: block;
    width: 100%;
    margin: auto;
}*/

    .carousel-container {
        padding: 8rem 0;
    }

        .carousel-container > h2 {
            font-family: var(--fontFamilyRoboto);
            font-size: 35px;
            font-weight: 700;
            padding-bottom: 3rem;
        }

    #slick .slider_content .slider_items img {
        height: 100px;
        margin: 50px 100px 20px 100px;
    }

    .fa-angle-right::before {
        content: "\f105";
    }

    .fa-angle-left::before {
        content: "\f104";
    }

    .nextArrowBtn {
        position: absolute;
        z-index: 500;
        top: 50%;
        right: 3%;
        color: #BFAFB2;
        cursor: pointer;
    }

    .prevArrowBtn {
        position: absolute;
        z-index: 500;
        top: 50%;
        left: 3%;
        color: #BFAFB2;
        cursor: pointer;
    }

    .slick-arrow:hover {
        color: #F8961D;
    }

    @media screen and (max-width: 492px) {
        .carousel-container {
            padding: 3rem 0;
        }

            .carousel-container > h2 {
                font-family: var(--fontFamilyRoboto);
                font-size: 30px;
                font-weight: 700;
                padding-bottom: 1rem;
            }
    }





    /* FORMS */
    .umbraco-forms-label {
        font-weight: bold;
        color: #F26722;
    }

.form-container {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    width: 50%;
}

.form-container > p {
    margin-bottom: 0;
   
}

    .umbraco-forms-container {
        display: flex;
        flex-direction: column;
    }

div > input[type=submit] {
    float: right;
}

    div > input:not([type=checkbox], [type=submit], [type=radio]) {
        width: 100%;
        height: 60px;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 20px;
        border: none;
        padding: 10px;
    }

    div > textarea {
        width: 100%;
        height: 400px;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 20px;
        border: none;
        padding: 25px;
    }

        div > textarea::placeholder, div > input::placeholder {
            font-style: italic;
            font-size: 14px;
        }

        .umbraco-forms-field > .umbraco-forms-label {
            font-family: var(--fontFamilyRoboto);
            color: black;
            font-size: 18px;
            padding: 20px 0 5px 5px;
            font-weight: 500;
        }

.umbraco-forms-field-wrapper {
    padding-bottom: 1rem;
}


.form-heading {
    font-family: var(--fontFamilyRoboto);
    font-size: 30px;
    font-weight: 700;
    color: #F8961D;
    padding-bottom: 0;
}

    .form-title {
        font-family: var(--fontFamilyRoboto);
        font-weight: 700;
        font-size: var(--H2headingFontSize);
        margin: 70px 0 30px 0;
        padding-top: 50px;
    }

.form-title-description {
    margin: auto;
    font-family: var(--FontFamilyNotoSans);
    letter-spacing: 0.8px;
    font-size: 20px;
    font-weight: 400;
    color: #1C1C1C;
    padding-top:;
    width: 90%;
    padding: 0.2rem 5% 0;
}

    .form-bg {
        background-color: #FBFBFB;
    }

    .umbraco-forms-field {
        display: flex;
        flex-direction: column;
    }

.umbraco-forms-tooltip {
    font-family: var(--FontFamilyNotoSans);
    font-size: 15px;
    padding-bottom: 10px;
    padding-left: 5px;
}

    .umbraco-forms-submitmessage {
        color: #00486C;
        font-size: large;
        font-weight: 500;
    }

    .field-validation-error {
        color: red;
        font-size: large;
        font-weight: 500;
        padding-top: 50px;
    }

@media screen and (max-width: 992px) {
    .form-container {
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem;
        width: 90%;
    }

}











    /* VISION CARDS */
    .card-section {
        background-color: #F2F2F2;
    }

    .text-section#cards-text {
        padding-bottom: 10rem;
    }

    .card-container {
        display: grid;
        grid-template-columns: auto auto auto;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 70px;
        padding-bottom: 90px;
        margin-right: 15%;
        margin-left: 15%;
    }


    .card {
        width: 330px;
        height: 450px;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 15px;
        border: none;
        padding: 20px;
        text-align: center;
        box-shadow: 0px 6px 6px #00000029;
        word-break: keep-all;
    }

    .card-p {
        font-family: var(--FontFamilyNotoSans);
        font-size: 15px;
        font-weight: 700;
        padding-bottom: .5rem;
        padding-top: 1rem;
    }

    .card .card-image {
        height: 150px;
        width: 150px;
        border-radius: 50%;
        background-position: center center;
        background-size: cover;
    }

    .how-to-item .card-image {
        height: 150px;
        width: 150px;
        border-radius: 50%;
        background-position: center center;
        background-size: cover;
    }

    .card .card-title {
        padding-bottom: 20px;
        padding-top: 0;
        font-size: 1.5rem;
        text-transform: uppercase;
        color: #F8961D;
        font-weight: bolder;
        word-break: break-all;
    }

    .card > p {
        margin-bottom: 0;
        

    }
    .card-text {
        max-height: 100px;
    }
.card-name {
    position: absolute;
    bottom: 20px;
    right: 22px;
}

    .card:nth-child(1) .card-image {
        background-image: url(../media/webbsida_ikon.png);
    }

    .card:nth-child(2) .card-image {
        background-image: url(../media/webbsida_ikon.png);
    }

    .card:nth-child(3) .card-image {
        background-image: url(../media/webbsida_ikon.png);
    }

    .card:nth-child(4) .card-image {
        background-image: url(../media/webbsida_ikon.png);
    }

    .card:nth-child(5) .card-image {
        background-image: url(../media/webbsida_ikon.png);
    }

    .card:nth-child(6) .card-image {
        background-image: url(../media/webbsida_ikon.png);
    }


@media screen and (max-width: 1614px) {
    .card-container {
        display: grid;
        grid-template-columns: auto auto;
    }
}

@media screen and (max-width: 992px) {
    .card-container {
        display: grid;
        grid-template-columns: auto;
    }
    .card-name {
        position: absolute;
        bottom: 20px;
        right: 30px;
    }

}
    /* FÖRENINGSKORT */
    .associations-header {
        color: #F26722;
        margin-top: 60px;
        text-align: center;
    }

    .association-cards {
        margin-top: 60px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .small-card {
        width: 536px;
        height: 175px;
        border-radius: 20px;
        box-shadow: 0px 3px 6px #00000029;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-left: 20px;
    }
    /* PAGINATION */
    .hidden {
        display: none;
    }

    .pagination-container {
        display: flex;
        align-items: center;
        position: relative;
        bottom: 0;
        justify-content: center;
        margin-top: 15px;
        align-content: space-between;
    }

    .pagination-number, .pagination-button {
        color: #F26722;
        font-size: 1.3rem;
        font-weight: 700;
        background-color: transparent;
        border: none;
        margin: 0.25rem 0.25rem;
        cursor: pointer;
        height: 2.5rem;
        width: 2.5rem;
        border-radius: .2rem;
    }

        .pagination-number:hover, .pagination-button:not(.disabled):hover {
            background: #fff;
        }

        .pagination-number.active {
            border: 1px solid #F26722;
        }

    .card-logo {
        width: 86px;
        height: 86px;
        margin-right: 20px;
    }

    .card-body {
        word-break: break-all;
    }

    .member-section {
        display: flex;
        color: #F26722;
        justify-content: right;
        margin-top: 100px;
        padding-right: 20px;
        align-items: center;
        gap: 4px;
    }

    .filter-bg {
        background: #f2f2f2;
    }

    .filter-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        margin-left: 15%;
        margin-right: 15%;
        flex-wrap: wrap;
    }

    .filter-label {
        font-size: xx-large;
        font-weight: bolder;
        color: #00486C;
    }

    #search {
        width: 300px;
        height: 50px;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 20px;
        border: none;
        padding: 10px;
        justify-content: flex-end;
    }

    .filter-section {
        display: flex;
        flex-direction: row;
        margin-top: 30px;
        row-gap: 2rem;
        column-gap: 10rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-option-title {
        color: #00486C;
        border-bottom: 3px solid #00486C;
        padding: 2px;
        max-width: 100%;
    }

    @media screen and (max-width: 1150px) {
        .filter-section {
            justify-content: left;
            padding-left: 30px;
        }

        .area-checkboxes li {
            width: 20%;
        }
    }

    .area-checkboxes {
        padding-left: 0;
        width: 325px;
    }

        .area-checkboxes ul, .area-checkboxes li {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .area-checkboxes li {
            display: inline-block;
            width: 30%;
        }

    .area-input {
        accent-color: #00486C;
    }

        .area-input:hover {
            accent-color: #00486C;
            cursor: pointer;
        }
    /* HOW-TO */
    .how-to-title {
        color: #00486C;
        padding-top: 6rem;
        padding-bottom: 4rem;
        font-family: var(--fontFamilyRoboto);
        font-size: var(--H2headingFontSize);
        font-weight: 700;
    }
@media screen and (max-width: 1200px) {
.how-to-title,
.form-title{
    font-size: 30px;
}
}

    .how-to-item {
        width: 330px;
        height: 330px;
        position: relative;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        text-align: center;
        word-break: keep-all;
    }

        .how-to-item .how-to-image {
            height: 150px;
            width: 200px;
            background-position: center center;
            background-size: cover;
            margin-bottom: 25px;
        }

        .how-to-item:nth-child(1) .how-to-image {
            background-image: url(../media/forallthumbnail.png);
        }

        .how-to-item:nth-child(2) .how-to-image {
            background-image: url(../media/forallthumbnail.png);
        }

        .how-to-item:nth-child(3) .how-to-image {
            background-image: url(../media/forallthumbnail.png);
        }



    .home-page-block {
        position: relative;
        display: flex;
        flex-direction: column;
        top: 25%;
        left: 25%;
        transform: translate(-25%, -25%);
        background-color: rgba(0,0,0,.5);
        color: white;
        padding-left: 30px;
        padding-right: 30px;
        width: 580px;
        max-width: 100%;
    }

    .multi-crop {
        display: flex;
        flex-direction: row;
    }



    .caption {
        font-size: 0.875rem;
        font-style: italic;
        display: block;
        margin: 0;
        padding: 0.625rem;
        text-align: center;
    }



    .bulletpoint {
        background: #00486C;
        border-radius: 50%;
        height: 100px;
        width: 100px;
        text-align: center;

        margin-top: 20px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bullet-number {
        margin-top: 25%;
        color: white;
        font-size: xx-large;
    }



    .bulletline {
        height: 75px;
        width: 3px;
        background: #00486C;
    }

    .bullet-column-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bullet-column-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-left: 3%;
        word-break: break-word;
        width: 45%;
        padding-top: 3rem
    }

    .bullet-text {
    
    height: 60px;
    width: 100%;
    margin-bottom: 160px;
    font-family: var(--FontFamilyNotoSans);
    font-size: 18px;
    font-weight: 400;
    /*font: normal normal normal 25/35px;*/
}

.bullet-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}


@media screen and (max-width: 1050px) {
    .bullet-column-right {
        margin-right: 1.5rem;
        width: 50%;
    }
}

@media screen and (max-width: 992px) {
    .bullet-row {
        display: flex;

    }
    .bulletline {
        display:none;
    }
    .bulletpoint {
        margin-bottom:100px;
        position: relative;
    }
    .bullet-text {

        padding-top: 40px;
        text-align: center;
    }
    .bullet-column-right {
        top: 50px;
        position: relative;
        
    }
    .bullet-column-left {

        position: absolute;
    }

}

@media screen and (max-width: 872px) {
    .bullet-column-right {
        margin-right: 0;
        width: 50%;
        padding-top: 40px;
    }
}

@media screen and (max-width: 804px) {
    .bullet-row {
        display: flex;
        padding-bottom: 40px;
    }

    .bulletline {
        display: none;
    }

    .bulletpoint {
        margin-bottom: 110px;
        position: relative;
    }

    .bullet-text {
        padding-top: 55px;
        text-align: center;
    }

    .bullet-column-right {
        width: 90%;
        position: relative;
        margin-left: 0;
    }

    .bullet-column-left {
        position: absolute;
    }
}






