/* 
----------------------------------------------
- Author: VLNK
- Version: 4.0 
- Site: GoSlovakia.INFO
----------------------------------------------
*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root {
  --go_blue: rgb(54, 54, 255);
  --reddd: rgb(171, 1, 1);
  --reddd_hover: rgb(200, 14, 14);
}

html,
body {
  overflow-x: hidden !important;
}

body {
  background-color: white;
  font-family: "Montserrat", sans-serif;
  max-width: 1450px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

ul {
    margin: 1.5rem 0;
    padding: 0.5rem 0.7rem;
    background: rgba(0, 0, 0, 0.025);
    
}

ul li,
ul ol {
    position: relative;
    list-style: none;
    padding-left: 1rem;
    margin: 0.45rem 0;
    line-height: 1.7;
}

ul li::before,
ul ol::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 4px;
    height: 1.1em;
    border-radius: 999px;
    background: var(--reddd);
}

li, ol{ font-weight: 400; }
b, li, ol, strong { font-size: 16px; }
b, strong {font-weight: 600; color: #222; }

img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.desctop_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  background: #000;
  z-index: 9999;
}

.desctop_brand {
  color: white;
  font-size: 20px;
  font-weight: 800;
}

.desctop_brand > span {
  color: var(--go_blue);
}

.desctop_menu_items {
  text-align: center;
}

.desctop_menu_items > a {
  position: relative;
  color: white;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.desctop_menu_items > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--go_blue);
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.desctop_menu_items > a:hover::after {
  width: 100%;
}

.desctop_icons {
  text-align: right;
}
.desctop_icons a {
  color: #fff;
  margin: 0 0 0 20px;
  display: inline-flex;
  transition: 0.25s ease;
  transform: translateY(2px);
}

.desctop_icons a svg {
  width: 20px;
  height: 20px;
  transition: 0.25s ease;
}

.desctop_icons a:hover {
  transform: translateY(0px);
}

.mobile_menu {
  display: none !important;
}
.mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.mobile_left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.mobile_right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s ease;
}
.mobile_icon:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go_blue);
  transition: 0.3s ease;
}

.search_icon_mob {
  color: white;
}

.mobile_brand {
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 1.1px;
}

.mobile_brand span {
  color: var(--go_blue);
}

.mobile_hamb {
  width: 24px;
  height: 17px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.mobile_hamb span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}

.mobile_hamb span:nth-child(1) {
  top: 0;
}
.mobile_hamb span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
}
.mobile_hamb span:nth-child(3) {
  bottom: 0;
}

.mobile_panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  height: calc(100vh - 64px);
  background: #000;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9998;
}

.mobile_panel.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile_panel_scroll {
  height: 100%;
  overflow-y: auto;
  padding: 40px;
  display: flex;
  padding-left: 50px;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  padding-top: 50px;
}

.mobile_panel_scroll a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
  padding-top: 10px;
  letter-spacing: 1.1px;
}
.mobile_panel_scroll a:hover,
.mob_active {
  color: var(--go_blue) !important;
}

.mobile_panel_toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.mobile_panel_menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile_hamb span {
  transition: 0.3s ease;
}

.mobile_menu.open .mobile_hamb span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.mobile_menu.open .mobile_hamb span:nth-child(2) {
  opacity: 0;
}

.mobile_menu.open .mobile_hamb span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

.mobile_panel_social {
  display: flex;
  margin-top: -18px;
}

.mobile_panel_scroll > h3 {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 40px;
  color: #484848;
}

.mobile_panel_social > .mobile_icon {
  margin-right: 25px;
}
.mobile_panel_social > .mobile_icon > span {
  margin-right: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
}

.gs-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.gs-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gs-search-content {
  width: min(900px, 90%);
  transform: translateY(-30px);
  transition: 0.4s ease;
}

.gs-search-overlay.active .gs-search-content {
  transform: translateY(0);
}

.gs-search-title {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.gs-search-field {
  position: relative;
}

.gs-search-field svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
}

.gs-search-field input {
  width: 100%;
  height: 90px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  background: none;
  padding-left: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.3s;
}

.gs-search-field input:focus {
  border-color: var(--go_blue);
}

.gs-search-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.gs-search-btn {
  margin-top: 30px;
  height: 56px;
  padding: 0 30px;
  border: none;
  background: var(--go_blue);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
  transition: 0.25s;
}

.gs-search-btn:hover {
  transform: translateY(-2px);
}

.gs-search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border: none;
  background: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: 0.25s;
}

.gs-search-close:hover {
  transform: rotate(90deg);
}

.kategories_ox {
  display: flex;
  align-items: center;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 0 20px #00000025;
  justify-content: center;
  text-align: center;
  gap: 10px;
  z-index: 9 !important;
  background: #fff;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 5px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.kategories_ox a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 16px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.1px;
  font-weight: 600;
  transition: 0.25s ease;
}

.kategories_ox a:hover {
  color: var(--go_blue);
  transform: translateY(-2px);
}

.kategories_ox::-webkit-scrollbar {
  display: none;
}

.desctop_menu,
.mobile_menu {
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.desctop_menu.menu-hidden,
.mobile_menu.menu-hidden {
  transform: translateY(-100%);
}

.kategories_ox {
  transition:
    top 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s ease;
}

.kategories_ox.menu-hidden {
  top: 0;
}

.news-hero {
  max-width: 1450px;
  margin: 115px auto 0;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;

  height: 520px;
  align-items: stretch;
}

.news-hero__main {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.news-hero__main-media {
  position: absolute;
  inset: 0;
}

.news-hero__main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-hero__main:hover img {
  transform: scale(1.05);
}

.news-hero__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
}

.news-hero__tag {
  position: absolute;
  top: 18px;
  left: 18px;

  background: rgb(54, 54, 255);
  color: #fff;

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;

  padding: 6px 12px;
}

.news-hero__content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.news-hero__title {
  margin: 0;
}

.news-hero__title a {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.news-hero__date {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-hero__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
}

.news-card {
  display: flex;
  gap: 15px;
  overflow: hidden;
  height: 100%;
}

.news-card__media {
  flex: 0 0 230px;
  height: 100%;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover img {
  transform: scale(1.06);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.news-card__tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 10px;
  width: max-content;
  background: var(--reddd);
  transition: 0.3s ease;
}

.news-card__tag:hover {
  background: var(--reddd_hover);
  transition: 0.3s ease;
}

.news-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.news-card__title a {
  color: #000;
  transition: 0.3s ease;
}
.news-card__title:hover a {
  color: var(--reddd_hover);
  transition: 0.3s ease;
}

.news-card__date {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
}

.gosec_title {
  font-size: 20px;
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  align-items: center;
  display: block;
  align-content: center;
}

.gosec_title i {
  color: #fff;
  font-size: 22px;
  padding: 7px 10px;
}

.posts_container_1 {
  display: block;
  max-width: 100%;
  padding-top: 30px;
}

.post2_block {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  height: 90%;
}

.post2_block > a {
  display: block;
  overflow: hidden;
}

.post2_block img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
    display: block;
  pointer-events: none;
  transition: 0.3s ease;
}

.post2_block:hover img {
  transform: scale(1.08);
  transition: 0.3s ease;
}

.post2_title {
  flex: 1;
}

.post2_title a h2 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  padding-top: 10px;
  transition: 0.3s ease;
}

.post2_block:hover > .post2_title a h2 {
  color: var(--reddd_hover);
  transition: 0.3s ease;
}

.post2_footer {
  display: block;
  margin-bottom: 20px;
  align-items: center;
}

.post2_tag a {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--reddd);
  padding: 5px 8px;
  transition: 0.3s ease;
}

.post2_tag a:hover {
  background: var(--reddd_hover);
  transition: 0.3s ease;
}

.post2_date {
  color: #676767;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  right: 0;
}




.post1_block > a {
  display: block;
  overflow: hidden;
}

.post1_block img {
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover;
    display: block;
  pointer-events: none;
  transition: 0.3s ease;
}

.post1_block:hover img {
  transform: scale(1.08);
  transition: 0.3s ease;
}

.post1_title a h2 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  padding-top: 10px;
  transition: 0.3s ease;
}

.post1_block:hover > .post1_title a h2 {
  color: var(--reddd_hover);
  transition: 0.3s ease;
}

.post1_block {
  position: relative;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post1_footer {
  margin-top: auto;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post1_date {
  color: #676767;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  position: static; /* убрать absolute */  
  padding: 5px 0;
}

