html{
    scroll-behavior: smooth;
}



body {
    margin: 0;
    padding: 0;
    padding-top: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}


.section-divider{
    border: none;
    height: 5px;
    background: linear-gradient(to right, transparent, #142172, transparent); 
    width: 40%;
    margin: 5rem auto;

}


/*--------------------------------------NAVBAR-------------------------------------*/

nav .nav-logo {
    height:3.5rem;
    width: auto;
}




ul {
    list-style-type: none;
    padding: 0;
    margin: 0%;
    

}



nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #142172;
    background: linear-gradient(to right,#050a41, #142172, #142172, #050a41);
    padding: 1rem 3rem;
    z-index: 10;
    width: 100%;
    margin-top: 0%;
    align-items: center;
    box-sizing: border-box;
    
}




nav a {    /*Länkar i navbaren*/
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s;
}

ul li a:hover {
    text-decoration: underline;
    
}

nav a:hover{
    text-decoration: underline;
}


#menu-toggle {
    display: none;
}


/*huvudmeny på desktop*/
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    list-style: none;
    order: 2;
}

.has-dropdown {
    position: static;
    
}

.dropdown-menu{  /*Dropdown från hamburgarmeny*/
    display: none;
    position: absolute;
    font-size: 1.2rem;
    right: 2rem;
    top: calc(100% );
    overflow: visible;
    width: 15rem;
    background: linear-gradient(to right, #0a115a, #050a41);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1000;
}



.dropdown-menu li {
   width: 100%;
   
}

.dropdown-menu p {
    padding: 1rem ;
    color: #000000;
    transition: 0.3s;
    text-decoration: underline;
}

.dropdown-menu a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 0.75rem 1rem ;
    border-bottom: 1px solid #2b3daf;
    border-radius: 8%;
    white-space: nowrap;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    text-decoration: underline;
}

.dropdown-title{
    padding: 0.75rem;
    font-weight: bold;
    text-decoration: underline;
    color: white;
    text-transform: uppercase;
}


.menu-btn {
    order: 3;
    position: relative;
    width: 30px;
    height: 24px;
    cursor: pointer;
    flex: 0 0 30px;
    margin-left: 2rem;
    margin-right: 1rem;
   
}

.menu-btn span {    /*Linjer i hamburgarmeny/kryss*/
    position: absolute;
    left:0;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
   
}


.menu-btn span:nth-child(1) {
    top: 2px;
}

.menu-btn span:nth-child(2) {
    top: 11px;
}

.menu-btn span:nth-child(3) {
    top: 20px;
}

#menu-toggle {
    display: none;
    
}

#menu-toggle:checked + .menu-btn span:nth-child(1) {/*Roterar hamburgarens linjer*/
    top: 11px;
  transform: rotate(45deg) ;  
}

#menu-toggle:checked + .menu-btn span:nth-child(2) {/*Döljer mittenlinje*/
    opacity: 0;
}

#menu-toggle:checked + .menu-btn span:nth-child(3) {/*Roterar hamburgarens linjer*/
    top: 11px;
    transform: rotate(-45deg) ;
}

#menu-toggle:checked ~ .nav-links .dropdown-menu{
    display: block;
}



/*--------------------------------------NAVBAR SLUT-------------------------------------*/

/*---------------------------------BANNER----------------------------*/



header { /*Basen till Banner*/
    color: white;
    border: 1px red;
    height: 80em;
   
    
    
    
}


.header-start{
    background-image: url('../images/IMG_07703.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

header p {
    color: white;
    font-size: 2rem;
    

    text-align: left;
   
    padding-bottom: 3rem;
   
}

header h1 {
    color: white;
    font-size: 4rem;
    
    text-align: left;
    
    padding-top: 3rem;
}





.header-text {
    position: absolute;
    z-index: 1;
    color: white;
    background-color: rgba(0, 0, 0, 0.5) ;
    font-size: 3rem;
    margin-top: 10rem;
    text-align: left;
    margin-left:7rem;
    padding: 5rem;
    width: 45%;
}


.banner-button {
    background-color: #6AB7E3;
    text-decoration: none;
    color: rgb(255, 255, 255);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 10px;
}


.banner-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    
}


.banner-button:hover {
    background-color: #142172;
}

.banner-divider{
    margin-right: 40rem;
    border: none;
    height: 5px;
    background: linear-gradient(to right, transparent, #ffffff, transparent); 
    width: 60%;
    


}


/*---------------------------------BANNER SLUT----------------------------*/

.short_about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    gap: 5rem;
    margin-top: 5rem;
    margin-right: 10rem;
    margin-left: 10rem;
    

}

.short_about_img {
    display: flex;
    width: 20%;
    
    border-radius: 10px;

}

.about_text {
    display: flex;
    flex-direction: column;
     white-space: normal;
    width: 40%;
}


.about_text p{
    margin-bottom: 1rem;
    line-height: 1.6;

}





/*---------------------------------SERVICES AREA----------------------------*/





.all_services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    gap: 1.5rem;
    margin-top: 5rem;
    margin-right: 10rem;
    margin-left: 10rem;
    

}


.service_kategorier {
    display: flex;
    align-items: stretch !important;
    justify-content: center;
    padding: 1.5rem;
    padding-bottom: 1rem;
    gap: 6rem;
    margin-top: 2rem;
    margin-right: 10rem;
    margin-left: 10rem;
    margin-bottom: 0;
    border-radius: 10px;

}

.services img {
    display: flex;
    height: 15rem;
    padding-bottom: 2rem;
   

}


.services {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: space-between !important;
    width: 30%;
    border: 2px solid rgb(241, 241, 241);
    padding: 2rem;
    border-radius: 8px;
}

.services p {
    text-align: left;
    padding: 0 1rem;
    padding-bottom: 2rem;
}


.learn-more-button{
    display: inline-block;
    text-decoration: none;
    text-align: center;
}



.service_kategorier .learn-more-button {
    display: inline-block;
    background-color: #6AB7E3;
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
}

.learn-more-button:hover{
     background-color: #142172;
}

.all_services h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0%;
}

.services h3 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 1rem;
}

.services_text {
    display: flex;
    flex-grow: 1 !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}


/*Övre kant på boxar*/
#measurebox{
    border-top: 5px solid #fd0202 !important;
}

#educationalbox{
    border-top: 5px solid #21642a;
}

#consultantbox{
    border-top: 5px solid #142172;
}






/*---------------------------------SERVICES AREA SLUT----------------------------*/

.certifikat-parent{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    gap: 1rem;
    padding-top: 2rem;
}

.certifikat-img{
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0;
    padding: 0;
}




/*---------------------------------REVIEW AREA----------------------------*/

.review-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem;
    gap: 1.5rem;
    margin: 5rem 10rem 0 10rem;
   

}


.review-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 6rem;
    width: 100%;
}

.reviews {
   flex: 1 1 30%;
   max-width: 25%;
   min-width: 0;
   border: 2px solid rgb(241, 241, 241);
   border-radius: 10px;
   padding: 1.5rem;
   background-color: white;
   box-sizing: border-box;
}

.reviews summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    cursor: pointer;
}

.reviews summary::-webkit-details-marker {
    display: none;
}

.reviews img{
    height: 5rem;
    display: block;
    margin: 0 auto 1.5rem auto
}


.review-area h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem ;
}







.preview{
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    
}



.full-review {
    margin-top: 1rem;
    text-align: left;
    overflow-wrap: break-word;
}

.more-text {
    display: inline;
}

.less-text {
    display: none;
}

.reviews[open] .more-text {
    display: none;
}

.reviews[open] .less-text {
    display: inline;
}

.toggle-text {
    background-color: #6AB7E3;
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    display: inline-block;
    margin-top: 1rem;
}

.toggle-open {
    display: none;
}

.reviews[open] .toggle-closed {
    display: none;
}

.reviews[open] .toggle-icon {
    transform: rotate(-135deg);
}

.toggle-icon {    /*Pil som pekar nedåt*/
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    transform: rotate(45deg);  /*pekar nedåt*/
    margin: 1.5rem auto 0 auto;
    transition: 0.3s ease;
    cursor: pointer;
}

.review-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}


.reviews[open] summary p{
    display: none;
}


/*---------------------------------REVIEW AREA SLUT----------------------------*/

/*-------------------------Kontakt-område-------------------------------*/

.contact-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    margin-top: 5rem;
    align-self: center;
    width: 100%;

}

.contact-text-and-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 3rem;
    gap: 3rem;
    margin-top: 2rem;
    margin-right: 2rem;
    margin-left: 2rem;
}

.half-image {
    display: flex;
    width: 75%;
    max-width: 50rem;
}

.icon-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: auto;
    gap: 2rem;
}

.contact-button{
    background-color: #6AB7E3;
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 10px;
    text-decoration: none;
}

.contact-button:hover {
        background-color: #142172;
    }

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
}

.contact-text h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

/*-------------------------Kontakt-område SLUT-------------------------------*/


/*-------------------------------------FOOTER-----------------------------*/

footer {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    background: linear-gradient(to right,#050a41, #142172, #142172, #050a41);
    
}


.all_footer{
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: flex-start;
    justify-content: center;
    column-gap: 4rem;
    row-gap: 2rem;
    gap: 4rem;
    width: 100%;
    max-width: 1600px;
    min-height: 120px;
    margin: 0 auto;
    padding: 0;
}

.footer-certifikat-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}

.footer-certifikat-container img{
    width: auto;
    max-height: 50px;
    display: block;
    padding: 0;
    margin: 0;
}

.certifikat-img-footer-svebra{
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}


.footer-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    margin: 0;
    padding: 0;
}







.footer-category {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}




.footer-category a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    text-align: left;
    padding: 0.25rem 0;
    
}

.footer-category a:hover {
    text-decoration: underline;
}

.footer-logo {
    height: 4rem;
    width: auto;
    flex-shrink: 0;
}

