:root {
    --brand-color: #27AAE1;
    --brand-color-inverse: #FFFFFF;
    --primary-color: #27A8E0;
    --primary-color-inverse: #FFFFFF;
    --secondary-color: #00A79D;
    --secondary-color-inverse: #FFFFFF;
    --third-color: #000;
    --third-color-inverse: #FFFFFF;
    --body-color: #242D41;
    --gray-color: #f8f8f8;
    --border-color: #E8E7EA;
}

.header {
    background-color: #242D41;
    color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 20;
}

.fixed .hamburger {
    top: 0px;
}

.header__action:hover .header__action-link {
    background: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}


/*-----Header Bar*/

.header-bar {
    display: -webkit-box;
    display: flex;
    margin: 0 auto;
    padding: 0 10px;
    -webkit-box-align: center;
    align-items: center;
}

.header-bar a {
    display: block;
}

.header__top {
    padding: 0 10px;
    position: relative;
    z-index: 20;
    background-color: var(--second-color);
    color: var(--second-inverse-color);
}

.header-label {
    padding: 5px 0px;
    font-size: .9em;
}

.short-links>ul>li>a.header__action-lang {
    padding-right: 25px;
    position: relative;
}

.header__action-lang:after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-left: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    -webkit-transform: translateY(-80%) rotate(-45deg);
    transform: translateY(-80%) rotate(-45deg);
}

.header__action-langicon {
    height: 25px;
    width: 25px;
    padding: 0px;
    background-color: var(--grey-light);
    border-radius: 50px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media (max-width:767px) {
    .is-home .header-bar {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.header-bar>div:last-child {
    display: -webkit-box;
    display: flex;
    margin-left: auto;
}

@media (min-width:1199px) {
    .header-bar,
    .header__top {
        padding: 0 30px;
    }
}

.header-menu-button {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-right: 10px;
}


/*-----Hamburger*/

.header-left .header-menu-button {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-right: 20px;
}

.hamburger {
    top: 0;
    display: block;
    width: 20px;
    height: 30px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1;
    left: auto;
    margin: 0 10px 0 0;
}

.hamburger span {
    display: block;
    margin: 14px 0 0;
    position: relative;
    width: 100%;
}

.hamburger span:before {
    content: "";
    left: 0;
    position: absolute;
    top: -7px;
}

.hamburger span:after {
    content: "";
    left: 0;
    position: absolute;
    bottom: -7px;
    width: 100%;
}

.hamburger span,
.hamburger span:before,
.hamburger span:after {
    background: #333;
    width: 100%;
    height: 2px;
}


/*-----Hamburger Navigation*/

.navigation-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -webkit-transform: translate(-100%, 0px);
    transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding: 0;
    width: 260px;
    opacity: 0;
    overflow: auto;
    z-index: 110;
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
}

body.toggled_left .navigation-wrapper {
    transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    opacity: 1;
}

.navigations>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 1em;
    font-weight: 600
}

.navigations>li>a {
    padding: 15px 40px 15px 15px;
    height: auto;
    text-align: left;
    color: #333;
    display: block;
    position: relative;
    overflow: visible;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
}

.navigations>li>a:after,
.navigations>li>a:before {
    content: "";
    background: transparent;
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.navigations>li>a:after {
    left: 50%;
}

.navigations>li>a:before {
    right: 50%;
}

body.toggled_left .common_overlay,
body.is-toggle .header__search.is-visible .common_overlay {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.navigations>li .subnav {
    display: none;
    position: relative;
    width: 100%;
}

.navigations>li.navchild>a:after,
.navigations>li .nav-expand.active:after {
    display: none;
}

.subnav__wrapper .container,
.navigations>li .subnav__wrapper.addspace {
    padding: 0;
}

.subnav_row {
    padding: 0px;
}

.sublinks {
    color: #222;
    margin: 0;
    text-align: left;
}

.sublinks>li {
    display: inline-block;
    margin: 0;
    width: 100%;
    vertical-align: top;
    padding: 0 15px;
}

.sublinks>li>a {
    color: inherit;
    display: block;
    font-size: 1em;
    text-transform: uppercase;
    padding: 0;
}

.sublinks>li>ul {
    margin: 10px 0;
    padding-top: 10px;
    border-top: 2px solid;
}

.sublinks>li>ul>li {
    padding: 0 0 5px;
    float: none;
}

.sublinks>li>ul>li a {
    color: #999;
    font-size: 1em;
    padding: 3px 0;
    display: inline-block;
    font-weight: 400;
    position: relative;
}

.sublinks>li>ul>li a:before {
    background: var(--brand-color);
    bottom: 0px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 100%;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.sublinks>li>ul>li a:hover::before {
    right: 0;
}

.sublinks>li>ul>li a:hover {
    color: var(--brand-color);
}

.trigger-js.is-active:after {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    display: none;
}

.trigger-target.is-visible {
    display: block;
}

.navigations>li>a:hover:before,
.navigations>li>a:hover:after {
    display: none;
}

.navigations>li:hover>a {
    color: #333;
}

.navigations>li .subnav__wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 10px;
    overflow: auto;
    background: #fff;
    border-top: medium none;
    box-shadow: none;
    display: inline-block;
    opacity: 1;
    position: relative;
    top: 0;
    visibility: visible;
    width: 100%;
}

.navigations>li .subnav__wrapper .sublinks>li {}

.navigations>li .subnav__wrapper .sublinks>li>a>img {
    float: right;
}

.navigations>li .subnav__wrapper .sublinks>li>a>span {
    display: inline-block;
    max-width: 60%;
}

.navigations>li .subnav__wrapper .sublinks>li>a:after {
    clear: both;
    display: table;
    content: "";
}

.navigations>li .subnav__wrapper .sublinks>li>ul {}

@media(min-width:1199px) {
    .navigations>li.navchild>a {
        padding-right: 25px;
    }
}


/*-----Header single list nav*/

@media(min-width:767px) {
    .global-nav ul {
        display: -webkit-box;
        display: flex;
    }
    .global-nav ul li {
        padding: 0 15px;
    }
    .global-nav ul li a {
        /* font-size: 1rem;
       */
        font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1600 - 300)));
        color: currentColor;
    }
}

