@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,600;12..96,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,800&family=Fraunces:opsz,wght@9..144,700;9..144,900&family=Quicksand:wght@400;600;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'Quicksand', sans-serif;
}

:root{
    --gray-dark: #212429;
    --white: white;
    --green: #0fa;
    --blue: #0bf;
    --yellow: rgb(203, 203, 63);
    --blue-dark: #0a67c2;
    --purple: #9c42f5;
    --box-shadow-card: 8px 8px 24px 0 rgba(9,13,20,0.4),-4px -4px 8px 0 rgba(224,224,255,0.04),0 1px 1px 0 rgba(9,13,20,0.4);
    --border-card: 1px solid rgba(245,247,250,0.06);
    --linear-gradient-card-blur: linear-gradient(101deg,rgba(245,247,250,.12),rgba(245,247,250,.06) 52%,rgba(245,247,250,0));
    --linear-gradient-green-blue-purple: linear-gradient(114deg,#0fa,#4579f5 53%,#9c42f5);
    --blur-card: blur(40px);
}

body{
    background-color: var(--gray-dark);
    color: var(--white);
    overflow-x: hidden;
}

body h1,
body h2,
body h3,
body h4,
body h5{
    font-family: 'Bricolage Grotesque', sans-serif;
}

body h1{
    font-size: 5.1rem;
    line-height: 70px;
    margin-bottom: 30px;
}

body h2{
    font-size: 3rem;
    line-height: 40px;
    margin-bottom: 30px;
}

body h3{
    font-size: 2.2rem;
    line-height: 35px;
    margin-bottom: 20px;
}

body h4{
    font-size: 1.5rem;
}

body p,
body a{
    font-size: 19px;
    opacity: .8;
    color: currentColor;
    font-weight: 400;
}

body p{
    margin-bottom: 20px;
}

body a{
    cursor: pointer;
}

body a:hover{
    opacity: 1;
}

body::-webkit-scrollbar,
.sec__mn__responsive::-webkit-scrollbar{
    width: 8px;
}

body::-webkit-scrollbar-thumb,
.sec__mn__responsive::-webkit-scrollbar-thumb{
    background-color: rgba(255, 255, 255, 0.334);
    border-radius: 50px;
}

body::-webkit-scrollbar-thumb:hover,
.sec__mn__responsive::-webkit-scrollbar-thumb{
    background-color: rgba(255, 255, 255, 0.648);
}

@media screen and (max-width: 600px){
    body h1{
        font-size: 3.6rem;
        line-height: 50px;
        margin-bottom: 20px;
    }
    body h2{
        font-size: 2.7rem;
    }
    body p{
        font-size: 17px;
    }   
}

/* sec nex */

.nex{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--linear-gradient-green-blue-purple);
    z-index: 200;
    top: 100%;
    left: 0;
    transition: all .5s ease-in-out;
}

.nex.secNexActive{
    top: 0%;
}

/* sec anm */

.sec__anm{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--linear-gradient-green-blue-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    top: -100%;
    animation: sec__anmm 3s;
    z-index: 200;
}

@keyframes sec__anmm {
    0%{
        top: 0%;
    }
    80%{
        top: 0%;
    }
    100%{
        top: -100%;
    }
}

.sec__anm__opacity{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    animation: opacity 2.5s;
    opacity: 0;
}

