@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'TT Commons';
  src: url(../fonts/TT-Commons-DemiBold.woff2) format('woff2'),
       url(../fonts/TT-Commons-DemiBold.woff) format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
    color-scheme: dark;
    --azul: #0D1B2A;
    --amarillo: #B89B6D;
    --azul2: #46505C;
    --azul-trans-25: #021449c3;
    --azul-trans-50: #02144985;
    --blanco: #F5F3EF;
    --negro: #0A0A0A;

    --pad-left: 200px;
    --pad-right: 60px;
    --pad-top: 130px;
}

* {
    margin : 0;
    padding : 0;
    border: 0;
    box-sizing: border-box;
    outline: none;
}
*::-webkit-scrollbar{
    width: 0px;
    height: 0px;
}
*::-webkit-scrollbar-thumb{
    /* background-color: transparent; */
    background-color: #383838;
    border-radius: 5px;
}
*.thumbShow::-webkit-scrollbar-thumb{
    background-color: #d3d3d3 !important;
}


html {
    scroll-behavior: smooth;
}

body{
    width : 100vw;
    height: 100vh;

    font-family: "TT Commons";
    background-color: #3c3c3c;
    box-sizing: border-box;
}   


::backdrop {
  z-index:0;
  background-color: #383838;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.invisible{
    display: none !important;
    visibility: hidden !important;
}

.invisible2{
    overflow: hidden;
    visibility: visible;
}





.btn1{
    position: relative;
    padding: 15px;
    padding-inline: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.btn1-tit{
    position: relative;
    width: calc(100% - 20px);
    height: 100%;
    line-height: 1;

    transition: all 350ms ease-in-out;
    z-index: 10;
}
.btn1-arrow{
    position: relative;
    width: 20px;
    height: 20px;
    z-index: 20;
}
.btn1-arrow-svg{
    fill: var(--azul);
    rotate: -90deg;

    transition: all 350ms ease-in-out;
}
.btn1-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--amarillo);

    transition: all 350ms ease-in-out;
    z-index: 0;
}
.btn1:hover .btn1-tit{
    color: var(--blanco);
}
.btn1:hover .btn1-arrow-svg{
    fill: var(--amarillo);
}
.btn1:hover .btn1-bg{
    width: 100%;
    background-color: var(--azul);
}















.btn2{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.btn2-tit{
    position: relative;
    width: calc(100% - 20px);
    height: 100%;
    padding-right: 20px;
    line-height: 1;

    transition: all 350ms ease-in-out;
}
.btn2-arrow{
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden;
}
.btn2-arrow-int{
    position: absolute;
    width: 100%;
    height: 100%;

    transition: all 350ms ease-in-out;
}
.btn2-arrow-int-svg{
    fill: var(--azul);
    rotate: -90deg;

    transition: all 350ms ease-in-out;
}
.btn2:hover{
    color: var(--azul2);
}
.btn2:hover .btn2-arrow-int{
    animation: btn2-arraw 350ms ease-in-out normal;
}
.btn2:hover .btn2-arrow-int-svg{
    fill: var(--azul2);
}
@keyframes btn2-arraw {
    0%      {   left: -100%; }
    100%    {   left: 0; }
}