@media(min-width:1199px) {
    .global-nav ul li {
        padding: 0 25px;
    }
    .header-logo a.topnavs-toggle {
        display: none
    }
}

@media(min-width:767px) {
    .header-logo a.topnavs-toggle {
        display: none
    }
}

@media(max-width:768px) {
    .-hide-pmode-tab {
        display: none !important;
    }
}

@media(max-width:767px) {
    .hide-mobile,
    .-hide-mobile {
        display: none !important;
    }
}


/*-----Logo*/

.header-logo a {
    display: -webkit-box;
    display: flex;
}

.header-logo {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.topnavs-toggle {
    cursor: pointer;
    display: none;
    height: 30px;
    position: relative;
    width: 30px;
    margin-right: 15px;
}

.topnavs-toggle span {
    background: #000;
    display: block;
    height: 2px;
    margin: 14px 0 0;
    position: relative;
    width: 100%;
}

.topnavs-toggle span:before {
    background: #000;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -8px;
    width: 100%;
}

.topnavs-toggle span:after {
    background: #000;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    bottom: -8px;
    width: 100%;
}

.logo-image {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    align-content: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    height: 60px;
}

.logo-image img {
    width: auto;
    max-height: 40px;
}


/*-----Header Right Corner list*/

.header-corner-actions {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.header-bar .svg-icon {
    line-height: 15px;
}


/*-----Header Location*/

.address-dropdown {
    min-width: 100%;
    padding: 20px;
    position: absolute;
    top: 150%;
    right: 0;
    background: #fff;
    color: #000;
    box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.1);
    transition: all 300ms;
    -webkit-transition: all 300ms;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    z-index: 25;
}

@media(min-width:992px) {
    .header-address {
        position: relative;
    }
    .address-dropdown {
        min-width: 400px;
    }
}

.header-address.is-active .address-dropdown {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
    top: 100%;
}

.address-is-active: {}

@media(min-width:767px) {
    .header-address {
        border-right: 1px solid var(--border-color-one);
        margin-right: 20px;
    }
    .header-address>a {
        position: relative;
        padding: 5px 15px;
        height: auto;
        border-radius: 0;
        -webkit-transition: none;
        transition: none;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }
    .header-address.is-active>a {
        z-index: 21;
    }
}

.svg-icon.svg-location {
    padding-right: 5px;
}

.svg-icon.svg-location svg {
    height: 18px;
    width: 18px;
    display: block;
}

.address-form {
    text-align: center;
}

.address-form>div {
    padding-bottom: 15px;
}

.address-form>div:last-child {
    padding-bottom: 0;
}

.address-form .btn-address input,
.address-form .btn-address {
    color: var(--first-inverse-color);
    font-size: 1rem;
    background: var(--brand-color);
}

.selected-address {
    font-size: 1rem;
}

.selected-address .arrow {
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    color: var(--second-inverse-color);
    font-size: .9em;
}

.header-address .svg-icon {
    fill: var(--second-inverse-color);
    line-height: 1;
}

.header__top .arrow.arrow--down::after {
    border-color: currentColor;
}

@media(max-width:767px) {
    .address-select {
        padding: 5px 0;
    }
    .selected-address .arrow {
        max-width: 100px;
        padding-right: 20px;
    }
    .short-links>ul>li>a.header__action-lang {
        padding-right: 20px;
    }
    .short-links>ul>li {
        margin: 0 8px;
    }
    .short-links>ul>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header__top {
        padding: 0 20px;
    }
    .header-bar {
        padding: 0 15px;
    }
}

@media(max-width:1200px) {
    .selected-address {
        font-size: 0.9em;
    }
}

.post__pic .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    background-color: rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    text-indent: -999999px;
    z-index: 1;
}

.post__pic .slick-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
}

.post__pic .slick-prev:after,
.post__pic .slick-next:after {
    content: "";
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: 50%;
    margin-top: -5px;
}

.post__pic .slick-prev:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-left: -3px;
}

.post__pic .slick-prev {
    left: -1%;
}

.post__pic .slick-next {
    right: -1%;
}

.post {
    padding: 20px 10px;
    margin: 20px 0 0;
}

.box--space {
    padding: 20px;
}

.header-blog {
    background: var(--brand-color);
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    top: 0;
}

.header-blog-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.after-header-blog {
    height: 70px;
}

.post-detail {
    padding-top: 15px;
}

.nav-blog {
    position: relative;
    padding-right: 30px;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    text-align: right;
}

.nav-blog li {
    display: inline-block;
    padding: 0 15px;
}

.nav-blog ul>li>a {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: block;
}

.wrapper-menu {
    width: 18px;
    height: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 5px;
    right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: -webkit-transform 330ms ease-out;
    transition: -webkit-transform 330ms ease-out;
    transition: transform 330ms ease-out;
    transition: transform 330ms ease-out, -webkit-transform 330ms ease-out;
}

.wrapper-menu.wrapper-menu-mobile {
    display: none;
}

