.elementor-kit-6{--e-global-color-primary:#0B2E63;--e-global-color-secondary:#0D6AE7;--e-global-color-text:#13233B;--e-global-color-accent:#FF7A1A;--e-global-color-d29448b:#061B3A;--e-global-color-f323a47:#EAF3FF;--e-global-color-8e13e31:#F5F9FF;--e-global-color-035fb8e:#FFFFFF;--e-global-color-fac0c2f:#E3ECF7;--e-global-color-99d65ec:#65758B;--e-global-color-95216fa:#00B8D9;--e-global-color-9ef49ac:#20C997;--e-global-color-eb73c44:#6D5CF6;--e-global-color-38f632c:#F7B500;--e-global-color-c09d9f5:#06316D;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-size:52px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:1.12em;--e-global-typography-secondary-font-family:"Roboto";--e-global-typography-secondary-font-size:36px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-line-height:1.2em;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.65em;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:700;--e-global-typography-accent-line-height:1.2em;background-color:var( --e-global-color-8e13e31 );color:var( --e-global-color-text );font-family:"Roboto", Sans-serif;font-size:16px;font-weight:400;line-height:1.65em;--e-page-transition-entrance-animation:e-page-transition-fade-out;--e-page-transition-animation-duration:400ms;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h1{color:var( --e-global-color-primary );font-family:"Roboto", Sans-serif;font-size:52px;font-weight:700;line-height:1.12em;}.elementor-kit-6 h2{color:var( --e-global-color-primary );font-family:"Roboto", Sans-serif;font-size:36px;font-weight:700;line-height:1.2em;}.elementor-kit-6 h3{color:var( --e-global-color-primary );font-family:"Roboto", Sans-serif;font-size:24px;font-weight:700;line-height:1.3em;}.elementor-kit-6 h4{color:var( --e-global-color-primary );font-family:"Roboto", Sans-serif;font-size:20px;font-weight:700;line-height:1.35em;}.elementor-kit-6 h5{font-family:"Roboto", Sans-serif;}.elementor-kit-6 h6{font-family:"Roboto", Sans-serif;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1366px;}.e-con{--container-max-width:1366px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-lightbox{background-color:#061B3AEB;--lightbox-ui-color:#FFFFFF;--lightbox-ui-color-hover:#FF7A1A;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */:root {
  --tipk-layout: 1366px;

  --tipk-primary: #0B2E63;
  --tipk-secondary: #0D6AE7;
  --tipk-dark: #061B3A;
  --tipk-accent: #FF7A1A;

  --tipk-cyan: #00B8D9;
  --tipk-green: #20C997;
  --tipk-purple: #6D5CF6;
  --tipk-yellow: #F7B500;

  --tipk-text: #13233B;
  --tipk-muted: #65758B;
  --tipk-bg: #F5F9FF;
  --tipk-light: #EAF3FF;
  --tipk-white: #FFFFFF;
  --tipk-border: #E3ECF7;

  --tipk-radius-sm: 10px;
  --tipk-radius-md: 16px;
  --tipk-radius-lg: 22px;
  --tipk-radius-xl: 32px;

  --tipk-shadow: 0 12px 36px rgba(11, 46, 99, 0.08);
  --tipk-shadow-hover: 0 18px 48px rgba(11, 46, 99, 0.14);
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--tipk-bg);
  color: var(--tipk-text);
  font-size: 16px;
  line-height: 1.65;
}

.tipk-container {
  width: 100%;
  max-width: var(--tipk-layout);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.tipk-card {
  background: var(--tipk-white);
  border: 1px solid var(--tipk-border);
  border-radius: var(--tipk-radius-lg);
  box-shadow: var(--tipk-shadow);
  transition: all 0.25s ease;
  overflow: hidden;
}

.tipk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tipk-shadow-hover);
  border-color: #CFE0F5;
}

.tipk-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--tipk-accent);
  color: #fff;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tipk-btn-primary:hover {
  background: #E8660B;
  color: #fff;
  transform: translateY(-2px);
}

.tipk-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--tipk-primary);
  border: 1px solid var(--tipk-border);
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tipk-btn-secondary:hover {
  background: var(--tipk-light);
  color: var(--tipk-secondary);
  border-color: var(--tipk-secondary);
}

.tipk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--tipk-light);
  color: var(--tipk-secondary);
  font-size: 13px;
  font-weight: 700;
}

.tipk-section-title {
  color: var(--tipk-primary);
  font-weight: 700;
  letter-spacing: -0.4px;
}

.tipk-muted {
  color: var(--tipk-muted);
}

.tipk-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 1024px) {
  .tipk-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .tipk-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tipk-card {
    border-radius: 18px;
  }

  .tipk-btn-primary,
  .tipk-btn-secondary {
    width: 100%;
    padding: 13px 18px;
  }
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 100;
	font-display: auto;
	src: url('https://tipk.kg/wp-content/uploads/2026/05/roboto-thin.woff2') format('woff2');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('https://tipk.kg/wp-content/uploads/2026/05/roboto-light.woff2') format('woff2');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://tipk.kg/wp-content/uploads/2026/05/roboto-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://tipk.kg/wp-content/uploads/2026/05/roboto-medium.woff2') format('woff2');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://tipk.kg/wp-content/uploads/2026/05/roboto-bold.woff2') format('woff2');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://tipk.kg/wp-content/uploads/2026/05/roboto-black.woff2') format('woff2');
}
/* End Custom Fonts CSS */