section.mainBlog {
    width: 100%;
    margin-top: 205px;
    position: relative;
    z-index: 1002;
}

section.mainBlog .wrapper {
    max-width: 1280px;
    /* border: 1px solid red; */
    margin: auto;
}

section.mainBlog .wrapper h1 {
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    color: white;
    text-align: center;
    font-size: 40px;
}

ul.breadcrumb {
    display: flex;
    align-items: center;
    padding: 0;
    list-style-type: none;
}

ul.breadcrumb li {
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    margin-right: 14px;
}

ul.breadcrumb li a {
    color: white;
    text-decoration: none;
    position: relative;
}

ul.breadcrumb li a:after {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background-color: #fff;
    right: -8px;
    top: 0;
}

ul.breadcrumb li a:hover {
    text-decoration: underline;
}

.blogContent {
    /* border: 1px solid green; */
    width: 100%;
    min-height: 200px;
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blogContent .left {
    width: 873px;
    /* border: 1px solid orange; */
    border-top: 7px solid white;
    padding-top: 30px;
}

.blogContent .left a.blogItem {
    width: 100%;
    text-decoration: none;
    display: block;
    margin-bottom: 42px;
}

.blogContent .left a.blogItem:hover span {
    text-decoration: underline;
}

.blogContent .left a.blogItem .imgBlock {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.blogContent .left a.blogItem .imgBlock img {
    height: auto;
    width: 100%;
}

.blogContent .left a.blogItem .titleBlock {
    margin-top: 8px;
    border-radius: 10px;
    padding: 20px 30px;
    background-color: #1A1D26;
}

.blogContent .left a.blogItem .titleBlock h2 {
    color: white;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    margin: 0;
}


.blogContent .left a.blogItem .textBlock {
    margin-top: 5px;
    border-radius: 10px;
    padding: 20px 30px;
    background-color: #1A1D26;
    position: relative;
    max-height: 170px;
    overflow: hidden;
}

.blogContent .left a.blogItem .textBlock .gradientBlock {
    position: absolute;
    /* border: 1px solid red; */
    width: 100%;
    height: 110px;
    bottom: 0;
    left: 0;
    background: rgb(26,29,38);
    background: linear-gradient(0deg, rgba(26,29,38,1) 0%, rgba(26,29,38,1) 30%, rgba(30,33,39,0) 100%);
}

.blogContent .left a.blogItem .textBlock p {
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    padding-bottom: 14px;
}

.blogContent .left a.blogItem .textBlock span {
    font-size: 13px;
    color: #7775D1;
    font-family: 'Nunito', sans-serif;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.blogContent .right {
    width: 357px;
    /* border: 1px solid blue; */
    border-top: 7px solid white;
    padding-top: 30px;
} 



.blogContent .right a.updateItem {
    text-decoration: none;
    display: block;
    margin-bottom: 40px;
}

.blogContent .right a.updateItem:hover span {
    text-decoration: underline;
}

.blogContent .right a.updateItem .titleBlock {
    background-color: #1A1D26;
    padding: 25px 0;
    border-radius: 10px;
}

.blogContent .right a.updateItem .titleBlock h3 {
    text-transform: uppercase;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 27px;
    text-align: center;
    margin: 0;
}

.blogContent .right a.updateItem .textBlock {
    background-color: #1A1D26;
    padding: 16px 25px;
    margin-top: 8px;
    max-height: 150px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.blogContent .right a.updateItem .textBlock p {
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    margin: 0;
}

.blogContent .right a.updateItem .textBlock .gradientBlock {
    position: absolute;
    /* border: 1px solid red; */
    width: 100%;
    height: 110px;
    bottom: 0;
    left: 0;
    background: rgb(26,29,38);
    background: linear-gradient(0deg, rgba(26,29,38,1) 0%, rgba(26,29,38,1) 30%, rgba(30,33,39,0) 100%);
}

.blogContent .right a.updateItem .textBlock span {
    font-size: 13px;
    color: #7775D1;
    font-family: 'Nunito', sans-serif;
    position: absolute;
    bottom: 10px;
    right: 20px;
}


/* SINGLE PAGE BLOG  */

section.blogSingle {
    width: 100%;
    z-index: 1002;
    position: relative;
    margin-top: 210px;
}

section.blogSingle .wrapper {
    max-width: 1280px;
    /* border: 1px solid red; */
    margin: auto;
}

section.blogSingle .wrapper h1 {
    color: white;
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    margin-bottom: 30px;
}

section.blogSingle .wrapper .singleBlogContent {
    border-top: 7px solid white;
    margin-top: 35px;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogContent__img {
    /* border: 1px solid red; */
    margin-top: 25px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    border-radius: 10px;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogContent__img img {
    height: auto;
    width: 100%;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText {
    border-radius: 10px;
    background-color: #1A1D26;
    margin-top: 8px;
    padding: 20px 20px;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText p {
    color: white;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    margin: 0;
}

.blogContent .right a.updateItem .textBlock ul {
    color: white;
    padding: 0;
    margin: 0;
    padding-left: 26px;
}

.blogContent .right a.updateItem .textBlock ul li {
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText ul {
    color: white;
    padding: 0;
    margin: 0;
    padding-left: 26px;
    margin: 10px 0 20px 0;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText ul li {
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    margin-top: 6px;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    color: white;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText span {
    display: block;
    color: white;
    font-size: 26px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText span:after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: #7775D1;
    position: absolute;
    bottom: -10px;
    left: 0;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText img {
    width: 600px;
    margin: 20px 0;
}

.blogContent .left a.blogItem .textBlock h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: white;
    margin-top: 0;
}


.blogContent .left a.blogItem .textBlock ul {
    color: white;
    padding: 0;
    margin: 0;
    padding-left: 26px;
    margin: 10px 0 20px 0;
}

.blogContent .left a.blogItem .textBlock ul li {
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    margin-top: 6px;
}

.blogContent .left a.blogItem .textBlock img {
    display: none;
}

.blogSingle h3 {
    color: white;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    margin-top: 50px;
    margin-bottom: 10px;
}

.singleBlogMore {
    background-color: #1A1D26;
    margin-top: 8px;
    width: auto;
    min-height: 100px;
    border-radius: 10px;
    margin-bottom: 100px;
    padding: 20px 10px;
    display: inline-flex;
    align-items: center;
}


.singleBlogMore__item {
    width: 300px;
    height: 140px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin: 0 10px;
}

.singleBlogMore__item {
    margin-bottom: 15px;
}

.singleBlogMore__item img {
    height: auto;
    width: 100%;
}

.singleBlogMore__item .item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 62px;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.774);
}

.singleBlogMore__item .item__overlay span {
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 16px;
    text-align: center;
}

section.blogSingle .wrapper .singleBlogContent .singleBlogText a {
    font-size: 18px;
    color: #7775D1;
    
}
section.blogSingle .wrapper .singleBlogContent .singleBlogText a:hover {
    text-decoration: none;
}

