@import url("/Fonts/css/all.css");
@import url("/Fonts/IRANSans/css/fontiran.css");
:root {
  --themeSpace: 50px;
  --themePadding: 25px;
  --themePadding2: 50px;
  --themePadding0: 12.5px;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  :root {
    --themeSpace: 20px;
    --themePadding: 20px;
    --themePadding2: 40px;
    --themePadding0: 10px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1000px) {
  :root {
    --themeSpace: 20px;
    --themePadding: 15px;
    --themePadding2: 30px;
    --themePadding0: 7.5px;
  }
}
@media screen and (min-width: 1001px) {
  :root {
    --themeSpace: 50px;
    --themePadding: 25px;
    --themePadding2: 50px;
    --themePadding0: 12.5px;
  }
}

body {
  direction: rtl;
  margin: 0px;
  padding: 0px;
  font-family: irs;
  font-size: 10pt;
  color: #333;
}

* {
  box-sizing: border-box;
  transition: all ease 0.3s;
}

.base {
  font-size: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.base > .inline {
  font-size: 10pt;
  width: calc(100% - var(--themePadding));
  max-width: 1380px;
  display: inline-block;
}

.flex:not(.inline) {
  display: flex;
}
.flex.inline {
  display: inline-flex;
}
.flex.column, .flex.columns, .flex.cols, .flex.col {
  flex-direction: row;
}
@media screen and (max-width: 1000px) {
  .flex.column, .flex.columns, .flex.cols, .flex.col {
    flex-wrap: wrap;
  }
}
.flex.rows, .flex.row {
  flex-direction: column;
}
.flex > .start {
  justify-self: flex-start;
}
.flex > .end {
  justify-self: flex-end;
}
.flex > .center {
  flex: 1;
}
.flex > .cc {
  justify-content: center;
  align-items: center;
}

.rel {
  position: relative;
}

.chatbot {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
}
.chatbot label {
  width: 64px;
  height: 64px;
  position: relative;
  display: block;
  border: 0px;
}
.chatbot label video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 999;
  border-radius: 15px;
  background-color: #FFF;
  border-top-left-radius: 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 10px;
}
.chatbot label:before {
  content: attr(data-text);
  position: absolute;
  font-size: small;
  background-image: linear-gradient(45deg, #123C96, #2C91DE);
  color: #FFF;
  white-space: nowrap;
  left: 0px;
  bottom: 70px;
  padding: 5px 10px;
  border-radius: 10px 10px 10px 0px;
}

#menu {
  background-color: #FFF;
  z-index: 99;
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
}
#menu.fix {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #menu {
    padding: 20px;
  }
}
@media screen and (min-width: 641px) {
  #menu {
    padding: 25px 0px;
  }
  #menu.fix {
    padding: 10px 0px;
  }
}
#menu #top-logo {
  height: 40px;
  margin-bottom: -10px;
}
#menu #top-logotype {
  height: 32px;
  margin-bottom: -20px;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #menu .navs {
    position: fixed;
    width: 80vw;
    max-width: 300px;
    top: 0px;
    height: 100%;
    background-color: #FFF;
    z-index: 99999;
  }
  #menu .navs:before {
    content: "";
    background-image: url(/Images/baselogo.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
    height: 64px;
    margin-bottom: 10px;
    margin-block: 25px;
  }
  #menu .navs > div {
    display: flex;
    flex-direction: column;
  }
  #menu .navs.act {
    right: 0px;
    box-shadow: 0px 0px 1500px 1500px rgba(0, 0, 0, 0.3);
  }
  #menu .navs:not(.act) {
    right: -300px;
    pointer-events: none;
  }
  #menu .navs ul {
    margin: 0px;
    padding: 0px;
    margin-inline-start: 32px;
  }
  #menu .navs ul li {
    list-style: none;
  }
}
@media screen and (min-width: 641px) {
  #menu .navs .center {
    display: flex;
    position: relative;
  }
}
@media screen and (min-width: 641px) and (min-width: 641px) {
  #menu .navs .center:not(:hover) > ul {
    opacity: 0;
    pointer-events: none;
  }
  #menu .navs .center > ul {
    margin: 0px;
    padding: 0px;
    position: absolute;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    top: 100%;
    right: 0px;
    padding: 10px;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
  }
  #menu .navs .center > ul li {
    list-style: none;
    padding-inline-end: 100px;
  }
  #menu .navs .center:hover > ul {
    border-radius: 10px;
    opacity: 1;
  }
}
@media screen and (min-width: 641px) {
  #menu .navs .mobile {
    display: none;
  }
}
#menu .navs a {
  padding-inline: var(--themePadding)/2;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #menu .navs a {
    padding: 10px 20px;
    justify-content: start;
  }
  #menu .navs a i {
    margin-inline-end: 10px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1000px) {
  #menu .navs a {
    padding: 5px 5px;
  }
}
@media screen and (min-width: 1001px) {
  #menu .navs a {
    padding: 5px 20px;
  }
}
@media screen and (min-width: 641px) {
  #menu .navs a i {
    margin-inline-end: 10px;
  }
}
#menu .navs i {
  vertical-align: middle;
}
#menu .btns {
  gap: 5px;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #menu .btns span {
    display: none;
  }
  #menu .btns .center:not(.mobile) {
    display: none;
  }
}
@media screen and (min-width: 641px) and (max-width: 1000px) {
  #menu .btns span {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  #menu .mobile {
    display: none;
  }
}

