* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------ reset styles ------------ */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ------------ reset styles  end ------------ */

:root {
  --Neutral-White: #fff;
  --Neutral-Black: #000;
  --background-color-black: #0a0a0a;
  /* color   Neutral */
  --Neutral-0-opacity-25: rgba(0, 0, 0, 0.25);
  --Neutral-0: #000000;
  --Neutral-10: #181818;
  --Neutral-20: #454545;
  --Neutral-30: #4f4f4f;
  --Neutral-40: #5d5d5d;
  --Neutral-50: #6d6d6d;
  --Neutral-60: #888888;
  --Neutral-70: #b0b0b0;
  --Neutral-80: #d1d1d1;
  --Neutral-90: #f6f6f6;
  --Neutral-100: #ffffff;
  --Neutral-100-opacity-25: rgba(255, 255, 255, 0.25);

  /* color  Yellow */
  --Yellow-0: #441a06;
  --Yellow-10: #7d3711;
  --Yellow-20: #9b4011;
  --Yellow-30: #c4510a;
  --Yellow-40: #ec6c0a;
  --Yellow-50: #fb850e;
  --Yellow-60: #fda43a;
  --Yellow-70: #fec773;
  --Yellow-80: #ffdfa9;
  --Yellow-90: #fff1d5;
  --Yellow-100: #fff9ed;

  /* color  Blue */
  --Blue-0: #1b2950;
  --Blue-10: #254183;
  --Blue-20: #2849a5;
  --Blue-30: #2a59cb;
  --Blue-40: #306cdd;
  --Blue-50: #488ae9;
  --Blue-60: #6baaef;
  --Blue-70: #9ac8f6;
  --Blue-80: #c3ddfa;
  --Blue-90: #ddebfc;
  --Blue-100: #f0f6fe;

  /* color  Red */

  --Warning-0: #4b0404;
  --Warning-10: #881414;
  --Warning-20: #a50f0f;
  --Warning-30: #c80d0d;
  --Warning-40: #ff2424;
  --Warning-50: #ed1515;
  --Warning-60: #ff6464;
  --Warning-70: #ff9d9d;
  --Warning-80: #ffc5c5;
  --Warning-90: #ffdfdf;
  --Warning-100: #fff1f1;

  --opacity_gradient_shadow: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );

  --White-Black: #fff;
  --grey-700: #111113;
  --font-family: "NotoSansGeorgianMedium";
  --header-text-color: var(--grey-700);
  --background_color: var(--Neutral-White);
  --header-background-color: var(--Neutral-White, #fff);
  --header-box-shadow: 0px 0px 96px 0px rgba(38, 38, 38, 0.1);
  --primary-base: #086ee5;
  --Titles-Small: 16px;
  --card-shadow: 0px 0px 32px 0px var(--Neutral-90);
  /* background-color */
  --background: var(--Neutral-100);
  --background_smart: var(--Neutral-100);
  --background-dim: var(--Neutral-90);
  --Primary-Background: var(--Neutral-100);
  --Accent-Background: var(--Blue-40);
  --primary-text: var(--Neutral-10);
  --secondary-text: var(--Neutral-50);
  --primary-icon: var(--Neutral-10);
  --accent-icon: var(--Blue-30);
  --accent-text: var(--Blue-30);
  --accent-border: var(--Blue-50);
  --non-accent-border: var(--Blue-80);
  --Input-Outline-Hover: var(--Neutral-80);
  --Input-Fill-Hover: var(--Neutral-90);
  --outline: var(--Neutral-60);
  --decorative-orange: var(--Yellow-50);
  --card-surface: var(--Neutral-100);

  --btn-warning: var(--Warning-40);
  --btn-warning-hover-fill: var(--Warning-90);

  /* button style / fill */
  --btn-filled-default: var(--Blue-40);
  --btn-filled-hover: var(--Blue-30);
  --btn-filled-pressed: var(--Blue-20);
  --btn-filled-disabled-fill: var(--Neutral-70);
  --btn-filled-disabled: var(--Neutral-100);
  --btn-filled-icon: var(--Neutral-100);
  --btn-filled-label: var(--Neutral-100);

  /* button style / outline */
  --btn-outline-default: var(--Blue-50);
  --btn-outline-hover: var(--Blue-50);
  --btn-outline-pressed: var(--Blue-0);
  --btn-outline-label: var(--Blue-40);
  --btn-outline-icon: var(--Blue-40);
  --btn-outline-hover-fill: var(--Blue-100);
  --btn-outline-pressed-fill: var(--Blue-90);
  --btn-outline-disabled: var(--Neutral-70);

  --non-accent-bg: var(--Blue-100);

  --bg-decorative-orange: var(--Yellow-60);
  --black-text: var(--Neutral-0);
  --background-test-mode: #0a0a0a;
  --color-test-mode: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  width: 100%;
  height: 100vh;
  color: white;
  /* background-color: var(--background); */
  font-family: var(--font-family);
  /* background-image: url("/assets/images/dot_bk.svg"); */
  /* background-repeat: no-repeat;
  background-position: center; */
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}

