* {
    scroll-behavior: smooth;
}
* h1, h2, h3, h4, h5, ul{
    font-family: 'Spartan';
}

* p, li {
    font-family: 'Open Sans'
}

body {
    height: 100vh; 

    margin: 0%;
    padding: 0%;
    

    display: grid; 
    grid-template-columns: 
        1fr
        repeat(4,minmax(0,272px))
        1fr 
    ;
    grid-gap: 0px; 
    grid-template-rows:
        40px
        1fr
        82vh
        75px
        1fr
        1fr
        1fr
        1fr
        1fr
        50px
    ;
    grid-template-areas: 
        "top_header top_header top_header top_header top_header top_header"
        "header header header header header header"
        "Banner Banner Banner Banner Banner Banner"
        "headline1 headline1 headline1 headline1 headline1 headline1"
        "service1 service1 service1 service1 service1 service1"
        "service2 service2 service2 service2 service2 service2"
        "number_section number_section number_section number_section number_section number_section"
        "testimonal testimonal testimonal testimonal testimonal testimonal"
        "footer footer footer footer footer footer"
        "credit credit credit credit credit credit"
        ;

       
    color: #0C0C0C;
    background-color: #F5F5F5;
}

/*____________HEADER___________*/
.top_header{
    grid-area: top_header;
    display: flex; 
    align-items: center;
    border-bottom: 2.5px solid #eaeaea;
    padding: 10px;
    width: auto;
    background-color: #F5F5F5;
}

.top_header_section{
    display: flex; 
    align-items: center;
}
.top_header_section p{
    margin-right: 25px;
    font-size: small;
}

.top_header_section, .top_header_section a{
    color: #515151;
}
.top_header_section a:hover {
    color: #2110C8;
}




/*____________HEADER___________*/
header {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #F5F5F5;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
    header img {
        width: 180px;
        margin: 10px 0 0 8px;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px;
    }

    .menu-toggle {
      font-size: 1.5rem;
      background: none;
      border: none;
      display: none;
      cursor: pointer;
    }

    .nav-list {
        display: flex;
        align-items: center;
    }

    ul.nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 1rem;
    }

    ul.nav-list li {
      position: relative;
    }

    ul.nav-list a {
      text-decoration: none;
      color: #000;
      padding: 0.5rem 1rem;
      display: block;
      border-radius: 4px;
    }

    ul.nav-list a:hover,
    ul.nav-list a:focus {
      outline: none;
      color: #1BABE3;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
    background-color: #F5F5F5;
      min-width: 160px;
      z-index: 10;
    }

    .dropdown-menu a {
      white-space: nowrap;
    }

    .show {
      display: block;
    }

    .active {
        color: #1BABE3 !important;
    }

    /*Responsiv*/
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        ul.nav-list {
            flex-direction: column;
            display: none;
            width: 100%;
        }

        ul.nav-list.show {
            display: flex;
        }

        .dropdown-menu {
            position: static;
            border: none;
            box-shadow: none;
        }

        ul.nav-list li {
            width: 100%;
        }

        .dropdown-menu a {
            padding-left: 2rem;
        }


        .nav-container {
        flex-direction: column;
        }
    }
    

#Banner {
    grid-area: Banner;

    display: flex;
    flex-direction: column;
    
    justify-content: center;
    padding-right: 10%;
    text-align: right;
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.014), rgba(0, 0, 0, 0.5) ), url(../Images/Groenland.png);
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
}
    #Banner h1 {
        color: #FFFFFF;
        font-size: 50px;
    }

    #btn_box {
        display: flex; 
        justify-content: right;
    }

    .button, .button a {
        text-decoration: none;
        padding: 12px 18px;
        border-radius: 30px;
        text-align: center;
        margin: 0 10px;
        color: #FFFFFF;
        font-weight: bold;
        font-size: large;
        
        font-family: 'Spartan';
    }
    .primary {
        background-color: #1BABE3;
    }
        .primary:hover {
            background-color: #169ED2;
        }

    .secondary {
        background-color: #2110C8;
        border: 0.1px solid #311aff;
    }
        .secondary:hover {
            background-color: #1f0eb8;
        }


