@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');


:root{
    --color-4c4c4c: #5a5a5a;
    --color-bg-gray: #F6F6F6;
    --color-main: #E01300;
}

div{
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.3em;
    padding: 1.5em;
}

.huge{
    font-size: 5em;
    line-height: 1em;
    font-weight: 600;
}

.mb-05{
    margin-bottom: 0.5em;
}

.mt-1{
    margin-top: 1rem;
}

.mb-1{
    margin-bottom: 1rem;
}

.mb-2{
    margin-bottom: 2rem;
}

.mb-3{
    margin-bottom: 3rem;
}

.mb-4{
    margin-bottom: 4rem;
}

.mb-6{
    margin-bottom: 6rem;
}

.gray{
    color: #E5E5E5;
}

.black{
    color: black!important;
}

h1, .h1{
    font-size: 3em;
    line-height: 1.25em;
    font-weight: 600;
    letter-spacing: -0.6px;
    margin-top: 0;
}

h2{
    font-size: 2.6em;
    line-height: 1.25em;
    font-weight: 600;
    letter-spacing: -0.6px;
    margin-top: 0;
}

h5, h4, h3, h2, h1{
    margin-bottom: 0;
}

h3{
    color: black;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 0;
}

h4{
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.5em;
    margin-top: 0;
}

h6{
    color: var(--color-4c4c4c);
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 0;
    margin-bottom: 0;
}


h5{
    color: var(--color-4c4c4c);
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 0;
}

p{
    color: var(--color-4c4c4c);
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 0;
    letter-spacing: 0.2px;
}

.container{
    max-width: 1300px;
    position: relative;
    display: block;
}

.cols-2, .cols-3 {
    display: flex;
    gap: 2em;
}

.cols-2-1, .cols-1-2 {
    display: flex;
    gap: 1em;
}

.cols-2 > div, .cols-3 > div{
    flex: 1;
    box-sizing: border-box;
}

.cols-2-1 > div:last-child {
    flex: 1;
    box-sizing: border-box;
}

.cols-2-1 > div:first-child{
    flex: 0 0 auto;
    box-sizing: border-box;
}

.cols-1-2 > div:last-child {
    flex: 0 0 auto;
    box-sizing: border-box;
}

.cols-1-2 > div:first-child{
    flex: 1;
    box-sizing: border-box;
}

.max-text{
    max-width: 980px;
    width: 80%;
}

.max-image{
    position: relative;
    display: block;
}

.max-image img{
    width: 100%;
    height: auto;
}

.toggle{
    display: none;
    opacity: 0;
    transition: 1s;
}

.active .toggle{
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.icon svg{
    width: 2em;
    height: auto;
    color: var(--color-main);
}

.main-color{
    color: var(--color-main);
}

.center{
    margin: 0 auto;
}

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

#navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.languages{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5em;
    text-align: center;
}

.languages li a{
    font-size: 0.8em;
    font-weight: 500;
    text-decoration: none;
    color: black;
    padding: 4px 8px;
}

.languages li a:hover{
    text-decoration: underline;
}

.languages li.active a{
    color: white;
    background-color: black;
}

#hero{
    text-align: center;
    margin-top: 8%;
    margin-bottom: 8%;
}

#intro .info{
    display: block;

}

#intro .max-image .box{
    width:35%;
    position: absolute;
    bottom: 2em;
    padding: 2em 2em;
    box-sizing: border-box;
    left: 2em;
    background-color: var(--color-bg-gray);
    min-width: 500px;
}

#cases{

}

#cases .image {
    background-image: url('/img/ecommerce-mini.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 300px;
}

#cases .image.o1{
    background-image: url('/img/ecommerce-mini.jpg');
}

#cases .image.o2{
    background-image: url('/img/travel-mini.jpg');
}

#cases .image.o3{
    background-image: url('/img/energy-mini.jpg');
}

#cases .image.o4{
    background-image: url('/img/healthcare-mini.jpg');
}

.description .content {
    background-color: var(--color-bg-gray);
    min-height: 800px;
    box-sizing: border-box;
}

.description .content p{
    color: var(--color-4c4c4c);
}

#cases ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

#cases ul li{
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 2em;
    padding-right: 1em;
    margin-bottom: 0;
    border-bottom: 1px solid #E5E5E5;
}

#cases ul li:last-child{
    border-bottom: none;
}

#cases li:first-child{
    padding-top: 2em;
}

#cases ul li.active .icon svg{
    transform: rotate(90deg);
}

#cases ul li.active:hover{
    background: none;
}

#cases ul li:hover{
    background: #f1f1f1;
    cursor: pointer;
}

#cases li.active .max-text{
    display: block;
    padding: 1em 0;
}

#cases .labels{

}

#cases .labels span{
    font-size: 0.9em;
    font-weight: 300;
    margin-right: 1em;
    color: var(--color-4c4c4c);
}

#cases .labels span strong{
    margin-right: 0.3em;
    color: #E5E5E5;
}

#accelerate .cols-3{
    gap: 3em;
}

#faq ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

#faq ul li{
    padding: 0.5em 1.5em;
    margin-bottom: 1em;
    background-color: var(--color-bg-gray);
    display: block;

}

#faq ul li:hover{

}


#faq ul li.active .icon svg{
    transform: rotate(45deg);
}

#faq ul li:hover{
    background: #f1f1f1;
    cursor: pointer;
}

#faq ul li h6{
    margin: 0;
    line-height: 2.4em;
    font-size: 1em;
}

#faq .max-text{
    max-width: 60%;
    min-width: 400px;
}

#faq .max-text p{
    font-weight: 300;
}

#footer{
    background: black;
}

#footer .cols {
    display: flex;
    width: 100%;
}

#footer .col1 {
    flex: 0 0 70%;
    box-sizing: border-box;
}

#footer .col2 {
    flex: 0 0 30%;
    box-sizing: border-box;
    position: relative;
}

#footer video {
    width: 100%;
    height: auto;
}

#footer .col2 .content {
    background-color: black;
    padding: 2em;
    color: white!important;
}

#footer *{
    color: white!important;
}

#footer .address{
    position: absolute;
    bottom: 2em;
}

#footer small{
    font-size: 0.9em;
}

#footer svg{
    width: 2em;
    height: 2em;
}

@media (max-width: 720px) {
    h1{
        font-size: 1.6em;
    }

    h6{
        font-size: 1em;
    }

    .huge{
        font-size: 3em;
    }

    .center{
        margin: 0 0;
    }

    .max-text, #faq .max-text{
        width: 100%;
        min-width: 100%;
    }

    #hero{
        text-align: left;
    }

    #intro .max-image .box{
        position: relative;
        width: 100%;
        min-width: 100%;
        left: auto;
    }

    .cols-2, .cols-3{
        display: block;
    }

    .cols-2 > div, .cols-3 > div{
        margin-bottom: 1em;
    }

    #cases ul li{
        padding-left: 1em;
    }

    #faq ul li h6{
        line-height: 1.5em;
    }

    #footer video {
        display: none;
    }

    #footer .cols .col1{
        display: none;
    }

    #footer .cols > div{
        flex: none;
        width: 100%;
        display: block;
    }

    #footer .address{
        position: relative;
        display: block;
        bottom: 0;
        margin-top: 2em;
    }
}