.wrapper-menu.open {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.wrapper-menu.open .line-menu.start {
    -webkit-transform: rotate(-90deg) translateX(3px);
    transform: rotate(-90deg) translateX(3px)
}

.wrapper-menu.open .line-menu.end {
    -webkit-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px)
}

.wrapper-menu .line-menu {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: 2px
}

.wrapper-menu .line-menu:after {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 5px;
    background: #000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s
}

.wrapper-menu .line-menu:nth-child(2n + 1):after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s
}

.wrapper-menu .line-menu:nth-child(2n + 2):after {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s
}

.wrapper-menu .line-menu:nth-child(2n + 3):after {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    right: 0;
    left: auto
}

.wrapper-menu .line-menu.half {
    width: 50%
}

.wrapper-menu .line-menu.start {
    -webkit-transition: -webkit-transform 330ms cubic-bezier(.54, -.81, .57, .57);
    transition: -webkit-transform 330ms cubic-bezier(.54, -.81, .57, .57);
    transition: transform 330ms cubic-bezier(.54, -.81, .57, .57);
    transition: transform 330ms cubic-bezier(.54, -.81, .57, .57), -webkit-transform 330ms cubic-bezier(.54, -.81, .57, .57);
    -webkit-transform-origin: right;
    transform-origin: right
}

.wrapper-menu .line-menu.end {
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-transition: -webkit-transform 330ms cubic-bezier(.54, -.81, .57, .57);
    transition: -webkit-transform 330ms cubic-bezier(.54, -.81, .57, .57);
    transition: transform 330ms cubic-bezier(.54, -.81, .57, .57);
    transition: transform 330ms cubic-bezier(.54, -.81, .57, .57), -webkit-transform 330ms cubic-bezier(.54, -.81, .57, .57);
    -webkit-transform-origin: left;
    transform-origin: left
}

.nav__secondary {
    background: var(--brand-color);
    padding: 10px;
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    right: 0;
    -webkit-box-shadow: 0 5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 1px rgba(0, 0, 0, 0.2);
    display: none;
}

.nav-opened .nav__secondary {
    display: block;
}

.nav__secondary li:not(:nth-child(3n + 1)) a {
    /*	border-left: solid 2px rgba(255, 255, 255, 0.3);
	padding-left: 30px;
	margin-left: -30px;*/
}

.nav__secondary ul:after {
    clear: both;
    content: "";
    display: table;
}

.nav__secondary li {
    display: block;
    float: left;
    width: 33.3%;
    color: #fff;
}

.nav__secondary li.on-mobile {
    display: none;
}

.nav__secondary li a {
    display: block;
    color: inherit;
    font-weight: normal;
    font-size: 1em;
    text-align: left;
    padding: 15px 0;
}

.container {
    margin: 0 auto;
    max-width: 1250px;
    padding: 0 15px;
}

.posts-slider {
    position: relative;
    padding-top: 15px;
}

.posts-slider .slick-arrow {
    /* position: absolute;
  top: 50%;
  margin-top: -40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  text-indent: -999999px;
  z-index: 1; */
}

.posts-slider .slick-arrow.slick-prev {
    /* background: #fff url(/images/retina/left-arrow.svg) no-repeat center;
  background-size: 25px; */
    left: 30px;
}

.posts-slider .slick-arrow.slick-next {
    /* background: #fff url(/images/retina/right-arrow.svg) no-repeat center;
  background-size: 25px; */
    right: 30px;
}

.posts-slider .slick-arrow:hover {
    /* opacity: 0.9; */
}

.posts-slider .post-item {
    margin: 0 10px;
    overflow: hidden;
    position: relative;
}

.posts-slider .post-media {
    position: relative;
    background: #ffffff;
    padding-bottom: 56.25%;
}

.posts-slider .post-item .img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.posts-slider .post-item .img {
    opacity: 0.3;
}

.posts-slider .post-item.slick-active .img {
    opacity: 1;
}

.posts-slider .post-item .post-data {
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.2;
    background: rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.posts-slider .post-item.slick-active .post-data {
    position: relative;
    background: none;
    border: solid 2px var(--brand-color);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

.posts-slider .post-item.slick-active .post-data:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--brand-color);
    border-right: 2px solid var(--brand-color);
    background: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.posts-slider .post-item .tag {
    letter-spacing: 5px;
    font-size: 1em;
    color: #6b6b6b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.posts-slider .post-item .post-heading h2 {
    font-weight: 600;
    font-size: 1.625em;
    color: #2e2f2f;
    line-height: 1.4;
    margin-bottom: 15px;
}


/* .posts-slider .post-item.slick-active .post-data {
	opacity: 1;
	top: 50%;
} */

.posts-slider .post-item .links,
.links {
    color: var(--brand-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875em;
    text-decoration: underline;
}

.posts-slider .slick-dots {
    margin: 30px auto;
    text-align: center;
    position: relative;
    bottom: 0;
    left: 0;
    -webkit-transform: none;
    transform: none;
}

.posts-slider .slick-dots li {
    border: 1px solid transparent;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    padding: 3px;
}

.posts-slider .slick-dots li button {
    background: #c9c8c8;
    border: medium none;
    border-radius: 50%;
    display: block;
    height: 11px;
    position: relative;
    text-indent: -9999px;
    width: 11px;
}

.posts-slider .slick-dots li.slick-active button {
    background: var(--brand-color);
    border-color: #fff;
}

.posts-slider .slick-dots li.slick-active {
    border: 1px solid var(--brand-color);
}

.searchform-holder {
    position: relative;
}

.search-form {
    position: absolute;
    z-index: 5;
    right: 0;
    top: 100%;
    padding: 0;
    border-radius: 3px;
    display: inline-block;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.3;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    background: #fff;
    -webkit-transition: transform .3s ease;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, .1);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .1);
}