@keyframes opacity {
    0%{
        opacity: 0;
    }
    20%{
        opacity: 1;
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.sec__anm__number{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    border-radius: 60%;
}

.sec__anm__number::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: rotate 2s infinite linear;
}

@keyframes rotate {
    100%{
        transform: rotate(360deg);
    }
    
}

.sec__anm__number::before{
    position: absolute;
    content: "100";
    font-size: 8rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    animation: bf__anm 2.5s;
}

@keyframes bf__anm {
    0%{
        content: "0";
    }
    1%{
        content: "1";
    }
    2%{
        content: "2";
    }
    3%{
        content: "3";
    }
    4%{
        content: "4";
    }
    5%{
        content: "5";
    }
    6%{
        content: "6";
    }
   7%{
        content: "7";
    }
    8%{
        content: "8";
    }
    9%{
        content: "9";
    }
    10%{
        content: "10";
    }
    11%{
        content: "11";
    }
    12%{
        content: "12";
    }
    13%{
        content: "13";
    }
    14%{
        content: "14";
    }
    15%{
        content: "15";
    }
    16%{
        content: "16";
    }
    17%{
        content: "17";
    }
    18%{
        content: "18";
    }
    19%{
        content: "19";
    }
    20%{
        content: "20";
    }
    21%{
        content: "21";
    }
    22%{
        content: "22";
    }
    23%{
        content: "23";
    }
    24%{
        content: "24";
    }
    25%{
        content: "25";
    }
    26%{
        content: "26";
    }
    27%{
        content: "27";
    }
    28%{
        content: "28";
    }
    29%{
        content: "29";
    }
    30%{
        content: "30";
    }
    31%{
        content: "31";
    }
    32%{
        content: "32";
    }
    33%{
        content: "33";
    }
    34%{
        content: "34";
    }
    35%{
        content: "35";
    }
    36%{
        content: "36";
    }
    37%{
        content: "37";
    }
    38%{
        content: "38";
    }
    39%{
        content: "39";
    }
    40%{
        content: "40";
    }
    41%{
        content: "41";
    }
    42%{
        content: "42";
    }
    43%{
        content: "43";
    }
    44%{
        content: "44";
    }
    45%{
        content: "45";
    }
    46%{
        content: "46";
    }
    47%{
        content: "47";
    }
    48%{
        content: "48";
    }
    49%{
        content: "49";
    }
    50%{
        content: "50";
    }
    51%{
        content: "51";
    }
    52%{
        content: "52";
    }
    53%{
        content: "53";
    }
    54%{
        content: "54";
    }
    55%{
        content: "55";
    }
    56%{
        content: "56";
    }
    57%{
        content: "57";
    }
    58%{
        content: "58";
    }
    59%{
        content: "59";
    }
    60%{
        content: "60";
    }
    61%{
        content: "61";
    }
    62%{
        content: "62";
    }
    63%{
        content: "63";
    }
    64%{
        content: "64";
    }
    65%{
        content: "65";
    }
    66%{
        content: "66";
    }
    67%{
        content: "67";
    }
    68%{
        content: "68";
    }
    69%{
        content: "69";
    }
    70%{
        content: "70";
    }
    71%{
        content: "71";
    }
    72%{
        content: "72";
    }
    73%{
        content: "73";
    }
    74%{
        content: "74";
    }
    75%{
        content: "65";
    }
    76%{
        content: "76";
    }
    77%{
        content: "77";
    }
    78%{
        content: "78";
    }
    79%{
        content: "79";
    }
    80%{
        content: "80";
    }
    81%{
        content: "81";
    }
    82%{
        content: "82";
    }
    83%{
        content: "83";
    }
    84%{
        content: "84";
    }
    85%{
        content: "85";
    }
    86%{
        content: "86";
    }
    87%{
        content: "87";
    }
    88%{
        content: "88";
    }
    89%{
        content: "89";
    }
    90%{
        content: "90";
    }
    91%{
        content: "91";
    }
    92%{
        content: "92";
    }
    93%{
        content: "93";
    }
    94%{
        content: "94";
    }
    95%{
        content: "95";
    }
    96%{
        content: "96";
    }
    97%{
        content: "97";
    }
    98%{
        content: "98";
    }
    99%{
        content: "99";
    }
    100%{
        content: "100";
    }

}

.sec__anm__linea{
    width: 400px;
    height: 16px;
    border: 1px solid white;
}

.sec__anm__linea span{
    display: flex;
    height: 100%;
    width: 100%;
    background-color: white;
    animation: sec__anm__linea 2.5s;
}

@keyframes sec__anm__linea {
    0%{
        width: 0%;
    }
    
}

@media screen and (max-width: 500px) {
    .sec__anm__opacity{
        padding: 20px;
        width: 100%;
    }
    .sec__anm__number{
        width: 200px;
        height: 200px;
    }
    .sec__anm__number::before{
        
        font-size: 5rem;
    }
    .sec__anm__linea{
        width: 100%;
    }
    
}

/* header */

header{
    position: sticky;
    top: 0%;
    width: 100%;
    z-index: 100;
    /* animation: header 1s;
    animation-delay: 2.5s; */
}

@keyframes header {
    0%{
        opacity: 0;
        transform: translateY(-200px);
    }
    
}

.header__blur{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
    z-index: -1;
}

.header__blur.headerActive{
    background-color: rgba(255, 255, 255, 0.082);
    backdrop-filter: var(--blur-card);
}


header nav{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
}

header nav ul{
    display: flex;
    align-items: center;
}

header nav ul:nth-child(1) li:nth-child(1) a{
    opacity: 1;
    font-weight: bold;
    padding: 0px 20px 0px 0px !important;
    transform: translateY(-0px);
}

header nav ul:nth-child(1) li:nth-child(1) .btn__hover ul li span{
    font-family: 'Bricolage Grotesque', sans-serif;
}

header nav ul:nth-child(1) li:nth-child(1) a .btn__hover__overflow ul li span img {
    width: 40px;
}

header nav ul:nth-child(1) li:nth-child(1) a .btn__hover__overflow{
    height: 48px;
    font-size: 26px;
    line-height: 34px;
}

header nav ul:nth-child(1) li:nth-child(1) a .btn__hover__overflow ul{
    display: flex;
    align-items: center;
}

header nav ul:nth-child(1) li:nth-child(1) a:hover .btn__hover__overflow ul li span{
    transform: translateY(-45px);
}
header nav ul:nth-child(1) li:nth-child(1) a .btn__hover__overflow ul li:nth-child(1) span{
    padding: 0 5px 0 0;
}



header nav ul:nth-child(1) li a{
    padding: 0px 15px !important;
}

header nav ul:nth-child(2) li a{
    opacity: 1;
    background: var(--gray-dark);
    border-radius: 6px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.526);
    transition: all .3s;
}

#header__btn__rigth.headerBtnRigthActive{
    background: var(--linear-gradient-green-blue-purple);
    box-shadow: 4px 7px 14px #0a66c284;

}

.btn__hover{
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 20px;
}

header nav ul:nth-child(1) li:nth-child(2) .btn__hover img{
    margin: 0 0 0 5px;
    transform: translateY(1px);
    transition: all .4s cubic-bezier(.175,.885,.32,1.275);
}

header nav ul:nth-child(1) .header__li__info:hover .btn__hover img{
    transform: rotate(180deg);
}


.btn__hover .btn__hover__overflow{
    height: 19px;
    line-height: 18px;
    overflow: hidden;
    display: block;
}

.btn__hover .btn__hover__overflow ul{
    display: flex;
    align-items: center;
}

.btn__hover .btn__hover__overflow ul li .btn__hover__opacity{
    opacity: 0;
}

.btn__hover .btn__hover__overflow ul li span{
    display: block;
    transition: all .3s;
}

.btn__hover:hover .btn__hover__overflow ul li span{
    transform: translateY(-18px);
}

