.intro {
    padding: 180px 0 90px;
    color: var(--color-blue);
    font-size: 2.2rem;
    line-height: 2.9rem;
    transform: translateY(100px);
    transition: 750ms;
    opacity: 0;
}

.intro.active {
    transform: translateY(0px);
    opacity: 1;
}

.introtxt{
    font-size: 8rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    padding: 0 10%;
}

.slogan{
    width: 90%;
    margin: 90px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}

.intro2 {
    padding: 60px 0;
    color: var(--color-blue);
    font-size: 4.6rem;
    font-weight: 600;
    line-height: 1.16;
    display: grid;
    grid-template-columns: 700px 1fr;
    transform: translateY(100px);
    transition: 750ms;
    opacity: 0;
}

.intro2.active {
    transform: translateY(0px);
    opacity: 1;
}

.intro2 h2{
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 3.2rem;
    margin-bottom: 60px;
}

@property --scroll-position {
	syntax: "<number>";
	inherits: true;
	initial-value: 0;
}
@property --scroll-position-delayed {
	syntax: "<number>";
	inherits: true;
	initial-value: 0;
}

section.image {
    animation: reveal ease-out both;
    animation-range: entry 20% exit 0%;
	animation-timeline: view();
}


section.image img{
    width: 100%;
    height: 900px;
    object-fit: cover;

    clip-path: inset(0% 100% 0% 100%);
    clip-path: inset(0% calc(100% - (var(--scroll-position-delayed) * 100%)) 0% calc(100% - (var(--scroll-position-delayed) * 100%)));
    transition: --scroll-position-delayed 0.25s linear;
}

@keyframes reveal {
    from {
        opacity: 0;
    }
	to {
        opacity: 1;
		--scroll-position: 1;
		--scroll-position-delayed: 1;
	}
}

a.explorewithicon {
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    gap: 16px;
    align-items: center;
    font-weight: 600;
}

a.explorewithicon span {
    width: 59px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #002147;
}

.cards-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
}

.animated-card {
    max-width: 400px;
    width: 100%;
    height: 97%;
    background-color: #fff;
    box-sizing: border-box;
    opacity: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px -10px rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 30px;
}

.animated-card img {
    width: 100%;
    aspect-ratio: 400 / 356;
    object-fit: cover;
}

.animated-card div {
    background-color: #F1EFE9;
    border-radius: 20px;
    margin-top: -60px;
    position: relative;
    padding: 20px;
    height: 55%;
    display: grid;
    grid-template-rows: 30px 66px 1fr 50px;
}

.animated-card div img {
    width: 43px;
}

.animated-card div img:last-child {
    width: 30px;
}

.animated-card h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 800;
    display: block;
    position: initial;
}

.animated-card div p {
    margin: 0 0 16px;
}

#seprotecai{
    background-color: #ececec;
    color: var(--color-darkblue);
    overflow: clip;
    padding-bottom: 200px;
    border-radius: 50px 50px 0 0;
}

.video-background {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video{
        position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100vh;
    width: auto;
    height: auto;
    transform: translateX(-40%) translateY(0%);
    object-fit: cover;
}



#seprotecai .content {
    padding: 50px 0;
    position: relative;
}

#seprotecai h3{
    font-size: 46px;
    font-weight: 600;
    max-width: 500px;
    line-height: 54px;
    margin-bottom: 100px;
}

#seprotecai p{
    max-width: 600px;
}

#seprotecai #help{
    display: flex;
    height: 70px;
    align-items: center;
    padding: 0  10px;
    border-radius: 40px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    right: 0;
    gap: 12px;
    width: 180px;
    font-size: 14px;
    font-weight: 700;
}

#seprotecai #help span{
    border: 10px solid #F2F6F8;
    border-radius: 50%;
}

#seprotecai #help img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

#seprotecai .slogan{
    width: 100%;
    margin: 150px auto;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

#seprotecai .cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

#seprotecai .cards > div > div{
    padding: 30px;
    border: 1px solid #D9D9D9;
    backdrop-filter: blur(50px);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform-style: preserve-3d;
    transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
    overflow: hidden;
}

#seprotecai .cards h4{
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
}