#slider {
  overflow: hidden;
}
#slider .sliders {
  border-radius: 5px;
  aspect-ratio: 3/1;
  position: relative;
}
#slider .sliders .slider {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  transition: all ease 1s;
}
#slider .sliders .slider:before, #slider .sliders .slider:after {
  content: "";
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: inherit;
}
#slider .sliders .slider:before {
  left: 100%;
}
#slider .sliders .slider:after {
  right: 100%;
}
#slider .sliders .slider:not(.act) {
  pointer-events: none;
  opacity: 0;
  filter: blur(5px);
}
#slider .sliders .slider.act {
  pointer-events: unset;
  opacity: 1;
}
#slider .sliders .pointer {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 10px;
}
#slider .sliders .pointer span {
  display: inline-block;
  font-size: 0px;
  padding: 3px;
  background-color: #FFF;
  border-radius: 100px;
  box-shadow: 0px 0px 2px #333;
  margin-inline: 5px;
}
#slider .sliders .pointer span.act {
  padding: 3px 10px;
}
#slider img {
  opacity: 1;
  width: 100%;
  border-radius: 5px;
}

#services {
  margin-block-start: var(--themeSpace);
  position: relative;
}
#services .next {
  left: 0px;
}
#services .prev {
  right: 0px;
}
#services:not(:hover) .next, #services:not(:hover) .prev {
  opacity: 0;
  pointer-events: none;
}
#services:hover .next, #services:hover .prev {
  opacity: 1;
}
#services .next, #services .prev {
  display: block;
  position: absolute;
  height: 48px;
  margin-top: -24px;
  width: 48px;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  border: 0px;
  cursor: pointer;
  border-radius: 1000px;
}
#services .next:hover, #services .prev:hover {
  margin-inline: 10px;
}
#services ul {
  text-align: center;
  margin: 0px;
  padding: 0px;
  overflow-x: auto;
  display: block;
  white-space: nowrap;
  font-size: 0px;
  overflow: hidden;
}
#services ul, #services ul * {
  transition: unset;
}
#services ul li {
  position: relative;
  flex: 1;
  list-style: none;
  overflow: hidden;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #services ul li {
    display: inline-block;
    min-width: 96px;
    max-width: 96px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1000px) {
  #services ul li {
    display: inline-flex;
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 1001px) {
  #services ul li {
    display: inline-flex;
    width: 200px;
    height: 200px;
  }
}
#services ul a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 641px) {
  #services ul a {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #services ul a img {
    height: 64px;
    width: 64px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1000px) {
  #services ul a img {
    height: 48px;
    width: 48px;
  }
}
@media screen and (min-width: 1001px) {
  #services ul a img {
    height: 72px;
    width: 72px;
  }
}
#services ul a span {
  margin-top: var(--themePadding0);
  opacity: 0.7;
  color: #123C96;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 8pt;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #services ul a span {
    font-size: 8pt;
    white-space: initial;
  }
}
@media screen and (min-width: 1001px) {
  #services ul a:hover {
    border-radius: 5px;
    background-image: linear-gradient(45deg, #123C96, #2C91DE);
  }
  #services ul a:hover img {
    filter: invert(100%);
  }
  #services ul a:hover span {
    color: #fff;
  }
}

