@charset "UTF-8";
/** Стили от Azerbaijan Fish Farm */
/** Подключение шрифтов локально из папки "./src/fonts" */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2"), url("../fonts/PlusJakartaSans-Bold.woff") format("woff"), url("../fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-ExtraBold.woff2") format("woff2"), url("../fonts/PlusJakartaSans-ExtraBold.woff") format("woff"), url("../fonts/PlusJakartaSans-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/PlusJakartaSans-ExtraBoldItalic.woff") format("woff"), url("../fonts/PlusJakartaSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-ExtraLight.woff2") format("woff2"), url("../fonts/PlusJakartaSans-ExtraLight.woff") format("woff"), url("../fonts/PlusJakartaSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Light.woff2") format("woff2"), url("../fonts/PlusJakartaSans-Light.woff") format("woff"), url("../fonts/PlusJakartaSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Medium.woff2") format("woff2"), url("../fonts/PlusJakartaSans-Medium.woff") format("woff"), url("../fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-MediumItalic.woff2") format("woff2"), url("../fonts/PlusJakartaSans-MediumItalic.woff") format("woff"), url("../fonts/PlusJakartaSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2"), url("../fonts/PlusJakartaSans-Regular.woff") format("woff"), url("../fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-SemiBold.woff2") format("woff2"), url("../fonts/PlusJakartaSans-SemiBold.woff") format("woff"), url("../fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-SemiBoldItalic.woff2") format("woff2"), url("../fonts/PlusJakartaSans-SemiBoldItalic.woff") format("woff"), url("../fonts/PlusJakartaSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
/** Подключение переменных */
:root {
  --primary_blue: #086788;
  --secondary_blue: #06AED5;
  --purple: #a54389ff;
  --black: #262626ff;
  --white: #ffffffff;
  --gray: #dadadaff;
  --icon_gray: #505050ff;
  --Green: #27b975ff;
  --red: #ff2929ff;
  --Border-radius-16px: 16px;
  --Border-half-8px: 8px;
  --Border-color: #e9e9e9ff;
  --input-placeholder-color: #868686ff;
  --Gray-bg: #f9fafcff;
}

/** Подключение sass function и mixins и extends стилей */
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Подключение custom scrollbar для всего сайта */
/** Подключение переменных */
* {
  scrollbar-width: 0.4rem;
  scrollbar-color: gray #d6d6d6;
}
*::-webkit-scrollbar {
  width: 0.4rem;
  height: 6px;
  background-color: white;
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  border-radius: 0.375rem;
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0rem;
  border: 0 none #fff;
  background-color: gray;
  transition: all 280ms ease-in-out;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: gray;
}

/** Библиотеки */
/** Обнуление */
/** Подключение переменных */
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  color: --main-color;
}

*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

a:focus {
  outline-width: 0;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 400;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button:focus {
  outline: none;
}

a,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  cursor: pointer;
  outline: none !important;
}

a {
  background: transparent;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.2em;
}

sup {
  color: inherit;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

button {
  background: transparent;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 10px;
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

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

.li {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dd, dt {
  line-height: 1.42857143;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

/** Общие параметры БЕМ блоки (кнопки, breadcrumbs, nav pills) используемые во всё проекте */
html {
  font-size: 62.5%;
}
html *,
html *::after,
html *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 86px;
  font-weight: 600;
  line-height: 119%;
  /* 102.34px */
}
@media (max-width: 992px) {
  h1 {
    font-size: clamp(1rem, 0.5798rem + 6.7227vw, 3.8rem);
  }
}

h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 125%;
  /* 47.5px */
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  h2 {
    font-size: clamp(1rem, 0.5798rem + 6.7227vw, 3.8rem);
  }
}

h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  h3 {
    font-size: clamp(1rem, 0.5798rem + 5vw, 3.8rem);
  }
}

h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 125%;
  /* 47.5px */
}
@media (max-width: 992px) {
  h4 {
    font-size: clamp(1rem, 0.5798rem + 4vw, 3.8rem);
  }
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
  /* 47.5px */
}
@media (max-width: 992px) {
  h5 {
    font-size: clamp(1rem, 0.5798rem + 3.5vw, 3.8rem);
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
}

.row {
  justify-content: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  width: 100%;
}

@media (min-width: 1300px) {
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }
}
.hover_btn {
  position: relative;
}

.hover_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.hover_btn:hover::after {
  left: 125%;
}

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

