/*Abstracts*/
/*Base*/

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

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

h1,
h2 {
  font-family: "DM Serif Display", serif;
  margin: 0;
}

p {
  line-height: 1.5;
  margin-bottom: 0;
}

/* Header style - start */
.header {
  position: relative;
}

.header--border {
  border-bottom: 4px solid #fb4b14;
}
.header--border .header-wrap {
  display: flex;
  width: 100%;
  max-width: 100%;
}
.header--border .header-wrap .menu-wrap {
  flex-shrink: 1;
  flex-grow: 1;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
}
.header--border .header-wrap .menu-wrap__top {
  border-bottom: 1px solid #c5c5c5;
  display: flex;
  justify-content: flex-end;
  padding: 10px 107px;
}
.header--border .header-wrap .menu-wrap__bottom {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 0 145px 0 0;
}
.header--border .header-wrap .logo-header {
  background-color: #fb4b14;
  padding: 15px 94px 16px 55px;
}

.custom-logo-link img {
  max-width: 159px;
  height: auto;
}

.hamburger-menu {
  position: absolute;
  right: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s linear;
  bottom: 4px;
  margin: 0;
  display: none;
}
.hamburger-menu li {
  list-style: none;
  position: absolute;
  left: 5%;
  width: 90%;
  height: 5px;
  transition: 0.3s;
  background: #fb4b14;
  transform: translateY(-50%) rotate(0);
  opacity: 1;
}
.hamburger-menu li:nth-child(1) {
  top: 20%;
}
.hamburger-menu li:nth-child(2) {
  top: 50%;
}
.hamburger-menu li:nth-child(3) {
  top: 80%;
}

.hamburger-menu.active li:nth-child(1) {
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active li:nth-child(2) {
  opacity: 0;
  transition: 0.3s;
}

.hamburger-menu.active li:nth-child(3) {
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}

#header-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  font-size: 14px;
  line-height: 17px;
  margin-left: 28px;
}
#header-menu li {
  margin: 0px 25px;
}
#header-menu li a {
  color: #19222c;
  text-decoration: none;
  position: relative;
  padding: 10px 0px;
}
#header-menu a::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fb4b14;
  display: block;
  bottom: 0px;
  position: absolute;
  transition: 0.3s ease-in;
}
#header-menu a:hover::after {
  width: 100%;
  transition: 0.3s ease-out;
}
#header-menu .current-menu-item a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fb4b14;
  display: block;
  bottom: 0px;
  position: absolute;
}

.social-media-icons {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-right: 30px;
}
.social-media-icons li {
  margin: 0 15px;
}

.social-media-icons li img {
  max-height: 16px;
}

.wpml-language {
  margin: 0 50px;
  padding: 0;
  list-style: none;
  display: none;
}
.wpml-language a {
  font-weight: 700;
  text-decoration: none;
  color: #000;
  position: relative;
}
.wpml-language a:after {
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #000;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
}

.form__search {
  max-width: 318px;
  width: 100%;
}
.form__search .search-form {
  position: relative;
}
.form__search .search-form label {
  width: 100%;
}
.form__search .search-form .search-field,
.form__search .search-form input[type="search"] {
  font-style: italic;
  border: none;
  border-radius: 0;
  width: 100%;
  padding-right: 40px;
  padding-left: 12px;
  outline: none;
}

.search-form label {
  position: relative;
}

.input-line::after {
  content: "";
  border-bottom: 1px solid #7a7a7a;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -1px;
  z-index: 1;
}

.input-line::before {
  content: "";
  border-bottom: 1px solid #fb4b14;
  position: absolute;
  left: 0;
  width: 0%;
  bottom: -1px;
  z-index: 2;
  transition: 0.4s linear;
}

.form__search .search-form input[type="search"]:focus + .input-line::before {
  content: "";
  width: 100%;
  transition: 0.4s linear;
}

.form__search .search-form .search-field::placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0.075px;
}
.form__search .search-form .search-submit {
  background: transparent;
  border: none;
  position: absolute;
  right: 12px;
  bottom: 7px;
  z-index: 9;
  padding: 0;
}

