body {
    background-color: white;
    max-width: 100%;
    margin: 0;
    font-family: Poppins;
}

.header {
    max-width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #093090;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header.scrolled {
     background: linear-gradient(to bottom, rgba(72, 72, 72, 0.8), rgba(255, 255, 255, 0));
}


.header-left {
    display: flex;
    align-items: center;
}

.header-left-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-left-logo img {
    height: 70px;
    margin-right: 5px;
}

.header-left-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-left-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-right: 35px;
    position: relative; 
}

.header-left-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #C35037;
    transform: scaleX(0); 
    transition: transform 0.3s ease; 
    transform-origin: left; 
}

.header-left-links a:hover::after {
    transform: scaleX(1); 
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-right: 35px;
    border-bottom: 2px solid transparent;
}

.header-right-language {
    display: flex;
    align-items: center;
}

.header-right-language img {
    height: 18px;
    width: 25px;
    margin-right: 8px;
}

.header-right-language-container {
    position: relative; /* Creates a reference point for the absolute popup */
    display: inline-block;
}
  
.popup {
    display: none; 
    position: absolute;
    top: 100%; 
    left: 0;
    border-radius: 10px;
    padding: 10px;
    z-index: 10;
    width: 150px;
    border: 2px solid grey;
    background-color: #093090;
}

.popup:hover {
    background-color: #100350;
}

.popup a {
    margin: 0;
}

.header-right-language-container:hover .popup {
    display: block; 
}
  

.background-image {
    background: linear-gradient(to bottom, #093090, #100350);
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 100%; 
    padding: 20px;
    margin: 0px 80px 0px 80px;
    color: white;
    align-items: center;
    height: calc(100vh - 150px);
}

.text-content {
    padding: 20px;
    background-color: transparent;
}

.text-content h1 {
    font-size: 40px;
    animation: slideIn-left 1s forwards;
}

.text-content p {
    font-size: 20px;
    animation: slideIn-left 1.5s forwards;
}

.image-content {
    background-color: transparent;
    justify-self: end;
}

.image-content img {
    height: 400px;
    width: auto;
    display: block;
}

.stats-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hidden-before-scroll {
    opacity: 0;
    transform: translateY(-50px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.stats-title p, .hidden-before-scroll p {
    margin: 0;
    font-size: 35px;
    padding-top: 50px;
}

.stats-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 100%; 
    padding: 20px;
    margin: 40px 80px 50px 80px;
}

.information-complete {
    padding: 20px;
    text-align: left;
    word-wrap: break-word;
}

.information-title {
    font-size: 30px;
    border-top: 2px solid black;
    padding-top: 30px;
    margin-bottom: 15px;
}

.information-description {
    font-size: 18px;

}

.solution-body {
    background: linear-gradient(to bottom, #C35037, #2f0a02);
    color: white;
}

.solution-main-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 50px;
}

.solution-main-title p, .hidden-before-scroll-solution p {
    margin: 0;
    font-size: 60px;
}

.hidden-before-scroll-solution {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 50px;
    opacity: 0;
    transform: translateY(-50px);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 100%; 
    padding: 20px;
    margin: 50px 20% 50px 20%;
}

.solution-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-image {
    justify-self: end;
}

.solution-image img {
    height: 250px;
    width: 250px;
    display: block;
}

.solution-button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 10px;
}

.solution-button a {
    color: white;
    text-decoration: none;
}

.solution-button img {
    height: 15px;
    width: 15px;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: white;
    transition: background-color 0.3s ease;
}

.solution-button:hover img {
    background-color: #53F6FF;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.certificate-section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
}

.certificate-section-title h1 {
    margin: 0;
    font-size: 35px;
}

.certificate-section-title p {
    font-size: 18px;
}

.certificates-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 100%; 
    padding: 20px;
    margin: 0px 80px 0px 80px;
    align-items: stretch;
    height: 100%;
}