#index {
  margin-block: var(--themeSpace);
}
#index .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "ne ne ec";
  width: 100%;
}
#index .grid > div {
  position: relative;
}
#index .grid > div:is(.news, .map) {
  aspect-ratio: 3.3333333333;
}
#index .grid > div:not(:is(.news, .map)) {
  aspect-ratio: 1.6666666667;
}
#index .grid .suggestion {
  grid-area: su;
}
#index .grid .map {
  grid-area: mp;
}

#news,
#econews {
  padding-block: var(--themeSpace);
}
#news #bnews,
#econews #bnews {
  white-space: nowrap;
  direction: ltr;
  overflow: hidden;
}
#news #bnews div,
#econews #bnews div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
#news #bnews div:nth-of-type(2n),
#econews #bnews div:nth-of-type(2n) {
  color: #123C96;
}
#news #bnews div span,
#econews #bnews div span {
  padding-inline-end: 10px;
}
#news #bnews div span:after,
#econews #bnews div span:after {
  content: "/";
  padding-inline-start: 10px;
}
#news .inline,
#econews .inline {
  position: relative;
}
#news #list,
#econews #list {
  gap: var(--themePadding);
}
@media screen and (max-width: 1000px) {
  #news #list,
  #econews #list {
    width: 1000px;
  }
}
#news #list a,
#econews #list a {
  text-decoration: none;
  color: #333;
  display: block;
}
#news #list a:hover .image > img,
#econews #list a:hover .image > img {
  transform: rotate(10deg) scale(1.3);
  filter: blur(5px);
}
#news #list a .image,
#econews #list a .image {
  aspect-ratio: 16/9;
  overflow: hidden;
  font-size: 0px;
  border-radius: 5px;
  position: relative;
}
#news #list a .image img,
#econews #list a .image img {
  position: 0;
  width: 100%;
  height: 100%;
}
#news #list a .title,
#econews #list a .title {
  font-size: 12pt;
  font-weight: bold;
  overflow: hidden;
  text-align: start;
  margin-block: var(--themePadding0);
}
#news #list a .content,
#econews #list a .content {
  opacity: 0.7;
  text-align: start;
  text-align: justify;
  white-space: initial;
}
#news .end,
#econews .end {
  padding-block-start: var(--themePadding);
  margin-block-start: var(--themePadding);
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  text-align: end;
}

#customer-services,
#service-place,
#electronic-services {
  margin-block: var(--themePadding);
  grid-area: el;
}
#customer-services .inline,
#service-place .inline,
#electronic-services .inline {
  position: relative;
  overflow: hidden;
}
#customer-services .inline > .flex,
#service-place .inline > .flex,
#electronic-services .inline > .flex {
  border-top: 1px dotted rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(0deg, #FFF, #FAFAFA);
}
#customer-services .inline > .flex > .start > span,
#service-place .inline > .flex > .start > span,
#electronic-services .inline > .flex > .start > span {
  z-index: 9;
  position: absolute;
  right: 15px;
  top: -2px;
  background-color: #FFF;
  border-radius: 0px 0px 5px 5px;
  font-size: 10pt;
  padding: 5px 25px;
  border: 1px dotted rgba(0, 0, 0, 0.2);
  border-top: 0px;
}
#customer-services .inline > .flex > .center,
#service-place .inline > .flex > .center,
#electronic-services .inline > .flex > .center {
  padding-top: 40px;
}
#customer-services ul,
#service-place ul,
#electronic-services ul {
  white-space: nowrap;
  font-size: 0px;
  padding: 0px;
  margin: 0px;
}
#customer-services ul li,
#service-place ul li,
#electronic-services ul li {
  vertical-align: top;
  font-size: 10pt;
  width: 12.5%;
  white-space: break-spaces;
  display: inline-block;
  list-style: none;
}
#customer-services ul li a,
#service-place ul li a,
#electronic-services ul li a {
  color: #123C96;
  text-decoration: none;
  color: #333;
  display: block;
}
#customer-services ul li a:hover i,
#service-place ul li a:hover i,
#electronic-services ul li a:hover i {
  color: #123C96;
}
#customer-services ul li a i,
#service-place ul li a i,
#electronic-services ul li a i {
  display: block;
  font-size: 32px;
  margin-bottom: var(--themePadding);
}
#customer-services ul li a span,
#service-place ul li a span,
#electronic-services ul li a span {
  display: block;
  padding: 0px 5px;
}

