body {
    font-family: 'Hind', sans-serif;
    font-size: 15px;
    line-height: 1.8em;
    color: #3d3d50;
    font-weight: 300;
    background-color: #222f3e !important;
    /* background: #ffffff; */
}


/* --------------------------------------
 * Global Typography
 *------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #ffffff;
}

h1 {
    font-size: 26px;
    line-height: 1.8em;
    font-weight: 700;
}

h2 {
    font-size: 18px;
    line-height: 1.8em;
    font-weight: 700;
}

h3 {
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 500;
}

h4 {
    font-size: 15px;
    line-height: 1.8em;
    font-weight: 500;
}

h5 {
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 500;
}

h6 {
    font-size: 15px;
    line-height: 1.5em;
}


/* --------------------------------------
 * LINK STYLE
 *------------------------------------------*/

a {
    color: #2a54f5;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a,
a:active,
a:focus,
a:active {
    color: #ffffff;
    text-decoration: none;
    outline: none
}

a:hover,
a:focus {
    text-decoration: none;
    color: #2a54f5;
}

p {
    color: #ffffff;
    margin-bottom: 20px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/*------------------
 * Button Style
 *------------------*/

.btn {
    padding: 14px 30px 11px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
}

.btn-lg {
    font-weight: 700;
    font-size: 24px;
    padding: 15px 30px;
}


/*btn-primary*/

.btn-primary {
    background-color: #2a54f5;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
    background: #1e3eb5;
}


/*btn-default*/

.btn-default {
    color: #2a54f5;
    background-color: transparent;
    border: 2px solid #2a54f5;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active:focus {
    background: #2a54f5;
    color: #ffffff;
    border-color: #2a54f5;
}

button:focus,
.btn:focus,
.btn:active:focus {
    outline: none;
}


/* --------------------
 * Column Block
 * -------------------*/

.columns-block {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
}

.blocks {
    box-sizing: border-box;
}

.left-col-block {
    width: 50%;
    text-align: center;
    overflow: hidden;
    position: fixed;
    left: 0;
}

.right-col-block {
    width: 67%;
    position: absolute;
    right: 0;
    box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.23);
}

@media (max-width: 600px) {
    .left-col-block {
        background-color: #222f3e;
        width: 100%;
        position: relative;
    }
    .right-col-block {
        width: 100%;
        position: relative;
        box-shadow: none;
    }
}


/* --------------------
 * Section Background
 * -------------------*/

.gray-bg {
    background-color: #283849;
}


/* --------------------
 *  main Wrapper
 * -------------------*/

#main-wrapper {
    background: #ffffff;
    overflow: hidden;
}


/*-------------------
 * Section Wrapper
 *-------------------*/

.section-wrapper {
    padding: 50px;
}

@media (max-width: 602px) {
    .section-wrapper {
        padding: 30px 20px;
        background-color: #283849;
    }
}


/*---------------------------
* Section Title
*---------------------------*/

.section-title {
    margin-bottom: 15px;
}

.section-title h2 {
    margin-bottom: 5px;
    color: #bebece;
}


/*-----------------------------
 * NAVIGATION & HEADER STYLE
 *-------------------------------*/

.header {
    width: 65%;
    padding: 0;
    margin: 0;
    height: 100vh;
    vertical-align: middle;
    position: relative;
}

.header .perfil-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../img/yo5.jpg);
    background-size: cover;
    background-position: center top;
}

.header .profile-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( -30deg, rgba(42, 84, 245, 0.5) 0%, rgba(42, 84, 245, 0.5) 40%, transparent 60%, transparent 100%);
}

.header .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    padding: 10%;
}

.header .content h1 {
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
    margin: 0;
}

.header .content p {
    font-size: 18px;
    color: #ffffff;
}

.header .btn {
    margin-top: 40px;
}

.header .content .social-icon {
    margin: 0;
    padding: 0;
    display: block;
}

.header .content .social-icon li {
    display: inline-block;
    margin: 0 2px;
}

.header .content .social-icon li a {
    display: block;
    font-size: 12px;
    color: #ffffff;
    width: 34px;
    height: 34px;
    line-height: 33px;
    text-align: center;
    border-radius: 100%;
    border: 2px solid rgba(255, 255, 255, .2);
}

.header .content .social-icon li a:hover {
    border-color: #ffffff;
}

@media (max-width: 600px) {
    .header .perfil-img {
        width: 155%;
        z-index: 1;
    }
    .header .content {
        /* top: 73%; */
        margin-left: 25%;
        z-index: 2;
    }
}


/*-------------------
 * Skills Habilidades
 *-------------------*/

.progress-item {
    position: relative;
}

.progress-item .progress-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 5px;
}


/*-------------------
 * Content Item
 *-------------------*/

.content-item {
    margin-bottom: 40px;
}

.content-item h3 {
    margin: 0 0 10px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}

.content-item h4 {
    margin: 0;
    line-height: 1;
}

.content-item small {
    color: #888888;
}


/*-------------------
 * Contact
 *-------------------*/

.feedback-form {
    margin-top: 50px;
}

.b,
strong {
    color: #ffffff !important;
}

address {
    color: #ffffff !important;
}

label {
    color: #ffffff !important;
}
