/* ----------------------------------------Blog Read ------------------------------------ */

.blogsec .blogcat span{
	color:#7368d5;
    font-weight: 600;
}
.blogsec .blogcat .cat{
	color:rgb(85, 85, 85);
    font-weight: 600;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 14px;
}
.bloghead .btitle{
    font-size: 40px;
    font-weight: 700;
    margin:20px 0px 10px 0px;
}
.bloghead .bdesc{
    font-size: 14px;
    color: #777;
    line-height: 1.2;
}
.blogcontent img{
    width: 550px;
    margin: 10px 0px;
}
.blogcontent .blogpara{
    font-size: 18px;
    line-height: 1.2;
    color:#000;
    font-family: 'Times New Roman', Times, serif;
}
.blogcontent .blogpara::first-letter {
    font-size: 50px;
    color: #7368d5;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    line-height: 0.8;
  }

/* ----------------------------------------Webresource Read ------------------------------------ */
.webres .webcat span{
	color:#7368d5;
    font-weight: 600;
}
.webres .webcat .cat{
	color:rgb(85, 85, 85);
    font-weight: 600;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 14px;
}
.webhead .wtitle{
    font-size: 30px;
    font-weight: 700;
    margin:20px 0px 10px 0px;
}
.webcontent img{
    width: 600px;
    margin: 30px 0px;
}
.webcontent .webdesc{
    font-size: 16px;
    color: #000;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.2;
}

/* Common button styles */
.button {
    float: left;
    min-width: 150px;
    max-width: 250px;
    display: block;
    border: none;
    background: none;
    color: inherit;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}
.button:focus {
    outline: none;
}
.button > span {
    vertical-align: middle;
}

.button--round-s {
    border-radius: 5px;
}
/* Borders */
.button--border-thin {
    border: 1px solid;
}
/* Individual button styles */
/* Winona */
.button--winona {
    overflow: hidden;
    padding: 0;
    -webkit-transition: border-color 0.3s, background-color 0.3s;
    transition: border-color 0.3s, background-color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--winona::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    color: #3f51b5;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
}
.button--winona > span {
    display: block;
}
.button--winona.button--inverted {
    color: #7986cb;
}
.button--winona.button--inverted:after {
    color: #fff;
}
.button--winona::after,
.button--winona > span {
    padding: 1em 2em;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--winona:hover {
    border-color: #3f51b5;
    background-color: rgba(63, 81, 181, 0.1);
}
.button--winona.button--inverted:hover {
    border-color: #21333C;
    background-color: #21333C;
}
.button--winona:hover::after {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button--winona:hover > span {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
}