html,
body {
    height: 100%;
}

a {
    outline: none !important;
}

@font-face {
    font-family: Lato-Regular;
    src: local("fonts/Lato/Lato-Regular.ttf"), url(../fonts/Lato/Lato-Regular.ttf);
}

@font-face {
    font-family: Lato-Bold;
    src: local("fonts/Lato/Lato-Bold.ttf"), url(../fonts/Lato/Lato-Bold.ttf);
}

@font-face {
    font-family: Lato-Light;
    src: local("fonts/Lato/Lato-Light.ttf"), url(../fonts/Lato/Lato-Light.ttf);
}

@font-face {
    font-family: Lato-Italic;
    src: local("fonts/Lato/Lato-Italic.ttf"), url(../fonts/Lato/Lato-Italic.ttf);
}

@font-face {
    font-family: Lato-Thin;
    src: local("fonts/Lato/Lato-Thin.ttf"), url(../fonts/Lato/Lato-Thin.ttf);
}
@font-face {
    font-family: Cochin;
    src: local("fonts/Cochin/cohin-lt.ttf"), url(../fonts/Cochin/Cochin-lt.ttf);
}

.main {
    width: 100%;
    display: table;
}

.header {
    width: 100%;
    background-size: cover;
    position: relative;
}

.navbar {
    width: 100%;
    max-height: 100px;
    min-height: 60px;
    background-color: #083F56;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.50);
    margin: 0px;
    border-radius: inherit;
    position: fixed;
    z-index: 999;
    transition-property: min-height, background-color, max-height;
    transition-duration: 1s, 1s, 1s;
}

@media only screen and (min-width: 768px) {
    .navbar {
        width: 100%;
        height: 10%;
        max-height: 100px;
        min-height: 60px;
        background-color: #083F56;
        box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.50);
        margin: 0px;
        border-radius: inherit;
        position: fixed;
        z-index: 999;
        transition-property: min-height, background-color, max-height;
        transition-duration: 1s, 1s, 1s;
    }



}

.phone-menue {
    display: inherit;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    font-family: Lato-Thin;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    margin-right: 10px;
    text-align: center;
    margin-top: 10px;
    width: 100px;
    height: 40px;
    float: right;
    background: transparent;
}

@media only screen and (min-width: 768px) {
    .phone-menue {
        display: none;
    }
}

.phone-options {
    background: -webkit-linear-gradient(bottom, rgba(11, 31, 39, 1) 20%, rgba(8, 63, 86, 1) 80%);
    position: absolute;
    height: calc(100% + 15px);
    min-height: 615px;
    max-height: 0px;
    width: 100%;
    z-index: 999;
    opacity: 0;
    -webkit-transition: top 0.025s;
    transition: opacity 0.5s, max-height 3s;
}
/*for landscape*/
@media only screen and (min-width: 425px) {
    .phone-options {
        min-height: 700px;
    }
}

.close {
    opacity: 1;
    text-decoration: none;
    float: right;
    background: transparent;
    border: none;
    font-size: 3em;
    font-family: Lato-Thin;
    color: white;
    margin-right: 22px;
    outline: none;
    font-weight: 100;
    transition: transform .3s ease-in-out;
}

.close:hover {
    color: #FF761A;
    text-decoration: none;
    opacity: 0.7;
    cursor: pointer;
}

.options1 {
    margin-top: 75px;
}

.options2 {
    height: 15%;
    width: 80%;
    margin-left: 10%;
    margin-top: 10%;
}

.phone-options ul {
    list-style: none;
    font-size: 200%;
    text-align: center;
}

.phone-options .options1 li {
    margin-bottom: 7%;
}

.phone-options .options2 li {
    margin-bottom: 15%;
}

.phone-options ul li a {
    color: white;
    font-weight: bold;
    font-family: Lato-Thin;
    line-height: 1;
}

.phone-options ul li a:hover {
    text-decoration: none;
}

.phone-login {
    border: 1px solid #FFFFFF;
    border-radius: 8px
}

.phone-signup {
    background-color: #FF761A;
    border-radius: 8px;
}

