
body {
    margin: 0%;
    padding: 0%;
}

* {
    box-sizing: border-box;
}

/* Main Section 2 Styling  */
#main-sec2 {
    width: 100%;
    background-color: #F2F3F3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4% 14%;
}

.main-sec2-header {
    width: 100%;
    padding-left: 1%;

}

.main-sec2-header>h3 {
    width: 100%;
    font-size: 30px;
    margin: 0%;
    font-family: var(--pri-font), sans-serif, 'Times New Roman', Times, serif;
    font-weight: 600;
    line-height: 45px;
}


/* Main Section 2 Content  */
.main-sec2-content {
    width: 100%;
    padding: 1% 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Main Section 2 Navigation  */
.main-sec2-navigation {
    width: 94%;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 8px 0px;
    overflow-x: scroll;
}

.main-sec2-navigation>.navigation-item {
    width: fit-content;
    padding: 10px;
    font-size:18px;
    font-weight: 300;
    font-family: var(--pri-font), sans-serif, 'Times New Roman', Times, serif;
}

.navigation-item:hover {
    border-bottom: 3px solid #518ecb;
    font-weight: 600;
}

.navigation-item:active {
    border-bottom: 3px solid #518ecb;
}

.navigation-item:focus {
    border-bottom: 3px solid #518ecb;
}


/* Sec 2 Image Wrapper  */
.sec2-img-wrapper {
    width: 100%;
    margin-top: 1%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;  
    padding: 1% 1.5%;
}

.sec2-img-wrapper>a{
    width: 170px;
    height: 130px;
    background-color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
    color:black;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sec2-img-wrapper>a:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: box-shadow 0.5s linear;
}

.sec2-img-wrapper>a>img{
    width: 87px;
    height: 50px;
    opacity: 0.7;    
}

.sec2-img-wrapper>a>img:hover{
    opacity: 1;
}

.sec2-img-wrapper>a>h5{
      font-size: 1.2rem;
      margin: 0%;
      font-weight: 500;
      font-family: var(--pri-font),'Times New Roman', Times, serif,sans-serif;
}

