@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --body-font: 'Plus Jakarta Sans', sans-serif;
    --body-font-2: 'Outfit', sans-serif;
    --body-font-3: 'Urbanist', sans-serif;
    --most-bigger-font-size: 2.8rem;
    --biggest-font-size: 2.25rem;
    --bigger-font-size: 1.55rem;
    --big-font-size: 1.35rem;
    --medium-font-size: 1.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --title-font-size: .8rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --smallest-font-size: .65rem;
  
    --font-medium: 500;
    --font-semi-bold: 600;
  
    --z-tooltip: 10;
    --z-fixed: 100;

    --global-h-padding: 2rem;

    --border-size: 2px;

    --body-color: #EDEDED;
    --input-color: #FFFFFF;
    --container-color: #dff3f1;
    --glass-color: rgb(207, 238, 235);
    --label-color: #000000;
    --text-color: #444446;
    --text-color-2: #707070;
    --title-color: #ffffff;
    --border-table: #cacaca;
    --shadow: #919191;
    --shadow-2: #ffffff;
    --shadow-3: #5a5a5a;
    --shadow-4: #dcd9d9;
    --scroll: #373737;
    --menu: #FAFAFA;
    --menu-border: #cacaca;
    --bg: #2c2c2c;
    --bg-2: rgba(0, 0, 0, 0.3);
    --bg-3: rgba(44, 44, 44, 0.538);
    --bg-4: #fafafada;
    --selected-li: hsla(228, 3%, 64%, 0.163);
    --selected-menu: #F1F1F1;
    --hovered-li: hsla(231, 3%, 59%, 0.12);
    --hovered-row: hsla(231, 3%, 59%, 0.12);
    --banner: #ecf4f5;
    --selected: #52ffa0;
    --selected-2: #5267ff;
    --selected-va: #ff7a0118;
    --link: #5267ff;
    --text-gradient: linear-gradient(45deg, #ff7a01, var(--title-color));
    --variant: #ff7a01;
    --facebook: #1877F2;
    --whatsapp: #25D366;
    --warning: #E90013;
    --active: #35fb23;

    --border-color-4: #ddeae9;

    --tooltip: #030303;
}
.dark-theme{
    --body-color: #1E1E20;
    --container-color:  #1E1E20;
    --input-color: #0a0a0a;
    --label-color: #ffffff;
    --text-color: hsl(0, 0%, 100%);
    --scroll: #2b2c3b;
    --shadow: #313d44;
    --shadow-2: #000000;
    --shadow-4:  #1E1E20;
    --bg: #131313;
    --bg-2: rgba(33, 33, 33, 0.3);
    --bg-3: hsl(240, 6%, 3%);
    --bg-4: #0a0a0ae8;
    --selected-li: hsla(240, 1%, 32%, 0.194);
    --selected-menu: #1c1c1c;
    --hovered-li: hsla(222, 9%, 27%, 0.194);
    --hovered-row: hsla(240, 33%, 1%, 0.218);
    --border-table: #252525;
    --border-color-4: #313131;
    --banner: #030303;
    --menu: #0a0a0a;
    --menu-border: #1d1f25;
    --selected-2: #5267ff;
    --warning: #fb2355;
}
@media screen and (min-width: 1024px) {
    :root {
        --most-bigger-font-size: 3rem;
        --biggest-font-size: 2.3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --title-font-size: .8rem;
        --small-font-size: .875rem;
        --smaller-font-size: .76rem;
        --smallest-font-size: .71rem;

        --global-h-padding: 2rem;
    }
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    background: var(--body-color);
    transition: .5s;
}
/*
html {
    scroll-behavior: smooth;
}
*/

