@import url('https://fonts.googleapis.com/css2?family=Anton&family=Dancing+Script:wght@400..700&family=Pacifico&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Doodle+Shadow&family=Rubik+Mono+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;400;600;700&display=swap');

:root {
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

.sp-ff1 {
    font-family: "Source Sans Pro", sans-serif;
}

.ff2 {
    font-family: "Rubik Doodle Shadow", system-ui;
    font-weight: 400;
    font-style: normal;
}

.ff3 {
    font-family: 'Dancing Script', cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.ff4 {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
}

.ff5 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    padding: 1rem 8%;
}

body {
    padding: 0;
    margin: 0;
    background-color: #3667cf;
    background: linear-gradient(to right, #3667cf, #6a45ac, #1D3049);
}

.boxContainer {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
}

.boxC35 {
    grid-template-columns: repeat(auto-fit, 21rem);
    padding: 1rem 0 1rem;
}

/********** Direction Flex***************************************************************/
.fila {
    display: flex;
    flex-direction: row;
}

.columna {
    display: flex;
    flex-direction: column
}

.filaR {
    display: flex;
    flex-direction: row-reverse
}

.columnaR {
    display: flex;
    flex-direction: column-reverse
}

.block {
    display: block;
}

.dN {
    display: none;
}

.wrap {
    display: flex;
    flex-wrap: wrap;
}

.nowrap {
    display: flex;
    flex-wrap: nowrap;
}

.flex1117 {
    flex: 1 1 15rem;
}

.flex1145 {
    flex: 1 1 38rem;
}

/*********** A l i n g content **************************************************************/
.acC {
    align-content: center;
}

.acFS {
    align-content: flex-start;
}

.acFE {
    align-content: flex-end;
}

.acSA {
    align-content: space-around;
}

.acB {
    align-content: space-between;
}

.acS {
    align-content: stretch;
}

/*********** J u s t i f y  content **************************************************************/
.jcC {
    justify-content: center;
}

.jcFS {
    justify-content: flex-start;
}

.jcFE {
    justify-content: flex-end;
}

.jcSB {
    justify-content: space-between;
}

.jcSA {
    justify-content: space-around;
}

.jcSE {
    justify-content: space-evenly;
}

/*********** A l i g n   Items **************************************************************/
.aiC {
    align-items: center;
}

.aiFS {
    align-items: flex-start;
}

.aiFE {
    align-items: flex-end;
}

.aiS {
    align-items: stretch;
}

.aiB {
    align-items: baseline;
}

/********* G A P ****************************************************************/
.gap5 {
    gap: .5rem;
}

.gap1 {
    gap: 1rem;
}

.gap15 {
    gap: 1.5rem;
}

.gap2 {
    gap: 2rem;
}

.gap25 {
    gap: 2.5rem;
}

.gap3 {
    gap: 3rem;
}

/******** B o r d e r Radius *****************************************************************/
.br5 {
    border-radius: .5rem;
}

.br1 {
    border-radius: 1rem;
}

.br15 {
    border-radius: 1.5rem;
}

.br3 {
    border-radius: 3rem;
}

.br50 {
    border-radius: 50%;
}

.bsN {
    border-style: none;
}

.bn {
    border: none;
}

.oN {
    outline: none;
}

.border1 {
    border: 1px solid gray;
}

.border2 {
    border: 1px solid white;
}

.border3 {
    border: 1px solid #b68207
}

.border4 {
    border: 1px solid #27ae60
}

.border5 {
    border: 1px solid sandybrown
}

.bN {
    border: white;
}

.bB1 {
    border-bottom: 1px solid white;
}

.bT1 {
    border-top: 1px solid White;
}

/********** T e x t Align ***************************************************************/
.taC {
    text-align: center;
}

.taS {
    text-align: start;
}

.taE {
    text-align: end;
}

.taJ {
    text-align: justify;
}

/********* T e x t Transform ****************************************************************/
.ttU {
    text-transform: uppercase;
}

.ttC {
    text-transform: capitalize;
}

.ttL {
    text-transform: lowercase;
}

.tdN {
    text-decoration: none;
}

.lsN {
    list-style-type: none;
}

/*********** m a r g i n s *****************/
.mt5 {
    margin-top: 0.5rem;
}

.mt1 {
    margin-top: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mb0 {
    margin-bottom: 0rem;
}

.mb5 {
    margin-bottom: 0.5rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb15 {
    margin-bottom: 1.5rem;
}

.ml5 {
    margin-left: 0.5rem;
}

/***************p o s i t i o n ***************************/

.pA {
    position: Absolute;
}

.pF {
    position: fixed;
}

.pR {
    position: relative;
}

.pI {
    position: initial;
}

.pIh {
    position: inherit;
}

.pRv {
    position: revert;
}

.pStic {
    position: static;
}

.pStky {
    position: sticky;
}

/********************************************************/
.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.vh100 {
    height: 100vh;
}

.h15 {
    height: 15rem;
}

.w28 {
    width: 28rem;
}

.w600 {
    width: 600px
}

.w850 {
    width: 850px
}

.w205 {
    width: 2.5rem;
}

.h1200 {
    height: 1200px
}

.h205 {
    height: 2.5rem
}

.fw600 {
    font-weight: 600;
}

.oA {
    overflow: auto;
}

.oH {
    overflow: hidden;
}

.ofC {
    object-fit: cover;
}

.pcontac {
    padding: 8px 12px;
}

.pB0 {
    padding-bottom: 0rem;
}

.pT0 {
    padding-top: 0rem;
}

.p16 {
    padding: 10px 16px;
}

.p5 {
    padding: 0.5rem
}

.p1 {
    padding: 1rem
}

.p2 {
    padding: 2rem
}

.p15 {
    padding: 1.5rem
}

.p {
    padding-bottom: 1rem;
    padding-top: 1rem;
    padding-left: 2rem;
}

.box {
    padding: 1.2rem 1rem;
    margin: 1rem 0;
}

.mA {
    margin: auto;
}

.fs13 {
    font-size: 1.3rem;
}

.fs12 {
    font-size: 1.2rem;
}

.fs11 {
    font-size: 1.1rem;
}

.sp-fs105 {
    font-size: 1.05rem;
}

.fs18 {
    font-size: 1.8rem;
}

.fs1 {
    font-size: 1rem;
}

.fs14 {
    font-size: 1.4rem;
}

.fs15 {
    font-size: 1.5rem;
}

.fs16 {
    font-size: 1.6rem;
}

.fs17 {
    font-size: 1.7rem;
}

.fs2 {
    font-size: 2rem;
}

.fs25 {
    font-size: 2.5rem;
}

.fs3 {
    font-size: 3rem;
}

/*************** colors ***************/
.cP {
    cursor: pointer;
}

.c0 {
    color: black;
}

.c1 {
    color: white;
}

.c2 {
    color: #337ab7;
}

.c3 {
    color: #d5b400
}

.c4 {
    color: red
}

.c5 {
    color: orange
}

.c6 {
    color: yellow
}

.c7 {
    color: purple
}

.c8 {
    color: gray
}

.c9 {
    color: #9AA0A6
}

.c10 {
    color: #4a5568
}

.c11 {
    color: #27ae60
}

.c12 {
    color: lightseagreen;
}

/*
 .c5{color: #cda45e}
 .c6 {color: #451400}
 .c7 {color: #27ae60}
 .c8 {color: #f39c12}
 .c9 {color: #d36932}
 .c10 {color: #dd4b39}
 .c11 {color: #47CE47}
*/



/****************************** buttons **************************/
.button {
    border: 0;
    background-image: linear-gradient(150deg,
            #9500ff,
            #09f,
            #00DDFF);
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 1.05rem;
    padding: 4px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

button span {
    background-color: #111;
    padding: 8PX 1PX;
    border-radius: 6px;
    transition: .3s;
    width: 100%;
    font-weight: 600;
    font-family: "Source Sans Pro", sans-serif;
}

/*
button:hover span {
    font-size: 1.1rem;
}*/

button:active {
    transform: scale();
}

.btn1:hover {
    background: white
}

/*
 .btn1{background-color: #337ab7; }
.btn1:hover{background-color: #72afd2; letter-spacing: 1px;}
.btn2{background-color: none; }
.btn2:hover{background-color: #72afd2; color: white;}
.btn3{background-color: none; }
.btn3:hover{background-color: #eee; color: #337ab7;}*/

.bgcT {
    background-color: transparent;
}

.bgc0 {
    background-color: white;
}

.bgc1 {
    background-color: #101010;
}

.bgc2 {
    background-color: lightslategray;
}

.bgc3 {
    background-color: lightsteelblue
}

.bgc4 {
    background-color: #eee;
}

.bgc5 {
    background-color: #fdfaf9;
}

.bgc6 {
    background-color: #c8e6c9;
}

.bgc7 {
    background-color: #f7fafc;
}

.bgc8 {
    background-color: #f6f6f6;
}

.bgc9 {
    background-color: rgb(232, 240, 254)
}

.bgc10 {
    background-color: #202124;
}

.bgc11 {
    background-color: #27ae60;
}

.bgc12 {
    background-color: lightseagreen;
}

.BT1 {
    border-top: 3px solid lightsteelblue;
}

.BR1 {
    border-right: 3px solid lightsteelblue;
}

.BL1 {
    border-left: 3px solid lightsteelblue;
}

.BB1 {
    border-bottom: 3px solid lightsteelblue;
}

.bts3 {
    border-top: 3px solid #eee;
}

.brs3 {
    border-right: 3px solid #eee;
}

.bls3 {
    border-left: 3px solid #eee;
}

.bbs3 {
    border-bottom: 3px solid #eee;
}

/**************************************/

.container_msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mensaje_verde {
    color: green;
}

.mensaje_azul {
    color: skyblue;
}

.mensaje_rojo {
    color: red;
}

.wsN {
    white-space: nowrap;
}

/**********************************************************/

.header {
    /*
    background: linear-gradient(to right, #3667cf, #6a45ac, #1D3049);*/
    background: #3667cf;
    background: linear-gradient(to right, #3667cf, #6a45ac, #1D3049);
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .content_header {
    display: flex;
    padding: 0rem 8%;
    margin: 0 auto;

}

header .content_header .navbar-active {
    background: #3667cf;
    background: linear-gradient(to right, #3667cf, #6a45ac, #1D3049);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: solid 2px white;
}

/********************************************/
.boton {
    margin: 10px;
}

.lbl-switch {
    display: inline-block;
    width: 55px;
    height: 30px;
    background: #aaa;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
}

#btn-switch:checked~.lbl-switch {
    background: #61A0FF;
}

.lbl-switch:after {
    position: absolute;
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 100px;
    top: 4px;
    left: 5px;
    transition: 0.3s;
}

#btn-switch:checked~.lbl-switch:after {
    left: 28px;
}

#btn-switch {
    display: none;
}

/******************************************/