.logo-phone {
    background-image: url(../images/logo-header.png);
    height: 45px;
    width: 118px;
    background-repeat: no-repeat;
    opacity: 0.6;
    background-size: cover;
}

#myNavbar {
    display: none;
    margin-top: 0%;
    float: none;
    margin-left: 15%;
}

@media only screen and (min-width: 768px) {
    #myNavbar {
        display: inherit;
        margin-top: 1.5%;
    }
}

@media only screen and (min-width: 1280px) {
    #myNavbar {
        display: inherit;
        margin-top: 1.2%;
    }
}

@media only screen and (min-width: 1920px) {
    #myNavbar {
        display: inherit;
        margin-top: 2%;
    }
}
@media only screen and (min-width: 2000px) {
    #myNavbar {
        display: inherit;
        margin-top: 1%;
    }
}

#myNavbar ul {
    list-style: none;
}

#myNavbar li {
    display: inline;
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
}

.button {
    position: relative;
    overflow: hidden;
    padding-bottom: 4px;
    display: inline-block;
}

.button:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: -1;
    bottom: 0;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.4s ease-in;
}

.button:hover:after {
    transform: translate3d(0, 0, 0);
}

.button:after {
    background-color: #FF761A;
}

#myNavbar .button {
    font-family: Lato-Thin;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.nav-logo {
    margin-top: 10px;
}

@media only screen and (min-width: 768px) {
    .nav-logo {
        margin-top: 0.4%;
    }
}

@media only screen and (min-width: 900px) {
    .nav-logo {
        margin-top: 0.6%;
    }
}

@media only screen and (min-width: 1280px) {
    .nav-logo {
        margin-top: 0.4%;
    }
}

@media only screen and (min-width: 1920px) {
    .nav-logo {
        margin-top: 1.2%;
    }
}
@media only screen and (min-width: 2000px) {
    .nav-logo {
        margin-top: 0.6%;
    }
}

.container-logo-img {
    padding-top: 0%;
}

.logo-header {
    width: auto;
    height: 40px;
}

@media only screen and (min-width: 768px) {
    .logo-header {
        width: 120%;
        height: auto;
    }
}