.post1_tag a {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--reddd);
  padding: 5px 8px;
  transition: 0.3s ease;
}

.post1_tag a:hover {
  background: var(--reddd_hover);
  transition: 0.3s ease;
}

.side-head {
  padding: 7px 0;
  background: #d0d0d033;
}

.side_bg {
  background: #d0d0d033;
  padding: 10px;
}

.sidebar_container {
  padding-top: 15px;
}

.side_post {
  display: flex;
  align-items: center;
}

.side_post_content {
  display: block;

  margin-left: 15px;
}

.side_post a img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: cover;
  transition: 0.3s ease;
}

.side_tag {
  padding: 5px 8px;
  background: var(--go_blue);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s ease;
}

.side_title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.side_date {
  color: #676767;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 10px;
}

.side_title:hover {
  color: var(--reddd_hover);
  transition: 0.3s ease;
}

.side_tag:hover {
  background: var(--reddd_hover);
  transition: 0.3s ease;
}

.go_readmore_btn {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #111;
  padding: 8px;
  display: block;
  text-align: center;
  transition: 0.3s ease;
}

.go_readmore_btn:hover {
  background-color: var(--reddd_hover);
  transition: 0.3s ease;
}

.sm_sec_cont {
  display: block !important;
  align-items: center;
  flex-wrap: nowrap !important;
}