.header-button {
        background-color: #1BABE3;
        padding: 6px 18px;
        border-radius: 50px;
}
    .header-button a {
        color: #fff !important; 
        text-align: center;
    }



#service_headline {
   grid-area: headline1;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: larger;

}
    #service_section {
        grid-area: service1;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 30px;
    }
    #service_section2 {
        grid-area: service2;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 30px;
    }
        .service_box {
            width: 400px;
            height: 350px;
            background-color: #FFFFFF;
            margin: 0 20px; 
            padding: 50px 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;
            box-shadow: 0 4px 8px 0 rgba(114, 114, 114, 0.2), 0 6px 20px 0 rgba(114, 114, 114, 0.2);
        }

        .service_box:hover {
            background-color: #E6F8FF;
        }


        .img_box {
            display: flex;
            align-items: center;
            justify-content: center;
            }
            .img_box img {
                width: 70%;
            }

                .read_more_btn {
                    background-color: #E4E4E4;
                    border: none;
                    border-radius: 30px;
                    padding:  8px 16px;
                    margin-top: 60px;
                    }
                    .read_more_btn a{
                        color: #0C0C0C;
                        text-decoration: none;
                        }
                    .read_more_btn:hover {
                        background-color: #cecece;
                        cursor: pointer;
                    }

                        .extra_margin {
                            margin-bottom: 35px;
                        }
                        .minus_margin {
                            margin-bottom: 0px;
                        }


#northlogic_in_numbers {
    grid-area: number_section;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    background-color: #E4E4E4;
}

    .Headline {
        font-size: larger;
    }

    #number_container{
        display: flex;
        justify-content: center;
        text-align: center;
        width: 80%;
    }

        .number_box {
            margin: 0 10%;
            padding: 10px;
            font-size: large;
        }
        .blue-number{
            color: #169ED2;
            font-size: xx-large;
        }



#testimonal_container {
    grid-area: testimonal;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    padding: 20px;
    

    background: url("../Images/world_map.png") repeat 0 0;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

    q {
    font-style: italic; 
    font-size: x-large;
    text-align: center;
    margin: 80px;
    }

    .author {
        font-size: medium;
        text-align: center;
        margin-bottom: 40px;
    }



footer {
    grid-area: footer;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    width: auto;
    background-color: #EAEAEA;
}

.logo_box {
    width: 25%;
    margin: 50px 60px 0 0;
    }
    .logo_box img{
        height: 80px;
    }

    .links_box {
        margin: 50px 0;
        height: fit-content;
    }
        .links_box a{
        font-size: large;
        color: #0C0C0C;
        text-decoration: none;
        }
        .links_box a:hover{
        text-decoration: underline;
        }


.credit {
    grid-area: credit;
    height: fit-content;
    text-align: center;
    
    color: #F5F5F5;
    background-color: #1D1D1B;
}



@media screen and (max-width: 600px) {
.top_header{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: fit-content;
}

.top_header_section p{
    margin-right: 0px;
    margin: 0 5px;
}

#Banner h1 {
    color: #F4F1EB;
    font-size: 30px;
}

    
#northlogic_in_numbers {
    text-align: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}
    #number_container{
        flex-direction: column;
        display: flex;
        text-align: center;
        align-items: center;
    }

    .Headline {
        font-size: large;
        text-align: center;
    }
}
          

       
@media screen and (max-width: 906px) { 
    #Banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-right: 0%;
        text-align: center;
        height: 100%;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
            .button, .button a {
                text-decoration: none;
                padding: 12px 18px;
                border-radius: 30px;
                text-align: center;
                margin: 10px 0px;
                color: #F4F1EB;
                font-weight: bold;
                font-size: large;
            }
                #btn_box {
                    flex-direction: column;
                }
                    
        #service_section, #service_section2 {
            flex-direction: column;
        }

        .service_box {
            margin: 10px 0;
            width: 90%;
        }


        footer {
            display: flex;
            flex-direction: column;
            justify-content: left;
            width: auto;
            font-size: large;
        }
        
        .logo_box {
            width: auto;
            margin: 20px 0;
            }
            .links_box {
                margin: 20px 0;
        }
}

