/* BASIC SETUP*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-padding-top: 50px;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

/* HEADER SECTION */

header {
    padding-top: 10px;
    color: #fff !important;
    background: #000;
    height: 70px;
}

header a {
    text-transform: uppercase;
    font-weight: bold;
}

header .overlay {
    background: #ccc;
    position: absolute;
    overflow: hidden;
    width: 0%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9;
    transition-duration: 0.5s;
}


header .toggler {
    display: none;
}

/* HOME SECTION */

#home {
    background: #000;
    height: 700px;
}

#home .box1 {
    height: 300px;
}

#home .box1 {
    width: 60%;
}

#home .box1 .role {
    height: 100px;
}

#home .box2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
}

#home .box2 img {
    width: 100%;
    height: 100%;
}

#home .container {
    margin-top: 70px;
    padding-top: 100px;
}

#home .container .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* ABOUT SECTION */

#about {
    background: #e5e2e2;
    padding: 50px 10px;
}

#about .container {
    background: #fff;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

#about .skill,
#about .description {
    width: 50%;
}

#about .skill .photo {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    overflow: hidden;
}

#about .skill img {
    width: 100%;
    height: 100%;
}

#about .skill .stack-icon {
    width: 50px;
    height: auto;
}

/* #about .progress {
    border-radius: 0px;
} */

.underline {
    width: 100px;
    height: 3px;
    margin-bottom: 20px;
}

/* PORTFOLIO SECTION */

#portfolio .proj {
    border-radius: 5px;
    width: 350px;
    transition: all;
    transition-duration: 0.3s;
}

#portfolio .proj:hover {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

#portfolio .lnk:hover {
    color: #7188ee;
}

/* CONTACT SECTION */
#contact {
    background: #e5e2e2;
    padding: 50px 10px;
    overflow: hidden;
}

/* .contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
} */

.contact-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

/* Form Styles */
.contact-section form {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section .row {
    margin-bottom: 20px;
}

.contact-section .col {
    padding: 0 0;
}

.contact-section .col.span_1_of_2 {
    width: 50%;
    float: left;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus {
    outline: none;
    border-color: #555;
}

.contact-section input[type="text"] {
    margin-right: 10px;
}

.contact-section textarea {
    height: 250px;
    resize: vertical;
}

/* Submit Button */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-submit {
    background-color: #333;
    color: white;
    border: none;
}

.btn-submit:hover {
    background-color: #555;
}

/* Clear floats */
.contact-section .row::after {
    content: "";
    display: table;
    clear: both;
}


/* RESUME SECTION */

#resume {
    background: #000;
    color: #fff;
}