.login-rectangle {
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    font-family: Lato-Thin;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.nav>li>a.login-rectangle:focus,
.nav>li>a.login-rectangle:hover {
    color: #ccc;
    border-color: #ccc;
}

.nav>li>a {
    padding: 4px 10px;
}

.signup-rectangle {
    background: #FF761A;
    border-radius: 8px;
    font-family: Lato-Bold;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.nav>li>a.signup-rectangle:focus,
.nav>li>a.signup-rectangle:hover {
    color: #FFFFFF;
    background-color: #bf4e03;
}

.jumbotron-sagal {
    width: 100%;
    padding: 0px;
    background-image: url("https://s3.amazonaws.com/sagal.io/jumbotron.jpg");
    background-size: cover;
    height: 100vh;
    min-height: 615px;
}


/*background transparente azulado*/

.jumbotron-background {
    background-color: rgba(45, 61, 67, 0.60);
    height: 100vh;
    min-height: 615px;
    justify-content: center;
    align-items: center;
    display: grid;
}

.jumbotron-title-text:after {
    content: 'Multiplique las ventas en\a' 'sus canales de comercio online';
    white-space: pre-wrap;
}

@media only screen and (max-width: 425px) {
    .jumbotron-title-text:after {
        content: 'Multiplique las ventas en sus canales de comercio online';
    }
}

.jumbotron-title {
    font-family: Lato-Light;
    font-size: 185%;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 61px;
    text-align: center;
    margin-top: 0%;
    padding-top: 30%;
}

@media only screen and (min-width: 425px) {
    .jumbotron-title {
        font-family: Lato-Light;
        font-size: 250%;
        color: #FFFFFF;
        letter-spacing: 1px;
        line-height: 61px;
        text-align: center;
        margin-top: 10%;
        padding-top: 0%;
    }
}

@media only screen and (min-width: 768px) {
    .jumbotron-title {
        font-family: Lato-Light;
        font-size: 400%;
        color: #FFFFFF;
        letter-spacing: 3.73px;
        line-height: 61px;
        text-align: center;
    }
}

.jumbotron-slogan {
    font-family: Lato-Italic;
    font-size: 60%;
    color: #FFFFFF;
    line-height: 45px;
    padding: 0px;
}

@media only screen and (min-width: 768px) {
    .jumbotron-slogan {
        font-family: Lato-Italic;
        font-size: 60%;
        color: #FFFFFF;
        line-height: 70px;
    }
}

.jumbotron-cta:after {
    content: "COMENZÁ A VENDER AHORA";
}

@media only screen and (max-width: 425px) {
    .jumbotron-cta:after {
        content: "COMENZÁ A VENDER";
    }
}

.jumbotron-sub-cta:after {
    content: "Prueba gratis por 15 días";
}

@media only screen and (max-width: 425px) {
    .jumbotron-sub-cta:after {
        content: "Prueba gratis por 15 días";
    }
}

.jumbotron-cta {
    background: #FF761A;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.50);
    border-radius: 8px;
    font-family: Lato-Regular;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 1.2px;
    margin-top: 5%;
}

.jumbotron-sub-cta {
    font-family: Lato-Thin;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 1.2px;
}

@media only screen and (max-width: 768px) {
    .jumbotron-cta {
        width: 90%;
        margin-left: 5%;
        background: #FF761A;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.50);
        border-radius: 8px;
        font-family: Lato-Regular;
        font-size: 18px;
        color: #FFFFFF;
        letter-spacing: 1.2px;
        margin-top: 5%;
    }
}

@media only screen and (max-width: 425px) {
    .jumbotron-cta {
        width: 80%;
        margin-left: 10%;
        background: #FF761A;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.50);
        border-radius: 8px;
        font-family: Lato-Regular;
        font-size: 18px;
        color: #FFFFFF;
        letter-spacing: 1.2px;
        margin-top: 5%;
    }
}

.jumbotron-cta:focus,
.jumbotron-cta:hover {
    color: #FFFFFF;
    background-color: #bf4e03;
}

.container { 
  width: 100%; 
  text-align: center;
  display: inherit;
}
@media only screen and (max-width: 992px) {
    .container{
        display: none;
    }
    .name-xs{
        padding-bottom: 15px;
    }
}
.container a:focus,
.container a:hover{
    color: white;
}
.fa-circle { 
    color: transparent;
    border: 2px solid #FFF;
    border-radius: 42px;
}
.arrow-down { 
  color: white; 
}
.fa-chevron-down{
     transition: padding-top 0.5s;
     font-size: 17px !important;
}
.fa-chevron-down:hover,
.fa-chevron-down:focus{
    color: white;
    padding-top: 4px;
}

.publicacion-masiva:after {
    content: 'Publicá todos tus artículos sin demoras,\ay creá tus tiendas online en minutos.\a No pierdas más tiempo copiando y\apegando la misma información.';
    white-space: pre-wrap;
}

@media only screen and (max-width: 768px) {
    .publicacion-masiva:after {
        content: 'Publicá todos tus artículos sin demoras, y creá tus tiendas online en minutos. No pierdas más tiempo copiando y pegando la misma información.';
    }


}

.sincroniza-stock:after {
    content: 'Olvidate de los pedidos trancados,\ay de las sorpresas para tus clientes.\aTu stock online al día, siempre.';
    white-space: pre-wrap;
}

@media only screen and (max-width: 768px) {
    .sincroniza-stock:after {
        content: 'Olvidate de los pedidos trancados, y de las sorpresas para tus clientes. Tu stock online al día, siempre.';
    }
}

.gestion-pedidos:after {
    content: 'Conocé el estado de tus pedidos en todo momento,\ay actúa sobre ellos para acelerar tus ventas.';
    white-space: pre-wrap;
}

@media only screen and (max-width: 768px) {
    .gestion-pedidos:after {
        content: 'Conocé el estado de tus pedidos en todo momento, y actúa sobre ellos para acelerar tus ventas.';
    }
}

.multiples-canales:after {
    content: 'Gestioná todos tus canales desde un mismo\alugar. Información unificada, para facilitar\ala gestión y permitirte vender más.';
    white-space: pre-wrap;
}

@media only screen and (max-width: 768px) {
    .multiples-canales:after {
        content: 'Gestioná todos tus canales desde un mismo lugar. Información unificada, para facilitar la gestión y permitirte vender más.';
    }
}

.facturacion-automatica:after {
    content: 'Creá tus facturas automáticamente\a''en tu sistema de gestion,\a''evitando posibles retrasos.';
    white-space: pre-wrap;
}

@media only screen and (max-width: 768px) {
    .facturacion-automatica:after {
        content: 'Creá tus facturas automáticamente en tu sistema de gestion, evitando posibles retrasos.';
    }
}

.body-blue {
    background-color: #083F56;
    color: #FFFFFF;
    padding: 3% 0% 3% 0%;
    text-align: left;
    min-height: 260px;
}

.body-white {
    color: #083F56;
    padding: 3% 0% 3% 0%;
    text-align: right;
    min-height: 260px;
}

.body-white-img {
    width: 100%;
    height: auto;
    margin-bottom: 5%;
    display: inherit;
}

@media only screen and (max-width: 768px) {
    .body-white-img {
        display: none;
    }
}

.body-blue-img {
    width: 80%;
    height: auto;
    display: inherit;
}

@media only screen and (max-width: 768px) {
    .body-blue-img {
        display: none;
    }
}

.phone-img-container {
    display: none;
}

@media only screen and (max-width: 768px) {
    .phone-img-container {
        display: inherit;
    }
}
.phone-img {
    width: 100%;
    height: auto;
}

.body-text-title {
    font-family: Lato-Regular;
    font-size: 250%;
    letter-spacing: 1.06px;
    padding-top: auto;
}
@media only screen and (max-width: 768px) {
    .body-text-title {
        padding-top: 5%;
        font-size: 150%;
    }
}

.fac-auto{
    padding-left: 15px;
    padding-right: 15px;
}
@media only screen and (max-width: 768px) {
    .fac-auto {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.body-text-description {
    font-family: Lato-Thin;
    font-weight: 600;
    font-size: 125%;
    letter-spacing: 1.2px;
    line-height: 28px;
    padding-top: auto;
}
@media only screen and (max-width: 768px) {
    .body-text-description {
        padding-top: 5%;
        font-size: 95%;
        line-height: 20px;
        font-family: Lato-Regular;
    }
}


.cell-center {
    text-align: inherit;
}

@media only screen and (max-width: 768px) {
    .cell-center {
        text-align: center;
    }
}


.integration-div {
    background: #FFFFFF;
}

@media only screen and (min-width: 768px) {
    .integration-div {
        background: -webkit-linear-gradient(bottom, #FF761A 50%, #083F56 50%);
    }
}

.integration-box {
    background: transparent;
    box-shadow: inherit;
    border-radius: 0px;
    padding: 10% 0% 15% 0%;
}
@media only screen and (max-width: 768px) {
    .integration-box{
        padding: 10% 0% 0% 0%;
    }
}

@media only screen and (min-width: 768px) {
    .integration-box {
        background: #FFFFFF;
        box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.30);
        border-radius: 30px;
        padding: 5% 0%;
        margin-bottom: 5%;
        margin-top: 5%;
    }
}

.integration-title {
    font-family: Lato-Light;
    font-size: 36px;
    color: #083F56;
    letter-spacing: 1.06px;
    text-align: center;
}

.integration-img-container {
    margin-top: 5%;
}

.onebyone-carosel-img-integration {
    width: 70%;
}
@media only screen and (max-width: 992px) {
    .onebyone-carosel-img-integration {
       width: 100%;
    }
}

.onebyone-carosel-img-integration-big {
    width: 45%;
}
@media only screen and (max-width: 992px) {
    .onebyone-carosel-img-integration-big {
       width: 70%;
    }
}

#one-by-one-carousel-int{
    margin-top: 10%;
    min-height: 100px;
}
@media only screen and (max-width: 768px) {
    #one-by-one-carousel-int{
        margin-top: 15%;
    }    
}

#one-by-one-carousel-clients{
    margin-top: 10%;
    min-height: 100px;
}
@media only screen and (max-width: 768px) {
    #one-by-one-carousel-clients{
        margin-top: 15%;
    }    
}
.partners-img-container{
    margin-top: 10%;
}

