/*
Theme Name: Utak Divi-child
Theme URI: https://flx-services.fr/
Author: FLX
Author URI: https://flx-services.fr/
Template: Divi
Version: 1.0
*/

h1
{
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    font-size: 35px;
    color: #333333 !important;
    line-height: 1.3em;
}

h2
{
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #333333 !important;
    line-height: 1.3em;
}

h3
{
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #333333 !important;
    line-height: 1.3em;
}


.t89s-projects
{
    display: flex;
    flex-wrap: wrap;
    gap: 4em;
}

.t89s-projects .divi-project-item
{
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

.t89s-projects .divi-project-item .divi-project-link
{
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    display: block;
}

.t89s-projects .divi-project-item .divi-project-title
{
    margin-top: 20px;
}

.techs-marquee
{
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    /* --size: clamp(10rem, 1rem + 40vmin, 30rem); */
    --size: 100px;
    --gap: calc(var(--size) / 14);
    --duration: 60s;

    display: flex;
    margin-bottom: 18px;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.techs-marquee .marquee-content
{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

.marquee_reverse .marquee-content
{
    animation-direction: reverse;
    animation-delay: -3s;
}

.techs-marquee .marquee-item
{
    /* max-width: var(--size); */
    display: grid;
    place-items: center;
    width: var(--size);
    max-height: 90px;
    margin: 0 20px;
}

.techs-marquee .marquee-item img
{
    width: auto;
    max-height: 90px;
}

@keyframes scroll-x
{
    from
    {
        transform: translateX(var(--scroll-start));
    }

    to
    {
        transform: translateX(var(--scroll-end));
    }
}


.utak-contactform input,
.utak-contactform textarea,
.utak-contactform select,
.utak-contactform select::picker(select)
{
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    /*background-color: rgb(20 95 171 / 15%);
    color: rgb(151 225 255 / 80%);
    border-color: rgb(151 225 255 / 80%);*/
    font-size: 1.3em;
}

.utak-contactform select::picker(select)
{
    appearance: base-select;
}

.utak-contactform input:focus,
.utak-contactform textarea:focus,
.utak-contactform select:focus
{
    background-color: rgb(20 95 171 / 25%);
    border-color: #10698e;
    color: #333;
}

.utak-contactform label
{
    /*color: #f0f0f0;*/
}


.utak-blue-btn
{
    color: #FFFFFF !important;
    border-radius: 6px;
    font-size: 16px;
    background-image: linear-gradient(90deg, #042840 0%, #0a466a 100%);
    font-weight: 500;
    padding: .3em 1em;
    display: block;
    border:none;
}


.support-presta-block {
    border-radius: 20px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.support-presta-block.gold {
    border: 2px solid #D4AF37;
}

.support-presta-block.silver {
    border: 1px solid #94979a7a;
}
.support-presta-block.platinum {
    border: 1px solid #29cf8d74;
}

.support-presta-block.silver:hover {
    border: 1px solid #94979A;
}
.support-presta-block.platinum:hover {
    border: 1px solid #29cf8d;
}



.support-presta-block::before {
    content:'';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.support-presta-block:hover {
    border-width: 2px;
}

.support-presta-block:hover::before {
    opacity: 1;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }
    100% {
        transform: rotate(30deg) translateX(100%);
    }
}


.support-presta-block ul{
    list-style-type: none;
    line-height: 2.2em;
}

.support-presta-block li::before {
    content: "✓";
    position: absolute;
    left: -5px;
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.2em;
}

.support-presta-block.silver li::before {
    color: #94979A;
}
.support-presta-block.platinum li::before {
    color: #29cf8d;
}

.support-presta-block .not-included {
    color: #94979A;
    text-decoration: line-through;
    opacity: 0.7;
}
.support-presta-block .not-included::before {
    content: "✕";
    color: #94979A!important;
}