 /* =CSS Reset
--------------------------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;
}
/* Tell the browser to render HTML 5 elements as block */  
header, footer, aside, nav, article, section, figure, hgroup { display: block; }  

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
   img,object,embed {max-width: 100%;}

   /* force a vertical scrollbar to prevent a jumpy page */

/* we use a lot of ULs that aren't bulleted. 
don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}

/* Accessible focus treatment people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active, a:focus {outline: none;}

small {font-size: 85%;}

strong, th {font-weight: bold;}

td, td img {vertical-align: top;} 

/* Make sure sup and sub don't screw with your line-heights
gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable, label, input[type=button], input[type=submit], button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}

/* Micro Clearfix Hack */
.cf:before, .cf:after { content: "\0020"; display: block; height: 0; overflow: hidden; }  
.cf:after { clear: both; }  
.cf { zoom: 1; }  

img {
	image-rendering: -webkit-optimize-contrast;
}

body {
    font-family: "Poppins", sans-serif;
}

input, textarea, select, button, input[type="submit"] {
    font-family: "Poppins", sans-serif;
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
    font-family: 'Sports World';
    src: url('../fonts/SportsWorld.eot');
    src: url('../fonts/SportsWorld.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SportsWorld.woff2') format('woff2'),
        url('../fonts/SportsWorld.woff') format('woff'),
        url('../fonts/SportsWorld.ttf') format('truetype'),
        url('../fonts/SportsWorld.svg#SportsWorld') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* End CSS Reset
--------------------------------------------------------------------------------------------------*/

/* Start Basic CSS
--------------------------------------------------------------------------------------------------*/
input,
textarea,
button,
select,
a,
span,
div {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	color: #0072a0;
	font-family: "Poppins", sans-serif;
}

html {
	height: 100%;
}

body {
	height: 100%;
}

html.canvas-opened {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    overflow-y: scroll;
}

.wrapper {
	position: relative;
	width: 100%;
	min-height: 100%;
    padding-bottom: 120px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
}

select, input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.container {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.btn {
	display: inline-block;
	outline: none;
	text-decoration: none;
}

.white-btn {
    min-width: 140px;
	height: 50px;
	border: 0px;
    padding: 0px 20px;
	background: #fff;
	color: #d2a230;
    border-radius: 25px;
	line-height: 50px;
	font-size: 12px;
	font-weight: 700;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.white-btn:hover {
	background: #0072a0;
	color: #fff;
}

.bordered-btn {
    min-width: 120px;
    height: 40px;
    border: 2px solid #f0f0f0;
    padding: 0px 20px;
    background: #fff;
    color: #0072a0;
    border-radius: 20px;
    line-height: 36px;
    font-size: 12px;
    font-weight: 700;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.bordered-btn:not(.active):hover {
    border-color: #d2a230;
}

.bordered-btn.active {
    background: #0072a0;
    color: #fff;
    border-color: #0072a0;
}

.default-pagination {
    margin: 30px 0 60px;
    text-align: center !important;
}

.default-pagination ul li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    text-align: center;
}

.default-pagination ul li a {
    display: block;
    border: 1px solid #f0f0f0;
    line-height: 38px;
    border-radius: 20px;
    text-decoration: none;
    color: #aaa;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.default-pagination ul li a:hover {
    background: #f9f9f9;
    color: #0072a0;
}

.default-pagination ul li span {
    display: block;
    background: #d2a230;
    color: #fff;
    border-color: #d2a230;
    border-radius: 20px;
}
/* End Basic CSS
--------------------------------------------------------------------------------------------------*/

/* Start header CSS
--------------------------------------------------------------------------------------------------*/
.header-bottom {
    padding: 10px 0px;
    background: #d2a230;
}

.header-bottom .container,
.header-top .container {
    position: relative;
    padding-left: 160px;
}

.header-logo {
    position: absolute;
    left: 0;
    top: -50px;
}

.header-top {
    padding: 25px 0px;
}

.main-menu li {
    float: left;
    margin-right: 20px;
}

.main-menu li a {
    display: block;
    position: relative;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Sports World';
    color: #0072a0;
    text-transform: uppercase;
}

.main-menu li:not(.current-menu-item) a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #d2a230;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.mobile-menu {
    display: none;
}

.menu-toggle {
    display: none;
    position: relative;
    float: left;
    cursor:pointer;
    position:relative;
}
.hamburger {
    float: left;
    position:relative;
    width: 40px;
    height: 40px;
    padding: 10px;
    left:0%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}
.hamburger span{
    display:block;
    width:100%;
    height:3px;
    margin-bottom:5px;
    overflow:hidden;
    position:relative;
}
.hamburger span:last-child{
    margin:0;
}
.hamburger span:before,.hamburger span:after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background-color:#0072a0;
    transform:translateX(-200%);
    transition:transform ease 300ms;
}
.hamburger span:after{
    transform:translateX(0);
}
.hamburger span:nth-child(2):before,.hamburger span:nth-child(2):after{
    transition-delay:75ms;
}
.hamburger span:last-child:before,.hamburger span:last-child:after{
    transition-delay:150ms;
}
.menu-toggle:hover .hamburger span:before{
    transform:translateX(0);
}
.menu-toggle:hover .hamburger span:after{
    transform:translateX(200%);
}

.main-menu li:not(.current-menu-item) a:hover:after {
    width: 100%;
}

.main-menu li.current-menu-item a {
    color: #d2a230;
}

.header-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.next-header-text {
    color: #fff;
    width: 180px;
    margin-right: 30px;
    border-right: 2px solid #fff;
}

.next-header {
    display: flex;
}

.next-header-logos {
    display: flex;
    color: #fff;
    align-items: center;
}

.next-header-divider {
    margin: 0px 10px;
}

.next-header-logos img {
    display: block;
    width: auto;
    height: 40px;
}
/* End header CSS
--------------------------------------------------------------------------------------------------*/

/* Start footer CSS
--------------------------------------------------------------------------------------------------*/
footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    min-height: 121px;
    border-top: 1px solid #d2a230;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.copyright-container {
    text-align: center;
}