.btn-white:hover {
  box-shadow: 0 0 0 3px rgba(8, 103, 136, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-glow {
  background: white;
  color: #fff;
  transition: 0.3s;
}

.btn-glow:hover {
  box-shadow: 0 0 0 3px rgba(8, 103, 136, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.before_icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}

.after_icon::after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.before_icon::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.refresh_tarrifs:after {
  background-image: url(../images/refresh.svg);
}

.new_tarrifs:after {
  background-image: url(../images/arrow-blue.svg);
}

.status {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
}

/* ümumi ikon yeri */
.status::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

/* statuslara görə ikon */
.status.active {
  background: #00920A;
}

.status.active::before {
  background-image: url("../images/active.svg");
}

.status.deactive {
  background: #8C9399;
}

.status.deactive::before {
  background-image: url("../images/deactive.svg");
}

.status.vip {
  background: var(--secondary_blue);
}

.status.vip::before {
  background-image: url("../images/vip.svg");
}

.status.pending {
  background: #F08E00;
}

.status.pending::before {
  background-image: url("../images/pending.svg");
}

.status.paused {
  background: #C09A00;
}

.status.paused::before {
  background-image: url("../images/paused.svg");
}

.button_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.button_wrapper .btn_first {
  display: flex;
  gap: 15px;
}
.button_wrapper .btn_refresh_select {
  display: flex;
  gap: 15px;
}
.button_wrapper .refresh_tarrifs {
  background-color: var(--primary_blue);
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 5px;
}
.button_wrapper .new_tarrifs {
  background-color: #fff;
  border-radius: 8px;
  color: var(--primary_blue);
  border: 1px solid var(--primary_blue);
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 5px;
}
.button_wrapper .btn_chose {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
.button_wrapper .btn_chose a {
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.button_wrapper .btn_chose .yes_btn {
  background-color: #54B65B;
}
.button_wrapper .btn_chose .no_btn {
  background-color: #DF5454;
}
.button_wrapper .btn_chose .yes_btn::after {
  background-image: url(../images/active.svg);
}
.button_wrapper .btn_chose .no_btn::after {
  background-image: url(../images/cross.svg);
}
.button_wrapper .success_btn,
.button_wrapper .error_btn {
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  gap: 5px;
  margin-bottom: 8px;
}
.button_wrapper .success_btn {
  background-color: #54B65B;
}
.button_wrapper .error_btn {
  background-color: #DF5454;
}
.button_wrapper .success_btn::after {
  background-image: url(../images/right-icon.svg);
}
.button_wrapper .error_btn::after {
  background-image: url(../images/cross-icon.svg);
}
.button_wrapper p {
  font-size: 12px;
  line-height: 1.5;
  color: #626c77;
}

.button_wrapper {
  position: relative;
  min-height: 40px;
  height: auto;
}

.button_wrapper > div {
  transition: all 0.4s ease;
  width: 100%;
}

/* gizlətmə sistemi */
.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  position: absolute;
}

/* görünən */
.btn_refresh_select {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.success_select,
.error_select {
  opacity: 0;
  transform: translateY(0px);
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.active-block {
  opacity: 1;
  transform: translateY(0);
  position: absolute;
  pointer-events: all;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

.form_error {
  color: #D93333;
}

/** Подключение стилей отдельных блоков и секций */
.header .tag_wrapper {
  display: flex;
  background-color: var(--secondary_blue);
  height: 44px;
  align-items: end;
}
.header .tag_wrapper ul {
  position: relative;
}
.header .tag_wrapper ul li {
  font-size: 16px;
  position: relative;
  font-weight: 500;
  line-height: 150%;
  color: var(--white);
  padding: 7px 23px;
  border-radius: 10px 10px 0px 0px;
}
.header .tag_wrapper ul li a {
  color: var(--white);
}
.header .tag_wrapper ul li.active {
  background-color: #fff;
  border-radius: 0;
  padding: 7px 55px;
  overflow: visible;
  background-position: center;
  background-size: cover;
  border-radius: 10px 10px 0px 0px;
}
.header .tag_wrapper ul li.active a {
  color: var(--primary_blue);
}
.header .tag_wrapper ul li.active a:before {
  aspect-ratio: 1;
  display: block;
  background-image: radial-gradient(circle at 0 0, transparent 8px, #fff 8px);
  bottom: -1px;
  content: "";
  position: absolute;
  width: 9px;
  left: -8px;
  z-index: 1;
}
.header .tag_wrapper ul li.active a:after {
  aspect-ratio: 1;
  display: block;
  background-image: radial-gradient(circle at 0 0, transparent 8px, #fff 8px);
  bottom: -1px;
  content: "";
  position: absolute;
  width: 9px;
  right: -8px;
  z-index: 1;
  rotate: 90deg;
}
.header .header_bottom {
  padding: 16px 0;
  background-color: var(--white);
  box-shadow: 0 4px 12.4px 0 rgba(0, 0, 0, 0.04);
}
.header .header_bottom .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .header_bottom .container .left_block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
}
.header .header_bottom nav {
  display: flex;
}
.header .header_bottom nav ul {
  display: flex;
  gap: 20px;
}
.header .header_bottom nav ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  color: var(--colors-black, #383333);
  padding: 7px 0;
  position: relative;
}
.header .header_bottom nav ul li a {
  color: var(--colors-black, #383333);
}
.header .header_bottom nav ul li.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary_blue);
  border-radius: 2px;
}
.header .right_wrap {
  display: flex;
  align-items: center;
  gap: 0px;
}
.header .right_wrap .divider {
  padding: 0 10px;
  position: relative;
  width: 1px;
  height: 15px;
}
.header .right_wrap .divider span {
  display: block;
  height: 100%;
  width: 1px;
  background-color: #EBEBEB;
}
.header .right_wrap .acc_login {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0C0C20;
  font-size: var(--f14);
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}
.header .lang_switcher {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.header .lang_switcher .lang_dropdown {
  display: flex;
  flex-direction: column;
  position: relative;
}
.header .lang_switcher .lang_dropdown .lang_dropdown_trigger {
  display: flex;
  padding: 10px 8px 10px 10px;
  align-items: center;
  gap: 6px;
  color: var(--colors-black, #383333);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.header .lang_switcher .lang_dropdown .lang_dropdown_trigger .lang_title {
  text-transform: uppercase;
}
.header .lang_switcher .lang_dropdown .lang_dropdown_trigger .lang_dropdown_icon {
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
}
.header .lang_switcher .lang_dropdown .lang_dropdown_menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: var(--colors-white, #FFF);
  border: 1px solid var(--colors-border_color, #DFDFDF);
  border-radius: var(--numbers-border_radius-br_input, 8px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header .lang_switcher .lang_dropdown .lang_dropdown_menu .lang_dropdown_item {
  display: flex;
  padding: 7px;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  color: var(--colors-black, #383333);
  font-size: 15px;
}
.header .lang_switcher .lang_dropdown .lang_dropdown_menu .lang_dropdown_item:hover {
  background-color: #f5f5f5;
}
.header .lang_switcher .lang_dropdown .lang_dropdown_menu .lang_dropdown_item .lang_title {
  text-transform: uppercase;
}
.header .lang_switcher .lang_dropdown.open .lang_dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .mobileHeader {
  display: none;
}

.burger {
  display: none;
  width: 18px;
  height: 14px;
  /* 3 xətt üçün ideal */
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.burger span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: #0C0C20;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 6px;
}

.burger span:nth-child(3) {
  top: 12px;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 6px;
}

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

.burger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 6px;
}

.top_section {
  display: none;
}

@media (max-width: 992px) {
  .header .lang_switcher {
    display: none;
  }
  .header .top_section {
    display: block;
    background-color: var(--secondary_blue);
    width: 100%;
  }
  .header .top_section .lang_list_menu {
    padding: 10px 10px;
    display: flex;
    gap: 8px;
  }
  .header .top_section a.lang_dropdown_item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #fff;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 15px;
    color: #0C0C20;
  }
  .header .top_section a.lang_dropdown_item img {
    border: 1px solid var(--primary_blue);
    border-radius: 50%;
    padding: 3px;
  }
  .header .top_section a.lang_dropdown_item.active {
    background: var(--primary_blue);
    color: #fff;
  }
  .header .top_section a.lang_dropdown_item.active img {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 3px;
  }
  .header .mobileHeader {
    display: block;
  }
  .header .header_bottom {
    padding: 10px 0;
  }
  .header .logo {
    max-height: 35px;
  }
  .header .logo img {
    height: 35px;
  }
  .header .acc_login p {
    display: none;
  }
  .header #mainMenu {
    display: none;
  }
  .header .right_wrap {
    gap: 0px;
  }
  .header .burger {
    display: flex;
    margin-left: 10px;
  }
  .header .nav {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 15;
    padding: 10px 0px;
  }
  .header .nav.open {
    left: 0;
  }
  .header #mobileMenu .menu_section {
    display: flex;
  }
  .header #mobileMenu .menu_section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 15px;
    width: 100%;
  }
  .header #mobileMenu .menu_section ul li {
    background: #FAFAFA;
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .header #mobileMenu .menu_section ul li a {
    font-size: 15px;
    color: #0C0C20;
    font-weight: 400;
  }
  .header #mobileMenu .footer_bottom {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-bottom: 30px;
    z-index: 3;
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 4%;
    width: 100%;
  }
  .header #mobileMenu .footer_bottom .socials_links {
    display: flex;
    justify-content: center;
    gap: 16px;
    filter: brightness(0);
  }
  .header #mobileMenu .footer_bottom .foot_sec {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header #mobileMenu .footer_bottom .foot_sec .copyrights {
    color: #0C0C20;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
  }
  .header #mobileMenu .footer_bottom .foot_sec .creating {
    color: #0C0C20;
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .header .top_section {
    display: block;
  }
  .header .lang_switcher {
    display: none;
  }
  .header nav {
    padding: 0 !important;
  }
  .header nav .top_section {
    background-color: var(--secondary_blue);
    width: 100%;
  }
  .header nav .top_section .lang_list_menu {
    padding: 10px 10px;
    display: flex;
    gap: 8px;
  }
  .header nav .top_section a.lang_dropdown_item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #fff;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 15px;
    color: #0C0C20;
  }
  .header nav .top_section a.lang_dropdown_item img {
    border: 1px solid var(--primary_blue);
    border-radius: 50%;
    padding: 3px;
  }
  .header nav .top_section a.lang_dropdown_item.active {
    background: var(--primary_blue);
    color: #fff;
  }
  .header nav .top_section a.lang_dropdown_item.active img {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 3px;
  }
  .header .divider {
    padding: 0 10px;
    position: relative;
    width: 1px;
    height: 15px;
  }
  .header .divider span {
    display: block;
    height: 100%;
    width: 1px;
    background-color: #EBEBEB;
  }
  .header .tag_wrapper ul li {
    font-size: 15px;
    padding: 7px 20px;
  }
  .header .tag_wrapper ul li.active {
    font-size: 15px;
    padding: 7px 20px;
  }
  .header .accMobile {
    position: fixed;
    top: 0px;
    left: -100%;
    width: 94%;
    height: 100vh;
    background: var(--primary_blue);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 999;
    padding: 0px;
  }
  .header .accMobile .accHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    padding: 10px 15px;
  }
  .header .accMobile .accHeader .userName {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
  }
  .header .accMobile .accHeader .close_btn {
    display: flex;
    align-items: center;
    width: 15px;
    height: 15px;
  }
  .header .accMobile .accHeader .close_btn img {
    width: 100%;
    height: 100%;
  }
  .header .accMobile .accMenu {
    display: flex;
  }
  .header .accMobile .accMenu ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 22px 0;
    width: 100%;
  }
  .header .accMobile .accMenu ul li.active {
    background: #FAFAFA;
    padding: 10px 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-left: 7px solid var(--secondary_blue);
  }
  .header .accMobile .accMenu ul li.active a {
    color: var(--primary_blue);
    font-size: 16px;
    font-weight: 400;
  }
  .header .accMobile .accMenu ul li {
    padding: 10px 25px;
    width: 100%;
    display: flex;
  }
  .header .accMobile .accMenu ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
  }
  .header .accMobile .accMenu ul li ul.submenu {
    height: 0;
    display: none;
  }
  .header .accMobile .accMenu ul li ul.submenu.open {
    height: 100%;
    display: block;
    padding-bottom: 0px;
  }
  .header .accMobile .accMenu ul li.menuitem.has_submenu {
    display: flex;
    flex-direction: column;
    padding-right: 0;
  }
  .header .accMobile.open {
    left: 0;
  }
  .menuitem.has_submenu > a {
    position: relative;
  }
  .menuitem.has_submenu > a::after {
    content: "";
    position: absolute;
    left: 130px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s ease;
  }
  .menuitem.has_submenu.open > a::after {
    transform: translateY(-50%) rotate(45deg);
  }
  html[lang=ru] .header .tag_wrapper ul li {
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  div#accMobile {
    display: none;
  }
}
.lang_dropdown_trigger img,
a.lang_dropdown_item img {
  border-radius: 50%;
  border: 1px solid black;
  padding: 3px;
  width: 26px;
}