.certificate {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hidden-before-scroll-certificate {
    opacity: 0;
    transform: translateY(-50px);
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.certificate img, .hidden-before-scroll-certificate img {
    height: 200px;
    width: 200px;
    margin-bottom: 20px;
}

.certificate p, .hidden-before-scroll-certificate p {
    border-top: 2px solid grey;
    padding-top: 20px;
    margin: 0;
}


.read-more {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
    margin-bottom: 50px;
}

.read-more a {
    text-decoration: none;
    background-color: #C35037;
    padding: 10px;
    color: white;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.read-more a:hover {
    transition: background-color 0.3s ease;
    background-color: #ab432c;
}

.footer {
    background-color: #093090;
    width: 100%;
    padding: 26px 10% 0px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    box-sizing: border-box;
}

.row-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid lightgrey;
    padding-bottom: 30px;
}

.footer-logo img {
    height: 70px;
}

.section2 {
    position: absolute;
    left: 50%;                    
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.section2 a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin: 15px;
}

.section3 {
    display: flex;
    flex-direction: column;
}

.section3-socials {
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-icon {
    fill: white;
    stroke: white;

}

.svg-icon svg {
    height: 60px;
    width: 60px;
}

.section3-button {
    display: flex;
    width: 100%;
    justify-content: center;
}

.button-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 2px solid white;
    width: 150px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    background-color: transparent;
    transition: background-color 0.5s ease;
    transition: border 0.6s;
}

.button-contact svg {
    margin-left: 10px;
    stroke: white;
}

.button-contact:hover {
    background-color: #C35037;
    border: 2px solid #C35037;
    transition: background-color 0.5s ease;
    transition: border 0.6s;
}

.row-secondairy {
    display: flex;
    align-items: center;
    color: rgb(201, 199, 199);
    width: 100%;
}

.row-secondairy p {
    padding: 10px;
}

.row-secondairy a {
    text-decoration: none;
    color: rgb(201, 199, 199);
    padding: 10px;
}


/** producten.html section!! **/

.mockup-section {
    display: flex;
    justify-content: space-between;
    padding: 100px 15% 0px 15%;
    align-items: center;
}

.mockup-section-left {
    display: flex;
    flex-direction: column;
}

.section-left-title h3 {
    font-size: 28px;
    color: #C35037;
    margin: 0;
}

.section-left-button {
    display: flex;
    background-color: #C35037;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.section-left-button:hover {
    cursor: pointer;
    background-color: #ab432c;
    transition: background-color 0.3s ease;
}

.section-left-button p {
    margin: 0;
    color: white;
}

.mockup-section-right img {
    height: 384px;
}

.feature-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 100px 0px 100px 0px;
    padding: 20px 0px 60px 0px;
    background: linear-gradient(to bottom, #C35037, #2f0a02);
}

.feature-section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(215, 214, 214);
}

.feature-section-title p {
    font-size: 26px;
    font-weight: bold;
}

.feature-section-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch; 
    margin: 0px 15% 0px 15%;
}

.feature {
    display: flex;
    align-items: center;
    padding: 10px;
}

.feature-logo svg{
    height: 50px;
    margin-right: 20px;
    fill: rgb(215, 214, 214);
}

.feature-text h3 {
    color: rgb(215, 214, 214);
    margin: 0;
}

.feature-text p {
    color: rgb(187, 186, 186);
    margin: 0;
}

.price-plan-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 100px;
}

.price-plan-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-plan-title p {
    font-size: 26px;
    font-weight: bold;
}

.price-plan-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.plan-tier {
    border: 1px solid grey;
    border-radius: 26px;
}

.plan-padding-container {
    padding: 30px;
}

.plan-header{
    height: 30px;
    background-color: #C35037;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
}

.plan-title {
    height: 90px;
}

.plan-title h3 {
    color: #C35037;
    font-size: 30px;
    margin: 0;
}

.plan-title p {
    color: #888888;
    margin-top: 0;
}

.plan-price {
    display: flex;
    align-items: center;
}

.plan-price h3 {
    font-size: 50px;
}

.plan-price p {
    color: #888888;
}

.plan-button {
    display: flex;
    background-color: #C35037;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.plan-button p {
    color: white;
    margin: 0;
}

