*   {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif, Arial;
}

body {
    background: rgb(234,247,255);
    background: linear-gradient(180deg, rgba(234,247,255,1) 0%, rgba(255,255,255,1) 100%);
    background-repeat: no-repeat;
}

header {
    background: white;
    border-bottom: 2px solid #F2F2F7;
}

nav {  
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 678px;
    margin: 0 auto;
}

nav .menu-btn {
    display: flex;
    align-items: center;
}
nav a.menu-btn {
    text-decoration: none;
    color: #97a1b6;
}
nav .menu-btn img {
    margin-left: 5px;
}

.menu a {
    display: block;
    padding: 20px;
    border-bottom: solid 2px #F2F2F7;
    text-decoration: none;
    color: #142B5A;
}

footer {
    background-color: #142B5A;
    border: none;
}


#menu footer {
    bottom: 0;
    position: absolute;
    width: 100%;
}

footer nav img {
    filter: grayscale(1);
    opacity: .5;
}

.main {
    max-width: 678px;
    margin: 0 auto;
    padding: 0px 15px 15px;
}

.content {
    width: 100%;
}

.table {
    margin-top: 15px;
}

.table .box {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: #002a4514 0px 20px 35px;
}

.table .box .lender {
    padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.table .box .lender .tooltip-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;

    transition: .15s ease-in-out all;
}

.table .box .lender .tooltip-btn:hover{
    cursor: pointer;
    transform: rotate(20deg);
}

.table .box .lender .tooltip-info {
    position: absolute;
    padding: 20px;
    background-color: #2b334c;
    border-radius: 20px 5px 20px 20px;
    width: inherit;
    top: 0;
    right: 0;
    margin: 0 0 15px 15px;
}

.tooltip-info-hidden {
    display: none;
}

.table .box .lender .tooltip-info p {
    color: white;
    font-size: 14px;
    width: 90%;
}

.table .box .lender .logo {
    width: 115px;
    min-width: 115px;
    height: 115px;
    background: #F2F2F7;
    border-radius: 5px;
    margin-right: 15px;
    overflow: hidden;
}

.table .box .lender .logo .logo-holder {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-holder img {
    max-width: 90px;
    max-height: 44px;
}

.table .box .lender .logo .rating {
    background: #E8EAF1;
    color: #253667;
    font-size: 12px;
    font-weight: bold;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo .rating img {
    margin-right: 3px;
}

.table .box .lender .d1 {
    margin-bottom: 10px;
}

.lender-information {
    padding: 15px 15px 0 15px;
    background: linear-gradient(180deg,#EFF2F7, #f7fbff 100%);

    background-color: #EFF2F7;
}
.lender-info-row {
    display: grid;
    grid-template-columns: 130px auto;
    padding: 0 0 15px 0;
}

.table .box .lender .big-lable,
.table .box .lender-information .big-lable {
    color: #142B5A;
    font-size: 14px;
    font-weight: bold;
    text-rendering: geometricPrecision;
}

.table .box .lender .small-lable,
.table .box .lender-information .small-lable {
    color: #142B5A;
    font-size: 14px;
    opacity: .5;
}

.table .box a.cta {
    display: flex;
    position: relative;
    background: #E53882;
    background: linear-gradient(90deg, #E53882 0%, #FF84B9 100%);
    justify-content: center;
    padding: 15px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    text-rendering: geometricPrecision;
}

.table .box a.cta img{
    position: absolute;
    right: 20px;
    top: 20px;
}

.content h1 {
    font-size: 26px;
    color: #142B5A;
    margin-bottom: 15px;
    margin-top: 15px;
    text-rendering: geometricPrecision;
}

.content h2 {
    font-size: 20px;
    color: #142B5A;
    margin-bottom: 15px;
    margin-top: 50px;
    text-rendering: geometricPrecision;
}

.content h3 {
    font-size: 18px;
    color: #142B5A;
    margin-bottom: 15px;
    margin-top: 25px;
    text-rendering: geometricPrecision;
}

.content p {
    color: #6A7A96;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
}



.incontent-row span p {
    font-size: 12px;
    margin: 0;
    color: #6A7A96;
    opacity: .75;
    font-weight: normal;
    text-transform: uppercase;
}

.incontent-row {
    padding-bottom: 15px;
    border-bottom: 2px solid #F2F2F7;
    margin-bottom: 15px;
}

.incontent-row p{
    margin: 0 0 5px;
    color: #142b5a;
    font-size: 16px;
}

.incontent-row p.brand{
    text-transform: uppercase;
    color: #0052F9;
    font-weight: bold;
    font-size: 18px;
}


ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
}

ul li p {
    color: #142B5A !important;
}

ul li::before {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 5px;
    background: #FF84B9;
    left: 0;
    top: 11px;
}

/*Brige page*/

.bridge {
    height: calc(100vh - 64px);
    display: flex;
}

.bridge .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.bridge .instructions {
    text-align: center;
    margin-bottom: 15px;
}

p.pseudo-title {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    color:#142B5A;
    margin-bottom: 30px;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.form-container img {
    margin: 0 auto 30px;
}

form {
    display: flex;
    position: relative;
}

form input {
    border: none;
}

form .field {
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    box-shadow: #002b4527 0px 20px 35px;
    border: none;
}

.button {
    background: #FF8FC1;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 19px 20px;
    display: block;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
}

.contact-form input {
    margin-bottom: 15px;
}

#menu form .field {
    width: calc(100% - 40px);  
}

.contact-form .button {
    width: 100%;
}

a.gray-btn {
    display: block;
    font-weight: bold;
    font-size: 18px;
    background: #97A3B8;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 20px;
    margin-bottom: 90px;
}

@-webkit-keyframes bounce {
    0% { transform: translateY(-10px)  }
    50% { transform: translateY(15px) }
    100% { transform: translateY(-10px) }
}

@keyframes bounce {
    0% { transform: translateY(-10px)  }
    50% { transform: translateY(15px) }
    100% { transform: translateY(-10px) }
}

.bridge-img {
    -webkit-animation: bounce 3s infinite ease-in-out;
    -o-animation: bounce 3s infinite ease-in-out;
    -ms-animation: bounce 3s infinite ease-in-out; 
    -moz-animation: bounce 3s infinite ease-in-out; 
    animation: bounce 3s infinite ease-in-out;
}

footer nav {
    justify-content: center;
}