html[data-theme="dark"] {
  --background-test-mode: #fff;
  --color-test-mode: #000;
  --header-text-color: var(--Neutral-White);
  /* Dark mode text color */
  --background_color: var(--grey-700);
  --header-background-color: var(--Neutral-Black);
  --header-box-shadow: 0px 2px 12px 0px rgba(255, 255, 255, 0.1);
  --White-Black: #000;

  --background: #0a0a0a;
  --background_smart: #181818;
  --background-dim: var(--Neutral-20);
  --Primary-Background: var(--Neutral-0);
  --Accent-Background: var(--Blue-50);
  --primary-text: var(--Neutral-100);
  --secondary-text: var(--Neutral-80);
  --primary-icon: var(--Neutral-100);
  --accent-icon: var(--Blue-70);

  --accent-text: var(--Blue-70);
  --accent-border: var(--Blue-60);
  --non-accent-border: var(--Blue-20);
  --Input-Outline-Hover: var(--Blue-40);
  --Input-Fill-Hover: var(--Neutral-0);

  --outline: var(--Neutral-70);
  --decorative-orange: var(--Yellow-50);
  --card-shadow: 0px 10px 32px 0px var(--Neutral-0);
  --card-surface: var(--Neutral-0);

  --btn-warning: var(--Warning-60);
  --btn-warning-hover-fill: var(--Warning-10);

  /* button style / fill  */
  --btn-filled-default: var(--Blue-40);
  --btn-filled-hover: var(--Blue-30);
  --btn-filled-pressed: var(--Blue-20);
  --btn-filled-disabled-fill: var(--Neutral-30);
  --btn-filled-disabled: var(--Neutral-60);
  --btn-filled-icon: var(--Neutral-100);
  --btn-filled-label: var(--Neutral-100);

  /* button style / outline */
  --btn-outline-default: var(--Blue-70);
  --btn-outline-hover: var(--Blue-80);
  --btn-outline-pressed: var(--Blue-100);
  --btn-outline-label: var(--Blue-100);
  --btn-outline-icon: var(--Blue-100);
  --btn-outline-hover-fill: var(--Neutral-20);
  --btn-outline-pressed-fill: var(--Neutral-0);
  --btn-outline-disabled: var(--Neutral-60);
  --non-accent-bg: var(--Neutral-0);

  --bg-decorative-orange: var(--Yellow-50);
  --black-text: var(--Neutral-0);

  /* background-image: url("/assets/images/dot_bk.svg"); */

  background-image: url("/assets/images/dot_bk_dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  --opacity_gradient_shadow: linear-gradient(
    90deg,
    rgb(255 255 255 / 0%) 0%,
    rgb(0 0 0) 100%
  );
}