#connect {
  padding-block: var(--themeSpace);
}
#connect > .base .inline {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding-block-end: var(--themePadding);
}
#connect > .base .inline .flex {
  gap: var(--themePadding);
}
#connect #tell,
#connect #email,
#connect #message {
  font-size: 16pt;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #connect #tell,
  #connect #email,
  #connect #message {
    font-size: 10pt;
  }
}
@media screen and (min-width: 641px) and (max-width: 1000px) {
  #connect #tell,
  #connect #email,
  #connect #message {
    font-size: 12pt;
  }
}
@media screen and (min-width: 1001px) {
  #connect #tell,
  #connect #email,
  #connect #message {
    font-size: 16pt;
  }
}

#links {
  padding-block-end: var(--themeSpace);
}
#links > .base .inline {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding-block-end: var(--themePadding);
}
#links > .base .inline > .flex {
  gap: var(--themePadding);
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #links > .base .inline > .flex {
    flex-direction: column;
  }
  #links > .base .inline > .flex > .center {
    overflow: auto;
    width: 100%;
  }
  #links > .base .inline > .flex .container {
    display: flex;
    flex-wrap: nowrap;
  }
  #links > .base .inline > .flex .container .center {
    min-width: 270px;
    max-width: 270px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1000px) {
  #links > .base .inline > .flex {
    flex-wrap: wrap;
  }
  #links > .base .inline > .flex #electronic,
  #links > .base .inline > .flex #place,
  #links > .base .inline > .flex #customer {
    min-width: 30%;
    max-width: 33.33%;
  }
}
#links ul {
  margin: 0px;
  padding: 0px;
}
#links ul li {
  list-style: none;
}
#links ul li a {
  text-decoration: none;
  display: block;
  text-align: start;
  display: flex;
  flex-direction: row;
  color: #333;
}
#links ul li a i {
  justify-self: flex-start;
  padding-inline-end: 10px;
}
#links ul li a span {
  flex: 1;
}
#links #newsletter .form {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: var(--themePadding0);
  background-color: #FAFAFA;
}
@media screen and (max-width: 1000px) {
  #links #newsletter .form {
    display: inline-block;
    padding: var(--themePadding2);
  }
}
#links #newsletter .form p {
  text-align: justify;
  margin: 0px;
}
#links #newsletter .form input {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 100%;
  border-radius: 1000px;
  margin-block: 10px;
}

#footer {
  padding-block: var(--themeSpace);
}
#footer #address {
  text-align: start;
  font-size: 12pt;
}
#footer #address div {
  margin-bottom: 10px;
}
#footer #address div i {
  vertical-align: middle;
  font-size: 24px;
  width: 40px;
  color: #123C96;
}
#footer #messenger ul {
  margin: 0px;
  padding: 0px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #footer #messenger {
    width: 100%;
  }
}
#footer #messenger li {
  display: inline-block;
}
#footer #messenger li a {
  text-decoration: none;
  color: #333;
  width: 48px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
#footer #messenger li a:hover {
  background-image: linear-gradient(45deg, #123C96, #2C91DE);
  color: #FFF;
}
#footer #messenger li a i {
  padding-inline: 0px;
  font-size: 32px;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #footer > .base > .inline > .flex {
    display: block;
    flex-direction: unset;
  }
  #footer > .base > .inline > .flex > .center:last-of-type {
    height: 150px;
    margin-top: 10px;
  }
}