.sec-more-btn {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 6px 15px;
  float: right;
  margin-top: -38px;
  transition: 0.3s ease;
}

.scm_btn_1 {
  color: #fff;
  transition: 0.3s ease;
  background-color: var(--reddd);
}

.scm_btn_1:hover {
  background-color: var(--reddd_hover);
  transition: 0.3s ease;
}
.scm_btn_2 {
  color: #fff;
  transition: 0.3s ease;
  background: rgb(84, 84, 255);
}

.scm_btn_2:hover {
  background: rgb(67, 67, 216);
  transition: 0.3s ease;
}
.scm_btn_3 {
  color: #fff;
  transition: 0.3s ease;
  background: rgb(45, 169, 26);
}

.scm_btn_3:hover {
  background: rgb(36, 132, 21);
  transition: 0.3s ease;
}
.scm_btn_4 {
  color: #fff;
  transition: 0.3s ease;
  background: rgb(54, 54, 255);
}

.scm_btn_4:hover {
  background: rgb(43, 43, 228);
  transition: 0.3s ease;
}

.black_continer {
  background-color: #cdcdcd54 !important;
  margin-top: 40px;
}

.custom_hero_n {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.custom-p-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-p-media {
  display: block;
  overflow: hidden;
}

.custom-p-media img {
  width: 100%;
  aspect-ratio: 16/9 !important;
  object-fit: cover;
    display: block;
  transition: 0.4s ease;
}

.custom-p-card:hover .custom-p-media img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.custom-p-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 10px;
}

.custom-p-title h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #000;
}

.custom-p-title a {
  text-decoration: none;
}

.custom-p-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.custom-p-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--reddd);
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
}

.custom-p-date {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #676767;
}

.custom-p-card:hover .custom-p-title h2 {
  color: var(--reddd_hover);
  transition: 0.3s;
}

.go_footer {
  margin-top: 50px;
  background: #000 !important;
  padding-top: 50px;
  padding-bottom: 50px;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
}


.go_footer_logo p {
  color: rgba(255, 255, 255, 0.866);
  font-size: 16px;
  font-weight: 500 !important;
}

