/*
Theme Name: ISANS 2021 Wordpress Theme
Theme URI:  https://isans.org
Author:     the ISANS team
Author URI: https://isans.org
Version:    2.1.2


-----------------------------------------------------------------------------------
    
    [Table of contents] 
    
    1. Template default css
    2. Header area
    3. Front page slider
    4. Right Sidbar 
    5. Content top (back, breadcrumbs)
    6. Left sidebar
    7. Category page
    8. Belarus Review Daily category page
    9. Article page
    10. 404 Page
    11. About Us Page
    12. Search area
    13. Footer area
    14. Additional utils
    
    
    
-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/*  1. Template default css
/*----------------------------------------*/
/* Google Fonts */

@import 'https://fonts.googleapis.com/css?family=Lato:400,700|Raleway:400,700';

/* Custom Fonts */
@font-face {
  font-family: 'NewYorkSmall';
  src: url('./fonts/NewYorkSmallRegular.otf') format('opentype'), 
          url('./fonts/NewYorkSmallRegular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}


@font-face {
  font-family: 'NewYorkLarge';
  src: url('./fonts/NewYorkLargeRegular.otf') format('opentype'),
          url('./fonts/NewYorkLargeRegular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

html,
body {
    height: 100%;
}
body {
    font-family: 'Lato', sans-serif;
    color: #333333;
    background: #fff none repeat scroll 0 0;
    transition: all 0.3s;
    margin: 0;
}
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100vw;
}
.floatleft {
    float: left
}
.floatright {
    float: right
}
.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px
}
.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px
}
.aligncenter {
    display: block;
    margin: 0 auto 15px
}
a:focus {
    outline: 0px solid
}
a:hover{
    color: #F74F18;
}
img {
    max-width: 100%;
    height: auto
    opacity: 1; 
    transition: opacity 0.3s; 
} 
img[data-src] { 
    opacity: 0; 
}
.swiper-slide-duplicate img[data-src] {
    opacity: 1;
}

.fix {
    overflow: hidden
}
p {
    margin: 0 0 15px;
    line-height: 24px;
    color: #606060;
}
p:last-child {
    margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 10px;
    font-family: 'NewYorkSmall', sans-serif;
}
a {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: #ec4445;
    text-decoration: none;
}
a:active,
a:hover {
    outline: 0 none;
}
a:focus,
a:hover {
    text-decoration: none;
}
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0
}
.clear {
    clear: both
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0 6px;
}
.swiper-pagination-bullet-active {
    background: #EE6437;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}
@media all and (min-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
    }    
}
@media all and (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}
@media all and (min-width: 1950px) {
    .container {
        width: 1920px;
        max-width: 1920px;
        margin: 0 auto;
    }
}