#ads {
  background-image: linear-gradient(45deg, #123C96, #2C91DE);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #ads #ads-car > .inline > .flex {
    flex-direction: column;
    aspect-ratio: 1/1;
  }
}
#ads #ads-car > .inline > .flex > .center {
  aspect-ratio: 10/6;
}
#ads #ads-car > .inline > .flex > .center > div {
  display: block;
}
#ads #ads-car > .inline > .flex > .center > div > span {
  display: block;
  font-size: 16pt;
  font-weight: bold;
  margin-bottom: var(--themePadding);
}
#ads #ads-car > .inline > .flex > .center > div > strong {
  display: block;
  font-size: 10pt;
  font-weight: lighter;
  margin-bottom: var(--themePadding);
}
#ads #ads-car > .inline > .flex > .center > div > label {
  display: inline-flex;
  flex-direction: row;
  font-size: 10pt;
  background-color: #fff;
  color: #123C96;
  padding: 10px 25px;
  border-radius: 100px;
  gap: 10px;
  opacity: 0.7;
  cursor: pointer;
}
#ads #ads-car > .inline > .flex > .center > div > label:hover {
  opacity: 1;
}
#ads #ads-car > .inline > .flex > .center > div > label i {
  justify-self: flex-start;
  vertical-align: middle;
  line-height: 20px;
  font-size: 16px;
}
#ads #ads-car > .inline > .flex > .center > div > label span {
  flex: 1;
  font-size: 10pt;
  line-height: 20px;
}
@keyframes _car {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  99% {
    visibility: visible;
  }
}
#ads #ads-car .wheel {
  transition: none;
  position: absolute;
  margin-top: -20vw;
  top: 50%;
  left: 50%;
  width: 40vw;
  aspect-ratio: 1/1;
  background-image: url(../Images/ads/roll.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #ads #ads-car .wheel {
    width: 70vw;
    margin-left: -35vw;
    top: 0%;
    left: 50%;
  }
}
#ads #ads-car .left,
#ads #ads-car .right {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 30%;
  animation: _car infinite 0.5s;
}
#ads #ads-car .left.act,
#ads #ads-car .right.act {
  display: block;
}
#ads #ads-car .left:not(.act),
#ads #ads-car .right:not(.act) {
  display: none;
}
#ads #ads-car .left {
  left: 0px;
  background-image: linear-gradient(90deg, rgba(255, 166, 0, 0.3), rgba(255, 166, 0, 0));
}
#ads #ads-car .right {
  right: 0px;
  background-image: linear-gradient(270deg, rgba(255, 166, 0, 0.3), rgba(255, 166, 0, 0));
}
#ads #ads-car .left,
#ads #ads-car .wheel,
#ads #ads-car .right {
  pointer-events: none;
}

#infography {
  position: relative;
  padding-block: var(--themeSpace);
  background-image: linear-gradient(45deg, #123C96, #2C91DE);
  color: #fff;
  overflow: hidden;
}
#infography > .header {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 250px;
  margin-left: -125px;
  display: flex;
  justify-content: center;
  align-items: start;
  height: 50px;
  background-color: #FFF;
  color: #123C96;
  border-radius: 0px 0px 30px 30px;
  font-size: 12pt;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #infography > .header {
    margin-left: -90px;
    width: 180px;
    border-radius: 0px 0px 21px 21px;
    height: 32px;
  }
  #infography > .header::before {
    content: "";
    top: 0px;
    width: 21px;
    aspect-ratio: 1/1;
    position: absolute;
    right: -20px;
    background-image: radial-gradient(transparent 70%, #FFF 30%);
    background-size: 42px 42px;
  }
  #infography > .header::after {
    content: "";
    top: 0px;
    width: 21px;
    aspect-ratio: 1/1;
    position: absolute;
    left: -20px;
    background-image: radial-gradient(transparent 70%, #FFF 30%);
    background-size: 42px 42px;
    background-position: -21px 0px;
  }
}
@media screen and (min-width: 641px) {
  #infography > .header::before {
    content: "";
    top: 0px;
    width: 21px;
    aspect-ratio: 1/1;
    position: absolute;
    right: -20px;
    background-image: radial-gradient(transparent 70%, #FFF 30%);
    background-size: 42px 42px;
  }
  #infography > .header::after {
    content: "";
    top: 0px;
    width: 21px;
    aspect-ratio: 1/1;
    position: absolute;
    left: -20px;
    background-image: radial-gradient(transparent 70%, #FFF 30%);
    background-size: 42px 42px;
    background-position: -21px 0px;
  }
}
#infography::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 20%;
  width: 60%;
  height: 100px;
  background-color: #00072c;
  filter: blur(80px);
  border-radius: 100%;
}
#infography::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 20%;
  width: 60%;
  height: 100px;
  background-color: #00072c;
  filter: blur(80px);
  border-radius: 100%;
}
#infography .counters {
  padding-block-start: var(--themeSpace);
}
#infography .counters .counter {
  font-size: 32pt;
  margin-block-end: var(--themeSpace);
}
#infography .counters .counter span {
  font-size: 12pt;
}
#infography .counters .title {
  font-size: 10pt;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  #infography .counters {
    overflow: auto;
    display: block;
    white-space: nowrap;
  }
  #infography .counters > .flex {
    display: inline-flex;
    width: 135px;
    padding-block: var(--themePadding);
    position: relative;
  }
  #infography .counters > .flex:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }
  #infography .counters > .flex:not(:last-of-type):after {
    content: "";
    position: absolute;
    top: 0px;
    left: 1px;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  }
  #infography .counters .counter {
    font-size: 24pt;
  }
  #infography .counters .counter span {
    font-size: 10pt;
  }
}
#infography .title {
  font-size: 12pt;
}
#infography .service-type {
  overflow: hidden;
  position: relative;
  margin-top: var(--themeSpace);
  padding-top: var(--themeSpace);
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
#infography .service-type::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 20%;
  width: 60%;
  background-color: #000;
  filter: blur(150px);
  height: 100px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}