.carousel-control {
    width: 5%;
    color: #083F56;
    opacity: 1;
    top: 20%;
}
@media only screen and (max-width: 555px) {
    .carousel-control {
    width: 5%;
    color: #083F56;
    opacity: 1;
    top: -20%;
    }
}

.carousel-control:focus{
    color: #083F56;
}
.carousel-control:hover{
    color: #FF761A;
}

.left,.right{
    background: transparent !important;
}

.carousel-inner.onebyone-carosel-three { margin: auto; width: 90%; text-align: center;}
.onebyone-carosel-three .active.left { left: -33.33%; }
.onebyone-carosel-three .active.right { left: 33.33%; }
.onebyone-carosel-three .next { left: 33.33%; }
.onebyone-carosel-three .prev { left: -33.33%; }

.carousel-inner.onebyone-carosel-four { margin: auto; width: 100%; }
.onebyone-carosel-four .active.left { left: -25%; }
.onebyone-carosel-four .active.right { left: 25%; }
.onebyone-carosel-four .next { left: 25%; }
.onebyone-carosel-four .prev { left: -25%; }


.indicators {
    position: inherit;
    bottom: 0;
    margin-top: 3%;
}

.testimonials {
    display: none;
}

@media only screen and (min-width: 768px) {
    .testimonials {
        background: #FF761A;
        padding: 5% 0%;
        display: inherit;
    }
}