.form-opened .search-form {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
}

.search-form-detail {
    background: #0dd0ed;
    padding: 25px;
}

.form-main-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-main-search .field-set {
    margin: 0;
    padding: 0;
}

.form-main-search input[type="text"] {
    background: none;
    border: none;
    padding: 0 10px;
    margin: 0;
    height: 40px;
    font-size: 1em;
    font-weight: 300;
    line-height: 40px;
    width: auto;
    border-radius: 0;
}

.form-main-search input[type="text"]::placeholder {
    color: #fff;
}

.form-main-search input[type="submit"] {
    background: url(/images/retina/search-btn.svg) no-repeat center;
    background-size: 18px;
    border: none;
    padding: 0;
    margin: 0;
    height: 40px;
    width: 57px;
    line-height: 40px;
    float: right;
}

.post-repeated {
    direction: ltr;
    text-align: left;
    display: table;
    table-layout: fixed;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.post-repeated.odd {
    direction: rtl;
}

.post-repeated .posted-media {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    position: relative;
}

.post-repeated .posted-data-side {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    background: #fff;
    position: relative;
    padding-left: 10%;
}

.posted-by {
    margin-bottom: 15px;
}

.posted-by .auther {
    background: var(--brand-color);
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
}

.posted-by .time {
    color: #868585;
    font-weight: 300;
}

.posted-data h2 {
    font-weight: 600;
    color: #2e2f2f;
    margin-bottom: 15px;
    min-height: 70px;
}

.posted-data h2 a {
    color: inherit;
}

.post-repeated.odd .posted-data-side {
    padding-left: 0;
    padding-right: 10%;
    direction: ltr;
}

.btn--bordered {
    font-weight: 600;
    background: #fff;
    border: solid 2px var(--brand-color);
    color: var(--brand-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.share-this {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.bg-pattern {
    padding: 80px 0;
    background: url(/images/pattern.png) repeat 0 0
}

.recent-posts .posted-media {
    margin-bottom: 30px;
}

.post-data {
    padding: 25px;
    /*box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.13);*/
    border-radius: 3px;
    border: solid 1px var(--border-color);
}

.posted-content {
    background: #fff;
}

.posted-content .posted-media img {
    width: 100%;
}

.post-meta-detail {}

.post--title {
    font-size: 3.125em;
    font-weight: 600;
    color: #2e2f2f;
    margin-bottom: 15px;
    line-height: 1.2;
}

.likes-count li {
    margin-right: 10px;
    display: inline-block;
    line-height: 1;
    vertical-align: top;
    font-weight: 300;
    color: #000;
    font-size: 0.875em;
}

.likes-count li .icn-like,
.likes-count li .icn-msg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.likes-count li .icn-msg img {
    width: 20px;
}

.post__detail {
    line-height: 1.6;
}

.post__detail blockquote {
    margin: 10px 0;
    margin-left: 40px;
    padding: 12px 0 0 45px;
    font-size: 1.5em;
    font-weight: 600;
    line-height: normal;
    font-style: italic;
    color: var(--second-color);
}

.post__detail blockquote p {
    font-size: 1.5em;
    font-weight: 600;
    line-height: normal;
    font-style: italic;
    color: var(--second-color);
}

.post__detail h1,
.post__detail h2,
.post__detail h3,
.post__detail h4,
.post__detail h5,
.post__detail h6 {
    clear: both;
    margin: 25px 0 10px;
}

.post__detail p a {
    color: #ff4c65;
    /*text-decoration:underline;*/
}

.post__detail p span {
    text-decoration: none !important;
}


/* .post__detail p strong,.post__detail p b {
	font-weight: normal;
} */

.post__detail .roll {
    display: inline-block;
    /* give it a layout */
    overflow: hidden;
    font-family: 'OpenSans-Semibold';
    vertical-align: top;
    /* just to be sure */
    -webkit-perspective: 400px;
    -ms-perspective: 400px;
    perspective: 400px;
    -webkit-perspective-origin: 50% 50%;
    -ms-perspective-origin: 50% 50%;
    perspective-origin: 50% 50%;
}

.post__detail .roll:hover {
    background: none;
    text-shadow: none;
}

.post__detail ul {
    margin: 10px 0 10px 0;
    padding: 0;
}

.post__detail ul li {
    position: relative;
    font-size: 17px;
    line-height: 30px;
    padding: 0 0 8px 24px;
    color: #555;
    letter-spacing: 0.02em;
}

.post__detail ul li:before {
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    content: "";
    display: inline-block;
    background-color: currentColor;
}

.post__detail ul li a {
    color: #ff4c65;
    text-decoration: none;
}

.post__detail ol {
    margin: 10px 0 10px 20px;
    padding: 0;
    width: 100%;
    display: inline-block;
}

.post__detail ol li {
    list-style: decimal outside;
    font-size: 17px;
    /*line-height:24px;*/
    line-height: normal;
    padding: 0 0 10px 0;
    color: #555;
    letter-spacing: 0.02em;
}

.post__detail ol li a {
    color: #ff4c65;
    text-decoration: none;
}

.post__detail ol.list-spl {
    color: #ccc;
    list-style-type: none;
}

.post__detail ol.list-spl li {
    font-size: 15px;
    position: relative;
    margin: 0px 0 15px 0;
    list-style-type: none !important;
}

.post__detail ol.list-spl li.highlighted-point {}

.post__detail ol.list-spl li.highlighted-point .highlighted-info {
    margin: 0 0 0 56px;
}

.post__detail ol.list-spl li.highlighted-point .highlighted-info span.sub-info {
    display: block;
    margin: 5px 0 0 0;
}

.post__detail ol.list-spl li.highlighted-point p {
    background: #fbf8da;
    color: #272727;
    position: relative;
    margin: 0 0 10px 13px;
    top: 13px;
    padding: 15px 15px 15px 40px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.62);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.62);
}

.post__detail ol.list-spl li.highlighted-point a {
    line-height: normal;
}

.post__detail ol.list-spl li p {
    font-size: 14px;
    padding-left: 50px;
    color: #000;
    padding-top: 4px;
}

.post__detail ol.list-spl li>span {
    background: #3ecadd;
    border-radius: 60px;
    width: 30px;
    height: 30px;
    padding: 2px;
    text-align: center;
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    z-index: 1;
    float: left;
    margin-right: 15px;
    margin-top: 2px;
}

.post__detail ol.list-spl li ul {
    margin: 5px 0 5px 50px;
}

.post__detail ol.list-spl li ul li {
    background: url(images/bullet.png) no-repeat left 6px;
    font-size: 13px;
    color: #000;
    line-height: 20px;
    margin: 0;
    padding: 0 0 5px 15px;
    text-align: justify;
}

.post__detail ol li ul li {
    list-style: none;
    padding: 0 20px;
}

.post__detail h1 {
    color: #575757;
    letter-spacing: -2px;
}

.post__detail h2 {
    color: #ff4c65;
    letter-spacing: -1px;
}

.post__detail h3 {
    color: #353535;
    font-weight: 600;
    position: relative;
}

.post__detail h3:after {
    background: var(--brand-color);
    width: 40px;
    height: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.post__detail h4 {
    color: #3ecadd;
}

.post__detail h5 {
    color: #3ecadd;
    margin: 0px 0 5px 0;
}

.post__detail p {
    font-size: 1em;
    font-weight: normal;
    color: #555;
    line-height: 1.5;
    padding: 0 0 15px 0;
    /* text-align: justify; */
}

.post__detail a {
    text-decoration: none;
    color: #ff4c65;
}

.post__detail a:hover {
    color: #3ecadd;
}

.post__detail table {
    border-collapse: collapse;
    width: auto;
}

.post__detail table tr th {
    border: solid 1px #CDCDCD;
    padding: 5px 10px;
    vertical-align: top;
    text-align: left;
    color: #3ecadd;
    background: #f6f6f6;
}

.post__detail table tr td {
    border: solid 1px #CDCDCD;
    padding: 5px 10px;
    vertical-align: top;
    text-align: left;
}

.post__detail table tr td strong {
    font-weight: 600;
}

.post__detail table tr td p {
    text-align: left;
    padding: 0px;
}

.post__detail .posted-media {
    overflow: hidden;
    margin-bottom: 20px;
}


/* -------- Comments ------------- */

.comments {}

.comment-content {
    margin: 10px 0;
}

.comments a {
    color: var(--brand-color);
}

.comments h5,
.comments h3 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ebeaea;
}

.comment-element article.comment:not(.comment-content) {
    /*padding-left: 95px;*/
}

.comment-element .comment-respond {
    margin-top: 20px;
}

.comment-element .avatar {
    float: left;
    margin-left: 0;
}

.comments ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-element:not(:last-child) {
    padding: 0 0 30px;
    margin: 0 0 40px;
    border-bottom: 1px solid #ebeaea;
}

.comment-element .comment-element {
    padding: 40px 0 0;
    margin: 30px 0 0 105px;
    border-bottom-width: 0;
    border-top: 1px solid #ebeaea;
}

.comment-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.comment-element .avatar {
    display: block;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin: 0 5px;
}

.comment-time-link {
    display: block;
    font-size: 1rem;
}

.comment-element .comment-author .fn {
    display: block;
    font-size: 1rem;
    margin: 0 5px;
}

.comment-respond {}

.comment-form {
    display: block;
    padding: 40px;
    background-color: #f5f5f5;
}

.comment-form h5 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.comment-form h5:before {
    width: 40px;
    background: #2cbed2;
    left: 0;
    height: 3px;
    content: "";
    position: absolute;
    bottom: -2px;
}

.comment-form [class*="col-"]:not(:last-child) {
    margin-bottom: 20px;
}

.comment-form .newsletter-error {
    color: #ff4c65;
}


/*search*/

.search-toggle {
    display: inline-block;
    padding: 30px;
    cursor: pointer;
    position: relative;
    vertical-align: top;
}

.search-toggle.active .search-icon {
    border-color: transparent;
    -webkit-transition: all 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98);
    transition: all 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98);
    top: 50%;
    left: 50%;
}

