@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: #0064EF18;
    --link: #5267ff;
    --text-gradient: linear-gradient(45deg, #0064EF, var(--title-color));
    --variant: #0064EF;
    --variant-2: #2aaff6;
    --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: 50px;
    width: 50px;
    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: 5rem;
    background-image: linear-gradient(var(--input-color) 40%, var(--body-color));
    min-height: 100dvh;
    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 .sign-icon{
    position: relative;
    padding: 1.5rem;
    background: var(--variant-2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    aspect-ratio: 1/1;
}
.section .content .sign-icon svg{
    width: 100%;
    height: auto;
}
.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);
}
.home .d-container{
    margin-top: 2rem;
    max-width: min(800px, 90%);
}

.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: center;
        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{
        background: var(--body-color);
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
}
@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;
    }
    .footer{
        padding-top: 4rem;
    }
}
@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 .d-container{
        margin-top: 2rem;
        max-width: 100%;
    }
    .home .i-field .s-result{
        padding: 1rem 1.5rem;
    }
    .footer__content {
        gap: 2.5rem 1rem;
    }
}
