.open-sans-normal {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "width" 100;
}
/* shared style */
.section-bg{
    background-color: #FFF8F3;
}
.text-primary{
   color: #FD6E0A;
}
.dark-2{
    color: #474747;
}
.btn-primary{
    background-color: #FD6E0A;
    color: white;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 35px;
    border: none;
}

.section-title{
    font-size: 35px;
    font-weight: bold;
    color: #181818;
}
.section-description{
    font-size: 18px;
    /* font-weight: ; */
    color: #757575;
}
.text-centers{
    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: 0 200px;

}
.nav-title{
    font-weight: 800;
    font-size: 45px;
}
nav ul{
    display: flex;
    align-items: center;
}
nav ul li{
    list-style: none;
    /* margin: 50px; */
}
nav li a{
    text-decoration: none;
    font-size: 20px;
    margin: 50px;
}
/* Banner style */
.banner{
    display: flex;
    justify-content: space-between;
    margin: 0 35px 0 200px;
}
.banner-title{
    width: 580px;
}
.banner-greetings{
    font-size: 45px;
    font-weight: 600; 
}
.banner-title{
    font-size: 85px;
    font-weight: bold;
}
.banner-profile-pic{
    width: 580px;
    border-radius: 100%;

}
/* Main style*/
main{
   max-width: 1140px;
   margin: 0 auto;

}
main section{
    margin-top: 130px; 
    margin-bottom: 130px;  
}
/* About style */
.about{
    border-radius: 10px;
    padding: 130px 150px;
    text-align: center;
   

}
.about-items{
    display: flex;
    justify-content: space-around;
}
.about-title{
    color: #757575;
}
.item-description{
    font-weight: 600;
}
/* Skills Section style */
.skills-container{
    display: flex;
    gap: 30px;

}
.skill{
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
}
/* resume section style */
.resume-container{
    display: flex;
    gap: 24px;
}
.experience-sub-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.experience-description, .experience-sub-title{
    color: #757575;
}
.resume hr{
    margin: 30px 5px;
}
.resume-download-cv{
    margin-top: 50px;
}
/* Footer style */
footer{
     padding: 130px 230px;
     display: flex;
     gap: 100px;
}
.footer-column{
    width: 50%;
    

}
footer input [type="text"],  footer input[type="email"], footer textarea{
    height: 64px;
    border-radius: 5px;
    background-color: white;
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 24px;
    border: none;
}
/* responsive media query */
.hide{
    display: none;
}
@media screen and (max-width:576px) {
    .skills-container, 
    .resume-container, 
    .banner,
    footer, 
    nav,
    nav > ul,
    .about-items{
        flex-direction: column;
    }
    nav{
        margin: 0px;
 
    } 
    nav > ul{
        gap: 20px;
        padding: 0px;
    }
    .btn-primary{
        margin-bottom: 20px;
    }
    .banner{
        margin: 20px;
    }
    .banner-profile-pic{
        width: 100%;
    }
    .header{
        background-image: none;
    }
    footer, .about{
        padding: 20px;
    }
    .footer-column{
        width: 100%;
    }
    footer input [type="text"],  footer input[type="email"], footer textarea{
        width: calc(100% - 40px);
    }
}
/* tablet specific media query */
@media screen and (min-width:576px) and (max-width:990px) {
    .skills-container, 
    .resume-container, 
    .banner,
    footer, 
    nav,
    nav > ul,
    .about-items{
        flex-direction: column;
    }
    nav{
        margin: 0px;
 
    } 
    nav > ul{
        gap: 20px;
        padding: 0px;
    }
    .btn-primary{
        margin-bottom: 20px;
    }
    .banner{
        margin: 20px;
    }
    .banner-profile-pic{
        width: 100%;
    }
    .header{
        background-image: none;
    }
    footer, .about{
        padding: 20px;
    }
    .footer-column{
        width: 100%;
    }
    footer input [type="text"],  footer input[type="email"], footer textarea{
        width: calc(100% - 40px);
    }
}