.go_footer_logo > .mobile_panel_social {
  padding-bottom: 15px;
}

.go_footer_logo a h3 {
  color: white;
  font-size: 28px;
  font-weight: 800 !important;
  text-transform: uppercase;
}

.go_footer_logo a h3 > span {
  color: var(--go_blue);
}
.follow_footer {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700 !important;
  padding-bottom: 20px;
  padding-top: 10px;
}

.footer_menu {
  display: block;
}

.footer_menu_f a {
  display: block;
  color: #fff;
  font-size: 13px !important;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
  letter-spacing: 1.2px;
}

.footer_menu_f a:hover {
  color: var(--go_blue);
  transition: 0.3s ease;
}

.f_copy_text {
  color: #ffffff76;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.view_b {
  padding-bottom: 0px;
}
.view_post_img {
  width: 100%;
  aspect-ratio: 16/9 !important;
  object-fit: cover;
    display: block;
    height: auto;
}

.view_post_meta h1 {
  color: #000;
  padding-top: 15px;
  font-size: 34px;
  letter-spacing: 0.3px;
  font-weight: 700;
}

.view_post_meta span {
  color: #676767;
  padding-top: 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.broad_view span,
.broad_view {
  font-size: 14px;
  font-weight: 500;
  text-transform: none !important;
}

.view_top_m {
  margin-top: 120px;
}

.view_post_container {
  margin-top: 20px;
  padding: 0 15px;
}

  .view_post_container h1,
  .view_post_container h2,
  .view_post_container h4,
.view_post_container h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  padding-bottom: 10px;
  padding-top: 20px;
}

.view_post_container p {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  padding-bottom: 10px;
}

.ower {
  overflow: visible !important;
  position: relative !important;
}

.stiky {
  position: absolute;
  top: 0;
  padding-bottom: 30px;
}

.article_more {
  margin-top: 45px;
  padding-top: 15px;
  border-top: 1px solid #e6e6e6;
}

.article_more_head span {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  background: #d0d0d033;
  padding: 6px 10px;
  color: #000;
  margin-bottom: 12px;
}

.article_more_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.article_more_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: 0.25s ease;
}

.article_more_bullet {
  width: 8px;
  height: 8px;
  background: var(--go_blue);
  border-radius: 0;
  flex-shrink: 0;
  margin-right: 8px;
}

.article_more_text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  transition: 0.25s ease;
}

.article_more_tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: var(--reddd);
  padding: 3px 8px;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.article_more_item:hover .article_more_text {
  color: var(--reddd_hover);
}

.article_more_item:hover .article_more_tag {
  background: var(--reddd_hover);
}

.article_share {
  margin-top: 15px;
  padding-top: 25px;
  border-top: 1px solid #e6e6e6;
}

.article_share_head span {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  background: #d0d0d033;
  padding: 6px 10px;
  color: #000;
  margin-bottom: 12px;
}

.article_share_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article_share_item {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  text-decoration: none;

  color: #fff;
  background: #111;

  transition: 0.25s ease;
}

.article_share_item:hover {
  transform: translateY(-2px);
}

.article_share_item.facebook {
  background: #1877f2;
}

.article_share_item.whatsapp {
  background: #55752b;
}

.article_share_item.telegram {
  background: var(--go_blue);
}

.article_share_item.copy {
  background: var(--reddd);
  border: 0;
}

.article_share_item.copy:hover {
  background: var(--reddd_hover);
}
.article_share_item {
  gap: 8px;
}