html,
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
::-webkit-scrollbar {
    width: .4rem;
    border-radius: .5rem;
    background-color: var(--container-color);
}
::-webkit-scrollbar-thumb {
    background-color: var(--scroll);
    border-radius: .5rem;
}
::-webkit-scrollbar-thumb:hover {
    background-color: hsl(228, 8%, 54%);
}
input{
    outline: none;
    border: none;
    transition: 0.3s all ease;
    background: unset;
}
input:disabled{
    background: unset;
}
input, input::placeholder,
textarea, textarea::placeholder{
    color: var(--text-color-2);
}
input:focus,
textarea:focus{
    color: var(--text-color);
}
input:not([type="radio"]):not([type="checkbox"]), textarea{
    min-height: 43px;
    outline: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    transition: 0.3s all ease;
    background: unset;
}
textarea{
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    resize: none;
}
li{
    list-style: none;
}
a{
    color: var(--text-color);
}
p a{
    font-weight: 600;
    color: var(--link);
    text-decoration: underline;
}
.vicon{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    transition: 0.3s all ease;
}
.vicon img{
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: 0.3s all ease;
}
.vicon.invert img{
    filter: invert();
}
.share-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    transition: 0.3s all ease;
}
.share-cont #cl-m{
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: var(--bigger-font-size);
    transition: 0.3s all ease;
}
.share-cont #cl-m:hover{
    opacity: 0.5;
}
.share-cont ul{
    padding: 0 !important;
    position: relative;
    height: min-content;
    text-align: center;
    display: grid !important;
    grid-template-columns: repeat(4, auto);
    place-content: center;
    justify-items: center;
    gap: 1rem;
}
.share-cont ul li{
    padding: 0 !important;
    display: flex;
}
.share-cont a{
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s all ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--variant);
    color: var(--title-color) !important;
    text-decoration: none !important;
    gap: 1rem;
}
.share-cont a:hover{
    opacity: 0.5;
}
.share-cont ul li i{
    font-size: var(--big-font-size);
}
.share-cont ul li .vicon{
    height: var(--big-font-size);
}
.share-cont h3{
    grid-column: 1 / 4 span;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: var(--normal-font-size);
}
.share-cont .facebook{
    background:  var(--facebook) !important;
    color: var(--title-color) !important;
}
.share-cont .whatsapp{
    background:  var(--whatsapp) !important;
    color: var(--title-color) !important;
}
.share-cont .mail{
    background:  var(--selected-2) !important;
    color: var(--title-color) !important;
}
.share-cont .twitter{
    background: #000000;
}
.share-cont .twitter .vicon img{
    filter: invert();
}
.share-cont .d-field{
    padding: 0 0.5rem;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: stretch;
    align-items: center;
    gap: 1rem;
    grid-column: 1 / 4 span;
    border-radius: 8px;
    border: 1px solid var(--shadow-4);
    cursor: pointer;
    transition: 0.3s all ease;
}
.share-cont .d-field:hover{
    background: var(--shadow-4);
}
.share-cont .d-field span{
    padding: 0 0.5rem;
    font-size: var(--small-font-size);
    font-weight: 600;
}
.share-cont .d-field input{
    padding: 0 0.5rem;
    cursor: pointer;
    font-weight: 500;
    font-size: var(--small-font-size);
    width: 100%;
    font-family: var(--body-font);
}


.actions{
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: row;
    gap: 0.5rem;
}
.actions li{
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 4px;
    background: var(--container-color);
    box-shadow:  0px 0px 6px -1px var(--shadow-3);
    cursor: pointer;
    border-radius: 10px;
    transition: 0.2s all ease;
}
.actions li:hover{
    background: var(--selected-2);
    color: var(--title-color);
}
.actions li i{
    font-size: var(--h2-font-size);
}
.button{
    position: relative;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: fit-content;
    min-height: 50px;
    gap: 0.5rem;
    background: var(--input-color);
    border: var(--border-size) solid var(--border-color-4);
    font-size: var(--normal-font-size);
    font-weight: 500;
    border-radius: 12px;
    transition: 0.3s all ease;
}
.button:hover{
    cursor: pointer;
    background: var(--body-color);
}
.button:active{
    background: var(--body-color);
    opacity: 0.6;
}
.button.filled{
    background: var(--variant);
    color: var(--title-color);
    font-weight: 500;
    border: none;
}
.button.filled:hover{
    opacity: 0.7;
}
.ares-theme .button.filled{
    color: var(--tooltip);
}
.button.pulled{
    background: var(--text-gradient);
    color: var(--title-color);
    border: none;
}
.button.dlt{
    color: var(--error-label);
    border-color: var(--error-label);
}
.button.v-2{
    width: min(250px, 100%);
}
.button.w-file{
    overflow: hidden;
}
.button.w-file input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.button.box{
    padding: 0;
    height: 43px;
    width: auto;
    border-width: 2px;
    aspect-ratio: 1/1;
}
.button.pill{
    padding: 0.5rem 1rem;
    width: fit-content;
    border-width: 2px;
    border-radius: 25px;
}
.button.pill.active{
    border-color: var(--variant);
    background: var(--menu);
}
.button.pill.active:hover{
    background: var(--input-color);
}