.search-toggle.active .search-icon:before {
    -webkit-transform: rotate(45deg) translate(0%, 0%);
    transform: rotate(45deg) translate(0%, 0%);
    width: 153%;
    -webkit-transition: all 0.2s cubic-bezier(0.11, 0.92, 0.52, 0.98) 0.2s;
    transition: all 0.2s cubic-bezier(0.11, 0.92, 0.52, 0.98) 0.2s;
}

.search-toggle.active .search-icon:after {
    -webkit-transform: rotate(-45deg) translate(0%, 0%);
    transform: rotate(-45deg) translate(0%, 0%);
    width: 153%;
    opacity: 1;
    -webkit-transition: all 0.2s cubic-bezier(0.11, 0.92, 0.52, 0.98) 0.4s;
    transition: all 0.2s cubic-bezier(0.11, 0.92, 0.52, 0.98) 0.4s;
}

.search-toggle .search-icon {
    position: absolute;
    width: 25%;
    height: 25%;
    top: 47%;
    left: 49%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid white;
    -webkit-transition: all 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98) 0.5s;
    transition: all 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98) 0.5s;
}

.search-toggle .search-icon:before,
.search-toggle .search-icon:after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: white;
    display: block;
    top: 100%;
}

.search-toggle .search-icon:before {
    right: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98) 0.2s;
    transition: all 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98) 0.2s;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg) translate(50%, 50%);
    transform: rotate(45deg) translate(50%, 50%);
    width: 100%;
}