.copyright-container a {
    display: inline-block;
    text-decoration: none;
    color: #0072a0;
}

.footer-container {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.copyright-container {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* End footer CSS
--------------------------------------------------------------------------------------------------*/

/* Start homepage CSS
--------------------------------------------------------------------------------------------------*/
.home-next-section {
    padding: 180px 0px;
    background: url('../img/bgi/bckgr-general-1920x1080.webp') no-repeat center center;
    background-size: cover;
}

.home-next-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.home-next-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 45px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.home-title {
    display: block;
    margin: 20px 0px;
    text-align: center;
    font-weight: 400;
    font-family: 'Sports World';
    text-transform: uppercase;
    font-size: 46px;
    line-height: 60px;
    color: #fff;
}

.match-info {
    max-width: 400px;
    width: 100%;
}

.home-next-content img {
    display: block;
    height: 100px;
    margin: 0 auto 20px;
}

.next-team {
    display: block;
    text-align: center;
    font-weight: 400;
    font-family: 'Sports World';
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
}

.match-info {
    text-align: center;
}

.home-next-date {
    display: block;
    margin: 20px 0px;
    font-size: 32px;
    line-height: 40px;
    color: #d2a230;
    font-weight: 700;
}
/* End homepage CSS
--------------------------------------------------------------------------------------------------*/

/* Start liga CSS
--------------------------------------------------------------------------------------------------*/
.main-title {
    display: block;
    margin: 50px 0px;
    text-align: center;
    font-weight: 400;
    font-family: 'Sports World';
    font-size: 24px;
    line-height: 32px;
    color: #0072a0;
    text-transform: uppercase;
}

.echipe-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.echipe-list li {
    width: 25%;
    padding: 0px 60px;
    margin-bottom: 50px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.echipe-list li a {
    text-decoration: none;
    color: #0072a0;
}

.echipe-list li img {
    height: 200px;
}

.page-template-page-sponzori .echipe-list li img {
    height: auto;
}

.location {
    display: block;
    margin: 20px 0px 10px;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Sports World';
    color: #d2a230;
    text-transform: uppercase;
}
/* End liga CSS
--------------------------------------------------------------------------------------------------*/

/* Start echipa CSS
--------------------------------------------------------------------------------------------------*/
.echipa-page-list.cat-fete {
    display: none;
}

.echipa-list h2 {
    margin-bottom: 30px;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Sports World';
    color: #d2a230;
    font-size: 18px;
    text-transform: uppercase;
}

.inner-page-nav {
    text-align: center;
    margin-bottom: 40px;
}

.inner-page-nav li {
    display: inline-block;
    margin: 0px 5px;
}

.echipa-section .main-title {
    margin-bottom: 20px;
}

.echipa-page-list {
    display: flex;
    flex-wrap: wrap;
}

.echipa-page-list > li {
    width: calc(20% - 24px);
    margin-right: 30px;
    margin-bottom: 50px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.echipa-page-list > li > a {
    display: block;
    text-decoration: none;
    color: #0072a0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.echipa-page-list > li > a:hover {
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
}

.echipa-short {
    padding-bottom: 20px;
}

.echipa-page-list > li:nth-child(5n) {
    margin-right: 0px;
}

.echipa-short span {
    display: block;
    margin: 20px 0px 0px;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Sports World';
    color: #d2a230;
    text-transform: uppercase;
}

.player-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0,0,0, .2);
}

.player-popup-content {
    position: fixed;
    left: 50%;
    top: 50%;
    max-width: 720px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.close-popup {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #D2A230;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.close-popup:hover {
    background: #0072A0;
}

.close-popup:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bgi/close-white.svg') no-repeat center center;
}

.player-popup-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
}

.player-popup-inner figure {
    width: 50%;
}

.player-popup-inner .player-info {
    width: 50%;
    padding: 0px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.player-number {
    display: block;
    position: relative;
    padding-left: 90px;
    text-decoration: none;
    font-weight: 400;
    text-align: left;
    font-family: 'Sports World';
    color: #0072a0;
    text-transform: uppercase;
    font-size: 64px;
    line-height: 60px;
}

.player-number:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 54px;
    height: 60px;
    background: url('../img/bgi/logo-kse-header.svg') no-repeat center center;
    background-size: cover;
}

.player-number:before {
    content: '';
    position: absolute;
    left: 70px;
    top: 50%;
    margin-top: -10px;
    width: 2px;
    height: 20px;
    background: #D2A230;
}

.player-name {
    display: block;
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0px 20px;
}

.player-bio-label {
    display: block;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Sports World';
    color: #d2a230;
    text-transform: uppercase;
}

.player-info ul li {
    padding: 10px 0px;
    border-top: 1px solid #f0f0f0;
}

.player-info ul {
    border-bottom: 1px solid #f0f0f0;
}
/* End echipa CSS
--------------------------------------------------------------------------------------------------*/

/* Start downloads CSS
--------------------------------------------------------------------------------------------------*/
.download-list {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 50px;
}

.download-list li {
    margin-bottom: 10px;
}

.download-list li a {
    display: block;
    position: relative;
    padding: 20px 60px;
    border: 2px solid #f0f0f0;
    border-radius: 30px;
    color: #aaaaaa;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.download-list li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background: url('../img/bgi/pdf-red.svg') no-repeat center center;
}

.download-list li a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background: url('../img/bgi/download-blue.svg') no-repeat center center;
}

