/* Global */
* {
    box-sizing: border-box;

}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color:#f2e6e6 ;
}

.container-scrolled {
    overflow-y: scroll;
    box-sizing: border-box;
    height: 65vh;
    -ms-overflow-style: none !important; 
    scrollbar-width: 20px !important;
    scrollbar-color: #f77278 transparent !important;
}


.container-scrolled::-webkit-scrollbar-thumb {
    background-color: #f77278;
    border-radius: 10px !important; 
}

.container-scrolled::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
    background: transparent; /* Background for the scrollbar track */
}

.container-scrolled::-webkit-scrollbar-track {
    background: transparent; /* Background for the scrollbar track */
}




main {
background-color:#f2e6e6 ;
margin-top: -37px;
}

header {
    margin-bottom: 23px;

}

.link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

h1 {
    margin-bottom: 0px;
}

.section:not(:last-of-type) {
    margin-bottom: 20px;
}

h2 {
    margin-block: 0 20px;
    font-size: 16px;
    font-weight: 600;
}

p {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 16px;
}

section.intro {
    margin-bottom: 20px;
} 


.walkway-oblique-black {
    font-family: 'Walkway UltraExpand', sans-serif;

    font-weight: 900;
}
/* Helpers */
.NewRed{
    color:#a61616;
}
.red {
    color: #d40746;
}

.green {
    color: green;
}

.blue {
    color: #5269f1;
}

.text-center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.light {
    font-weight: lighter;
}

/* Grid system */
.container {
    margin: 0 auto;
    padding-inline: 15px;

}
section.section{
    font-size: 13px;
}

.p-copyright {
    font-size: 12px;
    margin-left: 0px;
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
        margin-top: -23px;
    }

    .p-copyright {
        margin-left: 170px;
        margin-top: 5px;
    }

    main {
        padding-left: 0px;
        padding-right: 0px;
        padding-block: 150px 60px;
    }

    .link {
        position: absolute;
        top: 45px;
        right: 45px;
        left: unset;
        width: unset;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 980px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1150px;
    }
}

@media (max-width: 500px) {
    main {
    margin-top: 106px;
    }
    .container {
    margin-top: -18px;
    }
    .link{
    margin-top: -70px;
    }
    header{
    margin-top: 123px !important;
    }
}


.text-about {
    font-family: 'Walkway SemiBold', sans-serif;
    font-weight: 400;
    font-size: 2.3rem !important;
}


.m-auto {

    margin: 0 auto;
}

.w-80 {
    width: 80%;
}


.font-style-italic {
    font-style: italic;
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-250 {
    font-weight: 250;
}

.font-weight-275 {
    font-weight: 275;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: bold;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}


.text-deco-none {
    text-decoration: none;
}

.f-size-18 {
    font-size: 18px;
}

.cursor-pointer {
    cursor: pointer;
}

.new-green{
    color: rgb(31, 117, 43);
}