.footer-logo-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-services {
    font-weight: bold;
    text-decoration: underline;
    color: white;
    text-transform: uppercase;
    padding: 0.25rem 0;
}


.footer-category li {
    width: 100%;
}

.copyright{
    display: flex;
    color: white;
    justify-content: center;
    align-self: center;
}



.footer_logo_and_copy{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}


.footer-adresses{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
}

.footer_adress{
    display: flex;
    flex-direction: column;
    
}

.footer_adress p{
    color: white;
    line-height: 1.6;
    text-align: left;
    padding: 0;
    padding-bottom: 0;
    font-size: 1rem;
    margin: 0;
    width: auto;
}



.footer-certifikat-container,
.footer-content,
.footer-adresses{
    justify-self: center;
}




/*-------------------------------------FOOTER SLUT-----------------------------*/

/*-------------------------------------!!!!!INDEX SLUT!!!!!!-------------------------------------*/




/*-------------------------------------!!!!!Consulting START!!!!!!-------------------------------------*/

/*-------------------------------------Consulting Banner START-----------------------------*/

#consulting-banner{
    background-image: url('../images/berg1.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 600px;
    
}

.header-text{
    border-radius: 8px;
    
}


















/*---------------------------------Consulting Banner SLUT-----------------------------*/

/*---------------------------------About Consulting  START-----------------------------*/

#about_consulting{
    background: linear-gradient(to top, #82c7ff, #ffffff, #ffffff, #ffffff, #ffffff );
    margin: 0;
    width: 100%;
}

#about_consulting p{
    max-width: 800px;
    width: 100%;
}


.about-consulting{
    max-width: 800px;
    width: 100%;
}



/*---------------------------------About consulting SLUT-----------------------------*/

/*---------------------------------Consulting kategorier  START-----------------------------*/




.consulting-summary{
    list-style: none;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.consulting-toggle-icon{
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    transform: rotate(45deg);
    margin: 2rem auto 0 auto;
    transition: 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    
}

.consulting-details p, 
.consulting-details ul,
.consulting-details li{
    text-align: left;
}





.consulting-summary::-webkit-details-marker{
    display: none;
}

.consulting-extra-content{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}


.consulting-extra-content ul{
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.consulting-extra-content li{
    margin-bottom: 0.5rem;
}

.consulting-details[open] .consulting-extra-content{
    max-height: 3000px;
    opacity: 1;
}



.consulting-details[open] .consulting-toggle-icon{
    transform: rotate(-135deg);
    margin-top: 2rem;
}

.consulting-details:not([open]){
    min-height: 620px;
}

.consulting-details:not([open]), .consulting:not(details){
    min-height: 620px;
    height: 620px;
}

.consulting:not(details){
    height: auto;
}


.consultant-contact-button{
    background-color: #6AB7E3;
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 2rem;
}

.consultant-contact-button:hover {
        background-color: #142172;
    }


.all_consulting {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    gap: 1.5rem;
    margin: 5rem auto 0;
    box-sizing: border-box;
    width: 100%;
}

.all_consulting h2{
       text-align: center;
       padding-bottom: 2rem;
}




.consulting_kategorier {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 2rem;
    border-radius: 10px;
    justify-content: center;

}

.consulting img {
    display: block;
    height: 15rem;
    padding-bottom: 2rem;
    margin: 0 auto;

}


.consulting {
    display: flex;
    flex: 1 1 30%;
    max-width: 25%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border: 2px solid rgb(241, 241, 241);
    padding: 2rem;
    border-radius: 8px;
    box-sizing: border-box;
    scroll-margin-top: 100px;
}

.consulting p {
    text-align: left;
    padding: 0 1rem;
    padding-bottom: 2rem;
}




.all_consulting h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0%;
    padding-bottom:2rem ;
}

.consulting h3 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 1rem;
}

.consulting_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
}


.quick-links{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.quick-links a{
    color: #6AB7E3;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    
}


.quick-links a:hover {
        color: #142172;
        text-decoration: underline;
    }







/*-------------------------------------!!!!!Consulting SLUT!!!!!!-------------------------------------*/





/*-------------------------------------!!!!!EDUCATIONAL START!!!!!!-------------------------------------*/

/*---------------------------------Banner  START-----------------------------*/


#education-banner{
    background-image: url('../images/brand2.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}



/*---------------------------------Education Banner SLUT-----------------------------*/

/*---------------------------------About Education START-----------------------------*/


#about_education{
    background: linear-gradient(to top, #96b893, #ffffff, #ffffff, #ffffff, #ffffff );
    margin: 0;
    font-size: 1.5rem;
}

#about_education h2{
    max-width: 700px;
}






/*---------------------------------About Education SLUT-----------------------------*/

/*---------------------------------Utbildningar START-----------------------------*/




.about-education{
    max-width: 800px;
    width: 100%;
}


.consultant-contact-button{
    background-color: #6AB7E3;
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 2rem;
}

.education-contact-button:hover {
        background-color: #142172;
    }


.all_education {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    gap: 1.5rem;
    margin-top: 5rem;
    margin-right: 7rem;
    margin-left: 7rem;
    box-sizing: border-box;
    
}

.all_education h2{
       text-align: center;
       padding-bottom: 2rem;
}




.education_kategorier {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    grid-auto-rows: 1fr;
    height: 100%;
    width: 100%;
    padding: 1.5rem 0 1rem 0;
    gap: 2rem;
    border-radius: 10px;
    max-width: 1500px;
    width: 100%;
    margin: 2rem auto 0 auto;

}

.education img {
    display: flex;
    height: 15rem;
    padding-bottom: 2rem;
    

}


.education {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    border: 2px solid rgb(241, 241, 241);
    padding: 2rem;
    border-radius: 8px;
    box-sizing: border-box;
    scroll-margin-top: 100px;
}

.education p {
    text-align: left;
    padding: 0 1rem;
   
}




.all_education h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0%;
}

.education h3 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem;
}

.education_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}


.education-category-text{
    padding-bottom: 2rem;
}


.quick-links{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
}






/*-------------------------------------!!!!!EDUCATION SLUT!!!!!!-------------------------------------*/




/*-------------------------------------!!!!MEASUREMENT START!!!!!!-------------------------------------*/


#measurement-banner{
    background-image: url('../images/mathel1.png') !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.measurement_banner_text p{
    gap: 1rem;
    padding: 1rem;
    margin: 0;
}

.measurement_banner_text{
    margin-bottom: 2rem;
}


/*---------------------------------Banner SLUT-----------------------------*/
/*---------------------------------About START-----------------------------*/

#about_measurement{
    background: linear-gradient(to top, #9693b8, #ffffff, #ffffff, #ffffff, #ffffff );
    margin: 0;
}

/*---------------------------------About SLUT-----------------------------*/
/*---------------------------------Content START-----------------------------*/



.measurement_content{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

.measurement_box1, .measurement_box2{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 2rem;
    box-sizing: border-box;
    background-color: white;
    padding-bottom: 10rem;
    min-height: 280px;

}



.measurement_box_text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    max-width: 700px;
}

.measurement_box_text h3{
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    line-height: 1.3;
}

.measurement_box_text p{
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}




.measurement_box1 img, .measurement_box2 img{
   width: 280px;
   height: 220px;
   flex-shrink: 0;
}

.measurement_content .consultant-contact-button{
    align-self: center;
    margin-top: 1rem;
    display: inline-block;
    text-align: center;
}





















/*-------------------------------------!!!!!MEASUREMENT SLUT!!!!!!-------------------------------------*/





/*-------------------------------------!!!!!ABOUT START!!!!!!-------------------------------------*/






.big_about_text_img{
    display: flex;
    flex-direction: row;
    
    justify-content: center;
    padding-top: 4rem;
}

.big_about_text{
    padding-top: 7rem;
    padding-left: 3rem;
    padding-right: 10rem;
    max-width: 800px;
    width: 100%;
}

.big_about_text h1{
    text-decoration: underline;
}

.big_about_text p{
    line-height: 1.6;
}

.big_about_img{
    width: 100%;
    max-width: 800px;
    padding-top: 5rem;
}


.big_about_buttons{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


.big_about_button{
    display: inline-block;
    background-color: #6AB7E3;
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 3rem;
    width: auto;
    
    
    
}

.big_about_button:hover{
    background-color: #142172;
}


/*-------------------------------------!!!!!ABOUT US SLUT!!!!!!-------------------------------------*/





/*-------------------------------------!!!!!CONTACT START!!!!!!-------------------------------------*/


/*---------------------------------Header START-----------------------------*/


#contact-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: none;
    min-height: auto;
    padding: 5rem 5rem 3rem 2rem;
    margin-top: 2rem;
    max-height: fit-content;
    background-image: none !important;
}

.contact-header-inner{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


.contact-header-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 3rem;
    width: 100%;
}



#contact-header h1{
    color: #000000;
    font-size: 4rem;
    padding: 0;
    margin: 0 0 1rem 0;
    text-shadow: none;
}


#contact-header p{
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    text-shadow: none;
}




.contact-info-and-img{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    width: 80%;
}


.contact-info-all{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}





#contact-header h2{
    color: #000000;
    font-size: 1.6rem;
    padding: 0;
    margin: 0 0 1rem 0;
    text-shadow: none;
}


.contact-category-mini{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}


.contact-category-mini p{
    font-size: 1rem;
    margin: 0;
    padding: 0;
    text-shadow: none;
}



.contact-info-category{
    padding-right: 2rem;
    min-width: 220px;
}


#contact_contact_icon{
    align-self: center;
    width: 320px;
    height: auto;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    padding-left: 5rem;
}





/*---------------------------------Header SLUT-----------------------------*/