.article_share_item i {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

.mt_f_c {
  padding-top: 20px;
}

.all_pp_mt_s {
  margin-top: 55px;
}

.all_pp_mt_c {
  margin-top: 40px;
}

.all_pp_mt_c > .row > .col-lg-4 {
  margin-top: 0 !important;
}

/* 
----------------------------------------------------
----------------------------------------------------
- TABLET AND MOBILE
----------------------------------------------------
----------------------------------------------------
 */

@media (min-width: 992px) and (max-width: 1199.98px) {
  .all_pp_mt_s {
    margin-top: 55px;
  }


.all_pp_mt_c {
  margin-top: 40px;
}

.all_pp_mt_c > .row > .col-lg-4 {
  margin-top: 0 !important;
}

  .container.custom_contain {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .side_tag {
    padding: 5px 8px;
    background: var(--go_blue);
    color: #fff;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s ease;
  }

  .side_title {
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
  }

  .side_date {
    color: #676767;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 7px !important;
  }

  .mt-c-1024 {
    margin-top: 80px;
  }
  .post1_tag a, .custom-p-tag a {
    font-size: 9px !important;
  }
.post1_date, .custom-p-date { font-size: 9px !important; }
.post1_block a > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
}

.go_paginacion_btn {
  background: #000;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.go_paginacion_btn:hover {
  background: var(--reddd_hover);
  transition: 0.3s ease;
}

.go_paginacion_btn_act {
  background: #222;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 15px;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 10px;
}

.text-inner {
  max-height: 50px;
  overflow: hidden;
  font-size: 16px;
  color: var(--dcolor);
  display: -webkit-box;
  -webkit-box-orient: vertical;

  transition: opacity 0.5s ease;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-box.expanded .text-inner {
  max-height: 2000px;
}

.text-box.expanded .text-inner::after {
  opacity: 0;
}

.cat_head > .broad_view a,
.cat_head > .broad_view span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase !important;
}

.cat_head h1 {
  font-size: 26px;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.text-inner p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.read-more-btn {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.sch_v {
  margin-bottom: -5px;
}

@media (max-width: 992px) {


.go_paginacion_btn {
  font-size: 12px;
  padding: 7px 15px;
}

.go_paginacion_btn_act {
  font-size: 12px;
  padding: 7px 10px;
}

  .cat_head h1 {
    font-size: 22px !important;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
  }

  .all_pp_mt_s {
    margin-top: 55px;
  }


.all_pp_mt_c {
  margin-top: 50px;
}


  .mt_f_c {
    padding-top: 0;
  }

  .article_more {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid #e6e6e6;
  }

  .article_more_head span {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    background: #d0d0d033;
    padding: 6px 10px;
    color: #000;
    margin-bottom: 12px;
  }

  .article_more_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
  }

  .article_more_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    border-bottom: 1px solid #eee;
    transition: 0.25s ease;
  }

  .article_more_bullet {
    width: 8px;
    height: 8px;
    background: var(--go_blue);
    border-radius: 0;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .article_more_text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    transition: 0.25s ease;
  }

  .article_more_tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: var(--reddd);
    padding: 3px 8px;
    flex-shrink: 0;
    transition: 0.25s ease;
  }

  .view_post_container {
    margin-top: 20px;
    padding: 0 0px;
  }

  .view_post_container h1,
  .view_post_container h2,
  .view_post_container h4,
  .view_post_container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    padding-bottom: 10px;
  padding-top: 20px;
  }

  .view_post_container p {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    padding-bottom: 10px;
  }

  .view_post_meta h1 {
    color: #000;
    padding-top: 15px;
    font-size: 28px;
    font-weight: 700;
  }

  .view_post_meta span {
    color: #676767;
    padding-top: 15px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
  }

  .broad_view span,
  .broad_view {
    font-size: 12px;
    font-weight: 500;
    text-transform: none !important;
  }

  .view_b {
    padding-bottom: 30px;
  }

  .f_copy_text {
    color: #ffffff76;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    display: block;
    padding-top: 15px;
  }

  .go_footer {
    margin-top: 50px;
    background: #000 !important;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .go_footer_logo p {
    color: rgba(255, 255, 255, 0.866);
    font-size: 16px;
    font-weight: 500 !important;
  }

  .go_footer_logo > .mobile_panel_social {
    padding-bottom: 15px;
    width: 100%;
  }

  .go_footer_logo a h3 {
    color: white;
    font-size: 28px;
    font-weight: 800 !important;
    text-transform: uppercase;
  }

  .go_footer_logo a h3 > span {
    color: var(--go_blue);
  }
  .follow_footer {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700 !important;
    padding-bottom: 20px;
    padding-top: 10px;
  }

  .footer_menu_f {
    display: block;
    margin-top: -15px;
    padding-bottom: 30px;
  }

  .footer_menu_f a {
    display: block;
    color: #ffffffcc;
    font-size: 13px !important;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
    letter-spacing: 1.1px;
  }

  .footer_menu_f a:hover {
    color: var(--go_blue);
    transition: 0.3s ease;
  }

  .custom-p-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 20px;
  }

  .custom-p-media img {
    width: 100%;
    aspect-ratio: 16/9 !important;
    object-fit: cover;
    display: block;
    height: auto;
  }

  .custom-p-title h2 {
    font-size: 16px;
    line-height: 1.3;
  }

  .custom-p-body {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .custom-p-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
  }

  .custom-p-tag {
    font-size: 10px;
    padding: 4px 8px;
  }

  .custom-p-date {
    font-size: 10px;
  }

  .custom-p-date,
  .custom-p-tag {
    float: none !important;
  }

  .custom-p-card:hover .custom-p-media img {
    transform: none;
  }

  .sec-more-btn {
    font-size: 15px;
    padding: 5px 15px;
  }

  .go_readmore_btn {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .side-head {
    padding: 7px 0;
    background: #d0d0d033;
  }

  .side_bg {
    background: #d0d0d033;
    padding: 10px;
  }

  .sidebar_container {
    padding-top: 15px;
  }

  .side_post {
    display: block;
    align-items: center;
    position: relative;
  }

  .side_post_content {
    display: block;
    margin-left: 0;
  }

  .side_post a img {
    display: block;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    display: block;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .side_tag {
    padding: 5px 8px;
    background: var(--go_blue);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s ease;
    position: absolute;
    top: 15px;
    left: 15px;
  }

  .side_title {
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 0px;
  }

  .side_date {
    color: #676767;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0 !important;
  }

  .posts_container_1 {
    padding-top: 20px;
    padding-bottom: 35px;
  }

  .post1_block {
    margin-bottom: 0px;
  }

  .post1_title a h2 {
    font-size: 16px;
  }

  .post1_tag a {
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
  }

  .post1_date {
    font-size: 11px;
  }

  .gosec_title {
    font-size: 18px !important;
  }

  .gosec_title i {
    font-size: 18px !important;
  }

  .kategories_ox {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0;
    z-index: 1;
    background: #fff;
    overflow-x: scroll !important;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding: 5px;
    max-width: 100% !important;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
  }

  .kategories_ox a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.1px;
    font-weight: 600;
    transition: 0.25s ease;
  }

  .mobile_brand {
    font-size: 19px;
  }

  .desctop_menu {
    display: none !important;
  }

  .mobile_menu {
    display: flex !important;
  }

  .news-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto;
    height: auto;
  }

  .news-hero__main {
    height: 320px;
  }

  .news-hero__side {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .news-card {
    position: relative;
    flex-direction: column;
  }

  .news-card__media {
    flex: unset;
    width: 100%;
    height: 140px;
  }

  .news-card__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;

    font-size: 10px;
    padding: 5px 8px;

    color: #fff;
    background: var(--reddd);
    transition: 0.3s ease;
  }

  .news-card__tag:hover {
    background: var(--reddd_hover);
    transition: 0.3s ease;
  }

  .article_share {
    margin-top: 0px;
    padding-top: 25px;
    border-top: 0 solid #e6e6e6;
  }

    .post1_tag a, .custom-p-tag a {
    font-size: 10px !important;
  }