@media only screen and (max-width: 1600px) {
  .header--border .header-wrap .menu-wrap__top {
    padding: 10px 17px;
  }
  .header--border .header-wrap .menu-wrap__bottom {
    padding: 0 55px 0 0;
  }
}

@media only screen and (max-width: 1536px) {
  #header-menu li {
    margin: 0px 20px;
  }
  .form__search {
    max-width: 290px;
    width: 100%;
  }
}

@media only screen and (max-width: 1399px) {
  #header-menu {
    margin-left: 10px;
  }
  #header-menu li {
    margin: 0px 20px;
  }

  .menu-wrap__bottom {
    padding-right: 35px;
  }
  .menu-wrap__bottom .form__search {
    max-width: 250px;
  }

  .header--border .header-wrap .menu-wrap__top {
    padding: 10px 35px;
  }
  .header--border .header-wrap .menu-wrap__top .wpml-language {
    margin: 0px 15px;
  }
  .header--border .header-wrap .menu-wrap__top .social-media-icons {
    /* margin: 0px 35px; */
    padding: 0;
  }

  .header--border .header-wrap .menu-wrap__bottom {
    padding: 0px 40px 0 0;
  }
}
@media only screen and (max-width: 1366px) {
  .menu-wrap__bottom .form__search {
    max-width: 220px;
  }
}

@media only screen and (max-width: 1280px) {
  .header--border .header-wrap .menu-wrap__bottom .form__search {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .header--border .header-wrap .menu-wrap__bottom {
    padding-right: 0;
  }
  .header--border .header-wrap .menu-wrap__bottom .form__search {
    display: none;
  }
  #header-menu li {
    margin: 0px 15px;
  }
}
@media only screen and (max-width: 991px) {
  #header-menu {
    margin-left: 0px;
  }

  .header--border .header-wrap .logo-header {
    padding: 15px 50px 16px 25px;
  }

  .logo-header img {
    max-width: 125px;
    height: auto;
  }

  .hamburger-menu {
    right: 15px;
  }
}