/*---------------------------------Form START-----------------------------*/

    .contact-layout{
        display: flex;
        justify-content: flex-start;
        padding: 3rem 5rem 4rem 2rem;
        box-sizing: border-box;
    }

    .contact-form-section{
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0;
        text-align: left;
        box-sizing: border-box;
        
    }

    .contact-form-section h2{
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .contact-layout .wpcf7{
            width: 100%;
            max-width: 700px;
            margin: 0;
    }



    .contact-layout .form-group{
        display: flex;
        flex-direction: column;
    }

    .contact-layout .form-group label{
        font-weight: bold;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    

    .contact-layout .form-group input,
    .contact-layout .form-group select,
    .contact-layout .form-group textarea{
        width: 100%;
        box-sizing: border-box;
        padding: 0.9rem 1rem;
        border: 1px solid #d0d9d9;
        border-radius: 8px;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }



    .contact-layout .form-group textarea{
        resize: vertical;
        min-height: 140px;
    }


    .contact-layout .contact-form{
            width: 100%;

    }

    .contact-layout .form-group{
        display: flex;
        flex-direction: column;
        margin-bottom: 1.25rem;
    }

    .contact-layout .form-group label{
        margin-bottom: 0.5rem;
    }

    

    .contact-layout .wpcf7-submit {
        display: inline-block;
        width: auto;
        max-width: 220px;
        background-color: #6AB7E3;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        padding: 0.5rem;
        font: inherit;
        font-size: 1rem;
    }

    .wpcf7-submit:hover{
        background-color: #142172;
    }


    

    #contact-header, 
    .contact-layout{
        padding-left: 2rem;
        padding-right: 5rem;
    }


    .contact-layout .wpcf7 p{
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .contact-layout .wpcf7 label{
        font-weight: bold;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-layout .wpcf7 .wpcf7-form-control{
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border: 1px solid #d0d9d9;
        border-radius: 8px;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }


    .contact-layout .wpcf7 textarea{
        resize: vertical;
        min-height: 140px;
    }

   /*-- .form-group{
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-form label{
        font-weight: bold;
        font-size: 1rem;
    }


    .contact-form input, 
    .contact-form select, 
    .contact-form textarea{
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border: 1px solid #d0d9d9;
        border-radius: 8px;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }

    .contact-form textarea{
        resize: vertical;
        min-height: 140px;
    }

    .contact-submit-button{
        display: inline-block;
        width: auto;
        align-self: center;
        max-width: 220px;
        background-color: #6AB7E3;
        color: white;
        border: none;
        border-radius: 10px;
        padding: 1rem 1.2rem;
        font-size: 1rem;
        cursor: pointer;
    }

    .contact-submit-button:hover{
        background-color: #142172;
    }

    --*/

/*-------------------------------------!!!!CONTACT SLUT!!!!!!-------------------------------------*/





/*-------------------------------------!!!!!WORK START!!!!!!-------------------------------------*/
.work-text-and-img{
    display: flex;
    align-self: center;
    max-width: none;
    margin: 0;
}




.work_with_us_text{
   margin-top: 3rem; 

}

.work_with_us_text h1{
    color: #000000;
    
}

.work_with_us_text p{
    font-size: 1.1rem;
    line-height: 1.6;
    width: 100%;
    max-width: 700px;
}


.work-img{
    width: 100%;
    max-width: 30rem;
    padding-top: 5rem ;
    padding-bottom: 3rem;
    margin-left: 2rem;
}


#work-section-divider{
    background: linear-gradient(to right, #142172, #142172, transparent); 
    width: 60%;
    height: 3px;
    margin: 1rem 0;
    padding-right: 0%;
    margin-bottom: 2rem;
}

.work-slogan {
    font-weight: bold;
}


/*---------------------------------Work text SLUT-----------------------------*/



/*---------------------------------Form START-----------------------------*/

.work-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.job-layout{
    display: flex;
    width: 100%;
    max-width: 700px;
    justify-content: flex-start;
    padding: 3rem 0rem 4rem 0rem;
    box-sizing: border-box;
}

.work-text-and-img,
.job-layout{
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
}



.job-form-section{
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    box-sizing: border-box;
    
}

.job-layout .wpcf7{
    width: 100%;
    max-width: 700px;
    margin: 0;
}

.job-form-section h2{
    width: 100%;
    font-size: 2rem;
    margin-bottom: 1rem;
    max-width: 700px;
}

.job-form-section p{
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
}

.job-layout .wpcf7 .wpcf7-form-control{
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #d0d9d9;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}



.job-form{
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-form label{
    font-weight: bold;
    font-size: 1rem;
}

.job-form input, .job-form select,
.job-form textarea{
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #d0d9d9;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.job-form textarea{
    resize: vertical;
    min-height: 140px;
}

.job-layout .wpcf7 textarea{
    resize: vertical;
    min-height: 140px;
}

.job-form input[type="file"]{
    padding: 0.75rem;
    background-color: white;
}

.job-submit-button{
    display: inline-block;
    width: auto;
    align-self: flex-start;
    max-width: 220px;
    background-color: #6AB7E3;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    cursor: pointer;
}

.job-submit-button:hover{
    background-color: #142172;
}

/*-------------------------------------!!!!!Jobba hos oss SLUT!!!!!!-------------------------------------*/

/*-------------------------------------!!!!NYHETER START!!!!!!-------------------------------------*/

.news-page{
    background-color: #f7f7f7;
    padding: 0;
}

.news-container{
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
}

.news-container h1{
    margin-bottom: 40px;
    margin-top: 3rem;
    text-decoration: underline;
    font-size: 45px;
    padding: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.news-grid{
    display: flex;
    flex-direction: column;
    gap: 40px;
}




.news-article{
    background-color: white;
    padding: 2rem;
}

.news-card__content{
    max-width: 65ch;
    margin: 0 auto;
    padding: 2rem 0;
}

.news-card__image{
    max-width: 65ch;
    margin: 0 auto;
}

.news-card__image img{
    width: 100%;
    height: auto;
    display: block;
}


.news-article:not(:last-child)::after{
    content: "";
    display: block;
    height: 5px;
    width: 40%;
    margin: 5rem auto;
    background: linear-gradient(to right, transparent, #142172, transparent);
}


/*----------------------Nyheter kategorier START--------------------------*/


.news-categories{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}


.news-categories a{
    color: #142172;
    text-decoration: none;
    font-weight: 500;
}


.news-categories a:hover{
    text-decoration: underline;

}

.news-categories a.active{
    text-decoration: underline;
    font-weight: bold;
}

/*-------------------------------------!!!!NYHETER SLUT!!!!!-------------------------------------*/













 


/*-------------------------------------MEDIA QUERIES--------------------------------------------------*/


/*större surfplattor (t.ex. ipad pro)*/
@media (max-width: 1024px){

/*------------------------!!!!!!!!!!INDEX START!!!!!!!!!!------------------------------------*/
/*-------------------------------------nav START------------------------------*/

    .menu-btn{
        display: flex;
        flex: 0 0 30px;
        margin-left: auto;
        margin-right: 1rem;
        position: relative;
        z-index: 20;
    }



    nav{
        padding: 1rem 1rem;
    }

    nav .nav-logo{
        height: 2.7rem;
    }


    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background: linear-gradient(to right, #0a115a, #050a41);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

     .nav-links > li {
        width: 80%;
        max-width: 420px;
        text-align: left;
        padding:  0;
    }


    .nav-links > li > a, 
    .dropdown-menu a, 
    .dropdown-title {
            display: block;
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            line-height: 1.2;
            text-align: left;
            box-sizing: border-box;
            
    }


    .nav-links > li > a, 
    .dropdown-menu a {
        border-bottom: 1px solid #023dfd;
    }

    .has-dropdown {
       width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: block;
        width: 100%;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        background: transparent;

    }



    .dropdown-menu li{
        width: 100%;
    }

    .dropdown-title{
        padding: 1rem;
        text-align: left;
    }

     /*-------------------------------------nav SLUT------------------------------*/
  

    /*-------------------------------------NAV SLUT-----------------------------*/
    /*-------------------------------------Banner start-----------------------------*/
     header{
        height: 60rem;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
     }

     .header-text{
        width: 80%;
        max-width: 700px;
        margin-top: 6rem;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 3rem;
        box-sizing: border-box;
        font-size: 1rem;
     }

     header h1{
        font-size: 2.5rem;
        padding-left: 0;
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 1rem;
     }

     header p{
        font-size: 1.2rem;
        line-height: 1.6;
        padding-left: 0;
        padding-bottom: 1.5rem;
     }

     .banner-divider{
        width: 80%;
        margin: 1.5rem 0;
        padding-right: 0;
     }

     .banner_buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
        padding-left: 0;
     }


     .banner-button{
        display: block;
        width: 100%;
        max-width: 240px;
        text-align: center;
        font-size: 1rem;
        padding: 0.85rem 1.2rem;
     }


     

     /*-------------------------------------Banner SLUT------------------------------*/ 
   /*-------------------------------------Short about START------------------------------*/

    .short_about{
        flex-direction: column;
        align-items: center;
        padding: 3rem 2rem;
        gap: 2rem;
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 900px;
        box-sizing: border-box;
    }


    .about_text{
        width: 100%;
        max-width: 700px;
    }


    .about_text h2{
        font-size: 2rem;
    }

    .about_text p{
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .short_about_img{
        width: 100%;
        max-width: 420px;
    }


    /*------------------------------------Short about SLUT------------------------------*/ 
   /*-------------------------------------Tjänster START------------------------------*/


    .all_services{
        width: 100%;
        padding: 3rem 2rem;
        margin: 3rem auto 0;
        box-sizing: border-box;
        gap: 1rem;
    }


    .all_services h2{
        font-size: 2rem;
    }

    .service_kategorier{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 1rem 0;
        margin: 1.5rem auto 0;
        width: 100%;
        max-width: 700px;
    }


    .services{
        width: 100%;
        max-width: 700px;
        padding: 1.5rem;
        box-sizing: border-box;
    }


    .services img{
        height: 12rem;
        padding-bottom: 1.5rem;
    }

    .services h3{
        font-size: 1.3rem;
        padding: 0 0 1rem 0;
    }

    .services p{
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0 1.5rem 0;
    }

    /*-------------------------------------Tjänster SLUT------------------------------*/

    .certifikat-parent{
        display: flex;
        justify-content: center;
        max-width: 100%;
        
    }

    .certifikat-img{
        display: block;
        width: 100%;
        max-height: 200px;
        margin: 3rem auto;
    }

    /*-------------------------------------Reviews START------------------------------*/


    .review-area{
        width: 100%;
        padding: 3rem 2rem;
        margin: 3rem auto 0;
        box-sizing: border-box;
        gap: 1rem;
    }
    
    .review-heading, .review-area h3{
        font-size: 1.8rem;
    }

    .review-wrapper{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
        width: 100%;
    }

    .reviews{
        width: 100%;
        max-width: 700px;
        padding: 1.5rem;
        
    }

    .preview, .full-review{
        font-size: 1rem;
        line-height: 1.6;
    }

    /*-------------------------------------Reviews SLUT------------------------------*/
     /*-------------------------------------Kontaktruta START------------------------------*/

    .contact-container{
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 3rem;
        padding: 0 2rem;
        box-sizing: border-box;
    }


    .half-image{
        display: none;
    }


    .contact-text-and-icon{
        width: 100%;
        max-width: 700px;
        padding: 2rem;
        gap: 2rem;
        margin: 0 auto;
        box-sizing: border-box;
    }


    .icon-contact{
        width: 45%;
        max-width: 180px;
    }

    .contact-text h2{
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }


    .contact-text p{
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }


    .contact-button{
        width: 100%;
        max-width: 240px;
        font-style: 1.1rem;
        padding: 0.9rem 1.2rem;
        text-align: center;
    }

    /*-------------------------------------Kontaktruta SLUT------------------------------*/
    /*-------------------------------------Footer START------------------------------*/

    footer{
        padding: 1.5rem 2rem;
    }

    .all_footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4rem;
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-certifikat-container{
        order: 3;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .footer-certifikat-container img{
        height: 60px;
        width: auto;
        display: block;
    }



    .footer-content{
        order: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 6rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .footer-category{
        align-items: center;
        text-align: center;
    }

    .footer-category a,
    .footer-services{
        text-align: start;
        align-items: start;
    }

    .footer-adresses{
        order: 2;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 4rem;
        width: 100%;
    }

    .footer_adress{
        align-items: flex-start;
        text-align: left;
    }

    .footer_adress p{
        text-align: start;
        padding: 0;
        margin: 0 0 0.75rem 0;
    }

    .footer_logo_and_copy{
        order: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        width: 100%;
    }


    .footer-logo{
        height: 3.5rem;
    }


    .copyright{
        text-align: center;
        justify-content: center;
    }





     /*-------------------------------------!!!!!INDEX SLUT!!!!!!-------------------------------*/


     /*-------------------------------------!!!!!CONSULTING START!!!!!!---------------------------*/


     /*-------------------------------------Banner START------------------------------*/
    

     #consulting-banner{
        height: 52rem;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
     }

     #consulting-banner .header-text{
        width: 80%;
        max-width: 700px;
        margin-top: 6rem;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 3rem;
        box-sizing: border-box;

     }



     #consulting-banner h1{
        font-size: 2.5rem;
        line-height: 1.25;
        padding-left: 0;
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 1rem;
     }


     #consulting-banner p{
        font-size: 1.15rem;
        line-height: 1.6;
        padding-left: 0;
        padding-bottom: 1.5rem;
     }

     #consulting-banner .banner-divider{
        width: 80%;
        margin: 1.5rem 0;
        padding-right: 0;
     }


     #consulting-banner .banner-button{
        display: block;
        width: 100%;
        max-width: 240px;
        text-align: center;
        font-size: 1rem;
        padding: 0.85rem 1.2rem;
     }



    /*-------------------------------------Banner SLUT------------------------------*/

     /*-------------------------------------About consulting START------------------------------*/

     #about_consulting{
        padding: 3rem 2rem;
        box-sizing: border-box;
     }

     .short_about{
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        gap: 2rem;
        box-sizing: border-box;
     }

     #about_consulting_text{
        width: 100%;
        max-width: 700px;
        font-size: 1rem;
        line-height: 1.6;
     }


     #about_consulting_text h2{
        font-size: 2rem;
        margin-bottom: 1rem;
     }


     #short_about_consulting{
        width: 100%;
        max-width: 420px;
     }



 /*-------------------------------------About consulting SLUT------------------------------*/

 /*-------------------------------------Quick links START------------------------------*/


.quick-links{
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.quick-links a{
    font-size: 1rem;
    padding-bottom: 1.5rem;
}

/*-------------------------------------Quick links SLUT------------------------------*/

/*-------------------------------------Konsulttjänster START------------------------------*/


.all_consulting{
    width: 100%;
    padding: 3rem 2rem;
    margin: 3rem auto 0;
    box-sizing: border-box;
    gap: 1rem;
}

.all_consulting h2{
    font-size: 2rem;
    padding-bottom: 1.5rem;
}

.about-consulting{
    width: 100%;
    max-width: 700px;
}

.consulting_kategorier{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    width: 100%;
    max-width: 872px;
    margin: 1.5rem auto 0;
    padding: 1rem 0;
    gap: 2rem;
}

.consulting{
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    padding: 1.5rem;
    margin: 0;
    grid-column: auto !important;
}


.consulting img{
    height: 12rem;
    padding-bottom: 1.5rem;
}

.consulting h3{
    font-size: 1.3rem;
    line-height: 1.4rem;
    padding: 0.0 1rem 0;
    margin-bottom: 0;
    max-width: 100%;
}

.consultant-contact-button{
    width: 100%;
    max-width: 260px;
    font-size: 1.1rem;
    text-align: center;
}



    /*-------------------------------------!!!!!CONSULTING SLUT!!!!!!-------------------------------*/


    /*-------------------------------------!!!!!EDUCATION START!!!!!!---------------------------*/

    #education-banner{
        height: 52rem;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #education-banner .header-text{
        width: 80%;
        max-width: 700px;
        margin-top: 6rem;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 3rem;
        box-sizing: border-box;
    }


    #education-banner h1{
        font-size: 2.4rem;
        line-height: 1.3;
        padding-left: 0;
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 1rem;
    }


    #education-banner p{
        font-size: 1.1rem;
        line-height: 1.6;
        padding-left: 0;
        padding-bottom: 1.5rem;
    }


    /*-------------------------------------Banner SLUT------------------------------*/

    /*-------------------------------------Kort om utbildning START------------------------------*/
    
    #about_education{
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 3rem 2rem;
        gap: 2rem;
        box-sizing: border-box;
    }

    #about_education_text{
        width: 100%;
        max-width: 700px;
    }


    #about_education_text h2{
        font-size: 2rem;
        margin-bottom: 1rem;
    }


    #short_about_education{
        width: 100%;
        max-width: 260px;
    }



    /*-------------------------------------Kort om SLUT------------------------------*/

    /*-------------------------------------Utbildningar START------------------------------*/

    .all_education{
        width: 100%;
        padding: 3rem 2rem;
        margin: 3rem auto 0;
        box-sizing: border-box;
        gap: 1rem;
    }



    .all_education h2{
        font-size: 2rem;
        padding-bottom: 1.5rem;
    }


    .about-consulting{
        width: 100%;
        max-width: 700px;

    }

    .consultant-contact-button{
        width: 100%;
        max-width: 260px;
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
        text-align: center;
    }

    .education_kategorier{
        grid-template-columns: repeat(2, 1fr);
        grid-column: auto !important;
        justify-content: center;
        width: 100%;
        max-width: 900px;
        margin: 1.5rem auto 0;
        padding: 1rem 0;
        gap: 2rem;
    }


    .education{
        width: 100%;
        max-width: 420px;
        box-sizing: border-box;
        padding: 1.5rem;
        margin: 0;
    }

    .education img{
        height: 12rem;
        padding-bottom: 1.5rem;
    }

    .education h3{
        font-size: 1.3rem;
        line-height: 1.4;
        padding: 0 0 1rem 0;
        margin-bottom: 0;
    }

    .education p{
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
    }

    .education-category-text{
        padding-bottom: 1.5rem;
    }



    /*-------------------------------------Utbildningar SLUT------------------------------*/

    /*-------------------------------------Kontaktruta START------------------------------*/

    .contact-container{
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 3rem;
        padding: 0 2rem;
        box-sizing: border-box;
    }

    .half-image{
        display: none;
    }


    .contact-text-and-icon{
        width: 100%;
        max-width: 700px;
        padding: 2rem;
        gap: 2rem;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .icon-contact{
        width: 45%;
        max-width: 180px;
    }

    .contact-text h2{
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .contact-text p{
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }


    .contact-button{
        width: 100%;
        max-width: 240px;
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
        text-align: center;
    }

    /*------------------------!!!!!!!!!!EDUCATION SLUT!!!!!!!!!!------------------------------------*/
    /*------------------------!!!!!!!!!!MEASUREMENTS START!!!!!!!!!!------------------------------------*/
    /*-------------------------------------Banner START------------------------------*/
    #measurement-banner{
        height: 52rem;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #measurement-banner .header-text{
        width: 80%;
        max-width: 700px;
        margin-top: 6rem;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 3rem;
        box-sizing: border-box;
    }

    #measurement-banner h1{
        font-size: 2.3rem;
        line-height: 1.3;
        padding-left: 0;
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 1rem;
    }

    #measurement-banner p{
        font-size: 1.05rem;
        line-height: 1.5;
        padding-left: 0;
        padding-bottom: 0.5rem;
    }

    .measurement_banner_text{
        margin-bottom: 1.5rem;
    }

    .measurement_banner_text p{
        padding: 0.4rem 0;
        margin: 0;
        
    }

     /*-------------------------------------Banner SLUT------------------------------*/

     /*-------------------------------------About measurement START------------------------------*/



    #about_measurement{
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 3rem 2rem;
        gap: 2rem;
        box-sizing: border-box;
    }

    #about_measurement_text{
        width: 100%;
        max-width: 700px;
    }

    #about_measurement_text h2{
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    #about_measurement_text p{
        font-size: 1.05rem;
        line-height: 1.6;
    }

    #short_about_measurement{
        width: 100%;
        max-width: 420px;
    }

     /*-------------------------------------About measurement SLUT------------------------------*/
     /*-------------------------------------Measurement content START------------------------------*/

    .measurement_content{
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        padding: 3rem 2rem;
        gap: 1rem;
    }

    .measurement_box1, .measurement_box2{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
        min-height: auto;
        box-sizing: border-box;
    }


    .measurement_box_text{
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .measurement_box_text h3{
        font-size: 1.4rem;
        line-height: 1.35;
        margin-top: 0;
        margin-bottom: 1rem;
        text-align: left;
    }

    .measurement_box_text p{
        font-size: 1rem;
       line-height: 1.6;
       margin: 0;
    }

    .measurement_box1 img, .measurement_box2 img{
        order: 1;
        width: 140px;
        height: 140px;
        max-width: 100%;
        flex-shrink: 0;
    }


    /*------------------------!!!!!!!!!!MEASUREMENTS SLUT!!!!!!!!!!------------------------------------*/
    /*------------------------!!!!!!!!!!OM OSS START!!!!!!!!!!------------------------------------*/

    .big_about{
        width: 100%;
        padding: 0 2rem;
        box-sizing: border-box;
    }

    .big_about_text_img{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem;
        gap: 2rem;
    }

    .big_about_text{
        width: 100%;
        max-width: 700px;
        padding-top: 2rem;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }



    .big_about_text h1{
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding-top: 0;
    }

    .big_about_text p{
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .big_about_img{
        width: 100%;
        max-width: 700px;
        padding-top: 0;
        border-radius: 8px;
    }

    

    .big_about_buttons{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .big_about_button{
            display: inline-block;
            width: auto;
            max-width: 280px;
            font-size: 1.2rem;
            padding: 0.9rem 1.2rem;
            text-align: center;
            margin-top: 0;
        }


    /*------------------------!!!!!!!!!!OM OSS SLUT!!!!!!!!!!------------------------------------*/
    /*------------------------!!!!!!!!!!KONTAKT START!!!!!!!!!!------------------------------------*/
    
    .contact-submit-button{
        width: 100%;
        max-width: 300px;
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
        align-self: center;
    }

    /*------------------------!!!!!!!!!!KONTAKT SLUT!!!!!!!!!!------------------------------------*/

     /*------------------------!!!!!!!!!!WORK START!!!!!!!!!!------------------------------------*/

     /*-------------------------------------Work text START------------------------------*/

    .work-text-and-img{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        box-sizing: border-box;
    }

    .work_with_us_text{
        width: 100%;
        max-width: 700px;
        margin: 0;
    }

    .work_with_us_text h1{
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }


    .work_with_us_text p{
        font-size: 1rem;
        line-height: 1.6;
    }


    .work-img{
        display: none;
    }


     /*-------------------------------------Work text SLUT------------------------------*/
     
     /*-------------------------------------Work form START------------------------------*/

    .job-form-section p{
        font-size: 1.2rem;
        line-height: 1.6;
    }


    .job-submit-button{
        width: 100%;
        max-width: 300px;
        align-self: center;
        font-size: 1.1rem;
        padding: 1rem 1.2rem;

    }


/*-------------------------------------JOBB SLUT------------------------------*/
     /*-------------------------------------NYHETER START------------------------------*/

    .news-container{
        max-width: 900px;
        padding: 1.5rem;
    }

    .news-container h1{
        font-size: 38px;
        margin-top: 2rem;
        margin-bottom: 32px;
    }

    .news-card__content,
    .news-card__image{
        max-width: 60ch;
    }

    .news-article{
        padding: 1.5rem;
    }

    .news-article:not(:last-child)::after{
        width: 50%;
        margin: 4rem auto;
    }





}






/*små surfplattor, stora mobiler*/
@media (max-width: 768px) {


/*------------------------!!!!!!!!!!INDEX START!!!!!!!!!!------------------------------------*/
/*-------------------------------------nav START------------------------------*/
   
    .menu-btn {
        display: flex;
        margin-right: 0;
        margin-left: auto;
    ;
    }

    nav {
        padding: 1rem 3rem;

    }

    .nav-links {
        display: none;
        position: absolute;
        align-items: center;
        left: 0;
        top: 100%;
        width: 100%;
        background: linear-gradient(to right, #0a115a, #050a41);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 0;
        padding-bottom: 3rem;
        padding-top: 2rem;
        gap: 0;

    }

    nav .nav-logo{
        height: 2.5rem;
        
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

     .nav-links > li {
        width: 80%;
        max-width: 320px;
        text-align: left;
        padding:  0;
    }



    




    .dropdown-menu {
        position: static;
        display: block;
        width: 100%;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        background: transparent;


    }

    .dropdown-menu a{
        display: block;
        width: 100%;
        padding: 1rem 1rem;
        text-align: left;
        border-bottom: 1px solid #023dfd;
        border-radius: 0%;
        box-sizing: border-box;
    }


    .dropdown-menu li {
        width: 100%;
        
    }

     
    .dropdown-title{
        display: block;
        width: 100%;
        padding: 3rem 1rem;
        padding-top: 2rem;
        text-align: left;
        line-height: 1.2;
        box-sizing: border-box;
        
    }


    


    .has-dropdown {
       width: 100%;
    }

    .nav-links > li > a, .dropdown-menu a, .dropdown-title {
            display: block;
            width: 100%;
            padding: 1.2rem 1rem;
            font-size: 1.2rem;
            line-height: 1.2;
            text-align: left;
            box-sizing: border-box;
            
    }


    .nav-links > li > a, .dropdown-menu a {
        border-bottom: 1px solid #023dfd;
    }
    
    .dropdown-menu li:last-child a {
        border-bottom: 1px solid #023dfd;
    }

    /*-------------------------------------NAV SLUT-----------------------------*/
    /*-------------------------------------Banner start-----------------------------*/

    header { 
        height: 52rem;
        background-image: url('../images/IMG_07703.jpg') !important;
        background-size: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    .header-text{
        margin-top: 4rem;
        margin-left: 0;
        width: 85%;
        padding: 2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1rem;
        box-sizing: border-box;
    }

    header h1 {
        font-size: 2.2rem;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 1rem;
        margin-top: 0.5rem;
        text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    }

    header p{
        font-size: 1.1rem;
        padding-left: 0;
        padding-bottom: 1.5rem;
        line-height: 1.6;
        text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }


    .banner-divider{
        width: 90%;
        height: 3px;
        margin: 1rem 0;
        padding-right: 0%;
    }


    .banner-button{
        width: 100%;
        max-width: 220px;
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
        text-align: center;
        margin-left: 0;

    }

    .banner_buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-left: 0;
    }


     /*-------------------------------------Banner SLUT-----------------------------*/

     /*-------------------------------------Kort om företaget START-------------------------------------*/

    .short_about{
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        margin-top: 0.5rem;
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .about_text{
        width: 100%;
    }

    .about_text h2{
        font-size: 1.8rem;
    }

    .about_text p{
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .short_about_img{
        width: 100%;
        max-width: 400px;
    }



    /*-------------------------------------Kort om företaget SLUT-------------------------------------*/

    /*-------------------------------------Tjänster START-------------------------------------*/

    .all_services{
        padding: 2rem;
        gap: 1rem;
        margin: 3rem auto 0 auto;
        width: 100%;
        max-width: 420px;
        box-sizing: border-box;
        align-items: center;
    }


    .service_kategorier{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 1rem 0;
        margin: 1.5rem auto 0 auto;
        width: 100%;
    }

    .services{
        width: 100%;
        max-width: 420px;
        padding: 1.5rem;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    

    .services img{
        height: 12rem;
        padding-bottom: 1.5rem;

    }

    .services h3{
        font-size: 1.3rem;
        padding: 0 0 1rem 0;

    }

    .services p{
        padding: 0;
        padding-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }


/*-------------------------------------Tjänster SLUT-------------------------------------*/
/*-------------------------------------Reviews START-------------------------------------*/

    .review-heading{
        font-size: 1.8rem;
    }



    .review-wrapper{
        flex-direction: column;
        align-items: center;
        justify-content: center ;
        gap: 6rem;
        width: 100%;
    }

    .reviews{
        width: 100%;
        max-width: 420px;
        padding: 1.5rem;
    }

    .review-area {
        padding: 2rem;
        gap: 1rem;
        margin: 3rem 1.5rem 0 1.5rem;
    }

    .review-area h3{
        font-size: 1.5rem;
    }

    .preview, .full-review{
        font-size: 1rem;
        line-height: 1.6rem;
    }











/*-------------------------------------Reviews SLUT-------------------------------------*/
/*-------------------------------------Kontaktruta START-------------------------------------*/

.half-image { 
    display: none;
}

.contact-text-and-icon{
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    gap: 2rem;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;

}

.icon-contact{
    width: 50%;
    max-width: 200px;
}

.contact-text h2{
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-text p{
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.contact-button{
    width: 100%;
    max-width: 240px;
    font-size: 1.1rem;
    padding: 0.9rem 1.2rem;
    text-decoration: none;
    text-align: center;
    
}







/*-------------------------------------Kontaktruta SLUT-------------------------------------*/

/*-------------------------------------FOOTER START-------------------------------------*/

    
    footer{
        padding: 1.5rem 1rem;
    }


    .all_footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-content{
        order: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        width: 100%;
        padding: 0;
        margin: 0;
        
    }

    .footer-category{
        align-items: center;
        text-align: center;

    }

    .footer-category a{
        text-align: left;
    }


    

    .footer-category li{
        width: 100%;
    }

    .footer-category a,
    .footer-services{
        text-align: start;
    }

    .footer-adresses{
        order: 2;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .footer_adress{
        align-items: flex-start;
        text-align: start;
    }

    .footer_adress p{
        text-align: left;
        padding: 0;
        margin: 0 0 0.5rem 0;
    }

    .footer_logo_and_copy{
        order: 3;
        align-items: center;
        text-align: center;
        margin: 0;
        width: 100%;
    }

    .footer-logo{
        height: 3rem;
    }

    .copyright{
        text-align: center;
        justify-content: center;
        font-size: 0.9rem;
        line-height: 1.5;
    }








    /*-------------------------------------FOOTER SLUT-------------------------------------*/

     /*-------------------------------------!!!!!INDEX SLUT!!!!!!-------------------------------------*/


     /*-------------------------------------!!!!!CONSULTING START!!!!!!-------------------------------------*/

    #consulting-banner{
        height: 42rem;
        background-image: url('../images/berg1.jpg') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }



    #consulting-banner .header-text{
        width: 85%;
        max-width: 420px;
        margin-top: 1.5rem;
        margin-left: 0;
        padding: 2rem;
        left: 50%;
        transform: translateX(-50%);
        box-sizing: border-box;
        background: linear-gradient(
            to bottom, 
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.5)
        );
    }

    #consulting-banner h1{
        font-size: 2.2rem;
        padding-left: 0;
        padding-top: 0;
        margin-bottom: 1rem;
        text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    }
    
    #consulting-banner p{
        font-size: 1.1rem;
        line-height: 1.6;
        padding-left: 0;
        padding-bottom: 1.5rem;
        text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }


    #consulting-banner .banner-buttons{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-left: 0;
    }



    #consulting-banner .banner-button{
        width: 100%;
        max-width: 220px;
        font-size: 1rem;

    }


      /*-------------------------------------About consulting START--------------------------------*/

    .about-consulting{
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;

    }

    #about_consulting_text{
        font-size: 1rem;
        line-height: 1.6;
        max-width: 350px;
        width: 100%;
        
    }

    #short_about_consulting {
        width: 15rem;
    }




     /*-------------------------------------About consulting SLUT--------------------------------*/


    .quick-links{
        gap: 1rem;
        padding-bottom: 1rem;
        align-items: center;
        margin-top: 1rem;
    }



     /*------------------------------Consulting kategorier start----------------------------*/ 

    .consulting_kategorier{
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 2rem;
    }


    .all_consulting{
        padding: 2rem;
        margin-top: 3rem;
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }


    .consulting{
        width: 100%;
        max-width: 420px;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 1.5rem;
    }


    .consulting-details, .consulting-summary{
        width: 100%;
        box-sizing: border-box;
    }

    .consulting img{
        height: 12rem;
        padding-bottom: 1.5rem;
    }

    .consulting h3{
        font-size: 1.3rem;
        padding: 0  0 0 0;
        margin: 0;
        max-width: 20rem;
    }

    .consulting p{
        padding: 0 ;
        padding-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
        max-width: 20rem;
    }

    .consultant-contact-button{
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
    
    .about-consulting{
        max-width: 420px;
    }





/*-------------------------------------!!!!!CONSULTING  SLUT!!!!!!-------------------------------------*/


     /*-------------------------------------!!!!!EDUCATION START!!!!!!-------------------------------------*/



    #education-banner{
        height: 42rem;
        background-image: url('../images/brand2.png') !important;
        background-size: cover;
        background-repeat: no-repeat;

    }

    #education-banner .header-text{
        width: 85%;
        max-width: 420px;
        margin-top: 6rem;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 2rem;
        box-sizing: border-box;
        
    }


    #education-banner h1{
        font-size: 2.2rem;
        line-height: 1.6;
        padding-left: 0;
        padding-bottom: 1rem;
    }


    #education-banner p{
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 0;
        padding-bottom: 1.5rem;

    }

    

    /*------------------------------Education banner SLUT----------------------------*/ 
    /*------------------------------About education START----------------------------*/ 

    #about_education{
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        margin-top: 3rem;
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }


    #about_education_text{
        width: 100%;
    }


    #about_education_text h2{
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }


    #about_education_text p{
        font-size: 1rem;
        line-height: 1.6;

    }


    #short_about_education{
        width: 100%;
        max-width: 220px;
    }