.testimonials-text {
    font-family: Lato-Italic;
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: 0.71px;
    height: 230px
}
@media only screen and (max-width: 1350px) {
    .testimonials-text {
        height: 275px;
    }
}
@media only screen and (max-width: 1175px) {
    .testimonials-text {
        height: 320px;
    }
}
@media only screen and (max-width: 992px) {
    .testimonials-text {
        height: 360px;
    }
}

.testimonial-author{
    margin-left: -5px;
    float: right;
    color: #FFFFFF
}

.clients {
    background: #FFFFFF;
    box-shadow: 0 0 30px 0 rgba(44, 41, 41, 0.67);
    text-align: center;
    padding: 10% 0%;
    min-height: 260px;
}
@media only screen and (max-width: 768px) {
    .clients{
        padding: 10% 0% 0% 0%;
    }

}

.clients-title {
    font-family: Lato-Light;
    font-size: 36px;
    color: #083F56;
    letter-spacing: 1.06px;
}

.contact-form {
    background: #083F56;
    /*box-shadow: 0 0 30px 0 rgba(44, 41, 41, 0.67);*/
    text-align: center;
    padding: 5% 0%;
    min-height: 260px;
}
@media only screen and (max-width: 768px) {
    .contact-form{
        padding: 10% 0% 0% 0%;
    }
}

.contact-form-title {
    font-family: Lato-Light;
    font-size: 36px;
    color: #FFFFFF;
    letter-spacing: 1.06px;
}

.contact-form-subtitle {
    font-family: Lato-Light;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 1.06px;
}

.contact-form-name{

}
.contact-form-name{
    margin-bottom: 1%
}

.contact-form-mail{
    margin-bottom: 1%
}