.post1_date, .custom-p-date { font-size: 9px !important; }
.post1_block a > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
}

@media (max-width: 576px) {

  .pb_ab {
    margin-bottom: -40px !important;
  }

  .pb_ct {
    margin-bottom: -15px !important;
  }

  .text-inner p {
    font-size: 15px;
    font-weight: 500;
    color: #333;
  }

  .read-more-btn {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .cat_head > .broad_view a,
  .cat_head > .broad_view span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase !important;
  }
  .cat_head h1 {
    font-size: 20px !important;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
  }
  .sch_v {
    margin-bottom: 3px;
  }
  .sh_c {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .all_pp_mt_c > .row > .col-lg-4 {
    margin-top: 0;
  }

  .all_pp_mt_s {
    margin-top: -30px;
  }

  .all_pp_mt_c {
    margin-top: 47px;
  }
  .stiky {
    position: absolute;
    top: 0;
    padding-bottom: 0;
  }

  .article_more {
    margin-top: 5px;
    margin-bottom: -10px;
    padding-top: 15px;
    border-top: 1px solid #e6e6e6;
  }

  .article_more_head span {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    background: #d0d0d033;
    padding: 6px 10px;
    color: #000;
    margin-bottom: 12px;
  }

  .article_more_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
  }

  .article_more_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    border-bottom: 1px solid #eee;
    transition: 0.25s ease;
  }

  .article_more_bullet {
    width: 8px;
    height: 8px;
    background: var(--go_blue);
    border-radius: 0;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .article_more_text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    transition: 0.25s ease;
  }

  .article_more_tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: var(--reddd);
    padding: 3px 8px;
    flex-shrink: 0;
    transition: 0.25s ease;
  }

  .view_top_m {
    margin-top: 110px;
  }

  .view_post_container {
    margin-top: 20px;
    padding: 0 0px;
  }

  .view_post_container h1,
  .view_post_container h2,
  .view_post_container h4,
  .view_post_container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    padding-bottom: 5px;
    padding-top: 15px;
  }

  .view_post_container p {
    font-size: 16px;
    font-weight: 400;
    color: #111;
    padding-bottom: 10px;
    padding-top: 0;
  }

  .view_post_meta h1 {
    color: #000;
    padding-top: 15px;
    font-size: 26px;
    font-weight: 700;
  }

  .view_post_meta span {
    color: #676767;
    padding-top: 15px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
  }

  .broad_view span,
  .broad_view {
    font-size: 12px;
    font-weight: 500;
    text-transform: none !important;
  }
  .view_b {
    padding-bottom: 70px;
  }
  .col-lg-3:first-child .custom-p-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 5px;
  }

  .col-lg-3:first-child .custom-p-card .custom-p-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--reddd);
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    position: absolute;
    top: 10px;
    left: 10px;
  }

  .col-lg-3:not(:first-child) .custom-p-card {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 0;
  }

  .col-lg-3:not(:first-child) .custom-p-media {
    flex: 0 0 100px;
  }

  .col-lg-3:not(:first-child) .custom-p-media img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1/1;
  }

  .col-lg-3:not(:first-child) .custom-p-body {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .col-lg-3:not(:first-child) .custom-p-title h2 {
    font-size: 15px;
  }

  .col-lg-3:not(:first-child) .custom-p-meta {
    margin-top: 6px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
  }

  .col-lg-3:not(:first-child) .custom-p-tag {
    font-size: 10px;
    padding: 3px 6px;
  }

  .sec-more-btn {
    font-size: 14px;
    padding: 6px 10px;
    margin-top: -35px;
  }

  .go_readmore_btn {
    font-size: 16px;
  }

  .side-head {
    padding: 0;
    background: #fff;
  }

  .side_bg {
    background: #fff;
    padding: 0;
  }

  .sidebar_container {
    padding-top: 15px;
  }

  .side_post {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
  }

  .side_post_content {
    display: block;
    margin-left: 10px;
  }

  .side_post a img {
    display: block;
    width: 100px !important;
    height: 100px !important;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .side_tag {
    padding: 5px 8px;
    background: var(--go_blue);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s ease;
    position: static;
  }

  .side_title {
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .side_date {
    color: #676767;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px !important;
  }

  .posts_container_1 {
    padding-top: 15px;
  }

.post1_block {
  position: relative;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post1_footer {
  margin-top: auto;
  margin-bottom: 20px;
  display: flex;
  justify-content:flex-start;
  align-items: center;
}

.post1_date {
  color: #676767;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: -10px;
  position: static; /* убрать absolute */  
  padding: 5px 0;
}

  .post1_title a h2 {
    font-size: 16px;
  }

  .post1_tag a {
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    position: absolute;
    top: 10px;
    left: 10px;
  }

  .post1_date {
    font-size: 11px;
    font-weight: 600;
    left: 0;
    padding-top: 10px;
  }

  .gosec_title {
    margin-top: -24px;
    font-size: 18px !important;
  }

  .gosec_title i {
    font-size: 18px !important;
  }

  .news-hero__title a {
    font-size: 24px !important;
    letter-spacing: 0.5px;
    font-weight: 700;
  }
  .news-hero__date {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .news-hero__side {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 10px;
  }
  .news-hero {
    padding: 0;
    margin: 100px 0 0;
    gap: 0;
  }

  .news-card {
    flex: 0 0 80%;
  }

  .news-card {
    position: relative;
  }

  .news-card__media {
    position: relative;
    height: 175px;
  }

  .news-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.607),
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0)
    );
    pointer-events: none;
  }

  .news-card__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;

    font-size: 10px;
    padding: 5px 8px;

    color: #fff;
    background: var(--reddd);
    transition: 0.3s ease;
  }

  .news-card__tag:hover {
    background: var(--reddd_hover);
    transition: 0.3s ease;
  }

  .news-card__title {
    font-size: 16px;
    margin-top: -16px;
    font-weight: 600;
  }

  .news-card__date {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
  }

  .news-card__body {
    margin-top: 10px;
  }

  .gs-search-title {
    font-size: 26px;
    margin-bottom: 25px;
    letter-spacing: 1.1px;
  }

  .gs-search-field input {
    height: 50px;
    font-size: 16px;
    padding-left: 40px;
  }

  .gs-search-field svg {
    width: 20px;
    height: 20px;
  }

  .gs-search-close {
    top: 20px;
    right: 20px;
  }

  .gs-search-btn {
    font-size: 14px;
    transition: 0.25s;
  }

  .mob_mt {
    padding-top: 20px;
  }

    .post1_tag a, .custom-p-tag a {
    font-size: 11px !important;
  }