@media only screen and (max-width: 880px) {
  .header--border .header-wrap .menu-wrap__top {
    padding: 10px 12px;
  }

  .header--border .header-wrap .menu-wrap__bottom {
    display: block;
  }

  .menu-wrap__mobile {
    position: fixed;
    left: 0;
    height: 100vh;
    width: 280px;
    background-color: #fb4b14;
    z-index: 9;
    display: block;
    transform: translateX(-100%);
    transition: 0.4s ease-in;
  }
  .menu-wrap__mobile nav {
    padding: 25px 0px;
  }

  .menu-wrap__mobile.active-menu {
    transform: translateX(0);
    transition: 0.4s ease-out;
  }

  .hamburger-menu {
    display: block;
  }

  #header-menu {
    flex-direction: column;
  }
  #header-menu li {
    margin: 20px 20px;
  }
  #header-menu li a {
    color: #fff;
  }
  #header-menu li a:after {
    background-color: #fff;
  }
  #header-menu .current-menu-item a::after {
    background-color: #fff;
  }

  .overlay-mobile.overlay-mobile__active {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    z-index: 2;
  }
}
@media only screen and (max-width: 575px) {
  .header--border .header-wrap .menu-wrap__top {
    display: none;
  }

  .hamburger-menu {
    bottom: 50%;
    transform: translateY(50%);
  }

  .logo-header img {
    max-width: 100px;
    height: auto;
  }
  .header--border .header-wrap .logo-header {
    padding: 10px 50px 11px 15px;
  }
}
/* Header style - end */
/* Front PAGE*/
/*Buttons*/
.btn {
  font-size: 14px;
  letter-spacing: 0.075px;

  padding: 4px 0px;
  text-transform: uppercase;
  background: transparent;

  border-radius: 0px;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.btn::after {
  content: "";
  width: 0%;
  border-bottom: 2px solid #fb4b14;
  display: block;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  bottom: 0;
}

.btn:hover::after {
  width: 100%;
  transition: 0.3s all;
}

.btn:hover {
  transition: 0.3s all;
  background: transparent;
  color: #000;
}

.btn-white {
  color: #fff;
}
.btn-white:hover {
  transition: 0.3s all;

  color: #fff;
}
.btn-white:hover::after {
  transition: 0.3s all;

  border-color: #fff;
}

.btn-orange:hover {
  color: #fb4b14;
}

.btn-news {
  text-transform: none;
  color: #000;
}
.btn-news:hover {
  color: #fb4b14;
}

.btn-news:hover::after {
  width: 100%;
}

.btn-file {
  border: 1px solid #000;
  padding: 3px 9px;
  display: inline-block;
  color: #000;
  border-radius: 37px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 600;
  transition: 0.4s ease-in;
  text-transform: uppercase;
}
.btn-file:hover {
  border-color: #fb4b14;
  color: #fb4b14;
  transition: 0.4s ease-out;
}

.btn-read {
  padding: 3px 0px;
  text-align: left;
  display: inline-block;
  color: #fb4b14;
  border-radius: 0px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.22;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.4s ease-in;
  position: relative;
}

.btn-read::after {
  content: "";
  width: 0%;
  border-bottom: 2px solid #fb4b14;
  display: block;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s all;
}

.btn-read:hover::after {
  width: 100%;
  transition: 0.3s all;
}

.btn-read:hover {
  border-color: #fb4b14;
  color: #fb4b14;
  background-color: transparent;
  transition: 0.4s ease-out;
}

.btn-related {
  padding: 3px 0px;
  display: inline-block;
  color: #020202;
  background-color: transparent;
  border-radius: 0px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.22;
  font-weight: 500;
  transition: 0.4s ease-in;
  position: relative;
}

.btn-related::after {
  content: "";
  width: 0%;
  border-bottom: 2px solid #fb4b14;
  display: block;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s all;
}

.btn-related:hover::after {
  width: 100%;
  transition: 0.3s all;
}

.btn-related:hover {
  border-color: #fb4b14;
  color: #fb4b14;
  background-color: transparent;
  transition: 0.4s ease-out;
}

.btn-form {
  border: none;
  background-color: transparent;
  display: inline-block;
  color: #fb4b14;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.075px;
  text-align: right;
  height: auto;
  max-width: 348px;
  width: 100%;
  transition: 0.4s ease-in;
  position: relative;
  padding: 5px 0px;
}

.contact-form__cf7 {
  text-align: right;
}

.form-button {
  position: relative;
  display: inline-block;
}

.form-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 2px solid #fb3b14;
  transition: 0.4s all;
}

.form-button:hover::after {
  width: 100%;
  transition: 0.4s all;
}

.btn-form:hover {
  transition: 0.4s ease-out;
  color: #fb3b14;
  background: transparent;
}

.page-title {
  /* background-color: #fcfcfc; */
  padding: 40px 0 25px 0;
  margin-bottom: 35px;
}
.page-title__wrap {
  padding: 0px;
}
.page-title__h1 {
  font-size: 42px;
  line-height: 1.22;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
.page-title__breadcrumbs {
  font-weight: 600;
}
.page-title--contact {
  margin-bottom: 0px;
}

.breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs li a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  line-height: 1.22;
  transition: 0.3s all;
}