.blog-two-details-area .row{
    justify-content: center;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */
.hidden {
    display: none !important;
}
/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
    visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.clearfix:after {
    clear: both;
}



/*************************
    Padding top
*************************/

.ptb-80 {
    padding: 80px 0;
}
.ptb-95 {
    padding: 95px 0;
}
.ptb-70 {
    padding: 70px 0;
}
.ptb-120 {
    padding: 120px 0;
}
.ptb-140 {
    padding: 140px 0;
}
.pt-80 {
    padding-top: 80px;
}
.pt-160 {
    padding-top: 160px;
}
.pt-120 {
    padding-top: 120px;
}
.pb-115 {
    padding-bottom: 115px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pb-160 {
    padding-bottom: 160px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pb-60 {
    padding-bottom: 60px;
}
.pb-70 {
    padding-bottom: 70px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pb-90 {
    padding-bottom: 90px;
}
.pb-100 {
    padding-bottom: 100px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mt-80 {
    margin-top: 80px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mtb-20 {
    margin: 20px 0;
}
/*************************
    bg-color
*************************/

.bg-black {
    background-color: #2b2c31;
}
.bg-gray {
    background-color: #f6f6f6;
}
.bg-white {
    background-color: #fff;
}




/*************************
    2. Header area
*************************/

.header-area {
    display: block;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E2E2;
}
.home .header-area {
    background: rgba(23, 23, 23, 0.5);
    color: #FFFFFF;
    position: absolute;
    width: 100%;
    z-index: 999;
    border-bottom: none;
}
.header-bottom.stick-h2.stick {
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 1px 3px rgba(50, 50, 50, 0.4);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
    transition: all .3s ease 0s;
}
.home .header-bottom.stick-h2.stick {
    background: #1D1D1D none repeat scroll 0 0;
}
.header-area .header-bottom {
    padding: 0 45px;
}
.header-area .header-inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-area .logo {
  transition: all 0.3s ease 0s;
  margin-right: 15px;
}
.logo .default-logo {
    height: 40px;
}
.logo .small-logo {
    display:none;
    height: 40px;
}
.logo .mobile-logo {
    display: none;
}
.header-area .header-search {
    padding: 33px 0 30px;
    transition: all 0.3s ease 0s;
}
.header-area .search circle,
.header-area .search line {
    transition: all .3s;
}
.home .header-area .search circle,
.home .header-area .search line {
    stroke: #FFFFFF;
}
.header-area .search:hover circle,
.header-area .search:hover line {
    stroke: #F74F18;
}

.header-area .header-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    position: relative;
}
.header-area .header-search.header-language {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-area .header-search.header-language .divider {
    padding: 0 30px;
    color: #C4C4C4;
}
.header-area .language-switch {
    flex-shrink: 0;
}
.header-area .header-search.header-language a {
    color: #000000;
    word-break: keep-all;
    white-space: nowrap;
}
.home .header-area .header-search.header-language a {
    color: #FFFFFF;
}
.header-area .header-search.header-language a:hover,
.home .header-area .header-search.header-language a:hover {
    color: #F74F18;
}
.header-area .header-belarus-review-link {
    margin-left: 30px;
    flex-shrink: 0;
}
.header-area .header-belarus-review-link a {
    display: inline-block;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.25em;
    color: #000000;
    padding: 16px 27px;
    background: #EBE5DA;
    border-radius: 50px;
}
.header-area .header-belarus-review-link a:hover {
    background: #F74F18;
    color: #FFFFFF;
}

.header-search .search {
    cursor: pointer;
    font-size: 17px;
    padding: 15px 0 15px 35px;
    transition: color .3s;
}
.header-search .search:hover {
    color: #F74F18;
}
#search {
    padding-top: 0;
    padding-bottom: 3px;
    position: relative;
    width: auto;
    z-index: 99999;
}

/*
.header-button > a {
    background-color: #ea000d;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 13px 35px;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}
.header-button > a:hover {
    background-color: #333;
}
.header-button.floatright {
    margin-left: 45px;
}
*/

/*----------------------------------------
    3. Main menu
----------------------------------------*/
.main-menu{
    width: 60%;
    opacity: 1;
}
.main-menu ul:not(.submenu-mainmenu) {
    display: flex;
    justify-content: space-between;
}
.main-menu ul li {
    margin-left: 12px;
    padding: 35px 0;
    position: relative;
    transition: all 0.3s ease 0s;
}
.main-menu ul li a {
    font-size: 16px;
    color: #000000;
}
a.menu-icon i {
    color: #000000;
    font-size: 13px;
    padding-left: 4px;
}
.home .main-menu ul li a,
.home a.menu-icon i {
    color: #FFFFFF;
}
.main-menu ul li ul.submenu-mainmenu li {
    float: inherit;
    margin-left: 0;
    padding: 0px 0 15px;
}
.main-menu ul li ul.submenu-mainmenu li:last-child {
    padding: 0 0 0px;
}


/*--- Dropdown menu --*/

.main-menu ul li ul.submenu-mainmenu {
    background-color: #fff;
    border-top: 1px solid #EE6437;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    left: 0;
    margin: 0;
    padding: 24px 22px;
    position: absolute;
    text-align: left;
    top: 100%;
    -webkit-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    width: 200px;
    /* z-index: -99; */
    -webkit-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    transform: rotateX(90deg);
    visibility: hidden;
}
.main-menu ul li:hover ul.submenu-mainmenu {
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
    visibility: visible;
    z-index: 99999;
}
.main-menu ul li:hover a {
    color: #EE6437;
}
.main-menu ul li:hover ul li a {
    color: #000000;
}

.main-menu ul li ul li a {
    font-weight: 500;
    text-transform: unset;
    display: block;
}
.main-menu ul li:hover ul li a:hover {
    color: #EE6437;
}
.main-menu ul li:hover a.menu-icon i,
.home .main-menu ul li:hover a.menu-icon i {
    color: #EE6437;
}
.header-area .stick .header-search {
    padding: 31px 0;
}

.stick .main-menu ul li {
    padding: 33px 0 32px;
}

.home .main-menu ul li ul.submenu-mainmenu {
    background-color: rgba(0, 0, 0, 0.7);
}
.home .main-menu ul li:hover ul li a {
    color: #FFFFFF;
}
.home .main-menu ul li:hover ul li a:hover {
    color: #EE6437;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}


@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}



@media all and (max-width: 1450px) {
    .header-area .header-bottom {
        padding: 0 15px
    }
    .header-area .header-search.header-language .divider {
        padding: 0 15px;
    }
    .main-menu {
        width: 100%;
    }
    .main-menu ul li{
        padding: 30px 0 28px;
    }
    .header-area .header-search{
        padding: 30px 0 28px;
    }
}
@media all and (max-width: 1450px){

}

@media (max-width: 1290px) {
    .header-area .header-info-container {
        width: 80%;
    }
    .logo .default-logo {
        display: none;
    }
    .logo .small-logo {
        display: inline;
    }
    .header-search .search {
        padding: 15px 0 15px 20px;
    }
}
@media (max-width: 1170px) {
    .header-area .header-info-container {
        width: 90%;
    }
    .header-area .logo{
        margin-right: 10px
    }
}

@media (max-width: 991px)
{
    
    .logo .default-logo {
        display:inline;
    }
    .logo .small-logo {
        display: none;
    }
    .header-area {
        z-index: 1000;
    }
    .header-area .stick .logo {
        margin: 17px 0;
        padding-top:0;
    }
    .header-area .header-info-container {
        width: auto;
        justify-content: flex-end;
    } 
    .header-area .header-search {
        padding: 20px 0;
    }
    .header-search .search {
        padding: 15px 0 15px 0;
        font-size: 14px;
    }
    .header-area .stick .header-search {
        padding: 17px 0;
    }
    .header-area .header-belarus-review-link {
        display: none;
    }
    .main-menu {
        display: none;
    }
}
@media (max-width: 550px) {
    .logo .default-logo {
        display: none;
    }
    .logo .mobile-logo {
        display: block;
    }
    .header-area .header-search.header-language .divider {
        padding: 0 10px;
    }
}
@media (max-width: 374px)
{
    .header-area .header-search.header-language .divider {
        padding: 0 10px;
    }
    .header-area .header-search.header-language a {
        font-size: 14px
    }
}

.mobile-menu-toggle {
    margin-right: 15px;
}
.mobile-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    margin-bottom: 4px;
}
.mobile-menu-toggle span:last-child{
    margin-bottom: 0;
}
.home .mobile-menu-toggle span {
    background: #FFFFFF;
} 


.mobile-menu-area {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translate3d(100%, 0, 0);
}
.mobile-menu-area.is-active {
    visibility: visible;
    top: 0;
    opacity: 1;
    background-color: rgb(255,255,255);
    animation-name: slideInLeft;
    animation-duration: 0.48s;
    overflow: hidden;
    z-index: 100000;
    transform: translate3d(0, 0, 0);
}
.mobile-menu-area.is-active.fade-out {
    animation-name: slideOutLeft;
    animation-duration: 0.8s;
}

.mobile-menu {
    padding-top: 120px;
    overflow: visible;
}

.mobile-menu-close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.4;
}
.mobile-menu-close:hover {
  opacity: 1;
}
.mobile-menu-close:before, .mobile-menu-close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}
.mobile-menu-close:before {
  transform: rotate(45deg);
}
.mobile-menu-close:after {
  transform: rotate(-45deg);
}

.mobile-menu-area .container {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}
.mobile-menu-area ul {
    flex-direction: column;
}
.mobile-menu-area ul li{
    padding: 12px 30px;
    text-align: center;
}
.mobile-menu-area ul li a {
    color: #000000;
    font-size: 18px;
    font-weight: bold;
}
.mobile-menu-area ul li ul {
    padding-top: 10px;
}
.mobile-menu-area ul li ul li{
    padding: 8px 30px;
}
.mobile-menu-area ul li ul li a {
    font-weight: normal;
}
.mobile-menu-area i[data-toggle="collapse"] {
    padding: 8px 12px;
    background-color: #F2F2F2;
    margin-left: 16px;
    position: absolute;
    transition: transform .4s;
}
.mobile-menu-area i[aria-expanded="true"] {
    transform: rotate(180deg);
}


/*----------------------------------------
    3. Front page slider
----------------------------------------*/
.front-page-slider {
    margin-bottom: 60px;
}
.front-page-slider .swiper {
    width: 100%;
    height: 100vh;
}
.front-page-slider .swiper-slide {
    width: 100%;
    height: 100vh;
}
.front-page-slider .swiper-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.front-page-slider .content-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.front-page-slider .content-image:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
}
.front-page-slider .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.front-page-slider .content-title {
    position: absolute;
    left: 10%;
    top: calc(50% - 40px);
    width: 40%;
    transform: translateY(-50%);
    color:  #FFFFFF;
    font-family: 'NewYorkSmall', serif;
}
.top-slider-category{
    color: #EBE5DA;
    letter-spacing: 0.02em;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 8px;
}
.top-slider-title h2 {
    font-size: inherit;
    line-height: inherit;
    text-overflow: ellipsis;
}
.top-slider-title a{
    font-size: 68px;
    line-height: 1.25;
    color: #FFFFFF;
    font-weight: 400;
}
.top-slider-subtitle p {
    color: #FFFFFF;
    line-height: 1.35;
    font-size: 20px;
    font-weight: 200;
    max-width: 500px;
}
.top-slider-read-more a {
    display: inline-block;
    padding: 11px 75px;
    margin-top: 30px;
    border-radius: 6px;
    background-color: #EBE5DA;    
    transition: all .4s;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    font-family: 'Lato', sans-serif;
    color: #000000;    
}
.top-slider-read-more a:hover{
    background-color: #F74F18;
    color: #FFFFFF;
}

.front-page-slider .swiper-navigation{
    position: absolute;
    bottom: 195px;
    right: 4%;
    width: 100px;
    height: 44px;
    z-index: 100;
}
.front-page-slider .swiper-navigation-inner{
    position: relative;
    width: 100%;
    height: 100%;
}
.front-page-slider-next, .front-page-slider-prev{
    background: #000000;
    color: #FFFFFF;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    transition: all .3s;
    cursor: pointer;
}
.front-page-slider-next{
    float: right;
}
.front-page-slider-next:hover, .front-page-slider-prev:hover {
    background: #000000;
}

.front-page-slider .swiper-pagination-bullets {
    bottom: 195px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}
 
.front-page-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    border-radius: 0;
    height: 2px;
    width: 75px;
    background: #EBE5DA;
    margin: 0;
    opacity: 1;
    transition: all .5s;
}
.front-page-slider .swiper-pagination-bullet-active {
    background: #f74f18 !important;
}

.projects-menu{
    position: absolute;
    width: 100%;
    height: 160px;
    bottom: 0;
    left: 0;
    background: rgba(23, 23, 23, 0.7);
    display: flex;
    align-items: stretch;
    z-index: 100;
    font-family: 'NewYorkLarge', serif;
    font-size: 18px;
    line-height: 1.2;
}
.projects-menu-title {
    color: #FFFFFF;
    background: #1D1D1D;
    padding-left: 90px;
    padding-right: 65px;
    padding-top: 60px;
}
.projects-menu ul {
    display: flex;
    padding-top: 60px;
}
.projects-menu ul li{
    display: block;
    position: relative;
    padding: 0 50px;
    max-width: 280px;
}
.projects-menu ul li:after{
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 8px;
    height: 8px;
    background: #979797;
    border-radius: 50%;
}
.projects-menu ul li:last-child:after{
    display: none;
}
.projects-menu ul li a {
    display: block;
    color: #FFFFFF;
}
.projects-menu ul li a:hover{
    color: #F74F18;
}

