@font-face {
    font-family: 'optimumbold';
    src: url('../fonts/qtoptimum_bold-webfont.woff2') format('woff2'),
         url('../fonts/qtoptimum_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'optimum';
    src: url('../fonts/qtoptimum_regular-webfont.woff2') format('woff2'),
         url('../fonts/qtoptimum_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html, body{
    margin:0;
    padding:0;
    background-size:cover;
    background-position: center;
    font-size:14px;
    height:100vh;
    font-family: 'optimum';
}

*{
    box-sizing: border-box;
}

a{
    color:inherit;
    text-decoration: none;
}

.content{
    padding:5rem;
}
img.logo {
    width: 340px;
}

blockquote{
    padding-top:100px;
    margin:0;
    color:#fff;
}

h1 {
    font-weight: normal;
    font-size: 3rem;
    margin: 0;
}

address{
    font-size:1.5rem;
    padding-top:20px;
    line-height: 1.4;
    font-style:normal;
}


cite{
    position: absolute;
    left:5rem;
    bottom:2rem;
    color:white;
    font-style:normal;
}

cite span {
    font-size: inherit;
    font-family: 'Times New Roman', sans-serif;
}

cite small {
    font-size: inherit;
}

cite i{
    font-style:normal;
}

.columns{
    display: flex;
    align-items: stretch;
    
}

.product-info{
    padding-top:4em;

}

.product-info h4{
    color:#161B4B;
    font-size:34px;
    font-weight: normal;
    margin:0;
}

.product-info h5 {
    color: #0090DF;
    font-size: 27px;
    font-weight: normal;
    margin: 10px 0;
    margin-bottom: 20px;
}

.product-info h5 span{
    font-family:Times New Roman;
}

.product-form {
    width: 50%;
    padding-left: 50px;
    padding-right: 15em;
}

.product-img{
   
    width:50%;
    height: auto;
    background-size:cover;
    background-position: center;
}

input[type="text"], input[type="email"] {
    display: block;
    width: 100%;
    border: solid 1px #161B4B;
    padding: 18px 18px;
    margin-bottom: 17px;
    font-size: 18px;
    font-family: 'optimum';
    outline:none;
    transition: ease;
    transition-duration: 0.4s;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus{
    border:solid 1px #0090DF;
    background:#f9f9f9;
}

input::placeholder, textarea::placeholder {
    color:#161B4B;
}

textarea {
    display: block;
    width: 100%;
    border: solid 1px #161B4B;
    padding: 14px;
    margin-bottom: 17px;
    height: 182px;
    outline: none;
    font-family: 'optimum';
    font-size: 18px;
    transition: ease;
    transition-duration: 0.4s;
}


.product-form button{
    background:#D9160C;
    color:white;
    display: block;
    text-align: center;
    padding:14px;
    width:100%;
    border:none;
    font-size:18px;
    font-family: 'optimum';
    cursor: pointer;
    transition: ease;
    transition-duration: 0.4s;

}

.product-form button:hover{
    background:#161B4B;
}

@media(max-width:950px){

    html, body{
        font-size:12px;
        background-position: center;
    }

    img.logo {
    max-width: 61%
}

    .content{
        padding:2.5rem;
    }

    cite {
    font-size: 14px;
    left: 2.5rem;
    bottom: 20px;
    position: fixed;
}

    cite i{
        display: block;
        line-height: 2;
    }

    h1 span {
    display: block;
}

}