.open-sans-normal {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

/* shared style */
.secondary-bg {
    background-color: #FFF8F3;
}

.text-primary {
    color: #FD6E0A
}

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

/* header */
.header {
    background-image: url('../images/developer.png'), url('../images/header_bg.png');
    background-repeat: no-repeat;
    background-position: top left, bottom right;
}

/* Nav style */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 200px;
}

.btn-primary {
    background-color: #FD6E0A;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 18px 35px;
    border-radius: 5px;
    border: none;

}

.drak-2 {
    color: #474747;
}

.drak-3 {
    color: #757575;
}

nav ul {
    display: flex;
    align-items: center;
}

.nav-title {
    font-weight: 800;
    font-size: 45px;
}

nav ul li {
    list-style: none;
    margin-right: 51px;
}

nav li a {
    text-decoration: none;
    font-size: 20px;
}

/* banner styles */
.banner {
    display: flex;
    justify-content: space-between;
    margin: 0 35px 0 230px;
}

.banner-greetings{
    font-size: 45px;
    font-weight: 600px;

}

.banner-title {
    font-weight: bold;
    font-size: 70px;
    margin-top: 5px;
}

.banner-description {
    font-size: 18px;
}

.banner-img {
    width: 584px;
    height: 676px;
}

.section-title {
    font-size: 35px;
    font-weight: bold;
    color: #181818;
}

.section-description {
    font-size: 18px;
    color: #757575;
}

/* main style */
main section {
    margin-top: 130px;
    margin-bottom: 130px;
}

main {
    max-width: 1140px;
    margin: 0 auto;
}

/* about */
.about {
    border-radius: 10px;
    padding: 128px 148px;
    text-align: center;

}

.about-items {
    display: flex;
    justify-content: space-around;
}

.item-description {
    font-weight: 700px;
    color: #474747;
}

.item-title {
    color: #757575;
}

/* skill section */
.skill-continer {
    margin-top: 50px;
    display: flex;
    gap: 24px;
}

.skill {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.1);
}

/* resume section */
.resume-container {
    display: flex;
    gap: 24px;
}

.experience-sub-title {
    font-size: 20px;
    font-weight: 600px;
    margin-bottom: 20px;
}

.experience-description,
.experience-sub-title {
    color: #757575;
}

.resume hr {
    margin: 30px 5px;
}

/* .resume-column-title{
    font-size:30px;
    font-weight: 600px;
    color: #474747;
    margin-bottom: 30px; */

}

.experience-title {
    font-size: 25px;
    font-weight: 600px;
    color: #474747;
}

/* portfolio section */
.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.portfolio-item {
    width: 100%;
}

.download-button {
    margin-top: 50px;
}

/* Footer style */
footer {
    padding: 130px 230px;
    display: flex;
    gap: 100px;
}
.footer-img{
    margin-top: 30px;
}

.footer-column {
    width: 50%;
}

input[type="text"],
footer textarea {
    height: 64px;
    border-radius: 5px;
    background-color: white;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 24px;
    border: none;
}