/*------------------------------About Education SLUT----------------------------*/ 
    /*------------------------------Utbildningar START----------------------------*/ 


    .all_education{
        padding: 2rem;
        gap: 1rem;
        margin-top: 3rem;
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }



    .about-education{
        width: 100%;
        max-width: 100%;
    }


    .education_kategorier{
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
        margin-top: 1.5rem;
    }


    .education{
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 1.5rem;
    }


    .education img{
        height: 10rem;
    }

    .education h3{
        font-size: 1.3rem;
        line-height: 1.6;
    }



    .education-category-text{
        padding-bottom: 1.5rem;
    }




/*-------------------------------------!!!!!EDUCATION SLUT!!!!!!-------------------------------------*/


     /*-------------------------------------!!!!!MEASURING START!!!!!!-------------------------------------*/

   #measurement-banner{
        height: 42rem;
        background-image: url('../images/mathel1.png') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }



    #measurement-banner .header-text{
        width: 85%;
        max-width: 420px;
        margin-top: 5rem;
        margin-left: 0;
        padding: 2rem;
        left: 50%;
        transform: translateX(-50%);
        box-sizing: border-box;
        background: linear-gradient(
            to bottom, 
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.5)
        );
    }

    #measurement-banner h1{
        font-size: 2.2rem;
        padding-left: 0;
        padding-top: 0;
        margin-bottom: 1rem;
        text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    }
    
    #measurement-banner p{
        font-size: 1.1rem;
        line-height: 1.2;
        padding-left: 0;
        padding-bottom: 0.5rem;
        text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }


    #measurement-banner .banner-buttons{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-left: 0;
    }



    #measurement-banner .banner-button{
        width: 100%;
        max-width: 220px;
        font-size: 1rem;

    }





    /*------------------------------Banner SLUT----------------------------*/ 
    /*------------------------------About START----------------------------*/




     #about-measurement{
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        margin-top: 3rem;
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }


    #about_measurement_text{
        width: 100%;
    }


    #about_measurement_text h2{
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }


    #about_measurement_text p{
        font-size: 1rem;
        line-height: 1.6;

    }


    #short_about_measurement{
        width: 100%;
        max-width: 220px;
    }






    /*------------------------------About  SLUT----------------------------*/ 
    /*------------------------------Content START----------------------------*/



    .measurement_content{
        gap: 2rem;
        max-width: 420px;
        padding: 2rem 1.5rem;
    }

    .measurement_box1, .measurement_box2{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
        min-height: auto;
    }


    .measurement_box_text{
        order: 2;
        max-width: 100%;
        width: 100%;
    }

    .measurement_box_text h3{
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: left;
    }


    .measurement_box_text p{
            font-size: 1rem;
            line-height: 1.6;
            
            
    }


    .measurement_box1 img, .measurement_box2 img{
        order: 1;
        width: 150px;
        height: 160px;
        max-width: 280px;
        max-height: 100%;
        
        
    }


    .measurement_content .consultant-contact-button{
        width: 100%;
        max-width: 260px;
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
        text-align: center;
        margin-top: 1rem;
    }