.download-list li a:hover {
    background: #f9f9f9;
    color: #0072A0;
}
/* End downloads CSS
--------------------------------------------------------------------------------------------------*/

/* Start media CSS
--------------------------------------------------------------------------------------------------*/
.media-page-list.cat-video {
    display: none;
}

.inner-page-nav {
    text-align: center;
    margin-bottom: 40px;
}

.inner-page-nav li {
    display: inline-block;
    margin: 0px 5px;
}

.media-section .main-title {
    margin-bottom: 20px;
}

.media-page-list {
    display: flex;
    flex-wrap: wrap;
}

.media-page-list > li {
    width: calc(20% - 24px);
    margin-right: 30px;
    margin-bottom: 50px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.media-page-list > li > a {
    display: block;
    text-decoration: none;
    color: #0072a0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.media-page-list > li > a:hover {
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
}

.media-short {
    padding: 20px 0px;
}

.media-page-list > li:nth-child(5n) {
    margin-right: 0px;
}

.media-short span {
    display: block;
    margin: 20px 0px 0px;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Sports World';
    color: #d2a230;
    text-transform: uppercase;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
}

.gallery-grid { 
    width: calc(100% / 3);
}

.gallery-grid {
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
}

.gallery-grid a img {
    display: block;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.gallery-grid a:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.gallery-sizer { 
    width: calc(100% / 3);
}

.fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 95px;
}

.fancybox-thumbs__list {
    margin: 0 auto;
}

.fancybox-bg,
.fancybox-is-open .fancybox-bg {
    opacity: 1;
    background: rgba(0, 0, 0, .5);
}

.fancybox-thumbs__list a:before {
    border: 1px solid #000;
}

.fancybox-infobar {
    font-size: 16px;
    color: #333545;
    opacity: 1;
    visibility: visible;
    mix-blend-mode: unset;
}

.fancybox-toolbar {
    opacity: 1;
    visibility: visible;
}

.fancybox-button.fancybox-button--close {
    background: transparent;
    width: 60px;
    height: 50px;
    color: #666;
    opacity: 1;
    visibility: visible;
}

.fancybox-button.fancybox-button--close:hover {
    color: #000;
}

.fancybox-navigation .fancybox-button {
    opacity: 1;
    visibility: visible;
}


.fancybox-button.fancybox-button--zoom {
    display: none !important;
}

.fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: #fff;
}

