/* Font Scheme
--------------------------------------------------*/

@font-face {
    font-family: pfbeausans;
    src: url(https://assets.ctfassets.net/ex6ts2p2j0ib/1GoyWTxLZkGbwpcprnxqYg/914560d14b4ecd0eedada6006ee00285/pfbeausanspro-reg-webfont.be8262f6f93a8b345acd.woff2) format("woff2"), 
        url(pfbeausanspro-reg-webfont.5d2c4f8abfd0032f703a.woff) format("woff");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: pfbeausans;
    src: url(https://assets.ctfassets.net/ex6ts2p2j0ib/7vY7FhwrNpFv1YfsTNFaxv/fa282fc300bcd6976cc60e9b95f11e40/pfbeausanspro-bold-webfont.4870f99dd015ac639421.woff2) format("woff2"), 
        url(pfbeausanspro-bold-webfont.e679be30f4d968c50683.woff) format("woff");
    font-weight: 700;
    font-style: normal
}
@font-face {
    font-family: pfbeausans;
    src: url(https:////assets.ctfassets.net/ex6ts2p2j0ib/7tV8rat3kH1unSIdopEkLI/6278810834e37b8c64c83ad3c262b849/pfbeausanspro-thin-webfont.78b53d9b7ecdf6e3ae35.woff2) format("woff2"), 
        url(pfbeausanspro-thin-webfont.bb61709ffb1f5154aff0.woff) format("woff");
    font-weight: 300;
    font-style: normal
}

@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;700;900&display=swap');

/*End of Typo Scheme
--------------------------------------------------*/

/* Color Scheme
--------------------------------------------------*/
:root{
    --main-green: #3dae2b;
    --main-green--10: #eaf4e6;
    --neutral-black-80: #3f3f3f;
    --cool-gray-1c: #d9d8d6;
    --cool-gray-1c--10: #f9f9f9;
    --c192c: #eb0045;
}

/*End of Color Scheme
-------------------------------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    height: 66%;
    font-family: pfbeausans, 'Maven Pro', sans-serif;
    background-image:
        linear-gradient(to bottom, hsl(0, 0%, 0%, .4), hsl(0, 0%, 0%, .4)),
        url(https://image.corp.bancofalabella.com/lib/fe9a12717c64067c77/m/1/0c88508b-e07b-4c78-ae1c-e253af191f46.jpg);
    background-repeat:
        no-repeat,
        no-repeat;
    background-size:
        cover,
        cover;
    background-position:
        center center,
        left top;
    backdrop-filter: blur(20px);
}

.logo-sifc-container {
    position: fixed;
    top: 50%;
    left: .5%;
    transform: translateY(-50%);
    z-index: 3;
}

.logo-sifc {
    width: 30%;
    max-width: 50px;
}

.main-header__logo-container {
    margin: 0 auto;
}

.inscription-form__container {
    width: 85%;
    margin: 0 auto 17em;
    margin-top: 2em;
    padding: 20px;
    background-color: #fff;
    border-radius: 1em;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    overflow: visible;
    position: relative;
}

div.layout.layout-canvas-g {
    position: relative;
    z-index: 3;
}

.inscription-form__headline,
.conversion__headline {
    font-size: 2em;
}

.conversion__headline {
    margin-top: 1em;
}

.conversion__content {
    width: 85%;
    margin: 1.875em 0 5em;
    font-size: .78em;
    text-align: justify;
    hyphens: auto !important;
    letter-spacing: -.25px;
}

.conversion__images-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    position: absolute;
    bottom: -3.5em;
}

.conversion__images-image {
    display: block;
}

.conversion__images-image--1,
.conversion__images-image--2 {
    width: 15%;
    margin-right: .5em;
}

.conversion__images-image--3 {
    width: 70%;
    margin-left: 1em;
}

.logo-container__logo {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 0 auto;
}

.main-footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--neutral-black-80);
}

.footer__logo-container{
    width: 67%;
    margin: 0 auto;
}

.footer__logo{
    width: 100%;
    display: block;
    margin: 0 auto;
}


/*=====================================================================================================================
=                                                      Media Queries                                                  =
=====================================================================================================================*/
/* Desktop */
@media only screen and (min-width: 800px) {
    body {
        background-position: center center;
    }
    
    .logo-sifc {
        width: 50%;
    }

    .inscription-form__container {
        max-width: 1080px;
        margin-bottom: 20em;
    }

    .inscription-form__headline,
    .inscription-form__form,
    .inscription-form__conversion {
        width: 70%;
    }

    .inscription-form__headline,
    .conversion__headline {
        font-size: 2.5em;
    }

    .conversion__headline {
        margin-top: 1em;
    }

    .conversion__content {
        width: 100%;
        margin-top: 1em;
        font-size: 1em;
    }

    .conversion__images-container {
        width: 100%;
        left: 2%;
        right: 0;
        bottom: -15%;
    }

    .conversion__images-image--1,
    .conversion__images-image--2 {
        width: 15%;
        max-width: 100px;
        margin-right: .5em;
    }

    .conversion__images-image--3 {
        margin-left: 5%;
    }

    .footer__logo-container {
        width: 9%;
    }
}

/*=============================================  End of Media Queries  ==============================================*/