/*-------------------------------------!!!!!MEASURING  SLUT!!!!!!-------------------------------------*/


     /*-------------------------------------!!!!!ABOUT BINDUS START!!!!!!-------------------------------------*/




     .big_about{
        padding: 0 1.5rem;
        box-sizing: border-box;
     }

     .big_about_text_img{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
     }

     .big_about_text{
        width: 100%;
        max-width: 400px;
        padding-top: 3rem;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
        
     }

    .big_about_text h1{
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding-top: 3rem;
    }

    .big_about_text p{
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .big_about_buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-top: 2rem;
       

    }

    .big_about_button{
        display: inline-block;
        width: auto;
        max-width: 360px;
        font-size: 1.7rem;
        padding: 1rem 1.2rem;
        text-align: center;
        margin-top: 0;
    }


    .big_about_img{
        width: 100%;
        max-width: 420px;
        padding-top: 0;
        border-radius: 8px;
    }


/*-------------------------------------!!!!!ABOUT  SLUT!!!!!!-------------------------------------*/


     /*---------------------------------!!!!!CONTACT START!!!!!!-------------------------------------*/

    html, body{
        overflow-x: hidden;
    }


    #contact-header{
        padding: 3rem 1.5rem 2rem 1.5rem;
        margin-top: 1rem;
    }

    .contact-header-inner{
        max-width: 420px;
        flex-direction: column;
        justify-content: flex-start;
    }
    

    .contact-header-text{
        width: 100%;
        padding-bottom: 1.5rem;
    }

    #contact-header h1{
        font-size: 2rem;
        line-height: 1.2;
    }

    #contact-header p{
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
        max-width: 400px;
    }

    .contact-info-and-img{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }

    

    .contact-info-all{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    .contact-info-category{
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }


    #contact-header h2{
        font-size: 1.2rem;
        margin: 0 0 0.5rem 0
    }

    .contact-category-mini{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
        margin-bottom: 0.75rem;
    }


    .contact-category-mini p{
        flex-direction: column;
        align-items: center;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        padding: 0;
    }

    #contact_contact_icon{
        display: none;
        

    }

    


    /*--------------------------contact form----------------------*/

    .contact-form-section{
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .contact-layout{
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }

    .contact-form-section h2{
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .contact-form{
        width: 100%;
        gap: 1rem;
    }

    .form-group{
        width: 100%;
        gap: 0.4rem;
    }

    .contact-form label{
        font-size: 0.95rem;
        font-weight: bold;
    }

    .contact-form input, 
    .contact-form select, 
    .contact-form textarea{
        width: 100%;
        padding: 0.85rem 0.9rem;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    .contact-form textarea{
        min-height: 120px;
    }

    .contact-submit-button{
        align-self: center;
        width: 100%;
        max-width: 220px;
        font-size: 1rem;
        padding: 0.85rem 1rem;

    }

    /*------------------------!!!!!!!!!!WORK START!!!!!!!!!!------------------------------------*/

    /*--------------------------About work START----------------------*/

    .work-text-and-img{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 1.5rem 2rem 1.5rem;
        gap: 2rem;
        box-sizing: border-box;
    }

    .work_with_us_text{
        width: 100%;
        max-width: 520px;
        margin: 0;
    }

    .work_with_us_text h1{
        font-size: 2rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .work_with_us_text p{
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .work-img{
        width: 100%;
        max-width: 420px;
        padding: 0;
        height: auto;
        border-radius: 8px;
        align-self: flex-start;
    }

    /*--------------------------WorkForm START----------------------*/

    .job-layout{
        display: flex;
        justify-content: flex-start;
        padding: 3rem 0 4rem 0;
        box-sizing: border-box;
    }


    .job-form-section{
        width: 100%;
        max-width: 700px;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-align: left;
    }


    .job-form-section h2{
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .job-form-section p{
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .job-form{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .form-group{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .job-form label{
        font-size: 0.95rem;
    }

    .job-form input,
    .job-form select,
    .job-form textarea{
        width: 100%;
        padding: 0.85rem 0.9rem;
        font-size: 0.95rem;
        box-sizing: border-box;
    }



    .job-form textarea{
        min-height: 120px;
    }


    .job-form input[type="file"]{
        padding: 0.7rem;
    }

    .job-submit-button{
        align-self: center;
        width: 100%;
        max-width: 220px;
        font-size: 1rem;
        padding: 0.85rem 1rem;
        text-align: center;
    }

    .job-layout .wpcf7 .wpcf7-form-control {
         width: 100%;
    }










    /*------------------------!!!!!!!!!!WORK SLUT!!!!!!!!!!------------------------------------*/


     /*-------------------------------------!!!!!NYHETER START!!!!!!-------------------------------------*/


    .news-grid{
        gap: 24px; 
    }

    .news-article{
        padding: 1.5rem 1rem;
    }

    .news-container{
        padding: 1.5rem 1rem; 
    }

    .news-container h1{
        font-size: 32px; 
        margin-bottom: 24px;
    }

    .news-article:not(:last-child)::after{
        margin: 3rem auto; 
        width: 60%; 
    }








}



/*Små telefoner*/
@media (max-width: 400px) {

    /*------------------------!!!!!!!!!!INDEX START!!!!!!!!!!------------------------------------*/
/*-------------------------------------nav START------------------------------*/


    

    nav {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        
    }



    nav > a:first-of-type{
        display: block;
        flex: 0 0 auto;
    }


    nav .nav-logo{
        height: 2.2rem;
        width: auto;
        display: block;
    }
    
    

    .menu-btn{
        display: flex ;
        position: relative;
        width: 30px;
        height: 24px;
        margin-left: auto ;
        margin-right: 1rem ;
        flex: 0 0 30px;
        z-index: 30;
       
        
    }


    


/*-------------------------------------Nav SLUT-----------------------------*/
/*-------------------------------------banner START------------------------------*/

    header{
        height: 42rem;
        background-position: center;
    }

    .header-text{
        width: 92%;
        max-width: 320px;
        margin-top: 3.5rem;
        padding: 1.25rem;
    }

    header h1{
        font-size: 1.6rem;
        line-height: 1.35;
        padding-bottom: 0.75rem;
        margin-top: 0;
    }

    header p{
        font-size: 0.95rem;
        line-height: 1.5;
        padding-bottom: 1rem;
    }

    .banner-buttons{
        gap: 0.75;
        margin-top: 1rem;
    }

    .banner-button{
        max-width: 200px;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }



/*-------------------------------------Banner index SLUT-----------------------------*/
/*-------------------------------------Kort om företaget START------------------------------*/

.short_about{
    width: 100%;
    max-width: 320;
    box-sizing: border-box;
    padding: 1.25rem;
    gap: 1.25rem;
    margin: 0 auto;
}

.about_text h2{
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.about_text p{
    font-size: 0.95rem;
    line-height: 1.5;
}

.short_about_img{
    max-width: 280px;
}




/*-------------------------------------About SLUT-------------------------------------*/

/*-------------------------------------Tjänster START-------------------------------------*/


    .all_services{
       width: 100%;
       max-width: 320px;
       padding: 1.25rem;
       gap: 0.75rem;
       margin: 2rem auto 0 auto;
       align-items: center;
    }


    .service_kategorier{
        width: 100%;
        gap: 1.25rem;
        padding: 0.5rem 0;
        margin-top: 1rem;
        align-items: center;
    }

    .services{
        max-width: 100%;
        padding: 1rem;
    }


    .services img{
        height: 8rem;
        padding-bottom: 1rem;
    }

    .services h3{
        font-size: 1.1rem;
        padding: 0 0 0.75rem 0;
        margin-bottom: 0;
    }

    .services p{
        font-size: 0.95rem;
        line-height: 1.5;
        padding-bottom: 1rem;
    }

    .learn-more-button{
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }







/*-------------------------------------Tjänster SLUT-------------------------------------*/
/*-------------------------------------Review START-------------------------------------*/


    .review-area{
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
        padding: 1.25rem;
        gap: 0.75rem;
        margin: 2rem auto 0 auto;
    }

    .review-heading, .review-area h3{
        font-size: 1.35rem;
    }

    .review-wrapper{
        gap: 1.5rem;
        align-items: center;
    }

    .reviews{
        max-width: 100%;
        padding: 1rem;
    }

    .reviews img{
        height: 3.5rem;
        margin: 0 auto 1rem auto;
    }

    .preview, .full-review{
        font-size: 0.96rem;
        line-height: 1.5;
    }

    .toggle-icon{
        margin: 1rem auto 0 auto ;
    }







/*-------------------------------------Kontakt START-------------------------------------*/



    .contact-text-and-icon{
        max-width: 100%;
        padding: 1.25rem;
        gap: 1.5rem;
    }

    .icon-contact{
        width: 45%;
        max-width: 140px;
    }

    .contact-text h2{
        font-size: 1.5rem;
    }


    .contact-text p{
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: center;
        max-width: 320px;
    }

    .contact-button{
        max-width: 220px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
        margin-bottom: 2rem;
    }

 /*-----------------------------------!!!!!!!!!!INDEX SLUT!!!!!!!!!!------------------------------------*/
/*-----------------------------------!!!!!!!!!!FOOTER START!!!!!!!!!!------------------------------------*/
    

    .footer-certifikat-container{
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 300px;
        margin: 0 auto;
    }

    .footer-certifikat-container a{
        display: block;
        width: 200px;
    }

    .footer-certifikat-container a img{
            width: 100%;
            height: auto;
            display: block;
    }

    

    .footer-certifikat-container a {
        display: block;
        width: 200px;          
    }

    .certifikat-img-footer-svebra{
        width: 200px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .footer-adresses{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

/*-----------------------------------!!!!!!!!!!FOOTER SLUT!!!!!!!!!!------------------------------------*/
/*-----------------------------------!!!!!!!!!!KONSULT START!!!!!!!!!!------------------------------------*/
/*-------------------------------------Banner START-----------------------------*/

    #consulting-banner{
        height: 38rem;
        background-position: center;
    }

    #consulting-banner .header-text{
        width: 92%;
        max-width: 320px;
        margin-top: 3rem;
        padding: 1.25rem;
    }


    #consulting-banner h1{
        font-size: 1.6rem;
        line-height: 1.35r;
        margin-top: 0;
        margin-bottom: 0.75rem;
    }

    #consulting-banner p{
        font-size: 0.95rem;
        line-height: 1.5;
        padding-bottom: 1rem;
    }

    #consulting-banner .banner-buttons{
        gap: 0.75rem;
        margin-top: 1rem;
    }

    #consulting-banner .banner-button{
        width: 100%;
        max-width: 200px;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        text-align: center;
    }

/*-------------------------------------Banner SLUT-----------------------------*/
/*-----------------------------About consulting START-----------------------------*/


    #about_consulting_text{
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
    }

    #short_about_consulting{
        width: 100%;
        max-width: 220px;
    }

    .about-consulting{
        width: 100%;
        padding: 1rem;
    }

    .about-consulting h2{
        font-size: 1.5rem;
        

    }


    .about-consulting p{
       width: 100%;
    }

/*-------------------------------------About consulting SLUT-----------------------------*/
/*-----------------------------Tjänster START-----------------------------*/


    .all_consulting{
        padding: 1.25rem;
        margin-top: 2rem;
        margin-right: 0;
        margin-left: 0;
        gap: 0.75rem;
    }

    .consulting_kategorier{
        gap: 1.25rem;
        padding: 0.5rem 0;
        margin-top: 1rem;
    }

    .consulting{
        max-width: 100%;
        padding: 1rem;
    }

    .consulting img{
        height: 8rem;
        padding-bottom: 1rem;
    }


    .consulting h3{
        font-size: 1.1rem;
        line-height: 1.4;
        max-width: 100%;
        margin-bottom: 0.5rem;
    }

    .consulting p{
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .consultant-contact-button{
        width: 100%;
        max-width: 220px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
        text-align: center;
    }
    


/*-----------------------------------!!!!!!!!!!KONSULT SLUT!!!!!!!!!!------------------------------------*/

 /*------------------------!!!!!!!!!! EDUCATION START!!!!!!!!!!------------------------------------*/



    /*-------------------------------------Banner start-----------------------------*/


    #education-banner{
        height: 38rem;
        background-position: center;
    }

    #education-banner .header-text{
        width: 92%;
        max-width: 320px;
        margin-top: 5rem;
        padding: 1.25rem;
    }

    #education-banner h1{
        font-size: 1.6rem;
        line-height: 1.35;
        padding-bottom: 0.75rem;
        margin-top: 0;
    }


    #education-banner p{
        font-size: 0.95rem;
        line-height: 1.5;
        padding-bottom: 1rem;
    }



    #education-banner .banner-buttons, 
    #education-banner  .banner-button{
        gap: 0.75rem;
        margin-top: 1rem;
    }
    



    #education-banner .banner-button{
        width: 100%;
        max-width: 220px;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }



