html {
    height:100%;
}
body {
    min-height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    display:flex;
    flex-direction: column;
    font-family: "Lora", serif;
    font-size: 1.1rem;
}


body, footer {
    background-color: white;
}

/* Hide the link off-screen by default */
.skip-to-content {
    position: absolute;
    top:-100px;
    left:0;
    background: #5a31f4; /*match your brand color*/
    color:white;
    padding: 10px 20px;
    z-index: 10001; /* Must be higher than your fixed top navbar */
    text-decoration: none;
    transition: top 0.3s ease;
}

/* Make the link visible when a user tabs onto it */

.skip-to-content:focus {
    top: 0;
    outline: none;
}

    

header nav a {
    font-family: "Inter", sans-serif;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
}

header nav a:hover {
    color:rgb(223, 88, 161);
}


.navbarColor {
    background-color:black;
    padding-top: 0;
    padding-bottom:0;
    border-bottom: solid 1px rgb(223, 88, 161);
    
}


.navbar .nav-item a.activeMenuItem {
    text-decoration: underline;
    text-decoration-color: rgb(223, 88, 161) !important;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
    color:rgb(223, 88, 161);
    
}

/* This targets the specific icon and turns it white */
.navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Optional: To change the color of the outer box border */
.navbar-toggler {
    border-color: rgba(223, 88, 161, 0.9) !important;
}



.imageGateway {
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 4em 0;
    background: none !important; /* Removes any old background settings*/

    overflow: hidden; /* Clips the image layer */
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* The fixed image layer (the parallax magic) */
.imageGateway::before {
    content: "";
    position: fixed; /* This pins the image to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.3)),
    url('Images/buildingsGateway.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps it behind your text */

    /* This ensures it stays behind the div and doesn't cover the whole site */
    will-change: transform;

}

.fontForTitle {
    font-family: "Inter", sans-serif;
    letter-spacing: 3px;
    font-size: 4rem;
    margin-top: 1em;
    max-width:100%;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    overflow-wrap: normal;
    word-wrap:normal;
   
}

.fontForTitleValues {
    font-size: 3rem;

}

.whiteButton {
    background-color: rgb(223, 88, 161);
    color:white;
    font-family: "Inter", sans-serif;
    letter-spacing: 2px;

}

.whiteButton:hover {
    background-color: black;
    color:white;
}
.whiteButtonContact {
    background-color: rgb(223, 88, 161);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255,0,255, 0.6);
    transition:all 0.3s ease-in-out;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
}
.whiteButtonContact:hover {
    box-shadow: 0 0 25px rgba(223,88,161, 0.9), 0 0 45px rgba(255, 0, 255, 0.4);
    transform: translateY(-2px);
    color:rgb(223, 88, 161);
    cursor:pointer

}
.fontTitle {
    font-family: "Inter", sans-serif;
    letter-spacing: 3px;
    color: black;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;   
    max-width:100%;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    overflow-wrap: normal;
    word-wrap:normal;
}

.fontTitleBlack {
    font-family: "Inter", sans-serif;
    letter-spacing: 3px;
    color: black;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.3;   
    max-width:100%;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    overflow-wrap: normal;
    word-wrap:normal; 
}

.paddingUpDown {
    padding-bottom: 2em;
    padding-top: 2em;
}

.paddingAndWidth {
    padding-right: 4em;
    max-width: 35em;
}


.expandParagraphe {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    line-height: 1.7em;
    color: black;
    
}


.dropShadow {
    filter: drop-shadow(15px 15px 25px gray);
    
}

.fontCards {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    color: white;
    background-color: black;
    font-weight: bold;
    line-height: 1.7;
    margin-right:1em;
    margin-left: 1em;
}

.cardPurple:hover {
    background-color: white;

}
.cardPurple:hover .card-title, .cardPurple:hover .card-text {
    color:black;
}