main{
    position: relative;
    width: 100%;
    min-height: 100dvh;
    height: max-content;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}
.menu-bar{
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 90px;
    height: max-content;
    padding: 1.5rem var(--global-h-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: transparent;
    color: var(--text-color);
    transition: 0.3s all ease;
    z-index: 5;
}
.menu-bar.scroll{
    background: var(--bg-4);
    backdrop-filter: blur(10px);
}
.logo{
    position: relative;
    padding: 0 !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    gap: 0.5rem;
    /*transform: rotate(-53.5deg);*/
}
.logo img{
    height: 40px;
    width: 40px;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.menu-actions{
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.menu-bar ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.menu-bar ul li{
    display: flex;
}
.menu-bar a{
    padding: 0.5rem 1rem;
    color: var(--text-color);
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s all ease;
}
.menu-bar a.special{
    background: var(--variant);
    border: 2px solid var(--variant);
    color: var(--title-color);
    font-weight: 600;
}
.menu-bar a.special:hover{
    background: var(--variant);
    color: var(--title-color);
}
#more-btn,
#menu-btn{
    display: none;
    border-radius: 20px;
    cursor: pointer;
}
.btn{
    padding: 0.5rem 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s all ease;
}
.btn i{
    font-size: var(--biggest-font-size);
}
.btn.cl{
    display: none;
    border-radius: 0 !important;
    color: var(--title-color);
    cursor: pointer;
}
.btn.cl i{
    font-size: var(--bigger-font-size);
}
.btn.cl:hover{
    opacity: 0.7;
}
.btn:hover{
    background: var(--shadow);
}
#theme-button{
    font-size: var(--big-font-size);
    cursor: pointer;
}
.menu-bar input{
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    height: 80%;
    width: 250px;
    background: var(--bg-3);
    border-radius: 50px;
    transition: 0.3s all ease;
}
.menu-bar input:focus{
    color: var(--title-color);
}
.menu-bar a:not(.logo):not(.special):hover,
.menu-bar .btn:hover,
.menu-bar input:hover{
    background: var(--hovered-li);
}
.menu-bar a:not(.logo):not(.special):active,
.menu-bar .btn:active,
.menu-bar input:focus{
    background: var(--selected-li);
}

.section{
    position: relative;
    background: var(--body-color);
    padding: 3rem var(--global-h-padding);
    width: 100%;
    min-height: 100dvh;
    transition: 0.3s all ease;
}
.section.home{
    padding-top: 20dvh;
    padding-bottom: 0;
    background-image: linear-gradient(var(--input-color) 40%, var(--body-color));
    min-height: 80dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}
.section .s-tit{
    padding: 1rem;
    width: 100%;
}
.section .s-tit h2{
    width: 100%;
    font-size: var(--h3-font-size);
    font-weight: 400;
    letter-spacing: 1px;
}
.section .content{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
}
.section .content h2{
    color: var(--text-color);
}
.section .content p{
    color: var(--text-color-2);
}
.home .content h2{
    font-weight: 400;
    text-align: center;
    max-width: min(950px, 90%);
    line-height: 3lh;
    font-size: var(--most-bigger-font-size);
    letter-spacing: 1px;
}
.home .content p{
    text-align: center;
    max-width: min(900px, 85%);
    font-size: var(--h3-font-size);
}
.i-field{
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    transition: 0.3s all ease !important;
}
.i-field input{
    padding: 0.5rem 1rem;
    width: 100%;
    height: 100%;
    font-size: var(--h3-font-size);
}
.i-field .i-b-label{
    padding: 0.5rem 1rem;
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--body-color);
    border-radius: calc(25px - 0.5rem);
    transition: 0.3s all ease;
}
.i-field .i-b-label svg{
    width: var(--normal-font-size);
}
.home .content .i-field{
    position: relative;
    padding: 0.5rem;
    height: 70px;
    max-width: min(800px, 90%);
    background: var(--input-color);
    border: var(--border-size) solid var(--border-color-4);
    border-radius: 25px;
}
.home .content .i-field:focus-within{
    border: var(--border-size) solid var(--text-color);
}
.i-field .i-b-label:hover{
    cursor: pointer;
    background: var(--hovered-li);
    opacity: 0.8;
}
.home .i-field .search-results{
    position: absolute;
    top: calc(100% + 0.5rem);
    height: max-content;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    background: var(--input-color);
    border-radius: 25px;
    box-shadow: 0px 0px 6px -2px var(--shadow),
                0px 0px 6px -2px var(--shadow-2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: 0.3s all ease;
    z-index: 4;
}
.dark-theme .home .i-field .search-results{
    box-shadow: unset;
    border: 1px solid var(--border-color-4);
}
/*
.home .i-field input:focus ~ .search-results,
*/
.home .i-field .search-results.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.home .i-field .s-result{
    padding: 1rem 2rem;
    width: 100%;
    min-height: 70px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
    transition: 0.3s all ease;
}
.home .i-field .s-result:hover{
    cursor: pointer;
    background: var(--body-color);
}
.home .i-field .s-result .s-preview{
    position: relative;
    height: 38px;
    width: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.home .i-field .s-result .s-preview img{
    height: 100%;
    width: auto;
    object-fit: cover;
    border: 1px solid var(--border-color-4);
    border-radius: 4px;
    overflow: hidden;
}
.home .i-field .s-result .s-details{
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
}
.home .i-field .s-result span{
    width: 100%;
    text-align: left;
    font-size: var(--normal-font-size);
}
.home .i-field .s-result p{
    width: 100%;
    text-align: left;
    font-size: var(--small-font-size);
}


.last-scams{
    padding-bottom: 0.5rem;
    background: linear-gradient(transparent, var(--input-color));
    min-height: unset;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}
.last-scams .s-tit{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0rem;
}
.last-scams .s-tit h2{
    font-weight: 400;
    font-size: var(--normal-font-size);
    text-align: center;
}
.last-scams .s-tit i{
    font-size: var(--h2-font-size);
}
.last-scams .bento{
    position: relative;
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 1rem;
}
.last-scams .bento.v-2{
    flex-direction: row;
    flex-wrap: wrap;
}
.last-scams .bento .row{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 130px);
    height: max-content;
    gap: 1rem;
    border: none;
}
.last-scams .bento.v-3 .row{
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 350px auto;
}
.last-scams .bento.v-4 .row{
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(auto-fill, 250px);
}
.last-scams .bento .row:nth-child(odd){
    grid-template-areas: 
    'a b e'
    'a d e'
    'c d e';
}
.last-scams .bento .row{
    grid-template-areas: 
    'a b c'
    'a b e'
    'a d e';
}
.last-scams .bento.v-3 .row{
    grid-template-areas: 
    'a a a a'
    'b c d e';
}
.last-scams .bento.v-4 .row{
    grid-template-areas: 
    'a a b b b b'
    'a a b b b b'
    'c c c c c c';
}
.last-scams .bento.v-2 .row{
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    grid-template-rows: repeat(auto-fill, 250px);
    grid-auto-flow: dense;
    grid-template-areas: none !important;
}
.last-scams .bento .row .card{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: var(--border-size) solid var(--border-color-4);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    transition: 0.3s all ease;
    overflow: hidden;
}
.last-scams .bento.v-2 .row .card{
    min-height: 150px;
    grid-area: unset !important;
}
.last-scams .bento.v-3 .row .card{
    border-radius: 20px;
}
.last-scams .profile-info .row .card{
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: unset;
}
.last-scams .bento .row .card.void{
    opacity: 0.4;
    border: var(--border-size) dashed var(--border-color-4);
}
.last-scams .bento .row .card.chart-cont{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    border: unset;
    border-radius: unset;
}
.last-scams .bento .row .card.void:hover{
    background-color: var(--body-color);
}
.last-scams .bento .row .card.filled{
    padding: 0.5rem 1rem;
    border: none;
    background-color: var(--tooltip);
    box-shadow: 0px 0px 6px -3px var(--shadow),
    0px 0px 6px -2px var(--shadow-2);
    color: var(--title-color);
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    gap: 0.5rem;
}
.dark-theme .last-scams .bento .row .card.filled{
    box-shadow: none;
}
.last-scams .bento .row .card.inactive{
    opacity: 0.6;
    filter: grayscale(100%);
}
.last-scams .bento .row .card.inactive:hover{
    opacity: 1;
    filter: grayscale(0%);
}
.last-scams .bento .row .card.filled.v-2{
    background-color: var(--menu);
    cursor: pointer;
}
.last-scams .bento .row .card.filled.v-2::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a1;
    opacity: 0;
    z-index: 1;
    transition: 0.3s all ease;
}
.last-scams .bento .row .card.filled.v-2:hover::before{
    opacity: 0.5;
}
.last-scams .bento .row .card.filled.v-3{
    padding: 0.5rem 1rem;
    border: none;
    background-color: var(--title-color);
    color: var(--tooltip);
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: max-content;
    gap: 0.5rem;
}
.last-scams .bento .row .card .button{
    color: var(--title-color);
    height: 43px;
}
.last-scams .bento .row .card.found{
    max-width: min(350px, 100%);
    aspect-ratio: 19 / 8;
}
.last-scams .bento .row .card p{
    text-align: left;
}
.last-scams .bento .row .card.filled p{
    font-size: var(--h3-font-size);
    color: #030303;
    width: fit-content;
    transition: 0.3s all ease;
}
.last-scams .bento .row .card.filled.v-2 p{
    position: absolute;
    transform: translateY(150%);
    color: var(--title-color);
    font-size: var(--big-font-size);
    z-index: 4;
}
.last-scams .bento .row .card.filled.v-2:hover p{
    transform: translateY(0%);
}
.last-scams .bento.v-3 .row .card h2{
    font-size: var(--bigger-font-size);
    font-weight: 700;
    color: var(--title-color);
}
.last-scams .bento .row .card.filled .urbanist{
    width: 100%;
    font-size: var(--bigger-font-size);
    font-weight: 400;
}
.last-scams .bento .row .card .i-field{
    padding: 0.5rem 0 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--menu);
    border: var(--border-size) solid transparent;
    width: 100%;
    height: 43px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s all ease;
}
.last-scams .bento .row .card .i-field i{
    padding: 0 auto;
    font-size: var(--bigger-font-size);
    color: var(--text-color-2);
    transition: 0.3s all ease;
}
.last-scams .bento .row .card.filled i{
    background-color: white;
    background-image: var(--text-gradient);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.dark-theme .last-scams .bento .row .card.filled i{
    background-image: var(--text-gradient);
}
.last-scams .bento .row .card .i-field:focus-within i{
    color: var(--text-color);
}
.last-scams .bento .row .card .i-field:focus-within{
    background: var(--input-color);
}
.last-scams .bento .row .card input[type=text]{
    width: 100%;
    height: 100%;
    border: unset;
    border-radius: unset;
}

.last-news{
    padding-top: 0;
    min-height: 50dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--input-color);
}
.last-news .s-tit h2{
    width: 100%;
    text-align: center;
    font-size: var(--normal-font-size);
    font-weight: 600;
    transition: 0.3s all ease;
}
.news-layout{
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    content: '' !important;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: unset;
    bottom: 2rem;
    width: 45px;
    height: 45px;
    background-color: var(--container-color);
    border: 2px solid var(--text-color-light);
    padding: 6px;
    border-radius: .5rem;
    font-size: 1.5rem;
    color: var(--first-color);
    z-index: 2;
}