/*-------------------------------------Banner SLUT-----------------------------*/
/*-----------------------------About education START-----------------------------*/

#about_education{
    padding: 2rem;
    gap: 1.25rem;
    margin-top: 2rem;
    margin-right: 0;
    margin-left: 0;
}


#about_education_text h2{
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

#about_education_text p{
    font-size: 0.95rem;
    line-height: 1.5;
}


#short_about_education{
    max-width: 180px;
    width: 100%;
}

.about_education{
    width: 100%;
}



/*-------------------------------------About education SLUT-----------------------------*/
/*-----------------------------Utbildningar START-----------------------------*/

    .all_education{
        width: 100%;
        max-width: 320px;
        padding: 1.25rem;
        gap: 0.75rem;
        margin: 2rem auto 0 auto;
        align-items: center;
    }

    .all_education h2{
        font-size: 1.6rem;
        padding-bottom: 1rem;
    }


    .education_kategorier{
        gap: 1.25rem;
        padding: 0.5rem 0;
        margin-top: 1rem;
    }


    .education{
        max-width: 100%;
        padding: 1rem;
    }


    .education img{
        height: 8rem;
        padding-bottom: 1rem;
    }

    .education h3{ 
        font-size: 1.1rem;
        line-height: 1.4;
        padding: 0.5rem 0;
    }


    .education p{
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0;
    }


    .education-category-text{
        padding-bottom: 1rem;
    }


    .quick-links{
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .quick-links a{
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }

    .consultant-contact-button{
        width: 100%;
        max-width: 220px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
        text-align: center;
    }


/*------------------------!!!!!!!!!! EDUCATION SLUT!!!!!!!!!!------------------------------------*/
/*------------------------!!!!!!!!!! MEASUREMENT START!!!!!!!!!!------------------------------------*/



    #measurement-banner{
        height: 38rem;
        background-image: url('../images/mathel1.png') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #measurement-banner .header-text{
        width: 92%;
        max-width: 320px;
        margin-top: 4rem;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 1.25rem;
        box-sizing: border-box;
    }

    #measurement-banner h1{
        font-size: 1.55rem;
        line-height: 1.35;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0.75rem;
        margin-top: 0;
    }


    #measurement-banner p{
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0.2rem 0;
        margin: 0;
    }


    .measurement_banner_text{
        margin-bottom: 1rem;
    }

    .measurement_banner_text p{
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0.5rem 0;
        margin: 0;
    }





    #measurement-banner .banner-buttons, 
    #measurement-banner  .banner-button{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-left: 0;
        padding-right: 0

    }
    



    #measurement-banner .banner-button{
        width: 100%;
        max-width: 220px;
        font-size: 0.95rem;
        padding: 0.75 1rem;
    }


    #measurement-banner .banner-divider{
        width: 85%;
        height: 3px;
        margin: 0.75rem 1rem 1;
        padding-right: 0;
    }