@media (max-width: 992px) {
  #accLoginDesk {
    display: none;
  }
}
@media (min-width: 992px) {
  #accLogin {
    display: none;
  }
}
.footer_section {
  position: relative;
}
.footer_section .left_svg {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.footer_section .right_svg {
  position: absolute;
  right: 0;
  z-index: 1;
  mask-image: radial-gradient(circle, black 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle, black 50%, transparent 80%);
}
.footer_section .container {
  justify-content: center;
  display: flex;
  align-items: center;
}
.footer_section .footer-top {
  margin-bottom: -5px;
}
.footer_section footer {
  background-color: var(--primary_blue);
  border: none;
  display: flex;
  justify-content: center;
  z-index: 5;
}
.footer_section footer .footer_top .wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}
.footer_section footer .footer_middle {
  max-width: 785px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  gap: 40px;
  position: relative;
  z-index: 3;
}
.footer_section footer .footer_middle .footer_menu .heading_title {
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  opacity: 70%;
  padding-bottom: 15px;
}
.footer_section footer .footer_middle .footer_menu ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer_section footer .footer_middle .footer_menu ul li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.footer_section footer .footer_middle .footer_menu .contact_menu a {
  display: flex;
  gap: 10px;
}
.footer_section footer .footer_middle .footer_menu .contact_menu .footer_tel {
  background: url(../images/white-tel.svg);
  background-repeat: no-repeat;
}
.footer_section footer .footer_middle .footer_menu .contact_menu .footer_whatsapp {
  background: url(../images/white-whatsapp.svg);
  background-repeat: no-repeat;
}
.footer_section footer .footer_middle .footer_menu .contact_menu .footer_mail {
  background: url(../images/white-mail.svg);
  background-repeat: no-repeat;
}
.footer_section footer .footer_middle .footer_menu .contact_menu .footer_pin {
  background: url(../images/white-pin.svg);
  background-repeat: no-repeat;
}
.footer_section footer .divider {
  border: 1px solid #fff;
  width: 100%;
  opacity: 12%;
  margin-bottom: 20px;
}
.footer_section footer .footer_bottom {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-bottom: 30px;
  position: relative;
  z-index: 3;
}
.footer_section footer .footer_bottom .socials_links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.footer_section footer .footer_bottom .foot_sec {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer_section footer .footer_bottom .foot_sec .copyrights {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.footer_section footer .footer_bottom .foot_sec .creating {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

div#whats_link {
  position: fixed;
  right: 20px;
  bottom: 110px;
  z-index: 9999;
}
div#whats_link a {
  width: 100%;
  height: 100%;
}

.socials_links {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

.menu_ul.contact_menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer_complaints {
  color: #fff;
  line-height: 1.5;
  z-index: 999999;
}
.footer_complaints a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer_section footer {
    padding-top: 80px;
  }
  .footer_section footer .footer_top .wrapper {
    padding-bottom: 45px;
  }
  .footer_section footer .footer_complaints {
    margin-top: -15px;
  }
}
@media (max-width: 500px) {
  .footer_section footer .footer_middle .footer_menu {
    width: 100%;
  }
}
.md-modal {
  margin: auto;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  padding: 0px;
  padding-top: 35px;
  min-width: 320px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (max-width: 992px) {
  .md-modal {
    height: calc(100vh - 30px);
    padding-top: 25px;
  }
}

.md-show {
  visibility: visible;
}

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  background: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}

.md-effect .menu-content,
.md-effect .menu-head,
.md-effect .menu-discuss {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.md-show.md-effect ~ .md-overlay {
  background-color: white;
}

.md-effect- .menu-content h3,
.md-effect .menu-content {
  background: transparent;
}

.md-effect .menu-content {
  margin-bottom: 45px;
  height: 100%;
}

.md-show.md-effect .menu-content,
.md-show.md-effect .menu-head,
.md-show.md-effect .menu-discuss {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.md-close {
  cursor: pointer;
}

.md-show.md-modal.menu ~ .md-overlay {
  z-index: 15;
}

.md-show.md-modal.menu {
  z-index: 20;
}

.md-show.md-modal.form_popup ~ .md-overlay {
  z-index: 25;
}

.md-show.md-modal.form_popup {
  z-index: 30;
}

.slider_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding-bottom: 60px;
}
.slider_section .slider_wrapper {
  position: relative;
}
.slider_section .big-slider {
  border-radius: 32px;
  padding: 0;
}
.slider_section .big-slider .bg_holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 8;
  overflow: hidden;
  border-radius: 32px;
}
.slider_section .big-slider .bg_holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider_section .big-slider .slider_content {
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 9;
  position: relative;
}
.slider_section .big-slider .slider_content .left_side {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 25px;
  padding-left: 50px;
  padding-top: 90px;
  padding-bottom: 45px;
}
.slider_section .big-slider .slider_content .left_side h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 0;
}
.slider_section .big-slider .slider_content .left_side .desc_area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
}
.slider_section .big-slider .slider_content .left_side .desc_area p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  width: 80%;
}
.slider_section .big-slider .slider_content .left_side .slider_btn {
  padding: 10px 30px;
  font-size: 16px;
  color: #fff;
  background-color: var(--primary_blue);
  border-radius: 8px;
  width: fit-content;
}
.slider_section .big-slider .slider_content .right_side {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.slider_section .big-slider .slider_content .right_side img {
  object-fit: cover;
}
.slider_section .arr_section {
  display: flex;
  width: 115px;
  position: absolute;
  height: 40px;
  right: 5%;
  bottom: 10%;
  gap: 14px;
}
.slider_section .arr_section .swiper-button-prev:after,
.slider_section .arr_section .swiper-button-next:after {
  font-size: 18px;
}
.slider_section .arr_section #hero_slider-prev,
.slider_section .arr_section #hero_slider-next {
  width: 40px;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  font-size: 20px;
  align-items: center;
  color: #0C0C20;
  padding: 10px;
}

@media (max-width: 992px) {
  .slider_section .big-slider .slider_content .left_side {
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 45px;
  }
  .slider_section .big-slider .slider_content .left_side .desc_area {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .slider_section .big-slider .slider_content .left_side h1 {
    font-size: 40px;
    font-weight: 600;
  }
  .slider_section .big-slider .slider_content .left_side .desc_area p {
    width: 100%;
  }
  .slider_section .big-slider .slider_content .left_side .slider_btn {
    width: 100%;
  }
  .slider_section {
    padding: 0;
    padding-bottom: 30px;
  }
  .slider_section .arr_section {
    display: none;
  }
  .slider_section .big-slider .bg_holder {
    border-radius: 32px;
  }
  .slider_section .big-slider .slider_content {
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
    gap: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .slider_section .big-slider .slider_content .left_side {
    order: 1;
    padding: 0 15px;
  }
  .slider_section .big-slider .slider_content .desc_area {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .slider_section .big-slider .slider_content a.slider_btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    background: var(--primary_blue);
    border-radius: 8px;
    color: #fff;
    text-align: center;
    width: 100%;
  }
  .slider_section div#hero_slider-pagination {
    bottom: 4%;
  }
  .slider_section div#hero_slider-pagination span.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #fff !important;
    opacity: 1;
  }
  .slider_section div#hero_slider-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #FFA92C !important;
  }
}
.slider_section .arr_section .swiper-button-lock {
  display: none !important;
}

.tarrifs_slider {
  background-color: #FAFAFA;
  padding: 60px 0px;
  position: relative;
  overflow: hidden;
  border-radius: 64px;
}
.tarrifs_slider .swiper {
  overflow: visible !important;
  clip-path: inset(0 -1080px 0px 0px);
}
.tarrifs_slider .swiper .swiper-wrapper {
  padding-bottom: 10px;
}
.tarrifs_slider .arr_section {
  display: flex;
  width: 115px;
  height: 120px;
  gap: 14px;
  position: relative;
  margin: 0 auto;
  padding-top: 15px;
}
.tarrifs_slider .arr_section .swiper-button-prev:after,
.tarrifs_slider .arr_section .swiper-button-next:after {
  font-size: 18px;
}
.tarrifs_slider .arr_section #tarrifs_slider-prev,
.tarrifs_slider .arr_section #tarrifs_slider-next {
  width: 40px;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  font-size: 20px;
  align-items: center;
  color: #0C0C20;
  padding: 10px;
}
.tarrifs_slider .section_title {
  margin-bottom: 40px;
}
.tarrifs_slider .slider_wrap {
  background-color: #FFF;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.tarrifs_slider .slider_wrap .slide_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tarrifs_slider .slider_wrap .slide_wrap .tarrifs_speed {
  background-color: #f2f3f7;
  padding: 15px;
  text-align: center;
  font-size: 22px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
}
.tarrifs_slider .slider_wrap .slide_wrap .tarrifs_speed::before {
  background-image: url(../images/world.svg);
}
.tarrifs_slider .slider_wrap .slide_wrap .tarrifs_price {
  padding-top: 30px;
  font-size: 17px;
  font-weight: 400;
  color: #626c77;
}
.tarrifs_slider .slider_wrap .slide_wrap .tarrifs_price span {
  font-size: 32px;
  font-weight: 600;
  color: #0C0C20;
  padding-right: 5px;
}
.tarrifs_slider .slider_wrap .slide_wrap .slider_btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary_blue);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .tarrifs_slider {
    padding: 30px 0px 0px 0px;
  }
  .tarrifs_slider .slider_wrap .slide_wrap .tarrifs_price span {
    font-size: 26px;
  }
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  background-color: #F2F3F7 !important;
}