@media all and (max-width: 1700px) {
    .top-slider-title a {
        font-size: 54px;
    }    
}

@media all and (max-width: 1450px) {
    .front-page-slider .content-title{
        width: 45%;
    }
    .top-slider-title a {
        font-size: 50px;
    }
    .top-slider-subtitle p {
        font-size: 16px;
        width: 60%;
    }
    .projects-menu{
        font-size: 16px;
    }
}

@media all and (max-width: 1200px) {
    .front-page-slider .content-title {
        width: 50%;
    }
    .top-slider-category{
        font-size: 18px;
    }
    .top-slider-title a{
        font-size: 45px;
    }
    .top-slider-subtitle p {
        font-size: 16px;
        width: 80%;
    }
    .front-page-slider .swiper-navigation{
        bottom: 170px;
    }    
    .projects-menu-title{
        padding-left: 60px;
        padding-right: 40px;
    }
    .projects-menu ul li{
        padding: 0 40px;
    }
    .projects-menu{
        height: 140px;
    }    
}

@media all and (max-height: 800px) {
    .front-page-slider .content-title{
        top: calc(50% - 30px);
    }
    .front-page-slider .swiper-navigation,
    .front-page-slider .swiper-pagination-bullets {
        bottom: 170px;
    }
    .projects-menu{
        height: 140px;
    }    
    .projects-menu-title{
        padding-top: 50px
    }
    .projects-menu ul{
        padding-top: 50px;
    }
    .right-sidebar-sticky .sidebar-inner-image {
        display: none;
        visibility: hidden;
        height: 0;
    }
}

@media all and (max-height: 760px) {
    .front-page-slider .content-title{
        top: calc(50% - 20px);
    }
    .front-page-slider .swiper-navigation,
    .front-page-slider .swiper-pagination-bullets{
        bottom: 140px;
    }
    .projects-menu{
        height: 120px;
    }
    .projects-menu-title{
        padding-top: 40px
    }
    .projects-menu ul{
        padding-top: 40px;
    }
    .right-sidebar-sticky .sidebar-inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .right-sidebar-sticky .blog-section-title {
        margin-bottom: -10px;
    }
}

@media all and (max-height: 650px) {
    .projects-menu{
        height: 100px;
    }
    .projects-menu ul {
        padding-top: 30px;
    }
    .projects-menu-title{
        padding-top: 30px;
    }
    .front-page-slider .swiper-navigation,
    .front-page-slider .swiper-pagination-bullets {
        bottom: 120px;
    }
}

@media all and (max-height: 760px) and (min-width: 1440px) {
    .top-slider-title a {
        font-size: 50px;
    }
    .top-slider-subtitle p {
        font-size: 16px;
        width: 60%;
    }    
}

@media all and (max-width: 1000px) {
    .front-page-slider{
        margin-bottom: 0;
    }
    .front-page-slider .content-title {
        top: 50%;
        width: 70%;
    }
    .projects-menu{
        display: none;
    }
    .front-page-slider .swiper-navigation,
    .front-page-slider .swiper-pagination-bullets {
        bottom: 20px;
    }
}

@media all and (max-width: 800px) {
    .front-page-slider .content-title{
        width: 70%;
    }
    .top-slider-title a{
        font-size: 38px;
    }
    .top-slider-subtitle p{
        width: 90%;
        font-size: 14px;
    }
    .front-page-slider .swiper-pagination-vertical.swiper-pagination-bullets, 
    .front-page-slider .swiper-vertical>.swiper-pagination-bullets {
        right: auto;
        left: 25px;
        top: 50%;
    }
}

@media screen and (max-width: 782px) {
    html {
        margin-top: 0 !important;
    }
    html #wpadminbar {
        display: none !important;
    }
}

@media all and (max-width: 700px) {
    .top-slider-title a{
        font-size: 32px;
    }    
}


@media all and (max-width: 570px) {
    .front-page-slider .content-title{
        left: 52px;
        width: calc(100% - 100px);
    }
    .top-slider-category {
        font-size: 15px;
    }
    .top-slider-title a{
        font-size: 26px;
    }    
    .front-page-slider .swiper-navigation{
        width: 94px;
        height: 40px;
    }

    .front-page-slider-next, .front-page-slider-prev{
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }    
    .front-page-slider .swiper-pagination-bullets {
        right: auto;
        bottom: auto;
        left: 25px;
        top: 50%;
        transform: translate3d(0px,-50%,0);
    }
    .front-page-slider .swiper-pagination-bullets .swiper-pagination-bullet {
        height: 75px;
        width: 2px;
        display: block;
    }
}


@media all and (max-width: 470px) and (max-height: 600px) {
    .top-slider-title a{
        font-size: 24px;
    }    
}




/*----------------------------------------
    6. Blog Items (Front Page and common)
----------------------------------------*/
.main-content {
    -ms-flex: 0 0 78%;
    flex: 0 0 78%;
    max-width: 78%;
}

.sidebar {
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
    max-width: 22%;
}

.home .blog-area{
    padding-left: 58px;
}
.blog-section-title a{
    font-family: 'NewYorkLarge', serif;
    display: inline-block;
    position: relative;
    color: #000000;
    padding: 10px 15px;
}
.home .blog-section-title a{
    font-size: 52px;
    line-height: 1.15;
}
.home .blog-section-title a:before{
    content: '';
    position: absolute;
    left: -52px;
    top: 0;
    width: 52px;
    height: 100%;
    background: #F74F18;
}
.blog-section-title a i {
    display: block;
    position: absolute;
    top: 55%;
    right: -28px;
    transform: translateY(-50%);
    margin-left: 28px;
    line-height: 60px;
    transition: all .4s; 
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/isans-2021/img/Union.png);
}
.blog-section-title a i:before{
    content: '';
}
.blog-section-title a:hover i{
    right: -38px;
}
.blog-items-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.blog-items-column {
    width: calc(30% + 10px);
    margin-left: -7px;
    margin-right: -7px;
}
.blog-items-column.column-1{
    width: 40%;
}
.blog-items-column.column-3{
    padding-top: 70px;
}
.blog-item{
    padding: 30px 30px 25px;
    border-radius: 5px;
    transition: all .4s;
}
.blog-item:hover{
    box-shadow: 0px 21px 61px rgba(106, 97, 97, 0.25);
}
.blog-item .visual-inner {
    padding-top: 8px;
}
.blog-item .date-published {
    text-align: right;
    color: #7E7E7E;
    font-size: 14px;
}
.blog-item .blog-title {
    white-space: normal;
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 120%;
    color: #000000;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;    
}
.blog-item:hover .blog-title {
    color: #F74F18;
}
.blog-item .blog-content p {
    font-size: 17px;
    line-height: 1.4;
    color: #505050;
    font-family: 'NewYorkSmall', serif;
}
.blog-item .post-thumb a {
    display: block;
}
.blog-item .post-thumb img {
    width: 100%;
}
.blog-item .post-thumb video {
    width: 100%;
}
/* Hide Play button + controls on iOS */
.blog-item .post-thumb video::-webkit-media-controls {
    display:none !important;
}
.front-page-multimedia-container{
    background: #1D1D1D;
    margin-top: 40px;
}
.front-page-multimedia-container > .row {
    justify-content: center;
}
.home .front-page-multimedia-section {
    padding: 70px 55px;
    color: #FFFFFF;
    position: relative;
}
.front-page-multimedia-section .multimedia-section-title a{
    padding-left: 0;
    margin-bottom: 20px;
    color: #FFFFFF;
}
.front-page-multimedia-section .multimedia-section-title i {
    filter: invert(100%);
}
.front-page-multimedia-section .multimedia-section-title a:before{
    display: none;
}
.front-page-multimedia-section .blog-item{
    padding: 10px 0 15px;
}
.front-page-multimedia-section .blog-item:hover {
    box-shadow:  none;
}
.front-page-multimedia-section .blog-item .blog-title > a,
.front-page-multimedia-section .blog-item .blog-content p {
    color: #FFFFFF;
}
.front-page-multimedia-section .blog-item .blog-content p{
    display: none;
}
.front-page-multimedia-section .blog-item .blog-title > a:hover {
    color: #EE6437;
}