/*-------------------------------------Banner SLUT-----------------------------*/
/*-----------------------------About measurement START-----------------------------*/

    #about_measurement{
        padding: 1.25rem;
        gap: 1.25rem;
        margin-top: 2rem;
        margin-right: 0;
        margin-left: 0;
    }

    #about_measurement_text{
        width: 100%;
    }

    #about_measurement_text h2{
        font-size: 1.45rem;
        line-height: 1.35;
        margin-bottom: 0.75rem;
    }



    #about_measurement_text p{
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }


    #short_about_measurement{
        width: 100%;
        max-width: 260px;
    }


    /*-------------------------------------About measurement SLUT-----------------------------*/
    /*-----------------------------Measurement content START-----------------------------*/


    .measurement_content{
        max-width: 100%;
        padding: 1.25rem 1rem;
        gap: 1.25rem;
    }

    .measurement_box1, .measurement_box2{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.9rem;
        padding: 1rem;
        min-height: auto;
        box-sizing: border-box;
    }



    .measurement_box_text{
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .measurement_banner_text h3{
        font-size: 1.15rem;
        line-height: 1.35;
        margin-top: 0;
        margin-bottom: 0.6rem;
        text-align: left;
    }


    .measurement_banner_text p{
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

    .measurement_box1 img, .measurement_box2 img{
        order: 1;
        width: 90px;
        height: 90px;
        max-width: 100%;
    }

    .section-divider{
        width: 70%;
        margin: 3rem auto;
    }


/*------------------------!!!!!!!!!!MEASUREMENT SLUT!!!!!!!!!!------------------------------------*/
/*------------------------!!!!!!!!!! ABOUT US START!!!!!!!!!!------------------------------------*/


.big_about{
    padding: 0 1rem;
}


.big_about_text_img{
    padding-top: 1.5rem;
    gap: 1.5rem;
}

.big_about_text{
    max-width: 320px;
    padding-top: 2rem;
}

.big_about_text h1{
    font-size: 1.6rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    padding-top: 1rem;
}

.big_about_text p{
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
}

.big_about_buttons{
    gap: 0.75rem;
    padding-top: 1rem;
}

.big_about_button{
    max-width: 260px;
    font-size: 1rem;
    padding: 0.8rem 1rem;
}

.big_about_img{
max-width: 320px;
}



/*------------------------!!!!!!!!!!ABOUT US SLUT!!!!!!!!!!------------------------------------*/
/*------------------------!!!!!!!!!! CONTACT START!!!!!!!!!!------------------------------------*/


    


    #contact-header{
        padding: 2rem;
        margin-top: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        
    }

    .contact-header-text {
        width: 100%;
        padding-bottom: 1rem;
    }

    #contact-header h1{
        font-size: 1.4rem;
        line-height: 1.5;
        margin: 0;
        width: 100%;
    }

    #contact-header p{
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }

    .contact-info-and-img{
        width: 100%;
        gap: 1rem;
    }

    .contact-info-all{
        width: 100%;
        gap: 1.25rem;
        align-items: flex-start;
    }

    .contact-info-category{
        width: 100%;
        padding-right: 0;
    }

    #contact-header h2{
        font-size: 1.25rem;
        line-height: 1.35;
        margin: 0;
    }

    .contact-category-mini{
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        margin-bottom: 0.75rem;
    }

    .contact-category-mini p{
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
        padding: 0;
    }


    #contact_contact_icon{
        display: none;

    }

    .contact-header-inner{
        width: 100%;
        max-width: 310px;
        margin: 0 auto;
    }