.plan-button:hover {
    cursor: pointer;
    background-color: #ab432c;
    transition: background-color 0.3s ease;
}

.plan-perks {
    display: flex;
    flex-direction: column;
}

.perk {
    display: flex;
    align-items: center;
}

.perk-icon {
    height: 25px;
    margin-right: 5px;
    fill: #C35037;
}

/** END platformen.html part! **/


/** Begin contact.html part! **/

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 100px);
    margin-top: 100px;
    margin-bottom: 100px;
}

.contact-text {
    text-align: center;
}

.contact-text h3 {
    font-size: 38px;
    margin: 0;
    animation: fadeIn 1.5s forwards;
}

.contact-text p {
    color: grey;
}

.contact-possibilities {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.contact-possibility {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0px 6% 0px 6%;
    animation: slideIn 1.5s forwards;
}

.contact-possibility:nth-child(1) {
    animation-delay: 0s;
}

.contact-possibility:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-possibility:nth-child(3) {
    animation-delay: 0.2s;
}

.contact-svg {
    height: 100px;
    stroke: black;
}

.contact-possibility h3 {
    margin: 15px 0px 0px 0px;
    color: #C35037;
}

.contact-possibility p {
    margin: 0;
    color: grey;
}

/** END contact.html part! **/


/** verify-login part! **/

.verify-login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

/** Cloud diensten part! **/

.cloud-introduction {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #093090;
    padding-top: 50px;
}

.cloud-introduction-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
}

.cloud-introduction-text h3 {
    margin: 0;
    color: #F0F5F8;
    font-size: 48px;
}

.cloud-introduction-text p {
    color: #F0F5F8;
}

.cloud-introduction-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cloud-introduction-image img {
    max-width: 100%;
}



.cloud-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F0F5F8;
}

.cloud-body-text h2 {
    font-size: 40px;
}

.cloud-body-custom {
    border-bottom: 2px solid grey;
    padding-bottom: 75px;
}

