*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wrapper
{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.header
{
    width: 100%;
    height: 80px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
}
.logo
{
    height: 80px;
    width: 80px;
    margin-left: 50px;
    display: flex;
    justify-content: flex-start;
}
.logo2
{
    color: #333333;
    font-family: Merienda;
    font-size: 30px;
    display: flex;
    justify-content: left;
    align-items: center;
}
.nav-bar
{
    width: 50%;
    height: 80px;
    display: flex;
}
.nav-item
{
    position: relative;
    width:20%;
    height:80px;
    margin: 0;
}
.nav-item::before
{
    position: absolute;
    content: "";
    height: 3px;
    width: 0px;
    background-color: #333333;
    bottom: 4px;
    right: 0px;
    left: 0px;
    transition: 0.3s ease-in-out all;
    margin: 0 auto;
}
.nav-item:hover::before
{
    width: 100%;
}
.nav-item:link , .nav-item:visited
{
    color: #485AD0;
    font-size: 18px;
    font-family: Arsenal;
    text-decoration: none;
    height:100%;
    width:20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-item:hover , .nav-item:active
{
    color: #FFBFB7;
}
.sec
{
    width: 100%;
    margin: 0 auto;
}
.imgs
{
    width: 100%;
    display: flex;
    padding: 50px 100px 0 100px;
    justify-content: space-between;
    align-items: center;
}
.imgsss
{
    height: 250px;
    width: 250px;
    display: flex;
    align-self: center;
}
.info
{
    width: 100%;
    padding: 0 20px;
    margin: 80px auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.info1
{
    color: #E4D9FF;
    font-size: 28px;
    font-family: Merienda;
    font-style: italic;
}
.info2
{
    margin-top: 30px;
    color: #333333;
    font-size: 20px;
    font-family: Arsenal;
}
.info2-1
{
    color: #E4D9FF;
    font-size: 25px;
    font-family: Merienda;
    font-style: italic;
    text-decoration: double;
    margin-top: 50px;
}
.info2-2
{
    color: #FFBFB7;
    font-size: 23px;
    font-family: Merienda;
    font-style: italic;
    text-decoration: double;
    margin-top: 35px;
}
.footer
{
    margin-top: 50px;
    width: 100%;
    height: 250px;
    background-color: #333333;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}
.par2
{
    color: #FFFEED;
    font-size: 18px;
    font-family: Merienda;
    display: flex;
    justify-content: center;
    align-items: center;
}