.imageExpandBackground {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 5em 0;
    background-color: #E9ECEF; 
    z-index: 1;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;;
}

.glass-card-dc-white {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.6);
    color:#1a1a1a;
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    font-weight: bold;
    line-height: 1.7;
    margin-right:1em;
    margin-left: 1em;
    transition: all 0.4s ease-in-out;
}

.glass-card-dc-white:hover {
    background: #ffffff !important;
    backdrop-filter: blur(0px);
    color: #1a1a1a !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);

}
.glass-card-dc-white:hover .card-text {
    color: #1a1a1a !important;
}



.glass-card-dc {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color:#ffffff;
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    font-weight: bold;
    line-height: 1.7;
    margin-right:1em;
    margin-left: 1em;
    transition: all 0.4s ease-in-out;
}
.glass-card-dc:hover {
    background: #ffffff !important;
    backdrop-filter: blur(0px);
    color: #1a1a1a !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);

}
.glass-card-dc:hover .card-text {
    color: #1a1a1a !important;
}



.paddingTopp {
    padding-top: 30px;
}


/* values delen */
.backgroundValues {
    padding-top: 4em;
    padding-bottom: 1em;
    min-height: 1000px;
    width: 100%;
    position: relative;
    width: 100%;
    background: none !important; /* Removes any old background settings*/
    
    overflow: hidden; /* Clips the image layer */
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* The fixed image layer (the parallax magic) */
.backgroundValues::before {
    content: "";
    position: fixed; /* This pins the image to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.5)),
    url('Images/calculatorWhite.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps it behind your text */

    /* This ensures it stays behind the div and doesn't cover the whole site */
    will-change: transform;

}


.cardValues {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    color: black;
    line-height: 1.7;
    max-width:100%;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-wrap:break-word; 

}

.cardValues:hover {
    background-color: rgb(223, 88, 161);
    opacity: 0.9;
    
}

.cardValues:hover .card-title, .cardValues:hover .card-text, .cardValues:hover i {
    color: white;
}



.paddingUp {
    padding-top: 5em;
}

/* slut Values delen */



/* bridge delen */

.imageCapitol {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 5em 0;
    background-color: #E9ECEF; 
    z-index: 1;
}


.glass-card-capitol {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter:blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color:#ffffff;
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    font-weight: bold;
    line-height: 1.7;
    margin-right:1em;
    margin-left: 1em;
    transition: all 0.4s ease-in-out;
}
.glass-card-capitol:hover {
    background: #ffffff !important;
    backdrop-filter: blur(0px);
    color: #1a1a1a !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);

}
.glass-card-capitol:hover .card-text {
    color: #1a1a1a !important;
}



.paddingAndWidthValues {
    padding-left: 4em;
    max-width: 30em;
}

.paddingLeftAndRight {
    margin-left: 0;
    padding-left:0;
}


/* slut bridge delen */


/* services sidan*/

.imageServices {
    position: relative;
    width: 100%;
    min-height: 1000px;
    padding: 5em 0;
    background: none !important; /* Removes any old background settings*/

    overflow: hidden; /* Clips the image layer */
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* The fixed image layer (the parallax magic) */
.imageServices::before {
    content: "";
    position: fixed; /* This pins the image to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.5)),
    url('Images/computorHands.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps it behind your text */

    /* This ensures it stays behind the div and doesn't cover the whole site */
    will-change: transform;

}


.backgroundAndMargin {
    margin:0;
    padding-top: 2em;
    padding-left:1em;
    padding-right:1em;
}



.paddingUpServices {
    padding-top: 6em;
}



.cardTitle {
    color:rgb(223, 88, 161);
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
}

.greyBackground {
    
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 5em 0;
    background-color: #E9ECEF; 
    z-index: 1;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;;
}
  
   


/* slut services sidan */




/* about sidan och services sidan */



.fontLora {
    font-family: "Lora", serif;
}

 .dropShadowPink {
    filter: drop-shadow(15px 15px 5px rgb(223, 88, 161));
    
}

.dropShadowWhite {
    filter:drop-shadow(15px 15px 5px white );

}
.dropShadowGrey {
    filter: drop-shadow(15px 15px 5px gray);
    
}


.spaceBeforeHeading {
    margin-top: 1em;
}


.halfContainer {
    display: flex;
    width: 100%;
    align-items: center;
}
 
.imageHalf {
    flex: 1;
    max-width: 50%;
}
 
.imageHalf img {
    width: 100%;
    height: auto;
}
 
.textHalf {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}


.backgroundSectionServices {
    background-color: rgb(223, 88, 161);
    color: white;
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    line-height: 1.7em;
}

.aboutThirdSection {
    background-color: #1a1a1a; 
}

.fontCardsAbout {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    color: rgb(120, 92, 175);
    line-height: 1.7;
}

.borderTop {
    border-top: 1px solid rgb(223, 88, 161);
}
.borderBottom {
    border-bottom: 1px solid rgb(223, 88, 161);
}

/*initial state: hidden and shifted down */
.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out; /* this makes it smooth*/
    visibility: visible;
}

/* active state: visible and original position */

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Acessibility: if a user jumps the content, show it immediately */

#main-content:focus-within .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



/* slut about sidan*/



/* contact sidan */



.contactBackground {
    background:linear-gradient(145deg, #1a1c2c 0%, #4b2a85 100%);
    width: 100%;
    padding: 5rem 0;
}


.colorForm {
    background-color: rgba(255,255,255, 0.1);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255, 0.3);
    border-radius: 8px;
    padding: 12px;

}

.colorForm::placeholder {
    color: rgba(255,255,255, 0.6);

}

.colorForm:focus {
    background-color: rgba(255,255,255, 0.2);
    border-color: #ffffff;
    outline:none;
    box-shadow: 0 0 8px rgba(255,255,255, 0.2);
}

label {
    color: white;
    font-family: "Lora", serif;
    font-weight: bold;
}




/* slut contact sidan */




/* Footer */



.fontText {
   
    font-size: 1.1rem;
    font-family: "Inter", sans-serif;
}

.linksFooter {
    text-decoration:underline;
    color: white;

}

.linksFooter:hover, .terms {
    color: rgb(223, 88, 161);
    
}


.blackFooter {
    background-color: black;
    color:white;
}


/* end Footer */


/* terms of use */

.paddingUpTermsofUse {
    padding-top: 3em;
}
.fontTitleTermsofUse {
    font-family: "Inter", sans-serif;
    letter-spacing: 3px;
    color: rgb(120, 92, 175);
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.3;    
}


@media (max-width: 1049px){
    .cardTitle {
        text-transform: uppercase;
        font-size: 1.1rem;
    }
}


@media (max-width: 991px) {
    .navbar-nav a.activeMenuItem {
        display: inline-block; /* helps with underline rendering on some mobile browsers*/
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 900px) {
    .fontForTitle {
        font-size: 3.5rem;
    }
    .paddingAndWidth {
        padding-right: 1em;
        padding-left: 1em;
    }
    .paddingAndWidthValues {
        padding-right: 1em;
        padding-left: 1em;
    }
    .cardTitle {
        font-size: 1em;
    }
    
}


@media (max-width: 850px){
    .card-body {
        padding-left:0.2em;
        padding-right: 0.2em;
    }
}

@media (max-width: 800px) {
    .imageGateway {
        min-height: 600px !important;
        height: auto !important;
        overflow:hidden;
        padding: 1em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .imageGateway::before{
        /* swap to tablet sized image */
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.3)),
        url('Images/buildingsGateway800.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }


    .backgroundValues {
        min-height: 600px !important;
        height: auto !important;
        overflow:hidden;
        padding: 1em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .backgroundValues::before{
        /* swap to tablet sized image */
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.5)),
        url('Images/calculatorWhite800.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }

    .imageServices {
        min-height: 600px;
        padding: 5em 0;
        overflow: hidden; /* Clips the image layer */
        clip-path: inset(0 0 0 0);
    }


    .imageServices::before {
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.5)),
        url('Images/computorHands800.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;

    }


    .fontForTitle {
        font-size: 3rem; 
    }
    .fontCards {
        margin-right:0.5em;
        margin-left: 0.5em;
    }

}



@media screen and (max-width: 767px)  {
    
    .paddingUpDown {
        padding-bottom: 2em;
        padding-top: 2em;
    }
    .cardTitle {
        font-size: 1.1rem;
    }
    .centerText {
        text-align: center;
    }
    .picto {
        width: 160px;
    }
    .imageHalf {
        flex: 1;
        max-width: 85%;
    }
 
    .imageHalf img {
        width: 100%;
        height: auto;
    }
 
    .textHalf {
        flex: 1;
        max-width: 100%;
        padding: 20px;
    }
    .card-body {
        padding-left:1em;
        padding-right: 1em;
    }

    .display-1 {
        font-size: 5rem !important;
        line-height: 1;
    }
    .maxWidth {
        max-width: 100%;
        padding: 20px;
    }
    
}


@media screen and (max-width: 725px)  {
    .fontForTitle {
        font-size: 2.6rem;
        text-transform: uppercase;
    }
     
}

@media screen and (max-width: 610px)  {
    
    .fontForTitle {
        font-size: 2.5rem;
    }

}

@media (max-width: 600px) {
    .imageGateway {
        min-height: 550px !important;
        height: auto !important;
        overflow:hidden;
        padding: 2em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .imageGateway::before{
        /* swap to tablet sized image */
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.3)),
    url('Images/buildingsGateway600.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }
  
    .backgroundValues {
        min-height: 550px !important;
        height: auto !important;
        overflow:hidden;
        padding: 2em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .backgroundValues::before{
        /* swap to tablet sized image */
        background-image:linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.5)),
        url('Images/calculatorWhite600.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }
    .imageServices {
        min-height: 500px;
        padding: 3em 0;
        overflow: hidden; /* Clips the image layer */
        clip-path: inset(0 0 0 0);
    }

    .imageServices::before {
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.5)),
        url('Images/computorHands600.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;

    }
}




@media (max-width: 400px) {
    .imageGateway {
        min-height: 450px !important;
        height: auto !important;
        overflow:hidden;
        clip-path: inset(0 0 0 0);
        padding: 1em 1em;
        padding-left:0.5em;
        padding-right:0.5em;
    }
    .imageGateway::before{
        /* swap to tablet sized image */
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.3)),
        url('Images/buildingsGateway400.jpg');
        background-size: cover !important;
        background-position: center 15% !important;
        position:fixed;
       
    }
    
    .backgroundValues {
        min-height: 400px !important;
        height: auto !important;
        overflow:hidden;
        padding: 2em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .backgroundValues::before{
        /* swap to tablet sized image */
        background-image:linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.5)),
        url('Images/calculatorWhite400.jpg');
        background-size: cover !important;
        background-position: center 15% !important;
        position: fixed;
    }

    .imageServices {
        min-height: 400px;
        padding: 3em 0;
        overflow: hidden; /* Clips the image layer */
        clip-path: inset(0 0 0 0);
    }

    .imageServices::before {
        background-image:linear-gradient(rgb(250, 250, 250), rgba(250, 250, 250, 0.5)),
        url('Images/computorHands400.jpg');
        background-size: cover !important;
        background-position: center 15% !important;
        position: fixed;
    }
    .mindreText {
        font-size: 1.2rem;
    }
    .fontForTitle {
        font-size: 2.2rem;
        hyphens: none;
        letter-spacing: 1px;
        padding-left: 10px;
        padding-right: 10px;
    }

}

    
    
























    