h4::after{
    display: none;
}

#seprotecai .cards img{
    max-width: 40px;
}

#seprotecai .cards a{
    width: 88px;
    height: 88px;
    background-color: rgba(255,255,255,0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#seprotecai .cards > div{
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -ms-transform: perspective(1000px);
    transform: perspective(1000px);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
}


#seprotecai .cards .front{
    transform: rotateY(0deg);
    background-color: #011E41CC;
    color: #ffffff;
    height: 100%;
}

#seprotecai .cards .back{
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    background-color: #92DEFFE5;
}

#seprotecai .cards > div:hover .front {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
}

#seprotecai .cards > div:hover .back{
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

#seprotecai .cards > div .front *{
    transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
}

#seprotecai .cards > div:hover .front *{
    transform: translateY(0%) translateX(-650px) scale(.88);
    transform-style: preserve-3d;
}

#seprotecai .cards > div .back *{
    transform: translateY(0%) translateX(650px) scale(.88);
    transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
}

#seprotecai .cards > div:hover .back *{
    transform: translateY(0%) translateX(0px) scale(1);
    transform-style: preserve-3d;
}

.faq{
    padding: 100px 0 80px;
    transform: translateY(100px);
    transition: 750ms;
    opacity: 0;
}

.faq.active{
    transform: translateY(0px);
    opacity: 1;
}

.faq .title{
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 2.2rem;
    line-height: 2.9rem;
}

.faq h2{
    font-size: 4.6rem;
    font-weight: 600;
    line-height: 5rem;
}

.faq .title div:last-child{
    padding-top: 150px;
}

.faq .text-list{
    padding-top: 0;
}

.faq .text-list ul{
    margin: 0;
}

.faq .text-list ul h3{
    position: relative;
    font-size: 3.8rem;
    padding: 40px 50px 40px 0;
    line-height: 4.2rem;
}

.faq .text-list ul h3::after{
    content: '+';
    position: absolute;
    right: 0;
    top:44px; 
}

.faq .text-list ul li:hover h3::after{
    content: '-';
}

.faq .text-list ul li:first-child{
    border:0;

}

.faq .text-list ul li:last-child{
    text-align: left;
    padding-top: 0;
}

section.slider-data{
    background-color: transparent;
    color: var(--color-white);
}

section.slider-data .content > *{
    max-width: 50%;
    margin-left: auto;
}

section.slider-data .content h3{
    margin-bottom: 60px;
}

section.slider-bottom .content > div.controls{
    border: 0;
}

section.slider-data .btn {
    color: var(--color-darkblue);
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
}

section.slider-bottom .slide {
    color: var(--color-white);
}

#opinions_canvas{
   background-color: var(--color-darkblue);
    position: relative;
}

#opinions_canvas canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

footer{
    background-color: var(--color-darkblue);
}

.cards .ash4::after{
    display: none;
}

.cards h3{
    line-height: 2rem;
    padding-top: 2rem;
}

.cards h2{
    font-size: 4.6rem;
    font-weight: 600;
    line-height: 1.16;
}

.cards h2.subtitle{
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 3.2rem;
    margin-top: 20px;
    margin-bottom: 60px;
}

@media only screen and (max-width: 1000px) {

    .cards-container{
        grid-template-columns: 1fr;
    }

    #seprotecai .cards {
        grid-template-columns: 1fr;
    }

    section.slider-data .content > * {
        max-width: 100%;
        margin-left: auto;
    }

    .slider-bottom .slide .content > div {
        width: 100%;
    }

}

@media only screen and (max-width: 700px) {

    

    #seprotecai h3 {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 50px;
        padding-top: 100px;
    }

    .faq .title {
        grid-template-columns: 1fr;
    }

    .faq .title div:last-child {
        padding-top: 0px;
    }

    .text-list ul h5 {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }

    section.slider-data{
        padding-bottom: 40px;
    }

    #opinions_canvas canvas{
        opacity: 0;
    }

    .introtxt{
        font-size: 4.2rem;
        line-height: 4.6rem;
    }

    .faq .text-list ul h3 {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }

    .intro2 {
        grid-template-columns: 1fr;
    }

    
}