.post1_date, .custom-p-date { font-size: 11px !important; }

.post1_block a > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
}
.gs-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: none;

    background: rgba(0, 0, 0, .45);

    justify-content: center;
    align-items: flex-end;

    padding: 20px;
    box-sizing: border-box;
}

.gs-modal.show {
    display: flex;
}

.gs-modal-box {
  position: relative;
    width: 340px;
    max-width: 100%;

    background: #fff;
    border-radius: 12px;
    padding: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,.25);

    font-family: Arial, Helvetica, sans-serif;
    text-align: center;

    animation: gsModalUp .25s ease;
}

.gs-modal-box p {
    margin: 0 0 16px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
}

.gs-modal-box button {
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 12px;

    background: rgb(54, 54, 255);
    color: #fff;

    font-size: 15px;
    font-weight: 600;
    cursor: pointer;

    transition: opacity .2s;
}

.gs-modal-box button:hover {
    opacity: .9;
}

@keyframes gsModalUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.gs-close {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;

    width: 26px !important;
    height: 26px !important;

    border: 0 !important;
    background: rgba(223, 220, 220, 0.307) !important;

    color: #777 !important;
    font-size: 22px !important;
    line-height: 1 !important;
    font-weight: 400 !important;

    cursor: pointer !important;
    padding: 0 !important;

    transition: color .2s !important;
}

.gs-close:hover {
    color: #333;
}

.goo_banner {
  padding: 15px;
  background: var(--go_blue);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 25px;
}

.goo_banner p{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.goo_banner a{
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.736);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-weight: 600;
  transition: 0.3s ease;
}

.goo_banner a:hover{
  background: rgb(255, 255, 255);
  color: #222;
  transition: 0.3s ease;
}