.breadcrumbs li a:hover {
  color: #fb4b14;
  transition: 0.3s all;
}
.breadcrumbs__line {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.breadcrumbs__line::after {
  content: "";
  width: 20px;
  border-bottom: 2px solid #000000;
  display: block;
  margin: 0px 10px;
}

@media only screen and (max-width: 1399px) {
  .page-title__h1 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 1280px) {
  .page-title__h1 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 991px) {
  .page-title__wrap {
    padding: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .page-title__h1 {
    font-size: 30px;
  }
}

.btn--line,
.breadcrumbs li a,
.breadcrumbs li p {
  position: relative;
  padding-top: 3px;
  padding-bottom: 3px;
}

.btn--line::after,
.breadcrumbs li a::after,
.breadcrumbs li p::after {
  content: "";
  width: 0%;
  border-bottom: 2px solid #fb4b14;
  display: block;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  bottom: 0;
}

.btn--line:hover::after,
.breadcrumbs li a:hover::after {
  transition: 0.3s all;
  width: 100%;
}

.preloader-wrap {
  position: fixed;
  background-color: #fcfcfc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  z-index: 9;
  top: 0;
  left: 0;
  /* display: none; */
}

.preloader-wrap img {
  width: 100%;
  height: auto;
  max-width: 120px;
}

@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.preloader-wrap img {
  animation: zoom-in-out 1.4s ease infinite;
}

.active-divider a .active-dividerv2 {
  position: relative;
}

.active-divider a::after {
  content: "";
  background-color: #212529;
  width: 1px;
  height: 12px;
  display: block;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.active-dividerv2::after {
  content: "";
  background-color: #7a7a7a;
  width: 1px;
  height: 8px;
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.post-info li:nth-last-child(2) a::after {
  content: none;
}

.post-info:last-child .author.active-dividera::after {
  content: none;
}

.cli-tab-footer .wt-cli-privacy-accept-btn {
  background-color: #fb4b14;
  color: #ffffff;
  border-radius: 0;
}

.sidebar-box__list {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-color: #bbbbbb #e8e8e8;
  scrollbar-width: thin;
}

.about-sidebar .sidebar-box__list {
  overflow-y: auto;
}

.sidebar-box__list li {
  padding-right: 10px;
}
.sidebar-box__list::-webkit-scrollbar {
  width: 9px;
  border-radius: 5px;
}
.sidebar-box__list::-webkit-scrollbar-track {
  background: #e8e8e8;
}
.sidebar-box__list::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  border-radius: 5px;
}
.sidebar-box__list::-webkit-scrollbar-thumb:hover {
  background: #acacac;
}

.next.page-numbers,
.prev.page-numbers {
  position: relative;
}

.next.page-numbers::after,
.prev.page-numbers::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icons/arrow-pagination.svg");
  transition: 0.4s ease;
}

.next.page-numbers::after {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.prev.page-numbers::after {
  left: 0;
  transform: translateY(-50%);
}

.next.page-numbers:hover::after,
.prev.page-numbers:hover::after {
  filter: invert(35%) sepia(52%) saturate(3435%) hue-rotate(353deg)
    brightness(100%) contrast(98%);
  transition: 0.4s ease;
}

@media only screen and (max-width: 355px) {
  .publication-box,
  .publication-item {
    overflow: hidden;
  }
}

.search-mobile,
.search-mobile-menu,
.form__search--close {
  display: none;
  cursor: pointer;
}

.form__search--mobile {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .search-mobile {
    display: block;
  }

  .search-mobile img {
    max-width: 24px;
  }

  .form__search--close {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .form__search--close img {
    max-width: 20px;
  }

  .form__search.form__search--mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background-color: rgba(0, 0, 0, 0.75);
    max-width: 100%;
    z-index: 999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: all 0.4s ease;
  }

  .form__search.form__search--mobile.active {
    transform: translateY(0);
  }

  .form__search .search-form .search-field,
  .form__search .search-form input[type="search"] {
    background: transparent;
    color: #fff;
    padding-bottom: 5px;
  }

  .form__search .search-form .search-field,
  .form__search .search-form input[type="search"]::placeholder {
    color: #fff;
  }

  .form__search .search-form .search-submit img {
    filter: invert(100) brightness(100);
  }

  .input-line::after {
    border-color: #fff;
  }
}

@media only screen and (max-width: 1200px) {
  .search-mobile {
    padding-right: 45px;
  }
}

@media only screen and (max-width: 991px) {
  .search-mobile img {
    max-width: 22px;
  }
}

@media only screen and (max-width: 880px) {
  .search-mobile {
    display: none;
  }
  .search-mobile-menu {
    display: block;
    position: absolute;
    bottom: 9px;
    right: 70px;
  }

  .search-mobile-menu img {
    max-width: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .search-mobile-menu {
    bottom: 50%;
    transform: translateY(50%);
  }
}