/*------------------Form layout------------------*/


    .contact-layout{
        width: 100%;
        padding: 1rem;
        margin: 0;
        padding-top: 2rem;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }


    .contact-form-section{
        width: 100%;
        max-width: 320px;
        margin: 0;
        padding: 0;
        padding-top: 3rem;
        box-sizing: border-box;
        
    }

    .contact-form-section h2{
        font-size: 1.1rem;
        line-height: 1.35;
        margin-bottom: 0.75rem;
    }


    .contact-form{
        width: 100%;
        gap: 1rem;
    }

    .form-group{
        width: 100%;
        gap: 1rem;
    }


    .contact-form label{
        font-size: 0.95rem;
    }


    .contact-form input, 
    .contact-form select,
    .contact-form textarea{
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    .contact-form textarea{
        min-height: 110px;
    }

    .contact-submit-button{
        align-self: center;
        width: 100%;
        max-width: 200px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }




 /*-----------------------------------!!!!!!!!!CONTACT SLUT!!!!!!!!!!------------------------------------*/

 /*-----------------------------------!!!!!!!!!!WORK START!!!!!!!!!!------------------------------------*/



    .work-text-and-img{
        padding: 2rem 1rem 1.5rem 1rem;
        gap: 1.5em;
    }

    .work_with_us_text{
        max-width: 320px;
    }

    .work_with_us_text h1{
        font-size: 1.7rem;
        line-height: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .work_with_us_text p{
        font-size: 1rem;
        line-height: 1.5;
    }

    .work-img{
        display: none;
    }


    /*-------------------form START-------------------*/

    .job-layout{
        padding: 0 1rem 2rem 1rem;
    }

    .job-form-section{
        max-width: 320px;
    }

    .job-form-section h2{
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }


    .job-form-section p{
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .job-form{
        gap: 1rem;
    }

    .form-group{
        gap: 0.35rem;
    }

    .job-form label{
        font-size: 0.95rem;
    }

    .job-form input,
    .job-form select,
    .job-form textarea{
        width: 100%;
        padding: 0.8rem 0.9rem;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    .job-form textarea{
        min-height: 110px;
    }

    .job-form input[type="file"]{
        padding: 0.65rem;
    }

    .job-submit-button{
        align-self: center;
        width: 100%;
        max-width: 200px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }



 /*------------------------!!!!!!!!!!WORK SLUT!!!!!!!!!!------------------------------------*/


     /*-------------------------------------!!!!!NYHETER START!!!!!!-------------------------------------*/



    .news-container{
        padding: 1rem 0.75rem; 
    }

    .news-container h1{
        font-size: 26px; 
        margin-top: 1.5rem;
        margin-bottom: 20px;
        padding: 0.5rem;
    }

    .news-grid{
        gap: 16px; 
    }

    .news-article{
        padding: 1rem; 
    }

    .news-card__content{
        padding: 1rem 0; 
        margin: 0 auto;
        max-width: 65ch;
    }

    .news-card__content h2,
    .news-card__content p{
        margin-left: auto;
        margin-right: auto;
    }

    .news-card__content h2{
        font-size: 20px; 
    }

    .news-card__content p{
        font-size: 15px; 
        line-height: 1.5;
    }

    .news-article:not(:last-child)::after{
        width: 70%; 
        margin: 2rem auto; 
    }


    .news-card__image img{
        max-width: 100%;
    }

}