.contact-form-button{
    margin-top: 1%;
    padding-right: 2.5%;
}
@media only screen and (max-width: 992px) {
    .contact-form-name{
        margin-bottom: 0%;
    }
    .contact-form-mail{
        margin-bottom: 2%
    }
    .contact-form-button{
    padding-right: 4.5%;
    }
}
@media only screen and (max-width: 768px) {
    .contact-form-name{
        margin-bottom: 0%;
    }
    .contact-form-button{
         padding-right: 6.5%;
         margin-top: 3%;
         margin-bottom: 3%;
    }
    .contact-form-mail{
        margin-bottom: 2%
    }
}
@media only screen and (max-width: 468px) {
    .contact-form-name{
        margin-bottom: -1%;
        padding-left: 0px;
        padding-right: 0px;
    }
    .contact-form-button{
         padding-right: 3.5%;
         margin-top: 3%;
         margin-bottom: 3%;
    }

    .contact-form-mail{
        margin-bottom: 3%;
        padding-left: 0px;
        padding-right: 0px;
    }
    .contact-form-name{
        padding-left: 0px;
        padding-right: 0px;
    }   
}


.partners {
    background: #F0F0F0;
    text-align: center;
    padding: 5% 0%;
    box-shadow: inset -5px 24px 55px -9px rgba(94,87,94,0.21);
}

.partners-title {
    font-family: Lato-Light;
    font-size: 36px;
    color: #083F56;
    letter-spacing: 1.06px;
}

.onebyone-carosel-clients-img {
    width: 50%;
}

.onebyone-carosel-partners-img {
    width: auto;
}
@media only screen and (max-width: 768px) {
    .onebyone-carosel-partners-img {
       width: 100%;
    }
}

.div-cta {
    background-image: -webkit-linear-gradient(bottom, #083F56 50%, #F0F0F0 50%);
}

.bottom-cta {
    background: #FF761A;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.50);
    border-radius: 8px;
    font-family: Lato-Regular;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 1.2px;
    text-align: center;
}
@media only screen and (min-width: 992px) {
    .bottom-cta {
        margin-left: 33.333%;
        width: 33.333%;
    }
}
@media only screen and (min-width: 1400px) {
    .bottom-cta {
        margin-left: 37.5%;
        width: 25%;
    }
}


.bottom-cta-text:after {
    content: 'COMIENZA A VENDER AHORA';
    white-space: pre-wrap;
}

@media only screen and (max-width: 768px) {
    .bottom-cta-text:after {
        content: 'COMENZÁ A VENDER';
        white-space: pre-wrap;
    }
}

.bottom-cta:focus,
.bottom-cta:hover {
    color: #FFFFFF;
    background-color: #bf4e03;
}

.footer {
    background: #083F56;
    padding: 5% 0%;
    box-shadow: -5px -12px 55px -9px rgba(94,87,94,0.21);
}

.img-logo {
    width: auto;
}
@media only screen and (max-width: 630px) {
    .img-logo {
        width: 30%;
    }
}

ul.footer-buttons li {
    display: inline;
}

.footer ul li a:hover {
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
    color: #ccc;
}
.footer ul li a:focus{
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
    color: #FFFFFF;
}

.footer-buttons {
    list-style: none;
    padding-left: 0%;
}

.footer-buttons-text {
    font-family: Lato-Thin;
    font-weight: 600;
    font-size: 100%;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    padding-right: 6%;
}
@media only screen and (max-width: 630px) {
    .footer-buttons-text {
        font-size: 46%;
    }
}

.contact {
    font-family: Lato-Bold;
    font-size: 100%;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    line-height: 22px;
}
@media only screen and (max-width: 630px) {
    .contact {
        font-size: 46%;
    }
}

.contact-info {
    font-family: Lato-Thin;
    font-weight: 600;
    font-size: 100%;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    line-height: 22px;
}
@media only screen and (max-width: 630px) {
    .contact-info {
        font-size: 46%;
    }
}
@media only screen and (max-width: 360px) {
    .contact-info {
        font-size: 40%;
    }
}

.social-networks-img {
    margin: 1% 0%;
    width: auto;
}

@media only screen and (max-width: 630px) {
    .social-networks-img {
        width: 29%;
    }
}

.social-networks-img:focus,
.social-networks-img:hover {
    opacity: 0.9;
}

/*contact*/
.contact-form-title-margin{
   padding-bottom: 5%
}

.message{
    min-height: 150px;
    max-width: 100%; 
}

.send-message{
    float: right;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    background: #FF761A;
    border-radius: 8px;
    font-family: Lato-Bold;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    outline: none;
}