html[data-theme="light"] {
  --header-text-color: var(--grey-700, #111113);
  /* Light mode text color */
  --background_color: var(--Neutral-White);
  /* --header-background-color: var(--Neutral-White); */
  --header-box-shadow: 0px 0px 96px 0px rgba(38, 38, 38, 0.1);
  background-image: url("/assets/images/dot_bk.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  --opacity_gradient_shadow: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-border);
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background-color: var(--non-accent-border);
  border: 1px solid var(--background);
  border-radius: 8px;
}

.container {
  max-width: 1472px;
  width: 100%;
  margin: 0 auto;
}

.ul_list {
  max-width: 1472px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  list-style: none;
  background-color: var(--background);
}

.container_center {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.center_ul_item {
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 4px;
  padding: 8px 16px;
  background: var(--header-background-color);
  box-shadow: var(--header-box-shadow);
}

.center_ul_item li {
  color: var(--header-text-color);
  font-family: var(--font-family);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.24px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.right_ul_item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.li_item_flex {
  display: flex;
  align-items: center;
  gap: 4px;
}

.arrow_icon_size {
  width: 18px;
  height: 18px;
  font-size: 18px !important;
}

.nav_item {
  position: relative;
}

.nav_item:hover .dropdawon_menu_background {
  visibility: visible;
}

.nav_item:hover .dropdown_menu {
  visibility: visible;
  transform: scaleY(1);
  transform-origin: top;
  z-index: 1000;
}

.dropdown_menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 32px;
  left: 0;
  visibility: hidden;
  z-index: -1;
  transform-origin: top;
  transform: scaleY(0);
  width: 365px;
  padding: 24px;
  border-radius: 2px;
  background: var(--header-background-color);
  box-shadow: 0px 10px 32px 0px rgba(38, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.dropdawon_menu_background {
  background-color: inherit;
  position: absolute;
  visibility: hidden;
  width: 200px;
  height: 126px;
}

.nav_item_dropdown {
  color: var(--header-text-color);
  font-family: var(--font-family);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  transition: all 0.3s ease;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: transparent;
  padding: 0 16px;
}

.nav_item_dropdown:hover {
  color: var(--primary-400, #086ee5);
  transition: all 0.3s ease;
  border-left-color: var(--primary-400, #086ee5);
}

.active_nav_item {
  color: var(--primary-400, #086ee5) !important;
  border-left-color: var(--primary-400, #086ee5);
}

/* dark-light mode  styles*/

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #086ee5;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-image: url("/assets/icons/sun.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--Yellow-40, #ff5300);
}

input:checked + .slider:before {
  transform: translateX(26px);
  background-image: url("/assets/icons/moon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
}

.slider.round {
  border-radius: 34px;
}

/* -------------- > custume dropdown language switcher */

.custom-select {
  position: relative;
}

/* Hide default arrow */
.custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  text-align: center;
  background-color: var(--background);
  color: var(--primary-text);
  padding-right: 24px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  width: auto;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.custom-select::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--primary-text) transparent transparent transparent;
  transform: translateY(-50%);
}

.custom-select select option {
  font-family: var(--font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border: none;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.custom-select select:focus {
  outline: none;
}

.custom-select select::-ms-expand {
  display: none;
  /* Hide arrow in IE */
}

/*----------------------> Seach Bar Styles <----------------------*/
.search_bar {
  position: relative;
  margin-top: 42px;
  max-width: 438px;
  width: 100%;
}

.search_bar_news {
  position: relative;
  max-width: 438px;
  width: 100%;
}

.search_input,
.search_input_tree {
  display: flex;
  max-width: 438px;
  width: 100%;
  height: 38px;
  padding: 8px 12px 8px 42px;
  align-items: center;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--outline, #a3a3a3);
  gap: 8px;
  color: var(--primary-text, #181818);
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  transition: all 0.3s ease-in-out;
}

.search_input_tree:focus,
.search_input:focus {
  outline: none;
  border-radius: 4px;
  border: 1px solid var(--accent-border, #0070ed);
}

.search_input_tree::placeholder,
.search_input::placeholder {
  color: var(--primary-text, #181818);
  text-align: start;
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.search_icon_position {
  position: absolute;
  left: 16px;
  bottom: 5px;
  color: var(--primary-text, #181818);
}

.close_icon_position {
  position: absolute;
  right: 16px;
  bottom: 7px;
  color: var(--primary-text, #181818);
  cursor: pointer;
  visibility: hidden;
}

.close_visible {
  visibility: visible;
}

.close_icon_position:hover {
  color: var(--accent-text, #0070ed);
}

.icon_arrow_alt {
  font-size: 24px;
  width: 24px;
  height: 24px;
  color: var(--Neutral-80, #f8f8f8) !important;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.search_content {
  visibility: hidden;
  transform-origin: top;
  position: absolute;
  top: 45px;
  display: flex;
  overflow-y: auto;
  max-height: 264px;
  max-width: 430px;
  z-index: 1000;
  width: 100%;
  padding: 8px 16px;
  border-radius: 4px;
  background: var(--background, #fff);
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--card-shadow, #f8f8f8);
}

.search_content::-webkit-scrollbar {
  width: 6px;
}

.search_content::-webkit-scrollbar-thumb {
  background: var(--Accent-Background, #0070ed);
  border-radius: 4px;
  cursor: pointer;
}

.search_content::-webkit-scrollbar-track {
  background: var(--non-accent-border, #e5e5e5);

  border: 2px solid var(--background, #fff);
}

.search_item {
  display: flex;
  width: 100%;
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  background: var(--background, #fff);
  box-shadow: 0px 8px 32px 0px var(--card-shadow, #f8f8f8);
  transition: all 0.3s ease-in-out;
}

.search_title {
  color: var(--primary-text, #181818);
  text-align: start;
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  transition: all 0.3s ease-in-out;
}

.search_form_group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.search_sub_title {
  overflow: hidden;
  color: var(--secondary-text, #7b7b7b);
  text-align: start;
  text-overflow: ellipsis;
  /* Georgian/Label/Small */
  font-family: var(--font-family);
  font-size: var(--Labels-Small, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  transition: all 0.3s ease-in-out;
}

.search_item:hover {
  border-radius: 4px;
  background: var(--Accent-Background, #0070ed);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.search_item:hover .search_title {
  color: var(--Neutral-White, #fff);
  transition: all 0.3s ease-in-out;
}

.search_item:hover .search_sub_title {
  color: var(--Blue-80, #c1dbf5);
  transition: all 0.3s ease-in-out;
}

.search_item:hover .icon_arrow_alt {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

/* -------------------> სიახლეების ჰედერის სტილი <---------------------- */
.news_header_container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--background);
}

.new_header_container_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 52px;
  max-width: 1472px;
  width: 100%;
  margin: 0 auto;
}

.news_title_header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_tilte_text {
  color: var(--secondary-text, #6d6d6d);
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.second_title_text {
  color: var(--accent-text, #005cda);
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.icon_color_arrow {
  color: var(--primary-icon);
  width: 30px !important;
  height: 30px !important;
  font-size: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------------>  static pages styles <----------------------*/
.language-markup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.content_group_flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.agency_ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.agency_li_item {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--primary-text, #181818);

  /* Georgian/Body/Large */
  font-family: var(--font-family);
  font-size: var(--Bodies-Large, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
}

.circle {
  width: 12px;
  height: 12px;
  background-color: var(--accent-icon);
  border-radius: 50%;
  display: block;
  margin-right: 8px;
}

.accent_icon_size {
  color: var(--accent-icon);
}

.inside_paragrap {
  flex: 1;
}

.header_agency_flex {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.about_agency_container {
  margin-top: 202px;
}

.about_agency_title {
  color: var(--accent-text, #005cda);

  /* Georgian/Title/Medium */
  font-family: var(----font-family);
  font-size: var(--Titles-Medium, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.4px;
  text-transform: uppercase;

  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.about_agency_pargarap {
  color: var(--primary-text, #181818);

  /* Georgian/Body/Large */
  font-family: var(--font-family);
  font-size: var(--Bodies-Large, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
}

/*------------------> end static pages styles <----------------------*/

/* --------------> report page styles <---------------------- */
.header_report {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  padding-bottom: 40px;
}

.header_all_pages_text {
  color: var(--accent-text, #005cda);
  /* Georgian/Title/Medium */
  font-family: var(--font-family);
  font-size: var(--Titles-Medium, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.icon_color_profile {
  color: var(--accent-text, #005cda);
  font-size: 30px !important;
  width: 30px;
  height: 30px;
}

/* -------------------> report container <---------------------- */

.custum-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.custum-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 5px;
  z-index: 9999;
}
/* #086ee5 */
/*---------------> children tab  styles <-----------------*/
.children_tab_container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 44px;
}

.swiper-container::-webkit-scrollbar {
  display: none;
}

.tab_btn {
  cursor: pointer;
  border: none;
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--background, #fff);

  color: var(--secondary-text, #6d6d6d);
  /* Georgian/Title/Small */
  font-family: var(--font-family);
  font-size: var(--Titles-Small, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.tab_btn_active {
  border-radius: 2px;
  color: var(--black-text, #000);
  background: var(--bg-decorative-orange, #f90);
}

/*---------------> file item styles <-----------------*/
.report_containr_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.right_report_group {
  width: 356px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report_donwoload_group {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.download_report_text {
  color: var(--secondary-text, #6d6d6d);

  /* Georgian/Label/Small */
  font-family: var(--font-family);
  font-size: var(--Labels-Small, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.report_text {
  overflow: hidden;
  color: var(--primary-text, #181818);
  text-overflow: ellipsis;
  white-space: wrap;
  max-height: fit-content;
  max-height: 72px;
  /* Georgian/Title/Small */
  font-family: var(--font-family);
  font-size: var(--Titles-Small, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.icons_report {
  font-size: 18px;
  height: 18px;
  width: 18px;
  color: var(--primary-icon);
}

.red_circle_absolute {
  position: absolute;
  top: -36px;
  left: -36px;
  width: 72px;
  height: 72px;
  background: #f91927;
  border-radius: 50%;
  filter: blur(64px);
}

.green_circle_absolute {
  position: absolute;
  top: -36px;
  left: -36px;
  width: 72px;
  height: 72px;
  background: #00994a;
  border-radius: 50%;
  filter: blur(64px);
}

.blue_circle_absolute {
  position: absolute;
  top: -36px;
  left: -36px;
  width: 72px;
  height: 72px;
  background: #0251af;
  border-radius: 50%;
  filter: blur(64px);
}

.report_item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 480px;
  padding: 16px;
  gap: 24px;
  border-radius: 4px;
  background: var(--card-surface, #fff);

  /* background: linear-gradient(135deg, rgba(229,57,53,1) 1%, rgba(255,189,189,1) 11%, rgba(250,250,250,1) 27%); */

  /* Card Shadow */
  box-shadow: var(--card-shadow);
}

.icon_color_profile {
  color: var(--accent-text, #005cda);
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.report_container {
  padding-top: 202px;
}

.header_report {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  padding-bottom: 40px;
}

.header_all_pages_text {
  color: var(--accent-text, #005cda);
  /* Georgian/Title/Medium */
  font-family: var(--font-family);
  font-size: var(--Titles-Medium, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

/* -------------------> container media queries <---------------------- */

@media (max-width: 1540px) {
  .container {
    padding: 0 64px;
  }

  .ul_list {
    margin: 0 auto;
    padding-left: 64px;
    padding-right: 64px;
    max-width: 1472px;
  }

  .new_header_container_flex {
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media (max-width: 1200px) {
  .center_ul_item {
    display: none;
  }

  .new_header_container_flex {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .report_container {
    padding-top: 324px !important;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .ul_list {
    padding-left: 32px;
    padding-right: 32px;
  }

  .new_header_container_flex {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .ul_list {
    padding-left: 24px;
    padding-right: 24px;
  }

  .new_header_container_flex {
    padding-left: 24px;
    padding-right: 24px;
  }

  .news_title_header {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .about_agency_container {
    margin-top: 260px;
    padding-bottom: 32px;
  }
}

@media screen and (max-width: 480px) {
  .report_container {
    padding-top: 8px !important;
  }
  .new_header_container_flex {
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 24px;
  }
  .about_agency_container {
    margin-top: 2px;
  }
}

@media (max-width: 425px) {
  .container {
    padding: 0 16px;
  }

  .ul_list {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/*---------- mobile styles ----------*/
.paragrap_text_row {
  color: var(--primary-text, #181818);
  /* Georgian/Body/Medium */
  font-family: var(--font-family);
  font-size: var(--Bodies-Medium, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
}

.mobile_row_left_text {
  display: none;
  color: var(--secondary-text, #6d6d6d);
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  margin-bottom: 4px;
}

.mobile_row_left_right {
  display: none;
  color: var(--secondary-text, #6d6d6d);
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  margin-bottom: 4px;
}

.right_row_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 313px;
}

.right_row_text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lari_bold {
  color: var(--primary-text, #181818);

  /* Georgian/Label/Medium */
  font-family: "Noto Sans Georgian";
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.table_row_text {
  width: 402px;
  color: var(--primary-text, #181818);
  /* Georgian/Body/Medium */
  font-family: var(--font-family);
  font-size: var(--Bodies-Medium, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
}

.blue_circle {
  width: 12px;
  height: 12px;
  flex: none;
  background-color: var(--accent-icon, #0078d4);
  border-radius: 50%;
}

.width_table_left {
  width: 347px;
}

.table_row_item {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--accent-border);
}

.container_table {
  max-width: 852px;
  width: 100%;
  padding-top: 40px;
}

.table_header_flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--accent-border);
}

.table_header_text {
  color: var(--secondary-text, #6d6d6d);

  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

@media screen and (max-width: 1440px) {
  .container_table {
    max-width: 820px;
  }
}

@media screen and (max-width: 768px) {
  .table_header_flex {
    display: none;
  }

  .container_table {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    padding-bottom: 64px;
  }

  .table_row_text {
    width: 343px;
    max-width: 100%;
  }

  .right_row_group {
    width: 100%;
  }

  .table_header_flex {
    flex-direction: column;
    gap: 20px;
  }

  .table_header_text {
    width: 100%;
  }

  .table_row_item {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
    width: 100%;
    padding: 16px;
    background: var(--background, #ffffff);
    box-shadow: var(--card-shadow, 0px 2px 4px rgba(0, 0, 0, 0.1));
  }

  .mobile_row_left_text {
    display: block;
  }

  .mobile_row_left_right {
    display: block;
  }

  .overlay_swiper_btn {
    width: 20px !important;
  }

  .report_text {
    max-height: fit-content !important;
  }
}

/*---------- mobile styles ----------*/

.table_item_group {
  width: 356px;
}

.icon_color {
  color: var(--primary-text, #181818);
}

.paragrap_text_row {
  color: var(--primary-text, #181818);
  /* Georgian/Body/Medium */
  font-family: var(--font-family);
  font-size: var(--Bodies-Medium, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
}

.mobile_row_left_text {
  display: none;
  color: var(--secondary-text, #6d6d6d);
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  margin-bottom: 4px;
}

.mobile_row_left_right {
  display: none;
  color: var(--secondary-text, #6d6d6d);
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  margin-bottom: 4px;
}

.right_row_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 347px;
}

.right_row_text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lari_bold {
  color: var(--primary-text, #181818);

  /* Georgian/Label/Medium */
  font-family: "Noto Sans Georgian";
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.table_row_text_three_sert {
  width: 300px;
  color: var(--primary-text, #181818);
  /* Georgian/Body/Medium */
  font-family: var(--font-family);
  font-size: var(--Bodies-Medium, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
}

.table_row_text_three {
  width: 402px;
  color: var(--primary-text, #181818);
  /* Georgian/Body/Medium */
  font-family: var(--font-family);
  font-size: var(--Bodies-Medium, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
}

.blue_circle {
  width: 12px;
  height: 12px;
  flex: none;
  background-color: var(--accent-icon, #0078d4);
  border-radius: 50%;
}

.table_row_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--accent-border);
}

.container_table_three {
  margin-top: 20px;
  width: 1224px;
}

.table_header_flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--accent-border);
}

.table_header_text {
  color: var(--secondary-text, #6d6d6d);

  width: 356px;
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

@media screen and (max-width: 1440px) {
  .container_table_three {
    max-width: 100%;
  }

  .table_item_group {
    width: 100%;
  }

  .table_row_text_three {
    width: 100%;
  }
  .table_row_text_three_sert {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .table_header_flex {
    display: none;
  }

  .container_table_three {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    padding-bottom: 64px;
  }

  .table_row_text_three {
    width: 343px;
    max-width: 100%;
  }
  .table_row_text_three_sert {
    width: 343px;
    max-width: 100%;
  }

  .right_row_group {
    width: 100%;
  }

  .table_header_flex {
    flex-direction: column;
    gap: 20px;
  }

  .table_header_text {
    width: 100%;
  }

  .table_row_item {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 16px;
    background: var(--background, #ffffff);
    box-shadow: var(--card-shadow, 0px 2px 4px rgba(0, 0, 0, 0.1));
  }

  .mobile_row_left_text {
    display: block;
  }

  .mobile_row_left_right {
    display: block;
  }
}

/* Style the custom select box */
.custom-select-city {
  position: relative;
  display: inline-block;
  width: 200px;
}

.select-selected {
  width: 261px;
  background-color: var(--background, #ffffff);
  padding: 8px 12px;
  border: 1px solid var(--secondary-text, #6d6d6d);
  cursor: pointer;
  color: var(--primary-text, #181818);
  font-family: var(--font-family);
  border-radius: 2px;
}

.select-items {
  position: absolute;
  background-color: var(--background, #ffffff);
  border: 1px solid var(--secondary-text, #6d6d6d);
  color: var(--primary-text, #181818);
  border-top: none;
  z-index: 99;
  width: 261px;
  max-height: 300px;
  overflow-y: auto;
}

.select-items div {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  color: var(--primary-text, #181818);
}

.select-items div:hover {
  background-color: var(--accent-border);
}

.select-hide {
  display: none;
}

.select-arrow-active::after {
  border-color: transparent transparent #666666 transparent;
}

.filter-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.city_filter_label {
  color: var(--secondary-text, #6d6d6d);
  font-family: var(--font-family);
  text-transform: uppercase;
  font-size: var(--Labels-Medium, 13px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.26px;
  margin-bottom: 8px;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

@media screen and (max-width: 768px) {
  .custom-select-city {
    width: 100%;
  }

  .select-items {
    width: 100%;
  }

  .select-selected {
    width: 100%;
  }
}

/* -------------------------contact page styles   ------------------------- */
.display_hidden {
  display: none;
}
.display_show {
  display: block !important;
}
.modal_text {
  color: var(--primary-text, #181818);
  padding: 16px;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}
.btn_submit_contact {
  cursor: pointer;
  border: none;
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  border-radius: 4px;
  background: var(--btn-filled-default, #0070ed);
  color: var(--btn-filled-label, #fff);

  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.contact_form_group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text_area {
  padding: 12px;
  resize: none;
  border: 0.5px solid var(--Neutral-400, #989898);
  background: var(--card-surface, #fff);
  font-family: var(--font-family);
  color: var(--primary-text, #181818);
  font-size: 14px;
}
.text_area:focus {
  outline: none;
  border: 0.5px solid var(--accent-icon, #005cda);
}
.social_flex {
  display: flex;
  gap: 16px;
}

.x_bk_black {
  background: #000000 !important;
}

.youtube_bk_red {
  background: #ff0000 !important;
}

.inside_item {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-radius: 42px;
  background: #0068ff;
}

.social_item {
  cursor: pointer;
  width: 72px;
  height: 72px;
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  border: 0.25px solid var(--outline, #888);
  background: var(--card-surface, #fff);
}

.contact_adrss_group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.icon_circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-icon, #005cda);
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.adress_text {
  width: 240px;
  color: var(--primary-text, #181818);

  /* Georgian/Label/Large */
  font-family: var(--font-family);
  font-size: var(--Labels-Large, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.adress_title {
  color: var(--secondary-text, #6d6d6d);

  /* Georgian/Label/Small */
  font-family: var(--font-family);
  font-size: var(--Labels-Small, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
  text-transform: uppercase;

  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.contact_item {
  width: 350px;
  max-width: 100%;
  height: 88px;
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-radius: 8px;
  border: 0.25px solid var(--outline, #888);
  background: var(--card-surface, #fff);
}

.contact_icon {
  font-size: 30px;
  width: 30px;
  height: 30px;
  color: var(--accent-icon, #005cda);
}

.contact_flex_center {
  padding-top: 202px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.contact_section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 716px;
}

.connect_section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 716px;
}

.form_group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: flex-start;
}

.contact_label {
  color: var(--secondary-text, #6d6d6d);
  font-family: var(--font-family);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 15px */
  letter-spacing: 0.2px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.form_control {
  height: 34px;
  display: flex;
  padding: 8px 12px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 2px;
  border: 0.5px solid var(--Neutral-400, #989898);
  background: var(--card-surface, #fff);
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--primary-text, #181818);
}

.form_control:focus {
  outline: none;
  border: 0.5px solid var(--accent-icon, #005cda);
}

.contact_header_group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.connect_header_group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contaxt_header_text,
.connect_header_text {
  color: var(--accent-text, #005cda);

  /* Georgian/Title/Medium */
  font-family: var(--font-family);
  font-size: var(--Titles-Medium, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

@media screen and (max-width: 1540px) {
  .contact_section {
    max-width: 616px;
    width: 100%;
  }
  .contact_item {
    width: 100% !important;
  }
  .contact_adrss_group {
    flex-direction: column;
  }

  .connect_section {
    max-width: 616px;
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .contact_flex_center {
    padding-top: 280px;
  }

  .contact_section {
    width: 100%;
  }

  .connect_section {
    width: 500px;
    max-width: 100%;
  }
}

@media screen and (max-width: 920px) {
  .connect_section {
    width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .contact_flex_center {
    flex-direction: column;
    gap: 32px;
  }

  .contact_section {
    max-width: 100%;
  }

  .connect_section {
    width: 100%;
  }
  .adress_text {
    width: 200px;
  }
  .social_flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
  .contact_form_group {
    padding-bottom: 64px;
  }
}

/* ------------------------- header style page    ------------------------- */
.test_mode_website {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background-test-mode);
  color: var(--color-test-mode);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.text_testing_mode {
  font-size: 12px;
  font-family: var(--font-family);
}

.noClick {
  pointer-events: none;
}
.drop_down_mob {
  display: none;
  flex-direction: column;
  padding: 0 16px;
  gap: 24px;
  padding-top: 24px;
}

.drop_down_mob_visible {
  display: flex;
}

.nav_item_dropdown_mob {
  color: var(--primary-text, #181818);

  /* Georgian/Body/Medium */
  font-family: var(--font-family);
  font-size: var(--Bodies-Medium, 13px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
}

.nav_item_mob {
  color: var(--primary-text, #181818);

  /* Georgian/Title/Medium */
  font-family: var(--font-family);
  font-size: var(--Titles-Medium, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.mobile_burger_list {
  padding: 32px 64px;
  gap: 32px;
  display: flex;
  flex-direction: column;
}

.mob_burger_content {
  position: fixed;
  transform: translateX(-100%);
  top: 72px;
  left: 0;
  bottom: 0;
  height: calc(100vh - 72px);
  overflow-y: auto;
  z-index: 10000;
  right: 0;
  background: var(--background, #fff);
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.mob_burger_content_visible {
  transform: translateX(0);
  transform-origin: left;
  transition: all 0.3s ease-in-out;
}

.burger_icon {
  display: flex;
  align-items: center;
  gap: 24px;
}

.napr_icons {
  width: 120px;
}

.burger_bar {
  display: none;
}

.menu_icon_width {
  width: 32px;
  height: 32px;
  font-size: 32px !important;
  cursor: pointer;
  color: var(--primary-icon);
}

@media screen and (max-width: 1200px) {
  .burger_bar {
    display: block;
  }

  .burger_icon {
    justify-content: space-between;
  }

  .center_ul_item {
    display: none;
  }

  .napr_icons {
    width: 90px;
  }
}
@media screen and (max-width: 540px) {
  .mobile_burger_list {
    padding: 24px 32px;
  }
}

/* -----------------------> history page styles <----------------------- */
.head_item {
  display: flex;
  max-width: 480px;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: var(--non-accent-bg, #edf6ff);
}

.head_flex_person {
  display: flex;
  gap: 10px;
  align-items: center;
}

.head_flex_data_period {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 24px;
}

.head_title {
  color: var(--accent-text, #005cda);

  /* Georgian/Title/Small */
  font-family: var(--font-family);
  font-size: var(--Titles-Small, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.head_date_period {
  color: var(--primary-text, #181818);
  /* Georgian/Label/Small */
  font-family: var(--font-family);
  font-size: var(--Labels-Small, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  letter-spacing: 0.26px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.black_icon_size {
  font-size: 16px;
  color: var(--primary-icon) !important;
}

.history_container {
  max-width: 896px;
  width: 100%;
}

.head_container {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.history_head_container {
  margin-top: 260px;

  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .history_head_container {
    margin-top: 262px;
    flex-direction: column;
  }
  .head_container {
    margin-bottom: 64px;
  }
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -32px !important;
}

.position_relative_swiper {
  padding-top: 100px;
  position: relative;
}

.swiper-pagination-bullet-active {
  width: 16px !important;
  height: 16px !important;
  background-color: #044ca3 !important;
}

.swiper-pagination-bullet {
  background: #a5bbfe;
}

.swiper-background-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(93deg, #086ee5 0%, #6394fe 100%);
}

.dont_position {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.slider_item_group {
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 42px;
  gap: 24px;
}

.title_slider {
  color: var(--Neutral-White, #fff);
  font-family: var(--font-family);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 48px */
  letter-spacing: 0.64px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

.paragrap_slider {
  overflow: hidden;
  max-width: 686px;
  width: 100%;
  height: 99px;
  color: var(--Neutral-White, #fff);
  text-overflow: ellipsis;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
}

button {
  border: none;
}

.more_button {
  width: auto;
  display: inline-flex;
  padding: 8px 12px;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: var(--Neutral-White, #fff);
  color: var(--primary-500, #044ca3);
  font-family: var(--font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.24px;
  text-transform: uppercase;
  cursor: pointer;
}

.arrow_icons_color {
  font-size: 21px !important;
  width: 21px;
  height: 21px;
}
.close_btn_text {
  display: block;
}

/*-------------------------------> Service Section Styles <---------------------------------*/
.service_container {
  margin-top: 36px;
  padding-bottom: 32px;
}

.tab_header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--outline, #a3a3a3);
  background: transparent;
  overflow: auto;
}

.tab_header::-webkit-scrollbar {
  display: none;
}

.tab_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 480px;
  padding: 8px 16px 10px 16px;
  border: none;
  color: var(--header-text-color, #292929);
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--Titles-Small, 16px);
  /* 16px */
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  border-radius: 2px;
  background: transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-bottom: 4px solid transparent;
}

.tab_button:hover {
  color: var(--accent-text, #086ee5);
  border-bottom: 4px solid var(--accent-border, #086ee5);
}

.active_service {
  color: var(--accent-text, #086ee5);
  border-bottom: 4px solid var(--accent-border, #086ee5);
}

/* ----------------> Tab Content <----------------*/

.tab_content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* background-color: #2196F3; */
  gap: 16px;
}

.tab_content_item {
  width: auto;
  display: flex;
  height: 170px;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 4px;

  background: var(--header-background-color, #f9f9f9);
  box-shadow: 0px 8px 32px 0px rgba(149, 157, 165, 0.15);
  cursor: pointer;
}

.service_icon_size {
  font-size: 64px !important;
  width: 64px;
  height: 64px;
  color: var(--accent-text, #086ee5);
}

.tab_content_item_name {
  color: var(--header-text-color, #292929);
  /* Georgian/Label/Medium */
  font-family: var(--font-family);
  font-size: var(--Labels-Medium, 14px);
  font-style: normal;
  font-weight: 500;
  text-align: center;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

/* ----------------> Service Child Container <----------------*/
.service_child_container {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
}

.service_child_fixed {
  position: fixed;
  z-index: 100000;
  top: 50%;
  left: 50%;
  max-height: 670px;
  overflow: auto;
  transform: translate(-50%, -50%);
  display: flex;
  width: 728px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid var(--accent-border, #008ef8);
  background: var(--background, #fff);
}

.service_child_cancel {
  border: none;
  display: flex;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--btn-warning, #ff0000);
  font-family: var(--font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.24px;
  text-transform: uppercase;
  cursor: pointer;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
  cursor: pointer;
  border-radius: 2px;
  border-radius: 2px;
  border: 1px solid var(--btn-warning, #ff0000);
  background-color: transparent;
}

.service_children_group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.service_child_item {
  display: flex;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  color: var(--primary-text, #181818);
  /* Georgian/Body/Medium */
  font-family: var(--font-family);

  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: transparent;
}

.service_child_item_text {
  font-size: var(--Bodies-Large, 16px);
}

.service_child_item:hover {
  color: var(--accent-text, #0070ed);
  border-left-color: var(--accent-text, #0070ed);
}

.header_service {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--accent-border, #008ef8);
}

.service_parent_title {
  color: var(--primary-text, #181818);

  /* Georgian/Title/Medium */
  font-family: var(--font-family);
  font-size: var(--Titles-Medium, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case" on;
}

@media screen and (max-width: 1200px) {
  .tab_content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 902px) {
  .tab_content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .tab_content {
    grid-template-columns: repeat(2, 1fr);
  }
  .service_container {
    padding-bottom: 64px;
  }

  .dont_position {
    display: none;
  }

  .more_button {
    margin-top: auto;
  }

  .service_child_fixed {
    width: 447px;
  }
}
@media screen and (max-width: 660px) {
  .service_child_fixed {
    width: 343px;
  }
  .service_child_fixed {
    max-height: 554px;
    overflow-y: auto;
  }

  .service_parent_title {
    font-size: var(--Titles-Medium, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.32px;
  }
  .service_child_cancel {
    padding: 8px;
  }

  .close_btn_text {
    display: none;
  }
  .service_child_item {
    padding: 16px;
  }

  .paragrap_slider {
    width: 100%;
    height: 152px;
  }

  .title_slider {
    font-size: 18px;
    /* height: 100%; */
    /* 48px */
    height: 59px;
    overflow: hidden;
  }

  .slider_item_group {
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .tab_content {
    grid-template-columns: repeat(1, 1fr);
  }
  .tab_button {
    text-wrap: nowrap;
  }

  /* position none */
  .news_header_container {
    position: initial;
  }
  .history_head_container {
    margin-top: 2px;
  }
  .contact_flex_center {
    padding-top: 2px;
  }
}

/* public message */
.pagination_public {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-bottom: 32px;
}
.complaint_number_width {
  width: 150px;
}

#prev,
#next {
  width: auto;
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  border: none;
  background: var(--Neutral-White, #fff);
  color: var(--primary-500, #044ca3);
  font-family: var(--font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.24px;
  text-transform: uppercase;
  cursor: pointer;
}

.table_width {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 32px;
}
.public_revelation {
  padding-top: 258px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.table_width::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.table_width::-webkit-scrollbar-thumb {
  background-color: var(--accent-border);
  border-radius: 8px;
}

.table_width::-webkit-scrollbar-track {
  background-color: var(--non-accent-border);
  border: 1px solid var(--background);
  border-radius: 5px;
}

th {
  background-color: var(--background);
  color: var(--primary-text);
  font-weight: bold;
}

th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  color: var(--primary-text);
  font-family: var(--font-family);
  font-size: var(--Bodies-Medium, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
}

.last_date_width {
  width: 150px;
}

.modal_info {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.233);
}

.modal_content_center {
  background-color: var(--background);
  margin: 15% auto;
  padding: 20px;
  font-family: var(--font-family);
  color: var(--primary-text);
  border-radius: 8px;
  width: 80%;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
}

.last_show_cursor {
  cursor: pointer;
}

/* -------------------------------------> public revelation styles <------------------------------------ */
.pagination_public {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-bottom: 32px;
}
.complaint_number_width {
  width: 150px;
}

#prev,
#next {
  width: auto;
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  border: none;
  background: var(--Neutral-White, #fff);
  color: var(--primary-500, #044ca3);
  font-family: var(--font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.24px;
  text-transform: uppercase;
  cursor: pointer;
}

.public_revelation {
  padding-top: 258px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.table_width::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.table_width::-webkit-scrollbar-thumb {
  background-color: var(--accent-border);
  border-radius: 8px;
}

.table_width::-webkit-scrollbar-track {
  background-color: var(--non-accent-border);
  border: 1px solid var(--background);
  border-radius: 5px;
}

th {
  background-color: var(--background);
  color: var(--primary-text);
  font-weight: bold;
}

th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  color: var(--primary-text);
  font-family: var(--font-family);
  font-size: var(--Bodies-Medium, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.28px;
}

.last_date_width {
  width: 150px;
}