.search-toggle .search-icon:after {
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transform: rotate(-45deg) translate(-50%, -50%);
    transform: rotate(-45deg) translate(-50%, -50%);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transition: all 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98);
    transition: all 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98);
    transition: opacity 0.2s cubic-bezier(0.11, 0.92, 0.52, 0.98), -webkit-transform 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98);
    -webkit-transition: opacity 0.2s cubic-bezier(0.11, 0.92, 0.52, 0.98), -webkit-transform 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98);
    transition: transform 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98), opacity 0.2s cubic-bezier(0.11, 0.92, 0.52, 0.98);
    transition: transform 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98), opacity 0.2s cubic-bezier(0.11, 0.92, 0.52, 0.98), -webkit-transform 0.4s cubic-bezier(0.11, 0.92, 0.52, 0.98);
}

.no-focus:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.blog-categories-js {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
}

.blog-categories-js li {
    margin: 0 10px;
}


/* [ added on 2 August */

.nav--toggled {
    width: 100%;
}

.nav--toggled>ul>li {
    position: relative;
    margin: 5px 0;
    display: block;
    border: solid 2px var(--border-color);
}

.nav--toggled>ul>li .link--toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 42px;
    width: 40px;
    cursor: pointer;
}

.nav--toggled>ul>li>a {
    position: relative;
    padding: 12px 40px 12px 10px;
    color: #333;
    display: block;
    font-weight: 700;
}

.nav--toggled>ul>li>ul {
    margin: 0;
    padding: 0 0 15px;
}

.nav--toggled>ul>li ul li .link--toggle {
    right: 0;
}

.nav--toggled>ul>li ul li {
    padding: 0;
    position: relative;
    display: block;
}

.nav--toggled>ul>li ul li a {
    color: #999;
    padding: 10px 40px 10px 15px;
    display: block;
}

.nav--toggled>ul>li ul li a:hover {
    color: #333;
}

.nav--toggled>ul>li ul li.is--active a {
    color: #333;
    font-weight: 600;
}

.nav--toggled>ul>li.is-active>a,
.nav--vertical>ul>li>a.is-active {
    color: #000;
    font-weight: 600;
}

.nav--toggled .is-selected>a {
    font-weight: 500;
    color: var(--brand-color);
}

