html, body{
    margin: 0;
    position: relative;
    height: 100%;
}

@font-face {
    font-family: "Arimo Regular";
    src: url("../fonts/arimo/Arimo-Regular.ttf")
}

@font-face {
    font-family: "Arimo Bold";
    src: url("../fonts/arimo/Arimo-Bold.ttf")
}

@font-face {
    font-family: "Hind SemiBold";
    src: url("../fonts/hind/Hind-SemiBold.ttf")
}

@font-face {
    font-family: "Hind Bold";
    src: url("../fonts/hind/Hind-Bold.ttf")
}

.content{
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
    min-height: 100%;
}

/*Left side*/

.left-side{
    background: linear-gradient(360deg, #AAB2BB -10.07%, rgba(52, 170, 223, 0) 38.71%), radial-gradient(42.19% 49.79% at 71.56% 53.73%, #8FCCEE 0%, #0F9CD8 78.9%, #099AD6 100%), #C4C4C4;
    height: 135px;
    position: relative;
    overflow: hidden;
}

.man{
    position: absolute;
    bottom: -50px;
    right: 10%;
    max-width: 180px;
}

.slogan{
    position: absolute;
    border: 0;
    left: 15px;
    top: 30px;
    max-width: 140px;
}

/*Right side*/

.right-side{
    background: #F2F2F2;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 24px 15px 34px 15px;
}

.right-side-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.uptitle{
    font-family: "Hind Bold";
    font-size: 14px;
    color: #182635;
    text-transform: uppercase;
}

.title{
    font-family: "Hind SemiBold";
    font-size: 20px;
    color: #0F9CD8;
    text-align: center;
}

.right-side-form{
    width: 100%;
}

.info{
    font-family: "Arimo Regular";
    font-size: 14px;
    color: #182635;
    margin-top: 24px;
    text-align: center;
}

.choices__inner{
    background: white;
    font-family: "Arimo Regular";
    color: #A8ABAF;
    border: 1px solid #A8ABAF;
    font-size: 14px;
    min-height: auto;
    width: calc(100% - 17px);
}

.choices__list{
    font-family: "Arimo Regular";
    font-size: 14px;
    color: #182635;
    width: calc(100% - 2px);
}

.choices.is-disabled .choices__inner{
    background: transparent;
}

.is-disabled .choices__list{
    color: #A8ABAF;
}

.choices[data-type*=select-one]:after{
    display: none;
}

.choices[data-type*=select-one]:before{
    content: '';
    border: solid #A8ABAF;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none;
    transform: rotate(45deg);
    transition: transform 100ms ease-out;
}

.choices[data-type*=select-one].is-open:before {
    transform: rotate(-135deg);;
}

.button{
    background: #B8DE31;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: "Arimo Regular";
    color: #182635;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 250ms ease-out;
    border: none;
    margin-top: 24px;
    width: 100%;
    text-decoration: none;
}

.button:hover{
    background-color: rgba(184, 222, 49, .8);
}

.input{
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.input-label{
    font-family: "Arimo Regular";
    font-size: 14px;
    color: #182635;
    margin-bottom: 10px;
}

.input-inner{
    padding: 12px 0 12px 15px;
    border: 1px solid #A8ABAF;
    color: #182635;
    font-family: "Arimo Regular";
    font-size: 14px;
}

.input-inner::placeholder{
    color: #A8ABAF;
    font-family: "Arimo Regular";
    font-size: 14px;
}

input:focus{
    outline: none;
}

/*Validation*/
.product-img{
    width: 80%;
    max-width: 375px;
}

.product{
    margin-top: 20px;
}

.negoce-card{
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #A8ABAF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.negoce-title{
    color: #0F9CD8;
    font-family: "Arimo Bold";
    font-size: 16px;
    text-align: center;
}

.negoce-name{
    color: #182635;
    font-family: "Arimo Regular";
    font-size: 16px;
    text-align: center;
    max-width: 80%;
    margin-top: 10px;
}

.discover{
    padding: 14px 0;
}

.big{
    font-size: 20px;
}

@media (min-width: 720px) {

    .content{
        flex-direction: row;
        height: 100%;
    }

    .left-side{
        background: linear-gradient(360deg, #AAB2BB 0%, rgba(52, 170, 223, 0) 38.71%), radial-gradient(50.93% 56.32% at 55.62% 64.86%, #8FCCEE 0%, #0F9CD8 78.9%, #099AD6 100%), #C4C4C4;
        height: 100%;
        width: 40%;
    }

    .slogan{
        max-width: none;
        left: 50px;
    }

    .man{
        max-width: none;
        right: auto;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

    .mobile{
        display: none;
    }

    .right-side{
        justify-content: center;
    }

    .discover{
        width: auto;
        padding: 14px 32px;
    }

    .big{
        font-size: 22px;
    }
}

@media (min-width: 1200px) {
    .right-side{
        padding: 0 100px;
    }

    .form{
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .title{
        max-width: 80%;
        font-size: 26px;
    }

    .full{
        width: 100%;
    }

    .half{
        width: calc(50% - 12px);
    }

    .right{
        margin-right: 12px;
    }

    .left{
        margin-left: 12px;
    }

    .button{
        width: auto;
        margin-top: 32px;
    }

    .info{
        margin-top: 32px;
        width: 100%;
    }
}

/* Modal */
.modal{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content{
    border-radius: 10px;
    padding: 60px;
    background: white;
    font-family: "Arimo Regular";
    font-size: 14px;
    color: #182635;
}

