body {
    margin: 0;
    padding: 0;
    background: #111317;
    font-family: Hepta Slab;

}

.hider{
    position: absolute; 
    width:100%; 
    left: 0%; 
    float: right;
    transition: width 3s cubic-bezier(0, 0.5, 1, 0.5), left 3s cubic-bezier(0, 0.5, 1, 0.5);
}
#scrolling-line {
  stroke: #0077FF; /* Color of the line */
  stroke-width: 4; /* Width of the line */
  stroke-dasharray: 1000; /* Total length of the line */
  stroke-dashoffset: 1000; /* Initially, the line is hidden */
  transition: stroke-dashoffset 0.5s ease-in-out; /* Smooth transition on scroll */
}

.inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    width:100%;
}


.container{
    position: relative;
    width:100%;

}

.hider-inner{
    background-color: #111317; 
    width:100%; 
    height: 400px; 
    position: relative; 
    top: -400px;
}

.container-header{
    padding-bottom: 120px;
    padding-top: 80px;
}

.segment-title{
    border-radius: 20px 20px 0px 0px;
    background: #FFF;
    line-height: 40px;
    font-size: 22px;
    width: 200px;
    text-align: center;
}

.middle-segment {
    position: relative;
    width: 100%;
    padding-top: 120px !important;
    padding-bottom: 320px !important;
    height: 40px;
}

.fill-line {
    margin-top: 160px;
    position: relative;
    top: 0;
    left: 0;
    width: 0;
    height: 4px; /* Adjust the height of the filling line */
    background-color: #FFFFFF; /* Change the color of the filling line */
}

.ball{
    transition: all 0.5s ease;
}


.banner-content-title{
    font-weight: bold;
    font-size: 18px;
}

.explanation-banner{
    background-color: #FFF;
    width: fit-content;
    padding:20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    margin-left: auto;
    display: flex;
    gap:10px;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    align-items: center;
    margin-right: auto;
    text-align: center;
}

.segment{   
    border-top: 1px #FFF solid;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 1920px;
}

.case{
    display: flex;
    flex-direction: row;
    padding: 80px 5%;
    gap: 100px;
    align-items: center;
    justify-content: center;
}
.case-image{
    display: block;
    background-color: #FDFDFD;
    width: 350px;
    height: 350px;
}

.video-image{
    max-width: 350px; 
    height: 350px; 
    object-fit: contain
}

.case-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 350px;
    font-weight: 200;
    height: 400px;
    color: #FFF;
}

.reverse{
    flex-direction: row-reverse;
}

.case-text b{
    font-weight: 700;
}

h1{
    color: #FFF;
    text-align: center;
    font-family: Fira Mono;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

p{
    color: #FFF;

}

.switch-container{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: #FFF solid 2px;
    padding: 2px;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 140px;
    border-radius: 50px;
    margin-top: 20px;

}

.switch-button{
    color: #FFF;
    padding: 4px;
    padding-left: 15px;
    padding-right: 15px;
    border: #FFF solid 2px;
    border-radius: 50px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.active{
    color: #111317;
    background-color: #FFF;
    cursor: auto;
}


.title-content{
    padding: 0px 20%;
    text-align: center;
}

.workflow-img-mobile{
    display: none;
}

input[type=email], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  background-color: #111317;
  font-size: 20px;
    font-family: Fira Mono;
  color: white;
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

.contact-button{
    color: #FFF; 
    border: 2px solid #fff; 
    padding: 10px; 
    padding-left: 20px; 
    padding-right: 20px; 
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.contact-button:hover{
    color: #111317; 
    background-color: #fff;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #111317;
  color: white;
  padding: 12px 20px;
  border: 1px #FFF solid;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
    font-family: Fira Mono;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    background-color: #212327;
}

.form{
    color: #FFF;
    border-radius: 5px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    min-width: 350px;
    padding: 20px;
}


h2{
    color: #FFF;
    font-family: Fira Mono;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    line-height: normal;
}

.text-link {
    color:#FFF; 
    font-weight:bold; 
    align-self: flex-start;
}

.case-text-it-title{
    align-self: flex-start;
}

@media only screen and (max-width: 768px){
    .title-content{
        padding: 0px 5%;
       text-align: center;
    }


    
    .text-link {
        align-self: center;
    }

    .form{
        width: 350px;
    }
    .hider-inner{
        height: 400px;
        top: -400px;
    }

    .explanation-banner{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .case{
        flex-direction: column;
        gap: 40px;
        padding-bottom: 40px;
        padding-top: 40px;
        border-bottom: 1px solid white;
        margin-left: 10px;
        margin-right: 10px;
    }

    .case-text{
        height: fit-content;
        text-align: center;
        
    }

    .case-text-it-title{
        align-self: center;
    }

    .case-image{
        width: 275px;
        height: 275px;
    }

    .video-image{
        width: 275px;
        height: 275px;
    }

    .workflow-img-mobile{
        display: block;
    }
    .workflow-img{
        display: none;
    }
}