.nav--toggled>ul>li .link--toggle:before {
    color: var(--brand-color);
    position: absolute;
    left: 50%;
    top: 50%;
    content: "+";
    font-size: 1.6rem;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.nav--toggled>ul>li .link--toggle.is-active:before {
    content: "-";
    font-size: 2.2rem;
}

.nav--toggled>ul>li .link--toggle.is-active:hover {
    background: none;
}

.nav--toggled>ul>li>ul ul {
    margin: 0 0 0 15px;
}


/* added on 2 August ] */

.sharethis_custom {
    background: url(/images/retina/social-icons/share.svg) no-repeat scroll center transparent;
    /* padding:0px 16px 0 0; */
}

.st_facebook_custom {
    background: url(/images/retina/social-icons/facebook.svg) no-repeat scroll center transparent;
    /* padding:0px 16px 0 0; */
}

.st_twitter_custom {
    background: url(/images/retina/social-icons/twitter.svg) no-repeat scroll center transparent;
    /* padding:0px 16px 0 0; */
}

.st_email_custom {
    background: url(/images/retina/social-icons/envelope.svg) no-repeat scroll center transparent;
    /* padding:0px 16px 0 0; */
}

.st_plusone_custom {
    background: url(/images/retina/social-icons/google-plus.svg) no-repeat scroll center transparent;
    /* padding:0px 16px 0 0; */
}

.st_pinterest_custom {
    background: url(/images/retina/social-icons/pinterest.svg) no-repeat scroll center transparent;
    /* padding:0px 16px 0 0; */
}


/* [ added on 21 sept */

.page-search {
    background: var(--brand-color);
    padding: 20px 20px 25px;
    border-radius: 3px;
}

.page-search input[type="text"] {
    background: #fff;
    height: 55px;
    width: calc(100% - 55px);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-search input[type="submit"] {
    height: 55px;
    width: 55px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCIgdmlld0JveD0iMCAwIDMwLjIzOSAzMC4yMzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwLjIzOSAzMC4yMzk7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMjAuMTk0LDMuNDZjLTQuNjEzLTQuNjEzLTEyLjEyMS00LjYxMy0xNi43MzQsMGMtNC42MTIsNC42MTQtNC42MTIsMTIuMTIxLDAsMTYuNzM1ICAgYzQuMTA4LDQuMTA3LDEwLjUwNiw0LjU0NywxNS4xMTYsMS4zNGMwLjA5NywwLjQ1OSwwLjMxOSwwLjg5NywwLjY3NiwxLjI1NGw2LjcxOCw2LjcxOGMwLjk3OSwwLjk3NywyLjU2MSwwLjk3NywzLjUzNSwwICAgYzAuOTc4LTAuOTc4LDAuOTc4LTIuNTYsMC0zLjUzNWwtNi43MTgtNi43MmMtMC4zNTUtMC4zNTQtMC43OTQtMC41NzctMS4yNTMtMC42NzRDMjQuNzQzLDEzLjk2NywyNC4zMDMsNy41NywyMC4xOTQsMy40NnogICAgTTE4LjA3MywxOC4wNzRjLTMuNDQ0LDMuNDQ0LTkuMDQ5LDMuNDQ0LTEyLjQ5MiwwYy0zLjQ0Mi0zLjQ0NC0zLjQ0Mi05LjA0OCwwLTEyLjQ5MmMzLjQ0My0zLjQ0Myw5LjA0OC0zLjQ0MywxMi40OTIsMCAgIEMyMS41MTcsOS4wMjYsMjEuNTE3LDE0LjYzLDE4LjA3MywxOC4wNzR6IiBmaWxsPSIjZmYzYTU5Ii8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-size: 16px 16px;
    background-position: center center;
    background-color: #fff;
    border-radius: 0;
}

.-style-uppercase {
    text-transform: uppercase;
}

.page-search .widget__title {
    color: #fff;
    padding-top: 0;
}

.widget__title {
    font-weight: 700;
}

.btn--contribute img {
    width: 18px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.post-data {
    position: relative;
}

.post-data {
    -webkit-box-shadow: 0px 0 15px 5px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0 15px 5px rgba(0, 0, 0, 0.06);
}

.post-data .sticky-element li {
    position: relative;
    padding: 0 0;
}

.post-data .sticky-element li:after {
    position: absolute;
    left: 50%;
    width: 30px;
    content: "";
    height: 1px;
    margin: 0 0 0 -15px;
    background: #ddd;
    bottom: 0;
}

.post-data .sticky-element li:last-child {
    padding-bottom: 0;
}

.post-data .sticky-element li:first-child {
    padding-top: 0;
}

.post-data .sticky-element li:last-child:after {
    display: none;
}

.post-data .sticky-element li a {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    margin: auto;
    border: 1px solid transparent;
}

.post-data .sticky-element li a:hover {
    background: var(--brand-color);
}

.post-data .sticky-element li a:hover .svg-icon svg {
    fill: var(--first-inverse-color);
}

.post-data .sticky-element li a .stButton {
    position: absolute;
    opacity: 0;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.post-data .sticky-element li a .svg-icon {
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.post-data .sticky-element li a .svg-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--brand-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.post-data .sticky-element li .sticky-element__count {
    display: block;
    font-size: 0.9em;
}

.post-data .sticky-element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share-this>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media(min-width:1200px) {
    .related-posts h5,
    .comments h5,
    .comments h3 {}
}

.widget__title {
    font-size: 1.625em;
    color: #2e2f2f;
    padding: 10px 0px;
}

.blog_lnks>li {
    display: block;
    border: solid 2px var(--border-color);
    position: relative;
    margin: 5px 0;
    padding: 0;
    border-radius: 3px;
}

.blog_lnks>li.parent:before {
    background: var(--second-color);
    color: #fff;
    content: '';
    height: 2px;
    margin-right: 10px;
    position: absolute;
    right: 0;
    top: 20px;
    font-weight: 800;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 14px;
}

.blog_lnks>li.parent:after {
    font-weight: 600;
    background: var(--second-color);
    content: '';
    height: 2px;
    margin-right: 10px;
    position: absolute;
    right: 0;
    top: 20px;
    width: 14px;
}

.blog_lnks>li.parent.active:before {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.blog_lnks a {
    font-size: 0.975em;
    line-height: 1.4;
    padding: 10px;
    display: block;
    color: var(--txt-color);
    font-weight: 500;
}

.blog_lnks ul {
    margin-left: 10px;
}

.blog_lnks ul li a {
    font-weight: 300;
    font-size: 0.875em;
    padding: 5px 0;
    color: var(--txt-color);
}

.blog_lnks .badge {
    font-size: 0.875em;
    display: inline-block;
    margin-left: 5px;
}

@media only screen and (max-width: 1025px) {
    .nav-blog ul {
        display: none;
    }
    .wrapper-menu {
        top: -5px;
    }
    .wrapper-menu.wrapper-menu-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .after-header-blog {
        height: 60px;
    }
    .search-form {
        margin: 10px 0;
        padding: 10px;
    }
    .nav--centered {
        white-space: nowrap;
        overflow: auto;
    }
    .nav--centered li a {
        display: block;
        color: inherit;
        padding: 10px 15px;
    }
    .nav__secondary ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .nav__secondary ul li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
        max-width: 33%;
    }
    .nav__secondary li.on-mobile {
        display: block;
    }
}

@media only screen and (max-width: 992px) {
    .post-repeated .posted-media,
    .post-repeated .posted-data-side {
        display: block;
        width: auto;
    }
    .post-repeated .posted-data-side {
        padding: 0;
        margin: 10px 0;
    }
    .share-this {
        display: block;
        margin: 10px 0;
    }
    .bg-pattern {
        padding: 20px 0;
    }
    .nav__secondary {
        overflow: auto;
        max-height: calc(100vh - 55px);
        position: absolute;
        top: 100%;
        padding: 0;
    }
    .nav__secondary li {
        display: block;
        width: auto;
        float: none;
    }
    .comment-element .comment-element {
        margin: 10px;
        padding: 10px 0;
    }
    .post-data {
        padding: 10px;
    }
    .post--title {
        font-size: 2em;
    }
}

@media only screen and (max-width: 767px) {
    .nav--centered ul {
        white-space: nowrap;
        overflow-y: hidden;
        overflow-x: scroll;
        padding-right: 30px;
        display: block;
    }
    .nav--centered:after {
        position: absolute;
        right: 0px;
        bottom: 0;
        top: 0;
        content: "";
        width: 80px;
        pointer-events: none;
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(72%, rgba(255, 255, 255, 0.99)), color-stop(73%, #ffffff));
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 72%, #ffffff 73%);
    }
    .nav--centered li {
        float: none;
        display: inline-block;
        vertical-align: top;
    }
    .nav--centered li:last-child {
        margin-right: 40px;
    }
    .nav__secondary ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .posted-data h2 {
        min-height: auto;
        font-size: 1.5rem;
    }
    .post-data .sticky-element {
        margin: 5px 0;
    }
}

@media(min-width:1600px) {
    .post-data.is-fixed .sticky-element {
        position: fixed;
        top: 0;
        left: 50%;
        margin: 0 0 0 -700px;
        top: 100px;
    }
    .post-data .sticky-element {
        position: absolute;
        background: #fff;
        width: 60px;
        -webkit-box-shadow: 0px 0 15px 5px rgba(0, 0, 0, 0.06);
        box-shadow: 0px 0 15px 5px rgba(0, 0, 0, 0.06);
        text-align: center;
        padding: 10px;
        left: -90px;
        top: 0;
    }
}

@media(max-width:1599px) {
    .post-data .sticky-element {
        margin: 10px 0;
    }
    .post-data .sticky-element li {
        display: inline-block;
        vertical-align: top;
        margin: 0 10px 0 0;
        padding: 0;
    }
    .post-data .sticky-element li:after {
        display: none;
    }
    .post-data .sticky-element li a {
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
    }
    .post-data .sticky-element li a .svg-icon {
        height: 18px;
    }
    .post-data .sticky-element li {
        padding: 0;
    }
}


/*Query-container*/

.query-container {
    background: rgb(247, 247, 247);
    padding: 3.75rem 0;
}

.query-heading {
    text-transform: uppercase;
    font-size: 0.875em;
    font-weight: 600;
}

input.query {
    width: 100%;
    height: auto;
    padding: 5px 0;
    color: rgb(0, 0, 0);
    border: none;
    line-height: 1.5;
    border-bottom: solid 2px var(--border-color);
    background: none;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 1px;
}

.results-message {
    padding-top: 15px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 0.875em;
}

@media(min-width:1600px) {
    .post-data.is-fixed .sticky-element {
        position: fixed;
        top: 0;
        left: 50%;
        margin: 0 0 0 -700px;
        top: 100px;
    }
    .post-data .sticky-element {
        position: absolute;
        background: #fff;
        width: 60px;
        -webkit-box-shadow: 0px 0 15px 5px rgba(0, 0, 0, 0.06);
        box-shadow: 0px 0 15px 5px rgba(0, 0, 0, 0.06);
        text-align: center;
        padding: 10px;
        left: -90px;
        top: 0;
    }
}

@media(max-width:1599px) {
    .post-data .sticky-element li {
        display: inline-block;
        vertical-align: top;
        margin: 0 10px 0 0;
    }
    .post-data .sticky-element li:after {
        display: none;
    }
    .post-data .sticky-element li a {
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
    }
    .post-data .sticky-element li a .svg-icon {
        height: 18px;
    }
}


/*pawan*/

.slick-arrow {
    background-color: var(--grey-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    text-indent: -9999px;
    position: absolute;
    z-index: 9;
    top: 50%;
    margin-top: -25px;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
}

.slick-arrow:before {
    content: "";
    position: absolute;
    left: 21px;
    width: 14px;
    height: 2px;
    background-color: #000;
    top: 30px;
}

.slick-arrow:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: #333;
    border-style: solid;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 27px;
}

.slick-prev {
    left: 0
}

.slick-arrow.slick-prev:after {
    right: 28px;
    left: auto;
    border-right-width: 2px;
    border-top-width: 2px;
    border-left: 0px;
    border-bottom: 0px;
}

.slick-arrow.slick-prev:before {
    left: 24px;
}

.slick-next {
    right: 0
}

.slick-arrow.slick-next:after {
    left: 29px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-right: 0px;
    border-top: 0px;
}

@media(max-width:1024px) {
    .slick-arrow {
        width: 50px;
        height: 50px;
    }
    .slick-arrow:after {
        top: 20px;
    }
    .slick-arrow:before {
        left: 16px;
        top: 23px;
    }
    .slick-arrow.slick-prev:before {
        left: 18px;
    }
    .slick-arrow.slick-prev:after {
        right: 24px;
    }
    .slick-arrow.slick-next:after {
        left: 23px;
    }
}

@media(max-width:767px) {
    .slick-arrow {
        background-color: transparent;
    }
    .slick-arrow::before {
        background-color: transparent;
        height: 8px;
        width: 8px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        top: 20px;
        left: 21px;
    }
    .slick-arrow.slick-prev::before {
        left: 20px;
        transform: rotate(44deg);
        -webkit-transform: rotate(44deg);
    }
    .advertisement-wrapper .slick-dots,
    .testimonial-wrapper .slick-dots {
        position: relative;
        left: 0;
        bottom: 0;
        transform: none;
        -webkit-transform: none;
        text-align: center;
        margin-top: 10px;
    }
    .advertisement-wrapper .slick-dots li,
    .testimonial-wrapper .slick-dots li {
        padding: 0;
        margin: 0 2px
    }
    .advertisement-wrapper .slick-dots li button,
    .testimonial-wrapper .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .testimonial-wrapper .slick-prev {
        left: 10px;
    }
    .testimonial-wrapper .slick-next {
        right: 10px;
    }
}


/*----Slick dots*/

.slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 0 0;
}

.slick-dots li button {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: transparent;
    border: 2px solid var(--second-color);
    font-size: 0;
}

.slick-dots li.slick-active button {
    background: var(--second-color);
}

.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}