/* fonts */
.open-sans-normal{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 75;
}

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

.txt-primary{
    color: #FD6E0A;
}

.dark-2{
    color: #474747;
}

.dark-3{
    color: #757575;
}

.btn-primary{
    background-color: #FD6E0A;
    font-weight: bold;
    color: white;
    padding: 13.5px 26.25px;
    border-radius: 4px;
    border: none;
}

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

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

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

/* header style */
.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: 0px 172.5px;
}

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

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

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

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

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

.banner-content{
    max-width: 435px;
}

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

.banner-title{
    font-weight: bold;
    font-size: 63.75px;
}

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

.banner-profile-pic{
    width: 435px;
}

/* main */
main{
    max-width: 855px;
    margin: 0 auto;
}

main section{
    margin-top: 97.5px;
    margin-bottom: 97.5px;
}

/* about */
.about{
    border-radius: 8px;
    padding: 97.5px 112.5px;
    text-align: center;
    margin-top: 97.5px;
}

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

.item-description{
    font-weight: 600;
    font-size: 13.35px;
}

.item-title{
    font-size: 13.35px;
}

.skills > .section-description{
    padding: 0 30px;
}

.skill-container{
    display: flex;
    gap: 24px;
}

.skill-description{
    font-size: 12px;
}

.skill{
    box-shadow: 0px 6px 50px rgba(0, 0, 0, 0.06);
    padding: 22px;
    border-radius: 4px;
}

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

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

.experience-description{
    font-size: 12px;
}

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

.resume hr{
    margin: 23px;
}

.resume-download-cv{
    margin-top: 50px;
}

/* footer styles */
footer{
    padding: 97.5px 172.5px;
    display: flex;
    gap: 75px;
}

.footer-colum{
    width: 50%;
}

footer input[type="text"], footer input[type="email"], footer textarea{
    height: 48px;
    width: 100%;
    border-radius: 4px;
    background-color: white;
    display: block;
    font-size: 12px;
    padding: 7.5px 15px;
    margin-bottom: 20px;
    border: none;
}