.swiper-button-prev {
    left: calc(50% - 3rem);
}

.swiper-button-next {
    right: calc(50% - 3rem);
}
.news-card{
    position: relative;
    padding: 0 3rem 0 0;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 1rem;
}
.news-card .news-banner{
    position: relative;
    width: auto;
    height: 150px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    border-radius: 12px;
    overflow: hidden;
}
.news-card .news-banner img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.news-card .news-sum{
    padding: 0.5rem 0;
    width: 200px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 0.5rem;
}
.news-card:not(:last-child){
    border-right: 1px solid var(--border-color-4);
}
.news-card .news-sum h3{
    color: var(--text-color);
    font-weight: 600;
}
.news-card .news-sum p{
    color: var(--text-color-2);
}

.requests{
    padding: 4rem calc(var(--global-h-padding) * 2) 4rem calc(var(--global-h-padding) * 2);
    min-height: max-content;
    background: linear-gradient(var(--input-color), var(--body-color));;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 100%;
    overflow: hidden;
}
.req-txt{
    padding: 0 var(--global-h-padding);
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
.req-txt h2,
.req-txt p{
    width: min(700px, 100%);
}
.req-txt h2{
    color: var(--label-color);
    font-weight: 400;
    font-size: var(--most-bigger-font-size);
}
.req-txt p i{
    font-size: var(--h3-font-size);
    color: var(--text-color-2);
}
.req-form{
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 1rem;
}
.req-form form{
    position: relative;
    padding: 2rem calc(var(--global-h-padding) + 1rem);
    width: 100%;
    min-height: 100%;
    height: max-content;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background: var(--input-color);
    border: 1px solid var(--border-color-4);
    border-radius: 12px;
}
.f-field {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
}
.f-field span {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    width: 100%;
    font-size: var(--normal-font-size);
    font-weight: 500;
}
.f-field input:not([type="checkbox"]),
.f-field textarea{
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: var(--normal-font-size);
    font-weight: 400;
    border: var(--border-size) solid var(--border-color-4);
    border-radius: 12px;
    background: var(--body-color);
}
.f-field input:not([type="checkbox"]):focus,
.f-field textarea:focus{
    background: var(--input-color);
}
.f-field input:not([type="checkbox"]){
    min-height: 50px;
}
.f-field textarea{
    min-height: 150px;
}


.reviews{
    padding: 2rem 0;
    min-height: max-content;
    background: linear-gradient(transparent, var(--input-color));
}

.testimonial-wrap {
    grid-column-gap: 12rem;
    grid-row-gap: 12rem;
    border-radius: 3.5rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: start center;
    width: 100%;
    padding-top: 12rem;
    padding-bottom: 12rem;
    display: grid;
    position: relative;
    overflow: hidden
}

.testimonial-wrap.for-resource {
    padding-top: 60px;
    padding-bottom: 200px
}

.testimonial-wrap.for-on-call {
    background-color: transparent;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0
}

.content-wrap.v.gap-72 {
    grid-column-gap: 4.5rem;
    grid-row-gap: 4.5rem;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .content-wrap.v {
        grid-column-gap: 3rem;
        grid-row-gap: 3rem;
    }
}
.content-wrap.v {
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    position: relative;
}
@media screen and (max-width: 991px) {
    .content-wrap {
        grid-column-gap: 64px;
        grid-row-gap: 64px;
        grid-template-columns: auto;
    }
}
.content-wrap {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.testi-loop-wrap {
    flex-flow: column;
    display: flex;
}

.marquee-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testi-loop-track {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-height: 18rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.marquee-track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal 50s linear infinite;
}

@keyframes marquee-horizontal {
    0% {
    transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
}

.marquee-track-backwards {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal-back 50s linear infinite;
}

@keyframes marquee-horizontal-back {
    0% {
    transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@media screen and (min-width: 770px) {
    .marquee-track-backwards:hover,
    .marquee-track:hover {
        animation-play-state: paused;
    }
}

.marquee-track-backwards {
    justify-content: flex-end;
    align-items: center;
    display: flex;
    position: relative;
}

.cms-wrap {
    width: 100%;
}

.marquee-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.testimonial-card {
    aspect-ratio: 3 / 2;
    background-color: var(--input-color);
    border-radius: 2rem;
    border: var(--border-size) solid var(--border-color-4);
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 30rem;
    height: 16rem;
    margin-left: .75rem;
    margin-right: .75rem;
    display: flex;
    position: relative;
}

.testi-parent {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    flex: none;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-content: start;
    place-items: start stretch;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    position: relative;
    overflow: hidden;
}
.testi-info-wrap {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-auto-columns: 1fr;
    place-content: center start;
    align-self: stretch;
    align-items: stretch;
    display: grid;
}
.testi-logo-img {
    aspect-ratio: 1/1;
    object-fit: cover;
    height: 2.5rem;
    position: relative;
    border-radius: 8px;
}
.testi-logo-img.hide {
    display: none;
}
.list-content-wrap {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    place-content: stretch flex-start;
    align-items: flex-start;
    display: grid;
}
.p.t-bold {
    font-weight: 600;
}
.p.wrap {
    white-space: pre-line;
    flex: none;
}
.t-tiny {
    font-size: var(--small-font-size);
    line-height: 1.3;
}


.footer{
    padding: var(--global-h-padding) calc(var(--global-h-padding) * 3) 0 calc(var(--global-h-padding) * 3);
    min-height: 50dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--input-color);
}

.footer__container{
    width: 100%;
    height: 100%;
    display: grid;
    row-gap: 2.5rem;
}

.footer__logo {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    margin-bottom: .75rem;
}
.footer__logo  img{
    margin-right: 0.3rem;
    width: 40px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.footer__logo i {
    font-size: 1.25rem;
}

.footer__description, 
.footer__link {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}



.footer__content, 
.footer__links {
    display: grid;
}

.footer__content {
    grid-template-columns: repeat(2, max-content);
    gap: 2.5rem 4rem;
}

.footer__title {
    font-size: var(--big-font-size);
    margin-bottom: 1rem;
}

.footer__links {
    row-gap: .5rem;
}

.footer__link {
    color: var(--text-color);
    transition: .3s;
}

.footer__link:hover {
    color: var(--variant);
}

.footer__social {
    display: flex;
    column-gap: 1rem;
}

.footer__social-link {
    font-size: var(--bigger-font-size);
    color: var(--text-color);
    transition: .3s;
}

.footer__social-link:hover {
    color: var(--variant);
}


.footer__social-link svg{
    fill: var(--text-color);
    width: calc(var(--big-font-size) - 2px);
    transition: 0.3s fill ease;
}

.footer__social-link svg:hover{
    fill: var(--variant);
}

.footer__info, 
.footer__privacy {
    display: flex;
}

.footer__info {
    width: 100%;
    max-width: 1130px;
    padding-bottom: 6rem;
    margin-top: 5.5rem;
    flex-direction: column;
    text-align: center;
    row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a ,
.footer__privacy p a {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
}

.footer__privacy p a {
    font-weight: var(--font-semi-bold);
}

.footer__privacy {
    justify-content: center;
    column-gap: 1.25rem;
}
.footer__privacy p{
    max-width: 500px;
}
.grecaptcha-badge {
    visibility: hidden;
}


@media screen and (min-width: 576px) {
    .footer__content {
        grid-template-columns: repeat(3, max-content);
    }
}
@media screen and (min-width: 767px) {
    .footer__container {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }
    .footer__description{
        max-width: 200px;
    }
}
@media screen and (min-width: 1023px) {
    .footer__content {
        grid-template-columns: repeat(4, max-content);
    }
    .footer__title {
        margin-bottom: 1.5rem;
    }
    .footer__links {
        row-gap: 1rem;
    }
    .footer__info {
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 2rem;
    }
}



@media screen and (max-width: 1200px) {
    .menu-bar,
    .menu-actions{
        gap: 1rem;
    }
    .menu-bar ul{
        gap: 0.5rem;
    }
    .requests{
        padding: var(--global-h-padding);
    }
    .req-txt{
        padding: 1rem;
    }
    .footer{
        padding: var(--global-h-padding) var(--global-h-padding) 0 var(--global-h-padding);
    }
}

@media screen and (max-width: 1000px) {
    .menu-bar{
        padding: 0.5rem var(--global-h-padding);
        min-height: 80px;
    }
    .menu-bar .bg{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: var(--bg-2);
        backdrop-filter: blur(3px);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s all ease;
        z-index: 6;
    }
    .menu-bar .bg.show{
        visibility: visible;
        opacity: 1;
    }
    .menu-bar .logo img{
        height: 40px;
        width: auto;
    }
    #more-btn,
    #menu-btn{
        display: flex;
    }
    #menu-btn{
        position: absolute;
        right: var(--global-h-padding);
    }
    .menu-actions{
        padding: 4rem 1rem 2rem 1rem;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 100%);
        min-height: 100dvh;
        height: max-content;
        background: var(--menu);
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        z-index: 99;
        transition: 0.3s all ease;
    }
    .menu-actions.active{
        right: 0;
    }
    .menu-bar ul{
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .menu-actions .btn{
        display: initial;
        text-align: center;
        background: var(--bg-3);
    }
    .menu-actions .btn.cl{
        position: absolute;
        top: 0;
        right: 0;
        background: transparent;
        color: var(--text-color);
    }
    .menu-actions a{
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 40px;
    }
    .requests{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .req-txt{
        height: fit-content;
    }
}
@media screen and (max-width: 770px) {
    .section.home{
        padding-top: 20dvh;
        padding-bottom: 0;
        background: var(--body-color);
        min-height: 70dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    .last-scams .bento .row .card.filled.v-2 h3{
        font-size: var(--normal-font-size);
    }
    .last-scams .bento .row .card.filled .urbanist{
        font-size: var(--h2-font-size);
    }
    .last-scams .bento.v-3 .row{
        grid-template-columns: repeat(1, 100%);
        grid-template-rows: 350px auto;
        grid-template-areas:
        'a'
        'b'
        'c'
        'd'
        'e';
    }
}
@media screen and (max-width: 680px) {
    :root {
        --most-bigger-font-size: 1.8rem;
        --biggest-font-size: 1.7rem;
        --h1-font-size: 1.5rem;
        --h2-font-size: 1.25rem;
        --h3-font-size: 1rem;
        --normal-font-size: .9rem;
        --title-font-size: .8rem;
        --small-font-size: .875rem;
        --smaller-font-size: .76rem;
        --smallest-font-size: .71rem;

        --global-h-padding: 1rem;
    }
    .home .content h2{
        line-height: 1.9lh;
    }
    .req-form form{
        padding: 2rem 1rem;
        gap: 1rem;
    }
    .footer{
        padding-top: 4rem;
    }
    .last-news{
        min-height: 70dvh;
    }
    .news-card{
        padding: 0;
    }
    .news-card:not(:last-child){
        border-right: unset;
    }
    .news-card .news-banner{
        min-width: 250px;
        width: 250px;
        height: auto;
        aspect-ratio: 16/11;
    }
    .news-card .news-sum{
        width: 250px;
    }
}
@media screen and (max-width: 580px) {
    .menu-bar.scroll{
        padding: 1rem var(--global-h-padding);
    }
    .section .content{
        gap: 1rem;
    }
    .home .content h2{
        max-width: 100%;
    }
    .home .content p{
        max-width: 100%;
    }
    .home .content .i-field{
        max-width: 100%;
    }
    .home .i-field .s-result{
        padding: 1rem 1.5rem;
    }
    .last-scams .bento .row{
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 150px);
    }
    .last-scams .bento .row:nth-child(odd){
        grid-template-areas: 
        'a a a'
        'b b c'
        'd e e';
    }
    .last-scams .bento .row{
        grid-template-areas: 
        'b b a'
        'c c a'
        'd d e';
    }
    .last-scams .bento.v-3 .row{
        grid-template-columns: repeat(1, 100%);
        grid-template-rows: 250px auto;
        grid-template-areas:
        'a'
        'b'
        'c'
        'd'
        'e';
    }
    .last-scams .bento .row:nth-child(odd) .card:nth-child(1){
        background-position: center;
    }
    .last-scams .bento .row .card.filled{
        padding: 0.5rem;
    }
    .last-scams .bento .row .card.filled.v-3{
        grid-column: 1 / 4;
    }
    .last-scams .bento .row .card .i-field,
    .last-scams .bento .row .card .button{
        height: 45px;
    }
    .last-scams .bento .row .card .i-field i{
        font-size: var(--big-font-size);
    }
    .last-scams .bento .row .card.found{
        max-width: unset;
        aspect-ratio: unset;
    }
    .last-scams .bento.v-2 .row{
        grid-template-columns: repeat(1, 100%);
    }
    .testimonial-card {
        width: 24rem;
    }
    .footer__content {
        gap: 2.5rem 2rem;
    }
}