.download_app {
  padding: 120px 20px 60px 20px;
}
.download_app .download_app_wrapper {
  background-color: #FAFAFA;
  border-radius: 32px;
  display: flex;
  flex-direction: row;
  position: relative;
}
.download_app .download_app_wrapper .download_app_left {
  width: 60%;
  display: flex;
  flex-direction: column;
  padding: 43px 50px;
  gap: 30px;
  justify-content: space-between;
  z-index: 2;
}
.download_app .download_app_wrapper .download_app_left .download_top {
  display: flex;
  gap: 17px;
}
.download_app .download_app_wrapper .download_app_left .download_top .icon_wrapper {
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  width: 95px;
  overflow: hidden;
}
.download_app .download_app_wrapper .download_app_left .download_top .icon_wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.download_app .download_app_wrapper .download_app_left .description_area h3 {
  font-size: 38px;
  font-weight: 600;
  color: #0C0C20;
}
.download_app .download_app_wrapper .download_app_left .description_area p {
  font-size: 16px;
  color: #0C0C20;
  line-height: 1.5;
}
.download_app .download_app_wrapper .download_app_left .store_icon {
  display: flex;
  gap: 10px;
}
.download_app .download_app_wrapper .download_app_right {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 1;
}
.download_app .download_app_wrapper .download_app_right .img_container {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 32px;
  overflow: hidden;
}
.download_app .download_app_wrapper .download_app_right .img_container img {
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .download_app_left {
    width: 50%;
  }
  .download_app .download_app_wrapper .download_app_right {
    align-items: flex-end;
    width: 70%;
  }
  .download_app .download_app_wrapper .download_app_right .img_container {
    position: relative;
  }
}
@media (max-width: 992px) {
  .download_app {
    padding: 60px 0px;
  }
  .download_app .download_app_wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .download_app .download_app_wrapper .download_app_left {
    width: 100%;
    padding: 30px 15px;
  }
  .download_app .download_app_wrapper .download_app_right {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }
  .download_app .download_app_wrapper .download_app_right .img_container {
    position: relative;
    width: 100%;
  }
}
.company_info {
  padding: 60px 0px;
}
.company_info .heading_section {
  padding-bottom: 30px;
}
.company_info .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}
.company_info .container .left-part {
  border-radius: 32px;
  border: 1px solid #EBEBEB;
  background-color: #FAFAFA;
  position: relative;
}
.company_info .container .left-part .part-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.company_info .container .left-part .part-wrapper .part-wrapper__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.company_info .container .left-part .part-wrapper .part-wrapper__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.company_info .container .left-part h3 {
  position: absolute;
  top: 30px;
  right: 30px;
}
.company_info .container .left-part p {
  padding: 30px;
  font-size: 16px;
  color: #0C0C20;
  line-height: 1.5;
}
.company_info .container .right-part .part-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.company_info .container .right-part .top_side {
  border-radius: 32px;
  border: 1px solid #EBEBEB;
  background-color: #FAFAFA;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.company_info .container .right-part .top_side .top_side_image {
  max-height: 264px;
  overflow: hidden;
}
.company_info .container .right-part .top_side .top_side_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.company_info .container .right-part .top_side .fly-element {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 24px;
  padding: 16px;
  display: flex;
  gap: 10px;
}
.company_info .container .right-part .top_side .fly-element .left {
  background-color: #FFA92c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 50%;
}
.company_info .container .right-part .top_side .fly-element .right {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.company_info .container .right-part .top_side .fly-element .right h4 {
  font-size: 16px;
}
.company_info .container .right-part .top_side .fly-element .right p {
  color: #626C77;
  font-size: 14px;
}
.company_info .container .right-part .top_side .info_text {
  padding: 30px;
  font-size: 16px;
  color: #0C0C20;
  line-height: 1.5;
}
.company_info .container .right-part .bottom_side {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.company_info .container .right-part .bottom_side .left-item {
  width: 100%;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}
.company_info .container .right-part .bottom_side .left-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company_info .container .right-part .bottom_side .left-item .fly-element {
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 24px;
  background-color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.company_info .container .right-part .bottom_side .left-item .fly-element .left {
  border-radius: 50%;
  background-color: var(--secondary_blue);
  display: flex;
  padding: 12px;
}
.company_info .container .right-part .bottom_side .left-item .fly-element .right {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.company_info .container .right-part .bottom_side .left-item .fly-element .right h4 {
  font-size: 16px;
  color: #0C0C20;
}
.company_info .container .right-part .bottom_side .left-item .fly-element .right p {
  font-size: 14px;
  color: #626C77;
}
.company_info .container .right-part .bottom_side .right-item {
  width: 100%;
  border: 1px solid #EBEBEB;
  border-radius: 32px;
  background-color: #FAFAFA;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 30px;
}
.company_info .container .right-part .bottom_side .right-item p {
  font-size: 16px;
  color: #0C0C20;
  line-height: 1.5;
}
.company_info .container .right-part .bottom_side .right-item .btn_wrapper {
  display: flex;
  width: 100%;
}
.company_info .container .right-part .bottom_side .right-item .btn_wrapper a {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid var(--primary_blue);
  color: var(--primary_blue);
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media (max-width: 1200px) {
  .company_info .container .right-part .part-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .company_info .container .right-part .part-wrapper {
    gap: 20px;
  }
  .company_info .container .left-part h3 {
    text-align: right;
    font-size: 27px;
  }
  .company_info .container .left-part p {
    padding: 15px 15px 30px 15px;
    width: 100%;
  }
  .company_info .container .right-part .top_side .info_text {
    width: 100%;
    padding: 15px 15px 30px 15px;
  }
  .company_info .container .right-part .top_side img {
    object-fit: contain;
  }
  .company_info .container .right-part .bottom_side {
    flex-wrap: wrap;
  }
  .company_info .container .right-part .bottom_side .right-item {
    padding: 20px 15px;
    gap: 30px;
  }
  .company_info .container .right-part .bottom_side .right-item p {
    width: 100%;
  }
  .company_info .container .right-part .bottom_side .left-item .left img {
    object-fit: contain;
  }
  .company_info .container .right-part .top_side .fly-element .right p {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .company_info .container {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .company_info .heading_section {
    padding-bottom: 20px;
  }
  .company_info .container .right-part .part-wrapper {
    gap: 40px;
  }
  .company_info .container .right-part .top_side > img {
    min-height: 264px;
    object-fit: cover;
    object-position: 30%;
  }
  .company_info .container .right-part .bottom_side {
    gap: 40px;
  }
  .company_info .container .right-part .top_side .fly-element {
    top: 174px;
  }
}
.head_section .head_container .head_wrapper {
  background-color: var(--secondary_blue);
  background: linear-gradient(125deg, rgb(6, 174, 213) 0%, rgb(6, 174, 213) 52%, rgb(154, 222, 237) 100%);
  border-radius: 32px;
  padding: 60px 30px;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.head_section .head_container .head_wrapper h1 {
  font-size: 38px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
}
.head_section .head_container .head_wrapper p {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
  width: 50%;
}
.head_section .head_container .head_wrapper .head_svg {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .head_section .head_container .head_wrapper {
    padding: 30px;
  }
  .head_section .head_container .head_wrapper p {
    width: 100%;
  }
}
.pay_head_section .head_container .head_wrapper {
  background-color: var(--secondary_blue);
  background: linear-gradient(125deg, rgb(6, 174, 213) 0%, rgb(6, 174, 213) 52%, rgb(154, 222, 237) 100%);
  border-radius: 32px;
  padding: 60px 30px 120px 30px;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pay_head_section .head_container .head_wrapper h1 {
  font-size: 38px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
}
.pay_head_section .head_container .head_wrapper p {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
  width: 50%;
}
.pay_head_section .head_container .head_wrapper .head_svg {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .pay_head_section .head_container .head_wrapper p {
    width: 100%;
  }
  .pay_head_section .head_container .head_wrapper {
    padding: 30px 30px 30px 30px;
  }
}
.left_menu_wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 20px;
  width: 300px;
}
.left_menu_wrapper .accMenu {
  display: flex;
  background: var(--primary_blue);
}
.left_menu_wrapper .accMenu .menuitem.has_submenu > a {
  position: relative;
}
.left_menu_wrapper .accMenu .menuitem.has_submenu > a::after {
  content: "";
  position: absolute;
  right: 45%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.3s ease;
}
.left_menu_wrapper .accMenu .menuitem.has_submenu.open > a::after {
  transform: translateY(-50%) rotate(45deg);
}
.left_menu_wrapper .accMenu ul {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 22px 0;
  width: 100%;
}
.left_menu_wrapper .accMenu ul li.active {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.left_menu_wrapper .accMenu ul li.active > a {
  padding: 10px 15px;
  color: var(--primary_blue);
  font-size: 15px;
  background: #FAFAFA;
  font-weight: 400;
  width: 100%;
  border-color: var(--secondary_blue);
}
.left_menu_wrapper .accMenu ul li.active a::after {
  border-right: 1px solid var(--primary_blue) !important;
  border-bottom: 1px solid var(--primary_blue) !important;
}
.left_menu_wrapper .accMenu ul li:hover {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.left_menu_wrapper .accMenu ul li:hover > a {
  color: var(--primary_blue);
  font-size: 15px;
  padding: 10px 15px;
  font-weight: 400;
  background: #FAFAFA;
  border-left: 7px solid var(--secondary_blue);
}
.left_menu_wrapper .accMenu ul li:hover a::after {
  border-right: 1px solid var(--primary_blue) !important;
  border-bottom: 1px solid var(--primary_blue) !important;
}
.left_menu_wrapper .accMenu ul li {
  width: 100%;
  display: flex;
}
.left_menu_wrapper .accMenu ul li a {
  width: 100%;
  padding: 10px 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  border-left: 7px solid transparent;
  transition: all 0.3s ease;
}
.left_menu_wrapper .accMenu ul li ul.submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0px 0px 0px 10px;
  transition: max-height 0.6s ease, opacity 0.9s ease;
}
.left_menu_wrapper .accMenu ul li ul.submenu.open {
  margin-top: 1px;
  max-height: 500px;
  /* kifayət qədər böyük */
  opacity: 1;
  padding-left: 10px;
  padding-bottom: 10px;
}
.left_menu_wrapper .accMenu ul li.menuitem.has_submenu {
  display: flex;
  flex-direction: column;
  padding-right: 0;
}

@media (max-width: 768px) {
  .left_menu_wrapper {
    display: none;
  }
}
.index_page .page {
  padding-top: 0;
}

.index_section {
  min-height: 100vh;
  background: linear-gradient(180deg, #2C4EC5 0%, #6F43A5 100%);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_section .list_holder {
  display: flex;
  justify-content: center;
  background: rgb(222, 222, 222);
  padding: 20px;
  border-radius: 20px;
}
.index_section .list_holder ul {
  flex-direction: column;
  columns: 3;
  gap: 20px;
  width: 100%;
  text-align: center;
}
.index_section .list_holder ul li {
  width: 100%;
}
.index_section .list_holder ul li a {
  width: 100%;
  color: white;
  display: inline-block;
  padding: 20px 35px;
  background-color: #2C4EC5;
  border-radius: 20px;
  margin-bottom: 10px;
}

body {
  background-image: url(../images/main_back.webp);
  background-size: contain;
  background-position: top center;
  background-repeat: repeat;
}
body main {
  padding: 30px 0;
}

@media (max-width: 768px) {
  main {
    padding: 15px 0;
  }
}
.not_found_page .found_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.not_found_page .found_wrapper img {
  width: 60%;
}
.not_found_page .found_wrapper .error_message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.not_found_page .found_wrapper .error_message p {
  text-align: center;
}
.not_found_page .found_wrapper .back_home a {
  display: flex;
  background-color: var(--primary_blue);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .not_found_page .found_wrapper img {
    width: 100%;
  }
}
.company_desc .desc-wrapper {
  max-width: 58%;
  width: 100%;
  padding-bottom: 30px;
}
.company_desc .desc-wrapper p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

section.connection_info {
  padding-top: 30px;
  padding-bottom: 60px;
}
section.connection_info .title-part {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
  gap: 10px;
}
section.connection_info .title-part p {
  font-size: 18px;
  font-weight: 400;
}
section.connection_info .title-part h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
}
section.connection_info .title-part h2 span.blue_connect {
  color: var(--primary_blue);
}
section.connection_info .top-info {
  display: flex;
  padding-bottom: 60px;
}
section.connection_info .top-info p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
section.connection_info .top-info img {
  max-width: 100%;
  height: auto;
}
section.connection_info .top-info .left-part {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.connection_info .top-info .left-part p {
  padding-right: 150px;
}
section.connection_info .top-info .left-part a {
  background-color: var(--primary_blue);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  width: fit-content;
  border-radius: 8px;
}
section.connection_info .top-info .left-part a svg {
  filter: invert(1);
}
section.connection_info .top-info .right-part {
  width: 100%;
}
section.connection_info .bottom-info {
  display: flex;
  padding-bottom: 60px;
}
section.connection_info .bottom-info p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
section.connection_info .bottom-info .right-part {
  width: 100%;
}
section.connection_info .bottom-info .right-part .padd_wrap {
  padding-left: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.connection_info .bottom-info .right-part a {
  background-color: var(--primary_blue);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  width: fit-content;
  border-radius: 8px;
}
section.connection_info .bottom-info .right-part a svg {
  filter: invert(1);
}
section.connection_info .bottom-info .left-part {
  width: 100%;
}

section.service_slider_section {
  background: linear-gradient(to bottom, transparent 318px, #086788 10%);
  padding-bottom: 30px;
  overflow: hidden;
}
section.service_slider_section .section_title {
  padding-bottom: 40px;
}
section.service_slider_section .section_title h3 {
  font-size: 38px;
}
section.service_slider_section .section_title span {
  color: var(--primary_blue);
}
section.service_slider_section .swiper {
  overflow: visible !important;
  clip-path: inset(0 -1080px 0px 0px);
}
section.service_slider_section .slider_wrap {
  border-radius: 32px;
  background: #fff;
}
section.service_slider_section .slider_wrap .slide_img {
  width: 100%;
}
section.service_slider_section .slider_wrap .slide_img img {
  width: 100%;
  object-fit: cover;
  height: 182px;
  border-radius: 32px 32px 0 0;
  max-width: 100%;
}
section.service_slider_section .slider_wrap .slide_info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.service_slider_section .slider_wrap .slide_info p {
  font-size: 16px;
  line-height: 1.5;
}

section.contact_us_section {
  padding: 30px 0;
  background-color: var(--primary_blue);
}
section.contact_us_section .wrapper {
  display: flex;
  border-radius: 32px;
  padding: 30px;
  border: 1px solid #EBEBEB;
  background-color: #FAFAFA;
}
section.contact_us_section .wrapper .left-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 65%;
}
section.contact_us_section .wrapper .left-side h3 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 0;
}
section.contact_us_section .wrapper .left-side p {
  width: 80%;
  line-height: 1.5;
  font-weight: 400;
}
section.contact_us_section .wrapper .left-side a.call_btn {
  border: 1px solid var(--primary_blue);
  width: fit-content;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  color: #086788;
  font-weight: 500;
}
section.contact_us_section .wrapper .right-side {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.contact_us_section .wrapper .right-side img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

section.about_divider {
  margin-bottom: -80px;
}

@media (max-width: 1092px) {
  .company_desc .desc-wrapper {
    max-width: 100%;
  }
  section.connection_info .top-info .left-part p {
    padding-right: 20px;
  }
  section.connection_info .bottom-info .right-part .padd_wrap {
    padding-left: 20px;
  }
  section.contact_us_section .wrapper .left-side {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  section.connection_info {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  section.connection_info .title-part {
    align-items: start;
    padding-bottom: 0px;
  }
  section.connection_info .top-info {
    flex-wrap: wrap;
  }
  section.connection_info .top-info .right-part {
    order: -1;
    padding-bottom: 20px;
  }
  section.connection_info .bottom-info {
    flex-wrap: wrap;
  }
  section.connection_info .bottom-info .left-part {
    padding-bottom: 20px;
  }
  section.connection_info .bottom-info .left-part img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  section.connection_info .bottom-info .right-part .padd_wrap {
    padding: 0;
  }
  section.contact_us_section .wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
  }
  section.contact_us_section .wrapper .left-side {
    max-width: 100%;
  }
  section.contact_us_section .wrapper .left-side p {
    width: 100%;
  }
  section.about_divider {
    margin-bottom: -20px;
  }
  section.service_slider_section .section_title {
    padding-bottom: 0;
  }
  section.service_slider_section {
    background: linear-gradient(to bottom, transparent 278px, #086788 10%);
  }
}
.devices_section {
  padding: 30px 0px;
}
.devices_section .all_devices {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.devices_section .devices_wrapper {
  display: flex;
  background-color: #FAFAFA;
  border: 1px solid #ebebeb;
  border-radius: 32px;
}
.devices_section .devices_wrapper .device {
  display: flex;
  flex-direction: row;
  padding: 90px;
  gap: 60px;
}
.devices_section .devices_wrapper .device .devece-img {
  max-width: 520px;
  position: relative;
}
.devices_section .devices_wrapper .device .devece-img .swiper-pagination {
  bottom: -30px;
  position: relative;
  height: 46px;
}
.devices_section .devices_wrapper .device .devece-img span.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
}
.devices_section .devices_wrapper .device .devece-img .swiper-pagination-bullet-active {
  background-color: #FFa92c;
  width: 16px;
  height: 16px;
}
.devices_section .devices_wrapper .device .device-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.devices_section .devices_wrapper .device .device-info .product_title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.devices_section .devices_wrapper .device .device-info .product_title .pro_name {
  color: var(--primary_blue);
  font-size: 38px;
  font-weight: 500;
}
.devices_section .devices_wrapper .device .device-info .product_title .pro_desc {
  font-size: 18px;
  line-height: 1.5;
}
.devices_section .devices_wrapper .device .device-info .product_spec {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
}
.devices_section .devices_wrapper .device .device-info .product_spec h3 {
  font-size: 20px;
}
.devices_section .devices_wrapper .device .device-info .product_spec .data-items {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 5px;
}
.devices_section .devices_wrapper .device .device-info .product_spec .data-items .product-data__line-between {
  border-bottom: 1px dotted;
  width: 70%;
  margin-bottom: 8px;
}
.devices_section .devices_wrapper:nth-child(even) .device {
  flex-direction: row-reverse;
}

@media (max-width: 1200px) {
  .devices_section .devices_wrapper .device {
    padding: 30px 20px;
  }
  .devices_section .devices_wrapper .device .devece-img {
    max-width: 430px;
  }
}
@media (max-width: 992px) {
  .devices_section .devices_wrapper .device {
    flex-wrap: wrap;
    justify-content: center;
  }
  .devices_section .devices_wrapper .device .device-info {
    gap: 60px;
  }
  .devices_section .devices_wrapper .device .swiper-slide {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .devices_section .devices_wrapper .device {
    padding: 30px 15px;
  }
  .devices_section .devices_wrapper .device .devece-img {
    max-width: 88vw;
  }
}
.devices_section .product-data__item-div-title {
  white-space: nowrap;
}

.devices_section .product-data__item-div-text {
  white-space: nowrap;
}

.payment_section {
  position: relative;
  margin-top: -120px;
  padding-bottom: 30px;
}
.payment_section .payment-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.payment_section .payment-wrapper .payment_box {
  display: flex;
  background-color: #FAFAFA;
  padding: 31px;
  gap: 32px;
  flex-direction: column;
  width: fit-content;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
}
.payment_section .payment-wrapper .payment_box .img_container {
  max-height: 42px;
  width: 245px;
  text-align: center;
}
.payment_section .payment-wrapper .payment_box .payment_btn {
  background-color: var(--primary_blue);
  padding: 10px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
}
.payment_section .payment-wrapper .payment_box .payment_btn svg {
  filter: invert(1);
}

@media (max-width: 768px) {
  .payment_section {
    margin-top: 0;
  }
  .payment_section .payment-wrapper .payment_box {
    width: 100%;
  }
}
.contact_section {
  padding: 30px 0;
}
.contact_section .contact_wrapper {
  display: flex;
  gap: 60px;
}
.contact_section .contact_wrapper .left_side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact_section .contact_wrapper .left_side .top_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact_section .contact_wrapper .left_side .top_box h3 {
  font-size: 38px;
  margin-bottom: 0;
}
.contact_section .contact_wrapper .left_side .top_box p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.contact_section .contact_wrapper .left_side .box-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.contact_section .contact_wrapper .left_side .box-wrapper .contact_box {
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid #ebebeb;
  padding: 16px;
  width: 100%;
  display: flex;
  gap: 12px;
}
.contact_section .contact_wrapper .left_side .box-wrapper .contact_box .icon_img {
  padding: 10px;
  background: white;
  border-radius: 16px;
}
.contact_section .contact_wrapper .left_side .box-wrapper .contact_box .contact_info {
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}
.contact_section .contact_wrapper .left_side .box-wrapper .contact_box .contact_info a, .contact_section .contact_wrapper .left_side .box-wrapper .contact_box .contact_info p.main_text {
  color: #000E1C;
  font-size: 16px;
  font-weight: 500;
}
.contact_section .contact_wrapper .left_side .box-wrapper .contact_box .contact_info p {
  color: #454F59;
}
.contact_section .contact_wrapper .right_side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact_section .contact_wrapper .right_side .form_wrapper {
  padding: 32px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.contact_section .contact_wrapper .right_side .form_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact_section .contact_wrapper .right_side .form_wrapper form .form_group {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.contact_section .contact_wrapper .right_side .form_wrapper form .form_group label {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
.contact_section .contact_wrapper .right_side .form_wrapper form .form_group label .input_label {
  position: relative;
}
.contact_section .contact_wrapper .right_side .form_wrapper form .form_group label .input_label input {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #D9DBDD;
  padding: 16px;
  width: 100%;
  padding: 16px 16px 16px 46px;
}
.contact_section .contact_wrapper .right_side .form_wrapper form .form_group label .input_label img {
  position: absolute;
  top: 16px;
  left: 16px;
}
.contact_section .contact_wrapper .right_side .form_wrapper form .form_group label .input_label textarea {
  border-radius: 12px;
  border: 1px solid #D9DBDD;
  padding: 16px;
  width: 100%;
}
.contact_section .contact_wrapper .right_side .form_wrapper form .form_group label .input_label .clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
  display: none;
}
.contact_section .contact_wrapper .right_side .submit_form {
  margin-top: 24px;
}
.contact_section .contact_wrapper .right_side .submit_form button {
  padding: 10px 20px;
  background: var(--primary_blue);
  color: #fff;
  width: fit-content;
  border-radius: 8px;
}
.contact_section .contact_wrapper .right_side .form_wrapper.form-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 100px;
}
.contact_section .contact_wrapper .right_side .form_wrapper.form-success a {
  padding: 10px 20px;
  background: var(--primary_blue);
  color: #fff;
  border-radius: 8px;
  width: 100%;
  text-align: center;
}
.contact_section .contact_wrapper .right_side .form_wrapper.form-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 100px;
}
.contact_section .contact_wrapper .right_side .form_wrapper.form-error a {
  padding: 10px 20px;
  background: var(--primary_blue);
  color: #fff;
  border-radius: 8px;
  width: 100%;
  text-align: center;
}

@media (max-width: 1200px) {
  .contact_section .contact_wrapper .left_side .box-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .contact_section .contact_wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .contact_section .contact_wrapper .left_side {
    gap: 10px;
  }
  .contact_section .contact_wrapper .left_side .top_box {
    padding-bottom: 20px;
  }
  .contact_section .contact_wrapper .left_side .box-wrapper {
    flex-wrap: wrap;
  }
  .contact_section .contact_wrapper .right_side .form_wrapper form .form_group {
    flex-wrap: wrap;
  }
  .contact_section .contact_wrapper .right_side .form_wrapper.form-success,
  .contact_section .contact_wrapper .right_side .form_wrapper.form-error {
    padding: 32px;
  }
  .contact_section .contact_wrapper .left_side .top_box h3 {
    font-size: 30px;
    line-height: 36px;
  }
}
.login_part .container {
  justify-content: center;
  align-items: center;
}
.login_part .login_wrapper {
  max-width: 700px;
  margin: 60px 0px 120px 0px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 15px;
}
.login_part .login_wrapper .log_header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.login_part .login_wrapper .log_header h2 {
  margin: 0;
}
.login_part .login_wrapper .log_header p {
  font-size: 16px;
  line-height: 1.5;
  color: #626C77;
}
.login_part .login_wrapper .form_wrapper {
  padding: 50px 85px;
}
.login_part .login_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 500px;
}
.login_part .login_wrapper form .form_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login_part .login_wrapper form .form_group label {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
.login_part .login_wrapper form .form_group label .input_label {
  position: relative;
}
.login_part .login_wrapper form .form_group label .input_label input {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #D9DBDD;
  padding: 16px;
  width: 100%;
  padding: 16px 16px 16px 46px;
}
.login_part .login_wrapper form .form_group label .input_label img {
  position: absolute;
  top: 16px;
  left: 16px;
}
.login_part .login_wrapper form .form_group label .input_label textarea {
  border-radius: 12px;
  border: 1px solid #D9DBDD;
  padding: 16px;
  width: 100%;
}
.login_part .login_wrapper form .form_group label .input_label .toggle_password {
  position: absolute;
  right: 15px;
  top: 34%;
  cursor: pointer;
  user-select: none;
}
.login_part .login_wrapper form .form_group label .input_label .toggle_password img {
  position: unset;
  width: 20px;
}
.login_part .login_wrapper form .form_group label .input_label .clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
  display: none;
}
.login_part .login_wrapper .submit_form {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}
.login_part .login_wrapper .submit_form .form_btn {
  padding: 10px 20px;
  background: var(--primary_blue);
  color: #fff;
  border-radius: 8px;
  width: 100%;
  text-align: center;
}
.login_part .login_wrapper .submit_form a.ct_btn {
  border: 1px solid var(--primary_blue);
  border-radius: 8px;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  color: #086788;
  font-weight: 500;
  justify-content: center;
}
.login_part .login_wrapper .submit_form a.ct_btn svg path {
  stroke: var(--primary_blue);
}

@media (max-width: 768px) {
  .login_part .login_wrapper {
    width: 100%;
    margin: 30px 0;
  }
  .login_part .login_wrapper .form_wrapper {
    padding: 30px 0px;
  }
  .login_part .login_wrapper form {
    width: 100%;
  }
}
.acc_page {
  padding-top: 30px;
  padding-bottom: 90px;
}
.acc_page .container {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.acc_page .container .left_nav_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 15px;
  gap: 24px;
}
.acc_page .container .acc_information {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.acc_page .container .acc_information .tarrifs_status {
  display: flex;
  width: 100%;
  gap: 20px;
}
.acc_page .container .acc_information .tarrifs_status .status-type {
  display: flex;
  background: #fafafa;
  padding: 20px;
  border-radius: 16px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 500;
}
.acc_page .container .acc_information .tarrifs_status .status-type .status {
  font-size: 12px;
}
.acc_page .container .acc_information .tarrifs_status .ip-address {
  display: flex;
  background: #fafafa;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
}
.acc_page .container .acc_information .tarrifs_status .ip-address .copy-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  /* tooltip */
  /* görünən hal */
}
.acc_page .container .acc_information .tarrifs_status .ip-address .copy-box .copy-icon {
  position: relative;
  cursor: pointer;
}
.acc_page .container .acc_information .tarrifs_status .ip-address .copy-box .tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  white-space: nowrap;
}
.acc_page .container .acc_information .tarrifs_status .ip-address .copy-box .tooltip.show {
  opacity: 1;
}
.acc_page .container .acc_information .balance-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.acc_page .container .acc_information .balance-wrapper .balance_box {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  padding: 20px;
  gap: 15px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.acc_page .container .acc_information .balance-wrapper .balance_box p {
  font-weight: 500;
  font-size: 20px;
}
.acc_page .container .acc_information .balance-wrapper .balance_box span.amount {
  font-size: 27px;
  color: var(--secondary_blue);
  font-weight: 500;
}
.acc_page .container .acc_information .balance-wrapper .balance_box span.date_start::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.acc_page .container .acc_information .balance-wrapper .balance_box span.date_expiration::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.acc_page .container .acc_information .balance-wrapper .balance_box span.date_start,
.acc_page .container .acc_information .balance-wrapper .balance_box span.date_expiration {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}
.acc_page .container .acc_information .balance-wrapper .balance_box span.date_start::before {
  background-image: url("../images/d_start.svg");
}
.acc_page .container .acc_information .balance-wrapper .balance_box span.date_expiration::before {
  background-image: url("../images/d_exp.svg");
}
.acc_page .container .acc_information .tarrif_information {
  display: flex;
  flex-direction: row;
  font-size: 20px;
  gap: 20px;
}
.acc_page .container .acc_information .tarrif_information .info_box {
  background: #fafafa;
  padding: 20px;
  width: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.acc_page .container .acc_information .tarrif_information .info_box .header_part {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.acc_page .container .acc_information .tarrif_information .info_box .header_part .pack_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.acc_page .container .acc_information .tarrif_information .info_box .header_part .pack_wrapper .package_name {
  padding: 12px 20px;
  background: var(--secondary_blue);
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.acc_page .container .acc_information .tarrif_information .info_box .tarrif_spec {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
}
.acc_page .container .acc_information .tarrif_information .info_box .tarrif_spec h3 {
  font-size: 20px;
}
.acc_page .container .acc_information .tarrif_information .info_box .tarrif_spec .data-items {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 5px;
  font-size: 16px;
}
.acc_page .container .acc_information .tarrif_information .info_box .tarrif_spec .data-items .product-data__item-div-title,
.acc_page .container .acc_information .tarrif_information .info_box .tarrif_spec .data-items .product-data__item-div-text {
  white-space: nowrap;
}
.acc_page .container .acc_information .tarrif_information .info_box .tarrif_spec .data-items .product-data__line-between {
  border-bottom: 1px dotted;
  width: 100%;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .acc_page .container .acc_information .tarrif_information {
    flex-wrap: wrap;
  }
  .acc_page .container .acc_information .balance-wrapper {
    flex-wrap: wrap;
  }
  .acc_page .container {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .acc_page .container {
    gap: 0;
  }
  .acc_page .container .acc_information .tarrifs_status {
    flex-wrap: wrap;
  }
}
.personal_information {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.personal_information .acc_header {
  font-size: 27px;
  font-weight: 500;
}
.personal_information .personal_data {
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  background: #fafafa;
  padding: 20px;
  gap: 30px;
}
.personal_information .personal_data .user_icon {
  background: #fff;
  padding: 11px;
  border-radius: 50%;
  height: fit-content;
}
.personal_information .personal_data .user_data {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.personal_information .personal_data .user_data .user_name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.personal_information .personal_data .user_data .user_name .name_user {
  font-size: 20px;
  font-weight: 500;
}
.personal_information .personal_data .user_data .user_name .acc_status {
  display: flex;
}
.personal_information .personal_data .user_data .c_user {
  display: flex;
  gap: 30px;
  position: relative;
}
.personal_information .personal_data .user_data .c_user .user_phone::before {
  background-image: url("../../../images/f-phone.svg");
}
.personal_information .personal_data .user_data .c_user .user_mail::before {
  background-image: url("../../../images/f-mail.svg");
}
.personal_information .contact_box {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.personal_information .contact_box div {
  background: #fafafa;
  padding: 20px;
  border-radius: 16px;
  width: 100%;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.personal_information .contact_box div h4 {
  font-size: 20px;
  font-weight: 500;
}
.personal_information .contact_box .user_add::before {
  background-image: url("../images/pin-b.svg");
}
.personal_information .contact_box .reg_date::before {
  background-image: url("../images/reg-date.svg");
}

@media (max-width: 992px) {
  .personal_information .personal_data .user_data .c_user {
    flex-wrap: wrap;
    gap: 10px;
  }
  .personal_information .contact_box {
    flex-wrap: wrap;
  }
  .user_icon {
    display: none;
  }
}
.plan_page {
  padding-top: 30px;
  padding-bottom: 90px;
}
.plan_page .container {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.plan_page .container .left_nav_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 15px;
  gap: 24px;
}
.plan_page .container .active_plan {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.plan_page .container .active_plan .plan_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.plan_page .container .active_plan .plan_header .plan_date p {
  color: #626c77;
}
.plan_page .container .active_plan .plan_header .plan_date span {
  color: #0C0C20;
  font-weight: 500;
}
.plan_page .container .active_plan .info_message {
  display: flex;
  justify-content: space-between;
  background-color: #FFF7ED;
  padding: 15px;
  border-radius: 8px;
  font-size: 17px;
}
.plan_page .container .active_plan .info_message .close_info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-image: url(../images/close.svg);
  cursor: pointer;
  flex-shrink: 0;
}
.plan_page .container .active_plan .tarrif_information {
  display: flex;
  flex-direction: row;
  font-size: 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.plan_page .container .active_plan .tarrif_information .info_box {
  background: #fafafa;
  padding: 20px;
  width: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 calc(50% - 10px);
}
.plan_page .container .active_plan .tarrif_information .info_box .header_part {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.plan_page .container .active_plan .tarrif_information .info_box .header_part .pack_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.plan_page .container .active_plan .tarrif_information .info_box .header_part .pack_wrapper .package_name {
  padding: 12px 20px;
  background: var(--secondary_blue);
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.plan_page .container .active_plan .tarrif_information .info_box .tarrif_spec {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}
.plan_page .container .active_plan .tarrif_information .info_box .tarrif_spec h3 {
  font-size: 20px;
}
.plan_page .container .active_plan .tarrif_information .info_box .tarrif_spec .data-items {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 5px;
  font-size: 16px;
}
.plan_page .container .active_plan .tarrif_information .info_box .tarrif_spec .data-items .product-data__item-div-title,
.plan_page .container .active_plan .tarrif_information .info_box .tarrif_spec .data-items .product-data__item-div-text {
  white-space: nowrap;
}
.plan_page .container .active_plan .tarrif_information .info_box .tarrif_spec .data-items .product-data__line-between {
  border-bottom: 1px dotted;
  width: 100%;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .plan_page .container .active_plan .tarrif_information .info_box {
    flex: 1 1 100%;
  }
  .plan_page .container .active_plan .plan_header {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .plan_page .container {
    gap: 0;
  }
  .plan_page .container .active_plan .plan_header .plan_date p {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.balance_page {
  padding-top: 30px;
  padding-bottom: 90px;
}
.balance_page .container {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.balance_page .container .left_nav_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 15px;
  gap: 24px;
}
.balance_page .container .balance_wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.balance_page .container .balance_wrapper .plan_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.balance_page .container .balance_wrapper .info_message.danger {
  display: flex;
  justify-content: space-between;
  background-color: #FFF0F0;
  padding: 15px;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.5;
}
.balance_page .container .balance_wrapper .info_message.danger .close_info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-image: url(../images/close.svg);
  cursor: pointer;
  flex-shrink: 0;
}
.balance_page .container .balance_wrapper .current_balance {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.balance_page .container .balance_wrapper .current_balance .balance_box {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  padding: 20px;
  gap: 15px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.balance_page .container .balance_wrapper .current_balance .balance_box p {
  font-weight: 500;
  font-size: 20px;
}
.balance_page .container .balance_wrapper .current_balance .balance_box span.amount {
  font-size: 38px;
  color: var(--secondary_blue);
  font-weight: 500;
}
.balance_page .container .balance_wrapper .current_balance .balance-amount {
  grid-column: span 5;
}
.balance_page .container .balance_wrapper .current_balance .balance-add {
  grid-column: span 7;
}
.balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input {
  display: flex;
  gap: 15px;
  align-items: center;
  width: 100%;
}
.balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input .input_label {
  position: relative;
  width: 316px;
}
.balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input .input_label input {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #D9DBDD;
  padding: 16px;
  width: 100%;
  padding: 16px 16px 16px 16px;
}
.balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input .input_label .clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
  display: none;
}
.balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input .add_btn {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input .add_btn a {
  background: var(--primary_blue);
  font-weight: 500;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 5px;
  width: 100%;
  justify-content: center;
}
.balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input .add_btn a::after {
  background-image: url(../images/w-arrow.svg);
}

@media (max-width: 1200px) {
  .balance_page .container .balance_wrapper .current_balance .balance-amount,
  .balance_page .container .balance_wrapper .current_balance .balance-add {
    grid-column: span 12;
  }
  .balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input .input_label {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .balance_page .container {
    gap: 0;
  }
}
@media (max-width: 500px) {
  .balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input {
    flex-wrap: wrap;
  }
  .balance_page .container .balance_wrapper .current_balance .balance-add .balance_add_input .add_btn {
    width: 100%;
  }
}
.int_tarrif_page {
  padding-top: 30px;
  padding-bottom: 90px;
}
.int_tarrif_page .container {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.int_tarrif_page .container .left_nav_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 15px;
  gap: 24px;
}
.int_tarrif_page .container .active_plan {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.int_tarrif_page .container .active_plan .plan_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.int_tarrif_page .container .active_plan .tarrif_information {
  display: flex;
  flex-direction: row;
  font-size: 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box {
  background: #fafafa;
  padding: 20px;
  width: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 calc(50% - 10px);
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box .header_part {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box .header_part .pack_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box .header_part .pack_wrapper h5 {
  color: var(--primary_blue);
  font-size: 20px;
  font-weight: 500;
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box .tarrif_spec {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box .tarrif_spec h3 {
  font-size: 20px;
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box .tarrif_spec .data-items {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 5px;
  font-size: 16px;
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box .tarrif_spec .data-items .product-data__item-div-title,
.int_tarrif_page .container .active_plan .tarrif_information .info_box .tarrif_spec .data-items .product-data__item-div-text {
  white-space: nowrap;
}
.int_tarrif_page .container .active_plan .tarrif_information .info_box .tarrif_spec .data-items .product-data__line-between {
  border-bottom: 1px dotted;
  width: 100%;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .int_tarrif_page .container .active_plan .tarrif_information .info_box {
    flex: 1 1 100%;
  }
  .int_tarrif_page .container .active_plan .plan_header {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .int_tarrif_page .container {
    gap: 0;
  }
}
.complaints_page {
  padding-top: 30px;
  padding-bottom: 90px;
}
.complaints_page .container {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.complaints_page .container .left_nav_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 15px;
  gap: 24px;
}
.complaints_page .container .inq_section {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.complaints_page .container .inq_section .inq_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.complaints_page .container .inq_section .form_container {
  background: #fafafa;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
}
.complaints_page .container .inq_section .form_container .form_wrapper {
  padding: 25px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 511px;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_header h3 {
  text-align: center;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_header p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #626C77;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group label {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group label .input_label {
  position: relative;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group label .input_label input {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #D9DBDD;
  padding: 16px;
  width: 100%;
  padding: 16px 16px 16px 46px;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group label .input_label img {
  position: absolute;
  top: 16px;
  left: 16px;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group label .input_label textarea {
  border-radius: 12px;
  border: 1px solid #D9DBDD;
  padding: 16px;
  width: 100%;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group label .input_label .clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
  display: none;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group label #select_theme {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #D9DBDD;
  padding: 16px;
  width: 100%;
}
.complaints_page .container .inq_section .form_container .form_wrapper .form_box form .form_group label .custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  padding-left: 30px;
  background: url(../images/down-chevron.svg) no-repeat right 10px center;
  background-size: 22px;
}
.complaints_page .container .inq_section .form_container .checkbox_div {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 15px;
  font-size: 14px;
}
.complaints_page .container .inq_section .form_container .checkbox_div [type=checkbox] {
  top: 2px;
  position: relative;
}
.complaints_page .container .inq_section .form_container .submit_form {
  margin-top: 24px;
}
.complaints_page .container .inq_section .form_container .submit_form button {
  padding: 10px 20px;
  background: var(--primary_blue);
  color: #fff;
  width: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}
.complaints_page .container .inq_section .form_container .form_wrapper.form-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 25px 55px;
}
.complaints_page .container .inq_section .form_container .form_wrapper.form-success a {
  padding: 10px 20px;
  background: var(--primary_blue);
  color: #fff;
  border-radius: 8px;
  width: 100%;
  text-align: center;
}
.complaints_page .container .inq_section .form_container .form_wrapper.form-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 25px 55px;
}
.complaints_page .container .inq_section .form_container .form_wrapper.form-error a {
  padding: 10px 20px;
  background: var(--primary_blue);
  color: #fff;
  border-radius: 8px;
  width: 100%;
  text-align: center;
}

@media (max-width: 992px) {
  .complaints_page .container .active_plan .tarrif_information .info_box {
    flex: 1 1 100%;
  }
  .complaints_page .container .active_plan .plan_header {
    flex-wrap: wrap;
  }
  .complaints_page .container .inq_section .form_container {
    padding: 20px 20px;
  }
}
@media (max-width: 768px) {
  .complaints_page .container {
    gap: 0;
  }
  .complaints_page .container .inq_section .form_container {
    padding: 20px 20px;
  }
  .complaints_page .container .inq_section .form_container .form_wrapper {
    max-width: 100%;
  }
  .complaints_page .container .inq_section .form_container .form_wrapper.form-success,
  .complaints_page .container .inq_section .form_container .form_wrapper.form-error {
    padding: 25px;
  }
}
section.privacy_page {
  padding: 90px;
}
section.privacy_page .container {
  justify-content: center;
  align-items: center;
}
section.privacy_page .container .text_wrapper {
  max-width: 700px;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */