*{
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


:root{
    --cor-blue: #1A91F0;
    --cor-blue-mid: #1170CD;
    --cor-blue-dark: #1A1C6A;
    --cor-white: #fff;
    --cor-bright: #EFF2F9;
    --cor-dark: #1e2532;
    --cor-black: #000;
    --cor-grey: #656e83;
    --cor-green: #084C41;
    --font-poppins: 'Poppins', sans-serif;
    --font-manrope: 'Manrope', sans-serif;;
    --transition: all 300ms ease-in-out;
}

.font-poppins{font-family: var(--font-poppins);}
.font-manrope{font-family: var(--font-manrope);}

.text-blue{color: var(--cor-blue);}
.text-blue-mid{color: var(--cor-blue-mid);}
.text-blue-dark{color: var(--cor-blue-dark);}
.text-bright{color: var(--cor-bright);}
.text-dark{color: var(--cor-dark);}
.text-grey{color: var(--cor-grey);}
.text-white{color: var(--cor-white);}

.bg-blue{background-color: var(--cor-blue);}
.bg-blue-mid{background-color: var(--cor-blue-mid);}
.bg-blue-dark{background-color: var(--cor-blue-dark);}
.bg-bright{background-color: var(--cor-bright);}
.bg-dark{background-color: var(--cor-dark);}
.bg-grey{background-color: var(--cor-grey);}
.bg-white{background-color: var(--cor-white);}
.bg-black{background-color: var(--cor-black);}
.bg-green{background-color: var(--cor-green);}

.text-center{ text-align: center;}
.text-left{text-align: left;}
.text-right{text-align: right;}
.text-uppercase{text-transform: uppercase;}
.text-lowercase{text-transform: lowercase;}
.text-capitalize{text-transform: capitalize;}
.text{
    color: var(--cor-dark);
    opacity: 0.9;
    margin: 2rem 0;
    line-height: 1.6;
}

.fw-2{font-weight: 200;}
.fw-3{font-weight: 300;}
.fw-4{font-weight: 400;}
.fw-5{font-weight: 500;}
.fw-6{font-weight: 600;}
.fw-7{font-weight: 700;}
.fw-8{font-weight: 800;}

.fs-13{font-size: 13px;}
.fs-14{font-size: 14px;}
.fs-15{font-size: 15px;}
.fs-16{font-size: 16px;}
.fs-17{font-size: 17px;}
.fs-18{font-size: 18px;}
.fs-19{font-size: 19px;}
.fs-20{font-size: 20px;}
.fs-21{font-size: 21px;}
.fs-22{font-size: 22px;}
.fs-23{font-size: 23px;}
.fs-24{font-size: 24px;}
.fs-25{font-size: 25px;}

.ls-1{letter-spacing: 1px;}
.ls-2{letter-spacing: 2px;}