.cloud-custom {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cloud-custom-icon {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: white;
    margin-right: 80px;
    box-shadow: 1px 1px 0.5px grey;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-custom-icon svg {
    width: 40px;
    height: 40px;
}

.cloud-custom-text {
    border-left: 2px solid lightblue;
    padding-left: 20px;
}

.cloud-custom-text h3, .cloud-custom-text p {
    margin: 0;
}

.cloud-timeline-container {
    background-color: #F0F5F8;
    width: 100%;
    padding-top: 75px;
    padding-bottom: 50px;
}

.cloud-timeline-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.cloud-timeline-title h3 {
    font-size: 40px;
    margin: 0;
}

.cloud-timeline-title p {
    margin: 0;
}

.cloud-timeline {
    min-width: 300px;
    max-width: 500px;
    margin: auto;
}

.cloud-timeline p {
  font-size: 1em;
  line-height: 1.75em;
  border-top: 3px solid;
  border-image: linear-gradient(to right, #743ad5 0%, #d53a9d 100%);
  border-image-slice: 1;
  border-width: 3px;
  margin: 0;
  padding: 40px;
  counter-increment: section;
  position: relative;
  color: black;
  
  &:before {
    content: counter(section);
    position: absolute;
    border-radius: 50%;
    padding: 10px;
    height: 1.25em;
    width: 1.25em;
    background-color: black;
    text-align: center;
    line-height: 1.25em;
    color: white;
    font-size: 1em;
  }
}

.cloud-timeline p:nth-child(odd) {
  border-right: 3px solid;
  padding-left: 0;
  
  &:before {
    left: 100%; 
    margin-left: -20px;
  }
}

.cloud-timeline p:nth-child(even) {
  border-left: 3px solid;
  padding-right: 0;
  
  &:before {
    right: 100%; 
    margin-right: -20px;
  }
}

.cloud-timeline p:first-child {
  border-top: 0;
  border-top-right-radius:0;
  border-top-left-radius:0;
}
.cloud-timeline p:last-child {
  border-bottom-right-radius:0;
  border-bottom-left-radius:0;
}

.cloud-contact {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #F0F5F8;
    padding: 50px 0 50px 0;
}

.cloud-contact h3 {
    font-size: 40px;
    margin: 0;
}

.cloud-contact p {
    margin: 0 0 50px 0;
}

.cloud-contact-button a {
    padding: 20px;
    text-decoration: none;
    color: black;
    background-color: lightblue;
    border-radius: 25px;
}

.cloud-contact-button a:hover {
    background-color: rgb(165, 215, 232);
}

/** About us HTML page!! **/

.about-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10% 80px 10%;
    min-height: calc(100vh - 100px);
}

.about-us-container img {
    height: 400px;
    border-radius: 25px;
}

.about-us-text {
    margin-left: 100px;
}

.about-us-text h3 {
    font-size: 30px;
}

/** Animations **/

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slideInFromTop 1s ease-out forwards;
}

.metadata-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
    position: relative;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.menu-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.menu-button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.menu-options {
    position: absolute;
    top: 25px;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.menu-options.hidden {
    display: none;
}

.menu-options button {
    display: block;
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.menu-options button:hover {
    background-color: #f0f0f0;
}


#dropZone {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

#dropZone.drag-over {
    background-color: #f0f0f0;
}

/** Media queries yeahh!! **/

/** First part after header! **/

@media (max-width: 1280px) {
    .image-content img {
        height: 300px;
    }

    .text-content h1 {
        font-size: 30px;
    }

    .text-content p {
        font-size: 15px;
    }
}

@media (max-width: 1000px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center; 
    }

    .image-content {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/** footer part! **/

@media (max-width: 1165px) {
    .section2 {
        justify-content: center;
        flex-direction: column;
    }

    .section2 a {
        margin: 5px;
    }
}

@media (max-width: 925px) {
    .row-primary {
        flex-direction: column;
    }

    .section2 {
        position: static;
        left: auto;
        transform: none;
    }

    .row-secondairy {
        justify-content: center;
        flex-direction: column;
    }

    .row-secondairy p {
        margin-bottom: 0;
    }
}

/** Final tweaks **/

@media (max-width: 600px) {
    .container {
        margin: 0;
    }
    
    .image-content img {
        height: 200px;
    }

    .stats-title p, .hidden-before-scroll p {
        font-size: 20px;
    }

    .stats-items {
        margin: 20px;
    }

    .information-title {
        font-size: 18px;
    }

    .information-description {
        font-size: 14px;
    }

    .information-complete {
        padding: 20px 20px 0px 20px;
    }

    .solution-main-title p, .hidden-before-scroll-solution p {
        font-size: 28px;
    }

    .solution-text h1 {
        font-size: 18px;
    }

    .solution-grid {
        margin: 20px;
    }

    .certificate-section-title h1 {
        font-size: 28px;
    }

    .certificates-display {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        margin: 0px 20px 0px 20px;
    }

    .certificate img, .hidden-before-scroll-certificate img {
        height: 100px;
        width: 100px;
    }

    .certificate p, .hidden-before-scroll-certificate p {
        font-size: 12px;
    }

    .solution-image img {
        height: 200px;
        width: 200px;
    }
}


/** Solution part **/

@media (max-width: 935px) {
    .solution-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .solution-text {
        text-align: center;
    }

    .solution-button {
        justify-content: center;
        width: 100%;
        align-items: center;
    }
}

/** Header part! **/

.hamburger-button {
    display: none;
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    background: none;
    font-size: 30px;
    border: none;
    cursor: pointer;
    color: white;
}

@media (max-width: 1100px) {
    .header-right {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw; 
        height: 0;                 
        overflow: hidden;          
        background-color: #093090;
        transition: height 0.3s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .header-right.open {
        height: 100vh;
    }

    .hamburger-button {
        display: block;
    }

    .header-left-links {
        display: none;
    }

    .header.menu-open .header-left-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .header-right {
        align-items: start;
        justify-content: start;
    }

    .header-right > :first-child {
        padding-left: 5%;
    }

    .header-right a {
        margin: 0;
    }

    .header-right-links {
        display: flex;
        flex-direction: column;
        width: 100%;    
        box-shadow: 0 -10px 10px rgba(182, 181, 181, 0.1);    
    }

    .header-right-links a {
        border-bottom: 1px solid grey;
        padding: 20px 20px 20px 20px;
        font-size: 24px;
    }

    .header-right-links a:hover {
        background-color: #100350;
    }

    .header-right-contact {
        display: flex;
        flex-direction: column;
        width: 100%;  
    }

    .header-right-contact a {
        border-bottom: 1px solid grey;
        padding: 20px 20px 20px 20px;
        font-size: 24px;
    }

    .header-right-contact a:hover {
        background-color: #100350;
    }

    .header-right-language-container {
        width: 100%;
    }

    .header-right-language-container a {
        border-bottom: 1px solid grey;
        padding: 20px 20px 20px 20px;
        font-size: 24px;
    }

    .popup {
        width: 100%;
        border: none;  
        padding: 0;
    }

    .header-right-language-container a:hover {
        background-color: #100350;
    }

    .header-left-logo {
        height: 100px;
    }

}

/** Producten media queries **/

@media (max-width: 1400px) {
    .mockup-section-right img {
        height: 288px;
    }

    .mockup-section {
        padding: 100px 8% 0px 8%;
    }
}

@media (max-width: 970px) {
    .mockup-section {
        padding: 100px 4% 0px 4%;
    }

    .feature-section-body {
        margin: 0px 8% 0px 8%;
    }
}

@media (max-width: 860px) {
    .mockup-section {
        flex-direction: column;
    }

     .mockup-section-right img {
        margin-top: 50px;
    }
}

@media (max-width: 740px) {
    .feature-section-body {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 540px) {
    .mockup-section-right img {
        height: 230px;
    }

    .feature-section {
        margin: 100px 0px 0px 0px;
    }

    .price-plan-body {
        gap: 40px;
    }

    .price-plan-container {
        padding: 40px;
        margin-bottom: 50px;
    }
}

/** Cloud diensten media queries **/

@media (max-width: 940px) {
    .cloud-body-text h2 {
        font-size: 30px;
    }

    .cloud-contact h3 {
        font-size: 30px;
    }

    .cloud-contact {
        padding: 50px;
    }
}

@media (max-width: 740px) {
    .cloud-introduction-text h3 {
        font-size: 36px;
    }

    .cloud-custom {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .cloud-custom-icon {
        min-height: 80px;
        min-width: 80px;
        border-radius: 50%;
        background-color: white;
        margin-right: 40px;
        box-shadow: 1px 1px 0.5px grey;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cloud-body {
       padding: 0px 5% 0px 5%;
    }
}

@media (max-width: 600px) {
    .cloud-body-text {
        display: flex;
        text-align: center;
    }

    .cloud-body-text h2 {
        font-size: 24px;
    }

    .cloud-body-custom {
        padding-bottom: 50px;
    }

    .cloud-timeline-container {
        padding-top: 50px;
    }

    .cloud-timeline {
        min-width: 200px;
        max-width: 300px;
    }

    .cloud-contact {
        padding: 20px 20px 50px 20px;
    }

}

/** over ons media queries **/

@media (max-width: 1300px) {
    .about-us-container img {
        height: 300px;
    }
}

@media (max-width: 1100px) {
    .about-us-container img {
        height: 300px;
    }

    .about-us-text h3 {
        font-size: 24px;
    }

    .about-us-container {
        padding: 80px 5% 80px 5%;
    }
}

@media (max-width: 900px) {
    .about-us-container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 60px 5% 80px 5%;
    }

    .about-us-text {
        margin-left: 0px;
        margin-bottom: 50px;
    }
}

@media (max-width: 500px) {
    .about-us-container img {
        height: 250px;
    }
}

/** contact media queries **/

@media (max-width: 800px) {
    .contact-text {
        padding: 0px 5% 0px 5%;
    }

    .contact-possibility {
        margin: 0px 20px 0px 20px;
    }

    .contact-svg {
        height: 60px;
    }

    .contact-possibility p {
        margin: 0;
        color: grey;
        font-size: 10px;
    }

}