.btn__hover .btn__hover__overflow ul li:nth-child(2) span{
    transition-delay: 15ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(3) span{
    transition-delay: 30ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(4) span{
    transition-delay: 45ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(5) span{
    transition-delay: 60ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(6) span{
    transition-delay: 75ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(7) span{
    transition-delay: 90ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(8) span{
    transition-delay: 105ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(9) span{
    transition-delay: 120ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(10) span{
    transition-delay: 135ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(11) span{
    transition-delay: 150ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(12) span{
    transition-delay: 165ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(13) span{
    transition-delay: 180ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(14) span{
    transition-delay: 195ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(15) span{
    transition-delay: 110ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(16) span{
    transition-delay: 125ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(17) span{
    transition-delay: 140ms;
}

.btn__hover .btn__hover__overflow ul li:nth-child(18) span{
    transition-delay: 155ms;
}

.header__li__info{
    padding: 20px 0px;
    z-index: 10;
}

.header__info{
    position: absolute;
    top: 100%;
}

.header__info{
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    padding: 20px;
    border-radius: 20px;
    background: var(--linear-gradient-card-blur);
    box-shadow: var(--box-shadow-card);
    border: var(--border-card);
    backdrop-filter: var(--blur-card);
    overflow: hidden;
    z-index: 5;
    transition: all .2s;
}

header nav ul:nth-child(1) .header__li__info:hover .header__info{
    opacity: 1;
    transform: scaleY(1);
}

.header__info ul{
    transform: translateY(20px);
    transition: all .4s;
}


header nav ul:nth-child(1) .header__li__info:hover .header__info ul{
    transform: translateY(0px);
}

.header__info li{
    transform: translateY(20px);
    opacity: 0;
    transition: all .3s;
}

.header__info li:nth-child(2){
    transition-delay: 20ms;
}

.header__info li:nth-child(3){
    transition-delay: 40ms;
}

.header__info li:nth-child(4){
    transition-delay: 60ms;
}

.header__info li:nth-child(5){
    transition-delay: 80ms;
}

.header__info li:nth-child(6){
    transition-delay: 100ms;
}

.header__info li:nth-child(7){
    transition-delay: 120ms;
}

.header__info li:nth-child(8){
    transition-delay: 140ms;
}

.header__info li:nth-child(9){
    transition-delay: 160ms;
}

.header__info li:nth-child(10){
    transition-delay: 180ms;
}

.header__info li:nth-child(11){
    transition-delay: 200ms;
}

.header__info li:nth-child(12){
    transition-delay: 220ms;
}

.header__info li:nth-child(13){
    transition-delay: 240ms;
}

.header__info li:nth-child(14){
    transition-delay: 260ms;
}

.header__info li:nth-child(15){
    transition-delay: 280ms;
}

header nav ul:nth-child(1) .header__li__info:hover .header__info li{
    opacity: 1;
    transform: translateY(0px);
}

.header__info__btn{
    background-color: transparent !important;
    box-shadow: none !important;
    text-align: left;
}


.icon__mn{
    opacity: .7;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
    margin: 0 0 0 15px;
}

.icon__mn span{
    width: 25px;
    height: 1px;
    background-color: white;
    transition: all .3s;
}

.icon__mn:hover{
    opacity: 1;
}

.iconMnSpanActive0{
    transform: rotate(45deg) translateY(7px) translateX(5px);
}

.iconMnSpanActive1{
    opacity: 0;
    transform: translateX(-5px);
}

.iconMnSpanActive2{
    transform: rotate(-45deg) translateY(-7px) translateX(5px);
}

@media screen and (max-width: 800px){
    header{
        height: 79px;
        border-bottom: 1px solid rgb(152, 152, 152);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header nav{
        width: 100%;
    }
    header nav ul:nth-child(1) li:nth-child(2) .btn__hover,
    header nav ul:nth-child(1) li:nth-child(3) .btn__hover,
    header nav ul:nth-child(1) li:nth-child(4) .btn__hover,
    header nav ul:nth-child(1) li:nth-child(5) .btn__hover{
        display: none;
    }
    .icon__mn{
        display: flex;
    }
    
}

/* sec menu responsive */

.sec__mn__responsive{
    transform: scaleY(0);
    display: none;
    transform-origin: top;
    position: fixed;
    width: 70%;
    height: calc(100vh - 80px);
    background: var(--linear-gradient-card-blur);
    backdrop-filter: var(--blur-card);
    z-index: 100;
    bottom: 0;
    padding: 40px 20px;
    overflow-y: scroll;
    opacity: 0;
    transition: all .3s;
}

.sec__mn__responsive.secMnResponsiveActive{
    opacity: 1;
    transform: scaleY(1);
}

.sec__mn__responsiveUl{
    opacity: 0;
    transform: translateY(50px);
    transition: all .3s;
    transition-delay: .2s;
}

.sec__mn__responsiveUl.secMnResponsiveUlActive{
    opacity: 1;
    transform: translateY(0px);
}

.sec__mn__responsive ul li a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0px;
    transition: all .2s;
}

.sec__mn__responsive ul li a:hover{
    transform: translateX(5px);
}

.sec__mn__responsive__info{
    padding: 20px;
    border-radius: 20px;
    background: var(--linear-gradient-card-blur);
    border: var(--border-card);
    backdrop-filter: var(--blur-card);
    box-shadow: var(--box-shadow-card);
}

#mnResponsiveBtnLinear{
    opacity: 1;
    width: 100%;
    display: flex;
    padding: 15px 20px;
    border-radius: 7px;
    justify-content: center;
    align-items: center;
    background: var(--linear-gradient-green-blue-purple);
    box-shadow: 4px 10px 20px #0a66c29e;
}

#mnResponsiveBtnLinear:hover{
    transform: translateX(0px) translateY(-3px);
    box-shadow: 4px 10px 20px #0a66c2b0;
}

.sec__mn__responsive ul .footer__flex{
    margin-top: 20px;
}

.sec__mn__responsive ul .footer__card:nth-child(2),
.sec__mn__responsive ul .footer__card:nth-child(3){
    width: 100%;
}

.sec__mn__responsive ul .footer__card .footer__card__tt{
    width: 70%;
}

@media screen and (max-width: 800px){
    .sec__mn__responsive{
        display: block;
    }
}

@media screen and (max-width: 550px){
    .sec__mn__responsive .footer__card{
        flex-direction: column;
        align-items: start;
    }
    .sec__mn__responsive .footer__card__tt{
        width: 100% !important;
    }
    
}


/* sec max width */

.sec__max__width{
    max-width: 1280px;
    padding: 0px 20px;
    margin: 0 auto;
    animation: anm__entrada .8s;
    animation-delay: 2.4s;
}

@keyframes anm__entrada {
    0%{
        opacity: 0;
        transform: translateY(500px) scale(.8);
    }
    
}

@media screen and (max-width: 1280px){
    .sec__max__width{
        overflow: hidden;
    }
    
}

/* sec hero */

.sec__hero{
    margin-top: 140px;
    display: flex;
}

.sec__hero__tt{
    position: relative;
    width: 50%;
    z-index: 10;
}

.sec__hero__tt h1{
    position: relative;
}

.sec__hero__tt h1 svg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.sec__hero__tt span{
    position: relative;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.sec__hero__tt span svg{
    position: absolute;
    left: -30%;
    top: 0%;
    width: 150%;
}

 .sec__hero__tt a,
 .sec__experience__tt a{
    opacity: 1;
    background: var(--linear-gradient-green-blue-purple);
    border-radius: 8px;
    width: 220px;
    padding: 15px 20px;
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    box-shadow: 4px 10px 20px #0a66c29e;
    transition: all .2s;
 }

 .sec__hero__tt a:hover,
 .sec__experience__tt a:hover{
    box-shadow: 4px 10px 30px #0a66c2b6;
 }

 .sec__hero__tt a svg,
 .sec__experience__tt a svg{
    width: 20px;
    transform: rotate(45deg);
 }

 .sec__hero__tt a:nth-child(4){
    background: var(--gray-dark);
    border: 1px solid #0a66c2bb;
    margin: 0 0 0 10px;
 }

 .sec__hero__tt__bottom{
    margin-top: 30px;
 }

 .sec__hero__tt__bottom ul{
    display: flex;
    align-items: center;
    gap: 10px;
 }

 .sec__hero__tt__bottom ul li{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(74,74,74,.0902);
    transition: all .3s;
    backdrop-filter: var(--blur-card);
    box-shadow: 5px 5px 24px 0 rgba(9,13,20,.4),-4px -4px 8px 0 rgba(224,224,255,.04),0 1px 1px 0 rgba(9,13,20,.4)
 }


 .sec__hero picture{
    position: relative;
    width: 50%;
    height: 700px;
    background-image: url(../img/bg-hero.webp);
    background-position-y: 0%;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: translateY(-200px);
    display: flex;
    justify-content: start;
    align-items: end;

 }

 .sec__hero picture img{
    width: 200%;
    transform: translateX(-165px) translateY(100px);
    animation: hero__y 5.5s infinite;
 }

 @keyframes hero__y {
    0%,
    100%{
      padding: -15p 0px;
    }
    50%{
      padding: 30px 0px;
    }
    
}


 @media screen and (max-width: 1050px){
    .sec__hero picture video{
        transform: translateX(0px);
    }
 }

 @media screen and (max-width: 990px){
    .sec__hero{
        flex-direction: column;
        margin-bottom: 120px;
    }
    .sec__hero__tt__bottom{
        display: flex;
        justify-content: center;
    }
    .sec__hero__tt{
        width: 100%;
        text-align: center;
    }
    .sec__hero picture{
        width: 100%;
        transform: translate(0, -20px);
        background-size: contain;
        background-position-x: 100%;

    }
    .sec__hero picture video{
        width: 80%;
    }
 }

 @media screen and (max-width: 800px){

    .sec__hero picture video{
        width: 100%;
        transform: translateX(-100px);
    }
 }

 @media screen and (max-width: 600px){
    .sec__hero__tt h1 span svg{
        width: 150%;
        transform: translateY(-20px);
    }
    .sec__hero__tt a{
        width: calc(50% - 10px);
    }
    .sec__hero picture{
        height: 90vw;
    }
    .sec__hero picture img{
        width: 100%;
        transform: translateX(-80px) translateY(20px);
    }
 }

/* sec experiencia */

.sec__experience{
     margin-top: -100px;
     display: flex;
     flex-wrap: wrap;
 }

.sec__experience__block__top{
    width: 100%;
    display: flex;
    gap: 20px;
}

.sec__experience__card{
    width: 50%;
    padding: 24px;
    border-radius: 24px;
    background: var(--linear-gradient-card-blur);
    backdrop-filter: var(--blur-card);
    border: var(--border-card);
    box-shadow: var(--box-shadow-card);
}

.sec__experience__card:hover{
    background: var(--linear-gradient-green-blue-purple);
}

.sec__experience__card__icon{
    width: 60px;
    height: 60px;
    background-color: var(--purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.sec__experience__block__top .sec__experience__card:nth-child(1) h3,
.sec__experience__block__top .sec__experience__card:nth-child(1) p span{
    color: var(--purple);
}

.sec__experience__block__top .sec__experience__card:nth-child(2) .sec__experience__card__icon{
    background-color: var(--blue);
}

.sec__experience__block__top .sec__experience__card:nth-child(2) h3,
.sec__experience__block__top .sec__experience__card:nth-child(2) p span{
    color: var(--blue);
}

.sec__experience__tt{
    position: relative;
    width: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;

}

.sec__experience__tt img{
    position: absolute;
    bottom: 0%;
    right: -20%;
}

.sec__experience__flex{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 120px;
}

.sec__experience__flex__tt{
    width: 100%;
    flex-basis: 100%;
}

.sec__experience__flex__tt span{
    width: 400px;
    display: inline-flex;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.sec__experience__flex .sec__experience__card{
    width: calc(33% - 10px);
}

.sec__experience__flex .sec__experience__card:nth-child(2) .sec__experience__card__icon{
    background-color: var(--yellow);
}

.sec__experience__flex .sec__experience__card:nth-child(2) .sec__experience__card__icon svg path{
    fill: var(--gray-dark);
}

.sec__experience__flex .sec__experience__card:nth-child(2) h3{
    color: var(--yellow);
}

.sec__experience__flex .sec__experience__card:nth-child(3){
    transform: translateY(-40px);
}

.sec__experience__flex .sec__experience__card:nth-child(3) .sec__experience__card__icon{
    background-color: var(--green);
}

.sec__experience__flex .sec__experience__card:nth-child(3) .sec__experience__card__icon svg path{
    fill: var(--gray-dark);
}

.sec__experience__flex .sec__experience__card:nth-child(3) h3{
    color: var(--green);
}

.sec__experience__flex .sec__experience__card:nth-child(4) h3{
    color: var(--purple);
}

.sec__experience__flex:nth-child(4){
    margin-top: 20px;
}

.sec__experience__flex:nth-child(4) .sec__experience__flex__tt{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.sec__experience__flex:nth-child(4) .sec__experience__flex__tt span{
    width: 100%;
}

.sec__experience__flex:nth-child(4) .sec__experience__card h4{
    opacity: .7;
    margin-bottom: 10px;
}

.sec__experience__cicle1{
    position: absolute;
    display: block;
    width: 155px;
    height: 155px;
    top: 76px;
    left: -65px;
    border-radius: 50%;
    background-image: linear-gradient(112.49deg, #12c2e9 1.05%, #c471ed 54.08%, #f64f59 99.89%);
    transform: rotate(-180deg);
    z-index: -1;
}

.sec__experience__cicle2{
    display: block;
    position: absolute;
    width: 223px;
    height: 223px;
    border-radius: 50%;
    z-index: -1;
    right: -80px;
    bottom: -28px;
    background: linear-gradient(112.49deg, #f0c 1.05%, #339 99.89%);
    transform: matrix(-1,0,0,1,0,0);
}

.sec__experience__cicle3,
.sec__expernce__tt__circle2{
    display: block;
    position: absolute;
    width: 273px;
    height: 273px;
    border-radius: 50%;
    z-index: -1;
    right: 300px;
    top: 50%;
    background-image: linear-gradient(135deg, #6f0, #16b862 52%, #00858f);
}

.sec__experience__cicle4{
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    display: block;
    width: 322px;
    height: 322px;
    top: 40px;
    left: -200px;
    background-image: linear-gradient(112.49deg, #f0c 1.05%, #339 99.89%);
}

.sec__experience__cicle5{
    display: block;
    position: absolute;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    z-index: -1;
    top: 28px;
    left: 460px;
    background: linear-gradient(112.49deg, #ee0979 1.05%, #ff6a00 99.89%);
}

.sec__experience__cicle6,
.sec__expernce__tt__circle1{
    display: block;
    position: absolute;
    width: 221px;
    height: 221px;
    border-radius: 50%;
    z-index: -1;
    right: -78px;
    bottom: -35px;
    background: linear-gradient(112.49deg, #0fa 1.05%, #4579f5 54.08%, #9c42f5 99.89%);
}

.sec__expernce__tt__circle1{
    right: 90%;
    top: 0;
}

.sec__expernce__tt__circle2{
    top: 130%;
    width: 200px;
    height: 200px;
}


@media screen and (max-width: 1050px){
    .sec__experience__flex .sec__experience__card{
        width: calc(32.9% - 10px);
    }
}

@media screen and (max-width: 880px){
    .sec__experience__flex{
        justify-content: center;
    }
    .sec__experience__flex .sec__experience__card{
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 600px){
    .sec__experience__flex .sec__experience__card{
        width: calc(100%);
    }
    .sec__experience__block__top{
        display: flex;
        flex-wrap: wrap;
    }
    .sec__experience__card{
        width: 100%;
    }
    .sec__experience__flex .sec__experience__card:nth-child(3){
        transform: translateY(0px);
    }
    .sec__experience__flex:nth-child(3),
    .sec__experience__flex:nth-child(4){
        margin-top: 80px;
    }
    .sec__experience__flex:nth-child(4) .sec__experience__flex__tt{
        margin-bottom: 0px;
    }

}

 /* section 2*/
 
.sec__2{
    position: relative;
    width: 100%;
    margin-top: 120px;
}

.sec__2__tt,
.sec__3__tt{
    text-align: center;
}

.sec__2__tt p,
.sec__3__tt p,
.sec__4__tt p,
.footer__tt p:nth-child(1),
.sec__experience__tt p:nth-child(1),
.sec__experience__flex__tt p{
    display: inline-flex;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
    background-color: #0a66c21e;
    padding: 1px 10px;
    border-radius: 30px;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 10px;
}


.sec__2__card{
    cursor: default;
    position: relative;
    width: 100%;
    padding: 40px;
    border-radius: 24px;
    background: rgba(245,247,250,0);
    box-shadow: var(--box-shadow-card);
    border: var(--border-card);
    backdrop-filter: var(--blur-card);
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.sec__2__card:hover{
    background: var(--linear-gradient-green-blue-purple);
}

#sec__2__card__1{
    margin-bottom: 20px;
}

.sec__2__card::before{
    position: absolute;
    content: "";
    width:550px;
    height:550px;
    right: 10%;
    top: -170%;
    background: linear-gradient(to right, rgb(222, 91, 255), rgb(86, 91, 207));
    border-radius: 50%;
    z-index: -2;
    filter: blur(40px);
}

.sec__2__card::after{
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    right: -5%;
    top: 20%;
    background: rgb(45, 215, 173);
    border-radius: 50%;
    z-index: -2;
    filter: blur(40px);
}

.sec__2__card__ctn__img__tt{
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.sec__2__card__ctn__img__tt h3{
    margin-bottom: 0px;
}

.sec__2__card__ctn__img__tt img{
    width: 100px;
}



.sec__2__card__ctn__img__tt a{
    opacity: .8;
    color: currentColor;
    display: flex;
    align-items: center;
}

.sec__2__card__ctn__img__tt a img{
    width: 30px;
}

.sec__2__card p{
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
}

.sec__2__flex{
    display: flex;
    gap: 20px;
}

.sec__2 .sec__2__flex .sec__2__card:nth-child(1){
    width: 30%;
}

.sec__2 .sec__2__flex .sec__2__card:nth-child(1)::after{
    width: 600px;
    height: 600px;
    left: -70%;
    top: 40%;
    background: linear-gradient(to top left,rgb(156, 184, 225) 50%, rgb(0, 140, 255));
}

.sec__2__flex__flexbox{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sec__2__flex__flexbox .sec__2__card:nth-child(1){
    flex-basis: 100%;
}

.sec__2__flex__flexbox .sec__2__card:nth-child(1)::before{
    background: linear-gradient(to top right, rgb(87,81,248) 40%, rgb(255, 57, 31));
    left: 35%;
    top: -10%;
    width: 700px;
    height: 700px;
}


.sec__2__flex__flexbox .sec__2__card:nth-child(2),
.sec__2__flex__flexbox .sec__2__card:nth-child(3){
    flex-basis: 48.7%;
}

.sec__2 .sec__2__flex .sec__2__card:nth-child(1) .sec__2__card__ctn__img__tt h1,
.sec__2__flex__flexbox .sec__2__card:nth-child(2) .sec__2__card__ctn__img__tt h1,
.sec__2__flex__flexbox .sec__2__card:nth-child(3) .sec__2__card__ctn__img__tt h1{
    max-width: none;
}

.sec__2__flex__flexbox .sec__2__card:nth-child(2)::after{
    background:linear-gradient(to top left, rgb(115, 255, 0), rgb(66, 135, 255) 35%);
}

.sec__2__flex__flexbox .sec__2__card:nth-child(3)::after{
    background: radial-gradient(rgb(204, 0, 255), rgb(78, 217, 255) 70%);
    top: -20%;
    right: -30%;
}

.sec__2__flex__flexbox .sec__2__card:nth-child(3)::before{
    background: rgb(196, 234, 255);
    left: -30%;
    top: -120%;
}

@media screen and (max-width:1180px){
    .sec__2__flex__flexbox .sec__2__card:nth-child(2),
    .sec__2__flex__flexbox .sec__2__card:nth-child(3){
    flex-basis: 48.5%;
  }
    .sec__2__flex .sec__2__card:nth-child(1),
    .sec__2__flex__flexbox .sec__2__card:nth-child(2),
    .sec__2__flex__flexbox .sec__2__card:nth-child(3){
        flex-direction: column;
    }
    
}

@media screen and (max-width:1035px){
    .sec__2__flex__flexbox .sec__2__card:nth-child(2),
    .sec__2__flex__flexbox .sec__2__card:nth-child(3){
       flex-basis: 48.4%;
       backdrop-filter: blur(40px);
    }
}


@media screen and (max-width:975px){
    .sec__2__card{
        flex-direction: column;
    }
    .sec__2__card::before,
    .sec__2__card::after{
        opacity: .7;
    }
    .sec__2__card__ctn__img__tt{
        display: block;
    }
    .sec__2__card__ctn__img__tt img{
        margin-bottom: 20px;
    }
    .sec__2__card__ctn__img__tt a img{
        margin-top: 20px;
    }
    .sec__2__flex{
        display: block;
    }
    .sec__2 .sec__2__flex .sec__2__card:nth-child(1){
        width: 100%;
        margin-bottom: 20px;
    }
    .sec__2 .sec__2__flex__flexbox{
        width: 100%;
        display: block;
    }
    .sec__2 .sec__2__flex__flexbox .sec__2__card:nth-child(2){
        margin-bottom: 20px;
    }
}


/* sec 3 */

.sec__3{
    position: relative;
    margin-top: 120px;
}

.sec__3::before{
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    width: 212px;
    height: 212px;
    border-radius: 50%;
    z-index: -1;
    top: 570px;
    left: 50%;
    background-image: linear-gradient(135deg, #6f0, #16b862 52%, #00858f);
}

.sec__3::after{
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    z-index: -10;
    left: -50px;
    top: 100px;
    background-image: linear-gradient(135deg, #0fa, #9c42f5 53%, #5d2de1);
}

.sec__3__tt p{
    background-color: rgba(0, 255, 170, 0.105);
    color: var(--green);
}

.sec__3__controls{
    position: sticky;
    top: 80px;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 3px;
    align-items: center;
    border-radius: 7px;
    padding: 3px;
    box-shadow: inset 8px 8px 40px 0 rgba(9,13,20,.4), inset -4px -4px 8px 0 rgba(224,224,255,.04), inset 0 1px 1px 0 rgba(9,13,20,.4);
    background-image: linear-gradient(180deg, #090d14, #282a2e 53%, #2d2f33);
    z-index: 99;
}

.sec__3__controls p{
    cursor: pointer;
    width: 50%;
    margin-bottom: 0px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    transition: all .3s;
}

.sec__3__controls p:hover{
    opacity: 1;
}

#controls1{
    box-shadow: 8px 8px 24px 0 rgba(9,13,20,.4), -4px -4px 8px 0 rgba(224,224,255,.04), 0 1px 1px 0 rgba(9,13,20,.4);
    background-image: linear-gradient(180deg, rgba(245, 247, 250, .24), rgba(245, 247, 250, .12) 52%, rgba(245, 247, 250, 0));
}

#controls2.controlActive{
    box-shadow: 8px 8px 24px 0 rgba(9,13,20,.4), -4px -4px 8px 0 rgba(224,224,255,.04), 0 1px 1px 0 rgba(9,13,20,.4);
    background-image: linear-gradient(180deg, rgba(245, 247, 250, .24), rgba(245, 247, 250, .12) 52%, rgba(245, 247, 250, 0));
}

#controls1.controlDesactive{
    box-shadow: 8px 8px 24px 0 rgba(9, 13, 20, 0), -4px -4px 8px 0 rgba(224,224,255,.04), 0 1px 1px 0 rgba(9, 13, 20, 0);
    background-image: linear-gradient(180deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0) 52%, rgba(245, 247, 250, 0));

}

.sec__3__slider{
    width: 100%;
    overflow: hidden;
}

.sec__3__slider ul{
    width: 200%;
    display: flex;
    gap: 20px;
    transition: all 550ms ease-in-out;
}

.sliderProyecActive{
    transform: translateX(-50%);
}

.sec__3__slider ul li{
    width: 50%;
    transition: all .3s;
}

#sliderProyetLi1,
#sliderProyetLi2{
    transition: all 550ms ease-in-out;
}


#sliderProyetLi2.opacity1{
    opacity: 1;
}

.opacity0{
    opacity: 0;
}

.sec__3__slider ul li:nth-child(2){
    opacity: 0;
}


.sec__3__flexbox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.sec__3__card{
    opacity: 1;
    width: calc(50% - 10px);
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--box-shadow-card);
    border: var(--border-card);
    background-image:url(../img/bg-proyec-1.webp), var(--linear-gradient-card-blur);
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    backdrop-filter: var(--blur-card);
}

.sec__3__card:nth-child(2){
    background-image:url(../img/bg-proyec-4.webp), var(--linear-gradient-card-blur);
}


.sec__3__card:nth-child(3){
    background-image:url(../img/bg-proyec-2.webp), var(--linear-gradient-card-blur);
}

.sec__3__card:nth-child(4){
    background-image:url(../img/bg-proyec-3.webp), var(--linear-gradient-card-blur);
}

.sec__3__card__img{
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.sec__3__card__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .5s;
}

.sec__3__card:hover .sec__3__card__img img{
    filter: brightness(60%);
    transform: scale(1.1);
}

.sec__3__card__img svg{
    position: absolute;
    width: 80%;
    z-index: 5;
}

.sec__3__card__img svg path{
    stroke: var(--green);
    stroke-dashoffset: 1200;
    stroke-dasharray: 1200;
    transition: all .5s;
}

.sec__3__card:hover .sec__3__card__img svg path{
    stroke-dashoffset: 0;
    stroke-dasharray: 1200;
}

.sec__3__card__flex{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sec__3__card__flex___number{
    width: 80px;
    height: 80px;
    background-color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--gray-dark);
}

.sec__3__card__tt p{
    margin-bottom: 0px;
}

.sec__3__card__flex span{
    position: absolute;
    right: 0px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.076);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.303);
    border-radius: 8px;
}

.sec__3__card:nth-child(2) .sec__3__card__flex___number{
    background-color: var(--blue);
}

.sec__3__card:nth-child(2) .sec__3__card__img svg path{
    stroke: var(--blue);
}

.sec__3__card:nth-child(3) .sec__3__card__flex___number{
    background-color: var(--purple);
}

.sec__3__card:nth-child(3) .sec__3__card__img svg path{
    stroke: var(--purple);
}

.sec__3__card:nth-child(4) .sec__3__card__flex___number{
    background-color: var(--yellow);
}

.sec__3__card:nth-child(4) .sec__3__card__img svg path{
    stroke: var(--yellow);
}


@media screen and (max-width: 880px){
    .sec__3__card{
        width: 100%;
    }
    .sec__3__card__img{
        height: 55vw;
    }
}

@media screen and (max-width: 600px){
    .sec__3__card__flex___number{
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-50px);
    }
}


/* section 4 */

.sec__4{
    position: relative;
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    margin-top: 120px;
    display: flex;
    gap: 20px;
}

.sec__4::before{
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    width: 218px;
    height: 218px;
    border-radius: 50%;
    z-index: -1;
    bottom: 22%;
    left: 24%;
    background-image: linear-gradient(135deg, #f0a, #9c42f5 50%, #5d2de1);
}

#linear{
    position: absolute;
    width: 600%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
 
}

.sec__4__tt{
    max-width: 400px;
}


.sec__4__tt h3{
    color: var(--color-blue);
}


.sec__4__card{
    position: relative;
    width: 400px;
    height: 550px;
    background: var(--linear-gradient-card-blur);
    backdrop-filter: var(--blur-card);
    border: var(--border-card);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 10;
}

.sec__4__card::before{
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    background-color: var(--color-verde);
    border-radius: 50%;
    left: 60%;
    top: 40%;
    filter: blur(40px);
    z-index: -1;
}

.sec__4__card__slider{
    width: 100%;
    overflow: hidden;
}

.sec__4__card__slider ul{
    width: 400%;
    height: 100%;
    display: flex;
    transition: all .3s;
}

.sec__4__card__slider ul li{
    width: 25%;
    height: 100%;
}

.sec__4__card__slider__tt__flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec__4__card__slider__tt__flex img{
    width: 100px;
    margin-bottom: 30px;
}

.sec__4__card__slider__tt__flex p{
    padding: 5px 10px;
    color: #efa929;
    background-color: rgba(255, 217, 0, 0.071);
    border-radius: 5px;
}

.sec__4__card h3{
   background-image: url(../img/tt-yellow.webp);
   background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.sec__4__card h3 span{
    color: #efa929;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.sec__4 ul li:nth-child(2) h3{
    background-image: url(../img/tt-purple.svg);
}

.sec__4 ul li:nth-child(2) h3 span{
    color: #9a4292;
}

.sec__4 ul li:nth-child(3) h3{
    background-image: url(../img/tt-blue.svg);
}

.sec__4 ul li:nth-child(3) h3 span{
    color: #2d9da6;
}

.sec__4 ul li:nth-child(4) h3{
    background-image: url(../img/tt-blue-dark.svg);
}

.sec__4 ul li:nth-child(4) h3 span{
    color: #2d70ae;
}

.sec__4__card p{
    opacity: .8;
}

.sec__4__card__ctn__btn{
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.sec__4__card__ctn__btn p{
    cursor: pointer;
    display: flex;
    gap: 15px;
    letter-spacing: 1px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.038);
    border-radius: 7px;
    padding: 15px 20px;
    transition: all .3s;
}

.sec__4__card__ctn__btn p:focus,
.sec__4__card__ctn__btn p:active{
    transform: scale(.9);
}

.sec__4__card__ctn__btn p:hover{
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.552);
}

.sec__4__card__ctn__btn p:nth-child(1) img{
    transform: rotate(180deg);
}

.sec__4__icon__s{
    transform: rotate(-20deg);
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, rgba(240, 240, 240, 0.198), rgba(39, 39, 39, 0.674));
    box-shadow: 6px 6px 35px rgba(255, 255, 255, 0.105),
                -6px -6px 30px rgba(0, 0, 0, 0.72);
    display: flex;
    justify-content: center;
    border-radius: 50%;
    right: 15%;
    bottom: 10%;
}

.sec__4__icon__s h2{
    font-size: 6rem;
    transform: translateY(40px);
    text-shadow: 2px 0px 10px rgba(255, 255, 255, 0.171);
    color: #333;
}

@media screen and (max-width: 1250px){
    .sec__4{
        gap: 0px;
        justify-content: center;
    }
}

@media screen and (max-width: 800px){
    .sec__4{
        justify-content: space-between;
        margin-top: 28%;
    }
    .sec__4__tt{
        max-width: 40%;
    }
}

@media screen and (max-width: 600px){
    .sec__4{
        flex-direction: column;
    }
    .sec__4__tt{
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .sec__4__card{
        width: 100%;
    }
}

/* sec 4 btn */

.sec__4__btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.sec__4__btn .btn__hover,
.sec__5__tt .btn__hover{
    opacity: 1;
    width: 200px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: var(--linear-gradient-green-blue-purple);
    border-radius: 7px;

    gap: 10px;
    box-shadow: 4px 10px 20px #0a66c29e;
    transition: all .2s;
}

.sec__4__btn .btn__hover:hover,
.sec__5__tt .btn__hover:hover{
box-shadow: 4px 10px 30px #0a66c2b6;
}

.sec__4__btn .btn__hover svg,
.sec__5__tt .btn__hover svg{
    width: 20px;
    transform: rotate(45deg);
}

/* sec 5 */

.sec__5{
    margin-top: 120px;
}

.sec__5__tt{
    position: relative;
    text-align: center;
}

.sec__5__tt::before{
    position: absolute;
    content: "";
    width: 212px;
    height: 212px;
    border-radius: 50%;
    z-index: -1;
    left: 50px;
    top: 50px;
    background-image: linear-gradient(135deg, #ff5e00, #f54562 54.11%, #c32de1);
}

.sec__5__tt::after{
    position: absolute;
    content: "";
    width: 312px;
    height: 312px;
    border-radius: 50%;
    z-index: -1;
    right: 20px;
    top: -130px;
    background-image: linear-gradient(135deg, #6f0, #16b862 51.88%, #00858f);
}

.sec__5__tt h1 span{
    position: relative;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.sec__5__tt h1 span svg{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
}

.sec__5__tt p{
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.sec__5__flex{
    position: relative;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sec__5__card{
    width: calc(33% - 10px);
    background: var(--linear-gradient-card-blur);
    box-shadow: var(--box-shadow-card);
    border: var(--border-card);
    backdrop-filter: var(--blur-card);
    padding: 24px;
    border-radius: 24px;
}

.sec__5__card:hover{
    background: linear-gradient(-101deg,rgba(245,247,250,.12),rgba(245,247,250,.06) 52%,rgba(245,247,250,0));
    box-shadow: -8px -8px 24px 0 rgba(9,13,20,0.4),-4px -4px 8px 0 rgba(224,224,255,0.04),0 -1px -1px 0 rgba(9,13,20,0.4);
}

.sec__5__card:nth-child(1) h1,
.sec__5__card:nth-child(1) p span,
.sec__5__card:nth-child(5) h1,
.sec__5__card:nth-child(5) p span,
.sec__5__card:nth-child(9) h1,
.sec__5__card:nth-child(9) p span{
    color: var(--green);
}

.sec__5__card:nth-child(2) h1,
.sec__5__card:nth-child(2) p span,
.sec__5__card:nth-child(6) h1,
.sec__5__card:nth-child(6) p span,
.sec__5__card:nth-child(10) h1,
.sec__5__card:nth-child(10) p span{
    color: var(--purple);
}

.sec__5__card:nth-child(3) h1,
.sec__5__card:nth-child(3) p span,
.sec__5__card:nth-child(7) h1,
.sec__5__card:nth-child(7) p span{
    color: var(--blue);
}

.sec__5__card:nth-child(4) h1,
.sec__5__card:nth-child(4) p span,
.sec__5__card:nth-child(8) h1,
.sec__5__card:nth-child(8) p span{
    color: var(--yellow);
}

.sec__5__circle1{
    position: absolute;
    display: block;
    width: 194px;
    height: 194px;
    border-radius: 50%;
    z-index: -1;
    top: 70px;
    left: -97px;
    background-image: linear-gradient(135deg, #0bf, #4579f5 51%, #5d2de1);
}

.sec__5__circle2{
    display: block;
    position: absolute;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    z-index: -1;
    top: 23%;
    right: 20%;
    background-image: linear-gradient(135deg, #6f0, #16b862 52%, #00858f);
}

.sec__5__circle3{
    display: block;
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    z-index: -1;
    bottom: 40%;
    left: 38%;
    background-image: linear-gradient(135deg, #0fa, #4579f5 53%, #9c42f5);
}

.sec__5__circle4{
    display: block;
    position: absolute;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    z-index: -1;
    bottom: 22%;
    background-image: linear-gradient(135deg, #f0a, #9c42f5 50%, #5d2de1);
}

.sec__5__circle5{
    display: block;
    position: absolute;
    width: 196px;
    height: 196px;
    border-radius: 50%;
    z-index: -1;
    bottom: 15%;
    right: 17%;
    background-image: linear-gradient(135deg, #ff5e00, #f54562 54%, #c32de1);
}

@media screen and (max-width: 1045px){
    .sec__5__card{
        width: calc(32.8% - 10px);
    }
}

@media screen and (max-width: 880px){
    .sec__5__card{
        width: calc(50% - 10px);
    }
    .sec__5__tt::before,
    .sec__5__tt::after{
        transform: scale(.6);
    }
    .sec__5__tt::before{
        left: -100px;
    }
    .sec__5__tt::after{
        right: -100px;
    }
}

@media screen and (max-width: 600px){
    .sec__5__card{
        width: calc(100%);
    }
    .sec__5__tt::after{
        right: -100px;
        top: 90%;
    }
}

/* footer */

footer{
    position: relative;
    margin-top: 120px;
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

footer::before{
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    z-index: -1;
    top: 170px;
    left: -310px;
    background-image: linear-gradient(135deg, #0fa, #9c42f5 53%, #5d2de1);
}

footer::after{
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    z-index: -10;
    right: -50px;
    top: -50px;
    background-image: linear-gradient(135deg, #0fa, #9c42f5 53%, #5d2de1);
}

.footer__tt{
    width: 35%;
}

.footer__flex{
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__card{
    opacity: 1;
    width: 100%;
    padding: 14px 24px;
    border-radius: 24px;
    background: var(--linear-gradient-card-blur);
    border: var(--border-card);
    box-shadow: var(--box-shadow-card);
    backdrop-filter: var(--blur-card);
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__card:hover{
    background: var(--linear-gradient-green-blue-purple);
}

.footer__card span{
    background-color: var(--blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__card span svg{
    width: 35%;
}

.footer__card__tt h3{
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__card__tt h4 svg{
    width: 30px; 
    transform: translateY(7px);  
}

.footer__card__tt h4 svg path{
    fill: var(--blue);
}

.footer__card:nth-child(2),
.footer__card:nth-child(3){
    width: calc(50% - 10px);
}

.footer__card:nth-child(2) .footer__card__tt,
.footer__card:nth-child(3) .footer__card__tt{
    width: 60%;
}

.footer__card:nth-child(2) span{
    background-color: var(--purple);
}

.footer__card:nth-child(2) h4 svg path{
    fill: var(--purple);
}

.footer__card:nth-child(3) span{
    background-color: var(--yellow);
}

.footer__card:nth-child(3) span svg path{
    fill: var(--gray-dark);
}

.footer__card:nth-child(3) h4 svg path{
    fill: var(--yellow);
}

.footer__card:nth-child(4) span{
    background-color: var(--green);
}

.footer__card:nth-child(4) span svg path{
    fill: var(--gray-dark);
}

.footer__card:nth-child(4) h4 svg path{
    fill: var(--green);
}

@media screen and (max-width: 880px){
    footer{
        flex-direction: column;
    }
    .footer__tt,
    .footer__flex{
        width: 100%;
    }
    footer::after{
        top: 60%;
    }
}

@media screen and (max-width: 600px){
    .footer__card:nth-child(2),
    .footer__card:nth-child(3){
        width: 100%;
    }
    .footer__card__tt{
        width: 70%;
    }
    
}