.fancybox-button {
    background: #000;
}

.video-inner iframe {
    display: block;
    margin: 0 auto;
}
/* End media CSS
--------------------------------------------------------------------------------------------------*/

/* Start about CSS
--------------------------------------------------------------------------------------------------*/
.container-small {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.default-text {
    color: #666666;
    font-weight: 400;
}

.default-text h1 {
    color: #0072a0;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 36px;
}

.default-text h2 {
    color: #0072a0;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 26px;
}

.default-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.default-text p iframe {
    width: 100%;
}

.default-text p a {
    color: #0072a0;
    font-weight: 700;
}

.default-text ul {
    margin-bottom: 20px;
}

.default-text ul li {
    position: relative;
    padding-left: 15px;
}

.default-text ul li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 7.5px;
    width: 5px;
    height: 5px;
    background: #666;
    border-radius: 3px;
}

.default-text blockquote p {
    padding-top: 60px;
    font-size: 32px;
    line-height: 36px;
    font-style: italic;
    position: relative;
    font-weight: 300;
    color: #0072a0;
}

.default-text blockquote p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 40px;
    background: url('../img/bgi/quote-gold.svg') no-repeat left center;
}

.default-text p img.aligncenter {
    display: block;
    margin: 0 auto;
}
/* End about CSS
--------------------------------------------------------------------------------------------------*/

/* Start contact CSS
--------------------------------------------------------------------------------------------------*/
.contact-info {
    margin-bottom: 50px;
    text-align: center;
}

.contact-info h2 {
    display: block;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Sports World';
    color: #d2a230;
    text-transform: uppercase;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-info p a {
    text-decoration: none;
    color: inherit;
}
/* End contact CSS
--------------------------------------------------------------------------------------------------*/

/* Start blog CSS
--------------------------------------------------------------------------------------------------*/
.blog-content {
    float: right;
    width: calc(100% - 240px);
}

.blog-aside {
    float: left;
    width: 200px;
    margin-right: 40px;
}

.category-list-aside li {
    margin-bottom: 10px;
}

.category-list-aside li a {
    display: block;
    padding: 0px 15px 0px 20px;
    border: 2px solid #f0f0f0;
    height: 40px;
    line-height: 36px;
    border-radius: 20px;
    text-decoration: none;
    color: #aaaaaa;
    font-size: 12px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.category-list-aside li a.active {
    color: #d2a230;
}

.category-list-aside li a span {
    float: right;
    color: #d2a230;
}

.category-list-aside li a:not(.active):hover {
    color: #0072a0;
    background: #f9f9f9;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
}

.blog-post {
    width: calc(50% - 20px);
    margin-right: 40px;
    margin-bottom: 40px;
}

.blog-container article:nth-child(2n) {
    margin-right: 0px;
}

.blog-container article a {
    text-decoration: none;
    text-align: center;
    color: inherit;
}

.blog-container article a h2 {
    font-size: 18px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.blog-container article a:hover h2 {
    color: #d2a230;
}

.blog-date-cat {
    display: flex;
    justify-content: center;
    margin: 25px 0px 15px;
}

.blog-category {
    display: block;
    text-decoration: none;
    color: #d2a230;
    text-transform: uppercase;
}

.blog-divider {
    display: block;
    margin: 0px 10px;
    color: #aaaaaa;
}

.blog-date {
    display: block;
    color: #aaaaaa;
}

.page-single .blog-date-cat {
    justify-content: flex-start;
}
/* End blog CSS
--------------------------------------------------------------------------------------------------*/