#infography .service-type::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 20%;
  width: 60%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgb(255, 255, 255), rgba(0, 0, 0, 0));
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}
#infography .service-type .tabs div {
  padding: 7px 10px;
  border-radius: 100px;
  cursor: pointer;
}
#infography .service-type .tabs div.act {
  background-color: #fff;
  color: #123C96;
}
#infography .service-type .contents {
  padding-block-start: var(--themePadding);
}
@media screen and (max-width: 1000px) {
  #infography .service-type .contents > div {
    flex-wrap: nowrap;
    overflow: auto;
  }
}
@media screen and (min-width: 1001px) {
  #infography .service-type .contents > div {
    flex-wrap: wrap;
    align-items: start;
  }
}
#infography .service-type .contents > div:not(.act) {
  display: none;
}
#infography .service-type .contents label {
  vertical-align: top;
  font-size: 10pt;
  white-space: break-spaces;
  display: inline-block;
  list-style: none;
}
@media screen and (max-width: 1000px) {
  #infography .service-type .contents label {
    min-width: 150px;
    max-width: 150px;
    padding-top: var(--themePadding);
  }
}
@media screen and (min-width: 1001px) {
  #infography .service-type .contents label {
    min-width: 12.5%;
    max-width: 12.5%;
  }
}
#infography .service-type .contents label a {
  text-decoration: none;
  color: #fff;
  display: block;
  border-radius: 5px;
}
@media screen and (min-width: 1001px) {
  #infography .service-type .contents label a {
    padding: 15px;
  }
}
@media screen and (min-width: 1001px) {
  #infography .service-type .contents label a:hover {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  }
}
#infography .service-type .contents label a i {
  display: block;
  font-size: 32px;
  margin-bottom: var(--themePadding);
}
#infography .service-type .contents label a span {
  display: block;
  padding: 0px 5px;
}

.ov,
.overflow {
  overflow: auto;
}

.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

.btn {
  white-space: nowrap;
  padding: 5px 15px;
  border-radius: 5px;
  border: 0px;
  opacity: 0.7;
  cursor: pointer;
  font-size: 10pt;
  display: inline-flex;
  flex-direction: row;
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  .btn {
    padding: 10px;
  }
  .btn i {
    line-height: 14px;
  }
}
@media screen and (min-width: 641px) {
  .btn,
  .btn * {
    line-height: 25px;
  }
}
.btn.big {
  flex-direction: column;
  white-space: normal;
}
.btn.big i {
  font-size: 24px;
  margin-block: 10px;
}
.btn.big span {
  font-size: 8pt;
}
.btn:not(.big) i + span {
  margin-inline-start: 5px;
}
.btn:hover {
  opacity: 1;
}
.btn, .btn.default {
  background-image: linear-gradient(45deg, #333, #777);
  color: #fff;
}
.btn.hot {
  background-image: linear-gradient(45deg, #123C96, #2C91DE);
  color: #fff;
}
.btn + .btn {
  margin-inline-start: 3px;
}

*[data-title] {
  position: relative;
}
*[data-title]::after {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  height: 28px;
  width: 5px;
  border-radius: 5px 0px 0px 5px;
  background-image: linear-gradient(45deg, #123C96, #2C91DE);
}
*[data-title]::before {
  display: block;
  padding-inline-start: 15px;
  font-weight: bold;
  font-size: 12pt;
  margin-bottom: var(--themePadding);
  content: attr(data-title);
  text-align: start;
}/*# sourceMappingURL=Theme.css.map */