:root{
    --blue: #0275d8;
    --theme: #050d52;
    --dark : #292b2c;
}

@font-face {
    font-family: eb;
    src: url(../fonts/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: sb;
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: nm;
    src: url(../fonts/Poppins-Regular.ttf);
}

html{
    height: 100%;
}

body{
    padding: 0;
    margin: 0;
    /* background: var(--theme); */
    color: #fff;
    font-family: nm;
    height: 100%;
    letter-spacing: 2.24px;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

.wrapper{
    /* border: 1pt solid red; */
    height: 100%;
}

.big{
    font-size: 3.75em;
    /* font-size: 40px; */
    line-height: 1.15em;
    padding: 10px 0;
}

.med{
    font-size: 2em;
    line-height: 1.25em;
    padding: 10px 0;
    font-family: nm;
}

.small{
    font-size: 1.25em;
    line-height: 1.5em;
    padding: 20px 0;
}

.section{
    position: fixed;
    top: 0;
    min-height: 100%;
    max-height: auto;
    width: 50%;
    background-color: var(--theme);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.left{
    left: 0%;
    /* background: red; */
    /* border: 1pt solid red; */
}

.right{
    right: 0%;
    /* background: black; */
}

.ctnt{
    font-family: sb;
    width: 80%;
    margin: 0 auto;
    /* border: 1pt solid red */
}

.ctnt .btn{
    transition: .4s !important;
}

.ctnt .btn:hover{
    background-color: transparent;
    /* border-width: 2px; */
    color: #fff;
}

.left .ctnt .logo{
    display: none;
    width: 50%;
    height: auto;
}

.left .ctnt .btn{
    display: block;
    font-size: 1.5em;
    width: 50%;
    margin: 20px 0;
}

.left .row img{
    width: 100%;
}

.right .ctnt img{
    display: block;
    width: 50%;
    height: auto;
    margin: 20px auto;
}