@media all and (max-width: 1700px) {
    .home .blog-section-title a{
        font-size: 48px;
    }
    .blog-item .blog-title {
        font-size: 28px;
    }
}
@media all and (max-width: 1600px) {
    .home .blog-section-title a{
        font-size: 42px;
    }
    .blog-item .blog-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
}
@media all and (max-width: 1500px) {
    .blog-items-column{
        margin-left: -5px;
        margin-right: -5px;
    }
    .blog-item {
        padding: 24px 24px 20px;
    }
    .blog-item .blog-title {
        font-size: 24px;
    }
    .front-page-multimedia-section .blog-item .blog-title{
        margin-bottom: 15px;
    }
}
@media all and (max-width: 1400px) {
    .home .blog-items-column.column-1{
        width: 55%;
    }
    .home .blog-items-column.column-2{
        width: 45%;
    }    
    .home .blog-items-column.column-3{
        display: none;
    }
    .blog-item .blog-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
}
@media all and (max-width: 1200px) {
    .home .blog-area{
        padding-left: 45px;
    }
    .home .blog-section-title a:before{
        width: 34px;
        left: -34px;
    }
    .blog-item .blog-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
}
@media all and (max-width: 1000px) {
    .home .main-content-container .row {
        flex-direction: column-reverse;
    }
    .main-content {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .sidebar {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media all and (max-width: 900px) {
    .home .blog-area {
        padding-left: 35px;
    }
    .home .blog-section-title a{
        font-size: 32px;
    }
    .home .blog-section-title a:before{
        width: 32px;
        left: -32px;
    }    
    .blog-item {
        padding: 15px 15px 15px;
    }
    .front-page-multimedia-container {
        width: 100%;
        max-width: 100%;
    }
    .front-page-multimedia-section .multimedia-section-title a{
        margin-bottom: 10px;
    }
}
@media all and (max-width: 768px) {
    .blog-items-column {
        margin-left: 0;
        margin-right: 0;
        width: 100% !important;
    }
    .home .blog-section-title{
        margin-top: 40px;
    }
    .front-page-multimedia-section .multimedia-section-title{
        margin-top: 0;
    }
}
@media all and (max-width: 600px) {
    .blog-item .blog-title{
        margin-bottom: 5px;
        font-size: 24px;
    }
    .blog-item .date-published{
        font-size: 12px;
    }
    .home .front-page-multimedia-section{
        padding: 70px 0;
        padding-left: 30px;
        
    }
}

@media all and (max-width: 476px) {
    .home .blog-area{
        padding-left: 0;
    }
    .home .blog-section-title{
        padding-left: 32px;
        padding-bottom: 10px;
    }
    .blog-items-column{
        margin-left: 0;
        margin-right: 0;
    }
    .blog-item{
        padding: 10px 13px 15px;
    }
    .blog-item .blog-title {
        font-size: 20px;
    }
    .front-page-multimedia-container > .row > .col-12{
        padding: 0 3px;
    }
    .front-page-multimedia-section .multimedia-section-title{
        padding-left: 0;
        padding-bottom: 0;
    }
}

/*----------------------------------------
    4. Right Sidbar (Front Page and common)
----------------------------------------*/
.right-sidebar {
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
    max-width: 22%;
    margin-bottom: 25px;
    position: relative;
    font-family: 'NewYorkLarge', sans-serif;
}
.right-sidebar-sticky{
    right: 0;
    top: 0;
    width: 100%;
}
.home .right-sidebar-sticky{
    background: #F4F2ED;
}
.right-sidebar-sticky.sticky{
    position: fixed !important;
}
.right-sidebar-sticky .sidebar-inner{
    padding-left: 65px;
    padding-right: 75px;
    padding-top: 50px;
    padding-bottom: 60px;
}
.right-sidebar-sticky .blog-section-title a {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 5px;
    padding-left: 0;
}
.right-sidebar-sticky .blog-section-title a i {
    width: 16px;
    top: 50%;
    margin-left: 20px;
}
.right-sidebar-sticky .blog-section-title a:before {
    display: none;
}
.right-sidebar-sticky .sidebar-inner-image {
    margin-bottom: 17px;
}
.right-sidebar-sticky .sidebar-inner-item {
    border-bottom: 1px solid #E2E2E2;
    padding: 22px 0;
}
.right-sidebar-sticky .sidebar-inner-item-details {
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #7E7E7E;    
    margin-bottom: 10px;
}
.right-sidebar-sticky .sidebar-inner-item-details .date {
    font-size: 13px;
}
.right-sidebar-sticky .sidebar-inner-item-title a {
    font-family: 'NewYorkSmall', sans-serif;
    font-size: 22px;
    line-height: 1.3;
    color: #000000;
}
.right-sidebar-sticky .sidebar-inner-item-title a:hover {
    color: #F74F18;
}

@media all and (max-height: 800px) {
    .right-sidebar-sticky .sidebar-inner-item:nth-child(4) {
        display: none;
    }
}
@media all and (max-width: 1700px) {
    .right-sidebar-sticky .sidebar-inner{
        padding-right: 50px;
        padding-left: 40px;
        padding-top: 40px;
        padding-bottom: 50px;
    }
}
@media all and (max-width: 1500px) {
    .right-sidebar-sticky .sidebar-inner {
        padding-right: 40px;
    }
    .right-sidebar-sticky .sidebar-inner-image {
        margin-bottom: 10px;
    }
    .right-sidebar-sticky .sidebar-inner-item {
        padding: 20px 0;
    }
    .right-sidebar-sticky .sidebar-inner-item-title a {
        font-size: 20px;
    }
    .right-sidebar-sticky .sidebar-inner-item-details {
        font-size: 11px;
    }
}
@media all and (max-width: 1400px) {
    .right-sidebar-sticky .sidebar-inner-item-title a {
        font-size: 18px;
    }
}
@media all and (max-width: 1000px) {
    .right-sidebar {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .right-sidebar-sticky{
        position: relative;
        right: auto;
        top: auto;
    }
    .right-sidebar-sticky .sidebar-inner .blog-section-title{
        margin-top: 0;
    }
    .right-sidebar-sticky .sidebar-inner {
        padding-left: 50px;
        padding-right: 55px;
    }
    .right-sidebar .sidebar-inner-image {
        display: none;
    }
    .right-sidebar-sticky .sidebar-inner-item-details {
        font-size: 12px;
    }
    .right-sidebar-sticky .sidebar-inner-item-title a {
        font-size: 20px;
    }
}
@media all and (max-width: 476px) {
    .right-sidebar-sticky .sidebar-inner .blog-section-title {
        padding-left: 0;
        padding-bottom: 0;
    }
}
@media all and (max-width: 376px) {
    .right-sidebar-sticky .sidebar-inner {
        padding-left: 40px;
        padding-right: 45px;
    }
}


/*----------------------------------------
    5. Content top (back, breadcrumbs)
----------------------------------------*/
.content-top {
    display: flex;
    align-items: center;
    position: relative;
    padding: 35px 45px 0;
    width: 100%;
}
.content-top .go-back {
    width: 22%;
    z-index: 1000;
}
.content-top .go-back a {
    color: #505050;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: bold;
}
.content-top .go-back a:hover{
    color: #F74F18;
}
.content-top .go-back a i {
    padding-right: 23px;
}
.content-top .go-back .icon-mobile {
    display: none;
}
.content-top .breadcrumbs {
    color: #EE6437;
    font-size: 14px;
    line-height: 16px;
    width: 56%;
}
.content-top .breadcrumbs .separator {
    color: rgba(0, 0, 0, 0.2);
    padding: 0 30px;
}
.content-top .breadcrumbs a {
    color: #505050;
}
.content-top .breadcrumbs a:hover{
    color: #EE6437;
}
.content-top .date-published {
    width: 22%;
    text-align: right;
    font-size: 14px;
}

@media all and (max-width: 1000px) {
    .content-top {
        padding: 25px 0 0;
    }
    .content-top .breadcrumbs .separator {
        padding: 0 15px;
    }
}
@media all and (max-width: 600px) {
    .content-top .go-back {
        width: 12%;
    }
    .content-top .go-back span {
        display: none;
    }
    .content-top.no-breadcrumbs {
        padding: 0;
    }
    .content-top.no-breadcrumbs .go-back {
        position: absolute;
        top: 36px;
        left: 0;
        transform: translateY(-50%);
    }
    .content-top .go-back .icon-mobile {
        display: inline-block
    }
    .content-top .go-back .icon-desktop {
        display: none;
    }
}

@media all and (max-width: 450px) {
    .content-top.no-breadcrumbs .go-back {
        top: 32px;
    }
}

/*----------------------------------------
    6. Left sidebar
----------------------------------------*/
.left-sidebar .social-share-container {
    display: flex;    
    flex-direction: column;
}
.left-sidebar .social-share {
    padding-left: 45px;
    padding-right: 15px;    
    position: sticky;
    top: 124px;
}
.social-share-mobile .social-share-container {
    display: flex;
}
.left-sidebar .social-share-heading {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;    
    margin-bottom: 20px;
    max-width: 130px;
    font-family: 'NewYorkSmall', serif;
}
.left-sidebar .social-share-container a {
    margin-bottom: 16px;
}
.social-share-container a {
    display: block;
    color: #7E7E7E;
    font-size: 17px;
}
.social-share-container a:hover {
    color: #F74F18;
}

/*----------------------------------------
    7. Category page
----------------------------------------*/
.page-category{
    padding-bottom: 60px;
}
.page-category .category-title .h1 {
    font-size: 52px;
    margin-bottom: 40px;
}
.page-category .blog-items-container {
    max-width: 1580px;
    margin: 0 auto;
    justify-content: center;
}
.page-category .blog-items-column{
    width: 30%;
}
.page-category .blog-items-column.column-2{
    width: 40%;
}
.page-category .blog-items-column.column-3 {
    padding-top: 0;
}

/* Category with subcategories  */
.subcategory-blog-content{
    padding-top: 20px;
}
.subcategory-blog-content .blog-section-title a{
    font-size: 38px;
    padding: 5px;
    padding-left: 30px;
    margin-top: 35px;
    padding-right: 10px;
}
.subcategory-blog-content .blog-items-container {
    margin-top: -20px;
}

/* Pagination  */
.loadmore {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 35px;
}
.navigation.pagination .screen-reader-text {
    display: none;
}
.loadmore span::after {
    display: none;
}

.loadmore a, .loadmore span {
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    color: #7E7E7E;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 42px;
    width: 42px;
    height: 42px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    background-color: #fff;
    margin: 0 8px;
}
.loadmore a:hover,
.loadmore span.current {
    color: #fff;
    background-color: #F74F18;
}
.loadmore a.next,
.loadmore a.prev {
    font-size: 12px;
}

@media all and (max-width: 1400px) {
    .subcategory-blog-content .blog-section-title a {
        font-size: 32px;
        margin-top: 35px;
    }
}
@media all and (max-width: 1100px) {
    .page-category .category-title .h1 {
        font-size: 42px;
    }
    .page-category .blog-items-column{
        width: 50%;
    }
    .page-category .blog-items-column.column-2{
        width: 50%;
    }
    .page-category .blog-items-column.column-3{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .page-category .blog-items-column.column-3 .blog-item{
        width: 50%;
    }
    .subcategory-blog-content .blog-section-title a {
        font-size: 30px;
        margin-top: 30px;
    }    
}
@media all and (max-width: 768px) {
    .subcategory-blog-content .blog-section-title a {
        padding-left: 15px;
        margin-top: 0px;
    }        
    .page-category .blog-items-container {
        padding: 0 60px;
    }    
    .page-category .blog-items-column.column-3 .blog-item{
        width: 100%;
    }
    .subcategory-blog-content{
        padding-top: 0;
    }
    .subcategory-blog-content .blog-items-container {
        margin-top: 0;
    }
}
@media all and (max-width: 600px) {
    .page-category .category-title .h1 {
        margin-top: 14px;
        margin-bottom: 10px;
    }
    .page-category .blog-items-container {
        padding: 0 15px;
    }    
    .subcategory-blog-content .blog-section-title {
        text-align: center;
        margin-top: 10px;
    }
    .subcategory-blog-content .blog-section-title a{
        padding-left: 5px;
        padding-right: 5px;
        font-size: 28px;
        margin-bottom: 10px;
    }
    .subcategory-blog-content .blog-section-title a i {
        width: 16px;
    }
    .subcategory-blog-content .blog-items-container {
        margin-top: 20px;
    }
}
@media all and (max-width: 450px) {
    .page-category .category-title .h1 {
        font-size: 32px;
    }
    .page-category .blog-items-container {
        padding: 0;
        margin-top: 0
    }        
    .subcategory-blog-content .blog-section-title a{
        font-size: 24px;
    }    
    .loadmore a, .loadmore span {
        margin: 2px 4px;
    }
}


/*----------------------------------------
    8. Belarus Review Daily category page
----------------------------------------*/
.category-belarus-review{
    padding-bottom: 70px;
}
.category-belarus-review .h1 {
    margin-bottom: 0;
    font-size: 52px;
}
.category-belarus-review .left-sidebar {
    padding-left: 15px;
}
.category-belarus-review .right-sidebar{
    padding-right: 15px;
}
.category-belarus-review .left-sidebar,
.category-belarus-review .right-sidebar {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.category-belarus-review .main-content {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}
.belarus-review-items-container{
    margin-top: 70px;
}
.belarus-review-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #E2E2E2;
    margin-bottom: 50px;
}
.belarus-review-item .post-info {
    display: flex;
}
.belarus-review-item .post-date {
    width: 110px;
    height: 160px;
    padding: 20px 15px 30px;
    margin-right: 50px;    
    border: 1px solid #ECECEC;
    box-sizing: border-box;
    border-radius: 9px;
    font-family: 'NewYorkSmall', serif;
    line-height: 1;
    text-align: center;
    flex-shrink: 0;
}
.belarus-review-item .post-date .day {
    color: #505050;
    font-size: 60px;
    line-height: 1;
}
.belarus-review-item .post-date .month {
    font-size: 13px;
    text-transform: capitalize;
    color: #7E7E7E;
    line-height: 1.4;
}
.belarus-review-item .post-date .year {
    color: #7E7E7E;
    font-size: 29px;
}
.belarus-review-item .post-thumb {
    height: 160px;
    margin-right: 40px;
    flex-shrink: 0;
}
.belarus-review-item .post-thumb img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.belarus-review-item .post-exerpt {
    font-family: 'NewYorkSmall', serif;
    color: #505050;
    font-size: 16px;
    line-height: 1.2;    
    margin-right: 45px;
    padding-left: 20px;
}
.belarus-review-item .post-exerpt ul {
    list-style: disc;
    font-weight: 600;
    text-transform: capitalize;
}
.belarus-review-item .post-exerpt ul li {
    margin-bottom: 10px;
}
.belarus-review-item .post-exerpt .dots {
    margin-top: -10px;
}
.belarus-review-item .post-link {
    display: flex;
    align-items: center;
    justify-self: flex-end;
}
.belarus-review-item .post-link a {
    display: block;
    width: 200px;
    height: 40px;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #F74F18;
    color: #7E7E7E;
    letter-spacing: -0.015em;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    padding: 11px;
}
.belarus-review-item .post-link a:hover{
    background: #F74F18;
    color: #FFFFFF;
}
.category-belarus-review .loadmore {
    margin-top: 60px;
}
@media all and (max-width: 1750px) {
    .category-belarus-review .left-sidebar,
    .category-belarus-review .right-sidebar {
        -ms-flex: 0 0 15%;
        flex: 0 0 15%;
        max-width: 15%;
    }
    .category-belarus-review .main-content {
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        max-width: 70%;
    }
}
@media all and (max-width: 1600px) {
    .belarus-review-item .post-date {
        margin-right: 45px;
    }
    .belarus-review-item .post-thumb {
        margin-right: 35px;
    }
    .belarus-review-item .post-exerpt ul li:nth-child(4) {
        display: none;
    }
    .belarus-review-item .post-link a {
        width: 160px;
    }
}
@media all and (max-width: 1400px) {
    .category-belarus-review .right-sidebar {
        display: none;
    }
    .category-belarus-review .main-content {
        -ms-flex: 0 0 85%;
        flex: 0 0 85%;
        max-width: 85%;
    }
    .belarus-review-items-container {
        padding-right: 60px;
    }
    .belarus-review-item .post-exerpt {
        font-size: 15px;
    }
}
@media all and (max-width: 1100px) {
    .category-belarus-review .left-sidebar {
        display: none;
    }
    .category-belarus-review .main-content {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .belarus-review-items-container {
        padding-right: 30px;
        padding-left: 30px;
        margin-top: 50px;
    }
    .belarus-review-item .post-date {
        margin-right: 40px;
    }
    .belarus-review-item .post-link a {
        width: 200px;
    }
}
@media all and (max-width: 1000px) {
    .belarus-review-item .post-thumb {
        display: none;
    }    
    .belarus-review-item .post-date{
        margin-right: 30px;
    }
}
@media all and (max-width: 768px) {
    .belarus-review-item {
        flex-wrap: wrap;
        border: 1px solid #ECECEC;
        border-radius: 9px;
        padding: 20px 20px 12px;
        margin-bottom: 35px;
    }
    .belarus-review-item .post-date {
        border: none;
        border-radius: 0;
        border-right: 1px solid #CCCCCC;
        height: 110px;
        padding: 0;
        padding-right: 20px;
        margin-right: 20px;
        width: auto;
    }
    .belarus-review-item .post-link {
        width: 100%;
        justify-content: center;
        margin-top: 24px;
    }
    .belarus-review-item .post-exerpt {
        margin-right: 0;
    }
}
@media all and (max-width: 600px) {
    .category-belarus-review {
        padding-bottom: 50px;
    }
    .category-belarus-review .h1 {
        font-size: 32px;
        margin-bottom: 0;
    }
    .belarus-review-items-container {
        padding-right: 15px;
        padding-left: 15px;
        margin-top: 25px;
    }
    .belarus-review-item .post-exerpt {
        font-size: 12px;
    }
}
@media all and (max-width: 400px) {
    .belarus-review-item .post-date {
        padding-right: 15px;
        margin-right: 15px;
    }
    .belarus-review-item .post-exerpt {
        font-size: 11px;
    }
}



/*----------------------------------------
    9. Article page
----------------------------------------*/
.blog-page .content-top {
    margin-bottom: 75px;
}
.blog-page .content-top .go-back {
    width: calc(25% - 30px);
}
.blog-page .content-top .breadcrumbs {
    width: calc(50% + 30px);
}
.blog-page .content-top .date-published {
    width: 25%;
}

.blog-page .left-sidebar {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-top: 10px;
}

.blog-page .right-sidebar {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.blog-page .main-content {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.blog-page .content-title h1 {
    margin-top: 0;
    font-size: 52px;
    line-height: 1.15;
    position: relative;
}
.blog-page .content-title h1:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: transparent;
    left: 0;
    bottom: 20px;
    z-index: -1;
}
.blog-page .content-title .main-text {
    background: #FFFFFF;
}
.blog-page .content-author {
    font-style: italic;
    font-size: 16px;
    color: #7E7E7E;
}
.blog-page .content-image {
    margin: 40px 0 15px;
}
.blog-page .content-image-author{
    text-align: right;
    font-size: 16px;
    color: #7E7E7E;
    margin-bottom: 20px;
}
.blog-page .main-content {
    font-family: 'NewYorkSmall', serif;
}
.blog-page .blog-content,
.blog-page .blog-content p {
    color: #0C0C0C;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Raleway', sans-serif;
}
.blog-page .blog-content h2 {
    text-align: center;
    color: #000;
    margin-bottom: 30px;
    margin-top: 50px;
}
.blog-page .blog-content .wp-video {
    margin-bottom: 30px;
}

.blog-content ul li, 
.blog-content ol li {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 20px;
    position: relative;
}
.blog-content ul, .blog-content ol {
    padding-left: 20px;
}
.blog-content ul li::before {
    content: "\f0da";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: #ea000d;
    position: absolute;
    top: 6px;
    left: -20px;
}
.blog-content strong {
    font-weight: 900;
}
.blog-content p a, 
.blog-content ul a, 
.blog-content ol a, 
.blog-content h2 a, 
.blog-content h3 a, 
.blog-content h4 a, 
.blog-content h5 a, 
.blog-content h6 a {
    color: #ea000d;
}
.blog-content p a i.fas, 
.blog-content ul a i.fas, 
.blog-content ol a i.fas, 
.blog-content h2 a i.fas, 
.blog-content h3 a i.fas, 
.blog-content h4 a i.fas, 
.blog-content h5 a i.fas, 
.blog-content h6 a i.fas {
    font-size: 10px;
    position: relative;
    top: -5px;
    padding-left: 3px;
}
.blog-content em ~ img {
    display: block;
}

.blog-page .blog-content blockquote
{
    padding: 60px 10px 30px;
    position: relative;
    border: none;
    font-family: "Font Awesome 5 Free";
-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-variant: normal;
    text-rendering: auto;   
    font-weight: 900;
    line-height: 1;
}
.blog-page .blog-content blockquote p 
{
    font-size: 22px;
    line-height: 35px;
    text-align: center;
    font-weight: 500;
    color:#000;
}
.blog-content blockquote:before 
{
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  content: "\f10d";
  font-size: 100px;
  color: rgba(171, 171, 171,0.2);
   
}
.blog-content blockquote::after 
{
    content: "";
    top: 20px;
    left: 50%;
    margin-left: -100px;
    position: absolute;
    border-bottom: 3px solid #ea000d;
    height: 3px;
    width: 200px;
}

.blog-page .mobile-bottom-meta {
    display: none;
}
.blog-page .support-us {
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 7px;  
    padding: 18px 32px 16px 24px;  
    margin-top: 30px;
    width: auto;
}
.blog-page .support-button a {
    display: block;
    background: #F74F18;
    border-radius: 6px;
    text-align: center;
    letter-spacing: -0.015em;
    font-size: 15px;
    line-height: 17px;
    color: #FFFFFF;
    width: 200px;
    height: 40px;
    padding: 11px 30px;
    margin-left: 55px;
    font-family: 'Raleway', sans-serif;
}
.blog-page .support-us .copyright-article-logo {
    margin: 0;
    max-width: 320px;
}

.blog-page .right-sidebar {
    padding-left: 70px;
}
.blog-page .right-sidebar-sticky .sidebar-inner {
    padding-top: 0px;
    padding-bottom: 0;
}
.blog-page .right-sidebar-sticky .blog-section-title a {
    margin-bottom: 15px;
}
.blog-page .right-sidebar-sticky .sidebar-inner-image {
    margin-bottom: 8px;
}
.blog-page .blog-area {
   padding-top: 80px;
   padding-bottom: 60px; 
}
.blog-area .blog-area-title {
    padding-left: 20px;
    font-size: 52px;
    margin-bottom: 30px;
    margin-top: 0;
}
.blog-area .blog-area-title a {
    color: #000;
}
.blog-area .swiper {
    padding-bottom: 40px;
}

.blog-area .swiper-slide .blog-item {
    padding: 20px;
}

.blog-page .monitoring-content {
    margin-bottom: 60px;
}
.blog-page .monitoring-list {
    margin-top: 40px;
    margin-bottom: 60px;
}
.blog-page .belarus-review-subscription {
    margin-top: 80px;
}

@media all and (max-width: 1600px)  {
    .blog-page .content-top {
        margin-bottom: 65px;
    }
    .blog-page .content-top .go-back {
        width: calc(22% - 30px);;
    }
    .blog-page .content-top .breadcrumbs {
        width: calc(56% + 30px);
    }
    .blog-page .content-top .date-published {
        width: 22%;
    }
    .blog-page .left-sidebar {
        -ms-flex: 0 0 22%;
        flex: 0 0 22%;
        max-width: 22%;
    }
    .blog-page .right-sidebar {
        -ms-flex: 0 0 22%;
        flex: 0 0 22%;
        max-width: 22%;
    }
    .blog-page .main-content {
        -ms-flex: 0 0 56%;
        flex: 0 0 56%;
        max-width: 56%;
    }
    .blog-page .content-title h1 {
        font-size: 50px;
    }
    .blog-page .right-sidebar {
        padding-left: 30px;
    }
    .blog-area .blog-area-title {
        font-size: 52px;
    }
}

@media all and (max-width: 1450px) {
    .blog-page .content-top {
        margin-bottom: 50px;
    }
    .blog-page .content-top .go-back {
        width: calc(20% - 30px);
    }
    .blog-page .left-sidebar {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .blog-page .right-sidebar {
        -ms-flex: 0 0 24%;
        flex: 0 0 24%;
        max-width: 24%;
    }    
    .blog-page .content-title h1 {
        font-size: 48px;
    }
    .blog-page .right-sidebar-sticky .blog-section-title a {
        font-size: 13px;
    }    
    .blog-page .right-sidebar-sticky .sidebar-inner-item-details {
        font-size: 10px;
    }
    .blog-page .right-sidebar-sticky .sidebar-inner-item-title a {
        font-size: 17px;
    }
    .blog-area .blog-area-title {
        font-size: 48px;
        margin-bottom: 20px;
    }
}
@media all and (max-width: 1000px) {
    .blog-page .content-top {
        margin-bottom: 35px;
    }    
    .blog-page .content-top .go-back {
        width: calc(20% - 15px);
    }
    .blog-page .content-title h1 {
        font-size: 42px;
    }
    .blog-page .content-title h1:before {
        bottom: 16px;
        height: 2px;
    }
    .blog-page .right-sidebar {
        display: none;
    }
    .blog-page .main-content {
        -ms-flex: 0 0 78%;
        flex: 0 0 78%;
        max-width: 78%;
        padding-right: 15px;
    }
    .left-sidebar .social-share {
        padding-left: 15px;
    }
    .blog-page .blog-content h2 {
        font-size: 28px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .blog-page .content-image {
        margin: 30px 0 10px;
    }
    .blog-page .mobile-bottom-meta {
        display: flex;
        justify-content: space-between;
        padding-top: 10px;
        margin-top: 30px;
        border-top: 1px solid #ECECEC;
        font-size: 14px;
        color: #7E7E7E;
    }
    .blog-page .social-share-mobile {
        display: flex;
        align-items: center;
    }
    .blog-page .social-share-mobile a {
        margin-left: 16px;
        font-size: 16px;
        padding: 2px;
        color: #CCCCCC;
    }
    .blog-area .blog-area-title {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .blog-area .swiper-pagination {
        display: block;
    }
    .blog-page .belarus-review-subscription {
        margin-top: 50px;
    }
}
@media all and (max-width: 700px) {
    .blog-page .main-content {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px
    }
    .blog-page .left-sidebar {
        display: none;
    }
    .blog-page .content-top .date-published {
        display: none;
    }
    .blog-page .content-title h1 {
        font-size: 36px;
    }
    .blog-page .content-title h1:before {
        bottom: 15px;
    }
    .blog-page .blog-content blockquote p 
    {
        font-size:17px;
        line-height: 30px;
    }
}
@media all and (max-width: 500px) {
    .blog-page .content-top {
        margin-bottom: 15px;
    }   
    .blog-page .content-title h1 {
        font-size: 32px;
    }
    .blog-page .content-title h1:before {
        display: none;
    }
    .blog-page .content-image {
        margin: 10px 0;
    }
    .social-share-mobile .social-share-heading .extended {
        display: none;
    }
    .blog-page .support-us {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 25px 30px;
    }
    .blog-page .support-button a {
        margin-left: 0;
        margin-top: 15px;
    }
    .blog-area .swiper-slide .blog-item {
        padding: 15px 0;
    }
    .blog-area .blog-area-title{
        font-size: 32px;
        padding-left: 0;
    }
}
@media all and (max-width: 400px) {
    .blog-page .content-title h1 {
        font-size: 26px;
    }
    .blog-page .blog-content h2 {
        font-size: 24px;
        margin-top: 16px;
        margin-bottom: 10px;
    }
    .blog-area .blog-area-title{
        font-size: 26px;
        margin-bottom: 10px;
    }
}


/*----------------------------------------
    10. 404 Page
----------------------------------------*/
.page-404 .content-404 {
    font-family: 'NewYorkLarge', sans-serif;
    color: #505050;
    font-size: 182px;
    line-height: 1;
    margin-top: 60px;
}
.page-404 .not-found {
    font-size: 20px;
    color: #B2B2B2;
}
.page-404 .blog-area {
    padding-top: 85px;
}
@media all and (max-width: 500px) {
    .page-404 .content-404 {
        font-size: 120px;
    }
    .page-404 .not-found {
        font-size: 14px;
    }
}



/*----------------------------------------
    11. About Us Page
----------------------------------------*/
.about-us.blog-page .content-title h1 {
  text-align: center;
  margin-bottom: 55px;  
}
.about-us.blog-page .content-title h1:before {
    display: none;
}
.about-us p {
    color: #606060;
}
.about-us .subtitle_what_we_do {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 0;
    font-size: 14px;
    color: #7E7E7E;
}
.about-us h3 {
    text-align: center;
    color: #000000;
    margin-top: 35px;
}
.team-area {
    padding-top: 40px;
    padding-bottom: 80px;
    padding-left: 25px;
    padding-right: 25px;
}
.team-area .swiper {
    padding-bottom: 80px;
}
.about-us .team-area h3 {
    margin-top: 30px;
}
.about-us .team-area .team_subtitle_ru {
    margin-top: -15px;
    font-size: 14px;
    color: #7E7E7E;
}
.team-area .team-content p {
    color: #363030;
    font-family: 'NewYorkSmall', sans-serif;
    font-size: 17px;
    margin-bottom: 5px;
}
@media all and (max-width: 1000px) {
    .about-us .team-area h3 {
        margin-top: 20px
    }
}
@media all and (max-width: 800px) {
    .about-us.blog-page .content-title h1 {
        margin-bottom: 25px;
    }
    .team-area {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 40px;
    }

    .team-area .swiper {
        padding-bottom: 60px;
    }
    .about-us .subtitle_what_we_do {
        margin-top: -5px;
    }
}
@media all and (max-width: 400px) {
    .blog-page .blog-content h2{
        margin-top: 25px;
    }
    .about-us h3 {
        font-size: 20px;
        margin-top: 15px;
    }
}



/*----------------------------------------
    12. Search area
----------------------------------------*/
/*
#search input {
    border: 1px solid #ddd;
    border-radius: 0;
    color: #333;
    font-size: 14px;
    height: 38px;
    margin-right: 35px;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#search:hover input {
    opacity: 1;
    padding: 10px 16px;
    width: 260px;
}
#search:hover span i {
    color: #F74F18;
}
*/
.header-search .form-control:focus {
    border-color: #ddd;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 none;
}
.search-cover {
    position: fixed;
    z-index: 9999999;
    background-color: rgba(255, 255, 255, 0.8);
    top:0;
    left:0;
    width:100vw;
    height: 100vh;
}
.search-cover .search-cover-close {
    font-size: 30px;
    position: absolute;
    right:40px;
    top:40px;
    color:#000;
}
.search-cover .search-cover-close:hover {
    color: #F74F18;
}
.search-cover .search-container {
    width:860px;
    height:110px;
    position: absolute;
    top:50%;
    left:50%;
    margin-top:-55px;
    margin-left:-430px;
    background-color: #000;
    padding:30px;
    border-radius: 10px;
    text-align: center;
}
.search-cover .search-container input {
    display:inline-block;
    width:80%;
    height:50px;
    padding:10px;
    font-size:30px;
    line-height: 50px;
    font-weight: 300;
    color:#fff;
    background:#000;
    border:1px solid #000;
    outline: none;
    text-align: left;
}
.search-cover .search-container input::placeholder {
    color: #e5e5e5;
    font-size:30px;
    line-height: 50px;
}
.search-cover .search-container button {
    height:50px;
    width:50px;
    background:none;
    border:none;
    line-height: 50px;
    font-size:30px;
    color:#fff;
    outline: none;
    text-align: center;
    transition: 0.4s all;
}
.search-cover .search-container button:hover {
    color: #F74F18;
}

.page-search .blog-container {
    -ms-flex: 0 0 67%;
    flex: 0 0 67%;
    max-width: 67%;
}

.page-search .search-container {
    background: #F7F7F7;
    border-radius: 90px;
    margin-bottom: 15px;
    padding: 25px 50px;
    letter-spacing: 0.02em;
    color: #505050;
    font-size: 20px;
    position: relative;
    margin-top: -24px;
}
.page-search .search-container form {
    display: flex;
}
.page-search .search-container input {
    display: inline-block;
    width: calc(100% - 30px);
    height: auto;
    line-height: 24px;
    border: none;
    outline: none;
    text-align: left;
    background: #F7F7F7;
    padding: 0;
}
.page-search .search-container input::placeholder {
    color: #CCCCCC;
}
.page-search .search-container button {
    display: inline-block;
    width: 30px;
    outline: none;
    border: none;
    background: #F7F7F7;
    box-shadow: none;
    transition: all .3s;
}
.page-search .search-container button:hover {
    color: #F74F18;
}
.page-search .search-container button.hidden {
    display: none;
}
.page-search .search-results-count {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 45px;
    padding-left: 50px;
}
.page-search .belarus-review-item .post-exerpt a {
    color: #000000;
}
.page-search .belarus-review-item .post-exerpt a:hover {
    color: #F74F18;
}
.page-search .no-results {
    max-width: 430px;
    margin: 60px auto 80px;
}
.page-search .no-results p {
    margin-bottom: 0;
    font-family: 'NewYorkLarge', serif;
    color: #505050;
}
.page-search .no-results strong {
    color: #000000;
    text-transform: uppercase;
}
@media all and (max-width: 1400px) {
    .page-search .blog-container {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
}
@media all and (max-width: 1200px) {
    .page-search .blog-container {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }    
    .page-search .search-container {
        margin-top: 35px;
    }
}
@media (max-width: 992px) {
    .search-cover .search-container {
        width:90% !important;
        height:110px;
        position: absolute;
        top:50%;
        left:5% !important;
        margin-top:-55px;
        margin-left: 0 !important;
        background-color: #000;
        padding:30px;
        border-radius: 10px;
        text-align: center;
    }
    .search-cover .search-container input {
        display:inline-block;
        width:80%;
        height:50px;
        padding:10px 0 !important;
        font-size:15px !important;
        line-height: 50px;
        font-weight: 300;
        color:#fff;
        background:#000;
        border:1px solid #000;
        outline: none;
        text-align: left;
    }
    .search-cover .search-container button {
        height:50px;
        width:30px;
        background:none;
        border:none;
        line-height: 50px;
        font-size:20px;
        color:#fff;
        outline: none;
        text-align: center;
        transition: 0.4s all;
    }
    .search-cover .search-container input::placeholder {
        color: #e5e5e5;
        font-size:15px !important;
        line-height: 50px;
    }
    .search-h2 {
        display: block !important;
        font-size: 15px !important;
    }
}
@media (max-width: 600px) {
    .content-top.no-breadcrumbs .go-back {
        top: 55px;
    }
    .page-search .blog-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-search .search-container {
        margin-top: 20px;
        margin-left: 30px;
    }
    .page-search .search-container {
        padding: 20px 30px;
    }
    .page-search .search-results-count {
        padding-left: 30px;
    }
}


/*----------------------------------------
    13. Footer area
----------------------------------------*/

/*----- Footer middle ------*/

.footer-middle{
    background: #1D1D1D;
    background-color: #1D1D1D;
    color: #FFFFFF;
    padding: 120px 55px 50px;
}
.home .footer-middle{
    background: #FFFFFF;
    background-color: #FFFFFF;
    color: #505050;
}
.footer-icon{
    margin-bottom: 10px;
}
.footer-icon img {
    width: auto;
    height: 32px;
}

.middle-mgn p {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 25px;
    max-width: 420px;
    color: inherit;
}

.footer-socials{
    display: flex;
    clear: both;
}
.footer-socials-item {
    display: inline-block;
}
.footer-socials-item a {
    margin-right: 20px;
    height: 17px;
    display: inline-block;
    font-size: 17px;
    color: #FFFFFF;
    line-height: 1;
}
.footer-socials-item a img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.footer-socials-item a:hover {
    opacity: 0.6;
    color: #FFFFFF;
}
.home .footer-socials-item a,
.home .footer-socials-item a:hover {
    color:  #000000;
}

footer a {
    color:  #FFFFFF;
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    font-size: 16px;
}

footer a.active {
    color: #ee6437 !important;
}
footer a:hover {
    color: #EE6437 !important;
}

.footer-menu {
    padding-left: 20px;
    margin-top: 32px;
}
.footer-menu li {
    display: block;
    position: relative;
    float: none !important;
    margin-bottom: 12px;
}

.footer-projects-menu-title {
    height: 14px;
    margin-bottom: 18px;
    font-weight: 900;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.footer-projects-menu {
    padding-left: 12px;
}
.footer-projects-menu li {
    margin-bottom: 15px;
}

.home footer a {
    color: #505050;
}
.home .footer-projects-menu-title {
    color: #000000;
}


/*----- Footer bottom -------*/

.footer-bottom{
    background: #1D1D1D;
}
.copyright-text {
    display: block;
    overflow: hidden;
    padding: 30px 15px;
    color: rgba(255, 255, 255, 0.6);
}
.copyright-text.text-center > p {
    margin-bottom: 0;
    font-size: 16px;
}

@media all and (min-width: 1170px) and (max-width: 1450px) {
    .footer-middle{
        padding: 90px 30px 60px;
    }
}
@media all and (max-width: 1170px) {
    .footer-middle{
        padding: 90px 35px 60px;
    }    
}
@media all and (max-width: 991px) {
    .footer-middle{
        padding: 90px 15px 60px;
    }        
    .footer-icon{
        margin-bottom: 15px;
    }
    .middle-footer-menu{
        display: flex;
        justify-content: center;
    }
    .copyright-text {
        padding: 20px 15px;
    }
}
@media all and (max-width: 768px) {
    .footer-middle{
        padding: 55px 15px 45px;
    }        
    .footer-icon{
        text-align: center;
    }
    .footer-socials{
        justify-content: center;
        padding-bottom: 40px;
    }
    .home .footer-socials {
        border-bottom: 1px solid #E2E2E2;
    }
    .footer-socials-item a {
        margin: 0 10px;
    }
    .footer-menu,
    .footer-projects-menu {
        padding-left: 0;
        margin-top: 0;
    }
    .footer-projects-menu-title{
        margin-bottom: 24px;
    }
    .middle-footer-menu{
        padding-bottom: 26px;    
        margin-bottom: 24px    
    }
}
@media all and (max-width: 576px) {
    .footer-menu,
    .footer-projects-menu,
    .footer-menu li {
        text-align: center;
    }
    .footer-projects-menu-title {
        text-align: center;
    }
    .home .middle-footer-menu{
        border-bottom: 1px solid #E2E2E2;
    }
}
.img-both {
    float: left;
    display: inline-block;
}
.text-both {
    padding-left: 125px;
}
.img-text-both {
    border-bottom: 1px solid #3f3f3f;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.img-text-both:last-child {
    border-bottom: none;
}
.text-both > p {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}



/* ----- Scrollup ----- */

#toTop {
    text-align: center;
    bottom: 35px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 12px;
    z-index: 9999;
}
#toTop i {
    background-color: #7f7f7f;
    height: 40px;
    width: 40px;
    color: #fff;
    line-height: 40px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
#toTop i:hover {
    background-color: #ea000d;
    color: #fff;
}



/* --------------------
 14. Additional utils
 --------------------*/


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}


/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}


/* HTML5 display definitions
   ========================================================================== */


/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

body.body-loaded{
    opacity: 1;
}